b9ec54285ece63696313206d48a1cf8ad14eb73c
[bpt/emacs.git] / lisp / ChangeLog
1 2012-07-06 Glenn Morris <rgm@gnu.org>
2
3 * Makefile.in (bzr-update): "compile" is the same as "recompile
4 autoloads", but parallelizable, so use that instead.
5
6 2012-07-06 Dmitry Gutov <dgutov@yandex.ru>
7
8 * window.el (quit-window): Always restore window height when
9 it's saved in quit-restore parameter.
10
11 2012-07-06 Glenn Morris <rgm@gnu.org>
12
13 * simple.el (kill-whole-line): Doc tweak.
14
15 2012-07-06 Eli Zaretskii <eliz@gnu.org>
16
17 * files.el (file-relative-name): Compare file names
18 case-insensitively if on MS-Windows or MS-DOS, or if
19 read-file-name-completion-ignore-case is non-nil. Don't use
20 case-fold-search for this purpose. (Bug#11827)
21
22 2012-07-06 Andreas Schwab <schwab@linux-m68k.org>
23
24 * calendar/cal-dst.el (calendar-current-time-zone): Return
25 calendar-current-time-zone-cache if non-nil.
26
27 2012-07-06 Glenn Morris <rgm@gnu.org>
28
29 * Makefile.in (cvs-update): Remove old alias.
30
31 2012-07-05 Michael Albinus <michael.albinus@gmx.de>
32
33 Sync with Tramp 2.2.6-pre.
34
35 * net/tramp.el (tramp-drop-volume-letter): Provide an XEmacs
36 compatible declaration.
37
38 * net/tramp-cmds.el (tramp-append-tramp-buffers): Protect
39 `list-load-path-shadows' call.
40
41 * net/tramp-compat.el (top): Require packages, which aren't
42 autoloaded anymore for XEmacs. Protect call of
43 `tramp-file-name-handler' by `tramp-compat-funcall', pacifying the
44 compiler. Do not require tramp-util.el and tramp-vc.el anymore,
45 it hurts at least for SXEmacs.
46 (tramp-compat-temporary-file-directory): In XEmacs, there is no
47 standard-value for `temporary-file-directory'.
48
49 * net/tramp-sh.el (tramp-do-directory-files-and-attributes-with-stat):
50 Redirect stderr to /dev/null.
51 (tramp-sh-handle-write-region): uid and gid can be floats.
52 Reported by Russell Sim <russell.sim@gmail.com>.
53 (tramp-sh-handle-vc-registered): Hide errors.
54 (tramp-vc-file-name-handler): Use dummy results for `process-file'
55 and `start-file-process'.
56 (tramp-maybe-open-connection): Check also whether `non-essential'
57 is bound.
58
59 2012-07-04 Chong Yidong <cyd@gnu.org>
60
61 * xml.el (xml--parse-buffer): Use xml-syntax-table.
62 (xml-parse-tag): Likewise, and avoid changing entity tables.
63 (xml-syntax-table): Define from scratch, making sure not to give
64 x2000 and other Unicode spaces whitespace syntax, since those are
65 not spaces in XML.
66 (xml-parse-fragment): Delete unused function.
67 (xml-name-start-char-re, xml-name-char-re, xml-name-re)
68 (xml-names-re, xml-nmtoken-re, xml-nmtokens-re, xml-char-ref-re)
69 (xml-entity-ref, xml-pe-reference-re)
70 (xml-reference-re,xml-att-value-re, xml-tokenized-type-re)
71 (xml-notation-type-re, xml-enumeration-re, xml-enumerated-type-re)
72 (xml-att-type-re, xml-default-decl-re, xml-att-def-re)
73 (xml-entity-value-re): Use syntax references in regexps where
74 possible; no need to define inside a let-binding.
75 (xml-parse-dtd): Use xml-pe-reference-re.
76 (xml-entity-or-char-ref-re): New defconst.
77 (xml-parse-string, xml-substitute-special): Use it.
78
79 2012-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
80
81 * files.el (locate-dominating-file): Allow `name' to be a predicate.
82 (find-file--read-only): New function.
83 (find-file-read-only, find-file-read-only-other-window)
84 (find-file-read-only-other-frame): Use it.
85 (insert-file-contents-literally): Don't `fset'.
86 (get-free-disk-space): Use locate-dominating-file.
87
88 * emacs-lisp/bytecomp.el (byte-compile): Don't signal an error if the
89 function is already compiled.
90
91 * xml.el (xml-name-regexp): Remove, redundant. Use xml-name-re.
92
93 2012-07-03 Michael Albinus <michael.albinus@gmx.de>
94
95 * vc/ediff-diff.el (ediff-same-file-contents): Fix it for remote
96 files on the same host.
97
98 2012-07-03 Andreas Schwab <schwab@linux-m68k.org>
99
100 * help-fns.el (describe-function-1): Only call
101 help-fns--autoloaded-p when we have a file name. (Bug#11848)
102
103 2012-07-03 Chong Yidong <cyd@gnu.org>
104
105 * xml.el: Protect parser against XML bombs.
106 (xml-entity-expansion-limit): New variable.
107 (xml-parse-string, xml-substitute-special): Use it.
108 (xml-parse-dtd): Avoid infloop if the DTD is not terminated.
109
110 2012-07-03 Glenn Morris <rgm@gnu.org>
111
112 * progmodes/bug-reference.el (bug-reference-bug-regexp):
113 Allow linking to specific messages in debbugs reports (eg 123#5).
114
115 2012-07-02 Chong Yidong <cyd@gnu.org>
116
117 * xml.el: Fix entity and character reference expansion, allowing
118 them to expand into markup as per XML spec.
119 (xml-default-ns): New variable.
120 (xml-entity-alist): Use XML spec definitions for lt and amp.
121 (xml-parse-region): Make first two arguments optional.
122 Discard text properties.
123 (xml-parse-tag-1): New function, spun off from xml-parse-tag.
124 All callers changed.
125 (xml-parse-tag): Call xml-parse-tag-1. For backward
126 compatibility, this function should not modify buffer contents.
127 (xml-parse-tag-1): Fix opening-tag regexp.
128 (xml-parse-string): Rewrite, handling entity and character
129 references properly.
130 (xml--entity-replacement-text): Signal an error if a parameter
131 entity is undefined.
132
133 2012-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
134
135 * comint.el (comint-output-filter): Filter out repeated prompts.
136
137 * net/ange-ftp.el (ange-ftp-expand-file-name): Use ange-ftp-ftp-name
138 and file-name-absolute-p.
139 (ange-ftp-file-exists-p): Use ange-ftp-file-exists-p for
140 internal calls.
141
142 2012-07-02 Paul Eggert <eggert@cs.ucla.edu>
143
144 Spelling fixes.
145 * emacs-lisp/bytecomp.el (byte-compile--reify-function):
146 Rename from byte-compile--refiy-function. All uses changed.
147
148 2012-07-01 Chong Yidong <cyd@gnu.org>
149
150 * xml.el (xml--parse-buffer): New function. Move most of
151 xml-parse-region here.
152 (xml-parse-region): Copy region into a temporary buffer, since
153 parameter entity substitution requires changing buffer contents.
154 Use xml--parse-buffer.
155 (xml-parse-file): Use xml--parse-buffer.
156 (xml-parse-dtd): Make parameter entity substitution work right.
157 Use proper regexps for ELEMENT declarations (Bug#7172).
158
159 2012-06-30 Glenn Morris <rgm@gnu.org>
160
161 * comint.el (follow-comint-scroll-to-bottom): Fix declaration.
162
163 * net/secrets.el, net/tramp-gvfs.el, net/xesam.el, net/zeroconf.el:
164 Remove outdated and unnecessary dbus declarations.
165
166 2012-06-30 Eli Zaretskii <eliz@gnu.org>
167
168 * emacs-lisp/timer.el (timer-until): Subtract results of
169 float-time, instead of taking float-time of the result of
170 time-subtract, since float-time signals an error for negative time
171 arguments.
172
173 2012-06-30 Chong Yidong <cyd@gnu.org>
174
175 * xml.el (xml-*-re): Convert defvars into defconsts, and
176 eval-and-compile them so eval-and-compile works on derivatives.
177 (xml--entity-replacement-text): Use eval-and-comple.
178
179 2012-06-30 Michael Albinus <michael.albinus@gmx.de>
180
181 * vc/vc-git.el (vc-git-registered): Use cache property
182 `git-registered'.
183 (vc-git-mode-line-string): Call `vc-working-revision' instead of
184 `vc-git-working-revision' in order to benefit from the cache.
185 (vc-git-root): Use cache property `git-root'.
186
187 2012-06-30 Dmitry Gutov <dgutov@yandex.ru>
188
189 * vc/vc-hooks.el (vc-before-save): Clear cache if file has been
190 removed (likely outside Emacs).
191
192 2012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
193
194 * emacs-lisp/cl-lib.el: Require macroexp.
195
196 2012-06-30 Chong Yidong <cyd@gnu.org>
197
198 * xml.el: Implement XML parameter entities.
199 (xml-parameter-entity-alist): New variable.
200 (xml-parse-region, xml-parse-fragment): Preserve previous values
201 of xml-entity-alist and xml-parameter-entity-alist, so that
202 repeated calls on different documents do not change them.
203 (xml-parse-tag): Fix doctype regexp.
204 (xml--entity-replacement-text): New function.
205 (xml-parse-dtd): Use it. Don't handle system entities; doing that
206 properly requires url retrieval which is unimplemented.
207 (xml-escape-string): Doc fix.
208
209 2012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
210
211 * emacs-lisp/cl-lib.el (cl-pushnew): Use macroexp-let2.
212
213 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
214
215 * fringe.el (fringe-mode): Doc fix.
216
217 2012-06-29 Michael Albinus <michael.albinus@gmx.de>
218
219 * net/ange-ftp.el (ange-ftp-get-passwd): Throw if `non-essential'
220 is non-nil.
221 (ange-ftp-ignore-errors-if-non-essential): New defmacro.
222 (ange-ftp-file-name-all-completions): Use it. (Bug#11808)
223
224 2012-06-29 Andreas Schwab <schwab@linux-m68k.org>
225
226 * calendar/cal-dst.el (calendar-current-time-zone):
227 Return calendar-current-time-zone-cache if non-nil.
228
229 2012-06-29 Masatake YAMATO <yamato@redhat.com>
230
231 * progmodes/which-func.el (which-func-format):
232 Add mouse-face. (Bug#11698)
233
234 2012-06-29 Leo Liu <sdl.web@gmail.com>
235
236 * textmodes/enriched.el (enriched-next-annotation): Use eq (Bug#11528).
237
238 2012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
239
240 * minibuffer.el (minibuffer-confirm-exit-commands):
241 Add completion-at-point (bug#11725).
242
243 2012-06-29 Glenn Morris <rgm@gnu.org>
244
245 * progmodes/f90.el (f90-font-lock-keywords-2):
246 Add some preprocessor elements. (Bug#10499)
247
248 2012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
249
250 * progmodes/cperl-mode.el (cperl-update-syntaxification):
251 Use syntax-propertize (bug#11739).
252
253 2012-06-28 Juanma Barranquero <lekktu@gmail.com>
254
255 * emacs-lisp/cl-lib.el (cl-pushnew): Don't capture X (bug#11811).
256
257 2012-06-28 Julien Danjou <julien@danjou.info>
258
259 * term.el (term-handle-colors-array): Use a set of new faces to
260 color the terminal. Also uses :inverse-video property.
261 (term-default-fg-color): Set to nil by default, deprecate in favor
262 of `term-face'.
263 (term-default-bg-color): Set to nil by default, deprecate in favor
264 of `term-face'.
265 (term-current-face): Use `term-face' by default.
266 (term-bold-attribute): Variable deleted.
267
268 2012-06-28 Glenn Morris <rgm@gnu.org>
269
270 * simple.el (completion-list-mode-finish):
271 Don't use toggle-read-only. (Since completion-list-mode has
272 a special mode-class, it wasn't doing anything extra anyway.)
273
274 2012-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
275
276 Make inlining of other-mode interpreted functions work (bug#11799).
277 * emacs-lisp/bytecomp.el (byte-compile--refiy-function): New fun.
278 (byte-compile): Use it to fix compilation of lexical-binding closures.
279 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Compile the
280 function, if needed.
281
282 2012-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
283
284 * help-mode.el (help-make-xrefs): Don't just withstand
285 cyclic-variable-indirection but any error in documentation-property.
286
287 * loadup.el (purify-flag): Pre-grow the hash-table to reduce the
288 memory use.
289 * bindings.el (bindings--define-key): New function.
290 * vc/vc-hooks.el, replace.el, menu-bar.el, international/mule-cmds.el:
291 * emacs-lisp/lisp-mode.el, buff-menu.el, bookmark.el:
292 * bindings.el: Use it to purecopy define-key bindings.
293
294 * textmodes/rst.el (rst-adornment-faces-alist): Avoid copy-list.
295
296 * emacs-lisp/cl.el (flet): Mark obsolete.
297 * emacs-lisp/cl-macs.el (cl-flet*): New macro.
298 * vc/vc-rcs.el (vc-rcs-annotate-command, vc-rcs-parse):
299 * progmodes/js.el (js-c-fill-paragraph):
300 * progmodes/ebrowse.el (ebrowse-switch-member-buffer-to-sibling-class)
301 (ebrowse-switch-member-buffer-to-derived-class):
302 * play/5x5.el (5x5-solver): Use cl-flet.
303
304 * emacs-lisp/cl.el: Use lexical-binding. Fix flet (bug#11780).
305 (cl--symbol-function): New macro.
306 (cl--letf, cl--letf*): Use it.
307
308 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
309 Strip "toggle-" if any.
310
311 2012-06-27 Glenn Morris <rgm@gnu.org>
312
313 * info.el (Info-default-directory-list): Move here from paths.el.
314 * paths.el: Remove file, which is now empty.
315 * loadup.el: No longer load "paths".
316
317 * custom.el (custom-initialize-delay): Doc fix.
318
319 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
320 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el:
321 * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el:
322 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el:
323 * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el:
324 * eshell/em-xtra.el: Replace eshell-defgroup with "(progn (defgroup".
325 * eshell/eshell.el (eshell-defgroup): Remove alias.
326
327 2012-06-27 Chong Yidong <cyd@gnu.org>
328
329 * help.el (help-enable-auto-load): New variable.
330
331 * help-fns.el (help-fns--autoloaded-p): New function.
332 (describe-function-1): Refer to a function as "autoloaded" if it
333 was autoloaded at any time in the past. Perform autoloading if
334 help-enable-auto-load is non-nil.
335
336 2012-06-26 Eli Zaretskii <eliz@gnu.org>
337
338 * makefile.w32-in (compile, compile-always): Depend on
339 update-subdirs, not on subdirs.el. Otherwise, several different
340 sub-targets of 'bootstrap' running in parallel could
341 simultaneously write to subdirs.el, producing a garbled file.
342
343 2012-06-26 Sam Steingold <sds@gnu.org>
344
345 * files.el (file-name-base): New convenience function.
346 * autoinsert.el, cus-dep.el, doc-view.el, image-dired.el:
347 * woman.el, eshell/esh-cmd.el, progmodes/ada-xref.el:
348 * progmodes/cc-defs.el, progmodes/cperl-mode.el:
349 * progmodes/flymake.el, progmodes/gud.el, progmodes/idlwave.el:
350 * textmodes/ispell.el, textmodes/reftex-ref.el:
351 * textmodes/tex-mode.el: Use it.
352 Did not touch cedet and org because they are maintained elsewhere.
353
354 2012-06-26 Martin Rudalics <rudalics@gmx.at>
355
356 * calendar/calendar.el (calendar-exit): Don't try to delete or
357 iconify last frame. See:
358 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00372.html
359
360 2012-06-25 Jim Diamond <Jim.Diamond@AcadiaU.ca> (tiny change)
361
362 * server.el (server-process-filter): Remember dir in the
363 process's `server-client-directory' properties.
364
365 2012-06-24 Chong Yidong <cyd@gnu.org>
366
367 * xml.el (xml-parse-tag): Correctly handle comment embedded in
368 non-tag text.
369
370 2012-06-23 Juanma Barranquero <lekktu@gmail.com>
371
372 * makefile.w32-in (COMPILE_FIRST): Synch with changes in 2012-06-22T21:24:54Z!monnier@iro.umontreal.ca.
373
374 2012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
375
376 * help-fns.el (describe-variable): Don't croak when doc is not found.
377 * vc/pcvs.el (cvs-retrieve-revision): Avoid toggle-read-only.
378 * menu-bar.el (menu-bar-line-wrapping-menu): Purecopy a tiny bit more.
379 * emacs-lisp/syntax.el (syntax-ppss): Simplify with new `if' place.
380 * emacs-lisp/smie.el (smie-next-sexp): CSE.
381 * emacs-lisp/macroexp.el (macroexp-let2): Fix edebug spec and avoid
382 ((lambda ..) ..).
383 * emacs-lisp/eieio.el (eieio-oref, slot-value): Use simpler defsetf.
384
385 2012-06-23 Chong Yidong <cyd@gnu.org>
386
387 * info.el (Info-mouse-follow-link): Accept symbol values of
388 link-args. Select window; suggested by Gerhard Kahl (Bug#11672).
389 (Info-fontify-node): Use Info-link-keymap for all navigation
390 buttons, with link-args property to perform the desired action.
391 (Info-link-keymap): Doc fix.
392 (Info-next-link-keymap, Info-prev-link-keymap)
393 (Info-up-link-keymap): Delete now-unused keymaps.
394
395 2012-06-23 Chong Yidong <cyd@gnu.org>
396
397 * mouse.el (mouse-drag-track): Deactivate the mark before popping.
398
399 * progmodes/python.el (python-skeleton-define): Mark abbrevs as
400 system abbrevs.
401
402 * ansi-color.el (ansi-color-apply-on-region): Doc fix.
403
404 2012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
405
406 * emacs-lisp/cl-macs.el (cl--make-usage-args): Handle improper lists
407 (bug#11719).
408
409 * minibuffer.el (completion--twq-try): Try to fail more gracefully when
410 the requote function doesn't work properly (bug#11714).
411
412 2012-06-23 Glenn Morris <rgm@gnu.org>
413
414 * pcmpl-rpm.el (pcmpl-rpm-packages): Give status messages.
415
416 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
417
418 Further GV/CL cleanups.
419 * emacs-lisp/gv.el (gv-get): Autoload functions to find their
420 gv-expander.
421 (gv--defun-declaration): New function.
422 (defun-declarations-alist): Use it.
423 (gv-define-modify-macro, gv-pushnew!, gv-inc!, gv-dec!): Remove.
424 (gv-place): Autoload.
425 * emacs-lisp/cl.el (cl--dotimes, cl--dolist): Remember subr.el's
426 original definition of dotimes and dolist.
427 * emacs-lisp/cl-macs.el (cl-expr-access-order): Remove unused.
428 (cl-dolist, cl-dotimes): Use `dolist' and `dotimes'.
429 * emacs-lisp/cl-lib.el: Move gv handlers from cl-macs to here.
430 (cl-fifth, cl-sixth, cl-seventh, cl-eighth)
431 (cl-ninth, cl-tenth): Move gv handler to the function's definition.
432 * emacs-lisp/cl-extra.el (cl-subseq, cl-get, cl-getf): Move gv handler
433 to the function's definition.
434 * Makefile.in (COMPILE_FIRST): Re-order to speed it up by about 50%.
435 * window.el:
436 * files.el:
437 * faces.el:
438 * env.el: Don't use CL.
439
440 2012-06-22 Paul Eggert <eggert@cs.ucla.edu>
441
442 Support higher-resolution time stamps (Bug#9000).
443
444 * calendar/time-date.el (with-decoded-time-value): New arg
445 PICO-SYMBOL in VARLIST. It's optional, for backward compatibility.
446 (encode-time-value): New optional arg PICO. New type 3.
447 (time-to-seconds) [!float-time]: Support the new picoseconds
448 component if it's used.
449 (seconds-to-time, time-subtract, time-add):
450 Support ps-resolution time stamps as well.
451
452 * emacs-lisp/timer.el (timer): New component psecs. All uses changed.
453 (timerp): Timer vectors now have length 9, not 8.
454 (timer--time): Support new-style (4-part) time stamps.
455 (timer-next-integral-multiple-of-time): Time stamps now have
456 picosecond resolution, so take a bit more care about rounding.
457 (timer-relative-time, timer-inc-time): New optional arg psecs.
458 (timer-set-time-with-usecs): Set psecs to 0.
459 (timer--activate): Check psecs component, too.
460
461 * proced.el (proced-time-lessp): Support ps-resolution stamps.
462
463 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
464
465 * icomplete.el (icomplete-minibuffer-setup, icomplete-completions):
466 Move the non-essential binding to the post/pre-command-hook where it is
467 more obviously correct.
468
469 * subr.el (read-passwd): Don't use a history at all.
470 * savehist.el (savehist-save): Remove password saved accidentally
471 because of the above bug.
472
473 2012-06-22 Bastien Guerry <bzg@gnu.org>
474
475 * files.el (toggle-read-only): Display a message telling whether
476 the buffer is read-only or not (bug#11726).
477
478 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
479
480 * emacs-lisp/gv.el: New file.
481 * subr.el (push, pop): Extend to generalized variables.
482 * loadup.el (macroexp): Unload if preloaded and uncompiled (bug#11657).
483 * emacs-lisp/cl-lib.el (cl-pop, cl-push, cl--set-nthcdr): Remove.
484 * emacs-lisp/cl-macs.el: Require gv. Use gv-define-setter,
485 gv-define-simple-setter, and gv-define-expander.
486 Remove setf-methods defined in gv. Rename cl-setf -> setf.
487 (cl-setf, cl-do-pop, cl-get-setf-method): Remove.
488 (cl-letf, cl-letf*, cl-define-modify-macro, cl-defsetf)
489 (cl-define-setf-expander, cl-struct-setf-expander): Move to cl.el.
490 (cl-remf, cl-shiftf, cl-rotatef, cl-callf, cl-callf2): Rewrite with
491 gv-letplace.
492 (cl-defstruct): Don't define setf-method any more.
493 * emacs-lisp/cl.el (flet): Don't autoload.
494 (cl--letf, letf, cl--letf*, letf*, cl--gv-adapt)
495 (define-setf-expander, defsetf, define-modify-macro)
496 (cl-struct-setf-expander): Move from cl-lib.el.
497 * emacs-lisp/syntax.el:
498 * emacs-lisp/ewoc.el:
499 * emacs-lisp/smie.el:
500 * emacs-lisp/cconv.el:
501 * emacs-lisp/timer.el: Rename cl-setf -> setf, cl-push -> push.
502 (timer--time): Use gv-define-simple-setter.
503 * emacs-lisp/macroexp.el (macroexp-let2): Rename from macroexp-let²
504 to avoid coding-system problems in subr.el. Adjust all users.
505 (macroexp--maxsize, macroexp-small-p): New functions.
506 * emacs-lisp/bytecomp.el (byte-compile-file): Don't use cl-letf.
507 * scroll-bar.el (scroll-bar-mode):
508 * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
509 (normal-erase-is-backspace-mode): Don't use the `eq' place.
510 * winner.el (winner-configuration, winner-make-point-alist)
511 (winner-set-conf, winner-get-point, winner-set): Don't abuse letf.
512 * files.el (locate-file-completion-table): Avoid list*.
513
514 2012-06-22 Chong Yidong <cyd@gnu.org>
515
516 * dired-aux.el (dired-do-create-files): Doc fix (Bug#11327).
517 (dired-create-files): Doc fix (Bug#11329).
518 (dired-do-copy): Doc fix (Bug#11334).
519 (dired-mark-read-string): Doc fix (Bug#11553).
520
521 * dired.el (dired-recursive-copies, dired-recursive-deletes):
522 Doc fix (Bug#11326).
523 (dired-make-relative): Doc fix (Bug#11332). Remove unused arg.
524 (dired-dwim-target): Doc fix.
525
526 * wdired.el (wdired-mode): Doc fix.
527
528 2012-06-22 Glenn Morris <rgm@gnu.org>
529
530 * pcmpl-rpm.el (pcmpl-rpm-cache): New option.
531 (pcmpl-rpm-cache-stamp-file): New constant.
532 (pcmpl-rpm-cache-time, pcmpl-rpm-packages): New variables.
533 (pcmpl-rpm-packages): Optionally cache list of packages.
534
535 * pcmpl-rpm.el (pcmpl-rpm): New group.
536 (pcmpl-rpm-query-options): New option.
537 (pcmpl-rpm-packages): No need to inline it.
538 Use pcmpl-rpm-query-options.
539
540 * calendar/calendar.el (calendar-in-read-only-buffer):
541 Avoid some needless mode changes.
542
543 2012-06-21 Chong Yidong <cyd@gnu.org>
544
545 * desktop.el (desktop-read): Don't prompt if daemon (Bug#11674).
546 (desktop-path): Remove . from the default value (Bug#10977).
547 (desktop-read): Use user-emacs-directory if desktop-path is nil.
548
549 2012-06-20 Chong Yidong <cyd@gnu.org>
550
551 * term.el (term-send-raw-meta): Make C-M-<char> keys work (Bug#8172).
552
553 2012-06-20 David Röthlisberger <david@rothlis.net> (tiny change)
554
555 * ido.el (ido-switch-buffer, ido-find-file): Fix up doc of C-j
556 (bug#11201).
557
558 2012-06-20 Chong Yidong <cyd@gnu.org>
559
560 * term.el (term-window-width): Handle the case of a missing right
561 fringe (Bug#8837).
562 (term-check-size): Use window-text-height (Bug#5445).
563 (term-mode): Use define-derived-mode. Minor cleanups.
564 Set font-lock-defaults (Bug#7692).
565 (term-move-columns, term-insert-char, term-emulate-terminal)
566 (term-erase-in-line, term-insert-spaces): Use font-lock-face.
567
568 2012-06-20 Michael Albinus <michael.albinus@gmx.de>
569
570 * net/ange-ftp.el (ange-ftp-get-passwd):
571 Bind `enable-recursive-minibuffers'.
572 (ange-ftp-get-process): Throw if `non-essential' is non-nil.
573
574 2012-06-19 David Röthlisberger <david@rothlis.net> (tiny change)
575
576 * ido.el (ido-find-file): Mention C-d binding in docstring (bug#11244).
577
578 2012-06-19 Glenn Morris <rgm@gnu.org>
579
580 * progmodes/python.el (python-mode): Derive from prog-mode.
581
582 2012-06-19 Kevin Gallagher <Kevin.Gallagher@boeing.com>
583
584 * emulation/edt.el (edt-default-menu-bar-update-buffers)
585 (edt-user-menu-bar-update-buffers): New functions.
586 (edt-default-emulation-setup, edt-user-emulation-setup): Use them.
587
588 2012-06-19 Chong Yidong <cyd@gnu.org>
589
590 * subr.el (with-selected-window): Preserve the selected window's
591 terminal's top-frame (Bug#4702).
592
593 * window.el (save-selected-window): Likewise.
594
595 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
596
597 * progmodes/python.el (python-rx-constituents): Move backquote.
598 (python-skeleton-define, python-define-auxiliary-skeleton):
599 Use `declare'.
600
601 2012-06-18 Michael Albinus <michael.albinus@gmx.de>
602
603 * minibuffer.el (read-file-name-default): Revert the patch from
604 2012-06-17.
605
606 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
607
608 * emacs-lisp/pcase.el (pcase--expand): Warn for unused pattern.
609 (pcase--u1, pcase--q1): Don't use apply-partially.
610
611 2012-06-18 Glenn Morris <rgm@gnu.org>
612
613 * progmodes/python.el (python-proc, python-buffer)
614 (python-send-receive, python-send-string): Fix obsolete versions.
615
616 2012-06-18 Martin Rudalics <rudalics@gmx.at>
617
618 * window.el (special-display-p): Completely remove stringp
619 check. Suggested by Andreas Schwab <schwab@linux-m68k.org>.
620
621 2012-06-17 Michael Albinus <michael.albinus@gmx.de>
622
623 * minibuffer.el (read-file-name-default): Bind `non-essential' to `t'.
624
625 * net/tramp.el (tramp-file-name-handler): Catch 'non-essential.
626
627 * net/ange-ftp.el (ange-ftp-gwp-start, ange-ftp-start-process):
628 * net/tramp-sh.el (tramp-maybe-open-connection):
629 Throw if `non-essential' is non-nil.
630
631 2012-06-17 Martin Rudalics <rudalics@gmx.at>
632
633 * window.el (special-display-p): Signal an error if BUFFER-NAME
634 is not a string (Bug#11713).
635
636 2012-06-17 Paul Eggert <eggert@cs.ucla.edu>
637
638 * progmodes/python.el (python-info-beginning-of-backslash):
639 Rename from python-info-beginning-of-backlash, as a spelling fix.
640
641 2012-06-17 Chong Yidong <cyd@gnu.org>
642
643 * term.el (term-emulate-terminal): If term-check-size is called,
644 move point to the process mark without resetting point (Bug#4635).
645
646 2012-06-17 Glenn Morris <rgm@gnu.org>
647
648 * international/mule-cmds.el (mule-menu-keymap)
649 (set-language-environment, set-locale-environment): Doc tweaks.
650
651 2012-06-16 Aurelien Aptel <aurelien.aptel@gmail.com>
652
653 * cus-face.el (custom-face-attributes): Add wave-style underline
654 attribute.
655 * faces.el (set-face-attribute): Update docstring to describe
656 wave-style underline attribute.
657
658 2012-06-16 Chong Yidong <cyd@gnu.org>
659
660 * term/xterm.el (terminal-init-xterm): Discard input before
661 querying background mode (Bug#10959).
662
663 2012-06-16 Stefan Merten <smerten@oekonux.de>
664
665 * textmodes/rst.el: Added and corrected some comments.
666 (rst-re-alist-def): Improve symbol syntax.
667 (rst-mode-syntax-table): Correct syntax entries.
668 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
669 (rst-official-version, rst-official-cvs-rev): Update version
670 information.
671
672 2012-06-15 Juanma Barranquero <lekktu@gmail.com>
673
674 * makefile.w32-in (COMPILE_FIRST): Synch with makefile.in changes
675 in 2008-06-22T13:57:28Z!monnier@iro.umontreal.ca.
676
677 2012-06-15 Fabián Ezequiel Gallina <fgallina@cuca>
678
679 * progmodes/python.el: New python.el merge.
680 (python-guess-indent): Obsolete var.
681 (python-indent-guess-indent-offset): New defcustom.
682 (python-indent): Obsolete var.
683 (python-indent-offset): New defcustom.
684 (python-python-command, python-jython-command): Delete var.
685 (python-shell-interpreter): New defcustom.
686 (python-pdbtrack-do-tracking-p): Delete var.
687 (python-pdbtrack-activate): New defcustom.
688 (python-use-skeletons): Obsolete var.
689 (python-skeleton-autoinsert): New defcustom.
690 (inferior-python-filter-regexp, python-continuation-offset)
691 (python-honour-comment-indentation, python-indent-string-contents)
692 (python-jython-packages, python-mode-hook)
693 (python-pdbtrack-minor-mode-string, python-remove-cwd-from-path)
694 (python-shell-prompt-alist)
695 (python-source-modes): Delete defcustoms.
696 (python-check-buffer-name, python-eldoc-setup-code)
697 (python-eldoc-string-code, python-ffap-setup-code)
698 (python-ffap-string-code, python-fill-comment-function)
699 (python-fill-decorator-function, python-fill-paren-function)
700 (python-fill-string-function, python-imenu-include-defun-type)
701 (python-imenu-make-tree, python-imenu-subtree-root-label)
702 (python-pdbtrack-stacktrace-info-regexp, python-shell-buffer-name)
703 (python-shell-compilation-regexp-alist)
704 (python-shell-completion-module-string-code)
705 (python-shell-completion-pdb-string-code)
706 (python-shell-completion-setup-code)
707 (python-shell-completion-string-code)
708 (python-shell-enable-font-lock, python-shell-exec-path)
709 (python-shell-extra-pythonpaths)
710 (python-shell-internal-buffer-name, python-shell-interpreter-args)
711 (python-shell-process-environment)
712 (python-shell-prompt-block-regexp)
713 (python-shell-prompt-output-regexp)
714 (python-shell-prompt-pdb-regexp, python-shell-prompt-regexp)
715 (python-shell-send-setup-max-wait, python-shell-setup-codes)
716 (python-shell-virtualenv-path): New defcustoms.
717 (brm-menu, eldoc-documentation-function, inferior-python-mode-map)
718 (inferior-python-mode-syntax-table, python--prompt-regexp)
719 (python-buffer, python-command python-python-command)
720 (python-default-template, python-imports, python-indent-index)
721 (python-indent-list, python-indent-list-length)
722 (python-mode-running, python-pdbtrack-is-tracking-p)
723 (python-preoutput-continuation, python-preoutput-leftover)
724 (python-preoutput-result, python-preoutput-skip-next-prompt)
725 (python-prev-dir/file, python-recursing)
726 (python-saved-check-command, python-version-checked)
727 (python-which-func-length-limit)
728 (view-return-to-alist): Delete vars.
729 (python-check-custom-command, python-dotty-syntax-table)
730 (python-imenu-index-alist, python-indent-current-level)
731 (python-indent-dedenters, python-indent-levels)
732 (python-nav-beginning-of-defun-regexp)
733 (python-nav-list-defun-positions-cache)
734 (python-pdbtrack-buffers-to-kill, python-pdbtrack-tracked-buffer)
735 (python-shell-internal-buffer)
736 (python-skeleton-available): New vars.
737 (def-python-skeleton): Delete macro.
738 (python-skeleton-define): New macro.
739 (python-define-auxiliary-skeleton, python-rx): New macros.
740 (python-insert-class): Delete command.
741 (python-skeleton-class): New command.
742 (python-insert-def): Delete command.
743 (python-skeleton-def): New command.
744 (python-insert-for): Delete command.
745 (python-skeleton-for): New command.
746 (python-insert-if): Delete command.
747 (python-skeleton-if): New command.
748 (python-insert-try/except, python-insert-try/finally): Delete commands.
749 (python-skeleton-try): New command.
750 (python-insert-while): Delete command.
751 (python-skeleton-while): New command.
752 (python-backspace): Delete command.
753 (python-indent-dedent-line-backspace): New command.
754 (python-electric-colon): Delete command.
755 (python-indent-electric-colon): New command.
756 (python-guess-indent): Delete command.
757 (python-indent-guess-indent-offset): New command.
758 (python-shift-left): Delete command.
759 (python-indent-shift-left): New command.
760 (python-shift-right): Delete command.
761 (python-indent-shift-right): New command.
762 (python-find-function): Delete command.
763 (python-nav-jump-to-defun): New command.
764 (python-next-statement): Delete command.
765 (python-nav-forward-sentence): New command.
766 (python-previous-statement): Delete command.
767 (python-nav-backward-sentence): New command.
768 (python-fill-paragraph): Delete command.
769 (python-fill-paragraph-function): New command.
770 (python-send-buffer): Delete command.
771 (python-shell-send-buffer): New command.
772 (python-send-defun): Delete command.
773 (python-shell-send-defun): New command.
774 (python-send-region, python-send-region-and-go): Delete commands.
775 (python-shell-send-region)
776 (python-shell-switch-to-shell): New commands.
777 (python-send-string): Delete command.
778 (python-shell-send-string): New command.
779 (python-switch-to-python): Delete command.
780 (python-shell-switch-to-shell): New command.
781 (python-describe-symbol): Delete command.
782 (python-eldoc-at-point): New command.
783 (python--set-prompt-regexp, python-args-to-list)
784 (python-after-info-look, python-check-version)
785 (python-check-comint-prompt, python-find-imports)
786 (python-execute-file, turn-off-pdbtrack, turn-on-pdbtrack)
787 (python-unload-function, python-expand-template)
788 (python-maybe-jython, python-preoutput-filter)
789 (python-pdbtrack-get-source-buffer)
790 (python-pdbtrack-grub-for-buffer, python-pdbtrack-overlay-arrow)
791 (python-pdbtrack-toggle-stack-tracking)
792 (python-pdbtrack-track-stack-file, python-initial-text)
793 (python-first-word, python-comment-line-p, python-send-command)
794 (python-setup-brm, python-sentinel, python-set-proc)
795 (python-skip-out, python-input-filter, python-outdent-p)
796 (python-outline-level, python-backslash-continuation-line-p)
797 (python-end-of-block, python-end-of-statement, python-mark-block)
798 (python-beginning-of-block, python-beginning-of-statement)
799 (python-blank-line-p, python-beginning-of-string)
800 (python-open-block-statement-p): Delete functions.
801 (python-indent-line, python-indent-line-1): Delete functions.
802 (python-indent-line): New function.
803 (python-indentation-levels): Delete function.
804 (python-indent-calculate-levels): New function.
805 (python-proc): Delete function.
806 (python-shell-get-process): New function.
807 (python-send-receive): Delete function.
808 (python-shell-send-string-no-output): New function.
809 (python-module-path): Delete function.
810 (python-ffap-module-path): New function.
811 (python-completion-at-point)
812 (python-symbol-completions): Delete functions.
813 (python-completion-complete-at-point): New function.
814 (python-load-file): Delete function.
815 (python-shell-send-file): New function.
816 (python-calculate-indentation): Delete function.
817 (python-indent-calculate-indentation): New function.
818 (python-skip-comments/blanks): Delete function.
819 (python-util-forward-comment): New function.
820 (python-continuation-line-p): Delete function.
821 (python-info-continuation-line-p): New function.
822 (python-which-func, python-current-defun): Delete function.
823 (python-info-current-defun): New function.
824 (python-beginning-of-defun): Delete function.
825 (python-nav-beginning-of-defun): New function.
826 (python-close-block-statement-p)
827 (python-block-end-p): Delete function.
828 (python-info-closing-block): New function.
829 (python-comint-output-filter-function)
830 (python-eldoc--get-doc-at-point, python-end-of-defun-function)
831 (python-fill-comment, python-fill-decorator, python-fill-paren)
832 (python-fill-string, python-imenu-make-element-tree)
833 (python-imenu-make-tree, python-imenu-tree-assoc)
834 (python-indent-context, python-indent-dedent-line)
835 (python-indent-line-function)
836 (python-indent-post-self-insert-function)
837 (python-indent-toggle-levels)
838 (python-info-assignment-continuation-line-p)
839 (python-info-beginning-of-backlash)
840 (python-info-block-continuation-line-p)
841 (python-info-closing-block-message)
842 (python-info-line-ends-backslash-p)
843 (python-info-looking-at-beginning-of-defun)
844 (python-info-ppss-context, python-info-ppss-context-type)
845 (python-nav-list-defun-positions, python-nav-read-defun)
846 (python-nav-sentence-end, python-nav-sentence-start)
847 (python-pdbtrack-comint-output-filter-function)
848 (python-pdbtrack-set-tracked-buffer)
849 (python-shell-calculate-exec-path)
850 (python-shell-calculate-process-environment)
851 (python-shell-completion--do-completion-at-point)
852 (python-shell-completion--get-completions)
853 (python-shell-completion-complete-at-point)
854 (python-shell-completion-complete-or-indent)
855 (python-shell-get-or-create-process)
856 (python-shell-get-process-name)
857 (python-shell-internal-get-or-create-process)
858 (python-shell-internal-get-process-name)
859 (python-shell-internal-send-string, python-shell-make-comint)
860 (python-shell-parse-command, python-shell-send-setup-code)
861 (python-skeleton-add-menu-items)
862 (python-util-clone-local-variables, python-util-position)
863 (run-python-internal, python-indentation-levels)
864 (python-nav-beginning-of-defun)
865 (python-completion-complete-at-point): New functions.
866 (run-python): Change arguments. New API requirements.
867
868 2012-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
869
870 * emacs-lisp/cl-lib.el (cl--defsubst-expand): Autoload inliner
871 (bug#11649).
872
873 * emacs-lisp/macroexp.el (macroexp--compiler-macro): New function.
874 (macroexp--expand-all): Use it.
875
876 * emacs-lisp/cl-macs.el (cl--transform-function-property): Remove.
877 (cl-define-setf-expander, cl-deftype, cl-define-compiler-macro):
878 Use `cl-function' instead.
879
880 2012-06-14 Juanma Barranquero <lekktu@gmail.com>
881
882 * makefile.w32-in (COMPILE_FIRST): Remove subr.el.
883 Suggested by Stefan Monnier while discussing bug#11657.
884
885 2012-06-14 Sam Steingold <sds@gnu.org>
886
887 * files.el (abort-if-file-too-large): Use `file-size-human-readable'.
888
889 2012-06-14 Andreas Schwab <schwab@linux-m68k.org>
890
891 * play/doctor.el (doctor-doc): Remove parameter and use
892 doctor-sent instead of sent.
893 (doctor-read-print): Use doctor-sent instead of sent. (Bug#11708)
894
895 2012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
896
897 * files.el: Require cl-lib.
898 (file-name-non-special): Replace case -> cl-case.
899
900 * emacs-lisp/cl-macs.el (cl-defstruct): Don't add print-func.
901
902 * emacs-lisp/edebug.el (edebug-read-function): Remove old incorrect
903 mapping from #' to function*.
904
905 2012-06-13 Chong Yidong <cyd@gnu.org>
906
907 * mouse.el (mouse-drag-track): Do not set the mark if the user
908 releases the mouse without selecting anything (Bug#11588).
909
910 2012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
911
912 * textmodes/tex-mode.el (latex-indent): Recognize tex-verbatim at EOB
913 as well (bug#11646).
914
915 * loadup.el: Count byte-code functions as well.
916
917 * emacs-lisp/byte-opt.el (featurep): Move compiler-macro...
918 * emacs-lisp/bytecomp.el (featurep): ...here (bug#11692).
919
920 * emacs-lisp/autoload.el (make-autoload): Accept nil doc-string-elt
921 (bug#11649). Add cl-defun and cl-defmacro.
922
923 2012-06-13 Drew Adams <drew.adams@oracle.com>
924
925 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
926 Fix last change.
927
928 2012-06-13 Michael Albinus <michael.albinus@gmx.de>
929
930 * net/dbus.el (dbus-call-method): Use timeout for `read-event'.
931 Otherwise, it blocks in batch mode.
932
933 2012-06-13 Juanma Barranquero <lekktu@gmail.com>
934
935 * help-mode.el (bookmark-make-record-default): Declare.
936
937 2012-06-13 Chong Yidong <cyd@gnu.org>
938
939 * emacs-lisp/package.el (list-packages): Compute a list of
940 packages that are newly-available since the last list-packages
941 invocation.
942 (package-menu--new-package-list): New var.
943 (package-menu--generate, package-menu--print-info)
944 (package-menu--status-predicate, package-menu-mark-install):
945 Handle new status label "new".
946
947 2012-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
948
949 * emacs-lisp/cl-macs.el (cl-remf): Fix error in recent
950 conversion to backquotes.
951
952 2012-06-12 Chong Yidong <cyd@gnu.org>
953
954 * emacs-lisp/edebug.el (edebug-inhibit-emacs-lisp-mode-bindings):
955 Rename from gud-inhibit-global-bindings.
956
957 * emacs-lisp/eieio.el (eieio-pre-method-execution-hooks): Doc fix.
958
959 * nxml/nxml-glyph.el (nxml-glyph-set-functions): Rename abnormal
960 hook from nxml-glyph-set-hook.
961
962 * progmodes/cwarn.el (cwarn-mode): Remove redundant variable
963 declaration.
964
965 * progmodes/pascal.el (pascal-toggle-completions): Doc fix.
966
967 * textmodes/bibtex.el (bibtex-string-file-path, bibtex-file-path):
968 Convert to defcustom.
969
970 2012-06-12 Drew Adams <drew.adams@oracle.com>
971
972 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
973 New functions.
974 (help-mode): Use them.
975
976 2012-06-11 Glenn Morris <rgm@gnu.org>
977
978 * progmodes/fortran.el (fortran-font-lock-keywords-3):
979 Use preprocessor face for directives.
980 (fortran-directive-re): Doc fix.
981
982 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
983
984 * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Fix error in recent
985 conversion to backquotes (bug#11652).
986
987 Fix compiler-expansion of CL's cXXr functions (bug#11673).
988 * emacs-lisp/cl-lib.el (cl--defalias): New function.
989 (cl-values, cl-values-list, cl-copy-seq, cl-svref, cl-first)
990 (cl-second, cl-rest, cl-endp, cl-third, cl-fourth): Use it.
991 (cl-plusp, cl-minusp, cl-fifth, cl-sixth, cl-seventh, cl-eighth)
992 (cl-ninth, cl-tenth): Mark them as inlinable.
993 (cl-caaar, cl-caadr, cl-cadar, cl-caddr, cl-cdaar, cl-cdadr)
994 (cl-cddar, cl-cdddr, cl-caaaar, cl-caaadr, cl-caadar, cl-caaddr)
995 (cl-cadaar, cl-cadadr, cl-caddar, cl-cadddr, cl-cdaaar, cl-cdaadr)
996 (cl-cdadar, cl-cdaddr, cl-cddaar, cl-cddadr, cl-cdddar, cl-cddddr):
997 Add a compiler-macro declaration to use cl--compiler-macro-cXXr.
998 (cl-list*, cl-adjoin): Don't put an autoload manually.
999 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin)
1000 (cl--compiler-macro-list*): Add autoload cookie.
1001 (cl--compiler-macro-cXXr): New function.
1002
1003 * help-fns.el (help-fns--compiler-macro): New function extracted from
1004 describe-function-1; follow aliases and use `compiler-macro' property.
1005 (describe-function-1): Use it.
1006
1007 2012-06-11 Chong Yidong <cyd@gnu.org>
1008
1009 * startup.el (fancy-splash-head): Use splash.svg even if librsvg
1010 is uninstalled, if imagemagick is installed.
1011
1012 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
1013
1014 * emacs-lisp/cl-lib.el: Use lexical-binding.
1015 (cl-map-extents, cl-maclisp-member): Remove.
1016 (cl--set-elt, cl--set-nthcdr, cl--set-buffer-substring)
1017 (cl--set-substring, cl--block-wrapper, cl--block-throw)
1018 (cl--compiling-file, cl--mapcar-many, cl--do-subst): Use "cl--" prefix.
1019 * emacs-lisp/cl-extra.el: Use lexical-binding.
1020 (cl--mapcar-many, cl--map-keymap-recursively, cl--map-intervals)
1021 (cl--map-overlays, cl--set-frame-visible-p, cl--progv-save)
1022 (cl--progv-before, cl--progv-after, cl--finite-do, cl--set-getf)
1023 (cl--do-remf, cl--do-prettyprint): Use "cl--" prefix.
1024 * emacs-lisp/cl-seq.el: Use lexical-binding.
1025 (cl--parsing-keywords, cl--check-key, cl--check-test-nokey)
1026 (cl--check-test, cl--check-match): Use "cl--" prefix and backquotes.
1027 (cl--alist, cl--sublis-rec, cl--nsublis-rec, cl--tree-equal-rec):
1028 * emacs-lisp/cl-macs.el (cl--lambda-list-keywords): Use "cl--" prefix.
1029 * edmacro.el (edmacro-mismatch): Simplify to remove dependence on
1030 CL's internals.
1031
1032 2012-06-11 Michael Albinus <michael.albinus@gmx.de>
1033
1034 Sync with Tramp 2.2.6-pre.
1035
1036 * net/tramp-cache.el (tramp-dump-connection-properties): Let-bind
1037 `print-length' and `print-level' to nil, in order to avoid
1038 truncation. Reported by Christopher Schmidt
1039 <christopher@ristopher.com>.
1040
1041 * net/tramp-cmds.el (tramp-cleanup-connection): Delete also process.
1042
1043 * net/tramp-compat.el (tramp-compat-condition-case-unless-debug):
1044 New defmacro.
1045 (tramp-compat-copy-directory): Add optional argument
1046 COPY-CONTENTS. It is not handled yet.
1047
1048 * net/tramp-ftp.el (tramp-disable-ange-ftp): Fix docstring.
1049 (tramp-ftp-file-name-p): Simplify.
1050
1051 * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name):
1052 * net/tramp-gw.el (tramp-gw-open-connection): Add hop to
1053 connection vector.
1054
1055 * net/tramp-sh.el (tramp-copy-size-limit): Fix docstring.
1056 (tramp-methods): Do not use `tramp-password-end-of-line'.
1057 (tramp-completion-function-alist-putty): Handle UNIX case.
1058 (tramp-remote-path): Add "/opt/bin", "/opt/sbin" and "/opt/local/bin".
1059 (tramp-do-file-attributes-with-stat)
1060 (tramp-do-directory-files-and-attributes-with-stat) Return uid and
1061 gid as real numbers. They could run out of integer range on cygwin.
1062 (tramp-do-copy-or-rename-file-out-of-band): Better trace format.
1063 (tramp-sh-handle-expand-file-name): Handle hops.
1064 (tramp-open-connection-setup-interactive-shell):
1065 Use `tramp-cleanup'. Move check for busyboxes ...
1066 (tramp-find-shell): ... here. Simplify implementation.
1067 Set "remote-shell" property also for alternative shells.
1068 (tramp-remote-coding-commands): Check "test -c /dev/stdout".
1069 If failing, a regular file would be written otherwise.
1070 Reported by Dmitry Kurochkin <dmitry.kurochkin@gmail.com>.
1071 (tramp-find-inline-encoding): Cache the coding commands in the
1072 process cache. Apply test command on the remote side, if defined.
1073 (tramp-find-inline-compress): Cache the compress commands in the
1074 process cache.
1075 (tramp-compute-multi-hops): Save `tramp-default-proxies-alist'
1076 when requested. Handle hops.
1077 (tramp-current-connection): New defvar.
1078 (tramp-maybe-open-connection): Use `tramp-cleanup'.
1079 Throw `suppress', if there was a failed connection shortly before.
1080 Handle user interrupt. (Bug#10187)
1081 (tramp-get-inline-compress, tramp-get-inline-coding):
1082 Read connection properties from the process cache.
1083
1084 * net/tramp-smb.el (tramp-smb-server-version)
1085 (tramp-smb-wrong-passwd-regexp, tramp-smb-actions-with-tar):
1086 New defconsts.
1087 (tramp-smb-prompt): Extend for powershell prompt.
1088 (tramp-smb-file-name-handler-alist): Add handlers for
1089 `process-file', `shell-command' and `start-file-process'.
1090 (tramp-smb-winexe-program, tramp-smb-winexe-shell-command)
1091 (tramp-smb-winexe-shell-command-switch): New defcustoms.
1092 (tramp-smb-file-name-p): Simplify.
1093 (tramp-smb-action-with-tar, tramp-smb-handle-process-file)
1094 (tramp-smb-kill-winexe-function, tramp-smb-call-winexe)
1095 (tramp-smb-shell-quote-argument): New defuns.
1096 (tramp-smb-handle-copy-directory): Add COPY-CONTENTS argument.
1097 Implement using "tar". By this, time-stamps are preserved.
1098 (tramp-smb-handle-copy-file): Handle also the case of directories.
1099 (tramp-smb-do-file-attributes-with-stat)
1100 (tramp-smb-get-file-entries, tramp-smb-get-cifs-capabilities):
1101 Use `tramp-get-connection-buffer').
1102 (tramp-smb-handle-rename-file): Use "rename", when source and
1103 target are on the same share.
1104 (tramp-smb-maybe-open-connection): Handle wrong passwords.
1105 Use `tramp-smb-server-version'.
1106 (tramp-smb-wait-for-output): Remove prompt.
1107
1108 * net/tramp.el (top): Require 'cl.
1109 (tramp-methods, tramp-rsh-end-of-line):
1110 Remove `tramp-password-end-of-line' from docstring.
1111 (tramp-save-ad-hoc-proxies): New defcustom.
1112 (tramp-completion-function-alist): Adapt docstring.
1113 (tramp-default-password-end-of-line): Remove defcustom.
1114 (tramp-shell-prompt-pattern): Allow "[]" style prompts. (Bug#11065)
1115 (tramp-user-regexp, tramp-file-name-regexp-unified)
1116 (tramp-file-name-regexp-url): Extend regexp by hop separator.
1117 (tramp-postfix-hop-format, tramp-postfix-hop-regexp)
1118 (tramp-remote-file-name-spec-regexp): New defconst.
1119 (tramp-file-name-structure): Extend structure for hops.
1120 (tramp-get-method-parameter): Move up.
1121 (tramp-file-name-p, tramp-dissect-file-name)
1122 (with-parsed-tramp-file-name): Handle hops.
1123 (tramp-file-name-hop): New defun.
1124 (tramp-make-tramp-file-name): New optional arg HOP.
1125 (tramp-message-show-progress-reporter-message): New defvar.
1126 (tramp-with-progress-reporter): Use it. We cannot use
1127 `tramp-message-show-message' here, because this suppresses also
1128 error buffers.
1129 (tramp-error-with-buffer): Suppress buffer view, if
1130 `tramp-message-show-message' is nil.
1131 Use `tramp-get-connection-buffer'.
1132 (tramp-cleanup): New defun.
1133 (tramp-rfn-eshadow-update-overlay): Let-bind `non-essential' to `t'.
1134 (tramp-file-name-handler): If `debug-on-error' is set, propagate
1135 an error unchanged.
1136 (tramp-completion-handle-file-name-all-completions): Handle hops.
1137 Fix an error when called from ido.
1138 (tramp-completion-dissect-file-name): Use better local variable
1139 name. Add hop to the vector.
1140 (tramp-handle-insert-file-contents): Use progress-reporter for the
1141 whole scenario.
1142 (tramp-action-password): Let-bind `enable-recursive-minibuffers'
1143 to `t'.
1144 (tramp-check-for-regexp): Simplify search.
1145 (tramp-enter-password): Remove it. Move implementation ...
1146 (tramp-action-password): ... here.
1147 (tramp-mode-string-to-int, tramp-local-host-p)
1148 (tramp-make-tramp-temp-file, tramp-read-passwd)
1149 (tramp-clear-passwd, tramp-time-less-p, tramp-time-diff):
1150 Set tramp-autoload cookie.
1151
1152 * net/trampver.el: Update release number.
1153
1154 2012-06-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
1155 Michael Albinus <michael.albinus@gmx.de>
1156
1157 * net/tramp.el (tramp-set-completion-function): Fix docstring.
1158 (tramp-parse-group, tramp-parse-file)
1159 (tramp-parse-shostkeys-sknownhosts): New defuns.
1160 (tramp-parse-rhosts, tramp-parse-rhosts-group, tramp-parse-shosts)
1161 (tramp-parse-shosts-group, tramp-parse-sconfig)
1162 (tramp-parse-sconfig-group, tramp-parse-shostkeys)
1163 (tramp-parse-sknownhosts, tramp-parse-hosts)
1164 (tramp-parse-hosts-group, tramp-parse-passwd, tramp-parse-netrc):
1165 Use them.
1166 (tramp-parse-passwd-group, tramp-parse-netrc-group)
1167 (tramp-parse-putty-group): Don't narrow.
1168 (tramp-parse-putty): Make a loop.
1169 (tramp-file-name-handler): Catch the `suppress' signal.
1170
1171 2012-06-11 Chong Yidong <cyd@gnu.org>
1172
1173 * image.el (imagemagick-register-types): Put the ImageMagick entry
1174 at the end of image-type-file-name-regexps.
1175
1176 2012-06-11 Johan Bockgård <bojohan@gnu.org>
1177
1178 * emacs-lisp/pcase.el (pcase-UPAT, pcase-QPAT): New edebug specs.
1179 (pcase, pcase-let*, pcase-dolist): Use them.
1180
1181 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
1182
1183 * emacs-lisp/pcase.el (pcase--let*): New function.
1184 (pcase-let*): Use it. Use pcase--memoize to avoid repeated expansions.
1185 (pcase--expand): Use macroexp-let².
1186
1187 2012-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
1188
1189 * emacs-lisp/timer.el, emacs-lisp/syntax.el, emacs-lisp/smie.el:
1190 * emacs-lisp/ewoc.el, emacs-lisp/cconv.el, emacs-lisp/bytecomp.el:
1191 * emacs-lisp/byte-opt.el, emacs-lisp/autoload.el: Convert to cl-lib.
1192 * emacs-lisp/easymenu.el, emacs-lisp/easy-mmode.el:
1193 * emacs-lisp/derived.el: Use pcase instead of `cl'.
1194 * emacs-lisp/cl-lib.el: Get rid of special cl-macs auto load.
1195
1196 2012-06-10 Glenn Morris <rgm@gnu.org>
1197
1198 * mail/rmail.el (rmail-yank-current-message): Leave point at
1199 correct position. (Bug#11660)
1200
1201 2012-06-10 Chong Yidong <cyd@gnu.org>
1202
1203 * allout-widgets.el: Fix code header.
1204
1205 2012-06-10 Chong Yidong <cyd@gnu.org>
1206
1207 * cus-edit.el (customize-changed-options-previous-release):
1208 Bump to 24.1.
1209
1210 2012-06-09 Andreas Schwab <schwab@linux-m68k.org>
1211
1212 * Makefile.in (BIG_STACK_DEPTH): Enlarge to 2200.
1213
1214 2012-06-09 Chong Yidong <cyd@gnu.org>
1215
1216 * ebuff-menu.el (electric-buffer-list): Preserve header line.
1217
1218 2012-06-09 Martin Rudalics <rudalics@gmx.at>
1219
1220 * window.el (special-display-popup-frame): Don't use
1221 window--display-buffer (Bug#11651).
1222
1223 2012-06-09 Eli Zaretskii <eliz@gnu.org>
1224
1225 Fix parallel builds: make sure loaddefs.el is not being written
1226 while Lisp files are compiled.
1227 (compile): Don't depend on 'mh-autoloads'.
1228 (compile-CMD, compile-SH): Depend on 'autoloads'.
1229 (bootstrap): Don't depend on 'autoloads' and 'mh-autoloads'.
1230
1231 * makefile.w32-in (BIG_STACK_DEPTH): Enlarge to 2200. (Bug#11649)
1232
1233 2012-06-09 Chong Yidong <cyd@gnu.org>
1234
1235 * face-remap.el (face-remap-add-relative, face-remap-set-base)
1236 (buffer-face-set, buffer-face-toggle, buffer-face-mode-invoke):
1237 Doc fixes (Bug#11225).
1238
1239 2012-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
1240
1241 * emacs-lisp/macroexp.el (macroexp--expand-all): Only autoload
1242 a function if there's a clear indication that it has a compiler-macro.
1243 * emacs-lisp/byte-run.el (defun-declarations-alist, defmacro, defun)
1244 (macro-declarations-alist): Add arglist to declaration functions.
1245 (defun-declarations-alist): Add `obsolete' and `compiler-macro'.
1246 * emacs-lisp/cl-seq.el (cl-member, cl-assoc):
1247 * emacs-lisp/cl-lib.el (cl-list*, cl-adjoin):
1248 * emacs-lisp/cl-extra.el (cl-get): Use the new `declare' statement.
1249 Also add autoload to find the compiler macro.
1250 * emacs-lisp/cl-macs.el (eql) [compiler-macro]: Remove.
1251 (cl--compiler-macro-member, cl--compiler-macro-assoc)
1252 (cl--compiler-macro-adjoin, cl--compiler-macro-list*)
1253 (cl--compiler-macro-get): New functions, replacing calls to
1254 cl-define-compiler-macro.
1255 (cl-typep) [compiler-macro]: Use macroexp-let².
1256
1257 2012-06-08 Nick Dokos <nicholas.dokos@hp.com> (tiny change)
1258
1259 * calendar/icalendar.el (icalendar--parse-vtimezone): Import TZID
1260 string properly, fixes Bug#11473.
1261
1262 2012-06-08 Chong Yidong <cyd@gnu.org>
1263
1264 * faces.el (set-face-attribute): Doc fix.
1265 (modify-face): Don't use :bold and :italic.
1266 (error, warning, success): Tweak definitions.
1267
1268 * cus-edit.el (custom-modified, custom-invalid, custom-rogue)
1269 (custom-modified, custom-set, custom-changed, custom-themed)
1270 (custom-saved, custom-button, custom-button-mouse)
1271 (custom-button-pressed, custom-state, custom-comment-tag)
1272 (custom-variable-tag, custom-group-tag-1, custom-group-tag)
1273 (custom-group-subtitle): Use new-style face specs.
1274 (custom-invalid-face, custom-rogue-face, custom-modified-face)
1275 (custom-set-face, custom-changed-face, custom-saved-face)
1276 (custom-button-face, custom-button-pressed-face)
1277 (custom-documentation-face, custom-state-face)
1278 (custom-comment-face, custom-comment-tag-face)
1279 (custom-variable-tag-face, custom-variable-button-face)
1280 (custom-face-tag-face, custom-group-tag-face-1)
1281 (custom-group-tag-face): Remove obsolete face alias.
1282
1283 * epa.el (epa-validity-high, epa-validity-medium)
1284 (epa-validity-low, epa-mark, epa-field-name, epa-string)
1285 (epa-field-name, epa-field-body):
1286 * font-lock.el (font-lock-comment-face, font-lock-string-face)
1287 (font-lock-keyword-face, font-lock-builtin-face)
1288 (font-lock-function-name-face, font-lock-variable-name-face)
1289 (font-lock-type-face, font-lock-constant-face):
1290 * ido.el (ido-first-match, ido-only-match, ido-subdir)
1291 (ido-virtual, ido-indicator, ido-incomplete-regexp):
1292 * speedbar.el (speedbar-button-face, speedbar-file-face)
1293 (speedbar-directory-face, speedbar-tag-face)
1294 (speedbar-selected-face, speedbar-highlight-face)
1295 (speedbar-separator-face):
1296 * whitespace.el (whitespace-newline, whitespace-space)
1297 (whitespace-hspace, whitespace-tab, whitespace-trailing)
1298 (whitespace-line, whitespace-space-before-tab)
1299 (whitespace-space-after-tab, whitespace-indentation)
1300 (whitespace-empty):
1301 * emulation/cua-base.el (cua-global-mark):
1302 * eshell/em-prompt.el (eshell-prompt):
1303 * net/newst-plainview.el (newsticker-new-item-face)
1304 (newsticker-old-item-face, newsticker-immortal-item-face)
1305 (newsticker-obsolete-item-face, newsticker-date-face)
1306 (newsticker-statistics-face, newsticker-default-face):
1307 * net/newst-reader.el (newsticker-feed-face)
1308 (newsticker-extra-face, newsticker-enclosure-face):
1309 * net/newst-treeview.el (newsticker-treeview-face)
1310 (newsticker-treeview-new-face, newsticker-treeview-old-face)
1311 (newsticker-treeview-immortal-face)
1312 (newsticker-treeview-obsolete-face)
1313 (newsticker-treeview-selection-face):
1314 * net/rcirc.el (rcirc-my-nick, rcirc-other-nick)
1315 (rcirc-bright-nick, rcirc-server, rcirc-timestamp)
1316 (rcirc-nick-in-message, rcirc-nick-in-message-full-line)
1317 (rcirc-prompt, rcirc-track-keyword, rcirc-url, rcirc-keyword):
1318 * nxml/nxml-outln.el (nxml-heading, nxml-outline-indicator)
1319 (nxml-outline-active-indicator, nxml-outline-ellipsis):
1320 * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
1321 (mpuz-text):
1322 * progmodes/vera-mode.el (vera-font-lock-number)
1323 (vera-font-lock-function, vera-font-lock-interface):
1324 * textmodes/table.el (table-cell): Use new-style face specs, and
1325 don't use the old :bold and :italic attributes.
1326
1327 * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
1328 (ebrowse-member-attribute, ebrowse-default, ebrowse-file-name)
1329 (ebrowse-member-class, ebrowse-progress): Likewise.
1330 (ebrowse-tree-mark-face, ebrowse-root-class-face)
1331 (ebrowse-file-name-face, ebrowse-default-face)
1332 (ebrowse-member-attribute-face, ebrowse-member-class-face)
1333 (ebrowse-progress-face): Remove obsolete faces.
1334
1335 * progmodes/flymake.el (flymake-errline, flymake-warnline):
1336 Inherit from error and warning faces respectively.
1337
1338 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
1339 Likewise.
1340 (flyspell-incorrect-face, flyspell-duplicate-face):
1341 Remove obsolete aliases.
1342
1343 2012-06-08 Michael Albinus <michael.albinus@gmx.de>
1344
1345 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
1346 Avoid infloop.
1347
1348 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
1349
1350 * startup.el (argv, argi): Make lexically scoped.
1351 * emacs-lisp/float-sup.el (pi): Use internal-make-var-non-special.
1352 * emacs-lisp/cl-macs.el: Use lexical-binding.
1353 Rename cl-bind-* to cl--bind-*.
1354 * files.el: Don't require `cl' since it doesn't use it.
1355 * emacs-lisp/pcase.el, emacs-lisp/macroexp.el: Add coding cookie.
1356
1357 2012-06-08 Juanma Barranquero <lekktu@gmail.com>
1358
1359 * textmodes/texinfmt.el: Fix bug#11640 (reverts part of 2008-07-31T05:33:56Z!dann@ics.uci.edu).
1360 (texinfo-format-printindex): Use `texinfo-sort-region' in all platforms,
1361 instead of calling external sort utility.
1362 (texinfo-sort-region, texinfo-sort-startkeyfun): Restore functions.
1363
1364 2012-06-08 Eli Zaretskii <eliz@gnu.org>
1365
1366 * descr-text.el (describe-char): Mention how to insert the
1367 character, if the current input method doesn't support it.
1368 See the discussion in this thread for the details:
1369 http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00533.html.
1370
1371 2012-06-08 Sam Steingold <sds@gnu.org>
1372
1373 * bindings.el (global-map): Bind XF86Forward to next-buffer and
1374 XF86Back to previous-buffer.
1375 (minibuffer-local-map): Bind them to next-history-element and
1376 previous-history-element respectively.
1377 * help-mode.el (help-mode-map): Bind them to help-go-forward and
1378 help-go-back respectively.
1379 * info.el (Info-mode-map): Bind them to Info-history-forward and
1380 Info-history-back respectively.
1381 These are the keys next to Up on the ThinkPad keyboard.
1382
1383 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
1384
1385 Get rid of cl-lexical-let, keeping only lexical-let for compatibility.
1386 * emacs-lisp/cl-macs.el: Provide itself.
1387 (cl--labels-convert-cache): New var.
1388 (cl--labels-convert): New function.
1389 (cl-flet, cl-labels): New implementation with new semantics, relying on
1390 lexical-binding.
1391 * emacs-lisp/cl.el: Mark compatibility aliases as obsolete.
1392 (cl-closure-vars, cl--function-convert-cache)
1393 (cl--function-convert): Move from cl-macs.el.
1394 (lexical-let, lexical-let*, flet, labels): Move from cl-macs.el and
1395 rename by removing the "cl-" prefix.
1396 * emacs-lisp/macroexp.el (macroexp-unprogn): New function.
1397
1398 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
1399
1400 * emacs-lisp/cl.el (cl-macroexpand, cl-macro-environment)
1401 (cl-macroexpand-all, cl-not-hash-table, cl-builtin-gethash)
1402 (cl-builtin-remhash, cl-builtin-clrhash, cl-builtin-maphash)
1403 (cl-map-keymap, cl-copy-tree, cl-gethash, cl-puthash, cl-remhash)
1404 (cl-clrhash, cl-maphash, cl-make-hash-table, cl-hash-table-p)
1405 (cl-hash-table-count): Add old compatibility aliases.
1406
1407 * emacs-lisp/cl-macs.el (cl-macro-environment): Remove var.
1408 Use macroexpand-all-environment instead.
1409 (cl--old-macroexpand): New var.
1410 (cl--sm-macroexpand): New function.
1411 (cl-symbol-macrolet): Use it during macro expansion.
1412 (cl--function-convert-cache): New var.
1413 (cl--function-convert): New function, extracted from
1414 cl-macroexpand-all.
1415 (cl-lexical-let): Use it.
1416
1417 * emacs-lisp/cl-lib.el (cl-macro-environment): Remove decl.
1418 (cl-macroexpand): Move to cl-macs.el and rename to cl--sm-macroexpand.
1419 (cl-member): Remove old alias.
1420
1421 * emacs-lisp/cl-extra.el (cl-map-keymap, cl-copy-tree)
1422 (cl-not-hash-table, cl-builtin-gethash, cl-builtin-remhash)
1423 (cl-builtin-clrhash, cl-builtin-maphash, cl-gethash, cl-puthash)
1424 (cl-remhash, cl-clrhash, cl-maphash, cl-make-hash-table)
1425 (cl-hash-table-p, cl-hash-table-count): Move to cl.el.
1426 (cl-macroexpand-cmacs): Remove var.
1427 (cl-macroexpand-all, cl-macroexpand-body): Remove funs.
1428 Use macroexpand-all instead.
1429
1430 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
1431
1432 * emacs-lisp/macroexp.el (macroexp-progn, macroexp-let*, macroexp-if)
1433 (macroexp-let², macroexp--const-symbol-p, macroexp-const-p)
1434 (macroexp-copyable-p): New functions and macros.
1435 * emacs-lisp/edebug.el (edebug-unwrap):
1436 * emacs-lisp/disass.el (disassemble-internal): Use macroexp-progn.
1437 * emacs-lisp/pcase.el: Use macroexp-let*, macroexp-if, ...
1438 (pcase--let*): Remove.
1439 * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p)
1440 (byte-compile-constp): Remove. Use macroexp--const-symbol-p and
1441 macroexp-const-p instead.
1442 * emacs-lisp/byte-opt.el: Use macroexp-const-p and macroexp-progn.
1443
1444 * emacs-lisp/cl-macs.el: Clean up the name space by using "cl--"
1445 instead of "cl-" for internal definitions. Use macroexp-const-p.
1446 (cl-old-bc-file-form): Remove var.
1447 (cl-const-exprs-p): Remove fun.
1448 (cl-labels, cl-macrolet): Use backquote.
1449 (cl-lexical-let): Use cl-symbol-macrolet. Don't use cl-defun-expander.
1450 (cl-defun-expander, cl-byte-compile-compiler-macro): Remove fun.
1451 (cl-define-setf-expander): Rename from cl-define-setf-method.
1452 * emacs-lisp/cl.el: Adjust alias for define-setf-method.
1453
1454 * international/mule-cmds.el: Don't require CL.
1455 (view-hello-file): Don't use `letf'.
1456
1457 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
1458
1459 * tmm.el (tmm-prompt): Use string-prefix-p.
1460 (tmm-completion-delete-prompt): Don't affect current-buffer outside.
1461 (tmm-add-prompt): Use minibuffer-completion-help.
1462 (tmm-delete-map): Remove.
1463
1464 * subr.el (kbd): Make it its own function.
1465
1466 2012-06-07 Stefan Merten <smerten@oekonux.de>
1467
1468 * textmodes/rst.el: Use `eval-when-compile' for requiring `cl.el'.
1469 Silence compiler warnings. Fix versions.
1470 (rst-position-if, rst-position, rst-some, rst-signum): New functions.
1471 (rst-shift-region, rst-adornment-level, rst-compute-tabs)
1472 (rst-indent-line, rst-shift-region, rst-forward-line): Use them.
1473 (rst-package-emacs-version-alist): Correct Emacs version to
1474 represent major merge with upstream.
1475 (rst-transition, rst-adornment, rst-compile-toolsets): Fix versions.
1476
1477 2012-06-06 Glenn Morris <rgm@gnu.org>
1478
1479 * mail/emacsbug.el (report-emacs-bug): Add relevant EMACS env-vars.
1480 Only print environment variables if set.
1481
1482 2012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
1483
1484 * emacs-lisp/macroexp.el: Don't require CL since we don't use it.
1485 (macroexp--cons): Rename from maybe-cons.
1486 (macroexp--accumulate): Rename from macroexp-accumulate.
1487 (macroexp--all-forms): Rename from macroexpand-all-forms.
1488 (macroexp--all-clauses): Rename from macroexpand-all-clauses.
1489 (macroexp--expand-all): Rename from macroexpand-all-1.
1490
1491 2012-06-06 Sam Steingold <sds@gnu.org>
1492
1493 * calendar/calendar.el (calendar-in-read-only-buffer):
1494 Call `special-mode' to enable the standard read-only keybindings.
1495
1496 2012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
1497
1498 * emacs-lisp/macroexp.el (macroexpand-all-1): Don't spam the output
1499 with "loading" messages (bug#11635).
1500
1501 2012-06-06 Michael Albinus <michael.albinus@gmx.de>
1502
1503 * files.el (enable-remote-dir-locals): New option.
1504 (hack-dir-local-variables): Use it. (Bug#1933, Bug#6731)
1505
1506 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
1507 Ensure, that the temp directory is local.
1508
1509 * net/tramp-sh.el (tramp-sh-handle-write-region): Let-bind
1510 `temporary-file-directory'.
1511
1512 * progmodes/python.el (python-send-region): Ensure, that the
1513 temporary file is created also in the remote case.
1514
1515 2012-06-06 Glenn Morris <rgm@gnu.org>
1516
1517 * vc/vc-rcs.el (vc-rcs-rcs2log-program): New.
1518 (vc-rcs-update-changelog): Use it.
1519
1520 * emacs-lisp/authors.el (authors-fixed-entries): Remove vcdiff
1521
1522 * vc/vc-sccs.el (vc-sccs-write-revision): New function.
1523 (vc-sccs-workfile-unchanged-p): Use vc-sccs-write-revision.
1524 (vc-sccs-diff): Replace use of the external vcdiff script.
1525
1526 2012-06-05 Glenn Morris <rgm@gnu.org>
1527
1528 * ledit.el: Move to obsolete/.
1529
1530 2012-06-05 Sam Steingold <sds@gnu.org>
1531
1532 * calendar/calendar.el (calendar-exit): reinstate the 2012-03-28
1533 patch (Bug#11140).
1534
1535 2012-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
1536
1537 * emacs-list/cust-print.el: Move to obsolete.
1538
1539 * emacs-lisp/macroexp.el (macroexpand-all-1): Tolerate errors during
1540 compiler-macro expansion.
1541
1542 Add native compiler-macro support.
1543 * emacs-lisp/macroexp.el (macroexpand-all-1):
1544 Support compiler-macros directly. Properly follow aliases and apply
1545 the compiler macros more thoroughly.
1546 * emacs-lisp/cl.el: Don't copy compiler-macro properties any more since
1547 macroexpand now properly follows aliases.
1548 * emacs-lisp/cl-macs.el (toplevel, cl-define-compiler-macro)
1549 (cl-compiler-macroexpand): Use new prop.
1550 * emacs-lisp/byte-opt.el (featurep): Optimize earlier.
1551
1552 * emacs-lisp/cl-lib.el (custom-print-functions): Add alias.
1553
1554 2012-06-05 Martin Rudalics <rudalics@gmx.at>
1555
1556 * window.el (get-lru-window, get-mru-window, get-largest-window):
1557 New argument NOT-SELECTED to avoid picking the selected window.
1558 (window--display-buffer-1, window--display-buffer-2): Replace by
1559 new function window--display-buffer
1560 (display-buffer-same-window, display-buffer-reuse-window)
1561 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
1562 Use window--display-buffer.
1563 (display-buffer-use-some-window): Remove temporary dedication
1564 hack by calling get-lru-window and get-largest-window with
1565 NOT-SELECTED argument non-nil. Call window--display-buffer.
1566
1567 2012-06-05 Glenn Morris <rgm@gnu.org>
1568
1569 * vc/vc-sccs.el (vc-sccs-workfile-unchanged-p):
1570 Replace external vcdiff script.
1571
1572 2012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
1573
1574 * emacs-lisp/cl-lib.el (cl-values, cl-values-list): Fix up last change.
1575
1576 2012-06-04 Chong Yidong <cyd@gnu.org>
1577
1578 * image.el (imagemagick-types-inhibit): Revert last change.
1579 Add INFO and M.
1580 (imagemagick-enabled-types): Remove CIN and EPS*.
1581
1582 2012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
1583
1584 * emacs-lisp/cl-lib.el: Rename from cl.el.
1585 * emacs-lisp/cl.el: New compatibility file.
1586 * emacs-lisp/cl-lib.el, emacs-lisp/cl-seq.el, emacs-lisp/cl-macs.el:
1587 * emacs-lisp/cl-extra.el: Rename all top-level functions and variables
1588 to obey the "cl-" prefix.
1589 * emacs-lisp/macroexp.el (macroexpand-all-1): Adjust to new name.
1590
1591 2012-06-03 Glenn Morris <rgm@gnu.org>
1592
1593 * emacs-lisp/authors.el (authors-aliases): Addition.
1594
1595 * cus-start.el (tool-bar-style, tool-bar-max-label-size):
1596 Fix :version.
1597
1598 2012-06-03 Stefan Merten <smerten@oekonux.de>
1599
1600 * textmodes/rst.el: Add comments.
1601 (rst-transition, rst-adornment): New faces.
1602 (rst-adornment-faces-alist): Make default safe to reevaluate.
1603 Fixes
1604 http://sourceforge.net/tracker/?func=detail&atid=422030&aid=3479603&group_id=38414.
1605 Improve customization tags.
1606 (rst-define-level-faces): Clarify meaning.
1607
1608 2012-06-03 Chong Yidong <cyd@gnu.org>
1609
1610 * progmodes/compile.el (compilation-mode-line-fail)
1611 (compilation-mode-line-run, compilation-mode-line-exit):
1612 New faces.
1613 (compilation-start, compilation-handle-exit): Use them (Bug#11032).
1614
1615 2012-06-03 Jack Duthen <duthen.mac.01@gmail.com> (tiny change)
1616
1617 * progmodes/which-func.el (which-func-update-ediff-windows):
1618 New function. Use it in ediff-select-hook (Bug#11478).
1619
1620 2012-06-03 Chong Yidong <cyd@gnu.org>
1621
1622 * bindings.el: Remove explicit help text from format-mode-line.
1623 It is now supplied by mode-line-default-help-echo.
1624 (mode-line-front-space, mode-line-end-spaces)
1625 (mode-line-misc-info): New variables.
1626 (mode-line-modes, mode-line-position): Move the default value to
1627 the variable definition.
1628 (mode-line-default-help-echo): New defcustom.
1629 (mode-line-mule-info-help-echo, mode-line-read-only-help-echo)
1630 (mode-line-modified-help-echo): New functions.
1631 (mode-line-mule-info, mode-line-modified): Use them.
1632 (mode-line-eol-desc, propertized-buffer-identification):
1633 Consistency fixes for help text.
1634 (mode-line-coding-system-map): Allow using mouse-3 to invoke
1635 set-buffer-file-coding-system (Bug#289).
1636 (mode-line-mule-info-help-echo): Update help text.
1637
1638 2012-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
1639
1640 * simple.el (execute-extended-command): Set real-this-command
1641 (bug#11506).
1642
1643 2012-06-02 Chong Yidong <cyd@gnu.org>
1644
1645 Remove incorrect uses of "modeline" in comments, docstrings, and
1646 function/variable names (Bug#10329).
1647
1648 * cus-edit.el (mode-line):
1649 * dframe.el (dframe-mouse-hscroll):
1650 * emacs-lisp/re-builder.el:
1651 * emacs-lisp/easy-mmode.el (define-minor-mode):
1652 * frame.el (set-frame-name):
1653 * help.el (lookup-minor-mode-from-indicator):
1654 * net/rcirc.el (rcirc-activity-string, rcirc-short-buffer-name):
1655 * progmodes/cc-cmds.el (c-toggle-auto-newline)
1656 (c-toggle-hungry-state):
1657 * progmodes/antlr-mode.el (antlr-language-alist):
1658 * progmodes/idlw-shell.el (idlwave-shell-electric-stop-line-face):
1659 * progmodes/vhdl-mode.el (vhdl-mode):
1660 * progmodes/which-func.el (which-func, which-func-cleanup-function):
1661 * term/ns-win.el (ns-face-at-pos):
1662 * term/sup-mouse.el (sup-mouse-report):
1663 * textmodes/flyspell.el (flyspell-mode-line-string):
1664 * textmodes/ispell.el (ispell-highlight-face):
1665 * textmodes/reftex-global.el:
1666 * vc/vc-arch.el (vc-arch-mode-line-string):
1667 * vc/vc-cvs.el (vc-cvs-mode-line-string):
1668 * vc/vc-git.el (vc-git-mode-line-string):
1669 * vc/vc-hooks.el (vc-display-status)
1670 (vc-default-mode-line-string):
1671 * vc/vc-mtn.el (vc-mtn-mode-line-string): Doc fixes.
1672
1673 * ansi-color.el (ansi-color-faces-vector): Change default faces.
1674
1675 * dired.el (dired-sort-set-mode-line): Rename from
1676 dired-sort-set-modeline. All callers changed.
1677
1678 * eshell/esh-mode.el (eshell-status-in-mode-line): Rename from
1679 eshell-status-in-modeline.
1680
1681 * foldout.el (foldout-mode-line-string): Rename from
1682 foldout-modeline-string. All callers changed.
1683 (foldout-update-mode-line): Rename from foldout-update-modeline.
1684
1685 * subr.el (redraw-modeline): Make into obsolete alias.
1686
1687 * calendar/timeclock.el (timeclock-mode-line-display): Rename from
1688 timeclock-modeline-display. Make old name an alias.
1689 (timeclock-update-mode-line): Likewise. All callers changed.
1690 (timeclock-mode-line-display): No need to check before using
1691 add-hook.
1692 (timeclock-relative, timeclock-day-over-hook)
1693 (timeclock-use-elapsed, timeclock-mode-string)
1694 (timeclock-mode-line-display): Doc fix, "modeline" -> "mode line".
1695
1696 * emulation/crisp.el (crisp-mode-mode-line-string): Rename from
1697 crisp-mode-modeline-string.
1698
1699 * play/solitaire.el (solitaire-build-mode-line): Rename from
1700 solitaire-build-modeline. All callers changed.
1701
1702 * play/zone.el (zone-hiding-mode-line): Rename from
1703 zone-hiding-modeline. All callers changed.
1704 (zone): Remove unusued `modeline-hidden-level' property.
1705
1706 * progmodes/xscheme.el (xscheme-mode-line-initialize): Rename from
1707 xscheme-modeline-initialize. All callers changed.
1708
1709 * strokes.el (strokes-lighter): Rename from
1710 strokes-modeline-string.
1711
1712 * textmodes/sgml-mode.el (html-face-tag-alist)
1713 (html-tag-face-alist): Use mode-line face instead of obsolete
1714 alias modeline.
1715
1716 2012-06-02 Stefan Merten <smerten@oekonux.de>
1717
1718 * textmodes/rst.el: Always require `cl'.
1719 (rst-mode-map): Fix meaning of C-M-a / C-M-e.
1720
1721 2012-06-02 Chong Yidong <cyd@gnu.org>
1722
1723 * image.el (imagemagick-enabled-types): Rename from
1724 imagemagick-types-enable. Add many more types.
1725 (imagemagick-types-inhibit): Change default to nil.
1726 (imagemagick-filter-types): Caller changed.
1727
1728 2012-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
1729
1730 * emacs-lisp/cl-macs.el: Use backquotes.
1731 (cl-transform-function-property): Use eval-and-compile rather than
1732 abusing `require'.
1733 (defstruct): Use declare-function instead of with-no-warnings.
1734
1735 * emacs-lisp/bytecomp.el: Fix last change (bug#11594).
1736 (byte-compile-output-docform): Re-add the print-circle bindings.
1737 (byte-compile-fix-header): Use #$ just because it's shorter.
1738 (byte-compile-output-file-form): Remove defun/defmacro.
1739
1740 2012-06-01 Martin Rudalics <rudalics@gmx.at>
1741
1742 * simple.el (choose-completion): Remove now obsolete binding for
1743 owindow.
1744
1745 2012-06-01 Michael Albinus <michael.albinus@gmx.de>
1746
1747 * net/tramp.el (tramp-check-for-regexp): Search from buffer end,
1748 in order to avoid "Stack overflow in regexp matcher".
1749
1750 2012-05-31 Glenn Morris <rgm@gnu.org>
1751
1752 * image.el: For clarity, call imagemagick-register-types at
1753 top-level, rather than relying on a custom :initialize.
1754 (imagemagick-types-enable): New option. (Bug#11557)
1755 (imagemagick-filter-types): New function. (Bug#7406)
1756 (imagemagick-register-types): Use imagemagick-filter-types.
1757 If disabling support, remove elements altogether rather
1758 than using an impossible regexp.
1759 (imagemagick-types-inhibit): Give it the default init function.
1760
1761 2012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
1762
1763 * emacs-lisp/bytecomp.el (byte-compile-fix-header):
1764 Handle arbitrary file name lengths (Bug#11585).
1765
1766 2012-05-31 Martin Rudalics <rudalics@gmx.at>
1767
1768 * desktop.el (desktop-read): Clear previous and next buffers for
1769 all windows and bury *Messages* buffer (bug#11556).
1770
1771 2012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
1772
1773 Add `declare' for `defun'. Align `defmacro's with it.
1774 * emacs-lisp/easy-mmode.el (define-minor-mode)
1775 (define-globalized-minor-mode): Don't autoload the var definitions.
1776 * emacs-lisp/byte-run.el: Use lexical-binding.
1777 (defun-declarations-alist, macro-declarations-alist): New vars.
1778 (defmacro, defun): Use them.
1779 (make-obsolete, define-obsolete-function-alias)
1780 (make-obsolete-variable, define-obsolete-variable-alias):
1781 Use `declare'.
1782 (macro-declaration-function): Mark obsolete.
1783 * emacs-lisp/autoload.el: Use lexical-binding.
1784 (make-autoload): Add `expansion' arg. Rely more on macro expansion.
1785
1786 2012-05-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
1787
1788 * textmodes/ispell.el (ispell-with-no-warnings):
1789 Define as a macro.
1790 (ispell-kill-ispell, ispell-change-dictionary):
1791 Use `called-interactively-p' for Emacs instead of obsolete
1792 `interactive-p'.
1793
1794 2012-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
1795
1796 * emacs-lisp/byte-run.el (defmacro, defun): Move from C.
1797 (macro-declaration-function): Move var from C code.
1798 (macro-declaration-function): Define function with defalias.
1799 * emacs-lisp/macroexp.el (macroexpand-all-1):
1800 * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form):
1801 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Don't handle
1802 defun/defmacro any more.
1803 * emacs-lisp/bytecomp.el (byte-compile-arglist-signature):
1804 Provide fallback for unknown arglist.
1805 (byte-compile-arglist-warn): Change calling convention.
1806 (byte-compile-output-file-form): Move print-vars binding.
1807 (byte-compile-output-docform): Simplify accordingly.
1808 (byte-compile-file-form-defun, byte-compile-file-form-defmacro)
1809 (byte-compile-defmacro-declaration): Remove.
1810 (byte-compile-file-form-defmumble): Generalize to defalias.
1811 (byte-compile-output-as-comment): Return byte-positions.
1812 Simplify callers accordingly.
1813 (byte-compile-lambda): Use `assert'.
1814 (byte-compile-defun, byte-compile-defmacro): Remove.
1815 (byte-compile-file-form-defalias):
1816 Use byte-compile-file-form-defmumble.
1817 (byte-compile-defalias-warn): Remove.
1818
1819 2012-05-29 Stefan Merten <smerten@oekonux.de>
1820
1821 * textmodes/rst.el: Silence `checkdoc-ispell' errors where
1822 possible. Fix authors. Improve comments. Improve loading of `cl'.
1823
1824 (rst-mode-abbrev-table): Merge definition.
1825 (rst-mode): Make sure `font-lock-defaults' is buffer local.
1826 (rst-define-key, rst-deprecated-keys, rst-call-deprecated): Refactor.
1827
1828 2012-05-29 Ulf Jasper <ulf.jasper@web.de>
1829
1830 * calendar/icalendar.el
1831 (icalendar-export-region): Export UID properly.
1832
1833 2012-05-29 Leo Liu <sdl.web@gmail.com>
1834 * calendar/icalendar.el (icalendar-import-format):
1835 Add `icalendar-import-format-uid' (Bug#11525).
1836 (icalendar-import-format-uid): New.
1837 (icalendar--parse-summary-and-rest, icalendar--format-ical-event):
1838 Export UID.
1839
1840 2012-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
1841
1842 * emacs-lisp/pcase.el (pcase--expand): Accept different sets of vars in
1843 different alternative patterns.
1844 (pcase-codegen): Be more careful to preserve identity.
1845 (pcase--u1): Don't forget to mark vars as used.
1846
1847 * emacs-lisp/bytecomp.el (byte-compile-constp): Treat #'v as a constant.
1848 (byte-compile-close-variables): Bind byte-compile--outbuffer here...
1849 (byte-compile-from-buffer): ...rather than here.
1850
1851 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Don't re-preprocess
1852 functions from byte-compile-function-environment.
1853
1854 2012-05-29 Troels Nielsen <bn.troels@gmail.com>
1855
1856 * window.el (window-deletable-p): Avoid deleting the root window
1857 of a frame with an active minibuffer.
1858
1859 2012-05-29 Martin Rudalics <rudalics@gmx.at>
1860
1861 * simple.el (choose-completion): Use quit-window (Bug#11567).
1862
1863 2012-05-29 Chong Yidong <cyd@gnu.org>
1864
1865 * whitespace.el (whitespace-cleanup): Fix usage of
1866 whitespace-empty-at-bob-regexp (Bug#11492).
1867
1868 2012-05-29 Aaron S. Hawley <aaron.s.hawley@gmail.com>
1869
1870 * vc/vc.el (vc-revert, vc-rollback): Dont kill vc-diff buffer on
1871 revert (Bug#11488).
1872
1873 2012-05-29 Juri Linkov <juri@jurta.org>
1874
1875 * isearch.el (isearch-mode-map): Bind `M-s _' to
1876 `isearch-toggle-symbol'. Bind `M-s c' to
1877 `isearch-toggle-case-fold'.
1878 (search-map): Bind `M-s _' to `isearch-forward-symbol'.
1879 (isearch-forward): Add `M-s _' to the docstring.
1880 (isearch-forward-symbol, isearch-toggle-case-fold)
1881 (isearch-symbol-regexp): New functions. (Bug#11381)
1882
1883 2012-05-29 Juri Linkov <juri@jurta.org>
1884
1885 * isearch.el (isearch-word): Add docstring. (Bug#11381)
1886 (isearch-occur, isearch-search-and-update): If `isearch-word' is
1887 a function, call it to get the regexp.
1888 (isearch-message-prefix): If `isearch-word' holds a symbol, use its
1889 property `isearch-message-prefix' instead of the string "word ".
1890 (isearch-search-fun-default): For the case of `isearch-word',
1891 return a lambda that calls re-search-forward/re-search-backward
1892 with a regexp returned by `word-search-regexp' or by the function
1893 in `isearch-word'.
1894
1895 2012-05-29 Juri Linkov <juri@jurta.org>
1896
1897 * isearch.el (isearch-search-fun-default): New function.
1898 (isearch-search-fun): Move default part to the new function
1899 `isearch-search-fun-default'.
1900 (isearch-search-fun-function): Set the default value to
1901 `isearch-search-fun-default'. (Bug#11381)
1902
1903 * comint.el (comint-history-isearch-end):
1904 Use `isearch-search-fun-default'.
1905 (comint-history-isearch-search): Use `isearch-search-fun-default'
1906 and remove spacial case for `isearch-word'.
1907 (comint-history-isearch-wrap): Remove spacial case for
1908 `isearch-word'.
1909
1910 * hexl.el (hexl-isearch-search-function):
1911 Use `isearch-search-fun-default'.
1912
1913 * info.el (Info-isearch-search): Use `isearch-search-fun-default'.
1914 Use `word-search-regexp' for `isearch-word'.
1915
1916 * misearch.el (multi-isearch-search-fun):
1917 Use `isearch-search-fun-default'.
1918
1919 * simple.el (minibuffer-history-isearch-search):
1920 Use `isearch-search-fun-default' and remove spacial case for
1921 `isearch-word'.
1922 (minibuffer-history-isearch-wrap): Remove spacial case for
1923 `isearch-word'.
1924
1925 * textmodes/reftex-global.el (reftex-isearch-wrap-function):
1926 Remove spacial case for `isearch-word'.
1927 (reftex-isearch-isearch-search): Use `isearch-search-fun-default'.
1928
1929 2012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
1930
1931 Decrease XEmacs incompatibilities.
1932 * textmodes/flyspell.el (flyspell-check-pre-word-p):
1933 Use `string-match'.
1934 (flyspell-delete-region-overlays): Use alternative definition for
1935 XEmacs.
1936 (flyspell-delete-all-overlays): Use `flyspell-delete-region-overlays'.
1937 (flyspell-word): Use `process-kill-without-query' if XEmacs.
1938 (flyspell-mode-on): Use `interactive-p' if XEmacs.
1939 (flyspell-incorrect-face, flyspell-duplicate-face): Do not use
1940 `define-obsolete-face-alias' under XEmacs, but old method.
1941
1942 * textmodes/ispell.el (ispell-with-no-warnings): XEmacs alternative
1943 `with-no-warnings' definition or Emacs alias.
1944 (ispell-command-loop, ispell-message): Use `ispell-with-no-warnings'.
1945 (ispell-word): Do not use `region-p' if XEmacs.
1946
1947 2012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
1948
1949 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
1950 Check for `ispell-dictionary-base-alist' instead of full
1951 `ispell-dictionary-alist'.
1952 (ispell-init-process): Show spellchecker when starting new Ispell
1953 process.
1954
1955 2012-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
1956
1957 * progmodes/vhdl-mode.el: Sync with upstream 3.33.28.
1958 http://www.iis.ee.ethz.ch/~zimmi/emacs/vhdl-mode.html#release-notes-3.33
1959
1960 2012-05-27 Juanma Barranquero <lekktu@gmail.com>
1961
1962 * version.el (motif-version-string, gtk-version-string)
1963 (ns-version-string): Declare.
1964
1965 2012-05-27 Juri Linkov <juri@jurta.org>
1966
1967 * emacs-lisp/lisp-mode.el (eval-defun-2): Use `eval-sexp-add-defvars'
1968 after the `eval-defun-1' specialcaseing
1969 like in `edebug-eval-defun' (bug#10181).
1970
1971 * emacs-lisp/edebug.el (edebug-eval-defun): Set `face-documentation'
1972 like in `eval-defun-1'.
1973
1974 2012-05-27 Eli Zaretskii <eliz@gnu.org>
1975
1976 * mail/sendmail.el (mail-yank-region):
1977 Recognize rmail-yank-current-message in addition to insert-buffer.
1978 Fixes mail-mode's "C-c C-r" that otherwise does nothing when invoked in
1979 a *mail* buffer created through rmail-start-mail with sendmail as
1980 mail-user-agent.
1981
1982 2012-05-27 Chong Yidong <cyd@gnu.org>
1983
1984 * net/gnutls.el (gnutls-min-prime-bits): Improve docstring.
1985 Default to 256 (Bug#11267).
1986
1987 * help.el (describe-mode): Doc fix.
1988
1989 2012-05-26 Glenn Morris <rgm@gnu.org>
1990
1991 * w32-fns.el (w32-init-info): Remove.
1992 * paths.el (Info-default-directory-list): Add w32-init-info equivalent.
1993
1994 * info.el (info-initialize): For self-contained NS builds, put the
1995 included info/ directory at the front. (Bug#2791)
1996
1997 * paths.el (Info-default-directory-list): Make it a defcustom,
1998 mainly so that we can use custom-initialize-delay.
1999
2000 2012-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
2001
2002 * subr.el (buffer-has-markers-at): Mark obsolete.
2003
2004 * subr.el (lambda): Use declare.
2005
2006 * emacs-lisp/lisp-mode.el (lambda):
2007 * emacs-lisp/edebug.el (lambda): Move properties to its definition.
2008
2009 2012-05-26 Aaron S. Hawley <aaron.s.hawley@gmail.com>
2010
2011 * thingatpt.el (forward-same-syntax): Handle no ARG case. (Bug#11560)
2012
2013 2012-05-26 Glenn Morris <rgm@gnu.org>
2014
2015 * progmodes/cc-mode.el (auto-mode-alist): Fix typo.
2016
2017 2012-05-25 Glenn Morris <rgm@gnu.org>
2018
2019 * paths.el: Remove no-byte-compile.
2020 * loadup.el: No need to load paths.el uncompiled.
2021
2022 * image.el (imagemagick-types-inhibit): Doc fix.
2023
2024 * version.el: Remove no-byte-compile and associated formatting.
2025 * loadup.el: No need to load version.el uncompiled. AFAICS, this
2026 is ancient code from when there was an "inc-vers.el".
2027
2028 2012-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
2029
2030 * progmodes/gdb-mi.el: Minor style changes.
2031 (gdb-enable-debug, gdb-speedbar-auto-raise, gdb-many-windows):
2032 Turn into minor modes.
2033 (gdb--if-arrow): Rename from gdb-if-arrow, make it hygienic.
2034 (gdb-mouse-until, gdb-mouse-jump): Adjust uses accordingly.
2035 (gdb-shell): Remove unneeded let-binding.
2036 (gdb-get-many-fields): Eliminate O(n²) behavior.
2037
2038 2012-05-25 Eli Zaretskii <eliz@gnu.org>
2039
2040 * cus-start.el <vertical-centering-font-regexp>: Avoid warning on
2041 platforms that don't link in fontset.c.
2042
2043 2012-05-25 Juri Linkov <juri@jurta.org>
2044
2045 Use the same diff color scheme as in modern VCSes (bug#10181).
2046
2047 * vc/diff-mode.el (diff-header, diff-file-header): Remove "green"
2048 to avoid confusion with `diff-added' that now uses green colors.
2049 (diff-removed): Use shades of red.
2050 (diff-added): Use shades of green.
2051 (diff-changed): Leave just the yellow color.
2052 (diff-use-changed-face): New variable.
2053 (diff-font-lock-keywords): Use `diff-use-changed-face' to decide
2054 how to highlight context diff changes.
2055 (diff-refine-change): Use shades of yellow.
2056 (diff-refine-removed): New face that uses shades of red.
2057 (diff-refine-added): New face that uses shades of green.
2058 (diff-refine-hunk): Use `diff-refine-change', `diff-refine-added',
2059 `diff-refine-removed' in the call to `smerge-refine-subst'
2060 depending on the value of `diff-use-changed-face'.
2061
2062 * vc/smerge-mode.el (smerge-mine): Use shades of red.
2063 (smerge-other): Use shades of green.
2064 (smerge-base): Use shades of yellow.
2065 (smerge-refined-change): Empty face.
2066 (smerge-refined-removed): New face that uses shades of red.
2067 (smerge-refined-added): New face that uses shades of green.
2068 (smerge-refine-subst): Rename arg `props' to `props-c'. Add new
2069 args `props-r' and `props-a', and use them. Doc fix.
2070 (smerge-refine): Evaluate `smerge-use-changed-face' and depending
2071 on its value use different faces `smerge-refined-change',
2072 `smerge-refined-removed', `smerge-refined-added' in the call to
2073 `smerge-refine-subst'.
2074
2075 * vc/ediff-init.el (ediff-current-diff-A, ediff-fine-diff-A):
2076 Add face condition `min-colors 88' with shades of red.
2077 (ediff-current-diff-B, ediff-fine-diff-B): Add face condition
2078 `min-colors 88' with shades of green.
2079 (ediff-current-diff-C, ediff-fine-diff-C): Add face condition
2080 `min-colors 88' with shades of yellow.
2081
2082 2012-05-24 Glenn Morris <rgm@gnu.org>
2083
2084 * paths.el (prune-directory-list, remote-shell-program): Move to...
2085 * files.el (prune-directory-list, remote-shell-program): ...here.
2086 For the latter, delay initialization, prefer ssh, just search PATH.
2087
2088 * paths.el (term-file-prefix): Move to faces.el (the only user).
2089 * faces.el (term-file-prefix): Move here, make it a defcustom.
2090
2091 * paths.el (news-directory, news-path, news-inews-program):
2092 Move to gnus/nnspool.el.
2093
2094 * paths.el (gnus-default-nntp-server): Remove (gnus.el defines it).
2095
2096 * paths.el (rmail-file-name, rmail-spool-directory): Move from here...
2097 * mail/rmail.el (rmail-file-name, rmail-spool-directory): ... to here.
2098 Make the latter a defcustom, with a delayed initialization.
2099
2100 * paths.el (gnus-nntp-service, gnus-local-organization): Remove.
2101 These were deleted from Gnus itself late 2010.
2102
2103 2012-05-22 Juanma Barranquero <lekktu@gmail.com>
2104
2105 * progmodes/which-func.el (which-func-ff-hook):
2106 Check against user-error, not error.
2107
2108 * emacs-lisp/edebug.el (top): Do not load or set up loading of
2109 cl-specs.el, which no longer exists.
2110
2111 2012-05-22 Glenn Morris <rgm@gnu.org>
2112
2113 * info.el (info-emacs-bug): New command.
2114 * menu-bar.el (menu-bar-help-menu): Add "How to Report a Bug" to Help.
2115 * mail/emacsbug.el (report-emacs-bug): Replace with info-emacs-bug.
2116
2117 2012-05-21 Glenn Morris <rgm@gnu.org>
2118
2119 * makefile.w32-in (update-subdirs-SH):
2120 * Makefile.in (update-subdirs): Update for moved update-subdirs.
2121
2122 2012-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
2123
2124 * hi-lock.el (hi-lock-face-defaults): Move obsolete before definition.
2125
2126 * progmodes/compile.el (compilation-error-regexp-alist-alist):
2127 Simplify Maven regexp, and make sure the file can't start with a space
2128 (bug#11517).
2129
2130 2012-05-21 Glenn Morris <rgm@gnu.org>
2131
2132 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
2133 Scrap superfluous subshells.
2134
2135 2012-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
2136
2137 * emacs-lisp/bytecomp.el (byte-compile-root-dir): New var.
2138 (byte-compile-warning-prefix, batch-byte-compile-file): Use it.
2139
2140 2012-05-19 Jay Belanger <jay.p.belanger@gmail.com>
2141
2142 * calc/calc.el (calc-ensure-consistent-units): New variable.
2143
2144 * calc/calc-units.el (math-consistent-units-p)
2145 (math-check-unit-consistency): New functions.
2146 (calc-quick-units, calc-convert-units):
2147 Use `math-check-unit-consistency' when `calc-ensure-consistent-units'
2148 is non-nil.
2149 (calc-extract-units): Fix typo.
2150
2151 2012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
2152
2153 * vc/vc-bzr.el (vc-bzr-state-heuristic): Save match-data around sha1.
2154
2155 * textmodes/flyspell.el: Commenting style, plus code simplifications.
2156 (flyspell-default-deplacement-commands): Don't spell check after
2157 repeated window/frame switches (e.g. triggered by mouse-movement).
2158 (flyspell-delay-commands, flyspell-deplacement-commands): Use mapc.
2159 (flyspell-debug-signal-word-checked): Simplify and fit in 80 cols.
2160 (flyspell-casechars-cache, flyspell-ispell-casechars-cache)
2161 (flyspell-not-casechars-cache, flyspell-ispell-not-casechars-cache):
2162 Remove unused vars.
2163 (flyspell-get-casechars, flyspell-get-not-casechars):
2164 Simplify; Don't bother removing a ] just to add it back.
2165 * textmodes/ispell.el (ispell-program-name): Use executable-find.
2166
2167 2012-05-18 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
2168
2169 * calc/calc-lang.el (math-C-parse-bess, math-C-parse-fma):
2170 New functions.
2171 (math-function-table): Add support for more C functions.
2172
2173 2012-05-18 Agustín Martín Domingo <agustin.martin@hispalinux.es>
2174
2175 * flyspell.el (flyspell-check-pre-word-p, flyspell-check-word-p)
2176 (flyspell-debug-signal-word-checked): Protect delay handling for
2177 otherchars against empty otherchars.
2178
2179 2012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
2180
2181 * emacs-lisp/lisp-mode.el (doc-string-elt): Move those properties to
2182 their respective macro declarations.
2183 * skeleton.el (define-skeleton):
2184 * progmodes/compile.el (define-compilation-mode):
2185 * ibuf-macs.el (define-ibuffer-sorter, define-ibuffer-op)
2186 (define-ibuffer-filter):
2187 * emacs-lisp/generic.el (define-generic-mode):
2188 * emacs-lisp/easy-mmode.el (define-minor-mode)
2189 (define-globalized-minor-mode):
2190 * emacs-lisp/cl-macs.el (defun*, defmacro*, defstruct, deftype):
2191 * emacs-lisp/byte-run.el (defsubst):
2192 * custom.el (deftheme): Add doc-string metadata.
2193
2194 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
2195
2196 * emacs-lisp/cl-macs.el, emacs-lisp/cl.el: Move indent info.
2197
2198 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
2199
2200 * emacs-lisp/pcase.el (pcase--u1): Avoid ((lambda ...) ...).
2201
2202 * emacs-lisp/cl.el: Add edebug specs from cl-specs.el.
2203 * emacs-lisp/cl-macs.el: Idem.
2204 * emacs-lisp/cl-specs.el: Remove.
2205
2206 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
2207
2208 Minor renaming of internal CL functions and variables.
2209 * emacs-lisp/cl-seq.el (cl--adjoin): Rename from cl-adjoin.
2210 (cl--position): Rename from cl-position.
2211 (cl--delete-duplicates): Rename from cl-delete-duplicates.
2212 * emacs-lisp/cl.el (cl--gensym-counter): Rename from *gensym-counter*.
2213 (cl--random-state): Rename from *random-state*.
2214
2215 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
2216
2217 * emacs-lisp/cl-macs.el (cl-transform-lambda): Don't add spurious
2218 parens around the arg list (bug#11499).
2219
2220 2012-05-17 Juri Linkov <juri@jurta.org>
2221
2222 * isearch.el (word-search-regexp, word-search-backward)
2223 (word-search-forward, word-search-backward-lax)
2224 (word-search-forward-lax): Move functions from search.c
2225 (bug#10145, bug#11381).
2226
2227 2012-05-16 Agustín Martín Domingo <agustin.martin@hispalinux.es>
2228
2229 * flyspell.el (flyspell-check-pre-word-p, flyspell-check-word-p)
2230 (flyspell-debug-signal-word-checked): Delay for otherchars as for
2231 normal word components.
2232
2233 2012-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
2234
2235 * minibuffer.el (completion--sifn-requote): Fix last change.
2236 (minibuffer-local-must-match-filename-map):
2237 Move define-obsolete-variable-alias before its var.
2238
2239 2012-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
2240
2241 * emacs-lisp/pcase.el (pcase-let*, pcase-let): Fix edebug spec.
2242
2243 * minibuffer.el (completion--sifn-requote): Handle sifn's truncation
2244 behavior.
2245 (completion--string-equal-p): New function.
2246 (completion--twq-all): Use it to get better assertion failure data.
2247
2248 Only handle ".." and '..' quoting in shell-mode (bug#11466).
2249 * shell.el (shell--unquote&requote-argument, shell--unquote-argument)
2250 (shell--requote-argument): New functions.
2251 (shell-completion-vars): Use them.
2252 (shell--parse-pcomplete-arguments): Rename from
2253 shell-parse-pcomplete-arguments.
2254 * comint.el (comint-word): Obey comint-file-name-quote-list. Simplify.
2255 (comint--unquote&requote-argument): Don't handle ".." and '..' quoting.
2256 Obey comint-file-name-quote-list.
2257
2258 * emacs-lisp/smie.el (smie-indent--bolp-1): New function.
2259 (smie-indent-keyword): Use it.
2260
2261 2012-05-14 Stefan Merten <smerten@oekonux.de>
2262
2263 * textmodes/rst.el (rst-re-alist): Fix loading (bug#11462).
2264
2265 2012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
2266
2267 * net/rlogin.el (rlogin-mode-map): Fix last change.
2268
2269 2012-05-14 Jason L. Wright <jason.wright@inl.gov> (tiny change)
2270
2271 * mail/smtpmail.el (smtpmail-send-command): Send the command and
2272 the following \r\n using a single `process-send-string', since the
2273 Lotus SMTP server refuses to accept any commands if they are sent
2274 with two `process-send-string's (Bug#11444).
2275
2276 2012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
2277
2278 * shell.el (shell-parse-pcomplete-arguments):
2279 Obey pcomplete-arg-quote-list inside double-quoted args (Bug#11348).
2280
2281 2012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
2282
2283 * image-mode.el: Fit to width/height for rotated images (Bug#11431).
2284 (image-transform-scale, image-transform-right-angle-fudge): New vars.
2285 (image-transform-width, image-transform-fit-width): New functions.
2286 (image-transform-properties): Use them.
2287 (image-transform-check-size): New function.
2288 (image-toggle-display-image): Use it (for testing).
2289 (image-transform-set-rotation): Reduce angle mod 360.
2290 Delete obsolete comment.
2291
2292 2012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
2293
2294 * image-mode.el: Fix scaling (bug#11399).
2295 (image-transform-resize): Doc fix.
2296 (image-transform-properties): Default scale is 1 and height should
2297 be an integer.
2298
2299 2012-05-13 Johan Bockgård <bojohan@gnu.org>
2300
2301 * emacs-lisp/smie.el (smie-next-sexp): Use accessor `op-forw' rather
2302 than hard-coding `car', to fix misbehavior when moving forward.
2303
2304 2012-05-13 Chong Yidong <cyd@gnu.org>
2305
2306 * emacs-lisp/tabulated-list.el (tabulated-list-format)
2307 (tabulated-list-entries, tabulated-list-padding)
2308 (tabulated-list-sort-key): Make permanent-local.
2309
2310 * ebuff-menu.el: Adapt to Buffer Menu changes (Bug#11455).
2311 (electric-buffer-list): Put electric buffer menu
2312 command descriptions in this docstring, instead of the docstring
2313 of electric-buffer-menu-mode. Code cleanups.
2314 (electric-buffer-menu-mode): Use define-derived-mode. Rename from
2315 Electric-buffer-menu-mode.
2316 (electric-buffer-update-highlight): Minor code cleanup.
2317
2318 2012-05-13 Michael Albinus <michael.albinus@gmx.de>
2319
2320 * net/dbus.el (dbus-call-method): Restore events not from D-Bus.
2321 (Bug#11447)
2322
2323 2012-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
2324
2325 Move define-obsolete-variable-alias before the var's definition.
2326 * vc/log-edit.el (vc-comment-ring, vc-comment-ring-index):
2327 * tooltip.el (tooltip-hook):
2328 * textmodes/reftex-toc.el (reftex-toc-map):
2329 * textmodes/reftex-sel.el (reftex-select-label-map)
2330 (reftex-select-bib-map):
2331 * textmodes/reftex-index.el (reftex-index-map)
2332 (reftex-index-phrases-map):
2333 * speedbar.el (speedbar-syntax-table, speedbar-key-map):
2334 * progmodes/meta-mode.el (meta-mode-map):
2335 * novice.el (disabled-command-hook):
2336 * loadhist.el (unload-hook-features-list):
2337 * frame.el (blink-cursor):
2338 * files.el (find-file-not-found-hooks, write-file-hooks)
2339 (write-contents-hooks):
2340 * emulation/tpu-edt.el (GOLD-map):
2341 * emacs-lock.el (emacs-lock-from-exiting):
2342 * emacs-lisp/generic.el (generic-font-lock-defaults):
2343 * emacs-lisp/chart.el (chart-map):
2344 * dos-fns.el (register-name-alist):
2345 * dired-x.el (dired-omit-files-p):
2346 * desktop.el (desktop-enable):
2347 * cus-edit.el (custom-mode-hook):
2348 * buff-menu.el (buffer-menu-mode-hook):
2349 * bookmark.el (bookmark-read-annotation-text-func)
2350 (bookmark-exit-hooks):
2351 * allout.el (allout-mode-deactivate-hook)
2352 (allout-exposure-change-hook, allout-structure-added-hook)
2353 (allout-structure-deleted-hook, allout-structure-shifted-hook):
2354 * dirtrack.el (dirtrack-toggle, dirtrackp, dirtrack-debug-toggle)
2355 (dirtrack-debug): Move call to define-obsolete-variable-alias so it
2356 comes before the corresponding variable's definition.
2357
2358 2012-05-12 Chong Yidong <cyd@gnu.org>
2359
2360 * buff-menu.el (Buffer-menu-buffer+size-width): Doc fix (Bug#11454).
2361 (Buffer-menu-mouse-select): Restore function (Bug#11459).
2362 (Buffer-menu-mode-map): Bind it.
2363 (Buffer-menu--pretty-name): Add a mouse-face property.
2364
2365 2012-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
2366
2367 * progmodes/prolog.el: Use SMIE. Cleanup regexp setup.
2368 (prolog-upper-case-string, prolog-lower-case-string)
2369 (prolog-atom-char-regexp, prolog-atom-regexp): Initialize in defconst.
2370 (prolog-use-smie, prolog-smie-grammar): New vars.
2371 (prolog-smie-forward-token, prolog-smie-backward-token)
2372 (prolog-smie-rules): New funs.
2373 (prolog-comment-indent): Remove.
2374 (prolog-mode-variables): Use default comment indentation instead.
2375 Setup SMIE.
2376 (prolog-build-case-strings, prolog-set-atom-regexps): Remove.
2377 (prolog-mode): Don't call them any more.
2378 (prolog-electric-colon, prolog-electric-dash)
2379 (prolog-edit-menu-insert-move): Use indent-according-to-mode.
2380
2381 * dabbrev.el (dabbrev-expand): Make "no expansion found" a user-error.
2382
2383 * minibuffer.el (completion--twq-all): Again, allow case differences.
2384
2385 * term.el: Move keymap initialization code to be more idiomatic.
2386 (term-signals-menu, term-mode-map, term-raw-map, term-raw-escape-map)
2387 (term-terminal-menu): Move initialization into declaration.
2388 (term-escape-char): Let the user set it in her .emacs.
2389
2390 * progmodes/sh-script.el: Use post-self-insert-hook&electric-pair-mode.
2391 Provide SMIE-based indentation (not enabled by default yet).
2392 (sh-mode-map): Don't bind electric keys.
2393 Use electric-pair-mode instead of skeleton-pair.
2394 (sh-assignment-regexp): Fit within 80 columns.
2395 (sh-indent-supported): Specify actual shell name instead of boolean.
2396 (sh--maybe-here-document): New fun, from sh-maybe-here-document.
2397 (sh-maybe-here-document): Use it. Make obsolete.
2398 (sh-electric-here-document-mode) New minor mode.
2399 (sh-mode): Use it. Don't set sh-indent-supported-here here.
2400 (sh-smie-sh-grammar, sh-smie--sh-operators, sh-smie--sh-operators-re)
2401 (sh-smie--sh-operators-back-re, sh-indent-after-continuation)
2402 (sh-smie-rc-grammar, sh-use-smie): New vars.
2403 (sh-smie--keyword-p, sh-smie--newline-semi-p, sh-smie--sh-keyword-p)
2404 (sh-smie-sh-forward-token, sh-smie--looking-back-at-continuation-p)
2405 (sh-smie-sh-backward-token, sh-smie--continuation-start-indent)
2406 (sh-smie-sh-rules, sh-smie-rc-rules, sh-smie--sh-keyword-in-p)
2407 (sh-smie--rc-after-special-arg-p, sh-smie-rc-backward-token)
2408 (sh-smie-sh-rules, sh-smie--rc-newline-semi-p): New functions.
2409 (sh-set-shell): Use smie-setup if requested.
2410
2411 * term.el (term-set-escape-char): Properly set term-escape-char.
2412 See http://stackoverflow.com/questions/10524656.
2413
2414 2012-05-10 Chong Yidong <cyd@gnu.org>
2415
2416 * ffap.el (ffap-url-unwrap-local): Make it work right (Bug#9131).
2417 Use url-generic-parse-url, and handle host names and Windows
2418 filenames properly.
2419 (ffap-url-unwrap-remote): Use url-generic-parse-url.
2420 (ffap-url-unwrap-remote): Accept list values, specifying a list of
2421 URL schemes to work on.
2422 (ffap--toggle-read-only): New function.
2423 (ffap-read-only, ffap-read-only-other-window)
2424 (ffap-read-only-other-frame): Use it.
2425 (ffap-fixup-url): Don't check ffap-ftp-regexp, since it is not
2426 necessary for ffap-url-unwrap-remote.
2427
2428 2012-05-10 Dave Abrahams <dave@boostpro.com>
2429
2430 * cus-start.el (create-lockfiles): Add it.
2431
2432 2012-05-09 Chong Yidong <cyd@gnu.org>
2433
2434 * net/browse-url.el (browse-url-url-encode-chars): Use upper-case.
2435 (browse-url-encode-url): Encode spaces and quotes (Bug#6300).
2436
2437 2012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
2438
2439 * shell.el (shell-completion-vars): Fix last change (bug#11348).
2440
2441 2012-05-09 Chong Yidong <cyd@gnu.org>
2442
2443 * ansi-color.el (ansi-color-process-output): Check for validity of
2444 comint-last-output-start before using it. This avoids a bad
2445 interaction with gdb-mi's input/output buffer.
2446
2447 2012-05-09 Glenn Morris <rgm@gnu.org>
2448
2449 * files.el (dir-locals-read-from-file):
2450 Mention dir-locals in any error message.
2451
2452 2012-05-09 Chong Yidong <cyd@gnu.org>
2453
2454 * emacs-lisp/package.el (package-built-in-p): Handle the `emacs'
2455 package (Bug#11410).
2456
2457 * emacs-lisp/package.el (package-buffer-info): Avoid putting local
2458 variables into description.
2459
2460 2012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
2461
2462 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list like
2463 shell-delimiter-argument-list (bug#11348).
2464 (shell-parse-pcomplete-arguments): Obey pcomplete-arg-quote-list.
2465
2466 2012-05-09 Juanma Barranquero <lekktu@gmail.com>
2467
2468 * textmodes/rst.el: Silence byte-compiler warnings.
2469 (rst-re-alist, rst-reset-section-caches): Move around.
2470 (rst-re): Use `characterp', not `char-valid-p'.
2471 (font-lock-beg, font-lock-end): Declare.
2472
2473 * progmodes/idlw-shell.el (specs): Remove reference to deleted
2474 variable `idlwave-shell-activate-alt-keybindings' and simplify.
2475
2476 * eshell/esh-cmd.el (eshell-debug-command): Fix typo in previous change.
2477
2478 2012-05-08 Glenn Morris <rgm@gnu.org>
2479
2480 * files.el (auto-mode-alist): Treat ".make" like ".mk".
2481
2482 2012-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
2483
2484 * vc/log-edit.el: Add GNU coding standards highlighting.
2485 (log-edit-font-lock-gnu-style)
2486 (log-edit-font-lock-gnu-keywords): New vars.
2487 (log-edit-font-lock-keywords): New fun.
2488 (log-edit-mode): Don't fold case in font-lock.
2489 (log-edit-font-lock-keywords): Do not assume case-folding.
2490
2491 * imenu.el: Misc cleanup. Make docstrings out of comments.
2492 Use lexical-binding.
2493 (imenu--index-alist, imenu--last-menubar-index-alist)
2494 (imenu-menubar-modified-tick): Use defvar-local.
2495 (imenu--split-menu): Remove unused var.
2496 (imenu--cleanup-seen): Declare as global.
2497 (imenu--cleanup): Use dolist.
2498
2499 * subr.el (defvar-local): Add debug spec and doc-string position.
2500
2501 2012-05-08 Glenn Morris <rgm@gnu.org>
2502
2503 * lisp/language/burmese.el, language/cham.el, language/czech.el:
2504 * language/english.el, language/georgian.el, language/greek.el:
2505 * language/japanese.el, language/khmer.el, language/korean.el:
2506 * language/lao.el, language/misc-lang.el, language/romanian.el:
2507 * language/sinhala.el, language/slovak.el, language/tai-viet.el:
2508 * language/thai.el, language/utf-8-lang.el:
2509 Remove no-byte-compile setting.
2510
2511 * play/zone.el (zone-pgm-stress): Don't pollute kill-ring. (Bug#11388)
2512
2513 2012-05-08 Aaron S. Hawley <aaron.s.hawley@gmail.com>
2514
2515 * progmodes/make-mode.el (makefile-browse):
2516 Remove unnecessary interactive. (Bug#11324)
2517
2518 2012-05-07 Glenn Morris <rgm@gnu.org>
2519
2520 * forms-d2.el, forms-pass.el: Move to ../etc/forms directory.
2521
2522 * international/mule.el (find-auto-coding): Make "unibyte: t" obsolete.
2523
2524 2012-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
2525
2526 * loadup.el: Preload newcomment.el.
2527 * newcomment.el: Move autoload-only code to toplevel.
2528
2529 * buff-menu.el (list-buffers--refresh): Mark `size' as right-align.
2530 * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
2531 Handle new :right-align column property.
2532 (tabulated-list-print-col): Idem, plus use `display' text-property to
2533 try and preserve alignment for variable pitch fonts.
2534
2535 2012-05-07 Chong Yidong <cyd@gnu.org>
2536
2537 * emacs-lisp/tabulated-list.el: Add no-header-line alternative.
2538 (tabulated-list-use-header-line): New var.
2539 (tabulated-list-init-header): Use it.
2540 (tabulated-list-print-fake-header): New function.
2541 (tabulated-list-print): Use it.
2542 (tabulated-list-sort-button-map): Add non-header-line commands.
2543 (tabulated-list-init-header): Add column name property to basic
2544 labels as well.
2545 (tabulated-list-col-sort): Handle non-header-line button case.
2546 (tabulated-list--sort-by-column-name): Fix a corner case.
2547
2548 * buff-menu.el (list-buffers--refresh):
2549 Handle Buffer-menu-use-header-line.
2550
2551 2012-05-06 Chong Yidong <cyd@gnu.org>
2552
2553 * buff-menu.el: Convert to Tabulated List mode.
2554 (Buffer-menu-buffer+size-width): Make obsolete.
2555 (Buffer-menu-name-width, Buffer-menu-size-width): New variables.
2556 (Buffer-menu-mode-map): Inherit from tabulated-list-mode-map.
2557 (Buffer-menu-mode): Derive from tabulated-list-mode. Move command
2558 documentation into docstring of buffer-menu.
2559 (Buffer-menu-toggle-files-only): Add an informative message.
2560 (Buffer-menu-sort): Convert to alias for tabulated-list-sort.
2561 (Buffer-menu-buffer, Buffer-menu-beginning, Buffer-menu-mark)
2562 (Buffer-menu-unmark, Buffer-menu-backup-unmark)
2563 (Buffer-menu-delete, Buffer-menu-save, Buffer-menu-not-modified)
2564 (Buffer-menu-execute, Buffer-menu-select)
2565 (Buffer-menu-marked-buffers, Buffer-menu-toggle-read-only)
2566 (Buffer-menu-bury): Use Tabulated List machinery.
2567 (Buffer-menu-mouse-select, Buffer-menu-sort-by-column)
2568 (Buffer-menu-sort-button-map, Buffer-menu-make-sort-button):
2569 Delete.
2570 (list-buffers--refresh): New function.
2571 (list-buffers-noselect): Use it.
2572 (tabulated-list-entry-size->, Buffer-menu--pretty-name)
2573 (Buffer-menu--pretty-file-name): New helper functions.
2574
2575 * loadup.el: Preload tabulated-list.
2576
2577 * emacs-lisp/tabulated-list.el (tabulated-list-sort): Rename from
2578 tabulated-list-sort-column.
2579 (tabulated-list-init-header): Add the initial aligning space even
2580 if tabulated-list-padding is zero.
2581
2582 2012-05-06 Christopher Schmidt <christopher@ch.ristopher.com>
2583
2584 * emacs-lisp/cl-macs.el (cl-expr-contains): Handle cons cells
2585 whose cdr is not a cons cell correctly (bug#11038).
2586
2587 2012-05-06 Chong Yidong <cyd@gnu.org>
2588
2589 * emacs-lisp/tabulated-list.el (tabulated-list-format):
2590 Accept additional plist in column descriptors.
2591 (tabulated-list-init-header): Obey it.
2592 (tabulated-list-get-entry): New function.
2593 (tabulated-list-put-tag): Use it. Use string-width instead of
2594 length.
2595 (tabulated-list--column-number): New function.
2596 (tabulated-list-print): Use it.
2597 (tabulated-list-print-col): New function.
2598 Set `tabulated-list-column-name' property on each column's text.
2599 (tabulated-list-print-entry): Use it.
2600 (tabulated-list-delete-entry, tabulated-list-set-col):
2601 New functions.
2602 (tabulated-list-sort-column): New command (Bug#11337).
2603
2604 * buff-menu.el (list-buffers): Move C-x C-b binding from
2605 buff-menu.el to bindings.el.
2606
2607 * ebuff-menu.el (Electric-buffer-menu-undefined): Use the
2608 :advertised-binding feature.
2609
2610 2012-05-06 Troels Nielsen <bn.troels@gmail.com> (tiny change)
2611
2612 * progmodes/compile.el (compilation-internal-error-properties):
2613 Calculate start position correctly when end-col is set but
2614 end-line is not (Bug#11382).
2615
2616 2012-05-06 Wolfgang Jenkner <wjenkner@inode.at>
2617
2618 * man.el (Man-unindent): Use text-property-default-nonsticky to
2619 prevent untabify from inheriting face properties (Bug#11408).
2620
2621 2012-05-05 Stefan Merten <smerten@oekonux.de>
2622
2623 * textmodes/rst.el: Major merge with upstream development up to
2624 Docutils SVN r7399 / rst.el V1.2.1.
2625
2626 Clarify maintainership and authors.
2627
2628 (rst-extract-version, rst-cvs-header, rst-cvs-rev)
2629 (rst-cvs-timestamp, rst-svn-rev, rst-svn-timestamp)
2630 (rst-official-version, rst-official-cvs-rev, rst-version)
2631 (rst-package-emacs-version-alist): New functions and variables
2632 for version information.
2633
2634 (rst-bullets, rst-uri-schemes, rst-adornment-chars)
2635 (rst-max-inline-length, rst-re-alist-def, rst-re-alist)
2636 (rst-mode-syntax-table, rst-mode): New and corrected functions
2637 and variables representing reStructuredText features.
2638
2639 (rst-re): New function for reStructuredText regexes. Use in
2640 many places.
2641
2642 (rst-deprecated-keys, rst-call-deprecated, rst-define-key)
2643 (rst-mode-map): Rebind keys.
2644
2645 (rst-mode-lazy, rst-font-lock-keywords)
2646 (rst-font-lock-extend-region)
2647 (rst-font-lock-extend-region-internal)
2648 (rst-font-lock-extend-region-extend)
2649 (rst-font-lock-find-unindented-line-limit)
2650 (rst-font-lock-find-unindented-line-match)
2651 (rst-adornment-level, rst-font-lock-adornment-level)
2652 (rst-font-lock-adornment-match)
2653 (rst-font-lock-handle-adornment-pre-match-form)
2654 (rst-font-lock-handle-adornment-matcher): Major revision of
2655 font-locking. Integrate with other code. Use `jit-lock-mode'.
2656
2657 (rst-preferred-adornments, rst-adjust-hook)
2658 (rst-new-adornment-down, rst-preferred-bullets)
2659 (rst-preferred-bullets, rst-indent, rst-indent-width)
2660 (rst-indent-field, rst-indent-literal-normal)
2661 (rst-indent-literal-minimized, rst-indent-comment): Change,
2662 extend and improve customization.
2663
2664 (rst-line-homogeneous-p, rst-line-homogeneous-nodent-p)
2665 (rst-normalize-cursor-position, rst-get-decoration)
2666 (rst-straighten-deco-spacing, rst-re-bullets, rst-re-items)
2667 (rst-rstrip, rst-toc-insert-find-delete-contents)
2668 (rst-shift-fill-region, rst-compute-bullet-tabs)
2669 (rst-debug-print-tabs, rst-debug-mark-found)
2670 (rst-shift-region-guts, rst-shift-region-right)
2671 (rst-shift-region-left, rst-use-char-classes)
2672 (rst-font-lock-keywords-function)
2673 (rst-font-lock-indentation-point)
2674 (rst-font-lock-find-unindented-line-begin)
2675 (rst-font-lock-find-unindented-line-end)
2676 (rst-font-lock-find-unindented-line)
2677 (rst-font-lock-adornment-point, rst-font-lock-level)
2678 (rst-adornment-level-alist): Remove functions and variables.
2679
2680 (rst-compare-adornments, rst-get-adornment-match)
2681 (rst-suggest-new-adornment, rst-get-adornments-around)
2682 (rst-adornment-complete-p, rst-get-next-adornment)
2683 (rst-adjust-adornment, rst-display-adornments-hierarchy)
2684 (rst-straighten-adornments): Standardize function names to
2685 use "adornment" instead of "decoration". Correct callers.
2686 Similar standardizing in many places.
2687
2688 (rst-update-section, rst-adjust, rst-promote-region)
2689 (rst-enumerate-region, rst-bullet-list-region)
2690 (rst-repeat-last-character): Correct use of `interactive'.
2691
2692 (rst-classify-adornment, rst-find-all-adornments)
2693 (rst-get-hierarchy, rst-adjust-adornment, rst-toc-update)
2694 (rst-find-leftmost-column, rst-repeat-last-character):
2695 Refactor functions.
2696
2697 (rst-find-title-line, rst-reset-section-caches)
2698 (rst-get-adornments-around, rst-adjust-adornment-work)
2699 (rst-arabic-to-roman, rst-roman-to-arabic)
2700 (rst-insert-list-pos, rst-insert-list-new-item)
2701 (rst-insert-list-continue, rst-insert-list, rst-forward-line):
2702 New functions.
2703
2704 (rst-all-sections, rst-section-hierarchy)
2705 (rst-arabic-to-roman, rst-initial-enums, rst-initial-items):
2706 New variables.
2707
2708 (rst-toc-return-wincfg, rst-toc-quit-window): Use window
2709 configuration instead of only buffer. Change where necessary.
2710
2711 (rst-line-tabs, rst-compute-tabs, rst-indent-line)
2712 (rst-shift-region, rst-adaptive-fill): New functions for
2713 indentation and filling.
2714
2715 (rst-comment-line-break, rst-comment-indent)
2716 (rst-comment-insert-comment, rst-comment-region)
2717 (rst-uncomment-region): New functions for handling comments.
2718
2719 (rst-compile): Quote shell arguments.
2720
2721 (rst-compile-pdf-preview, rst-compile-slides-preview):
2722 Delete temporary files after use.
2723
2724 2012-05-05 Glenn Morris <rgm@gnu.org>
2725
2726 * calendar/cal-html.el: Optionally include holidays in the output.
2727 Suggested by Ed Reingold <reingold@emr.cs.iit.edu>.
2728 (cal-html-holidays): New option.
2729 (cal-html-css-default): Add holiday entry.
2730 (holiday-in-range): Autoload it.
2731 (cal-html-htmlify-entry): Add optional class argument.
2732 (cal-html-htmlify-list): Add optional holidays argument.
2733 (cal-html-insert-agenda-days): Include holidays in the output.
2734 (cal-html-one-month): Maybe include holidays.
2735
2736 * calendar/holidays.el (holiday-in-range):
2737 Move here from cal-tex-list-holidays.
2738 * calendar/cal-tex.el (cal-tex-list-holidays):
2739 Make it an obsolete alias for holiday-in-range. Update all callers.
2740
2741 2012-05-05 Chong Yidong <cyd@gnu.org>
2742
2743 * select.el (xselect--encode-string): Always use utf-8 for TEXT on
2744 Nextstep.
2745
2746 2012-05-05 Ransom Williams <auvergnerw@gmail.com> (tiny change)
2747
2748 * files.el (file-auto-mode-skip): New var.
2749 (set-auto-mode-1): Use it.
2750
2751 2012-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
2752
2753 * repeat.el: Use lexical-binding.
2754 (repeat-last-self-insert, repeat-num-input-keys-at-self-insert)
2755 (repeat-undo-count): Remove.
2756 (repeat):
2757 * progmodes/octave-mod.el (octave-abbrev-start):
2758 * progmodes/f90.el (f90-abbrev-start):
2759 * face-remap.el (text-scale-adjust):
2760 * kmacro.el (kmacro-call-macro): Use set-temporary-overlay-map.
2761
2762 * emacs-lisp/pcase.el (pcase--let*): New function.
2763 (pcase--expand, pcase-codegen, pcase--q1): Use it to reduce nesting
2764 a bit more.
2765 (pcase--split-pred): Be more clever about ruling out overlap between
2766 a predicate and some constant pattern.
2767 (pcase--q1): Use `null' instead of (eq foo nil).
2768
2769 * subr.el (setq-local, defvar-local): New macros.
2770 (kbd): Redefine as an alias.
2771 (with-selected-window): Leave unrelated frames alone.
2772 (set-temporary-overlay-map): New function.
2773
2774 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
2775
2776 * subr.el (user-error): New function.
2777 * window.el (switch-to-buffer):
2778 * vc/smerge-mode.el (smerge-resolve-function, smerge-resolve)
2779 (smerge-match-conflict):
2780 * simple.el (previous-matching-history-element)
2781 (next-matching-history-element, goto-history-element, undo-more)
2782 (undo-start):
2783 * progmodes/etags.el (visit-tags-table-buffer, find-tag-tag)
2784 (find-tag-noselect, find-tag-in-order, etags-goto-tag-location)
2785 (next-file, tags-loop-scan, list-tags, complete-tag):
2786 * progmodes/compile.el (compilation-loop):
2787 * mouse.el (mouse-minibuffer-check):
2788 * man.el (Man-bgproc-sentinel, Man-goto-page):
2789 * info.el (Info-find-node-2, Info-extract-pointer, Info-history-back)
2790 (Info-history-forward, Info-follow-reference, Info-menu)
2791 (Info-extract-menu-item, Info-extract-menu-counting)
2792 (Info-forward-node, Info-backward-node, Info-next-menu-item)
2793 (Info-last-menu-item, Info-next-preorder, Info-last-preorder)
2794 (Info-next-reference, Info-prev-reference, Info-index)
2795 (Info-index-next, Info-follow-nearest-node)
2796 (Info-copy-current-node-name):
2797 * imenu.el (imenu--make-index-alist)
2798 (imenu-default-create-index-function, imenu-add-to-menubar):
2799 * files.el (basic-save-buffer, recover-file):
2800 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
2801 * emacs-lisp/checkdoc.el (checkdoc-continue, checkdoc-comments)
2802 (checkdoc-message-text, checkdoc-defun):
2803 * dabbrev.el (dabbrev-completion, dabbrev--abbrev-at-point):
2804 * cus-edit.el (customize-changed-options, customize-rogue)
2805 (customize-saved, custom-variable-set, custom-variable-mark-to-save)
2806 (custom-variable-mark-to-reset-standard)
2807 (custom-variable-reset-backup, custom-face-mark-to-reset-standard)
2808 (custom-file):
2809 * completion.el (check-completion-length):
2810 * comint.el (comint-search-arg)
2811 (comint-previous-matching-input-string-position)
2812 (comint-previous-matching-input)
2813 (comint-replace-by-expanded-history-before-point, comint-send-input)
2814 (comint-copy-old-input, comint-backward-matching-input)
2815 (comint-goto-process-mark, comint-set-process-mark):
2816 * calendar/calendar.el (calendar-cursor-to-date): Use it.
2817 * bindings.el (debug-ignored-errors): Remove regexps, add `user-error'.
2818
2819 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
2820
2821 * dabbrev.el (dabbrev--ignore-case-p): New function.
2822 (dabbrev-completion, dabbrev-expand, dabbrev--substitute-expansion):
2823 Use it.
2824
2825 * files.el (automount-dir-prefix): Mark as obsolete.
2826
2827 2012-05-04 Glenn Morris <rgm@gnu.org>
2828
2829 * patcomp.el, play/bruce.el: Move to obsolete/.
2830
2831 2012-05-04 Paul Eggert <eggert@cs.ucla.edu>
2832
2833 Fix minor Y10k bugs.
2834 * arc-mode.el (archive-unixdate):
2835 * autoinsert.el (auto-insert-alist):
2836 * calc/calc-forms.el (math-this-year):
2837 * emacs-lisp/copyright.el (copyright-current-year)
2838 (copyright-update-year, copyright):
2839 * tar-mode.el (tar-clip-time-string):
2840 * time.el (display-time-update):
2841 Don't assume years have 4 digits.
2842
2843 2012-05-04 Chong Yidong <cyd@gnu.org>
2844
2845 * dos-w32.el (file-name-buffer-file-type-alist)
2846 (direct-print-region-use-command-dot-com):
2847 * ffap.el (ffap-menu-regexp):
2848 * find-file.el (ff-special-constructs):
2849 * follow.el (follow-debug):
2850 * forms.el (forms--debug):
2851 * iswitchb.el (iswitchb-all-frames):
2852 * ido.el (ido-all-frames):
2853 * emacs-lisp/timer.el (timer-max-repeats):
2854 * mail/feedmail.el (feedmail-mail-send-hook)
2855 (feedmail-mail-send-hook-queued):
2856 * mail/footnote.el (footnote-signature-separator):
2857 * mail/mailabbrev.el (mail-alias-separator-string)
2858 (mail-abbrev-mode-regexp):
2859 * mail/rmail.el (rmail-speedbar-match-folder-regexp):
2860 * progmodes/idlwave.el (idlwave-libinfo-file)
2861 (idlwave-default-completion-case-is-down)
2862 (idlwave-library-routines): Convert defvars to defcustoms.
2863
2864 * mail/rmail.el (rmail-decode-mime-charset):
2865 * progmodes/idlw-shell.el (idlwave-shell-print-expression-function)
2866 (idlwave-shell-fix-inserted-breaks)
2867 (idlwave-shell-activate-alt-keybindings)
2868 (idlwave-shell-use-breakpoint-glyph):
2869 * facemenu.el (facemenu-unlisted-faces): Delete obsolete vars.
2870
2871 2012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
2872
2873 * minibuffer.el (completion--twq-all): Beware completion-ignore-case.
2874
2875 2012-05-03 Wilson Snyder <wsnyder@wsnyder.org>
2876
2877 * progmodes/verilog-mode.el (font-lock-keywords):
2878 Fix mis-highligting auto. Reported by Craig Barner.
2879 (verilog-auto, verilog-auto-undef): Add AUTOUNDEF to remove
2880 defines from global name space. Reported by Dan Dever.
2881 (verilog-auto-reset, verilog-auto-reset-widths)
2882 (verilog-auto-tieoff): Support using unbased numbers for
2883 AUTORESET and AUTOTIEOFF.
2884 (verilog-submit-bug-report): Update variable list.
2885 (verilog-read-auto-params): Fix AUTOINPUT regexps containing
2886 parenthesis from not matching. Reported by Michael Rytting.
2887 (verilog-auto-template-lint): Fix hash error when linting modules
2888 with no used templates.
2889 (verilog-warn, verilog-warn-error)
2890 (verilog-warn-fatal): When non-interactive report multiple
2891 warnings before exiting. Suggested by Brad Dobbie.
2892 (verilog-auto-template-lint, verilog-auto-template-warn-unused)
2893 (verilog-read-auto-template): Add `verilog-auto-template-warn-unused'
2894 to report unused template errors. Reported by Brad Dobbie.
2895 (verilog-read-decls): Fix AUTOWIRE etc on supply0, supply1 type
2896 nets, bug438. Reported by Vns Blore.
2897 (verilog-auto-inout-module, verilog-auto-reg)
2898 (verilog-read-decls, verilog-read-sub-decls-sig)
2899 (verilog-signals-edit-wire-reg, verilog-signals-with):
2900 Fix passing of Verilog data types in ANSI input/output ports
2901 such as "output logic" into the AUTOs. Special case "wire" and
2902 "reg" for backwards compatibility presuming Verilog 2001.
2903 (verilog-auto-ascii-enum): Add "auto enum" as alias.
2904 (verilog-preprocess): Fix replication of preprocess output.
2905 Reported by Brad Dobbie.
2906 (verilog-auto-inst-interfaced-ports):
2907 Create verilog-auto-inst-interfaced-ports, bug429.
2908 Reported by Julian Gorfajn.
2909 (verilog-after-save-font-hook)
2910 (verilog-before-save-font-hook): New variable.
2911 (verilog-modi-cache-results, verilog-save-font-mod-hooked)
2912 (verilog-save-font-mods): Wrap disabling fontification, reported
2913 by David Rogoff.
2914 (verilog-do-indent, verilog-pretty-declarations-auto)
2915 (verilog-sk-def-reg): Fix obeying `verilog-auto-lineup', bug305.
2916 Reported by Pierre-David Pfister.
2917 (verilog-set-auto-endcomments): Fix endtask auto comments outside
2918 of class declarations, bug292. Reported by Kevin Heilman.
2919 (verilog-read-decls): Fix 'parameter type' not appearing in
2920 AUTOINSTPARAM, bug340. Reported by Jonathan Greenlaw.
2921 (verilog-auto-logic): Fix when AUTOLOGIC present to properly do
2922 AUTOINPUTs, bug411. Reported by Jonathan Greenlaw.
2923 (verilog-read-auto-lisp): Avoid syntax-ppss warning on AUTOLISP.
2924 Reported by David Kravitz.
2925
2926 2012-05-03 Michael McNamara <mac@mail.brushroad.com>
2927
2928 * progmodes/verilog-mode.el (verilog-pretty-expr): Don't line up
2929 assignment with tests in ifs and for loops.
2930 (verilog-extended-complete-re, verilog-complete-reg): Change so
2931 that DPI inport functions don't look like fuction declarations.
2932 (verilog-pretty-expr): Don't line up assignment
2933 operations to the test and increment in if and for loops
2934 (verilog-extended-complete-re, verilog-complete-reg): Change so
2935 that DPI inport functions don't look like fuction declarations
2936
2937 2012-05-03 Kenichi Handa <handa@m17n.org>
2938
2939 * mail/rmailmm.el (rmail-show-mime): Catch an error caused by text
2940 decoding, and show a warning message without signaling an error
2941 (Bug#11282).
2942
2943 2012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
2944
2945 * emacs-lisp/bytecomp.el
2946 (byte-compile-file-form-custom-declare-variable): Compile all elements,
2947 since cconv.el might have introduced :fun-body, internal-make-closure,
2948 and friends for bytecomp to handle (bug#11391).
2949 * custom.el (defcustom): Avoid ((λ ..) ..).
2950
2951 2012-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
2952
2953 * subr.el (read-passwd): Better clean after ourselves (bug#11392).
2954
2955 2012-05-02 Juanma Barranquero <lekktu@gmail.com>
2956
2957 * notifications.el (dbus-debug):
2958 * term/linux.el (gpm-mouse-enable):
2959 * term/screen.el (xterm-register-default-colors): Declare.
2960
2961 2012-05-02 Chong Yidong <cyd@gnu.org>
2962
2963 * cus-start.el (gc-cons-percentage, exec-suffixes)
2964 (dos-display-scancodes, dos-hyper-key, dos-super-key)
2965 (dos-keypad-mode, debug-on-signal, vertical-centering-font-regexp)
2966 (make-cursor-line-fully-visible, void-text-area-pointer)
2967 (font-list-limit): Add customization data.
2968
2969 * allout.el (allout-exposure-change-functions)
2970 (allout-structure-added-functions)
2971 (allout-structure-deleted-functions)
2972 (allout-structure-shifted-functions): Rename abnormal hooks from
2973 *-hook, and convert to defcustoms.
2974 (allout-after-copy-or-kill-hook, allout-post-undo-hook):
2975 Convert to defcustoms.
2976 (allout-mode-hook, allout-mode-deactivate-hook): Doc fix.
2977
2978 * allout-widgets.el: Hook callers changed.
2979
2980 2012-05-02 Eli Zaretskii <eliz@gnu.org>
2981
2982 * mail/rmail.el (rmail-yank-current-message): Use the encoding of
2983 the yanked message in preference to the default value of
2984 buffer-file-coding-system.
2985
2986 2012-05-02 Martin Rudalics <rudalics@gmx.at>
2987
2988 * window.el (display-buffer--action-function-custom-type):
2989 Fix entry.
2990
2991 2012-05-02 Alan Mackenzie <acm@muc.de>
2992
2993 * progmodes/cc-defs.el (c-version): Update to 5.32.3.
2994
2995 2012-05-01 Glenn Morris <rgm@gnu.org>
2996
2997 * cus-start.el (suggest-key-bindings): Remove, now it is in Lisp.
2998
2999 * eshell/esh-cmd.el (eshell-debug-command): Doc fix. Add :set.
3000
3001 * cus-edit.el (custom-variable-documentation): Simplify with format.
3002
3003 2012-05-01 Aaron S. Hawley <aaron.s.hawley@gmail.com>
3004 Stefan Monnier <monnier@iro.umontreal.ca>
3005
3006 * simple.el (suggest-key-bindings, execute-extended-command):
3007 Move from keyboard.c.
3008
3009 2012-05-01 Chong Yidong <cyd@gnu.org>
3010
3011 * follow.el: Eliminate advice.
3012 (set-process-filter, process-filter, sit-for): Advice deleted.
3013 (follow-mode-off-hook): Obsolete hook removed.
3014 (follow-avoid-tail-recenter-p, follow-process-filter-alist):
3015 Vars deleted.
3016 (follow-auto): Use a :set function.
3017 (follow-mode): Rewritten. Don't advise process filters.
3018 (follow-switch-to-current-buffer-all, follow-scroll-up)
3019 (follow-scroll-down): Assume follow-mode is bound.
3020 (follow-comint-scroll-to-bottom)
3021 (follow-align-compilation-windows): New functions.
3022 (follow--window-sorter): New function.
3023 (follow-all-followers): Use it to explicitly sort windows by their
3024 positions; don't make assumptions about next-window order.
3025 (follow-windows-start-end, follow-delete-other-windows-and-split)
3026 (follow-calc-win-start): Doc fix.
3027 (follow-windows-aligned-p, follow-select-if-visible): Don't call
3028 vertical-motion unnecessarily.
3029 (follow-adjust-window): New function.
3030 (follow-post-command-hook): Use it.
3031 (follow-call-set-process-filter, follow-call-process-filter)
3032 (follow-intercept-process-output, follow-tidy-process-filter-alist)
3033 (follow-stop-intercept-process-output, follow-generic-filter):
3034 Functions deleted.
3035 (follow-scroll-bar-toolkit-scroll, follow-scroll-bar-drag)
3036 (follow-scroll-bar-scroll-up, follow-scroll-bar-scroll-down):
3037 New functions, replacing advice on scroll-bar-* commands.
3038 (follow-mwheel-scroll): New function (Bug#4112).
3039
3040 * comint.el (comint-adjust-point): New function.
3041 (comint-postoutput-scroll-to-bottom): Use it.
3042 Call follow-comint-scroll-to-bottom for Follow mode buffers.
3043
3044 2012-05-01 Glenn Morris <rgm@gnu.org>
3045
3046 * term/AT386.el, term/apollo.el, term/bobcat.el, term/cygwin.el:
3047 * term/iris-ansi.el, term/linux.el, term/lk201.el, term/news.el:
3048 * term/screen.el, term/vt102.el, term/vt125.el, term/vt200.el:
3049 * term/vt201.el, term/vt220.el, term/vt240.el, term/vt300.el:
3050 * term/vt320.el, term/vt400.el, term/vt420.el, term/wyse50.el:
3051 Remove no-byte-compile setting.
3052
3053 2012-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
3054
3055 * minibuffer.el (completion-table-with-quoting): Fix compatibility
3056 all-completions code to not return a number in the last cdr.
3057
3058 2012-04-30 Leo Liu <sdl.web@gmail.com>
3059
3060 * ibuf-ext.el (ibuffer-diff-buffer-with-file-1): Avoid buffer
3061 read-only error.
3062
3063 2012-04-29 Chong Yidong <cyd@gnu.org>
3064
3065 * follow.el (follow-calc-win-end): Rewrite to handle partial
3066 screen lines correctly (Bug#8390).
3067 (follow-avoid-tail-recenter): Minor cleanup.
3068
3069 2012-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
3070
3071 Avoid the obsolete `assoc' package.
3072 * speedbar.el (speedbar-refresh): Avoid adelete.
3073 (speedbar-file-lists): Simplify and avoid aput.
3074 * man.el (Man--sections, Man--refpages): New vars, replacing
3075 Man-sections-alist and Man-refpages-alist.
3076 (Man-build-section-alist, Man-build-references-alist):
3077 Use them; avoid aput.
3078 (Man--last-section, Man--last-refpage): New vars.
3079 (Man-follow-manual-reference): Use them.
3080 Use the `default' arg of completing-read.
3081 (Man-goto-section): Idem. Move prompt to the `interactive' spec.
3082
3083 2012-04-27 Chong Yidong <cyd@gnu.org>
3084
3085 * vc/diff.el (diff-sentinel): Go to bob (Bug#10259).
3086
3087 * startup.el (x-apply-session-resources): New function.
3088
3089 * term/ns-win.el (ns-initialize-window-system):
3090 * term/w32-win.el (w32-initialize-window-system):
3091 * term/x-win.el (x-initialize-window-system): Use it to properly
3092 set menu-bar-mode and other vars from X resources, even if the
3093 initial frame is not a window-system frame (Bug#2299).
3094
3095 * subr.el (read-key): Avoid running filter function when setting
3096 up temporary tool bar entries (Bug#9922).
3097
3098 2012-04-27 Andreas Schwab <schwab@linux-m68k.org>
3099
3100 * vc/vc-git.el (vc-git-state): Fix regexp matching diff output.
3101 (Bug#11344)
3102
3103 2012-04-27 Chong Yidong <cyd@gnu.org>
3104
3105 * select.el (xselect--encode-string): New function, split from
3106 xselect-convert-to-string.
3107 (xselect-convert-to-string): Use it.
3108 (xselect-convert-to-filename, xselect-convert-to-os)
3109 (xselect-convert-to-host, xselect-convert-to-user): Ensure that
3110 returned strings are properly encoded (Bug#11315).
3111
3112 2012-04-27 Chong Yidong <cyd@gnu.org>
3113
3114 * simple.el (delete-active-region): Move to killing custom group.
3115
3116 2012-04-27 Andreas Schwab <schwab@linux-m68k.org>
3117
3118 * progmodes/which-func.el (which-func-current): Quote %
3119 characters for mode-line processing.
3120
3121 2012-04-27 Chong Yidong <cyd@gnu.org>
3122
3123 * xml.el (xml-parse-region, xml-parse-tag): Avoid errors due to
3124 reaching eob (Bug#11286).
3125
3126 2012-04-27 Eli Zaretskii <eliz@gnu.org>
3127
3128 * progmodes/gdb-mi.el (gdb-control-level): New variable.
3129 (gdb): Make it buffer-local and init to zero.
3130 (gdb-control-commands-regexp): New variable.
3131 (gdb-send): Don't wrap in "-interpreter-exec console" if
3132 gdb-control-level is positive. Increment gdb-control-level
3133 whenever the command matches gdb-control-commands-regexp, and
3134 decrement it each time the command is "end". (Bug#11279)
3135
3136 2012-04-27 Martin Rudalics <rudalics@gmx.at>
3137
3138 * window.el (adjust-window-trailing-edge, enlarge-window)
3139 (shrink-window, window-resize):
3140 * mouse.el (mouse-drag-line): Fix resizing of minibuffer
3141 windows (Bug#11276).
3142
3143 2012-04-27 Chong Yidong <cyd@gnu.org>
3144
3145 * progmodes/pascal.el (pascal--extra-indent): Rename from ind, to
3146 fix "missing prefix" warning. All callers changed.
3147
3148 2012-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
3149
3150 * emacs-lisp/assoc.el: Move to obsolete/.
3151
3152 2012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
3153
3154 * emacs-lisp/assoc.el (aget): Fix dynamic-scoping issue (bug#11352).
3155
3156 * term/ns-win.el (ns-define-service):
3157 * progmodes/pascal.el (pascal-goto-defun):
3158 * progmodes/js.el (js--read-tab):
3159 * progmodes/etags.el (tags-lazy-completion-table):
3160 * emacs-lisp/syntax.el (syntax-propertize-via-font-lock):
3161 * emacs-lisp/ewoc.el (ewoc--wrap):
3162 * emacs-lisp/assoc.el (aput, adelete, amake):
3163 * doc-view.el (doc-view-convert-current-doc):
3164 * vc/diff.el (diff-no-select): Replace lexical-let by lexical-binding.
3165
3166 2012-04-26 Chong Yidong <cyd@gnu.org>
3167
3168 * image.el (image-type-from-buffer): Only return supported image
3169 type (Bug#9045).
3170
3171 * vc/diff-mode.el (diff-beginning-of-hunk): Return a meaningful
3172 value, for symmetry with diff-end-of-hunk.
3173 (diff-split-hunk, diff-find-source-location)
3174 (diff-ignore-whitespace-hunk, diff-refine-hunk): Use it.
3175 (diff-bounds-of-hunk, diff-bounds-of-file): New functions.
3176 (diff-restrict-view, diff-hunk-kill, diff-file-kill): Use them to
3177 compute the relevant hunk or file properly (Bug#6005).
3178 (diff-file-junk-re): Add bzr's "modified file" tag (Bug#6041).
3179
3180 2012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
3181
3182 * vc/vc-mtn.el:
3183 * vc/vc-hg.el:
3184 * vc/vc-git.el:
3185 * vc/vc-dir.el:
3186 * vc/vc-cvs.el:
3187 * vc/vc-bzr.el:
3188 * vc/vc-arch.el:
3189 * vc/vc.el: Replace lexical-let by lexical-binding.
3190 * minibuffer.el (lazy-completion-table): Avoid ((λ ...) ...).
3191 * emacs-lisp/cl-macs.el (lexical-let): Fix use in lexical-binding.
3192 * emacs-lisp/cconv.el (cconv-analyse-form): Warn use of ((λ ...) ...).
3193
3194 2012-04-26 Chong Yidong <cyd@gnu.org>
3195
3196 * vc/diff-mode.el (diff-undo): New command (Bug#5302).
3197 (diff-mode-shared-map): Bind it to / and [remap undo].
3198
3199 * vc/ediff-wind.el (ediff-setup-windows-default): New function.
3200 (ediff-window-setup-function): Use it as the default, to set up
3201 windows based on whether the current frame is graphical (Bug#2138).
3202 (ediff-choose-window-setup-function-automatically): Make obsolete.
3203
3204 * vc/ediff-init.el: Always define ediff-pixel-width/height.
3205
3206 2012-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
3207
3208 * ffap.el: Remove old code for obsolete package.
3209 (ffap-complete-as-file-p): Remove.
3210
3211 Use completion-table-with-quoting for comint and pcomplete.
3212 * comint.el (comint--unquote&requote-argument)
3213 (comint--unquote-argument, comint--requote-argument): New functions.
3214 (comint--unquote&expand-filename, comint-unquote-filename): Obsolete.
3215 (comint-quote-filename): Use regexp-opt-charset.
3216 (comint--common-suffix, comint--common-quoted-suffix)
3217 (comint--table-subvert): Remove.
3218 (comint-unquote-function, comint-requote-function): New vars.
3219 (comint--complete-file-name-data): Use them with
3220 completion-table-with-quoting.
3221 * pcmpl-unix.el (pcomplete/scp): Use completion-table-subvert.
3222 * pcomplete.el (pcomplete-arg-quote-list)
3223 (pcomplete-quote-arg-hook, pcomplete-quote-argument): Obsolete.
3224 (pcomplete-unquote-argument-function): Default to non-nil.
3225 (pcomplete-unquote-argument): Simplify.
3226 (pcomplete--common-quoted-suffix): Remove.
3227 (pcomplete-requote-argument-function): New var.
3228 (pcomplete--common-suffix): New function.
3229 (pcomplete-completions-at-point): Use completion-table-with-quoting
3230 and completion-table-subvert.
3231
3232 * minibuffer.el: Use completion-table-with-quoting for read-file-name.
3233 (minibuffer--double-dollars): Preserve properties.
3234 (completion--sifn-requote): New function.
3235 (completion--file-name-table): Rewrite using it and c-t-with-quoting.
3236
3237 * minibuffer.el: Add support for completion of quoted/escaped data.
3238 (completion-table-with-quoting, completion-table-subvert): New funs.
3239 (completion--twq-try, completion--twq-all): New functions.
3240 (completion--nth-completion): New function.
3241 (completion-try-completion, completion-all-completions): Use it.
3242
3243 2012-04-25 Leo Liu <sdl.web@gmail.com>
3244
3245 * progmodes/python.el (python-pdbtrack-get-source-buffer):
3246 Use compilation-message if available to find real filename.
3247
3248 2012-04-25 Chong Yidong <cyd@gnu.org>
3249
3250 * vc/diff-mode.el (diff-setup-whitespace): New function.
3251 (diff-mode): Use it.
3252
3253 * vc/diff.el (diff-sentinel):
3254 * vc/vc.el (vc-diff-finish): Call diff-setup-whitespace to assign
3255 Whitespace mode variables based on diff style (Bug#8612).
3256
3257 2012-04-25 Leo Liu <sdl.web@gmail.com>
3258
3259 * progmodes/python.el (python-send-region): Add suffix .py to the
3260 temp file.
3261
3262 * files.el (auto-mode-alist): Use javascript-mode instead.
3263
3264 2012-04-25 Alex Harsanyi <AlexHarsanyi@gmail.com>
3265
3266 Sync with soap-client repository. Support SOAP simpleType (Bug#10331).
3267
3268 * soap-client.el (soap-resolve-references-for-sequence-type)
3269 (soap-resolve-references-for-array-type): Hack to prevent self
3270 references, see Bug#9.
3271 (soap-parse-envelope): Report the contents of the 'detail' node
3272 when receiving a fault reply.
3273 (soap-parse-envelope): Report the contents of the entire 'detail' node.
3274
3275 * soap-inspect.el (soap-sample-value-for-simple-type)
3276 (soap-inspect-simple-type): New function.
3277
3278 * soap-client.el (soap-simple-type): New struct.
3279 (soap-default-xsd-types, soap-default-soapenc-types)
3280 (soap-decode-basic-type, soap-encode-basic-type):
3281 support unsignedInt and double basic types.
3282 (soap-resolve-references-for-simple-type)
3283 (soap-parse-simple-type, soap-encode-simple-type): New function.
3284 (soap-parse-schema): Parse xsd:simpleType declarations.
3285
3286 * soap-client.el (soap-default-xsd-types)
3287 (soap-default-soapenc-types): Add integer, byte and anyURI types.
3288 (soap-parse-complex-type-complex-content): Use `soap-wk2l' to find
3289 the local name of "soapenc:Array".
3290 (soap-decode-basic-type, soap-encode-basic-type): Support encoding
3291 decoding integer, byte and anyURI xsd types.
3292
3293 2012-04-25 Chong Yidong <cyd@gnu.org>
3294
3295 * cus-edit.el (custom-buffer-create-internal): Update header text.
3296
3297 2012-04-25 Eli Zaretskii <eliz@gnu.org>
3298
3299 * progmodes/gdb-mi.el (gdb-init-1): Condition Windows-specific
3300 settings on 'system-type', not on 'window-system'. On MS-Windows,
3301 set interactive-mode on in GDB.
3302
3303 2012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
3304
3305 * progmodes/ruby-mode.el: Simplify last change, and cleanup code.
3306 (ruby-syntax-propertize-regexp): Remove.
3307 (ruby-syntax-propertize-function): Split regexp into chunks.
3308 Match following code directly.
3309
3310 2012-04-24 Dmitry Gutov <dgutov@yandex.ru>
3311
3312 * progmodes/ruby-mode.el: Handle Cucumber defs (bug#6286).
3313 (ruby-syntax-propertize-regexp): New function.
3314 (ruby-syntax-propertize-function): Use it to handle regexp not preceded
3315 by a special keyword.
3316
3317 * progmodes/ruby-mode.el: Handle general delimited literals (bug#6286).
3318 (ruby-syntax-general-delimiters-goto-beg)
3319 (ruby-syntax-propertize-general-delimiters): New functions.
3320 (ruby-syntax-propertize-function): Use them to handle GDL.
3321 (ruby-font-lock-keywords): Move old handling of GDL...
3322 (ruby-font-lock-syntactic-keywords): .. to here.
3323 (ruby-calculate-indent): Adjust indentation for GDL.
3324
3325 2012-04-24 Michael Albinus <michael.albinus@gmx.de>
3326
3327 * notifications.el (top): Remove unneeded declarations.
3328 (notifications-specification-version): Change to "1.2".
3329 (notifications-interface, notifications-notify-method)
3330 (notifications-close-notification-method): Fix docstring.
3331 (notifications-get-capabilities-method): New defconst.
3332 (notifications-notify): Add :action-items, :resident and
3333 :transient hints. Change "image_data" to "image-data" and
3334 "image_path" to "image-path".
3335 (notifications-get-capabilities): New defun.
3336
3337 2012-04-24 Leo Liu <sdl.web@gmail.com>
3338
3339 * progmodes/python.el: Move hideshow setup to the end.
3340
3341 2012-04-24 Martin Rudalics <rudalics@gmx.at>
3342
3343 * window.el (handle-select-window): Clear echo area since this is
3344 no more done by read_char (Bug#11304).
3345
3346 2012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
3347
3348 * ibuffer.el (ibuffer-mode-map): Bind `/ m' to filter-used-mode
3349 and `/ M' to filter-derived-mode.
3350 * ibuf-ext.el (ibuffer-list-buffer-modes): Simplify; avoid add-to-list.
3351 (ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
3352 (ibuffer-mark-by-mode): Use default rather than initial-input.
3353 (ibuffer-filter-by-derived-mode): Autoload and require-match.
3354
3355 2012-04-24 Ivan Andrus <darthandrus@gmail.com> (tiny change)
3356
3357 * ibuf-ext.el (ibuffer-list-buffer-modes): Add `include-parents' arg.
3358 (ibuffer-filter-by-derived-mode): New filter.
3359 * ibuffer.el (ibuffer-mode-map): Bind to `/ w'.
3360
3361 2012-04-23 Andreas Politz <politza@fh-trier.de>
3362
3363 * subr.el (accept-change-group): Fix arg usage (Bug#6095).
3364
3365 2012-04-23 Chong Yidong <cyd@gnu.org>
3366
3367 * cus-edit.el (customize-apropos, customize-apropos-options):
3368 Disable matching of non-option variables (Bug#11176).
3369 (customize-option, customize-option-other-window)
3370 (customize-changed-options): Doc fix.
3371 (customize-apropos-options, customize-apropos-faces)
3372 (customize-apropos-groups): Use apropos-read-pattern (Bug#11124).
3373
3374 * apropos.el (apropos-read-pattern): Make prompt less cryptic.
3375 Fix word list splitting (Bug#11132).
3376 (apropos-symbol, apropos-keybinding, apropos-label)
3377 (apropos-property, apropos-function-button)
3378 (apropos-variable-button, apropos-misc-button): New faces.
3379 (apropos-symbol-face, apropos-keybinding-face)
3380 (apropos-label-face, apropos-property-face, apropos-match-face):
3381 Variables removed (Bug#8396).
3382 (apropos-library-button, apropos-format-plist, apropos-print)
3383 (apropos-print-doc, apropos-describe-plist): Callers changed.
3384
3385 2012-04-23 Michael Albinus <michael.albinus@gmx.de>
3386
3387 * net/xesam.el (xesam-mode-map): Use let-bound map in
3388 initialization. (Bug#11292)
3389
3390 2012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
3391
3392 Preserve ispell session localwords when switching back to
3393 original buffer.
3394
3395 * ispell.el (ispell-buffer-session-localwords): New buffer-local
3396 variable to hold buffer session localwords.
3397 (ispell-kill-ispell): add option 'clear to delete session
3398 localwords.
3399 (ispell-command-loop, ispell-change-dictionary)
3400 (ispell-buffer-local-words): Preserve session localwords when
3401 needed.
3402
3403 * flyspell.el (flyspell-process-localwords, flyspell-do-correct):
3404 Preserve session localwords when needed.
3405
3406 2012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
3407
3408 * ispell.el (ispell-insert-word) Remove unneeded function using
3409 obsolete `translation-table-for-input'.
3410 (ispell-word, ispell-process-line, ispell-complete-word):
3411 Use plain `insert' instead of removed `ispell-insert-word'.
3412
3413 2012-04-22 Chong Yidong <cyd@gnu.org>
3414
3415 * cus-edit.el (custom-variable-menu)
3416 (custom-variable-reset-saved, custom-face-menu)
3417 (custom-face-reset-saved): If there is no saved value, make the
3418 "reset-saved" operation bring back the default (Bug#9509).
3419 (custom-face-state): Properly detect themed faces.
3420
3421 * faces.el (face-spec-set): Stop supporting deprecated form of
3422 third arg.
3423
3424 2012-04-22 Michael Albinus <michael.albinus@gmx.de>
3425
3426 Move functions from C to Lisp. Make non-blocking method calls
3427 the default. Implement further D-Bus standard interfaces.
3428
3429 * net/dbus.el (dbus-message-internal): Declare function.
3430 Remove unneeded function declarations.
3431 (defvar dbus-message-type-invalid, dbus-message-type-method-call)
3432 (dbus-message-type-method-return, dbus-message-type-error)
3433 (dbus-message-type-signal): Declare variables. Remove local
3434 definitions.
3435 (dbus-interface-dbus, dbus-interface-peer)
3436 (dbus-interface-introspectable, dbus-interface-properties)
3437 (dbus-path-emacs, dbus-interface-emacs, dbus-return-values-table):
3438 Adapt docstring.
3439 (dbus-interface-objectmanager): New defconst.
3440 (dbus-call-method, dbus-call-method-asynchronously)
3441 (dbus-send-signal, dbus-method-return-internal)
3442 (dbus-method-error-internal, dbus-register-service)
3443 (dbus-register-signal, dbus-register-method): New defuns, moved
3444 from dbusbind.c
3445 (dbus-call-method-handler, dbus-setenv)
3446 (dbus-get-all-managed-objects, dbus-managed-objects-handler):
3447 New defuns.
3448 (dbus-call-method-non-blocking): Make it an obsolete function.
3449 (dbus-unregister-object, dbus-unregister-service)
3450 (dbus-handle-event, dbus-register-property)
3451 (dbus-property-handler): Obey the new structure of
3452 `bus-registered-objects'.
3453 (dbus-introspect): Use `dbus-call-method'. Use a timeout.
3454 (dbus-get-property, dbus-set-property, dbus-get-all-properties):
3455 Use `dbus-call-method'.
3456
3457 2012-04-22 Chong Yidong <cyd@gnu.org>
3458
3459 * cus-edit.el (custom-commands, custom-reset-menu)
3460 (Custom-reset-standard): Tweak labels.
3461 (custom-reset-button-menu): Change default to t.
3462 (custom-buffer-create-internal): For the custom-reset-button-menu
3463 case, put the revert button first.
3464 (custom-group-subtitle): New face.
3465 (custom-group-value-create): Align docstring to a specific column.
3466
3467 * wid-edit.el (widget-documentation-link-add): Don't handle
3468 indentation in this function.
3469 (widget-documentation-string-indent-to): New function.
3470 (widget-documentation-string-value-create): Use it.
3471
3472 * autorevert.el (auto-revert):
3473 * epg-config.el (epg):
3474 * ibuffer.el (ibuffer):
3475 * mpc.el (mpc):
3476 * ses.el (ses):
3477 * eshell/eshell.el (eshell):
3478 * net/ange-ftp.el (ange-ftp):
3479 * progmodes/ebnf2ps.el (postscript):
3480 * progmodes/flymake.el (flymake):
3481 * progmodes/prolog.el (prolog):
3482 * progmodes/verilog-mode.el (verilog-mode):
3483 * progmodes/which-func.el (which-func):
3484 * term/xterm.el (xterm):
3485 * textmodes/picture.el (picture):
3486 * textmodes/tildify.el (tildify):
3487 * vc/ediff.el (ediff): Tweak defgroups to improve presentation in
3488 customization buffers.
3489
3490 2012-04-22 Alan Mackenzie <acm@muc.de>
3491
3492 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
3493 Adding a ) can hide the resulting (..) from searches. Fix it.
3494 Bound the backward search to the position of the existing (.
3495
3496 2012-04-21 Juanma Barranquero <lekktu@gmail.com>
3497
3498 * progmodes/verilog-mode.el (verilog-mode): Check whether
3499 which-func-modes is t before adding verilog-mode.
3500 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
3501
3502 2012-04-21 Leo Liu <sdl.web@gmail.com>
3503
3504 * net/rcirc.el (rcirc): Avoid error when process-contact returns t.
3505
3506 2012-04-21 Michael Vehrs <Michael.Burschik@gmx.de>
3507
3508 * woman.el: Add support for "T{ T}" tbl syntax, and fix the
3509 filling of the last column of a table (Bug#5635).
3510 (woman-find-next-control-line): New arg, specifying an additional
3511 regexp component for the control line.
3512 (woman2-roff-buffer): Use it.
3513 (woman-break-table): New function.
3514 (woman2-TS): Use it.
3515
3516 2012-04-21 Chong Yidong <cyd@gnu.org>
3517
3518 * woman.el (woman-set-buffer-display-table, woman-decode-region)
3519 (woman-horizontal-escapes, woman-negative-vertical-space)
3520 (woman-tab-to-tab-stop, woman2-fc, woman2-TS)
3521 (WoMan-warn-ignored): Use ?\s instead of ?\ .
3522
3523 2012-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
3524
3525 * minibuffer.el (completion-file-name-table): Complete user names.
3526
3527 2012-04-20 Leo Liu <sdl.web@gmail.com>
3528
3529 * font-lock.el (lisp-font-lock-keywords-2): Add pcase, pcase-let
3530 and pcase-let*.
3531
3532 2012-04-20 Chong Yidong <cyd@gnu.org>
3533
3534 * server.el (server-execute): Respect initial-buffer-choice if it
3535 is a string and there are no files to open (Bug#2825).
3536 (server-create-window-system-frame, server-create-tty-frame):
3537 Don't switch buffers here.
3538 (server-process-filter): Only try to open a window system frame if
3539 compiled with graphical support (Bug#8314).
3540
3541 2012-04-20 Dan Nicolaescu <dann@gnu.org>
3542
3543 * battery.el (battery-echo-area-format): Display remaining time
3544 for sysfs backend too (Bug#11269).
3545 (battery-linux-sysfs): Fix conditional for the charge.
3546
3547 2012-04-20 Chong Yidong <cyd@gnu.org>
3548
3549 * progmodes/gdb-mi.el (gdb): Revert previous change.
3550 (gdb-inferior-io--init-proc): New function.
3551 (gdb-init-1): Use it.
3552 (gdb-inferior-io-sentinel): New sentinel for the gdb-inferior pty,
3553 responsible for allocating a new pty and hooking it to gdb when
3554 the old pty gets an EIO due to process exit.
3555 (gdb-delchar-or-quit): New command. Bind it in gdb-mi buffers.
3556 (gdb-tooltip-print): Don't use obsolete tooltip-use-echo-area.
3557 (gdb-inferior-io--maybe-delete-pty): Move into gdb-reset.
3558
3559 2012-04-20 Eli Zaretskii <eliz@gnu.org>
3560
3561 * window.el (window-min-size, window-sizable, window-min-delta)
3562 (window-max-delta, window--resizable, window-resizable)
3563 (window-total-size, window-full-height-p, window-full-width-p)
3564 (window-in-direction, window--resize-mini-window, window-resize)
3565 (window--resize-child-windows-normal)
3566 (window--resize-child-windows, window--resize-siblings)
3567 (window--resize-this-window, adjust-window-trailing-edge)
3568 (enlarge-window, shrink-window): Doc fixes.
3569
3570 2012-04-20 Chong Yidong <cyd@gnu.org>
3571
3572 * progmodes/gdb-mi.el (gdb-inferior-io--maybe-delete-pty):
3573 New function to call delete-process on the gdb-inferior buffer's pty.
3574 (gdb-reset): Use it, instead of relying on kill-buffer to kill the
3575 pty process (Bug#11273).
3576 (gdb-update): New arg to suppress talking to the gdb process.
3577 (gdb-done-or-error): Use it.
3578 (gdb-stopped-functions): Rename from gdb-stopped-hooks.
3579 (gdb): Call gdb-inferior-io--maybe-delete-pty as a workaround for
3580 sentinel not being called.
3581
3582 * comint.el (make-comint-in-buffer, comint-exec): Doc fix.
3583
3584 * progmodes/grep.el (grep, rgrep): Doc fix (Bug#11268).
3585
3586 2012-04-20 Glenn Morris <rgm@gnu.org>
3587
3588 * net/network-stream.el (open-network-stream): Doc fix.
3589
3590 2012-04-20 Chong Yidong <cyd@gnu.org>
3591
3592 * emacs-lisp/tabulated-list.el (tabulated-list-print): Fix typos.
3593
3594 2012-04-20 Alan Mackenzie <acm@muc.de>
3595
3596 Ensure searching for keywords is case sensitive.
3597
3598 * progmodes/cc-cmds.el (c-electric-brace, c-electric-lt-gt)
3599 (c-electric-paren, c-beginning-of-defun, c-end-of-defun)
3600 (c-defun-name, c-mark-function, c-cpp-define-name)
3601 (c-comment-indent, c-scan-conditionals, c-indent-defun)
3602 (c-context-line-break): Bind case-fold-search to nil.
3603
3604 * progmodes/cc-mode.el (c-font-lock-fontify-region):
3605 Bind case-fold-search to nil.
3606
3607 2012-04-20 Chong Yidong <cyd@gnu.org>
3608
3609 * mail/sendmail.el (mail-bury): Call return action with the right
3610 Rmail buffer (Bug#11242).
3611
3612 * server.el (server-process-filter): Handle corner case where both
3613 tty and nowait options are present (Bug#11102).
3614
3615 2012-04-20 Eli Zaretskii <eliz@gnu.org>
3616
3617 * version.el (emacs-bzr-version, emacs-bzr-get-version): Doc fixes.
3618 (top level): Put into the executable the ident-style '$Id:' tag on
3619 windows-nt as well.
3620
3621 2012-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
3622
3623 * electric.el (electric-indent-post-self-insert-function): Check that
3624 electric-indent-mode is enabled in current buffer.
3625
3626 2012-04-19 Juanma Barranquero <lekktu@gmail.com>
3627
3628 * imenu.el (imenu-progress-message): Restore; it is "used" in
3629 erc/erc-imenu.el and net/snmp-mode.el.
3630
3631 2012-04-19 Juanma Barranquero <lekktu@gmail.com>
3632
3633 * avoid.el (mouse-avoidance-mode): Mark unused arg.
3634 (mouse-avoidance-nudge-mouse): Remove unused binding.
3635
3636 * bs.el (bs-toggle-readonly): Call `toggle-read-only' interactively.
3637
3638 * descr-text.el (describe-char):
3639 * progmodes/python.el (python-describe-symbol):
3640 Don't call `toggle-read-only', set `buffer-read-only'.
3641
3642 * imenu.el (imenu-default-goto-function): Mark unused args.
3643 (imenu-progress-message): Remove obsolete macro; all callers changed.
3644
3645 * subr.el (keymap-canonicalize): Remove unused binding.
3646 (read-passwd): Mark unused arg.
3647
3648 * tutorial.el (tutorial--display-changes): Remove unused binding.
3649 (tutorial--save-tutorial-to): Remove unused variable.
3650
3651 * emacs-lisp/package.el (define-package, package-menu-mark-delete)
3652 (package-menu-mark-install, package-menu-mark-unmark): Mark unused args.
3653 (package-generate-autoloads, package-menu--generate)
3654 (package-menu--find-upgrades): Remove unused bindings.
3655
3656 * emulation/cua-rect.el (cua-restrict-regexp-rectangle)
3657 (cua-restrict-prefix-rectangle): Doc fixes. Remove unused bindings.
3658 (cua--mouse-ignore, cua--delete-rectangle, cua--extract-rectangle)
3659 (cua--indent-rectangle, cua-open-rectangle, cua-close-rectangle)
3660 (cua-blank-rectangle, cua-string-rectangle, cua-replace-in-rectangle)
3661 (cua-incr-rectangle, cua-sequence-rectangle, cua--convert-rectangle-as)
3662 (cua--rectangle-aux-replace, cua--left-fill-rectangle)
3663 (cua-scroll-rectangle-up, cua-scroll-rectangle-down)
3664 (cua-delete-char-rectangle): Mark unused args.
3665 (cua-align-rectangle): Remove unused binding.
3666
3667 * mail/rmail.el (compilation--message->loc)
3668 (epa--find-coding-system-for-mime-charset): Declare.
3669
3670 * net/dbus.el (dbus-register-service): Declare.
3671 (dbus-name-owner-changed-handler): Remove unused binding.
3672
3673 * nxml/nxml-mode.el (nxml-electric-slash, nxml-in-mixed-content-p)
3674 (nxml-compute-indent-from-matching-start-tag): Remove unused variables.
3675 (nxml-scan-backward-within): Mark unused arg.
3676 (nxml-dynamic-markup-word): Remove unused binding.
3677
3678 * mouse.el (mouse-menu-major-mode-map):
3679 * emacs-lisp/authors.el (authors-scan-change-log)
3680 (authors-add-to-author-list):
3681 * emacs-lisp/avl-tree.el (avl-tree--enter-balance):
3682 * emacs-lisp/smie.el (smie-auto-fill):
3683 * mail/sendmail.el (mail-bury):
3684 * mail/unrmail.el (unrmail):
3685 * net/tls.el (open-tls-stream):
3686 * textmodes/picture.el (picture-mouse-set-point):
3687 Remove unused bindings.
3688
3689 2012-04-19 Michael Albinus <michael.albinus@gmx.de>
3690
3691 * net/tramp.el (tramp-action-password): Let-bind
3692 `enable-recursive-minibuffers' to t.
3693
3694 2012-04-18 Sam Steingold <sds@gnu.org>
3695
3696 * progmodes/gud.el (gud-key-prefix): Use :type 'key-sequence
3697 instead of 'string to accommodate values like [f11].
3698 Always use `vconcat' instead of `concat' on it, like in `gud-def'.
3699 * progmodes/gdb-mi.el: Likewise.
3700
3701 2012-04-18 Leo Liu <sdl.web@gmail.com>
3702
3703 * abbrev.el (edit-abbrevs): Move point to the abbrev table of
3704 current buffer.
3705 (prepare-abbrev-list-buffer): Enter edit-abbrevs-mode only if
3706 LOCAL is nil.
3707
3708 2012-04-18 Chong Yidong <cyd@gnu.org>
3709
3710 * simple.el (line-move): Use forward-line if in batch mode
3711 (Bug#11053).
3712
3713 2012-04-18 Christopher Schmidt <christopher@ch.ristopher.com>
3714
3715 * files.el (after-find-file): Do not try to add a final newline if
3716 the buffer is read-only (Bug#11156).
3717
3718 2012-04-17 Richard Stallman <rms@gnu.org>
3719
3720 * mail/rmail.el (rmail-start-mail):
3721 Pass (rmail-mail-return...) for the return-action.
3722 Pass (rmail-yank-current-message...) for the yank-action.
3723 (rmail-yank-current-message): New function.
3724 (rmail-mail): Pass the Rmail buffer, not view buffer, for replybuffer.
3725 (rmail-reply): Likewise.
3726 (rmail-forward): Pass the Rmail buffer, not nil, for replybuffer.
3727
3728 * mail/sendmail.el (mail-bury): Choose the first rmail-mode
3729 buffer, not the last. Reject temp buffers. Use the rmail-mode
3730 buffer, not newbuf.
3731
3732 2012-04-17 Juanma Barranquero <lekktu@gmail.com>
3733
3734 * server.el (server-ensure-safe-dir): Simplify.
3735
3736 2012-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
3737
3738 * emacs-lisp/smie.el: Provide smarter auto-filling.
3739 (smie-auto-fill): New function.
3740 (smie-setup): Use it.
3741
3742 * newcomment.el (comment-choose-indent): Obey comment-inline-offset.
3743
3744 2012-04-17 Philipp Haselwarter <philipp.haselwarter@gmx.de> (tiny change)
3745
3746 * newcomment.el (comment-inline-offset): New custom var (bug#11090).
3747 (comment-indent): Use it.
3748
3749 2012-04-17 Vincent Belaïche <vincentb1@users.sourceforge.net>
3750
3751 * ses.el: The overall change is to add cell renaming, that is
3752 setting fancy names for cell symbols other than name matching
3753 "\\`[A-Z]+[0-9]+\\'" regexp .
3754 (ses-localvars): Add ses--renamed-cell-symb-list.
3755 (ses-create-cell-variable): New defun.
3756 (ses-destroy-cell-variable-range): Respect ses--numrows, ses--numcols.
3757 (ses-relocate-formula): Relocate formulas only for cells the
3758 symbols of which are not renamed, i.e. symbols whose names do not
3759 match regexp "\\`[A-Z]+[0-9]+\\'".
3760 (ses-relocate-all): Relocate values only for cells the symbols of
3761 which are not renamed.
3762 (ses-load): Create cells variables as the (ses-cell ...) are read,
3763 in order to check row col consistency with cell symbol name only
3764 for cells that are not renamed.
3765 (ses-replace-name-in-formula): New defun.
3766 (ses-rename-cell): New defun.
3767
3768 2012-04-17 Peter Oliver <bzr@mavit.org.uk> (tiny change)
3769
3770 * progmodes/perl-mode.el (perl-indent-parens-as-block):
3771 New option (bug#11118).
3772 (perl-calculate-indent): Respect it.
3773
3774 2012-04-17 Glenn Morris <rgm@gnu.org>
3775
3776 * dired-aux.el (dired-mark-read-string): Doc fix.
3777
3778 2012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
3779
3780 * dired-aux.el (dired-mark-read-string): Offer optional completion.
3781 (dired-do-chxxx): Complete chown, chgrp over users, groups. (Bug#7900)
3782
3783 2012-04-17 Glenn Morris <rgm@gnu.org>
3784
3785 * mouse.el (mouse-drag-track):
3786 * speedbar.el (speedbar-frame-mode):
3787 Use auto-hscroll-mode rather than the alias automatic-hscrolling.
3788
3789 2012-04-16 Leo Liu <sdl.web@gmail.com>
3790
3791 * progmodes/python.el: Trivial cleanup.
3792
3793 2012-04-16 Glenn Morris <rgm@gnu.org>
3794
3795 * vc/vc.el (vc-string-prefix-p):
3796 * vc/pcvs-util.el (cvs-string-prefix-p):
3797 * textmodes/tex-mode.el (latex-string-prefix-p, tex-string-prefix-p):
3798 * mpc.el (mpc-string-prefix-p):
3799 Make all of these into obsolete aliases for string-prefix-p.
3800 Update callers.
3801 * vc/pcvs.el, vc/vc-dispatcher.el, vc/vc-dir.el: Update callers.
3802
3803 * textmodes/two-column.el: Move custom options to the start.
3804 (frame-width): Remove compat definition.
3805 (2C-associate-buffer, 2C-dissociate):
3806 Use with-current-buffer rather than save-excursion.
3807 (2C-dissociate): Force a mode-line update.
3808 (2C-autoscroll): Use ignore-errors.
3809
3810 * emacs-lisp/eieio-opt.el (describe-class, describe-generic):
3811 Autoload trivia.
3812
3813 * emacs-lisp/cl-extra.el (*random-state*):
3814 Remove unnecessary declaration.
3815
3816 * calendar/cal-tex.el (cal-tex-end-document): Trivial clarification.
3817
3818 * play/cookie1.el (cookie-snarf):
3819 Give an explicit error if input file cannot be read.
3820
3821 * play/yow.el (yow-file): Use expand-file-name rather than concat.
3822
3823 * progmodes/perl-mode.el (c-macro-expand):
3824 Remove unnecessary autoload (it is in loaddefs.el).
3825
3826 * textmodes/picture.el (picture-desired-column)
3827 (picture-update-desired-column): Convert comments to doc-strings.
3828 (picture-substitute): Remove function.
3829 (picture-mode-map): Initialize in the defvar.
3830
3831 * woman.el: Remove eval-after-load for tar-mode.
3832 * tar-mode.el (tar-mode-map): Add woman binding and menu entry.
3833 (woman-tar-extract-file): Autoload it.
3834
3835 * frame.el (automatic-hscrolling): Make this alias obsolete.
3836
3837 2012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
3838
3839 * ispell.el (ispell-set-spellchecker-params): Post-process
3840 `ispell-dictionary-alist' to use [:alpha:] and utf-8 if possible.
3841 (ispell-dictionary-base-alist): Revert to original XEmacs
3842 friendly version for default. [:alpha:] will be added in
3843 `ispell-set-spellchecker-params' if needed
3844
3845 2012-04-16 Chong Yidong <cyd@gnu.org>
3846
3847 * image.el (imagemagick--extension-regexp): New variable.
3848 (imagemagick-register-types): Use it.
3849 (imagemagick-types-inhibit): Add :set function. Allow new value
3850 of t to inhibit all types.
3851
3852 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Avoid cl macros,
3853 so we can preload it.
3854
3855 * loadup.el (fboundp): Preload regexp-opt, needed by
3856 imagemagick-register-types.
3857
3858 2012-04-15 Chong Yidong <cyd@gnu.org>
3859
3860 * frame.el (scrolling): Remove nearly unused customization group.
3861
3862 * scroll-all.el (scroll-all-mode): Move to windows group.
3863
3864 2012-04-15 Chong Yidong <cyd@gnu.org>
3865
3866 * bindings.el (goto-map): Bind goto-char to M-g c (Bug#11240).
3867
3868 2012-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
3869
3870 Avoid the use of ((lambda ...) ...) in lexical-binding code.
3871 * emacs-lisp/easy-mmode.el (define-minor-mode): Use funcall (bug#11241).
3872
3873 2012-04-15 Glenn Morris <rgm@gnu.org>
3874
3875 * simple.el (process-file-side-effects): Doc fix.
3876
3877 2012-04-15 Glenn Morris <rgm@gnu.org>
3878
3879 * international/mule-cmds.el (set-language-environment): Doc fix.
3880
3881 2012-04-14 Juanma Barranquero <lekktu@gmail.com>
3882
3883 * server.el (server-auth-key, server-generate-key): Doc fixes.
3884 (server-get-auth-key): Doc fix. Use `string-match-p'.
3885 (server-start): Reflow docstring.
3886
3887 2012-04-14 Lars Ingebrigtsen <larsi@gnus.org>
3888
3889 * server.el (server-generate-key): `called-interactively-p'
3890 requires a parameter.
3891
3892 2012-04-14 Michal Nazarewicz <mina86@mina86.com>
3893
3894 * server.el (server-auth-key): New variable.
3895 (server-generate-key, server-get-auth-key): New function.
3896 (server-start): Use the new variable and functions to allow
3897 setting a permanent server key (bug#9423).
3898
3899 2012-04-14 Leo Liu <sdl.web@gmail.com>
3900
3901 * vc/diff-mode.el (diff-file-prev/next): Fix typo.
3902
3903 2012-04-14 Paul Eggert <eggert@cs.ucla.edu>
3904
3905 Spelling fixes.
3906 * hexl.el (hexl-rulerize): Rename from hexl-rulerise, since
3907 Emacs uses American spelling.
3908
3909 2012-04-14 Juanma Barranquero <lekktu@gmail.com>
3910
3911 * emacs-lock.el (emacs-lock-locked-buffer-functions): New hook.
3912 (emacs-lock--exit-locked-buffer): Return the locked buffer. Doc fix.
3913 (emacs-lock--kill-emacs-hook, emacs-lock--kill-emacs-query-functions)
3914 (emacs-lock--kill-buffer-query-functions): Run new hook. (Bug#11017)
3915
3916 2012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
3917
3918 * progmodes/which-func.el (which-func-modes): Change default.
3919
3920 2012-04-14 Kim F. Storm <storm@cua.dk>
3921
3922 * emulation/cua-base.el (cua-exchange-point-and-mark): Just call
3923 exchange-point-and-mark if cua-enable-cua-keys is nil (Bug#11191).
3924
3925 2012-04-14 Chong Yidong <cyd@gnu.org>
3926
3927 * custom.el (custom-theme-set-variables): Doc fix.
3928
3929 2012-04-14 Glenn Morris <rgm@gnu.org>
3930
3931 * international/mule.el (set-auto-coding-for-load): Doc fix.
3932
3933 2012-04-14 Alan Mackenzie <acm@muc.de>
3934
3935 * progmodes/cc-menus.el (cc-imenu-objc-generic-expression): Make
3936 imenu work again for Objective C Mode. Correct the *-index values,
3937 these having been disturbed by a previous change in 2011-08.
3938
3939 * progmodes/cc-engine.el (c-before-change-check-<>-operators):
3940 Correct two search limits.
3941
3942 2012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
3943
3944 * startup.el (command-line-1): Inhibit splash from daemon (bug#10996).
3945
3946 2012-04-14 Andreas Schwab <schwab@linux-m68k.org>
3947
3948 * international/characters.el: Fix sorting.
3949
3950 2012-04-14 Eli Zaretskii <eliz@gnu.org>
3951
3952 * international/characters.el: Add more missing Latin case pairs.
3953
3954 2012-04-14 Glenn Morris <rgm@gnu.org>
3955
3956 * files.el (dir-locals-set-class-variables): Doc fix.
3957
3958 2012-04-14 Eli Zaretskii <eliz@gnu.org>
3959
3960 * international/characters.el: Add set-case-syntax-pair call for
3961 LATIN CAPITAL LETTER Y WITH DIAERESIS RET and its lower-case
3962 counterpart. (Bug#11209)
3963
3964 * simple.el (shell-command-on-region): Doc fix. (Bug#11208)
3965
3966 2012-04-14 Glenn Morris <rgm@gnu.org>
3967
3968 * calendar/holidays.el (calendar-check-holidays): Doc fix.
3969
3970 2012-04-14 Eli Zaretskii <eliz@gnu.org>
3971
3972 * textmodes/ispell.el (ispell-dictionary-base-alist):
3973 Add data for Hebrew.
3974
3975 2012-04-14 Chong Yidong <cyd@gnu.org>
3976
3977 * net/rcirc.el (rcirc-cmd-quit):
3978 Revert 2012-03-18 change (Bug#11192).
3979
3980 2012-04-14 Glenn Morris <rgm@gnu.org>
3981
3982 * pcmpl-rpm.el (pcomplete/rpm): Handle -qf.
3983
3984 2012-04-14 Eli Zaretskii <eliz@gnu.org>
3985
3986 * minibuffer.el (completion-in-region-mode-map):
3987 Bind completion-help-at-point to M-? rather than ?. (Bug#11182)
3988
3989 2012-04-13 Vivek Dasmohapatra <vivek@etla.org>
3990
3991 * hexl.el (hexl-insert-char): Make display sizes other than 16 work.
3992
3993 2012-04-13 Masatake YAMATO <yamato@redhat.com>
3994
3995 * minibuffer.el (minibuffer-local-filename-syntax): New variable
3996 to allow `C-M-f' and `C-M-b' to move to the nearest path
3997 separator (bug#9511).
3998
3999 2012-04-13 Lars Ingebrigtsen <larsi@gnus.org>
4000
4001 * avoid.el: Require cl when compiling. And also move the
4002 `provide' to the end.
4003
4004 2012-04-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
4005
4006 * avoid.el (mouse-avoidance-banish-position): New variable.
4007 (mouse-avoidance-banish-destination): Use it (bug#10165).
4008
4009 2012-04-13 Leo Liu <sdl.web@gmail.com>
4010
4011 * progmodes/which-func.el (which-func-modes): Add objc-mode.
4012
4013 2012-04-13 Ken Brown <kbrown@cornell.edu>
4014
4015 * net/browse-url.el (browse-url-file-url): Remove Cygwin hack;
4016 this is no longer needed now that cygstart understands file:// URLs.
4017 (browse-url-filename-alist): For the same reason, don't modify
4018 file:// URLs on Cygwin.
4019
4020 2012-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
4021
4022 * emulation/cua-base.el (cua--pre-command-handler-1): Don't activate
4023 the region on shift if the binding is already shifted (bug#11221).
4024
4025 2012-04-12 Glenn Morris <rgm@gnu.org>
4026
4027 * mail/mailpost.el: Move to obsolete/.
4028
4029 2012-04-12 Drew Adams <drew.adams@oracle.com>
4030
4031 * imenu.el (imenu--generic-function): Ignore invisible definitions
4032 (bug#10123).
4033
4034 2012-04-12 Vivek Dasmohapatra <vivek@etla.org>
4035
4036 * hexl.el (hexl-bits): New variable.
4037 (hexl-options): Mention the variable in the doc string.
4038 (hexl-rulerise, hexl-line-displen): New functions.
4039 (hexl-mode): Mention the new variable.
4040 (hexl-mode, hexl-current-address, hexl-current-address):
4041 Use the displen.
4042 (hexl-ascii-start-column): New function.
4043 (hexl-address-to-marker, hexl-beginning-of-line, hexl-options)
4044 (hexl-insert-char, hexl-mode-ruler): Use the displen (bug#4941).
4045
4046 2012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
4047
4048 * textmodes/flyspell.el (flyspell-large-region): For hunspell, use
4049 '("-i" ENCODING), in 2 separate command-line arguments, to specify
4050 the encoding, as expected by hunspell.
4051
4052 2012-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
4053
4054 * battery.el (battery--linux-sysfs-regexp): New const.
4055 (battery-status-function): Use it. Remove yeeloong special case.
4056 (battery-yeeloong-sysfs): Remove.
4057 (battery-echo-area-format): Remove yeeloong special case.
4058
4059 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
4060
4061 * imenu.el (imenu-add-to-menubar): `current-local-map' can be nil.
4062 Reported by Noah Friedman.
4063
4064 * subr.el (read-passwd): Use read-string.
4065
4066 2012-04-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
4067
4068 * vcursor.el (vcursor-move): Increase the priority of the overlay
4069 (bug#9663).
4070
4071 2012-04-11 Deniz Dogan <deniz.a.m.dogan@gmail.com>
4072
4073 * net/rcirc.el (rcirc-kill-channel-buffers): New variable.
4074 (rcirc-kill-buffer-hook): Use it to kill channel buffers (bug#5128).
4075
4076 2012-04-11 William Stevenson <yhvh2000@gmail.com>
4077
4078 * textmodes/artist.el (artist-mode): Convert artist-mode to use
4079 define-minor-mode (bug#10760).
4080
4081 2012-04-11 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
4082
4083 * progmodes/grep.el (rgrep): Tweak the find command line so
4084 that directories matching `grep-find-ignored-files' won't be
4085 pruned (bug#10351).
4086
4087 2012-04-11 Chong Yidong <cyd@gnu.org>
4088
4089 * startup.el (command-line): Remove support for long-obsolete
4090 variable font-lock-face-attributes.
4091
4092 2012-04-11 Glenn Morris <rgm@gnu.org>
4093
4094 * vc/vc-bzr.el (vc-bzr-status): Avoid condition-case-unless-debug.
4095
4096 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
4097
4098 * window.el (window--state-get-1): Obey window-point-insertion-type.
4099
4100 2012-04-11 Lennart Borgman <lennart.borgman@gmail.com>
4101
4102 * emacs-lisp/lisp.el (narrow-to-defun): `beginning-of-defun' goes
4103 to previous function when point is on the first character of a
4104 function. Take care of that in `narrow-to-defun' (bug#6157).
4105
4106 2012-04-11 Glenn Morris <rgm@gnu.org>
4107
4108 * vc/vc-bzr.el (vc-bzr-status): Handle all errors,
4109 not just file-errors.
4110
4111 * vc/vc-bzr.el (vc-bzr-sha1-program, sha1-program): Remove.
4112 (vc-bzr-sha1): Use internal sha1.
4113
4114 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
4115
4116 * progmodes/flymake.el (flymake-mode): Beware read-only dirs (bug#8954).
4117
4118 2012-04-10 Sébastien Gross <seb@chezwam.org> (tiny change)
4119
4120 * progmodes/hideshow.el (hs-hide-all): Don't infloop on comments
4121 that start in the middle of the line (bug#10496).
4122
4123 2012-04-10 Dan Nicolaescu <dann@gnu.org>
4124
4125 * battery.el (battery-linux-proc-acpi): Only one battery is
4126 discharged at a time, but that seems to confuse battery.el when
4127 computing `rate-type' for the battery not being discharged
4128 (bug#10332).
4129
4130 2012-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
4131
4132 * emacs-lisp/autoload.el (autoload-make-program): Remove, unused.
4133
4134 * international/quail.el: Use dolist and simplify.
4135 (quail-define-package, quail-update-keyboard-layout)
4136 (quail-define-rules): Use dolist.
4137 (quail-insert-kbd-layout, quail-get-translation): CSE.
4138
4139 * tmm.el: Use dolist, remove left over hook.
4140 (tmm-prompt, tmm-define-keys, tmm-shortcut, tmm-get-keybind):
4141 Use dolist.
4142 (calendar-load-hook): Don't mess with it.
4143
4144 * vc/vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
4145 Use derived-mode-p. Run the diff asynchronously.
4146
4147 2012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
4148
4149 * obsolete/mouse-sel.el: Add an Obsolete-since header.
4150
4151 2012-04-10 Juanma Barranquero <lekktu@gmail.com>
4152
4153 * misc.el: Display absolute path of loaded DLLs (bug#10424).
4154 (list-dynamic-libraries--loaded): New function.
4155 (list-dynamic-libraries--refresh): Use it.
4156
4157 2012-04-10 Nathan Weizenbaum <nweiz@google.com>
4158
4159 * progmodes/python.el (python-fill-paragraph):
4160 Make python-fill-region in a multiline string work when font-lock is
4161 disabled (bug#7018).
4162
4163 2012-04-10 Laimonas VÄ—bra <laimonas.vebra@gmail.com> (tiny change)
4164
4165 * language/european.el (cp775): Add oem/legacy (en)coding on
4166 DOS/MS Windows for the Baltic languages. There are still plenty
4167 of texts written in this encoding/codepage (bug#6519).
4168
4169 2012-04-10 Glenn Morris <rgm@gnu.org>
4170
4171 * cus-start.el (eol-mnemonic-unix, eol-mnemonic-dos, eol-mnemonic-mac):
4172 Add :standard values, reducing "rogue" customs in emacs -Q a bit more.
4173
4174 2012-04-10 Florian Adamsky <florian@adamsky.it> (tiny change)
4175
4176 * recentf.el (recentf-dialog-mode-map): Add two keybindings for
4177 next-line "n" and previous-line "p" in order to make recentf more
4178 consistent with ibuffer, dired or org-mode (bug#9387).
4179
4180 2012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
4181
4182 * image.el (put-image): Return the overlay created instead of the
4183 optional input string (bug#7834). Note that this may break code
4184 that is (for some reason or other) depending on `put-image'
4185 returning the string.
4186
4187 * mouse-sel.el (mouse-sel-mode): Mark as obsolete (bug#6174).
4188
4189 * simple.el (zap-to-char): Allow zapping using input methods
4190 (bug#1580).
4191
4192 * textmodes/fill.el (fill-region): Leave point and mark where they
4193 were before filling (bug#5399).
4194
4195 2012-04-09 Glenn Morris <rgm@gnu.org>
4196
4197 * version.el (emacs-bzr-get-version):
4198 Handle lightweight checkouts of local branches.
4199
4200 2012-04-09 Andreas Schwab <schwab@linux-m68k.org>
4201
4202 * international/characters.el: Recover lost case pairs. (Bug#11209)
4203
4204 2012-04-09 Chong Yidong <cyd@gnu.org>
4205
4206 * custom.el (custom-variable-p): Return nil for non-symbol
4207 arguments instead of signaling an error.
4208 (user-variable-p): Obsolete alias for custom-variable-p.
4209
4210 * apropos.el (apropos-variable):
4211 * files-x.el (read-file-local-variable):
4212 * simple.el (set-variable):
4213 * woman.el (woman-mini-help):
4214 * emacs-lisp/byte-opt.el (side-effect-free-fns): Callers changed.
4215
4216 2012-04-09 Glenn Morris <rgm@gnu.org>
4217
4218 * startup.el (normal-top-level): Don't look for leim-list.el
4219 in places where it will not be found. (Bug#910)
4220
4221 * international/mule-cmds.el (set-default-coding-systems):
4222 * files.el (normal-mode):
4223 Remove guarded calls to ucs-set-table-for-input. (Bug#9821)
4224 This function was removed with ucs-tables.el in 2008.
4225
4226 2012-04-08 Eli Zaretskii <eliz@gnu.org>
4227
4228 * textmodes/ispell.el (ispell-check-version): For hunspell, set
4229 ispell-encoding8-command to "-i", without a trailing space.
4230 (ispell-start-process): For hunspell, use '("-i" ENCODING), in 2
4231 separate command-line arguments, to specify the encoding, since
4232 that's how hunspell expects it.
4233
4234 2012-04-08 Glenn Morris <rgm@gnu.org>
4235
4236 * loadup.el: Load bindings before cus-start.
4237 This reduces somewhat the number of "rogue" settings in emacs -Q.
4238
4239 2012-04-07 Glenn Morris <rgm@gnu.org>
4240
4241 * version.el (emacs-bzr-get-version): New function.
4242 (emacs-bzr-version): New variable.
4243 * loadup.el (emacs-bzr-version): Set it. (Bug#8054)
4244 * mail/emacsbug.el (report-emacs-bug): Include bzr version.
4245
4246 2012-04-07 Eli Zaretskii <eliz@gnu.org>
4247
4248 * international/uni-bidi.el, international/uni-category.el:
4249 * international/uni-combining.el, international/uni-decimal.el:
4250 * international/uni-decomposition.el, international/uni-digit.el:
4251 * international/uni-lowercase.el, international/uni-mirrored.el:
4252 * international/uni-name.el, international/uni-numeric.el:
4253 * international/uni-titlecase.el, international/uni-uppercase.el:
4254 Update for Unicode 6.1.
4255
4256 2012-04-07 Eli Zaretskii <eliz@gnu.org>
4257
4258 * term/w32-win.el (dynamic-library-alist): Add libxml2 DLLs.
4259
4260 2012-04-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
4261
4262 * window.el (shrink-window): Mention the `window-min-height'
4263 variable in the doc string.
4264
4265 2012-04-05 Bastien Guerry <bzg@altern.org>
4266
4267 * color.el (color-lighten-name): Fix typo.
4268
4269 2012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
4270
4271 * server.el (server--on-display-p): New function.
4272 (server--on-display-p): Use it.
4273
4274 2012-04-04 Gabor Vida <vidagabor@gmail.com> (tiny change)
4275
4276 * ido.el (ido-wide-find-dirs-or-files): Use file-name-absolute-p
4277 (bug#11145).
4278
4279 2012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
4280
4281 * comint.el (comint--common-quoted-suffix): Check string boundary
4282 before comparing (bug#11158).
4283 * pcomplete.el (pcomplete--common-quoted-suffix): Idem.
4284
4285 2012-04-04 Chong Yidong <cyd@gnu.org>
4286
4287 * minibuffer.el (completion-extra-properties): Doc fix.
4288
4289 * subr.el (delayed-warnings-hook): Doc fix.
4290
4291 2012-04-04 Daiki Ueno <ueno@unixuser.org>
4292
4293 * epa.el (epa--select-keys): Bind C-c C-c to finish the key
4294 selection (Bug#11159).
4295 (epa-insert-keys): Inform that the default public key will be
4296 exported if no key is selected.
4297
4298 2012-04-04 Richard Stallman <rms@gnu.org>
4299
4300 * mail/emacsbug.el (report-emacs-bug): Bind inhibit-read-only.
4301
4302 2012-04-03 Chong Yidong <cyd@gnu.org>
4303
4304 * mail/sendmail.el (mail-mode-map): Bind C-c C-i to
4305 mail-insert-file, not its obsolete alias mail-attach-file.
4306
4307 2012-04-03 Michael Albinus <michael.albinus@gmx.de>
4308
4309 * notifications.el (notifications-notify): Fix docstring.
4310
4311 2012-04-02 Glenn Morris <rgm@gnu.org>
4312
4313 * emacs-lisp/authors.el (authors-aliases): Another addition.
4314
4315 2012-04-02 Michael Albinus <michael.albinus@gmx.de>
4316
4317 * net/tramp-gvfs.el (tramp-gvfs-send-command): Apply
4318 `tramp-compat-call-process' instead of `tramp-local-call-process'.
4319 Reported by Magnus Henoch <magnus.henoch@gmail.com>.
4320
4321 2012-04-01 Chong Yidong <cyd@gnu.org>
4322
4323 * files.el (file-in-directory-p): Rename from file-subdir-of-p.
4324 Handle root directory properly.
4325 (copy-directory): Caller changed.
4326
4327 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
4328 * net/tramp.el (tramp-file-name-for-operation): Callers changed.
4329
4330 2012-03-31 Glenn Morris <rgm@gnu.org>
4331
4332 * term/xterm.el (xterm-extra-capabilities): Doc fix.
4333
4334 * language/indian.el ("Devanagari"): Fix typo. (Bug#11103)
4335
4336 * calendar/calendar.el (calendar-window-list)
4337 (calendar-hide-window): Restore. (Bug#11140)
4338 (calendar-exit): Use calendar-window-list, calendar-hide-window again.
4339
4340 * emacs-lisp/edebug.el (edebug-unwrap-results): Doc fix.
4341
4342 2012-03-30 Thierry Volpiatto <thierry.volpiatto@gmail.com>
4343
4344 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
4345 Check if file is a symlink (Bug#10489).
4346
4347 * files.el (copy-directory): Likewise.
4348
4349 2012-03-30 Chong Yidong <cyd@gnu.org>
4350
4351 * image.el (imagemagick-types-inhibit)
4352 (imagemagick-register-types): Doc fix.
4353
4354 2012-03-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
4355
4356 * ispell.el (ispell-get-extended-character-mode):
4357 Disable extended-char-mode for hunspell. hunspell does not support it
4358 and treats ~word as ordinary words in pipe mode.
4359
4360 2012-03-30 Glenn Morris <rgm@gnu.org>
4361
4362 * tutorial.el (help-with-tutorial): Ensure local variables don't
4363 happen to make the buffer read-only. (Bug#11127)
4364
4365 2012-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
4366
4367 * progmodes/perl-mode.el (perl-indent-line): Use `noindent' in strings.
4368 (perl-calculate-indent): Return `noindent' in strings.
4369
4370 2012-03-28 Sam Steingold <sds@gnu.org>
4371
4372 * calendar/calendar.el (calendar-exit): Use `quit-windows-on'
4373 instead of the broken adhockery which does not prevent calendar
4374 buffers from being displayed at random after exit.
4375 (calendar-window-list, calendar-hide-window): Remove the broken
4376 adhockery.
4377
4378 2012-03-28 Glenn Morris <rgm@gnu.org>
4379
4380 * replace.el (query-replace-map): Doc fix.
4381
4382 2012-03-28 Andreas Schwab <schwab@linux-m68k.org>
4383
4384 * vc/vc-git.el (vc-git-state): Don't try to match all of the diff
4385 contents. (Bug#11109)
4386
4387 2012-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
4388
4389 * emacs-lisp/avl-tree.el (avl-tree--enter-balance): Fix paren typo
4390 (bug#11077).
4391 (avl-tree--check, avl-tree--check-node): New funs.
4392
4393 2012-03-27 Martin Rudalics <rudalics@gmx.at>
4394
4395 * window.el (switch-to-visible-buffer): New option.
4396 (switch-to-prev-buffer, switch-to-next-buffer):
4397 Observe switch-to-visible-buffer. Make sure that checking for a window
4398 showing a buffer already is done on the same frame.
4399
4400 2012-03-27 Glenn Morris <rgm@gnu.org>
4401
4402 * startup.el (mail-host-address): Doc fix.
4403
4404 2012-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
4405
4406 * emacs-lisp/bytecomp.el (byte-compile-constants-vector): Allow more
4407 than 197 variables.
4408
4409 2012-03-26 Ami Fischman <ami@fischman.org>
4410
4411 * vc/vc-git.el (vc-git-state): Avoid unnecessarily locking.
4412
4413 2012-03-26 Glenn Morris <rgm@gnu.org>
4414
4415 * files.el (save-buffers-kill-emacs): Doc fix.
4416
4417 * startup.el (normal-top-level, command-line, command-line-1):
4418 Give them doc strings.
4419
4420 2012-03-25 Eli Zaretskii <eliz@gnu.org>
4421
4422 * makefile.w32-in (install): Use $(DIRNAME)_same-dir.tst instead
4423 of same-dir.tst, to avoid stepping on other (parallel) Make job's toes.
4424
4425 2012-03-25 Chong Yidong <cyd@gnu.org>
4426
4427 * custom.el (load-theme): Even if NO-ENABLE arg is t, reenable the
4428 theme if it was previously enabled before (Bug#11031).
4429
4430 * cus-theme.el (custom-theme-write-faces): Retrieve current face
4431 spec with custom-face-get-current-spec if its :shown-value is not
4432 determined yet (Bug#9337).
4433 (customize-create-theme, custom-theme-revert): Doc fixes.
4434
4435 * button.el (button-at): Minor addition to docstring.
4436
4437 2012-03-24 Simon Leinen <simon.leinen@gmail.com>
4438
4439 * vc/vc.el (vc-merge): Fix a prompt.
4440
4441 2012-03-24 Chong Yidong <cyd@gnu.org>
4442
4443 * mwheel.el (mwheel-scroll): Call deactivate-mark at the right
4444 point (Bug#9623).
4445
4446 * button.el (button-at): Minor addition to docstring.
4447
4448 2012-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
4449
4450 * newcomment.el (comment-choose-indent): No space after BOL.
4451
4452 2012-03-22 Sam Steingold <sds@gnu.org>
4453
4454 * window.el (switch-to-prev-buffer): Revert last patch because the
4455 bug turned out to be an advertised feature (Elisp manual 28.14).
4456
4457 2012-03-22 Glenn Morris <rgm@gnu.org>
4458
4459 * vc/vc-bzr.el (vc-bzr-status-switches): New option. (Bug#6724)
4460 (vc-bzr-command): If running "status", pass vc-bzr-status-switches.
4461
4462 2012-03-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
4463
4464 * net/network-stream.el (network-stream-open-starttls): Make error
4465 message under Windows be less misleading.
4466
4467 2012-03-22 Liang Wang <netcasper@gmail.com> (tiny change)
4468
4469 * progmodes/etags.el (etags-list-tags): Only use tags which goto-func
4470 understands (bug#9942).
4471
4472 2012-03-22 Chong Yidong <cyd@gnu.org>
4473
4474 * simple.el (end-of-visible-line): Handle return value of
4475 next-single-property-change properly (Bug#9371).
4476
4477 2012-03-22 Kenichi Handa <handa@m17n.org>
4478
4479 * international/quail.el (quail-insert-kbd-layout): Fix previous
4480 change. To avoid unwanted bidi reordering, use
4481 bidi-string-mark-left-to-right instead of inserting LRO and PDF.
4482
4483 2012-03-21 Dmitry Gutov <dgutov@yandex.ru>
4484
4485 * progmodes/ruby-mode.el: Don't confuse "end:" for "end" (bug#10786).
4486 (ruby-block-end-re, ruby-delimiter, ruby-parse-partial)
4487 (ruby-beginning-of-indent): Be more careful with the difference
4488 between word-boundary and symbol boundary.
4489 (ruby-mode-syntax-table): Make : a symbol constituent.
4490
4491 2012-03-21 Andreas Politz <politza@fh-trier.de>
4492
4493 * outline.el (outline-flag-region): Evaporate overlays (bug#10789).
4494
4495 2012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
4496
4497 * progmodes/etags.el (tags-completion-at-point-function):
4498 Improve last fix.
4499
4500 * files.el (move-file-to-trash): Files aren't regexps (bug#11055).
4501
4502 2012-03-21 Sam Steingold <sds@gnu.org>
4503
4504 * progmodes/etags.el (tags-completion-at-point-function):
4505 Avoid the error when point is inside the pattern.
4506
4507 2012-03-21 John Yates <john@yates-sheets.org> (tiny change)
4508
4509 * progmodes/hideshow.el (hs-inside-comment-p): Fix hiding of first
4510 line (Bug#10855).
4511
4512 2012-03-21 Drew Adams <drew.adams@oracle.com>
4513
4514 * info.el (Info-menu): Handle string value of FORK arg (Bug#10858).
4515
4516 2012-03-21 Anmol Khirbat <anmol@khirbat.net> (tiny change)
4517
4518 * ido.el (ido-set-current-directory, ido-read-internal)
4519 (ido-choose-completion-string, ido-completion-help): Handle nil
4520 value of ido-completion-buffer (Bug#11008).
4521
4522 2012-03-21 Sam Steingold <sds@gnu.org>
4523
4524 * window.el (switch-to-prev-buffer): Do not switch to a visible
4525 window previous buffer, just like with the frame previous buffers.
4526
4527 2012-03-21 Chong Yidong <cyd@gnu.org>
4528
4529 * faces.el (make-face, make-empty-face, copy-face):
4530 * face-remap.el (face-remap-add-relative, face-remap-set-base):
4531 Doc fixes.
4532
4533 2012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
4534
4535 * wid-edit.el (widget-complete-field): Remove (bug#11051).
4536 (widget-complete): Remove broken use of it.
4537
4538 2012-03-20 Chong Yidong <cyd@gnu.org>
4539
4540 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
4541 Use string-width and truncate-string-width to handle arbitrary
4542 characters.
4543
4544 2012-03-20 Tassilo Horn <tassilo@member.fsf.org>
4545
4546 * textmodes/artist.el (artist-menu-map): Bind Rectangle menu item
4547 to draw rectangles, not squares. (Regression introduced by revno
4548 2011-03-02T03:48:01Z!cyd@stupidchicken.com)
4549
4550 2012-03-18 Chong Yidong <cyd@gnu.org>
4551
4552 * faces.el (face-spec-reset-face): Don't call display-graphic-p if
4553 it is not yet defined (for temacs).
4554
4555 2012-03-18 Leo Liu <sdl.web@gmail.com>
4556
4557 * net/rcirc.el (rcirc-cmd-quit): Allow quiting all servers with prefix.
4558
4559 2012-03-17 Eli Zaretskii <eliz@gnu.org>
4560
4561 * textmodes/ispell.el (ispell-skip-tib, ispell-keep-choices-win)
4562 (ispell-choices-win-default-height, ispell-silently-savep)
4563 (ispell-dictionary-alist, ispell-encoding8-command)
4564 (ispell-check-version, ispell-aspell-find-dictionary)
4565 (ispell-valid-dictionary-list, ispell-words-keyword)
4566 (ispell-get-word, ispell-internal-change-dictionary)
4567 (ispell-region, ispell-skip-region-list)
4568 (ispell-begin-skip-region-regexp, ispell-ignore-fcc)
4569 (ispell-process-line, ispell-minor-mode, ispell-minor-check)
4570 (ispell-message-text-end, ispell-message)
4571 (ispell-buffer-local-parsing): Doc fix.
4572
4573 2012-03-13 Jambunathan K <kjambunathan@gmail.com>
4574
4575 * htmlfontify.el: Add support for code block fontification for ODT
4576 export (Bug #9914).
4577 (hfy-optimisations): Define new option
4578 `body-text-only'
4579 (hfy-fontify-buffer): Honor above setting.
4580 (hfy-begin-span, hfy-end-span): New routines factored out form
4581 `hfy-fontify-buffer'.
4582 (hfy-begin-span-handler, hfy-end-span-handler): New variables
4583 that permit insertion of custom tags.
4584 (hfy-fontify-buffer): Use above handlers.
4585 (hfy-face-to-css-default): Same as the earlier `hfy-face-to-css'.
4586 (hfy-face-to-css): Re-defined to be a variable.
4587 (hfy-compile-stylesheet): Modify. Allow stylesheet to be built
4588 over multiple runs. This is made possible by having the caller let
4589 bind a special variable `hfy-user-sheet-assoc'.
4590 (htmlfontify-string): New defun.
4591 (hfy-compile-face-map): Make sure that the last char in the
4592 buffer is correctly fontified.
4593 (hfy-face-resolve-face): Whitespace only change.
4594
4595 2012-03-17 Eli Zaretskii <eliz@gnu.org>
4596
4597 * textmodes/ispell.el (ispell-get-decoded-string): Make the error
4598 message more clear.
4599
4600 2012-03-16 Leo Liu <sdl.web@gmail.com>
4601
4602 * emacs-lisp/copyright.el (copyright-year-ranges): Fix typo.
4603
4604 2012-03-16 Alan Mackenzie <acm@muc.de>
4605
4606 Further optimise the handling of large macros.
4607
4608 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Use a
4609 limit to a call of `c-literal-limits'.
4610 (c-determine-+ve-limit): New function.
4611 (c-at-macro-vsemi-p): Move `c-in-literal' to the bottom of an `and'.
4612 (c-guess-basic-syntax): In macros, restrict a search limit to 2000.
4613 In CASE 5B, restrict a search limit to 500.
4614 (c-just-after-func-arglist-p): Obviouly wrong `or' -> `and'.
4615
4616 * progmodes/cc-mode.el (c-neutralize-syntax-in-and-mark-CPP):
4617 Restrict macro bounds to +-500 from after-change's BEG END.
4618
4619 2012-03-16 Leo Liu <sdl.web@gmail.com>
4620
4621 * font-lock.el (lisp-font-lock-keywords-2): Add letrec.
4622
4623 2012-03-16 Aaron S. Hawley <Aaron.S.Hawley@gmail.com>
4624
4625 * tar-mode.el (tar-mode): Fix saving by conditionally undoing
4626 `special-mode' setting of `buffer-read-only'. (Bug#11010)
4627
4628 2012-03-16 Glenn Morris <rgm@gnu.org>
4629
4630 * view.el (view-buffer, view-buffer-other-window)
4631 (view-buffer-other-frame): Doc fixes re special mode-class.
4632
4633 * subr.el (eval-after-load): If named feature is provided not from
4634 a file, run after-load forms. (Bug#10946)
4635
4636 * calendar/calendar.el (calendar-insert-at-column):
4637 Handle non-unit-width characters a bit better. (Bug#10978)
4638
4639 2012-03-15 Chong Yidong <cyd@gnu.org>
4640
4641 * emacs-lisp/ring.el (ring-extend): New function.
4642 (ring-insert+extend): Extend the ring correctly (Bug#11019).
4643
4644 * comint.el (comint-read-input-ring)
4645 (comint-add-to-input-history): Grow comint-input-ring lazily.
4646
4647 2012-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
4648
4649 * progmodes/perl-mode.el (perl-syntax-propertize-special-constructs):
4650 Fix up parsing of multiline twoarg non-paired elements (bug#11014).
4651
4652 * imenu.el: Fix multiple inheritance breakage (bug#9199).
4653 (imenu-add-to-menubar): Don't add a redundant index.
4654 (imenu-update-menubar): Handle a dynamically composed keymap.
4655
4656 2012-03-13 Katsumi Yamaoka <yamaoka@jpl.org>
4657
4658 * mail/sendmail.el (mail-encode-header):
4659 Bind rfc2047-encode-encoded-words to nil.
4660
4661 2012-03-13 Glenn Morris <rgm@gnu.org>
4662
4663 * calendar/calendar.el (calendar-string-spread):
4664 Handle non-unit-width characters a bit better. (Bug#10978)
4665
4666 2012-03-13 Leo Liu <sdl.web@gmail.com>
4667
4668 * vc/vc-hg.el (vc-hg-working-revision): Rework to work with both
4669 directory and file as argument (Bug#10822).
4670
4671 2012-03-13 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
4672
4673 * progmodes/gdb-mi.el (gdb-invalidate-disassembly):
4674 For dynamically generated code, follow $PC.
4675 (gdb-disassembly-handler-custom): Handle no function name case.
4676
4677 2012-03-13 Tim Landscheidt <tim@tim-landscheidt.de> (tiny change)
4678
4679 * calendar/icalendar.el (icalendar-export-file, icalendar-import-file):
4680 * emulation/ws-mode.el (ws-query-replace):
4681 * sort.el (sort-regexp-fields):
4682 Fix missing trailing whitespace in interactive prompts. (Bug#11002)
4683
4684 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
4685
4686 * dabbrev.el: Fix cycle completion order (bug#10963).
4687 (dabbrev--last-obarray, dabbrev--last-completion-buffer): Remove.
4688 (dabbrev-completion): Don't use an obarray; provide
4689 a cycle-sort-function.
4690
4691 2012-03-12 Leo Liu <sdl.web@gmail.com>
4692
4693 * simple.el (kill-new): Use equal-including-properties for comparison.
4694 (kill-do-not-save-duplicates): Doc fix.
4695
4696 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
4697
4698 * dabbrev.el: Fix cycle completion (bug#10963).
4699 Use lexical binding and wrap to 80 columns.
4700 (dabbrev-completion): Delay computing the list of completions.
4701
4702 2012-03-12 Kenichi Handa <handa@m17n.org>
4703
4704 * international/quail.el (quail-insert-kbd-layout): Surround each
4705 row by LRO and PDF instead of inserting many LRMs. Pad the left
4706 and right of each non-spacing marks. Insert invisible space
4707 between lower and upper characters to prevent composition.
4708
4709 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
4710
4711 * minibuffer.el (minibuffer-complete): Don't get confused when the
4712 function is run twice via different commands (bug#10958).
4713 (complete-with-action): Fix docstring.
4714
4715 2012-03-12 Chong Yidong <cyd@gnu.org>
4716
4717 * nxml/nxml-mode.el (nxml-mode-map): Do not bind C-RET (Bug#6776).
4718 (nxml-completion-at-point-function): New function.
4719 (nxml-mode): Use it.
4720 (nxml-bind-meta-tab-to-complete-flag): Default to t.
4721
4722 * emacs-lisp/package.el (package-unpack, package-unpack-single):
4723 Load generated autoloads file before byte compiling (Bug#10970).
4724 (package--make-autoloads-and-compile): New helper fun.
4725
4726 2012-03-12 Christopher Schmidt <christopher@ch.ristopher.com>
4727
4728 * ibuffer.el (ibuffer-redisplay): Remove another gratuitous error.
4729
4730 2012-03-11 Michael Albinus <michael.albinus@gmx.de>
4731
4732 * autorevert.el (auto-revert-handler): Ensure, that
4733 file-readable-p is applied only for local files or in
4734 auto-revert-tail-mode.
4735
4736 2012-03-11 Andreas Schwab <schwab@linux-m68k.org>
4737
4738 * server.el (server-eval-at): Handle non-tcp connections.
4739 Decode result string.
4740
4741 * server.el (server-msg-size): New constant.
4742 (server-reply-print): New function.
4743 (server-eval-and-print): Use it.
4744 (server-eval-at): Use server-quote-arg and server-unquote-arg.
4745 Handle -print-nonl.
4746
4747 2012-03-11 Christopher Schmidt <christopher@ch.ristopher.com>
4748
4749 * ibuffer.el (ibuffer-redisplay): Remove gratuitous error
4750 (Bug#10987).
4751
4752 2012-03-11 Chong Yidong <cyd@gnu.org>
4753
4754 * simple.el (goto-line): Doc fix (Bug#9938).
4755
4756 * subr.el (save-window-excursion): Doc fix (Bug#9979).
4757
4758 * dabbrev.el (dabbrev--find-expansion): Update progress reporter
4759 when finished (Bug#10963).
4760
4761 2012-03-11 Martin Rudalics <rudalics@gmx.at>
4762
4763 * window.el (split-window-below): Fix bug in case where
4764 split-window-keep-point is nil (Bug#10971).
4765
4766 2012-03-11 Juri Linkov <juri@jurta.org>
4767
4768 * replace.el (replace-highlight): Set isearch-word to nil
4769 unconditionally. (Bug#10887)
4770
4771 2012-03-10 Eli Zaretskii <eliz@gnu.org>
4772
4773 * net/mairix.el (mairix-replace-invalid-chars): Rename from
4774 mairix-replace-illegal-chars; all callers changed. Don't remove
4775 ^, ~, and = characters: they are meaningful in mairix search specs.
4776 (mairix-widget-create-query): Add usage information about mairix
4777 search forms: negating words, searching for substrings, etc.
4778
4779 2012-03-10 Jae-hyeon Park <jae-hyeon.park@desy.de> (tiny change)
4780
4781 * international/fontset.el (font-encoding-alist): Add an entry for
4782 ksx1001 (Bug#5667).
4783
4784 2012-03-10 Richard Stallman <rms@gnu.org>
4785
4786 * mail/sendmail.el (mail-encode-header):
4787 Set rfc2047-encode-encoded-words.
4788
4789 * mail/mail-utils.el (mail-quote-printable): Quote multibyte chars.
4790
4791 * mail/rmail.el (rmail-buffers-swapped-p): Don't assume dead
4792 view buffer means not swapped.
4793 (rmail-view-buffer-kill-buffer-hook): Give buf name in error msg.
4794 (rmail-write-region-annotate): Error if real text has disappeared.
4795
4796 * epa-mail.el (epa-mail-encrypt): Bind inhibit-read-only.
4797
4798 2012-03-10 Chong Yidong <cyd@gnu.org>
4799
4800 * emulation/cua-rect.el (cua--init-rectangles):
4801 * emulation/cua-base.el (cua--init-keymaps):
4802 Add delete-forward-char to remappings (Bug#9666).
4803
4804 2012-03-10 Martin Rudalics <rudalics@gmx.at>
4805
4806 * speedbar.el (speedbar-unhighlight-one-tag-line):
4807 Avoid unhighlighting due to frame switching (Bug#10275).
4808
4809 2012-03-10 Chong Yidong <cyd@gnu.org>
4810
4811 * minibuffer.el (completion-in-region, completion-help-at-point):
4812 Give the completion field overlay a high priority (Bug#6830).
4813
4814 * dired.el (dired-goto-file): Recognize absolute file name
4815 listings (Bug#7126).
4816 (dired-goto-file-1): New helper function.
4817 (dired-toggle-read-only): Inhibit warnings.
4818
4819 2012-03-09 Michael Albinus <michael.albinus@gmx.de>
4820
4821 * net/dbus.el (dbus-property-handler): Return empty array if
4822 there are no properties.
4823
4824 2012-03-09 Leo Liu <sdl.web@gmail.com>
4825
4826 * savehist.el (savehist-printable): Stricter check for string
4827 value (Bug#10937).
4828
4829 2012-03-09 Eli Zaretskii <eliz@gnu.org>
4830
4831 * mail/smtpmail.el (smtpmail-send-it):
4832 Bind coding-system-for-write to *-unix, so that FCC files are kept in
4833 valid mbox format.
4834
4835 2012-03-09 Glenn Morris <rgm@gnu.org>
4836
4837 * files.el (dir-locals-find-file):
4838 Don't check result is regular, readable.
4839 (dir-locals-read-from-file): Demote errors.
4840
4841 2012-03-08 Eli Zaretskii <eliz@gnu.org>
4842
4843 * international/quail.el (quail-insert-kbd-layout):
4844 Insert invisible LRM characters before each character in a keyboard
4845 layout cell, to prevent their reordering by bidi display engine.
4846 For details, see the discussion in
4847 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00085.html.
4848
4849 2012-03-08 Alan Mackenzie <acm@muc.de>
4850
4851 * progmodes/cc-cmds.el (c-mark-function): Make it leave a mark at
4852 the starting position; make it extend the marked region when
4853 invoked repeatedly - all under appropriate circumstances.
4854 Fixes bugs #5525, #10906.
4855
4856 2012-03-08 Glenn Morris <rgm@gnu.org>
4857
4858 * files.el (locate-dominating-file, dir-locals-find-file):
4859 Undo 2012-03-06 change.
4860
4861 2012-03-07 Eli Zaretskii <eliz@gnu.org>
4862
4863 * international/quail.el (quail-help):
4864 Force bidi-paragraph-direction be left-to-right. See discussion in
4865 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00062.html
4866 for the reason.
4867
4868 2012-03-07 Michael Albinus <michael.albinus@gmx.de>
4869
4870 Avoid superfluous registering of signals. (Bug#10807)
4871
4872 * notifications.el (notifications-on-action-object)
4873 (notifications-on-close-object): New defvars.
4874 (notifications-on-action-signal, notifications-on-closed-signal):
4875 Unregister the signal if not needed any longer.
4876 (notifications-notify): Register `notifications-action-signal' or
4877 `notifications-closed-signal', if :on-action or :on-close has been
4878 passed as argument.
4879
4880 2012-03-07 Chong Yidong <cyd@gnu.org>
4881
4882 * cus-start.el: Avoid x-select-enable-clipboard-manager warning on
4883 non-X platforms.
4884
4885 2012-03-06 Glenn Morris <rgm@gnu.org>
4886
4887 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
4888 (x-disown-selection-internal, x-get-selection-internal):
4889 Doc fix (add arglist signatures). (Bug#10783)
4890
4891 2012-03-06 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
4892
4893 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
4894 Handle breakpoints with no "type".
4895
4896 2012-03-06 Glenn Morris <rgm@gnu.org>
4897
4898 * files.el (locate-dominating-file): Add optional predicate argument.
4899 (dir-locals-find-file): Make use of above change.
4900
4901 2012-03-06 Thien-Thi Nguyen <ttn@gnuvola.org>
4902
4903 * info.el (Info-insert-dir): Also try "dir.gz".
4904
4905 2012-03-06 Glenn Morris <rgm@gnu.org>
4906
4907 * files.el (dir-locals-find-file):
4908 Ignore non-readable or non-regular files. (Bug#10928)
4909
4910 * files.el (locate-dominating-file): Doc fix.
4911
4912 2012-03-06 Adam Spiers <emacs@adamspiers.org> (tiny change)
4913
4914 * calendar/calendar.el (calendar-set-mode-line):
4915 `getenv' returns a string. (Bug#10951)
4916
4917 2012-03-05 Leo Liu <sdl.web@gmail.com>
4918
4919 * simple.el (backward-delete-char-untabify): Constrain point to
4920 field (Bug#10939).
4921
4922 * eshell/em-cmpl.el (eshell-cmpl-initialize): Fix shift-tab key.
4923
4924 2012-03-05 Chong Yidong <cyd@gnu.org>
4925
4926 * simple.el (count-words): If called from Lisp, return the word
4927 count, for symmetry with `count-lines'. Arglist changed.
4928 (count-words--message): Args changed. Consolidate counting code
4929 from count-words and count-words-region.
4930 (count-words-region): Caller changed.
4931 (count-lines-region): Make it an obsolete alias.
4932
4933 2012-03-04 Tassilo Horn <tassilo@member.fsf.org>
4934
4935 * saveplace.el (save-place-to-alist)
4936 (save-place-ignore-files-regexp): Allow value nil to disable this
4937 feature.
4938
4939 2012-03-04 Chong Yidong <cyd@gnu.org>
4940
4941 * faces.el (face-spec-reset-face): For the default face, reset the
4942 attributes to default values (Bug#10748).
4943
4944 2012-03-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
4945
4946 * mail/emacsbug.el (report-emacs-bug-hook): Fix up thinko in
4947 previous patch: Check `message-send-mail-function', and not the
4948 default function (bug#10897).
4949
4950 2012-03-04 Michael Albinus <michael.albinus@gmx.de>
4951
4952 * notifications.el (notifications-on-action-signal)
4953 (notifications-on-closed-signal): Check for unique service name of
4954 incoming event. Fix error in removing entry.
4955 (top): Register for signals with wildcard service name.
4956 (notifications-notify): Use daemon unique service name for map entries.
4957
4958 2012-03-04 Chong Yidong <cyd@gnu.org>
4959
4960 * cus-start.el: Make x-select-enable-clipboard-manager customizable.
4961
4962 2012-03-04 Glenn Morris <rgm@gnu.org>
4963
4964 * abbrev.el (copy-abbrev-table, abbrev-table-p)
4965 (abbrev-minor-mode-table-alist, define-abbrev, abbrev-insert)
4966 (expand-abbrev, define-abbrev-table): Doc fixes.
4967
4968 2012-03-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
4969
4970 * mail/emacsbug.el (report-emacs-bug-hook): Look at the value of
4971 `message-default-send-mail-function' and not `send-mail-function'
4972 when doing the prompting for `sendmail-query-once' before sending
4973 in Message buffers (bug#10897).
4974
4975 * net/tls.el (open-tls-stream): Don't set the dont-query-on-exit flag.
4976 This is inconsistent with all the other stream functions, which leave
4977 the setting up to the higher levels (if so wanted) (bug#10931).
4978
4979 2012-03-02 Alan Mackenzie <acm@muc.de>
4980
4981 Depessimize the handling of very large macros.
4982
4983 * progmodes/cc-engine.el (c-macro-cache, c-macro-cache-start-pos):
4984 (c-macro-cache-syntactic): New variables to implement a one
4985 element macro cache.
4986 (c-invalidate-macro-cache): New function.
4987 (c-beginning-of-macro, c-end-of-macro, c-syntactic-end-of-macro):
4988 Adapt to use the new cache.
4989 (c-state-safe-place): Use better the cache of safe positions.
4990 (c-state-semi-nonlit-pos-cache)
4991 (c-state-semi-nonlit-pos-cache-limit):
4992 New variables for...
4993 (c-state-semi-safe-place): New function. Here, in a macro is "safe".
4994 (c-invalidate-state-cache-1): New stuff for c-state-semi-safe-place.
4995 (c-in-literal, c-literal-limits, c-determine-limit-get-base):
4996 Use c-state-semi-safe-place.
4997
4998 * progmodes/cc-langs.el (c-get-state-before-change-functions):
4999 Add c-invalidate-macro-cache to the C, C++, Obj entries.
5000
5001 2012-03-02 Michael Albinus <michael.albinus@gmx.de>
5002
5003 * jka-compr.el (jka-compr-call-process):
5004 Apply `file-accessible-directory-p' only when the default directory is
5005 not remote.
5006
5007 2012-03-01 Michael Albinus <michael.albinus@gmx.de>
5008
5009 * files.el (file-equal-p): Fix docstring. Avoid unnecessary
5010 access of FILE2, if FILE1 does not exist.
5011
5012 * net/tramp-sh.el (tramp-remote-process-environment): Add "PAGER=\"\"".
5013 Reported by Robert Lupton the Good <rhl@astro.princeton.edu>.
5014
5015 * vc/vc-git.el (vc-git--call): Enable `inhibit-null-byte-detection'.
5016 Add "PAGER=" to `process-environment'.
5017
5018 2012-03-01 Michael R. Mauger <mmaug@yahoo.com>
5019
5020 * progmodes/sql.el: Bug fix
5021 (sql-get-login-ext): Save login values in globals.
5022 (sql-get-login): Use new version of `sql-get-login-ext'.
5023 (sql-interactive-mode): Set global `sql-connection' to nil.
5024 (sql-connect): Set global values for connection.
5025 (sql-product-interactive): Save global values as buffer local.
5026
5027 2012-02-29 Leo Liu <sdl.web@gmail.com>
5028
5029 * abbrev.el (define-abbrevs): Reset sys to nil.
5030
5031 2012-02-28 Thierry Volpiatto <thierry.volpiatto@gmail.com>
5032
5033 * files.el (file-equal-p): Rename from `files-equal-p'.
5034 Return nil when one or both files don't exist.
5035 (file-subdir-of-p): Now only top directory must exists,
5036 return nil if it doesn't.
5037 (copy-directory): No need to test with `file-subdir-of-p' after
5038 creating dir.
5039 * net/tramp.el (tramp-file-name-for-operation): Rename `files-equal-p'
5040 to `file-equal-p'.
5041
5042 2012-02-28 Glenn Morris <rgm@gnu.org>
5043
5044 * shell.el (shell-mode):
5045 * progmodes/vhdl-mode.el (wildcard-to-regexp, file-expand-wildcards):
5046 * play/landmark.el (landmark-font-lock-face-O):
5047 * play/handwrite.el (handwrite):
5048 * play/gomoku.el (gomoku-O):
5049 * net/browse-url.el (browse-url-browser-display):
5050 * international/mule.el (define-charset):
5051 * htmlfontify.el (hfy-etags-cmd, hfy-face-attr-for-class):
5052 * filesets.el (filesets-find-file-delay):
5053 * eshell/em-xtra.el (eshell-xtra):
5054 * eshell/em-unix.el (eshell-grep):
5055 * emulation/viper.el (viper-mode):
5056 * emacs-lisp/regexp-opt.el (regexp-opt-group):
5057 * emacs-lisp/easymenu.el (easy-menu-define):
5058 * calendar/timeclock.el (timeclock-use-display-time):
5059 * bs.el (bs-mode):
5060 * bookmark.el (bookmark-save-flag):
5061 Doc fix (standardize possessive apostrophe usage).
5062
5063 2012-02-27 Chong Yidong <cyd@gnu.org>
5064
5065 * emulation/viper-cmd.el (viper-intercept-ESC-key):
5066 Fix key-binding lookup for ESC key (Bug#9146).
5067
5068 * font-lock.el (font-lock-specified-p): Rename from
5069 font-lock-spec-present. Callers changed.
5070
5071 2012-02-27 Daniel Hackney <dan@haxney.org>
5072
5073 * emacs-lisp/package.el (package-compute-transaction):
5074 Handle holding a package version to t in package-load-list.
5075
5076 2012-02-26 Michael Albinus <michael.albinus@gmx.de>
5077
5078 * net/tramp.el (tramp-inodes, tramp-devices): Initialize with 0.
5079 (tramp-get-inode, tramp-get-device): Use cached values.
5080
5081 2012-02-26 Alan Mackenzie <acm@muc.de>
5082
5083 Check there is a font-lock specification before doing initial
5084 fontification.
5085
5086 * font-core.el (font-lock-mode): Move the conditional from
5087 :after-hook to font-lock-initial-fontify.
5088 (font-lock-default-function): Move the check for a specification
5089 to font-lock-spec-present.
5090
5091 * font-lock.el (font-lock-initial-fontify): Call ...
5092 (font-lock-spec-present): New function.
5093
5094 2012-02-26 Jim Blandy <jimb@red-bean.com>
5095
5096 * progmodes/gdb-mi.el (gdb-mi-quote): New function.
5097 (gdb-send): Apply it to the operand of the '-interpreter-exec
5098 console' command, so that we can pass arguments with (say) quotes
5099 in them. Store exact string sent in gdb-debug-log (Bug#10765).
5100
5101 2012-02-26 Chong Yidong <cyd@gnu.org>
5102
5103 * help-fns.el (describe-function-1): Clarify description of
5104 remapping (Bug#10844).
5105
5106 * files.el (files-equal-p): Doc fix.
5107 (file-subdir-of-p): Doc fix. Convert loop macro to plain Lisp,
5108 and quit the loop once a mismatch is found.
5109
5110 2012-02-25 Juanma Barranquero <lekktu@gmail.com>
5111
5112 * bs.el (bs--show-with-configuration): Don't throw an error
5113 if the window cannot be split; otherwise, subsequent calls to
5114 bs-show fail, restoring a stale window config. (Bug#10882)
5115
5116 2012-02-25 Jan Djärv <jan.h.d@swipnet.se>
5117
5118 * term/ns-win.el (global-map): Bind ns-drag-file to
5119 ns-find-file (Bug#5855, Bug#10050).
5120
5121 2012-02-25 Andreas Schwab <schwab@linux-m68k.org>
5122
5123 * calendar/parse-time.el (parse-time-string): Allow extractor to
5124 return nil.
5125
5126 2012-02-25 Michael Albinus <michael.albinus@gmx.de>
5127
5128 * net/tramp.el (tramp-file-name-for-operation):
5129 Add `files-equal-p' and `file-subdir-of-p'.
5130
5131 * net/tramp-sh.el (tramp-sh-handle-copy-directory):
5132 * net/tramp-smb.el (tramp-smb-handle-copy-directory):
5133 Add COPY-CONTENTS argument.
5134
5135 2012-02-25 Chong Yidong <cyd@gnu.org>
5136
5137 Add custom groups for VC backends, for consistency with vc-bzr.
5138
5139 * vc/vc-arch.el (vc-arch):
5140 * vc/vc-cvs.el (vc-cvs):
5141 * vc/vc-git.el (vc-git):
5142 * vc/vc-hg.el (vc-hg):
5143 * vc/vc-mtn.el (vc-mtn):
5144 * vc/vc-rcs.el (vc-rcs):
5145 * vc/vc-sccs.el (vc-sccs):
5146 * vc/vc-svn.el (vc-svn): New customization group (Bug#10871).
5147 All relevant defcustoms reassigned.
5148
5149 2012-02-25 Chong Yidong <cyd@gnu.org>
5150
5151 * newcomment.el (comment-styles): Add autoload (Bug#10868).
5152
5153 * term/x-win.el (x-initialize-window-system): Reduce default for
5154 x-selection-timeout to 5 seconds (Bug#8869).
5155
5156 2012-02-24 Thierry Volpiatto <thierry.volpiatto@gmail.com>
5157
5158 * files.el (files-equal-p, file-subdir-of-p): New functions.
5159 (copy-directory): Error when trying to copy a directory on itself.
5160 Add missing copy-contents arg to tramp handler.
5161 * dired-aux.el (dired-copy-file-recursive): Same.
5162 (dired-create-files): Modify destination when source is equal to
5163 dest when copying files.
5164 Return also when dest is a subdir of source. (Bug#10489)
5165
5166 2012-02-24 Michael Albinus <michael.albinus@gmx.de>
5167
5168 * net/ange-ftp.el (ange-ftp-parse-netrc): Suppress comment lines.
5169 (Bug#10874)
5170
5171 2012-02-23 Alan Mackenzie <acm@muc.de>
5172
5173 * emacs-lisp/easy-mmode.el (define-minor-mode): Add extra
5174 parameter "after-hook:" to allow the expansion to run code after
5175 the execution of the mode hooks.
5176
5177 * font-lock.el (font-lock-initial-fontify): New function extracted
5178 from font-lock-mode-internal.
5179
5180 * font-core.el (font-lock-mode): Call font-lock-initial-fontify in
5181 :after-hook.
5182
5183 2012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
5184
5185 * minibuffer.el: Make sure cycling is reset upon edit with icomplete.el.
5186 (completion--cache-all-sorted-completions): New function.
5187 (completion-all-sorted-completions): Use it.
5188 (completion--do-completion, minibuffer-force-complete):
5189 Use it to re-instate the flush hook.
5190
5191 * icomplete.el (icomplete-completions): Replace last fix with a better
5192 one (bug#10850).
5193
5194 2012-02-23 Dmitry Gutov <dgutov@yandex.ru>
5195
5196 * emacs-lisp/lisp.el (beginning-of-defun-raw): Don't call end-of-defun
5197 when it might call us back infinitely (bug#10797).
5198
5199 2012-02-23 Glenn Morris <rgm@gnu.org>
5200
5201 * minibuffer.el (completion-category-overrides): Doc fix.
5202
5203 2012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
5204
5205 * minibuffer.el (completion-table-with-context): Fix inf-loop.
5206 Reported by Aaron S. Hawley <aaron.s.hawley@gmail.com>.
5207
5208 2012-02-23 Glenn Morris <rgm@gnu.org>
5209
5210 * emacs-lisp/authors.el (authors-aliases, authors-fixed-case)
5211 (authors-obsolete-files-regexps, authors-ignored-files)
5212 (authors-ambiguous-files, authors-renamed-files-alist):
5213 Add more entries.
5214
5215 2012-02-23 Juri Linkov <juri@jurta.org>
5216
5217 * isearch.el (isearch-occur): Sync interactive spec with occur's
5218 new feature in `occur-read-primary-args'. Doc fix. (Bug#10705)
5219
5220 * replace.el (occur-menu-map): Add menu item for `occur-edit-mode'.
5221
5222 2012-02-22 Juri Linkov <juri@jurta.org>
5223
5224 * international/mule-cmds.el (read-char-by-name): Use \` and \'.
5225 (ucs-insert): Doc fix. Check for hex digits in the string.
5226 Don't display `nil' in the error message. (Bug#10857)
5227
5228 2012-02-22 Alan Mackenzie <acm@muc.de>
5229
5230 * progmodes/cc-mode.el: Revert change #2012-02-06T22:08:41Z!larsi@gnus.org from 2012-02-06.
5231
5232 2012-02-22 Glenn Morris <rgm@gnu.org>
5233
5234 * ffap.el (ffap-c-path):
5235 * man.el (Man-header-file-path): Handle multiarch. (Bug#10702)
5236
5237 2012-02-22 Chong Yidong <cyd@gnu.org>
5238
5239 * custom.el (load-theme): Doc fix.
5240
5241 2012-02-22 Glenn Morris <rgm@gnu.org>
5242
5243 * dired-x.el (dired-guess-shell-alist-default):
5244 Remove escape sequences from nroff output. (Bug#172)
5245
5246 2012-02-21 Glenn Morris <rgm@gnu.org>
5247
5248 * vc/emerge.el (emerge-defvar-local):
5249 Set `permanent-local' property rather than unused `preserved'.
5250
5251 * textmodes/picture.el (picture-delete-char): New alias.
5252 (picture-mode-map): Use it. (Bug#10860)
5253 (picture-mode): Doc fix.
5254
5255 2012-02-21 Juanma Barranquero <lekktu@gmail.com>
5256
5257 * newcomment.el (uncomment-region-default): Remove unused binding.
5258
5259 2012-02-21 Glenn Morris <rgm@gnu.org>
5260
5261 * textmodes/picture.el (picture-motion, picture-motion-reverse)
5262 (picture-self-insert, picture-tab-chars): Doc fix.
5263 (picture-mode-map): Fix C-a, C-e.
5264
5265 2012-02-20 Glenn Morris <rgm@gnu.org>
5266
5267 * emacs-lisp/authors.el (authors-aliases): Add another entry.
5268
5269 2012-02-20 Leo Liu <sdl.web@gmail.com>
5270
5271 * icomplete.el (icomplete-completions): Check FROM arg before
5272 passing to substring (Bug#10850).
5273
5274 2012-02-19 Chong Yidong <cyd@gnu.org>
5275
5276 * comint.el: Require ansi-color.
5277 (comint-output-filter-functions): Add ansi-color-process-output.
5278
5279 * ansi-color.el: Don't set comint-output-filter-functions; it is
5280 now in the initial value defined in comint.el.
5281 (ansi-color-apply-face-function): New variable.
5282 (ansi-color-apply-on-region): Use it.
5283 (ansi-color-apply-overlay-face): New function.
5284
5285 * shell.el (shell): No need to require ansi-color.
5286 (shell-mode): Use ansi-color-apply-face-function to highlight
5287 color escapes using font-lock-face property (Bug#10835).
5288
5289 2012-02-19 Chong Yidong <cyd@gnu.org>
5290
5291 * vc/ediff-init.el (ediff-strip-mode-line-format): Handle non-list
5292 mode-line formats (Bug#10839).
5293
5294 2012-02-18 Glenn Morris <rgm@gnu.org>
5295
5296 * mail/rmail.el (rmail-dont-reply-to-names): Mark as obsolete.
5297
5298 * mail/undigest.el (unforward-rmail-message): Doc fix.
5299
5300 * saveplace.el (save-place-ignore-files-regexp): Add :version.
5301
5302 2012-02-18 Eli Zaretskii <eliz@gnu.org>
5303
5304 * international/characters.el (script-list): Sync with the latest
5305 Unicode Character Database.
5306
5307 2012-02-18 Andreas Schwab <schwab@linux-m68k.org>
5308
5309 * international/titdic-cnv.el: Remove duplicate coding tag.
5310 * language/cham.el: Likewise.
5311 * language/tai-viet.el: Likewise.
5312
5313 2012-02-18 Glenn Morris <rgm@gnu.org>
5314
5315 * calendar/cal-menu.el (cal-menu-diary-menu, cal-menu-goto-menu):
5316 * calendar/calendar.el (diary-file, diary-bahai-entry-symbol)
5317 (calendar-bahai-all-holidays-flag, calendar-other-dates):
5318 * calendar/diary-lib.el (diary-abbreviated-year-flag):
5319 * calendar/holidays.el (holiday-bahai-holidays)
5320 (calendar-holidays, list-holidays):
5321 Use utf-8 Bahá'í in doc-strings, menus, etc.
5322
5323 2012-02-17 Tassilo Horn <tassilo@member.fsf.org>
5324
5325 * saveplace.el (save-place-ignore-files-regexp): New variable
5326 allowing for excluding files from saving their location of point.
5327 The default value matches the temporary commit message editing
5328 files from Git, SVN, Bazaar, and Mercurial.
5329 (save-place-to-alist): Use it.
5330
5331 2012-02-17 Lawrence Mitchell <wence@gmx.li>
5332 Stefan Monnier <monnier@iro.umontreal.ca>
5333
5334 * newcomment.el (uncomment-region-default): Don't leave extra space
5335 when an arg is provided (bug#8150).
5336
5337 2012-02-17 Teodor Zlatanov <tzz@lifelogs.com>
5338
5339 * net/gnutls.el (gnutls-trustfiles): Fix Cygwin bundle location.
5340
5341 2012-02-17 Glenn Morris <rgm@gnu.org>
5342
5343 * net/socks.el: Require network-stream. (Bug#10599)
5344
5345 2012-02-17 Kenichi Handa <handa@m17n.org>
5346
5347 * international/charprop.el:
5348 * international/uni-name.el:
5349 * international/uni-old-name.el:
5350 * international/uni-comment.el: Regenerate.
5351
5352 2012-02-16 Glenn Morris <rgm@gnu.org>
5353
5354 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits):
5355 Interactively in calendar buffer, give an error if not on a date.
5356
5357 2012-02-15 Glenn Morris <rgm@gnu.org>
5358
5359 * shell.el (shell-delimiter-argument-list):
5360 Revert 2011-02-17 change. (Bug#8027)
5361
5362 2012-02-15 Chong Yidong <cyd@gnu.org>
5363
5364 * minibuffer.el (completion-at-point-functions): Doc fix.
5365
5366 * custom.el (defcustom): Doc fix; note use of defvar.
5367
5368 2012-02-15 Glenn Morris <rgm@gnu.org>
5369
5370 * mail/smtpmail.el (smtpmail-smtp-user, smtpmail-stream-type):
5371 Doc fixes.
5372
5373 2012-02-14 Glenn Morris <rgm@gnu.org>
5374
5375 * mail/smtpmail.el (smtpmail-query-smtp-server): Give it a doc.
5376
5377 2012-02-14 Lars Ingebrigtsen <larsi@gnus.org>
5378
5379 * mail/smtpmail.el (smtpmail-query-smtp-server): Fix typo in the
5380 way the ports list is computed.
5381 (smtpmail-query-smtp-server): Prompt the user for a port number if
5382 we can't connect to any of the standard ports (bug#10810).
5383
5384 2012-02-14 Teodor Zlatanov <tzz@lifelogs.com>
5385
5386 * net/gnutls.el (gnutls-trustfiles): Add Cygwin location.
5387
5388 2012-02-13 Glenn Morris <rgm@gnu.org>
5389
5390 * minibuffer.el (read-file-name): Doc fix. (Bug#10798)
5391
5392 2012-02-13 Teodor Zlatanov <tzz@lifelogs.com>
5393
5394 * net/gnutls.el (gnutls-trustfiles): New variable.
5395 (gnutls-negotiate): Use it.
5396
5397 2012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
5398
5399 * simple.el (mail-user-agent): Mention that `gnus-user-agent' only
5400 does its stuff if Gnus is running.
5401
5402 2012-02-13 Alan Mackenzie <acm@muc.de>
5403
5404 Fix a loop in c-set-fl-decl-start.
5405
5406 * progmodes/cc-engine.el (c-set-fl-decl-start): Add a check that
5407 c-backward-syntactic-ws actually moves backwards.
5408
5409 2012-02-13 Leo Liu <sdl.web@gmail.com>
5410
5411 * net/rcirc.el (rcirc-markup-attributes): Move point to the
5412 beginning so that all \C-o chars are removed.
5413
5414 2012-02-12 Teodor Zlatanov <tzz@lifelogs.com>
5415
5416 * net/gnutls.el (gnutls-algorithm-priority): Add missing :group tag.
5417
5418 2012-02-12 Alan Mackenzie <acm@muc.de>
5419
5420 Fix infinite loop with long macros.
5421 * progmodes/cc-engine.el (c-state-safe-place): Handle macros properly.
5422
5423 2012-02-12 Chong Yidong <cyd@gnu.org>
5424
5425 * window.el (display-buffer): Doc fix (Bug#10785).
5426
5427 2012-02-12 Glenn Morris <rgm@gnu.org>
5428
5429 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
5430 (x-disown-selection-internal, x-get-selection-internal):
5431 Sync docs with the xselect.c versions.
5432
5433 * allout-widgets.el: Add missing license notice.
5434
5435 2012-02-11 Glenn Morris <rgm@gnu.org>
5436
5437 * select.el (x-get-selection-internal, x-own-selection-internal)
5438 (x-disown-selection-internal):
5439 * x-dnd.el (x-get-selection-internal): Update declarations.
5440
5441 * vc/log-view.el (vc-diff-internal): Remove unneeded declaration.
5442
5443 * window.el (window-sides-slots):
5444 * tool-bar.el (tool-bar-position):
5445 * term/xterm.el (xterm-extra-capabilities):
5446 * ses.el (ses-self-reference-early-detection):
5447 * progmodes/verilog-mode.el (verilog-auto-declare-nettype)
5448 (verilog-auto-wire-type)
5449 (verilog-auto-delete-trailing-whitespace)
5450 (verilog-auto-reset-blocking-in-non, verilog-auto-inst-sort)
5451 (verilog-auto-tieoff-declaration):
5452 * progmodes/sql.el (sql-login-hook, sql-ansi-statement-starters)
5453 (sql-oracle-statement-starters, sql-oracle-scan-on):
5454 * progmodes/prolog.el (prolog-align-comments-flag)
5455 (prolog-indent-mline-comments-flag, prolog-object-end-to-0-flag)
5456 (prolog-left-indent-regexp, prolog-paren-indent-p)
5457 (prolog-paren-indent, prolog-parse-mode, prolog-keywords)
5458 (prolog-types, prolog-mode-specificators)
5459 (prolog-determinism-specificators, prolog-directives)
5460 (prolog-electric-newline-flag, prolog-hungry-delete-key-flag)
5461 (prolog-electric-dot-flag)
5462 (prolog-electric-dot-full-predicate-template)
5463 (prolog-electric-underscore-flag, prolog-electric-tab-flag)
5464 (prolog-electric-if-then-else-flag, prolog-electric-colon-flag)
5465 (prolog-electric-dash-flag, prolog-old-sicstus-keys-flag)
5466 (prolog-program-switches, prolog-prompt-regexp)
5467 (prolog-debug-on-string, prolog-debug-off-string)
5468 (prolog-trace-on-string, prolog-trace-off-string)
5469 (prolog-zip-on-string, prolog-zip-off-string)
5470 (prolog-use-standard-consult-compile-method-flag)
5471 (prolog-use-prolog-tokenizer-flag, prolog-imenu-flag)
5472 (prolog-imenu-max-lines, prolog-info-predicate-index)
5473 (prolog-underscore-wordchar-flag, prolog-use-sicstus-sd)
5474 (prolog-char-quote-workaround):
5475 * progmodes/cc-vars.el (c-defun-tactic):
5476 * net/tramp.el (tramp-encoding-command-interactive)
5477 (tramp-local-end-of-line):
5478 * net/soap-client.el (soap-client):
5479 * net/netrc.el (netrc-file):
5480 * net/gnutls.el (gnutls):
5481 * minibuffer.el (completion-category-overrides)
5482 (completion-cycle-threshold)
5483 (completion-pcm-complete-word-inserts-delimiters):
5484 * man.el (Man-name-local-regexp):
5485 * mail/feedmail.el (feedmail-display-full-frame):
5486 * international/characters.el (glyphless-char-display-control):
5487 * eshell/em-ls.el (eshell-ls-date-format):
5488 * emacs-lisp/cl-indent.el (lisp-lambda-list-keyword-alignment)
5489 (lisp-lambda-list-keyword-parameter-indentation)
5490 (lisp-lambda-list-keyword-parameter-alignment):
5491 * doc-view.el (doc-view-image-width, doc-view-unoconv-program):
5492 * dired-x.el (dired-omit-verbose):
5493 * cus-theme.el (custom-theme-allow-multiple-selections):
5494 * calc/calc.el (calc-highlight-selections-with-faces)
5495 (calc-lu-field-reference, calc-lu-power-reference)
5496 (calc-note-threshold):
5497 * battery.el (battery-mode-line-limit):
5498 * arc-mode.el (archive-7z-extract, archive-7z-expunge)
5499 (archive-7z-update):
5500 * allout.el (allout-prefixed-keybindings)
5501 (allout-unprefixed-keybindings)
5502 (allout-inhibit-auto-fill-on-headline)
5503 (allout-flattened-numbering-abbreviation):
5504 * allout-widgets.el (allout-widgets-auto-activation)
5505 (allout-widgets-icons-dark-subdir)
5506 (allout-widgets-icons-light-subdir, allout-widgets-icon-types)
5507 (allout-widgets-theme-dark-background)
5508 (allout-widgets-theme-light-background)
5509 (allout-widgets-item-image-properties-emacs)
5510 (allout-widgets-item-image-properties-xemacs)
5511 (allout-widgets-run-unit-tests-on-load)
5512 (allout-widgets-time-decoration-activity)
5513 (allout-widgets-hook-error-post-time)
5514 (allout-widgets-track-decoration):
5515 Add missing :version tags to new defcustoms and defgroups.
5516
5517 * progmodes/sql.el (sql-ansi-statement-starters)
5518 (sql-oracle-statement-starters): Add custom type.
5519
5520 * progmodes/prolog.el: Remove leading '*' from defcustom docs.
5521 (prolog-system-version): Give it a type.
5522
5523 2012-02-11 Eli Zaretskii <eliz@gnu.org>
5524
5525 * term/pc-win.el (x-select-text, x-selection-owner-p)
5526 (x-own-selection-internal, x-disown-selection-internal)
5527 (x-get-selection-internal): Sync doc strings and argument lists
5528 with xselect.c, common-win.el and x-win.el. (Bug#10783)
5529
5530 2012-02-11 Leo Liu <sdl.web@gmail.com>
5531
5532 * progmodes/python.el (python-end-of-statement): Fix infinite
5533 loop. (Bug#10788)
5534
5535 2012-02-10 Glenn Morris <rgm@gnu.org>
5536
5537 * international/mule-cmds.el (unify-8859-on-encoding-mode)
5538 (unify-8859-on-decoding-mode): Properly mark as obsolete.
5539
5540 2012-02-10 Lars Ingebrigtsen <larsi@gnus.org>
5541
5542 * mail/emacsbug.el (report-emacs-bug-hook): Query the user first
5543 about SMTP before checking the From header.
5544
5545 * mail/sendmail.el (sendmail-query-user-about-smtp): Refactor out
5546 into own function for reuse by emacsbug.el.
5547
5548 2012-02-10 Leo Liu <sdl.web@gmail.com>
5549
5550 * subr.el (condition-case-unless-debug): Rename from
5551 condition-case-no-debug. All callers changed.
5552 (with-demoted-errors): Fix caller.
5553
5554 * vc/diff-mode.el (diff-auto-refine-mode, diff-hunk):
5555 * nxml/rng-valid.el (rng-do-some-validation):
5556 * emacs-lisp/package.el (package-refresh-contents)
5557 (package-menu-execute):
5558 * desktop.el (desktop-create-buffer):
5559 * font-lock.el (lisp-font-lock-keywords-2): Caller changed.
5560
5561 2012-02-10 Glenn Morris <rgm@gnu.org>
5562
5563 * textmodes/bibtex.el:
5564 Add missing :version tags for new/changed defcustoms.
5565
5566 * files.el (remote-file-name-inhibit-cache): Doc fixes.
5567
5568 2012-02-09 Lars Ingebrigtsen <larsi@rusty>
5569
5570 * mail/smtpmail.el (smtpmail-user-mail-address): New function.
5571 (smtpmail-via-smtp): Use it, or fall back on the From address.
5572 (smtpmail-send-it): Ditto.
5573
5574 2012-02-09 Stefan Monnier <monnier@iro.umontreal.ca>
5575
5576 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
5577 Don't fallback on byte-compile-defvar. Optimize (defvar foo) away.
5578 (byte-compile-tmp-var): New const.
5579 (byte-compile-defvar): Use it to minimize .elc size.
5580 Just use `defvar' rather than simulate it (bug#10761).
5581
5582 2012-02-09 Glenn Morris <rgm@gnu.org>
5583
5584 * files.el (rename-uniquely): Doc fix. (Bug#3806)
5585
5586 * progmodes/cc-guess.el (c-guess-offset-threshold, c-guess-region-max):
5587 Add :version tags.
5588
5589 * progmodes/compile.el (compilation-error-screen-columns)
5590 (compilation-first-column, compilation-filter-start): Doc fixes.
5591
5592 * vc/log-view.el (log-view-toggle-entry-display):
5593 * vc/vc.el (vc-merge, vc-pull): Doc fixes.
5594
5595 * mail/emacsbug.el (report-emacs-bug-can-use-osx-open)
5596 (report-emacs-bug-can-use-xdg-email):
5597 (report-emacs-bug-insert-to-mailer): Doc fixes.
5598 (report-emacs-bug): Message fix.
5599
5600 * net/browse-url.el (browse-url-can-use-xdg-open)
5601 (browse-url-xdg-open): Doc fixes.
5602
5603 * electric.el (electric-indent-mode, electric-pair-mode)
5604 (electric-layout-rules, electric-layout-mode): Doc fixes.
5605 (electric-pair-pairs, electric-pair-skip-self): Add :version tags.
5606
5607 2012-02-08 Martin Rudalics <rudalics@gmx.at>
5608
5609 * server.el (server-unselect-display): Don't inadvertently kill
5610 the current buffer. (Bug#10729)
5611
5612 2012-02-08 Glenn Morris <rgm@gnu.org>
5613
5614 * progmodes/sql.el (sql-port, sql-connection-alist, sql-list-all)
5615 (sql-list-table): Doc fixes.
5616
5617 * image-mode.el (image-transform-minor-mode-map, image-transform-mode):
5618 Comment out (does nothing).
5619
5620 * completion.el (dynamic-completion-mode):
5621 * dirtrack.el (dirtrack-debug-mode):
5622 * electric.el (electric-layout-mode):
5623 * epa-mail.el (epa-mail-mode, epa-global-mail-mode):
5624 * face-remap.el (text-scale-mode, buffer-face-mode):
5625 * iimage.el (iimage-mode):
5626 * image-mode.el (image-transform-mode):
5627 * minibuffer.el (completion-in-region-mode):
5628 * scroll-lock.el (scroll-lock-mode):
5629 * simple.el (next-error-follow-minor-mode):
5630 * tar-mode.el (tar-subfile-mode):
5631 * tooltip.el (tooltip-mode):
5632 * vcursor.el (vcursor-use-vcursor-map):
5633 * wid-browse.el (widget-minor-mode):
5634 * emulation/tpu-edt.el (tpu-edt-mode):
5635 * emulation/tpu-extras.el (tpu-cursor-free-mode):
5636 * international/iso-ascii.el (iso-ascii-mode):
5637 * language/thai-util.el (thai-word-mode):
5638 * mail/supercite.el (sc-minor-mode):
5639 * net/goto-addr.el (goto-address-mode):
5640 * net/rcirc.el (rcirc-multiline-minor-mode, rcirc-track-minor-mode):
5641 * progmodes/cwarn.el (cwarn-mode):
5642 * progmodes/flymake.el (flymake-mode):
5643 * progmodes/glasses.el (glasses-mode):
5644 * progmodes/hideshow.el (hs-minor-mode):
5645 * progmodes/pascal.el (pascal-outline-mode):
5646 * textmodes/enriched.el (enriched-mode):
5647 * vc/smerge-mode.el (smerge-mode):
5648 Doc fixes (minor mode argument).
5649
5650 2012-02-07 Eli Zaretskii <eliz@gnu.org>
5651
5652 * ls-lisp.el (ls-lisp-sanitize): New function.
5653 (ls-lisp-insert-directory): Use it to fix or remove any elements
5654 in file-alist with missing attributes. (Bug#4673)
5655
5656 2012-02-07 Alan Mackenzie <acm@muc.de>
5657
5658 Fix spurious recognition of c-in-knr-argdecl.
5659
5660 * progmodes/cc-engine.el (c-in-knr-argdecl): Check for '=' in a
5661 putative K&R region.
5662
5663 2012-02-07 Alan Mackenzie <acm@muc.de>
5664
5665 * progmodes/cc-engine.el (c-forward-objc-directive):
5666 Prevent looping in "#pragma mark @implementation".
5667
5668 2012-02-07 Michael Albinus <michael.albinus@gmx.de>
5669
5670 * notifications.el (notifications-on-closed-signal): Make `reason'
5671 optional. (Bug#10744)
5672
5673 2012-02-07 Glenn Morris <rgm@gnu.org>
5674
5675 * emacs-lisp/easy-mmode.el (define-minor-mode):
5676 Doc fixes for the macro and the mode it defines.
5677
5678 * image.el (imagemagick-types-inhibit): Doc fix.
5679
5680 * cus-start.el (imagemagick-render-type): Add it.
5681
5682 2012-02-06 Lars Ingebrigtsen <larsi@gnus.org>
5683
5684 * progmodes/cc-mode.el (c-standard-font-lock-fontify-region-function):
5685 Set the default at load time, too, so that `font-lock-fontify-buffer'
5686 can be called without setting up the entire mode first. This fixes
5687 a bug in `mm-inline-text' with C MIME parts.
5688
5689 2012-02-06 Chong Yidong <cyd@gnu.org>
5690
5691 * simple.el (list-processes--refresh): Delete exited processes
5692 (Bug#8094).
5693
5694 * comint.el (comint-next-prompt): next-single-char-property-change
5695 and prev-single-char-property-change never return nil (Bug#8657).
5696
5697 * custom.el (defcustom): Doc fix (Bug#9711).
5698
5699 2012-02-05 Chong Yidong <cyd@gnu.org>
5700
5701 * cus-edit.el (custom-variable-reset-backup): Quote the value
5702 before storing it in the customized-value property (Bug#6712).
5703 (custom-display): Add a customization type tag.
5704 (custom-buffer-create-internal): Improve tooltip message.
5705
5706 * wid-edit.el (widget-field-value-get): New optional arg to
5707 suppress trailing whitespace truncation.
5708 (character): Use it (Bug#2689).
5709
5710 2012-02-05 Andreas Schwab <schwab@linux-m68k.org>
5711
5712 * progmodes/gud.el (gud-pv): Use pv instead of pv1.
5713 * progmodes/gdb-mi.el (gud-pp): Use pp instead of pp1.
5714
5715 2012-02-05 Chong Yidong <cyd@gnu.org>
5716
5717 * cus-edit.el (custom-variable-value-create): For mismatched
5718 types, show the current value (Bug#7600).
5719
5720 * custom.el (defcustom): Doc fix.
5721
5722 2012-02-05 Glenn Morris <rgm@gnu.org>
5723
5724 * font-lock.el (lisp-font-lock-keywords-2): Add with-wrapper-hook.
5725
5726 2012-02-05 Juanma Barranquero <lekktu@gmail.com>
5727
5728 * emacs-lisp/pp.el (pp-to-string): Use `with-temp-buffer'.
5729 (pp-buffer): Use `ignore-errors', `looking-at-p'.
5730 (pp-last-sexp): Use `looking-at-p'.
5731
5732 2012-02-04 Glenn Morris <rgm@gnu.org>
5733
5734 * files.el (revert-buffer):
5735 Doc fix (mention revert-buffer-in-progress-p).
5736
5737 * emacs-lisp/ert-x.el (ert-simulate-command):
5738 Check deferred-action-list (which is obsolete) is bound.
5739
5740 * subr.el (with-wrapper-hook): Doc fixes.
5741
5742 * simple.el (filter-buffer-substring-functions)
5743 (buffer-substring-filters, filter-buffer-substring): Doc fixes.
5744
5745 2012-02-04 Lars Ljung <lars@matholka.se> (tiny change)
5746
5747 * eshell/esh-ext.el (eshell-windows-shell-file): Match "cmdproxy"
5748 anywhere in shell-file-name, not just at the beginning. (Bug#10523)
5749
5750 2012-02-04 Leo Liu <sdl.web@gmail.com>
5751
5752 * emacs-lisp/smie.el: Fix dead link (Bug#10711).
5753
5754 2012-02-04 Glenn Morris <rgm@gnu.org>
5755
5756 * image.el (image-extension-data): Add obsolete alias.
5757
5758 * isearch.el (isearch-update): Doc fix.
5759
5760 * facemenu.el (list-colors-display): Doc fix (minor rephrasing).
5761
5762 * ido.el (ido-find-file): Doc fix (ido-toggle-vc not on any key).
5763
5764 2012-02-03 Glenn Morris <rgm@gnu.org>
5765
5766 * image.el (image-animated-p): Doc fix. Use image-animated-types.
5767 (image-animate-timeout): Doc fix.
5768
5769 * image-mode.el (image-animate-loop, image-toggle-animation): Doc fixes.
5770
5771 2012-02-02 Glenn Morris <rgm@gnu.org>
5772
5773 * server.el (server-auth-dir): Doc fix.
5774 (server-eval-at): Doc fix. Give an explicit error if !server-use-tcp.
5775
5776 * subr.el (run-mode-hooks): Doc fix.
5777
5778 2012-02-02 Juri Linkov <juri@jurta.org>
5779
5780 * image-mode.el (image-toggle-display-image): Remove tautological
5781 `major-mode' from the `derived-mode-p' test.
5782
5783 2012-02-02 Kenichi Handa <handa@m17n.org>
5784
5785 * composite.el (compose-region): Cancel previous change.
5786
5787 2012-02-02 Kenichi Handa <handa@m17n.org>
5788
5789 * composite.el (compose-region, compose-string): Signal error for
5790 a null string component (Bug#6988).
5791
5792 2012-02-01 Chong Yidong <cyd@gnu.org>
5793
5794 * view.el (view-buffer-other-window, view-buffer-other-frame):
5795 Handle special modes like view-buffer (Bug#10650).
5796 (view-buffer): Simplify.
5797
5798 * frame.el (set-frame-font): Tweak meaning of third argument.
5799
5800 * dynamic-setting.el (font-setting-change-default-font):
5801 Use set-frame-font (Bug#9982).
5802
5803 2012-02-01 Glenn Morris <rgm@gnu.org>
5804
5805 * progmodes/compile.el (compilation-internal-error-properties):
5806 Respect compilation-first-column in the "*compilation*" buffer.
5807
5808 * emacs-lisp/easy-mmode.el (define-minor-mode):
5809 Relax :variable's test for a named function.
5810
5811 2012-01-31 Alan Mackenzie <acm@muc.de>
5812
5813 * progmodes/cc-engine.el (c-guess-basic-syntax): CASE 5B.1: Fix an
5814 off by one error.
5815
5816 2012-01-31 Chong Yidong <cyd@gnu.org>
5817
5818 * frame.el (set-frame-font): New arg ALL-FRAMES.
5819
5820 * menu-bar.el (menu-set-font): Use set-frame-font.
5821
5822 * faces.el (face-spec-reset-face): Don't apply unspecified
5823 attribute values to the default face.
5824
5825 2012-01-31 Juanma Barranquero <lekktu@gmail.com>
5826
5827 * progmodes/cwarn.el (cwarn): Remove dead link.
5828 (cwarn-configuration, cwarn-verbose, cwarn-mode-text, cwarn-load-hook):
5829 Remove * from defcustom docstrings.
5830 (turn-on-cwarn-mode): Make obsolete.
5831 (c-at-toplevel-p): Remove compatibility code for Emacs 20.3 and older.
5832 (turn-on-cwarn-mode-if-enabled): Call `cwarn-mode'.
5833
5834 2012-01-31 Glenn Morris <rgm@gnu.org>
5835
5836 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
5837 Fix :variable handling of mode a symbol not equal to modefun.
5838 Allow named functions to be used as the cdr of :variable.
5839
5840 2012-01-30 Glenn Morris <rgm@gnu.org>
5841
5842 * emacs-lisp/authors.el (authors-fixed-entries):
5843 Remove reference to deleted file rnewspost.el.
5844
5845 2012-01-29 Juanma Barranquero <lekktu@gmail.com>
5846
5847 * window.el (window-with-parameter): Remove unused variable `windows'.
5848 (window--side-check): Remove unused variable `code'.
5849 (window--resize-siblings): Remove unused variable `first'.
5850 (adjust-window-trailing-edge): Remove unused variable `failed'.
5851 (window-deletable-p, window--delete): Remove unused variable `buffer'.
5852 Use `let', not `let*'.
5853 (balance-windows-2): Remove unused variable `found'.
5854 (window--state-put-2): Remove unused variable `splits'.
5855 (window-state-put): Remove unused variable `selected'.
5856 (same-window-p): Use `string-match-p'.
5857 (display-buffer-assq-regexp): Remove unused variable `value'.
5858 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
5859 Mark argument ALIST as ignored.
5860 (pop-to-buffer): Remove unused variable `old-window'.
5861
5862 2012-01-29 Eli Zaretskii <eliz@gnu.org>
5863
5864 * jka-cmpr-hook.el (jka-compr-compression-info-list): Support .lz
5865 and .lzma compressed files.
5866
5867 2012-01-29 Chong Yidong <cyd@gnu.org>
5868
5869 * frame.el (window-system-default-frame-alist): Doc fix.
5870
5871 * dynamic-setting.el (font-setting-change-default-font): Don't
5872 change the default face if SET-FONT argument is non-nil (Bug#9982).
5873
5874 2012-01-29 Samuel Bronson <naesten@gmail.com> (tiny change)
5875
5876 * custom.el (defcustom): Add doc link to Lisp manual (Bug#10635).
5877
5878 2012-01-29 Syver Enstad <syver.enstad@cisco.com> (tiny change)
5879
5880 * progmodes/gud.el (pdb): Give pdb full paths, to allow setting
5881 breakpoints in files outside current directory (Bug#6098).
5882
5883 2012-01-29 Chong Yidong <cyd@gnu.org>
5884
5885 * progmodes/python.el: Require ansi-color at top-level.
5886
5887 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-abbrev-table):
5888 Define and use in Emacs Lisp mode (Bug#9360).
5889 (lisp-mode-abbrev-table): Add doc.
5890 (lisp-mode-variables): Don't set local-abbrev-table.
5891 (lisp-interaction-mode): Use emacs-lisp-mode-abbrev-table.
5892
5893 2012-01-28 Roland Winkler <winkler@gnu.org>
5894
5895 * textmodes/bibtex.el (bibtex-vec-incr): Fix docstring.
5896
5897 2012-01-28 Roland Winkler <winkler@gnu.org>
5898
5899 * textmodes/bibtex.el (bibtex-entry-alist): New function.
5900 (bibtex-set-dialect): Use it. Either set global values of
5901 dialect-dependent variables or bind these variables buffer-locally
5902 (Bug#10254).
5903 (bibtex-mode): Call bibtex-set-dialect via
5904 hack-local-variables-hook.
5905 (bibtex-dialect): Update docstring.
5906 Add safe-local-variable predicate.
5907 (bibtex-entry-alist, bibtex-field-alist): Initialize via
5908 bibtex-set-dialect.
5909 (bibtex-mode-map): Define menu for each dialect.
5910 (bibtex-entry): Fix docstring.
5911
5912 2012-01-28 Chong Yidong <cyd@gnu.org>
5913
5914 * eshell/esh-arg.el (eshell-quote-argument): New function.
5915
5916 * eshell/esh-ext.el (eshell-invoke-batch-file):
5917 * eshell/em-unix.el (eshell/cat, eshell/du): Use it to quote the
5918 first arg to eshell-parse-command (Bug#10523).
5919
5920 2012-01-28 Drew Adams <drew.adams@oracle.com>
5921
5922 * net/ange-ftp.el (ange-ftp-canonize-filename): Check, that
5923 `default-directory' is non-nil.
5924
5925 2012-01-28 Eli Zaretskii <eliz@gnu.org>
5926
5927 * mail/emacsbug.el (report-emacs-bug): Fill the potentially long
5928 line that displays system-configuration-options. (Bug#9924)
5929
5930 2012-01-28 Drew Adams <drew.adams@oracle.com>
5931
5932 * descr-text.el (describe-char): Show information about POS, in
5933 addition to information about the character at POS. Improve and
5934 update the doc string. Change "code point" to "code point in
5935 charset", to avoid confusion with the character's Unicode code
5936 point shown above that. (Bug#10129)
5937
5938 2012-01-28 Eli Zaretskii <eliz@gnu.org>
5939
5940 * descr-text.el (describe-char): Show the raw character, not only
5941 its display form at POS. Suggested by Kenichi Handa <handa@m17n.org>.
5942 See http://lists.gnu.org/archive/html/emacs-devel/2012-01/msg00760.html
5943 for the reasons.
5944
5945 2012-01-28 Phil Hagelberg <phil@hagelb.org>
5946
5947 * emacs-lisp/package.el (package-install):
5948 Run package-refresh-contents if there is no archive yet (Bug#9798).
5949
5950 2012-01-28 Chong Yidong <cyd@gnu.org>
5951
5952 * emacs-lisp/package.el (package-maybe-load-descriptor):
5953 New function, split from package-maybe-load-descriptor.
5954 (package-maybe-load-descriptor): Use it.
5955 (package-download-transaction): Fully load required packages
5956 inside the loop, so that `require' calls work (Bug#10593).
5957 (package-install): No need to call package-initialize now.
5958
5959 2012-01-28 Chong Yidong <cyd@gnu.org>
5960
5961 * simple.el (deactivate-mark): Doc fix (Bug#8614).
5962
5963 * tooltip.el (tooltip-mode): Doc fix.
5964 (tooltip-use-echo-area): Mark as obsolete (Bug#6595).
5965
5966 * frame.el (set-cursor-color): Doc fix (Bug#352).
5967
5968 * mail/rmail.el (rmail-start-mail): Add send-action again (Bug#10625).
5969 (rmail-mail-return): Switch to NEWBUF only if it is non-nil.
5970
5971 * cus-edit.el (custom-buffer-create-internal): Fix search button
5972 action (Bug#10542).
5973 (customize-unsaved, customize-saved): Doc fix (Bug#10541).
5974
5975 2012-01-27 Eduard Wiebe <usenet@pusto.de>
5976
5977 * dired.el (dired-mark-files-regexp):
5978 Include any subdirectory components. (Bug#10445)
5979
5980 2012-01-27 Mike Lamb <mrlamb@gmail.com> (tiny change)
5981
5982 * pcmpl-unix.el (pcmpl-ssh-known-hosts):
5983 Handle [host]:port syntax. (Bug#10533)
5984
5985 2012-01-27 Alex Harsanyi <harsanyi@mac.com>
5986
5987 * xml.el (xml-parse-tag): Fix parsing of comments (Bug#10405).
5988
5989 2012-01-26 Glenn Morris <rgm@gnu.org>
5990
5991 * dired-x.el (dired-bind-jump): Use ctl-x-map and ctl-x-4-map.
5992 * term.el (term-raw-escape-map): Use Control-X-prefix.
5993 * vc/vc-hooks.el (vc-prefix-map): Use ctl-x-map. (Bug#10566)
5994
5995 2012-01-25 Martin Rudalics <rudalics@gmx.at>
5996
5997 * window.el (window-state-get, window--state-get-1): Don't deal
5998 with fixed-sizeness of windows. Simplify code.
5999
6000 2012-01-25 Jérémy Compostella <jeremy.compostella@gmail.com>
6001
6002 * window.el (window--state-get-1, window--state-put-2):
6003 Don't save and restore the mark.
6004
6005 2012-01-25 Chong Yidong <cyd@gnu.org>
6006
6007 * custom.el (custom-variable-p): Doc fix.
6008
6009 2012-01-25 Glenn Morris <rgm@gnu.org>
6010
6011 * dired.el (dired-goto-file): Handle some of the more common
6012 characters that `ls -b' escapes. (Bug#10596)
6013
6014 * progmodes/compile.el (compilation-next-error-function):
6015 Respect compilation-first-column in the "*compilation*" buffer.
6016 * progmodes/grep.el (grep-first-column): New variable. (Bug#10594)
6017
6018 * vc/vc.el (vc-modify-change-comment): Scoping fix. (Bug#10513)
6019
6020 2012-01-24 Glenn Morris <rgm@gnu.org>
6021
6022 * pcmpl-gnu.el (pcomplete/tar): Handle " - ". (Bug#10457)
6023
6024 2012-01-24 Julien Danjou <julien@danjou.info>
6025
6026 * color.el (color-rgb-to-hsl): Fix value computing.
6027 (color-hue-to-rgb): New function.
6028 (color-hsl-to-rgb): New function.
6029 (color-clamp, color-saturate-hsl, color-saturate-name)
6030 (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
6031 (color-lighten-name, color-darken-hsl, color-darken-name): New function.
6032
6033 2012-01-24 Glenn Morris <rgm@gnu.org>
6034
6035 * vc/vc-rcs.el (vc-rcs-create-tag):
6036 * vc/vc-sccs.el (vc-sccs-create-tag):
6037 Fix argument spec to be what vc-create-tag expects. (Bug#10515)
6038
6039 2012-01-23 Mike Lamb <mrlamb@gmail.com> (tiny change)
6040
6041 * eshell/esh-util.el (eshell-read-hosts-file):
6042 Skip comment lines. (Bug#10549)
6043
6044 * eshell/em-unix.el (pcomplete/ssh): Remove. (Bug#10548)
6045
6046 2012-01-23 Juanma Barranquero <lekktu@gmail.com>
6047
6048 * subr.el (display-delayed-warnings): Doc fix.
6049 (collapse-delayed-warnings): New function to collapse identical
6050 adjacent warnings.
6051 (delayed-warnings-hook): Add it.
6052
6053 2012-01-22 Michael Albinus <michael.albinus@gmx.de>
6054
6055 * net/tramp.el (tramp-action-login): Set connection property "login-as".
6056
6057 * net/tramp-sh.el (tramp-methods): Add user spec to "pscp" and "psftp".
6058 (tramp-default-user-alist): Don't add "pscp".
6059 (tramp-do-copy-or-rename-file-out-of-band): Use connection
6060 property "login-as", if set. (Bug#10530)
6061
6062 2012-01-21 Michael Albinus <michael.albinus@gmx.de>
6063
6064 * net/tramp-sh.el (tramp-default-user-alist): Don't add "plink",
6065 "plink1" and "psftp". (Bug#10530)
6066
6067 2012-01-21 Kenichi Handa <handa@m17n.org>
6068
6069 * international/mule-cmds.el (prefer-coding-system): Show a
6070 warning message if the default value of file-name-coding-system
6071 was not changed.
6072
6073 2012-01-21 Jérémy Compostella <jeremy.compostella@gmail.com>
6074
6075 * windmove.el (windmove-reference-loc):
6076 Fix windmove-reference-loc miscalculation.
6077
6078 2012-01-21 Jay Belanger <jay.p.belanger@gmail.com>
6079
6080 * calc/calc-units.el (math-put-default-units): Don't use "1" as a
6081 default unit.
6082
6083 2012-01-21 Glenn Morris <rgm@gnu.org>
6084
6085 * international/mule.el (auto-coding-alist): Add .tbz.
6086
6087 * files.el (local-enable-local-variables): Doc fix.
6088 (inhibit-local-variables-regexps): Rename from
6089 inhibit-first-line-modes-regexps. Keep old name as obsolete alias.
6090 Doc fix. Add some extensions from auto-coding-alist.
6091 (inhibit-local-variables-suffixes):
6092 Rename from inhibit-first-line-modes-suffixes. Doc fix.
6093 (inhibit-local-variables-p):
6094 New function, extracted from set-auto-mode-1.
6095 (set-auto-mode): Doc fix. Respect inhibit-local-variables-regexps.
6096 (set-auto-mode-1): Doc fix. Use inhibit-local-variables-p.
6097 (hack-local-variables): Doc fix. Make the mode-only case
6098 respect enable-local-variables and friends.
6099 Respect inhibit-local-variables-regexps for file-locals, but
6100 not for directory-locals.
6101 (set-visited-file-name):
6102 Take account of inhibit-local-variables-regexps.
6103 Whether it applies may change as the file name is changed.
6104 * jka-cmpr-hook.el (jka-compr-install):
6105 * jka-compr.el (jka-compr-uninstall):
6106 Update for inhibit-first-line-modes-suffixes name change.
6107
6108 2012-01-20 Martin Rudalics <rudalics@gmx.at>
6109
6110 * help-macro.el (make-help-screen): Temporarily restore original
6111 binding for minor-mode-map-alist (Bug#10454).
6112
6113 2012-01-19 Julien Danjou <julien@danjou.info>
6114
6115 * color.el (color-name-to-rgb): Use the white color to find the max
6116 color component value and return correctly computed values.
6117 (color-name-to-rgb): Add missing float conversion for max value.
6118
6119 2012-01-19 Martin Rudalics <rudalics@gmx.at>
6120
6121 * window.el (window--state-get-1, window-state-get): Do not use
6122 special state value for window-persistent-parameters.
6123 Rename argument IGNORE to WRITABLE. Rewrite doc-string.
6124 (window--state-put-2): Reset all window parameters to nil before
6125 assigning values of persistent parameters.
6126
6127 2012-01-18 Alan Mackenzie <acm@muc.de>
6128
6129 Eliminate sluggishness and hangs in fontification of "semicolon
6130 deserts".
6131
6132 * progmodes/cc-engine.el (c-state-nonlit-pos-interval):
6133 Change value 10000 -> 3000.
6134 (c-state-safe-place): Reformulate so it doesn't stack up an
6135 infinite number of wrong entries in c-state-nonlit-pos-cache.
6136 (c-determine-limit-get-base, c-determine-limit): New functions to
6137 determine backward search limits disregarding literals.
6138 (c-find-decl-spots): Amend commenting.
6139 (c-cheap-inside-bracelist-p): New function which detects "={".
6140
6141 * progmodes/cc-fonts.el
6142 (c-make-font-lock-BO-decl-search-function): Give a limit to a
6143 backward search.
6144 (c-font-lock-declarations): Fix an occurrence of point being
6145 undefined. Check additionally for point being in a bracelist or
6146 near a macro invocation without a semicolon so as to avoid a
6147 fruitless time consuming search for a declarator. Give a more
6148 precise search limit for declarators using the new
6149 c-determine-limit.
6150
6151 2012-01-18 Glenn Morris <rgm@gnu.org>
6152
6153 * files.el (auto-mode-alist, inhibit-first-line-modes-regexps)
6154 (set-auto-mode): Doc fixes.
6155
6156 2012-01-17 Glenn Morris <rgm@gnu.org>
6157
6158 * isearch.el (search-nonincremental-instead): Fix doc typo.
6159
6160 * dired.el (dired-insert-directory): Handle newlines in directory name.
6161 (dired-build-subdir-alist): Unescape newlines in directory name.
6162
6163 2012-01-17 Michael Albinus <michael.albinus@gmx.de>
6164
6165 * net/tramp.el (tramp-local-end-of-line): New defcustom.
6166 (tramp-action-login, tramp-action-yesno, tramp-action-yn)
6167 (tramp-action-terminal): Use it. (Bug#10530)
6168
6169 2012-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
6170
6171 * minibuffer.el (completion--replace): Strip properties (bug#10062).
6172
6173 2012-01-16 Martin Rudalics <rudalics@gmx.at>
6174
6175 * window.el (window-state-ignored-parameters): Remove variable.
6176 (window--state-get-1): Rename argument MARKERS to IGNORE.
6177 Handle persistent window parameters. Make copy of clone-of
6178 parameter only if requested. (Bug#10348)
6179 (window--state-put-2): Install a window parameter only if it has
6180 a non-nil value or an existing parameter shall be overwritten.
6181
6182 2012-01-15 Michael Albinus <michael.albinus@gmx.de>
6183
6184 * net/tramp-sh.el (tramp-remote-path): Set tramp-autoload cookie.
6185
6186 2012-01-14 Eli Zaretskii <eliz@gnu.org>
6187
6188 * info.el (Info-toc-build): If the Info file has no "Up" pointer,
6189 don't pass the (nil) value of `upnode' to string-match.
6190
6191 2012-01-14 Chong Yidong <cyd@gnu.org>
6192
6193 * startup.el (command-line): Fix X resource class for cursorColor.
6194 Fix values recognized by the cursorBlink resource.
6195
6196 2012-01-14 Paul Eggert <eggert@cs.ucla.edu>
6197
6198 * epg.el (epg--make-temp-file): Avoid permission race condition
6199 when running on old Emacs versions (bug#10403).
6200
6201 2012-01-14 Glenn Morris <rgm@gnu.org>
6202
6203 * dired.el (dired-get-filename): Fix 'verbatim case of previous change.
6204
6205 2012-01-13 Alan Mackenzie <acm@muc.de>
6206
6207 Fix filling for when filladapt mode is enabled.
6208
6209 * progmodes/cc-cmds.el (c-fill-paragraph): In the invocation of
6210 c-mask-paragraph, pass in `fill-paragraph' rather than
6211 `fill-region-as-paragraph'. (This is a reversion of a previous
6212 change.)
6213 * progmodes/cc-mode.el (c-basic-common-init):
6214 Make fill-paragraph-handle-comment buffer local and set it to nil.
6215
6216 2012-01-13 Glenn Morris <rgm@gnu.org>
6217
6218 * dired.el (dired-switches-escape-p): New function.
6219 (dired-insert-directory): Use dired-switches-escape-p.
6220 (dired-get-filename): Undo "\ " quoting if needed. (Bug#10469)
6221
6222 * find-dired.el (find-ls-option): Doc fix. (Bug#10262)
6223
6224 2012-01-12 Glenn Morris <rgm@gnu.org>
6225
6226 * mail/sendmail.el (mail-mode): Update paragraph-separate for
6227 changes in adaptive-fill-regexp. (Bug#10276)
6228
6229 2012-01-11 Alan Mackenzie <acm@muc.de>
6230
6231 Fix Emacs bug #10463 - put `widen's around the critical spots.
6232
6233 * progmodes/cc-engine.el (c-in-literal, c-literal-limits): Put a
6234 widen around each invocation of c-state-pp-to-literal. Remove an
6235 unused let variable.
6236
6237 2012-01-11 Glenn Morris <rgm@gnu.org>
6238
6239 * dired-aux.el (dired-do-shell-command): Fix */? logic. (Bug#6561)
6240 Doc fix.
6241
6242 2012-01-10 Chong Yidong <cyd@gnu.org>
6243
6244 * net/network-stream.el (network-stream-open-starttls):
6245 Avoid emitting a confusing error message when the server gives a bad
6246 response to the capability command.
6247
6248 2012-01-10 Glenn Morris <rgm@gnu.org>
6249
6250 * mail/unrmail.el (unrmail): Tweak previous change.
6251
6252 2012-01-09 Chong Yidong <cyd@gnu.org>
6253
6254 * custom.el (custom-safe-themes): Use SHA-256 for hashing.
6255
6256 2012-01-08 Alan Mackenzie <acm@muc.de>
6257
6258 Optimise font locking in long enum definitions.
6259
6260 * progmodes/cc-fonts.el (c-font-lock-declarations): Add an extra
6261 arm to a cond form to handle enums.
6262 * progmodes/cc-langs.el (c-enums-contain-decls): New lang variable.
6263 * progmodes/cc-mode.el (c-font-lock-fontify-region): Correct a typo.
6264
6265 2012-01-07 Paul Eggert <eggert@cs.ucla.edu>
6266
6267 * files.el (move-file-to-trash): Preserve default file modes on error.
6268 (Bug#10401)
6269
6270 2012-01-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
6271
6272 * faces.el (set-face-attribute): Clarify the meaning of the nil
6273 frame (bug#10294).
6274
6275 * subr.el (with-selected-frame): Mention that the selected frame
6276 is restored (bug#9980).
6277
6278 * ibuffer.el (ibuffer-mode): List the bindings in the corrent map
6279 (bug#9759).
6280
6281 * mail/smtpmail.el (password-cache-add): Remove unused declaration.
6282 (password-read): Don't autoload unused function.
6283
6284 2012-01-07 Juanma Barranquero <lekktu@gmail.com>
6285
6286 * progmodes/which-func.el (which-func-mode): Turn into a
6287 non-interactive function and mark as obsolete (bug#10428).
6288
6289 2012-01-06 Chong Yidong <cyd@gnu.org>
6290
6291 * files.el (hack-dir-local-variables-non-file-buffer): Add doc.
6292 (hack-one-local-variable-eval-safep): Allow 0 arg for minor mode
6293 functions, along with 1 and -1.
6294
6295 2012-01-06 Eli Zaretskii <eliz@gnu.org>
6296
6297 * time.el (display-time-load-average)
6298 (display-time-default-load-average): Doc fixes. See the thread
6299 starting at
6300 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-01/msg00059.html
6301 for the details.
6302
6303 2012-01-06 Glenn Morris <rgm@gnu.org>
6304
6305 * mail/unrmail.el (unrmail): Give an explicit error if the input file
6306 has no messages. (Bug#10377)
6307
6308 * info.el (Info-mode-map): Bind e to end-of-buffer, rather
6309 than Info-edit. (Bug#10385)
6310
6311 * time.el (display-time-load-average, display-time-next-load-average):
6312 Doc fixes.
6313
6314 * emacs-lisp/bytecomp.el (byte-compile-file): Do not propagate a file
6315 local setting of buffer-read-only to the input buffer. (Bug#10419)
6316
6317 * calendar/calendar.el (calendar-mode):
6318 Locally set scroll-margin to 0. (Bug#10379)
6319
6320 2012-01-06 Ulrich Mueller <ulm@gentoo.org>
6321
6322 * play/doctor.el (doctor-death): Escape "," characters. (Bug#10370)
6323
6324 2012-01-05 Glenn Morris <rgm@gnu.org>
6325
6326 * eshell/em-unix.el (diff-no-select): Autoload it.
6327 (eshell/diff): Use diff-no-select. (Bug#10420)
6328
6329 2012-01-05 Chong Yidong <cyd@gnu.org>
6330
6331 * shell.el (shell-dynamic-complete-functions): Revert last change.
6332 (shell-command-completion-function): New function.
6333 (shell-completion-vars): Use it to implement
6334 shell-completion-execonly (Bug#10417).
6335
6336 * custom.el (enable-theme): Don't set custom-safe-themes.
6337
6338 * cus-theme.el (custom-theme-merge-theme):
6339 Ignore custom-enabled-themes and custom-safe-themes.
6340
6341 2012-01-05 Michael R. Mauger <mmaug@yahoo.com>
6342
6343 * progmodes/sql.el (sql-login-hook): Add hook to respond to the
6344 first prompt in `sql-interacive-mode'.
6345 (sql-mode-oracle-font-lock-keywords): Add CONNECT_BY_* builtin
6346 keywords.
6347 (sql-mode-mysql-font-lock-keywords): Add ELSEIF keyword.
6348 (sql-product-interactive): Bug fix: Set `sql-buffer' in
6349 context of original buffer. Invoke `sql-login-hook'.
6350
6351 2012-01-04 Eli Zaretskii <eliz@gnu.org>
6352
6353 * mail/rmail.el (rmail-font-lock-keywords): Accept non-ASCII
6354 letters in cite-prefix.
6355
6356 2012-01-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
6357
6358 * mail/smtpmail.el (smtpmail-stream-type): Mention the `ssl' value.
6359
6360 2012-01-03 Chong Yidong <cyd@gnu.org>
6361
6362 * shell.el (shell-dynamic-complete-functions):
6363 Put pcomplete-completions-at-point, so as to try
6364 comint-filename-completion first (Bug#10417).
6365
6366 2012-01-02 Richard Stallman <rms@gnu.org>
6367
6368 * battery.el (battery-status-function):
6369 Detect when to use battery-yeeloong-sysfs.
6370 (battery-echo-area-format): Add string for Yeeloong.
6371 (battery-linux-proc-apm, battery-linux-proc-acpi): Doc fixes.
6372 (battery-yeeloong-sysfs): New function.
6373
6374 2012-01-02 Chong Yidong <cyd@gnu.org>
6375
6376 * dirtrack.el (dirtrack-list): Eliminate unused third element.
6377 (dirtrack): Merge code for handling relative filenames in prompt
6378 from shell-dir-cookie-watcher.
6379 (dirtrack-debug-message): New arg to avoid excess format calls.
6380
6381 * shell.el (shell-dir-cookie-re): Variable deleted.
6382 (shell-dir-cookie-watcher): Function deleted.
6383 (shell-mode): Don't use shell-dir-cookie-re, since it is redundant
6384 with dirtrack-mode.
6385
6386 2012-01-01 Eli Zaretskii <eliz@gnu.org>
6387
6388 * term/w32-win.el (dynamic-library-alist) <gnutls>:
6389 Load libgnutls-28.dll, from GnuTLS version 3.x, in preference to
6390 libgnutls-26.dll.
6391
6392 2011-12-31 Andreas Schwab <schwab@linux-m68k.org>
6393
6394 * emacs-lisp/bytecomp.el (byte-compile-file): Fix indentation.
6395
6396 2011-12-31 Eli Zaretskii <eliz@gnu.org>
6397
6398 * mail/rmail.el (rmail-show-message-1): Decode any RFC2047 encoded
6399 headers of non-MIME messages, when rmail-enable-mime is non-nil.
6400
6401 2011-12-29 Michael Albinus <michael.albinus@gmx.de>
6402
6403 * net/tramp-sh.el (tramp-find-shell): Set "remote-shell" property
6404 also for alternative shells.
6405 (tramp-open-connection-setup-interactive-shell): Check, whether
6406 the shell is a busybox.
6407 (tramp-send-command): Don't suppress multiple prompts for
6408 busyboxes, it hurts.
6409
6410 2011-12-28 Chong Yidong <cyd@gnu.org>
6411
6412 * progmodes/gdb-mi.el (gdb-get-source-file-list)
6413 (gdb-get-source-file): Move mode line update to
6414 gdb-get-source-file (Bug#10087).
6415
6416 2011-12-25 Chong Yidong <cyd@gnu.org>
6417
6418 * progmodes/gud.el (gud-gdb-fetch-lines-filter): Just use
6419 gud-gdb-marker-filter without taking it as an argument.
6420 (gud-gdb-run-command-fetch-lines): Caller changed.
6421 (gud-gdb-completion-function): New variable.
6422 (gud-gdb-completion-at-point): Use it.
6423 (gud-gdb-completions-1): Split from gud-gdb-completions.
6424
6425 * progmodes/gdb-mi.el (gdb-input): Accept command and handler
6426 function as separate arguments.
6427 (gdb-init-1, gdb-non-stop-handler, gdb-check-target-async)
6428 (gdb-tooltip-print-1, gud-watch, gdb-speedbar-update)
6429 (gdb-var-list-children, gdb-var-set-format, gdb-var-delete-1)
6430 (gdb-var-delete-children, gdb-edit-value, gdb-var-update)
6431 (gdb-stopped, def-gdb-auto-update-trigger)
6432 (gdb-place-breakpoints, gdb-select-thread, gdb-select-frame)
6433 (gdb-get-changed-registers, gdb-get-main-selected-frame):
6434 Callers changed.
6435 (gud-gdbmi-completions): New function.
6436 (gdb): Use it for generating the completion table.
6437
6438 2011-12-24 Alan Mackenzie <acm@muc.de>
6439
6440 Introduce a mechanism to widen the region used in context font
6441 locking. Use this to protect declarations from losing their contexts.
6442
6443 * progmodes/cc-langs.el (c-before-font-lock-functions):
6444 Replace c-set-fl-decl-start with c-change-set-fl-decl-start (Renaming).
6445 (c-before-context-fontification-functions): New defvar, a list of
6446 functions to be run just before context (etc.) font locking.
6447
6448 * progmodes/cc-mode.el (c-extend-font-lock-region-for-macros):
6449 New, functionality extracted from
6450 c-neutralize-syntax-in-and-mark-CPP.
6451 (c-in-after-change-fontification): New variable.
6452 (c-after-change): Set c-in-after-change-fontification.
6453 (c-set-fl-decl-start): Rejig its interface, so it can be called
6454 from both after-change and context fontifying.
6455 (c-change-set-fl-decl-start, c-context-set-fl-decl-start):
6456 New functions.
6457 (c-standard-font-lock-fontify-region-function): New variable.
6458 (c-font-lock-fontify-region): New function.
6459
6460 2011-12-24 Juri Linkov <juri@jurta.org>
6461
6462 * window.el (window--state-get-1): Set `FORCE' arg of `mark' to t.
6463 (Bug#10348)
6464
6465 2011-12-23 Michael Albinus <michael.albinus@gmx.de>
6466
6467 * net/ange-ftp.el (ange-ftp-copy-file-internal): Check for
6468 existence of source file. (Bug#10325)
6469
6470 2011-12-23 Alan Mackenzie <acm@muc.de>
6471
6472 Fix unstable fontification inside templates.
6473
6474 * progmodes/cc-langs.el (c-before-font-lock-functions):
6475 Newly created from the singular version. The (c c++ objc) entry now
6476 additionally has c-set-fl-decl-start. The other languages (apart
6477 from AWK) have that as a single entry.
6478
6479 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
6480 The functionality for "local" declarations has been extracted to
6481 c-set-fl-decl-start.
6482
6483 * progmodes/cc-mode.el (c-common-init, c-after-change):
6484 Changes due to pluralisation of c-before-font-lock-functions.
6485 (c-set-fl-decl-start): New function, extracted from
6486 c-font-lock-enclosing-decls and enhanced.
6487
6488 2011-12-23 Juanma Barranquero <lekktu@gmail.com>
6489
6490 * desktop.el (desktop-internal-v2s): Fix typos in docstring (bug#10353).
6491
6492 2011-12-22 Juri Linkov <juri@jurta.org>
6493
6494 * progmodes/grep.el (rgrep): Fix docstring. (Bug#10185)
6495
6496 2011-12-22 Chong Yidong <cyd@gnu.org>
6497
6498 * vc/vc-hooks.el (vc-keep-workfiles): Doc fix.
6499
6500 2011-12-21 Drew Adams <drew.adams@oracle.com>
6501
6502 * files.el (file-remote-p): Fix docstring. (Bug#10319)
6503
6504 2011-12-21 Jérémy Compostella <jeremy.compostella@gmail.com>
6505
6506 * battery.el (battery-linux-sysfs): Add missing parameters from acpi.
6507
6508 2011-12-21 Teodor Zlatanov <tzz@lifelogs.com>
6509
6510 * progmodes/cfengine.el: Add Version. Improve CFEngine 3.x syntax
6511 highlighting and support. Fix up comments for capitalization.
6512 (cfengine-mode-debug): New var.
6513 (cfengine3-mode): Change the modeline indicator to "CFE3".
6514 (cfengine3-font-lock-keywords): Improve defun highlighting.
6515 (cfengine2-actions): Rename from `cfengine-actions'.
6516 (cfengine2-font-lock-keywords): Rename from
6517 `cfengine-font-lock-keywords'.
6518 (cfengine2-imenu-expression): Rename from
6519 `cfengine-imenu-expression'.
6520 (cfengine2-outline-level): Rename from `cfengine-outline-level'.
6521 (cfengine2-beginning-of-defun): Rename from
6522 `cfengine-beginning-of-defun'.
6523 (cfengine2-end-of-defun): Rename from `cfengine-end-of-defun'.
6524 (cfengine2-indent-line): Rename from `cfengine-indent-line'.
6525 (cfengine2-mode): Rename from `cfengine-mode'. Change the
6526 modeline indicator to "CFE2".
6527 (cfengine-mode): Defalias to `cfengine-auto-mode'.
6528 (cfengine-mode-abbrevs): Mark obsolete.
6529
6530 2011-12-21 Chong Yidong <cyd@gnu.org>
6531
6532 * vc/vc-bzr.el (vc-bzr-rename-file): Don't pass ~ to Bzr in
6533 filename argument.
6534
6535 2011-12-20 Martin Rudalics <rudalics@gmx.at>
6536
6537 * window.el (window-normalize-buffer-to-display): Remove.
6538 (display-buffer): Handle buffer-or-name argument as in Emacs 23.
6539
6540 2011-12-19 Chong Yidong <cyd@gnu.org>
6541
6542 * vc/vc-dir.el (vc-dir-parent-marked-p, vc-dir-children-marked-p):
6543 Don't signal an error in a predicate function; return non-nil.
6544 (vc-dir-mark-file): Move the error here.
6545 (vc-dir-mark-unmark): If acting on the region, keep going if one
6546 of the entries cannot be marked/unmarked.
6547 (vc-dir-mark-all-files): If current entry is a directory, mark
6548 only child files, as documented.
6549
6550 2011-12-19 Vincent Belaïche <vincentb1@users.sourceforge.net>
6551
6552 * ses.el: Ooops... undo changes of 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net, as trunk
6553 branch is feature frozen, and 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net was a feature
6554 addition.
6555
6556 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
6557
6558 * term/ns-win.el (ns-get-selection-internal)
6559 (ns-store-selection-internal): Declare.
6560 (ns-store-cut-buffer-internal, ns-get-cut-buffer-internal):
6561 Declare as obsolete.
6562 (ns-get-pasteboard, ns-paste-secondary):
6563 Use ns-get-selection-internal.
6564 (ns-set-pasteboard, ns-copy-including-secondary):
6565 Use ns-store-selection-internal.
6566
6567 2011-12-17 Chong Yidong <cyd@gnu.org>
6568
6569 * vc/vc.el (vc-next-action): Doc fix; remove CVS-isms.
6570 (vc-deduce-fileset): Doc fix.
6571
6572 2011-12-16 Andreas Schwab <schwab@linux-m68k.org>
6573
6574 * calc/calc-misc.el (calc-help): Avoid wrapping help message.
6575
6576 2011-12-13 Sam Steingold <sds@gnu.org>
6577
6578 * man.el (Man-getpage-in-background): When running under a
6579 window-system, ignore $MANWIDTH and $COLUMNS.
6580
6581 2011-12-15 Kenichi Handa <handa@m17n.org>
6582
6583 * language/ethio-util.el: Change coding tag to utf-8-emacs.
6584 (setup-ethiopic-environment-internal): Comment out key-binding for
6585 ethio-toggle-punctuation.
6586
6587 2011-12-13 Alan Mackenzie <acm@muc.de>
6588
6589 Add the switch statement to AWK Mode.
6590
6591 * progmodes/cc-awk.el (awk-font-lock-keywords): Add "switch", "case",
6592 "default" to the keywords regexp.
6593
6594 * progmodes/cc-langs.el (c-label-kwds): Let AWK take the same
6595 expression as the rest.
6596 (c-nonlabel-token-key): Allow string literals for AWK.
6597 Refactor for the other modes.
6598
6599 Large brace-block initialisation makes CC Mode slow: Fix.
6600 Tidy up and accelerate c-in-literal, etc. by using the c-parse-state
6601 routines. Limit backward searching in c-font-lock-enclosing.decl.
6602
6603 * progmodes/cc-engine.el (c-state-pp-to-literal): Return the
6604 pp-state and literal type in addition to the limits.
6605 (c-state-safe-place): New defun, extracted from c-state-literal-at.
6606 (c-state-literal-at): Use the above new defun.
6607 (c-slow-in-literal, c-fast-in-literal): Remove.
6608 (c-in-literal, c-literal-limits): Amend to use c-state-pp-to-literal.
6609
6610 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Check for
6611 being in a literal. Add a limit for backward searching.
6612
6613 * progmodes/cc-mode.el (awk-mode): Don't alias c-in-literal to
6614 c-slow-in-literal.
6615
6616 2011-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
6617
6618 * progmodes/pascal.el: Declare `ind' as dyn-bound (bug#10264).
6619
6620 2011-12-13 Martin Rudalics <rudalics@gmx.at>
6621
6622 * window.el (delete-other-windows): Use correct frame in call to
6623 window-with-parameter.
6624
6625 2011-12-12 Daniel Pfeiffer <occitan@t-online.de>
6626
6627 * progmodes/make-mode.el: Bring it up to date with makepp V2.0.
6628 (makefile-make-font-lock-keywords): Extend meaning of `keywords'.
6629 (makefile-gmake-statements, makefile-makepp-statements):
6630 Use it and add new makepp keywords.
6631 (makefile-makepp-font-lock-keywords): Add new patterns.
6632 (makefile-match-function-end): Match new [...] and [[...]].
6633
6634 2011-12-11 Juanma Barranquero <lekktu@gmail.com>
6635
6636 * ses.el (ses-call-printer-return, ses-cell-property-get)
6637 (ses-sym-rowcol, ses-printer-validate, ses-formula-record)
6638 (ses-create-cell-variable, ses-reset-header-string)
6639 (ses-cell-set-formula, ses-repair-cell-reference-all)
6640 (ses-self-reference-early-detection, ses-in-print-area, ses-set-curcell)
6641 (ses-check-curcell, ses-call-printer, ses-adjust-print-width)
6642 (ses-print-cell-new-width, ses-formula-references, ses-relocate-formula)
6643 (ses-aset-with-undo, ses-load, ses-truncate-cell)
6644 (ses-read-column-printer, ses-read-default-printer, ses-insert-row)
6645 (ses-delete-row, ses-delete-column, ses-append-row-jump-first-column)
6646 (ses-kill-override, ses-yank-pop, ses-yank-cells, ses-yank-tsf)
6647 (ses-yank-resize, ses-export-tab, ses-mark-row, ses-mark-column)
6648 (ses-renarrow-buffer, ses-insert-range, ses-insert-ses-range)
6649 (ses-safe-printer, ses-safe-formula, ses-warn-unsafe, ses--clean-!)
6650 (ses--clean-_, ses-range, ses-select, ses-center, ses-center-span)
6651 (ses-dashfill, ses-unsafe): Fix typos and reflow docstrings.
6652
6653 2011-12-11 Vincent Belaïche <vincentb1@users.sourceforge.net>
6654
6655 * ses.el: The overall change is to add cell renaming, that is
6656 setting fancy names for cell symbols other than name matching
6657 "\\`[A-Z]+[0-9]+\\'" regexp .
6658 (ses-create-cell-variable): New defun.
6659 (ses-relocate-formula): Relocate formulas only for cells the
6660 symbols of which are not renamed, i.e. symbols whose names do not
6661 match regexp "\\`[A-Z]+[0-9]+\\'".
6662 (ses-relocate-all): Relocate values only for cells the symbols of
6663 which are not renamed.
6664 (ses-load): Create cells variables as the (ses-cell ...) are read,
6665 in order to check row col consistency with cell symbol name only
6666 for cells that are not renamed.
6667 (ses-replace-name-in-formula): New defun.
6668 (ses-rename-cell): New defun.
6669
6670 2011-12-11 Chong Yidong <cyd@gnu.org>
6671
6672 * progmodes/gdb-mi.el (gdb): Set comint-prompt-regexp, required
6673 for completion via gud-gdb-fetch-lines-filter (Bug#10274).
6674
6675 2011-12-11 Eric Hanchrow <eric.hanchrow@gmail.com>
6676
6677 * window.el (other-window): Fix docstring.
6678
6679 2011-12-10 Eli Zaretskii <eliz@gnu.org>
6680
6681 * mail/rmailsum.el (rmail-header-summary): RFC2047 decode the
6682 `from' or `to' address before taking its substring.
6683 Fixes incorrect display in Rmail summary buffer whereby an RFC2047
6684 encoded name is chopped in the middle of the encoded string, and
6685 thus displayed encoded.
6686
6687 2011-12-10 Juanma Barranquero <lekktu@gmail.com>
6688
6689 * makefile.w32-in (update-subdirs-CMD): Use a Local Variables section.
6690
6691 2011-12-10 Eli Zaretskii <eliz@gnu.org>
6692
6693 * textmodes/texnfo-upd.el: Update commentary. Add a warning not
6694 to use texinfo-update-node and commands that call it if the
6695 Texinfo file uses @node lines without next/prev/up pointers.
6696 Correct outdated description about texinfo-master-menu.
6697 (texinfo-all-menus-update, texinfo-master-menu)
6698 (texinfo-update-node, texinfo-every-node-update)
6699 (texinfo-multiple-files-update): Doc fix. Warn against updating
6700 all the @node lines.
6701 (texinfo-master-menu): Only call texinfo-update-node if the prefix
6702 argument is numeric. Explain better in the doc string what the
6703 function really does.
6704 (texinfo-insert-master-menu-list): Improve the error message
6705 displayed if there's no menu in the Top node.
6706 (Bug#2975) See also this thread:
6707 http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00156.html.
6708
6709 2011-12-09 Manuel Gómez <mgrojo@gmail.com> (tiny change)
6710
6711 * speedbar.el (speedbar-supported-extension-expressions):
6712 Add .adb and .ads, commonly used for Ada source code (bug#10256).
6713
6714 2011-12-09 Juanma Barranquero <lekktu@gmail.com>
6715
6716 * printing.el (pr-mode-alist):
6717 * simple.el (filter-buffer-substring-functions)
6718 (completion-list-insert-choice-function):
6719 * window.el (window-with-parameter, window-atom-root)
6720 (window-sides-slots, window-size-fixed, window-min-delta)
6721 (window-max-delta, window--resize-mini-window)
6722 (window--resize-child-windows-normal, window-tree)
6723 (delete-other-windows, quit-window, split-window)
6724 (display-buffer-record-window, special-display-buffer-names)
6725 (special-display-regexps, special-display-popup-frame)
6726 (same-window-p, split-window-sensibly)
6727 (display-buffer-overriding-action, display-buffer-alist)
6728 (display-buffer-base-action, display-buffer, switch-to-buffer)
6729 (switch-to-buffer-other-window, switch-to-buffer-other-frame)
6730 (fit-window-to-buffer, recenter-positions)
6731 (mouse-autoselect-window-state, mouse-autoselect-window-select):
6732 * emacs-lisp/syntax.el (syntax-propertize-function): Fix typos
6733 and remove unneeded backslashes in docstrings.
6734
6735 2011-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
6736
6737 * emacs-lisp/lisp-mode.el (defmethod): Add doc-string-elt (bug#10244).
6738
6739 * pcmpl-gnu.el: Don't fail when there is no Makefile nor -f arg.
6740 (pcmpl-gnu-makefile-regexps): Accept "makefile" as well as files that
6741 end in ".mk".
6742 (pcmpl-gnu-make-rule-names): Check "makefile" and ignore errors
6743 when reading the makefile (bug#10116).
6744
6745 2011-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
6746
6747 * pcmpl-gnu.el (pcomplete/make): Also allow filename arguments
6748 (bug#10116).
6749
6750 2011-12-06 Glenn Morris <rgm@gnu.org>
6751
6752 * emacs-lisp/package.el (package-archives): Doc fix re riskiness.
6753
6754 2011-12-06 Chong Yidong <cyd@gnu.org>
6755
6756 * progmodes/cc-fonts.el (c-annotation-face): Use defface.
6757
6758 2011-12-06 Juanma Barranquero <lekktu@gmail.com>
6759
6760 * textmodes/table.el (table-shorten-cell): Fix typo.
6761
6762 2011-12-05 Christopher Genovese <genovese.cr@gmail.com> (tiny change)
6763
6764 * emacs-lisp/assoc.el (aput): Fix return value (bug#10146)
6765
6766 2011-12-05 Eli Zaretskii <eliz@gnu.org>
6767
6768 * descr-text.el (describe-char): Fix display of strong
6769 right-to-left characters and directional embeddings and overrides.
6770
6771 * simple.el (what-cursor-position): Fix display of codepoints of
6772 strong right-to-left characters.
6773
6774 2011-12-05 Chong Yidong <cyd@gnu.org>
6775
6776 * faces.el (read-color): Doc fix.
6777
6778 2011-12-05 Glenn Morris <rgm@gnu.org>
6779
6780 * align.el (align--set-marker): Add doc-string.
6781 Don't try to move something that is not a marker. (Bug#10216)
6782
6783 2011-12-04 Glenn Morris <rgm@gnu.org>
6784
6785 * calendar/appt.el (appt-add): Rewrite the interactive-spec to avoid
6786 overly zealous deletion of trailing whitespace.
6787
6788 2011-12-04 Juanma Barranquero <lekktu@gmail.com>
6789
6790 * server.el (server-delete-client): On Windows, do not try to delete
6791 the only terminal.
6792 (server-process-filter): On Windows, treat requests for a tty frame as
6793 if they were for a GUI frame if the running server is in GUI mode.
6794
6795 2011-12-03 Glenn Morris <rgm@gnu.org>
6796
6797 * textmodes/texinfmt.el (batch-texinfo-format): Doc fix. (Bug#10207)
6798
6799 2011-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
6800
6801 * electric.el: Streamline electric-indent's hook.
6802 (electric-indent-chars): Revert to simple list.
6803 (electric-indent-functions): New var.
6804 (electric-indent-post-self-insert-function): Use it.
6805
6806 * progmodes/prolog.el (prolog-find-value-by-system): Avoid error when
6807 there's no inferior buffer (bug#10196).
6808 (prolog-consult-compile): Don't use toggle-read-only.
6809
6810 2011-12-02 Michael Albinus <michael.albinus@gmx.de>
6811
6812 * net/tramp-sh.el (tramp-maybe-open-connection): Handle user
6813 interrupt. (Bug#10187)
6814
6815 2011-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
6816
6817 * pcmpl-gnu.el (pcomplete/tar): large-file-warn-threshold can be nil
6818 (bug#9160).
6819
6820 * dired-aux.el (dired-query): Don't assume help-char is modifier-free
6821 (bug#10191).
6822
6823 2011-12-02 Juri Linkov <juri@jurta.org>
6824
6825 * info.el (Info-search): Display "end of manual" when Isearch
6826 reaches the end of single-file Info manual. (Bug#9918)
6827
6828 2011-12-02 Eli Zaretskii <eliz@gnu.org>
6829
6830 * isearch.el (isearch-message-prefix): Run the input method part
6831 of the prompt through bidi-string-mark-left-to-right. (Bug#10183)
6832
6833 2011-12-02 Juri Linkov <juri@jurta.org>
6834
6835 * isearch.el (isearch-occur): Use `word-search-regexp' for
6836 `isearch-word'.
6837 (isearch-search-and-update): Add condition for `isearch-word' and
6838 call `word-search-regexp'. (Bug#10145)
6839
6840 2011-12-01 Glenn Morris <rgm@gnu.org>
6841
6842 * eshell/em-hist.el (eshell-hist-initialize):
6843 Handle eshell-history-size nil and HISTSIZE set or unset.
6844 (eshell-history-file-name, eshell-history-size): Fix custom type.
6845
6846 2011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
6847
6848 * man.el (Man-completion-table): Fix the lambda case (bug#10168).
6849
6850 2011-12-01 Michael McNamara <mac@mail.brushroad.com>
6851
6852 * progmodes/verilog-mode.el (verilog-pretty-expr):
6853 Rework verilog-pretty-expr to handle new assignment operators in system
6854 verilog, such as += *= and the like.
6855 (verilog-assignment-operator-re): Regular expression to find the
6856 assigment operator in a verilog assignment.
6857 (verilog-assignment-operation-re): Regular expression to find an
6858 assignment statement for pretty-expr.
6859 (verilog-in-attribute-p): Query returns true if point is in an
6860 attribute context; used to skip these for expression line up from
6861 pretty-expr.
6862 (verilog-in-parameter-p): Query returns true if point is in an
6863 parameter definition context; used to skip these for expression
6864 line up from pretty-expr.
6865 (verilog-in-parenthesis-p): Query returns true if point is in a
6866 parenthetical expression, specifically ( ) but not [ ] or { };
6867 used by pretty-expr.
6868 (verilog-just-one-space): If there is no space, don't add one.
6869 (verilog-get-lineup-indent-2): Specifically skip just attribute
6870 contexts for expression lineup, rather than skipping all
6871 parenthetical expressions.
6872 (verilog-calculate-indent): Fix comment, and fix indent.
6873 (verilog-do-indent): Indent declarations in lists (suggested by
6874 Joachim Lechner).
6875 (verilog-mode-abbrev-table): Populate abbrev mode with the various
6876 skeleton items.
6877 (verilog-sk-ovm-class): Add skeleton for OVM classes (reported
6878 by Alain Mellan).
6879
6880 2011-12-01 Wilson Snyder <wsnyder@wsnyder.org>
6881
6882 * progmodes/verilog-mode.el (verilog-read-defines): Fix reading
6883 parameters with embedded comments. Reported by Ray Stevens.
6884 (verilog-calc-1, verilog-fork-wait-re) (verilog-forward-sexp,
6885 verilog-wait-fork-re): Fix indentation of "wait fork", bug407.
6886 Reported by Tim Holt.
6887 (verilog-auto): Fix AUTOing a upper module then AUTOing module
6888 instantiated by upper module causing wrong expansion until AUTOed a
6889 second time. Reported by K C Buckenmaier.
6890 (verilog-diff-auto): Fix showing .* as a difference when
6891 `verilog-auto-star-save' off. Reported by Dan Dever.
6892 (verilog-auto-reset, verilog-read-always-signals)
6893 (verilog-auto-reset-blocking-in-non): Fix AUTORESET including
6894 temporary signals in reset list if
6895 verilog-auto-reset-blocking-in-non is nil, and match assignment
6896 style to each signal's assignment type, bug381.
6897 Reported by Thomas Esposito.
6898 (verilog-sk-uvm-class, verilog-uvm-begin-re, verilog-uvm-end-re)
6899 (verilog-uvm-statement-re): Support UVM indentation and
6900 highlighting, with old OVM keywords only.
6901 (verilog-auto-tieoff, verilog-auto-tieoff-declaration):
6902 Support AUTOTIEOFF creating non-wire data types.
6903 Suggested by Jonathan Greenlaw.
6904 (verilog-auto-insert-lisp, verilog-delete-to-paren)
6905 (verilog-forward-sexp-cmt, verilog-forward-sexp-ign-cmt)
6906 (verilog-inject-sense, verilog-read-inst-pins)
6907 (verilog-read-sub-decls, verilog-read-sub-decls-line):
6908 Fix mismatching parenthesis inside commented out code when deleting
6909 AUTOINST, bug383. Reported by Jonathan Greenlaw.
6910 (verilog-auto-ascii-enum): Fix AUTOASCIIENUM one-hot with
6911 non-numeric vector width. Reported by Alex Reed.
6912 (verilog-auto-ascii-enum): Add "onehot" option to work around not
6913 detecting signals with parameter widths. Reported by Alex Reed.
6914 (verilog-auto-delete-trailing-whitespace):
6915 With `verilog-auto-delete-trailing-whitespace' remove trailing
6916 whitespace in auto expansion, bug371. Reported by Brad Dobbie.
6917 (verilog-run-hooks, verilog-scan-cache-flush, verilog-syntax-ppss):
6918 Fix verilog-scan-cache corruption when running user AUTO expansion
6919 hooks that call indentation routines.
6920 (verilog-simplify-range-expression): Fix typo ignoring lower case
6921 identifiers.
6922 (verilog-delete-auto): Fix delete-autos to also remove user created
6923 automatics, as long as they start with AUTO.
6924 (verilog-batch-diff-auto, verilog-diff-auto)
6925 (verilog-diff-function): Add `verilog-diff-auto' and bind to
6926 "C-c?" to report differences in AUTO expansion, ignoring spaces.
6927 (verilog-backward-syntactic-ws-quick, verilog-beg-of-defun-quick)
6928 (verilog-in-paren-quick, verilog-re-search-backward-quick)
6929 (verilog-re-search-forward-quick, verilog-syntax-ppss):
6930 Fix calling `syntax-ppss' when inside auto expansions as the ppss hook
6931 is disabled and its cache will get corrupt, causing AUTOS not to
6932 expand. Instead use only -quick functions.
6933 (verilog-scan-region): Fix scanning over escaped quotes.
6934 (verilog-inside-comment-or-string-p, verilog-inside-comment-p)
6935 (verilog-re-search-backward-quick)
6936 (verilog-re-search-forward-quick, verilog-scan): verilog-scan and
6937 related functions now ignore strings, to fix misparsing of strings
6938 with magic comments embedded in them.
6939 (verilog-read-auto-template):
6940 Fix 'verilog-auto-inst-template-numbers' with extra newline before (.
6941 Reported by Brad Dobbie.
6942 (verilog-read-auto-template):
6943 Fix 'verilog-auto-inst-template-numbers' with comments.
6944 Reported by Brad Dobbie.
6945 (verilog-auto-inst, verilog-auto-inst-param)
6946 (verilog-auto-inst-sort): Add 'verilog-auto-inst-sort' to reduce
6947 merge conflicts with AUTOINST, bug358. Reported by Brad Dobbie.
6948 (verilog-auto-inst-template-numbers): Add 'lhs' policy for
6949 debugging templates without merge conflicts, bug357.
6950 Reported by Brad Dobbie.
6951 (verilog-read-auto-template):
6952 Fix verilog-auto-inst-template-numbers with multiple templates.
6953 Reported by Brad Dobbie.
6954 (verilog-define-abbrev): Fix verilog-mode abbrevs to be system
6955 abbrevs so user won't be asked to save.
6956 (verilog-read-auto-lisp-present): Fix to start at beginning of
6957 buffer in case called outside of verilog-auto.
6958 (verilog-simplify-range-expression): Fix AUTOWIRE expanding "X-1+1"
6959 to "X-2". Reported by Matthew Myers.
6960 (verilog-auto, verilog-auto-inout-in): Add AUTOINOUTIN for creating
6961 all inputs from module templates. Reported by Leith Johnson.
6962 (verilog-module-inside-filename-p): Fix locating programs as with
6963 modules.
6964 (verilog-auto-inst-port): Fix vl-width expressions when using
6965 verilog-auto-inst-param-value, bug331. Reported by Julian Gorfajn.
6966 (verilog-decls-get-regs, verilog-decls-get-signals,
6967 verilog-decls-get-vars, verilog-decls-get-wires, verilog-decls-new,
6968 verilog-modi-cache-add-vars, verilog-modi-cache-add-wires,
6969 verilog-read-decls): Combine reg and wire structures into one var
6970 structure to represent SystemVerilog concepts.
6971 (verilog-auto-ascii-enum, verilog-auto-logic, verilog-auto-reg)
6972 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-wire)
6973 (verilog-auto-wire-type, verilog-insert-definition):
6974 Add verilog-auto-wire-type and AUTOLOGIC to support using
6975 SystemVerilog "logic" keyword instead of "wire"/"reg".
6976 (verilog-auto-reg-input, verilog-decls-get-signals): Fix AUTOWIRE
6977 to declares outputs that also have assignments (presumably in an
6978 ifdef or generate if so there's not a driver conflict).
6979 Reported by Matthew Myers.
6980 (verilog-auto-declare-nettype, verilog-insert-definition):
6981 Add verilog-auto-declare-nettype to fix declarations using
6982 `default_nettype none. Reported by Julian Gorfajn.
6983 (verilog-read-always-signals-recurse, verilog-read-decls)
6984 (verilog-read-sub-decls-gate): Fix infinite loop with (*) and
6985 malformed end statement, bug325. Reported by Joshua Wise and
6986 Andrew Drake.
6987 (verilog-auto-star-safe, verilog-delete-auto-star-implicit)
6988 (verilog-inst-comment-re): Fix not deleting Interfaced comment
6989 when expanding .* in interfaces, bug320.
6990 Reported by Pierre-David Pfister.
6991 (verilog-read-module-name): Fix import statements between module
6992 name and open parenthesis, bug317.
6993 Reported by Pierre-David Pfister.
6994 (verilog-simplify-range-expression): Fix simplification of
6995 multiplications inside AUTOWIRE connections, bug303.
6996 (verilog-auto-inst-port): Support parameter expansion in
6997 multidimensional arrays.
6998 (verilog-read-decls): Fix AUTOREG etc looking for "endproperty"
6999 after "assert property". Reported by Julian Gorfajn.
7000 (verilog-simplify-range-expression): Fix "couldn't merge" errors
7001 with multiplication, bug303.
7002 (verilog-read-decls): Fix parsing of unsigned data types, bug302.
7003 Reported by Jan Frode Lonnum.
7004
7005 2011-11-30 Juanma Barranquero <lekktu@gmail.com>
7006
7007 * htmlfontify.el (hfy-page-header, hfy-post-html-hooks)
7008 (hfy-shell-file-name, hfy-shell):
7009 * international/fontset.el (x-decompose-font-name): Fix typos.
7010
7011 2011-11-29 Ken Brown <kbrown@cornell.edu>
7012
7013 * progmodes/gdb-mi.el: Fix bug#9853, bug#9858, and bug#9878.
7014 (gdb-version): Remove defvar.
7015 (gdb-supports-non-stop): New defvar, replacing `gdb-version'.
7016 (gdb-gud-context-command, gdb-non-stop-handler)
7017 (gdb-current-context-command, gdb-stopped): Use it.
7018 (gdb-init-1): Enable pretty printing here.
7019 (gdb-non-stop-handler): Don't enable pretty-printing here.
7020 Check to see if the target supports non-stop mode; if not, turn off
7021 non-stop mode. Use the following.
7022 (gdb-check-target-async): New defun.
7023 (gud-watch, gdb-stopped): Fix whitespace.
7024 (gdb-get-source-file): Don't try to display the source file if
7025 `gdb-main-file' is nil.
7026
7027 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
7028
7029 * align.el: Try to generate fewer markers (bug#10047).
7030 (align--set-marker): New macro.
7031 (align-region): Use it.
7032
7033 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
7034
7035 * isearch.el (isearch-yank-x-selection): Deactivate mark (bug#10022).
7036
7037 2011-11-29 Chong Yidong <cyd@gnu.org>
7038
7039 * indent.el (indent-for-tab-command, indent-according-to-mode):
7040 Doc fix.
7041 (indent-region): Doc fix. Switch nested ifs to equivalent cond.
7042
7043 2011-11-29 Michael Albinus <michael.albinus@gmx.de>
7044
7045 * vc/diff-mode.el (diff-find-file-name): Make `read-file-name'
7046 aware of remote file names. (Bug#10124)
7047
7048 2011-11-29 Chong Yidong <cyd@gnu.org>
7049
7050 * frame.el (auto-raise-mode, auto-lower-mode): Doc fix.
7051
7052 2011-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
7053
7054 * files.el (find-file): Don't use force-same-window (bug#10144).
7055 * window.el (switch-to-buffer): Better match Emacs-23 behavior and only
7056 use pop-to-buffer if the selected window can't be used.
7057 (pop-to-buffer-same-window): Use display-buffer--same-window-action.
7058
7059 2011-11-28 Eli Zaretskii <eliz@gnu.org>
7060
7061 * vc/diff-mode.el (diff-mode-map): Don't inherit 'z' => 'M-z' from
7062 special-mode-map.
7063
7064 2011-11-28 Chong Yidong <cyd@gnu.org>
7065
7066 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix default doc.
7067
7068 2011-11-27 Nick Roberts <nickrob@snap.net.nz>
7069
7070 * progmodes/gdb-mi.el (gdb-init-1): Condition execution of
7071 gdb-get-source-file-list on gdb-create-source-file-list.
7072
7073 2011-11-26 Eli Zaretskii <eliz@gnu.org>
7074
7075 * whitespace.el (whitespace-newline): Use a different foreground
7076 color for 16-color light-background displays.
7077
7078 2011-11-24 Chong Yidong <cyd@gnu.org>
7079
7080 * window.el (display-buffer--special-action): Doc fix.
7081
7082 2011-11-25 Juanma Barranquero <lekktu@gmail.com>
7083
7084 * emacs-lisp/avl-tree.el (avl-tree--do-copy, avl-tree-create)
7085 (avl-tree-compare-function, avl-tree-empty, avl-tree-enter)
7086 (avl-tree-delete, avl-tree-member, avl-tree-member-p, avl-tree-map)
7087 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar, avl-tree-copy)
7088 (avl-tree-clear, avl-tree-stack, avl-tree-stack-pop)
7089 (avl-tree-stack-first):
7090 * emacs-lisp/cconv.el (cconv--analyse-use):
7091 * net/gnutls.el (gnutls-negotiate): Fix typos.
7092
7093 2011-11-24 Glenn Morris <rgm@gnu.org>
7094
7095 * lpr.el (lpr-windows-system, lpr-lp-system):
7096 * mail/binhex.el (binhex-begin-line):
7097 * progmodes/grep.el (grep-history, grep-find-history):
7098 * textmodes/flyspell.el:
7099 * vc/pcvs-defs.el (cvs-global-menu):
7100 * vc/vc-bzr.el (vc-bzr-admin-checkout-format-file):
7101 * vc/vc-mtn.el (vc-mtn-admin-dir, vc-mtn-admin-format):
7102 * vc/vc-cvs.el (vc-cvs-registered): Give them basic doc-strings.
7103
7104 * net/tls.el: Fix case of "GnuTLS".
7105
7106 * paths.el (rmail-file-name): Format doc-string for make-docfile.
7107
7108 * version.el (emacs-build-system): Give it a doc-string.
7109
7110 2011-11-24 Juri Linkov <juri@jurta.org>
7111
7112 * view.el (view-buffer): Revert 2011-07-19T15:01:49Z!larsi@gnus.org from 2011-07-19 (bug#8615).
7113
7114 2011-11-24 Glenn Morris <rgm@gnu.org>
7115
7116 * mail/rmailmm.el (rmail-mime): When rmail-enable-mime is non-nil,
7117 if called on a non-mime message just toggle the headers. (Bug#8006)
7118
7119 2011-11-24 Juanma Barranquero <lekktu@gmail.com>
7120
7121 * allout.el (allout-setup, allout-auto-save-temporarily-disabled)
7122 (allout-lead-with-comment-string, allout-structure-deleted-hook)
7123 (allout-mode, allout-chart-subtree, allout-hotspot-key-handler)
7124 (allout-rebullet-heading, allout-open-sibtopic)
7125 (allout-toggle-current-subtree-encryption)
7126 (allout-toggle-subtree-encryption, allout-encrypt-string)
7127 (allout-next-topic-pending-encryption, allout-adjust-file-variable)
7128 (allout-distinctive-bullets-string, allout-auto-activation):
7129 * window.el (window-normalize-buffer-to-display):
7130 * progmodes/verilog-mode.el (verilog-batch-indent):
7131 * textmodes/bibtex.el (bibtex-field-braces-opt)
7132 (bibtex-field-strings-opt):
7133 * vc/cvs-status.el (cvs-tree-merge):
7134 Fix typos.
7135
7136 2011-11-23 Michael Albinus <michael.albinus@gmx.de>
7137
7138 * rfn-eshadow.el (rfn-eshadow-update-overlay): Let-bind
7139 `non-essential' to t, in order to avoid remote connections.
7140
7141 2011-11-23 Eli Zaretskii <eliz@gnu.org>
7142
7143 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
7144 On MS-DOS and MS-Windows, compare with loaddefs.el
7145 case-insensitively.
7146
7147 2011-11-23 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
7148
7149 * mail/unrmail.el (unrmail): Always add blank line. (Bug#7743)
7150
7151 2011-11-23 Glenn Morris <rgm@gnu.org>
7152
7153 * paths.el (rmail-file-name): Reformat the doc-string so that it
7154 is picked up.
7155
7156 * mail/rmail.el (rmail-message-filter, rmail-auto-file): Doc fixes.
7157 (rmail-auto-file): Ignore case in the "special" field names,
7158 as mail-fetch-field does for all others.
7159
7160 * mail/rmail.el (rmail-forward):
7161 * mail/rmailkwd.el (rmail-set-label):
7162 * mail/rmailout.el (rmail-output, rmail-output-as-seen)
7163 (rmail-output-body-to-file): Give error if no message. (Bug#10082)
7164
7165 * mail/rmail.el (rmail-current-message): Doc fix.
7166
7167 * mail/rmail.el (rmail-message-filter): Mark as obsolete. (Bug#2624)
7168
7169 2011-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
7170
7171 * server.el (server-eval-and-print): Allow C-g (bug#6585).
7172
7173 2011-11-22 Glenn Morris <rgm@gnu.org>
7174
7175 * mail/rmailmm.el (test-rmail-mime-handler)
7176 (test-rmail-mime-bulk-handler)
7177 (test-rmail-mime-multipart-handler): Move tests to test/ directory.
7178
7179 2011-11-21 Juri Linkov <juri@jurta.org>
7180
7181 * calc/calc.el (calc-read-key-sequence):
7182 Let-bind `input-method-function' to nil. (Bug#10018)
7183
7184 2011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
7185
7186 * emacs-lisp/cl-indent.el (common-lisp-loop-part-indentation):
7187 Tell the caller that the next line needs recomputation, even
7188 though it doesn't start a sexp (bug#10094).
7189
7190 2011-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
7191
7192 * emacs-lisp/autoload.el (autoload-generate-file-autoloads): Simplify.
7193
7194 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
7195
7196 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
7197 Use force-same-window.
7198
7199 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
7200
7201 * descr-text.el (describe-char-unicode-data):
7202 * json.el (json-string-escape):
7203 * mail/footnote.el (footnote-unicode-string, footnote-unicode-regexp)
7204 (Footnote-unicode, Footnote-style-p):
7205 * net/ntlm.el (ntlm-get-password-hashes): Fix typos.
7206
7207 2011-11-20 Chong Yidong <cyd@gnu.org>
7208
7209 * window.el (replace-buffer-in-windows): Restore interactive spec.
7210
7211 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
7212
7213 * electric.el (electric-indent-mode): Fix last change (too optimistic).
7214
7215 * emacs-lisp/bytecomp.el: Silence obsolete warnings more reliably.
7216 (byte-compile-global-not-obsolete-vars): New var.
7217 (byte-compile-check-variable, byte-compile-make-obsolete-variable):
7218 Use it.
7219 (byte-compile-warn-obsolete): Align text with the one in *Help*.
7220
7221 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
7222
7223 * progmodes/cwarn.el (cwarn-is-enabled, cwarn-font-lock-keywords):
7224 * progmodes/pascal.el (electric-pascal-equal):
7225 * textmodes/reftex-dcr.el (reftex-view-crossref-from-bibtex):
7226 * xml.el (xml-substitute-special): Fix typos.
7227
7228 2011-11-20 Glenn Morris <rgm@gnu.org>
7229
7230 * mail/rmail.el (rmail-enable-mime-composing): Make it a defcustom.
7231 (rmail-insert-mime-forwarded-message-function, rmail-mime-feature):
7232 Doc fixes.
7233 (rmail-decode-mime-charset): Mark as obsolete.
7234
7235 * mail/rmailsum.el (rmail-message-regexp-p-1):
7236 * mail/rmail.el (rmail-search-message, rmail-forward, rmail-resend):
7237 Before using mime functions, check they are set. (Bug#10077)
7238
7239 2011-11-19 Juri Linkov <juri@jurta.org>
7240
7241 * info.el (Info-finder-find-node): Use `package--builtins' instead
7242 of `package-alist'. Use node names formed by the pattern "Keyword "
7243 and the keyword name.
7244
7245 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
7246
7247 * progmodes/sh-script.el (sh-assignment-regexp): Add entry for bash.
7248
7249 2011-11-19 Juri Linkov <juri@jurta.org>
7250
7251 * info.el (Info-hide-note-references): Add `:set' tag to `defcustom'
7252 that calls `revert-buffer' on all Info buffers. (Bug#9915)
7253 (Info-revert-find-node): Remove let-bindings `old-buffer-name',
7254 `old-history', `old-history-forward'. Add let-binding
7255 `window-selected'. Remove calls to `kill-buffer',
7256 `switch-to-buffer' and `Info-mode'. Set `Info-current-file' to nil
7257 before calling `Info-find-node', so `Info-find-node-2' will reread
7258 the Info file. Restore window positions only when `window-selected'
7259 is non-nil.
7260
7261 2011-11-19 Juri Linkov <juri@jurta.org>
7262
7263 * isearch.el (isearch-lazy-highlight-new-loop):
7264 Remove condition `(not isearch-error)'. (Bug#9918)
7265
7266 * misearch.el (multi-isearch-search-fun): Add condition
7267 `(not bound)' to ignore lazy-highlighting search.
7268 Add the search-failed message "end of multi" when the end of
7269 multi-sequence is reached. Uncapitalize the search-failed
7270 message "Repeat for next buffer".
7271
7272 * info.el (Info-search): Add the search-failed message
7273 "end of the manual" when the end of the manual is reached
7274 in Isearch mode.
7275
7276 2011-11-19 Juri Linkov <juri@jurta.org>
7277
7278 * info.el (Info-find-node-2, Info-select-node, Info-history-find-node):
7279 Use non-destructive `remove' instead of `delete' because
7280 `Info-history-list' stored to `Info-isearch-initial-history-list' in
7281 `Info-isearch-start' might need to be restored in `Info-isearch-end'.
7282
7283 2011-11-19 Juri Linkov <juri@jurta.org>
7284
7285 * isearch.el (isearch-edit-string): Let-bind `history-add-new-input'
7286 to nil instead of binding `search-ring' and `regexp-search-ring'.
7287 (Bug#9185)
7288
7289 2011-11-19 Eli Zaretskii <eliz@gnu.org>
7290
7291 * simple.el (line-move): Force movement by logical lines for any
7292 hscrolled window, not only when auto-hscroll-mode is on.
7293 (line-move-visual): Update doc string to that effect. (Bug#10076)
7294
7295 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
7296
7297 * language/european.el (macintosh): Define as alias for mac-roman.
7298
7299 2011-11-19 Eli Zaretskii <eliz@gnu.org>
7300
7301 * mail/rmailmm.el (rmail-mime-display-header)
7302 (rmail-mime-display-tagline, rmail-mime-display-body): New defsubsts.
7303 (rmail-mime-entity-segment, rmail-mime-toggle-raw)
7304 (rmail-mime-toggle-hidden, rmail-mime-insert-text)
7305 (rmail-mime-insert-bulk, rmail-mime-insert-multipart)
7306 (rmail-mime-insert, rmail-mime-insert-tagline): Use them instead
7307 of a raw aref.
7308 (rmail-mime-entity-segment): To get past the tagline, move forward
7309 2 more lines, to account for the 2 empty lines that precede and
7310 follow the line with the buttons.
7311 (rmail-mime-update-tagline): Move one more line, to get past the
7312 empty line that follows the buttons in the tagline. (Bug#9520)
7313
7314 2011-11-19 Martin Rudalics <rudalics@gmx.at>
7315
7316 * window.el (window-max-delta-1, window-min-delta-1)
7317 (window-min-size-1, window-state-get-1, window-state-put-1)
7318 (window-state-put-2): Use "window--" prefix.
7319
7320 2011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
7321
7322 * emacs-lisp/smie.el: Improve warnings and conflict detection.
7323 (smie-warning-count): New var.
7324 (smie-set-prec2tab): Use it.
7325 (smie-bnf->prec2): Improve warnings. Add docstring.
7326 (smie-bnf--closer-alist): Rename from smie-bnf-closer-alist.
7327 (smie-bnf--set-class): New function.
7328 (smie-bnf--classify): Rename from smie-bnf-classify. Rewrite to fix
7329 corner case.
7330
7331 * progmodes/compile.el: Obey compilation-first-column in dest buffer.
7332 (compilation-error-properties, compilation-move-to-column):
7333 Handle compilation-first-column while in the target buffer.
7334
7335 * progmodes/cc-engine.el (c-remove-stale-state-cache-backwards):
7336 Don't hardcode point-min==1.
7337
7338 * eshell/esh-cmd.el (eshell-do-eval): Handle `setq' (bug#9907).
7339 (eshell-rewrite-for-command): Remove workaround.
7340 (eshell-do-pipelines, eshell-do-pipelines-synchronously)
7341 (eshell-do-eval, eshell-exec-lisp): Avoid gratuitous setq.
7342 * eshell/esh-util.el (eshell-condition-case, eshell-for): Use declare.
7343
7344 * files-x.el (modify-file-local-variable): Obey commenting conventions.
7345
7346 2011-11-17 Glenn Morris <rgm@gnu.org>
7347
7348 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
7349 Ignore buffer-local generated-autoload-file if it is the same
7350 as the global value. (Bug#10049)
7351
7352 2011-11-17 Juanma Barranquero <lekktu@gmail.com>
7353
7354 * textmodes/reftex-toc.el (reftex-toc-return-marker, reftex-toc-help)
7355 (reftex-toc, reftex-toc, reftex-toc-dframe-p, reftex-toc-next-heading)
7356 (reftex-toc-previous-heading, reftex-toc-max-level)
7357 (reftex-toc-goto-line-and-hide, reftex-toc-show-calling-point)
7358 (reftex-toc-quit, reftex-toc-revert, reftex-toc-jump)
7359 (reftex-toc-do-promote, reftex-toc-promote-prepare)
7360 (reftex-toc-promote-action, reftex-toc-extract-section-number)
7361 (reftex-toc-load-all-files-for-promotion, reftex-toc-rename-label)
7362 (reftex-toc-rename-label, reftex-toc-visit-location)
7363 (reftex-toc-visit-location, reftex-toggle-auto-toc-recenter)
7364 (reftex-toggle-auto-toc-recenter, reftex-toggle-auto-toc-recenter)
7365 (reftex-make-separate-toc-frame): Fix typos, and use TOC consistently,
7366 leaving "*toc*" only for references to the buffer.
7367
7368 2011-11-17 Martin Rudalics <rudalics@gmx.at>
7369
7370 * window.el (window-resize, delete-window, split-window):
7371 Replace window-splits by window-combination-resize.
7372 * cus-start.el (window-splits): Replace by window-combination-resize.
7373
7374 2011-11-17 Glenn Morris <rgm@gnu.org>
7375
7376 * progmodes/sh-script.el (sh-font-lock-keywords-var):
7377 Make bash entry derive from sh entry, not shell entry.
7378
7379 2011-11-16 Michael Albinus <michael.albinus@gmx.de>
7380
7381 * net/tramp-sh.el (tramp-sh-handle-file-truename): Cache only the
7382 local file name.
7383
7384 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
7385
7386 * menu-bar.el (menu-bar-file-menu):
7387 * printing.el (pr-ps-utility):
7388 * calendar/icalendar.el (icalendar, icalendar--convert-tz-offset)
7389 (icalendar--convert-to-ical, icalendar--convert-ordinary-to-ical)
7390 (icalendar--convert-weekly-to-ical, icalendar--convert-yearly-to-ical)
7391 (icalendar--convert-sexp-to-ical, icalendar--convert-block-to-ical)
7392 (icalendar--convert-float-to-ical, icalendar--convert-date-to-ical)
7393 (icalendar--convert-cyclic-to-ical)
7394 (icalendar--convert-anniversary-to-ical, icalendar-import-buffer)
7395 (icalendar--convert-ical-to-diary)
7396 (icalendar--convert-recurring-to-diary)
7397 (icalendar--convert-non-recurring-all-day-to-diary)
7398 (icalendar-import-format-sample):
7399 * progmodes/idlw-shell.el (idlwave-shell-mode):
7400 * progmodes/vhdl-mode.el (vhdl-mode, vhdl-print-two-column)
7401 (vhdl-print-customize-faces, vhdl-mode, vhdl-ps-print-settings)
7402 (vhdl-ps-print-init): Fix typos.
7403
7404 2011-11-16 Ken Manheimer <ken.manheimer@gmail.com>
7405
7406 * allout.el, allout-widgets.el (file metadata): Attribute copyright to
7407 FSF and collapse date sequence, obscure author/maintainer email address
7408 better, remove extra version line, track relocation of author's webpage.
7409
7410 * progmodes/python.el (python-pdbtrack-input-prompt)
7411 (python-pdbtrack-track-stack-file): Adjust to recognize ipdb as well as
7412 regular python pdb prompts. Adjustments shamelessly taken exactly as
7413 suggested in EmacsWiki page (tiny change):
7414 http://www.emacswiki.org/PythonProgrammingInEmacs#toc14
7415
7416 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
7417
7418 * expand.el (expand-pos, expand-index, expand-point):
7419 Remove redundant info from docstring.
7420 (expand-add-abbrevs): Doc fix.
7421 (expand-c-sample-expand-list, expand-sample-lisp-mode-expand-list)
7422 (expand-sample-perl-mode-expand-list): Fix typos.
7423
7424 * net/dbus.el (dbus-event-member-name):
7425 * play/5x5.el (5x5-solve-rotate-left, 5x5-solver-output):
7426 * term/pc-win.el (msdos-create-frame-with-faces):
7427 * textmodes/texinfmt.el (texinfo-format-image): Fix typos.
7428
7429 2011-11-16 Martin Rudalics <rudalics@gmx.at>
7430
7431 * window.el (split-window, window-state-get-1)
7432 (window-state-put-1, window-state-put-2): Rename occurrences of
7433 window-nest to window-combination-limit.
7434 * cus-start.el (window-nest): Rename to window-combination-limit.
7435
7436 2011-11-16 Chong Yidong <cyd@gnu.org>
7437
7438 * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip
7439 regexp (Bug#10033).
7440
7441 2011-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
7442
7443 * tmm.el (tmm-prompt): Use minibuffer-with-setup-hook (bug#10053).
7444 `completing-read' will remove *Completions* and will preserve
7445 current-buffer for us.
7446 (tmm-add-prompt): Users of *Completions* will always (re)set its
7447 major mode.
7448 (tmm-old-comp-map): Remove.
7449
7450 2011-11-16 Glenn Morris <rgm@gnu.org>
7451
7452 * mail/rmailedit.el: Require rmailmm when compiling.
7453 (rmail-old-mime-state): New declaration.
7454 (rmail-edit-current-message): If editing a mime message,
7455 edit the "raw" message from the mbox buffer.
7456 (rmail-cease-edit): Handle mime messages. (Bug#9840)
7457
7458 2011-11-15 Glenn Morris <rgm@gnu.org>
7459
7460 * mail/rmailmm.el (rmail-mime-toggle-raw): Remove entity arg,
7461 which wasn't being used. Add optional arg to force given state.
7462 (rmail-mime): Add optional arg to force given state.
7463
7464 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
7465
7466 * allout.el (allout-encryption-plaintext-sanitization-regexps):
7467 * frame.el (display-mm-dimensions-alist):
7468 * outline.el (outline-mode-menu-bar-map, outline-move-subtree-up)
7469 (outline-move-subtree-down):
7470 * net/newst-treeview.el (newsticker--treeview-do-get-node-of-feed)
7471 (newsticker--treeview-do-get-node):
7472 * net/quickurl.el (quickurl-list-buffer-name):
7473 * progmodes/dcl-mode.el (dcl-mode):
7474 * progmodes/gdb-mi.el (gdb-mapcar*):
7475 * progmodes/sql.el (sql-mode-oracle-font-lock-keywords): Fix typos.
7476
7477 2011-11-15 Glenn Morris <rgm@gnu.org>
7478
7479 * mail/rmail.el (rmail-file-coding-system): It's only ever used
7480 in a boolean sense, so just make it a boolean, and fix the doc.
7481 (rmail-show-mime-function, rmail-mime-feature)
7482 (rmail-require-mime-maybe): Doc fixes.
7483 (rmail-show-message-1): Check rmail-show-mime-function is non-nil.
7484
7485 * mail/rmailmm.el (rmail-show-mime): Doc fix.
7486
7487 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
7488
7489 * epg.el (epg-start-decrypt, epg-start-verify, epg-start-sign)
7490 (epg-start-encrypt, epg-start-export-keys, epg-start-import-keys)
7491 (epg-start-receive-keys, epg-start-delete-keys, epg-start-sign-keys)
7492 (epg-start-generate-key, epg-context-set-progress-callback): Fix typos.
7493
7494 2011-11-15 Glenn Morris <rgm@gnu.org>
7495
7496 * mail/rmailmm.el (rmail-mime-entity, rmail-mime-entity-segment)
7497 (rmail-mime-shown-mode, rmail-mime-hidden-mode, rmail-mime-raw-mode)
7498 (rmail-mime-toggle-hidden, rmail-mime-insert-tagline)
7499 (rmail-mime-insert-header, rmail-mime-handle, rmail-mime-parse)
7500 (rmail-mime, rmail-show-mime): Doc fixes.
7501
7502 * term/ns-win.el (mode-line-frame-identification):
7503 Leave it alone. (Bug#10051)
7504
7505 * simple.el (mark-whole-buffer): Doc fix. (Bug#10023)
7506
7507 * mail/rmailout.el (rmail-output-to-rmail-buffer):
7508 Handle empty buffers. (Bug#9978)
7509
7510 2011-11-14 Juanma Barranquero <lekktu@gmail.com>
7511
7512 * international/mule.el (define-charset):
7513 * mail/rmailmm.el (rmail-mime-find-header-encoding):
7514 * progmodes/prolog.el (prolog-mode-hook, prolog-inferior-mode-hook):
7515 * progmodes/verilog-mode.el (verilog-backward-token):
7516 * textmodes/ispell.el (lookup-words):
7517 * textmodes/sgml-mode.el (sgml-guess-indent): Fix typos.
7518
7519 2011-11-14 Glenn Morris <rgm@gnu.org>
7520
7521 * progmodes/executable.el
7522 (executable-make-buffer-file-executable-if-script-p):
7523 Handle file-modes returning nil.
7524
7525 * mail/rmailsum.el (rmail-summary): Remove movement to beginning of
7526 message - not necessary, and causes problems. (Bug#9831)
7527
7528 * mail/rmailsum.el (rmail-new-summary): Preserve message number.
7529
7530 * mail/rmail.el (rmail-no-mail-p): Remove mode-line N/M indicator.
7531
7532 * mail/rmailsum.el (rmail-summary, rmail-new-summary)
7533 (rmail-new-summary-1): Allow empty summaries. (Bug#9964)
7534 (rmail-new-summary): Remember that rmail-summary-buffer is buffer-local.
7535
7536 2011-11-12 Martin Rudalics <rudalics@gmx.at>
7537
7538 * window.el (window-resize, delete-window): Use window-splits
7539 variable instead of function.
7540 (window-state-get-1, window-state-put-2, window-state-put):
7541 Don't deal with windows' splits status.
7542
7543 2011-11-12 Glenn Morris <rgm@gnu.org>
7544
7545 * apropos.el (apropos-do-all, apropos-library, apropos-value)
7546 (apropos-documentation): Doc fixes.
7547
7548 2011-11-11 Juanma Barranquero <lekktu@gmail.com>
7549
7550 * progmodes/idlw-shell.el (idlwave-shell-make-new-bp-overlay):
7551 * textmodes/sgml-mode.el (html-tag-help): Fix typos.
7552
7553 2011-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
7554
7555 * electric.el (electric-indent-post-self-insert-function): Make it
7556 possible for a char to only indent in some circumstances.
7557 (electric-indent-mode): Simplify.
7558
7559 2011-11-11 Martin Rudalics <rudalics@gmx.at>
7560
7561 * window.el (windows-with-parameter): Remove unused function.
7562 (windows-at-side): Rename to window-at-side-list.
7563 (window-check, window-atom-check, window-atom-check-1)
7564 (window-side-check, window-size-ignore, window-size-fixed-1)
7565 (window-in-direction-2): Prefix with "window--".
7566 (window-tree-1): Rename to window--subtree, fix doc-string.
7567
7568 2011-11-11 Glenn Morris <rgm@gnu.org>
7569
7570 * subr.el (eval-after-load): If FILE is already loaded,
7571 evaluate FORM before it gets wrapped in more stuff. (Bug#10009)
7572
7573 2011-11-10 Glenn Morris <rgm@gnu.org>
7574
7575 * vc/vc-svn.el (vc-svn-create-repo, vc-svn-modify-change-comment):
7576 Call svn via vc-svn-command rather than vc-do-command.
7577 (vc-svn-command): Add --non-interactive. (Bug#9993)
7578 (vc-svn-update, vc-svn-merge-news): No need for --non-interactive.
7579
7580 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
7581 Add toggle-read-only. (Bug#7292)
7582 * files.el (toggle-read-only): Mention that it should only
7583 be used interactively. (Bug#10006)
7584
7585 2011-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
7586
7587 * progmodes/compile.el (compilation-error-regexp-alist-alist):
7588 Adjust regexp for OCaml warnings.
7589
7590 * electric.el (electric-pair-post-self-insert-function): Let user
7591 turn it off buffer-locally (bug#9932).
7592
7593 * progmodes/python.el (python-beginning-of-statement):
7594 Rewrite (bug#2703).
7595
7596 * progmodes/compile.el: Better handle TABs (bug#9749).
7597 (compilation-internal-error-properties)
7598 (compilation-next-error-function): Obey the target buffer's
7599 compilation-error-screen-columns.
7600
7601 2011-11-09 Juanma Barranquero <lekktu@gmail.com>
7602
7603 * progmodes/meta-mode.el: Remove obsolete comments.
7604 (meta-right-comment-regexp, meta-ignore-comment-regexp):
7605 Fix typos in docstrings.
7606
7607 2011-11-09 Martin Rudalics <rudalics@gmx.at>
7608
7609 * window.el (window-size-fixed-p): Rewrite doc-string.
7610 (window-resizable-p): Rename to window--resizable-p. Update callers.
7611 (window--resizable): New function. Make all callers of
7612 window-resizable call window--resizable instead.
7613 (window-resizable): Rewrite in terms of window--resizable.
7614
7615 2011-11-08 Glenn Morris <rgm@gnu.org>
7616
7617 * progmodes/delphi.el (delphi-mode-syntax-table):
7618 Let define-derived-mode define a proper syntax table. (Bug#9994)
7619
7620 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
7621
7622 * window.el: Stay away from defsubst.
7623 (window-list-no-nils): Remove.
7624 (window-state-get-1, window-state-get): Use backquote instead.
7625
7626 2011-11-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
7627
7628 * emacs-lisp/find-func.el (find-function-read):
7629 Fix incorrect use of default argument in `completing-read'.
7630
7631 2011-11-08 Martin Rudalics <rudalics@gmx.at>
7632
7633 * window.el (display-buffer-function, special-display-function):
7634 Mention display-buffer-record-window but do not mention
7635 help-setup parameter in doc-strings.
7636 (window-min-delta): Fix doc-string typo.
7637
7638 2011-11-08 Chong Yidong <cyd@gnu.org>
7639
7640 * window.el (window-total-height, window-total-width): Doc fix.
7641 (window-body-size): Move from C.
7642 (window-body-height, window-body-width): Move to C.
7643
7644 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
7645
7646 * window.el: Make special-display like display-buffer-alist (bug#9532).
7647 (display-buffer--special-action): New function, morphed
7648 from display-buffer--special.
7649 (display-buffer): Use it to handle special-display-buffers at higher
7650 priority (just after display-buffer-alist).
7651 (display-buffer-fallback-action, display-buffer--other-frame-action)
7652 (pop-to-buffer-same-window): Remove display-buffer--special.
7653
7654 2011-11-07 Glenn Morris <rgm@gnu.org>
7655
7656 * calendar/cal-menu.el (cal-menu-set-date-title):
7657 Do nothing if not in a calendar. (Bug#9976)
7658
7659 2011-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
7660
7661 * files.el (find-file): Always use selected-window.
7662
7663 2011-11-07 Martin Rudalics <rudalics@gmx.at>
7664
7665 * window.el (window-combinations): Make WINDOW argument
7666 mandatory. Rewrite doc-string.
7667 (walk-window-subtree, window-atom-check, window-min-delta)
7668 (window-max-delta, window--resize-this-window)
7669 (window--resize-root-window-vertically, window-tree)
7670 (balance-windows, window-state-put): Rewrite doc-strings as to
7671 not mention the term "subwindow".
7672 (window--resize-subwindows-skip-p): Rename to
7673 window--resize-child-windows-skip-p.
7674 (window--resize-subwindows-normal): Rename to
7675 window--resize-child-windows-normal.
7676 (window--resize-subwindows): Rename to
7677 window--resize-child-windows.
7678 (window-or-subwindow-p): Rename to window--in-subtree-p.
7679
7680 2011-11-07 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
7681
7682 * mail/rmail.el (rmail-get-new-mail, rmail-insert-inbox-text):
7683 Ensure that mbox format messages end in two newlines (Bug#9974).
7684
7685 2011-11-06 Chong Yidong <cyd@gnu.org>
7686
7687 * window.el (window-combination-p): Function deleted; its
7688 side-effect is not used in any existing code.
7689 (window-combinations, window-combined-p): Call window-*-child
7690 directly.
7691
7692 2011-11-05 Chong Yidong <cyd@gnu.org>
7693
7694 * window.el (window-valid-p): Rename from window-any-p.
7695 (window-size-ignore, window-state-get): Callers changed.
7696 (window-normalize-window): Rename from window-normalize-any-window.
7697 New arg LIVE-ONLY, replacing window-normalize-live-window.
7698 (window-normalize-live-window): Delete.
7699 (window-combination-p, window-combined-p, window-combinations)
7700 (walk-window-subtree, window-atom-root, window-min-size)
7701 (window-sizable, window-sizable-p, window-size-fixed-p)
7702 (window-min-delta, window-max-delta, window-resizable)
7703 (window-resizable-p, window-full-height-p, window-full-width-p)
7704 (window-current-scroll-bars, window-point-1, set-window-point-1)
7705 (window-at-side-p, window-in-direction, window-resize)
7706 (adjust-window-trailing-edge, maximize-window, minimize-window)
7707 (window-deletable-p, delete-window, delete-other-windows)
7708 (record-window-buffer, unrecord-window-buffer)
7709 (switch-to-prev-buffer, switch-to-next-buffer, window--delete)
7710 (quit-window, split-window, window-state-put)
7711 (set-window-text-height, fit-window-to-buffer)
7712 (shrink-window-if-larger-than-buffer): Callers changed.
7713
7714 2011-11-04 Eli Zaretskii <eliz@gnu.org>
7715
7716 * mail/rmail.el (rmail-simplified-subject): Decode subject with
7717 rfc2047-decode-string.
7718 (rmail-mime-toggle-hidden): Declare to avoid byte-compilation
7719 warnings.
7720
7721 * window.el (window-body-height, window-body-width): Mention in
7722 the doc string that the return values are in frame's canonical
7723 units. (Bug#9949)
7724
7725 2011-11-03 Alan Mackenzie <acm@muc.de>
7726
7727 * progmodes/cc-langs.el (c-nonlabel-token-2-key): New variable for
7728 change in cc-engine.el.
7729
7730 2011-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
7731
7732 * window.el (switch-to-buffer): Use `force-same-window' interactively.
7733
7734 2011-11-02 Martin Rudalics <rudalics@gmx.at>
7735
7736 * window.el (quit-window): Call unrecord-window-buffer after
7737 showing another buffer in the window. (Bug#9937)
7738 (bury-buffer): Call switch-to-prev-buffer with second argument `bury'.
7739
7740 2011-11-02 Juanma Barranquero <lekktu@gmail.com>
7741
7742 * vc/vc-bzr.el (vc-bzr-state, vc-bzr-after-dir-status):
7743 Accept status with more than 9 shelves. (Bug#9935)
7744 Reported by Colin D Bennett <colin@gibibit.com>.
7745
7746 2011-11-01 Martin Rudalics <rudalics@gmx.at>
7747
7748 * help.el (with-help-window): Don't reference
7749 temp-buffer-show-specifiers in doc-string.
7750
7751 2011-10-31 Andreas Schwab <schwab@linux-m68k.org>
7752
7753 * subr.el (keymap--menu-item-with-binding): Ignore item if not a
7754 menu-item.
7755
7756 2011-10-30 Vinicius Jose Latorre <viniciusjl@ig.com.br>
7757
7758 * whitespace.el: New version 13.2.2.
7759 (whitespace-newline-mode): Disable properly. Reported by Sarah
7760 <EmacsWiki>.
7761
7762 2011-10-30 Ulf Jasper <ulf.jasper@web.de>
7763
7764 * net/newst-treeview.el: Remove "Time-stamp".
7765 (newsticker--group-manage-orphan-feeds): Do not call
7766 newsticker--treeview-tree-update.
7767 (newsticker-treeview-update, newsticker-treeview):
7768 Call newsticker--treeview-tree-update if necessary.
7769
7770 2011-10-30 Martin Rudalics <rudalics@gmx.at>
7771
7772 * window.el (window-iso-combination-p, window-iso-combined-p)
7773 (window-iso-combinations): Remove "iso-" infix.
7774 Suggested by Chong Yidong.
7775 (window-min-size-1, window-size-fixed-1, window-min-delta-1)
7776 (window-max-delta-1, window-resize, window--resize-siblings)
7777 (window--resize-this-window, adjust-window-trailing-edge)
7778 (split-window, balance-windows-1)
7779 (shrink-window-if-larger-than-buffer):
7780 * calendar/calendar.el (calendar-generate-window):
7781 * help.el (resize-temp-buffer-window): Adjust callers accordingly.
7782
7783 2011-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
7784
7785 * eshell/esh-cmd.el (eshell-rewrite-for-command): Don't modify the list
7786 in place (bug#9907).
7787 (eshell-subcommand-arg-values, eshell-rewrite-named-command)
7788 (eshell-rewrite-if-command, eshell-rewrite-for-command)
7789 (eshell-structure-basic-command, eshell-rewrite-while-command)
7790 (eshell-invokify-arg, eshell-parse-pipeline, eshell-parse-command)
7791 (eshell-parse-subcommand-argument, eshell-parse-lisp-argument)
7792 (eshell-trap-errors, eshell-do-pipelines, eshell-do-eval)
7793 (eshell-do-pipelines-synchronously, eshell-eval-command):
7794 Use backquotes and prefer setq to set.
7795 (eshell-lookup-function, function-p-func, eshell-functionp): Remove.
7796 (eshell-macrop): Use functionp.
7797 (eshell-do-eval): Handle multiple expressions in `while' body.
7798
7799 2011-10-30 Chong Yidong <cyd@gnu.org>
7800
7801 * emulation/viper-cmd.el (viper-exec-change): Use push-mark
7802 instead of set-mark (Bug#9810).
7803
7804 2011-10-30 Chong Yidong <cyd@gnu.org>
7805
7806 * window.el (split-window-below, split-window-right): Rename from
7807 split-window-above-each-other and split-window-side-by-side
7808 respectively. All callers changed.
7809 (split-window-sensibly, split-window-sensibly): Use them.
7810 (split-window-keep-point): Doc fix.
7811
7812 * isearch.el: Add isearch-scroll property to split-window-below
7813 and split-window-right.
7814
7815 * follow.el (follow-mode):
7816 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
7817 * progmodes/ada-xref.el (ada-gdb-application):
7818 * emulation/vip.el (vip-buffer-in-two-windows):
7819 * image-dired.el (image-dired-dired-with-window-configuration):
7820 * dired-x.el (dired-do-find-marked-files):
7821 * dired.el (dired-pop-to-buffer):
7822 * bs.el (bs--show-with-configuration):
7823 * vc/emerge.el (emerge-setup-windows):
7824 * textmodes/two-column.el (2C-two-columns):
7825 * textmodes/reftex-toc.el (reftex-toc):
7826 * progmodes/gdb-mi.el (gdb-setup-windows):
7827 * progmodes/fortran.el (fortran-window-create):
7828 * net/newst-treeview.el (newsticker--treeview-window-init):
7829 * emulation/ws-mode.el (wordstar-C-o-map, wordstar-mode):
7830 * emulation/tpu-edt.el (tpu-gold-map):
7831 * emulation/crisp.el (crisp-mode-map):
7832 * calendar/calendar.el (calendar-basic-setup): Callers changed.
7833
7834 2011-10-29 Chong Yidong <cyd@gnu.org>
7835
7836 * subr.el (y-or-n-p): Add code for batch mode (Bug#9818).
7837
7838 * mouse.el (mouse-yank-primary): Push the mark (Bug#9894).
7839
7840 * textmodes/flyspell.el (flyspell-word): Fix char offset for
7841 forged Ispell output (Bug#7904).
7842
7843 * emacs-lisp/package.el (package-refresh-contents): Add autoload.
7844
7845 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
7846
7847 * doc-view.el: Avoid ugly errors about not finding nil.
7848 (doc-view-ghostscript-program, doc-view-dvipdfm-program)
7849 (doc-view-dvipdf-program, doc-view-unoconv-program)
7850 (doc-view-ps2pdf-program, doc-view-pdftotext-program):
7851 Avoid nil or absolute file name as default value.
7852 (doc-view-pdf->txt, doc-view-ps->pdf): Use executable-find here.
7853
7854 2011-10-28 Alan Mackenzie <acm@muc.de>
7855
7856 * progmodes/cc-defs.el (c-version): -> 5.32.2.
7857
7858 2011-10-28 Alan Mackenzie <acm@muc.de>
7859
7860 Amend the handling of c-beginning/end-of-defun in nested declaration
7861 scopes.
7862
7863 * progmodes/cc-vars.el (c-defun-tactic): Move here from
7864 cc-langs.el. Change it to a defcustom.
7865
7866 * progmodes/cc-langs.el (c-defun-tactic): Move this variable to
7867 cc-vars.el.
7868
7869 * progmodes/cc-engine.el (c-beginning-of-statement-1):
7870 Prevent "class foo : bar" being spuriously recognized as a label.
7871
7872 * progmodes/cc-cmds.el (c-narrow-to-most-enclosing-decl-block):
7873 Add parameter `inclusive' (to include enclosing braces in the region).
7874 (c-widen-to-enclosing-decl-scope): New function.
7875 (c-while-widening-to-decl-block): New macro.
7876 (c-beginning-of-defun, c-end-of-defun): Change algorithm to keep going
7877 outward for defun boundaries, and correspondingly change symbol
7878 `respect-enclosure' to `go-outward'.
7879 (c-declaration-limits): Change algorithm to report only the "innermost"
7880 defun's boundaries.
7881
7882 2011-10-28 Deniz Dogan <deniz@dogan.se>
7883
7884 * net/rcirc.el (rcirc-mode): Use hard newlines.
7885
7886 2011-10-28 Alan Mackenzie <acm@muc.de>
7887
7888 Amend to indent and fontify macros "which include their own semicolon"
7889 correctly, using the "virtual semicolon" mechanism.
7890
7891 * progmodes/cc-defs.el: Update "virtual semicolon" comments.
7892
7893 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
7894 Recode to scan one line at a time rather than having \n and \r
7895 explicitly in c-stmt-delim-chars (for some modes, e.g. AWK).
7896 (c-forward-label): Amend for virtual semicolons.
7897 (c-at-macro-vsemi-p, c-macro-vsemi-status-unknown-p): New functions.
7898
7899 * progmodes/cc-fonts.el (c-font-lock-declarations): Take account
7900 of the new C macros.
7901
7902 * progmodes/cc-langs.el (c-at-vsemi-p-fn):
7903 (c-vsemi-status-unknown-p-fn): Move to earlier in the file.
7904 (c-opt-cpp-symbol, c-line-comment-start-regexp): New language vars.
7905 (c-opt-cpp-macro-define): Make into a full language variable.
7906 (c-stmt-delim-chars, c-stmt-delim-chars-with-comma): Special value for
7907 AWK Mode (including \n, \r) removed, no longer needed.
7908
7909 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode):
7910 Invoke c-make-macro-with-semi-re.
7911
7912 * progmodes/cc-vars.el (c-macro-with-semi-re):
7913 (c-macro-names-with-semicolon): New variables.
7914 (c-make-macro-with-semi-re): New function.
7915
7916 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
7917
7918 * vc/log-edit.el: Fill empty field rather than adding new one.
7919 (log-edit-add-field): New function.
7920 (log-edit-insert-changelog): Use it.
7921
7922 2011-10-28 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
7923
7924 * mail/rmail.el (rmail-mode-map): Add M-C-f as in rmailsum (bug#9802).
7925
7926 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
7927
7928 * progmodes/gdb-mi.el: Warn the user when -i=mi is missing.
7929 (gdb--check-interpreter): New function.
7930 (gdb): Use it.
7931
7932 2011-10-27 Glenn Morris <rgm@gnu.org>
7933
7934 * emacs-lisp/cl-extra.el (most-positive-float, most-negative-float)
7935 (least-positive-float, least-negative-float)
7936 (least-positive-normalized-float, least-negative-normalized-float)
7937 (float-epsilon, float-negative-epsilon):
7938 Remove unnecessary declarations.
7939
7940 * emacs-lisp/cl-extra.el (cl-float-limits): Add doc string.
7941 * emacs-lisp/cl.el (most-positive-float, most-negative-float)
7942 (least-positive-float, least-negative-float)
7943 (least-positive-normalized-float, least-negative-normalized-float)
7944 (float-epsilon, float-negative-epsilon): Add doc-strings,
7945 based on those in cl.texi.
7946
7947 * files.el (set-visited-file-name): If the major-mode changed,
7948 reload the local variables. (Bug#9796)
7949
7950 2011-10-27 Chong Yidong <cyd@gnu.org>
7951
7952 * subr.el (change-major-mode-after-body-hook): New hook.
7953 (run-mode-hooks): Run it.
7954
7955 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
7956 Use change-major-mode-before-body-hook.
7957
7958 * simple.el (fundamental-mode):
7959 * emacs-lisp/derived.el (define-derived-mode): Revert 2010-04-28
7960 change introducing fundamental-mode-hook.
7961
7962 2011-10-26 Juanma Barranquero <lekktu@gmail.com>
7963
7964 * term/w32-win.el (w32-default-color-map): Declare obsolete (Bug#9785).
7965
7966 2011-10-26 Michael Albinus <michael.albinus@gmx.de>
7967
7968 * ido.el (ido-file-name-all-completions-1): Do not require
7969 tramp.el explicitly. (Bug#7583)
7970
7971 2011-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
7972
7973 * progmodes/octave-mod.el:
7974 * progmodes/octave-inf.el: Update maintainer.
7975
7976 2011-10-26 Chong Yidong <cyd@gnu.org>
7977
7978 * subr.el (with-wrapper-hook): Rewrite doc.
7979
7980 2011-10-25 Michael Albinus <michael.albinus@gmx.de>
7981
7982 * net/tramp-sh.el (tramp-sh-handle-file-directory-p): Return t for
7983 filenames "/method:foo:". (Bug#9793)
7984
7985 2011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
7986
7987 * comint.el (comint-get-old-input-default): Fix use-prompt-regexp case
7988 (bug#9865).
7989
7990 2011-10-24 Glenn Morris <rgm@gnu.org>
7991
7992 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix. (Bug#9819)
7993
7994 2011-10-24 Michael Albinus <michael.albinus@gmx.de>
7995
7996 * notifications.el: Add the requirement of a running D-Bus session
7997 bus to the Commentary.
7998
7999 2011-10-24 Juri Linkov <juri@jurta.org>
8000
8001 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
8002 `search-whitespace-regexp' only when `isearch-regexp' is non-nil.
8003 (Bug#9364)
8004
8005 2011-10-24 Juri Linkov <juri@jurta.org>
8006
8007 * info.el (Info-following-node-name-re): Add newline to the list
8008 of allowed characters for leading space. (Bug#9824)
8009
8010 2011-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
8011
8012 * progmodes/octave-inf.el (inferior-octave-mode-map):
8013 Fix C-c C-h binding.
8014 * progmodes/octave-mod.el (octave-help): Remove.
8015
8016 2011-10-23 Michael Albinus <michael.albinus@gmx.de>
8017
8018 Sync with Tramp 2.2.3.
8019
8020 * net/tramp-cache.el (top): Pacify byte-compiler using
8021 `init-file-user' and `site-run-file'.
8022
8023 * net/trampver.el: Update release number.
8024
8025 2011-10-23 Chong Yidong <cyd@gnu.org>
8026
8027 * files.el (toggle-read-only): Remove obsolete comment about
8028 version control.
8029
8030 * vc/vc-hooks.el (vc-toggle-read-only): Make it an obsolete alias
8031 for toggle-read-only. Note that this hasn't called vc-next-action
8032 since 2008-05-02, though it wasn't documented at the time.
8033
8034 * vc/ediff-init.el (ediff-toggle-read-only-function):
8035 Use toggle-read-only.
8036
8037 2011-10-22 Alan Mackenzie <bug-cc-mode@gnu.org>
8038
8039 Fix bug #9560, sporadic wrong indentation; improve instrumentation
8040 of c-parse-state.
8041
8042 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
8043 correct faulty logical expression.
8044 (c-parse-state-state, c-record-parse-state-state):
8045 (c-replay-parse-state-state): New defvar/defuns.
8046 (c-debug-parse-state): Use new functions.
8047
8048 2011-10-22 Martin Rudalics <rudalics@gmx.at>
8049
8050 * mouse.el (mouse-drag-line): Fix minibuffer resizing broken by
8051 last fix. Use window-in-direction correctly.
8052
8053 2011-10-21 Chong Yidong <cyd@gnu.org>
8054
8055 * progmodes/idlwave.el (idlwave-mode):
8056 * progmodes/vera-mode.el (vera-mode): No need to set
8057 require-final-newline; that's done in prog-mode.
8058 Suggested by Stefan Monnier.
8059
8060 2011-10-21 Martin Rudalics <rudalics@gmx.at>
8061
8062 * mouse.el (mouse-drag-window-above)
8063 (mouse-drag-move-window-bottom, mouse-drag-move-window-top)
8064 (mouse-drag-mode-line-1, mouse-drag-header-line)
8065 (mouse-drag-vertical-line-rightward-window): Remove.
8066 (mouse-drag-line): New function.
8067 (mouse-drag-mode-line, mouse-drag-header-line)
8068 (mouse-drag-vertical-line): Call mouse-drag-line.
8069 * window.el (window-at-side-p, windows-at-side): New functions.
8070
8071 2011-10-21 Ulrich Mueller <ulm@gentoo.org>
8072
8073 * tar-mode.el (tar-grind-file-mode):
8074 Fix handling of setuid/setgid, handle sticky bit. (Bug#9817)
8075
8076 2011-10-21 Chong Yidong <cyd@gnu.org>
8077
8078 * progmodes/idlwave.el (idlwave-mode):
8079 * progmodes/vera-mode.el (vera-mode):
8080 Use mode-require-final-newline.
8081
8082 2011-10-20 Glenn Morris <rgm@gnu.org>
8083
8084 * vc/vc.el (vc-next-action): Handle removed directories. (Bug#9781)
8085
8086 2011-10-20 Christoph Scholtes <cschol2112@googlemail.com>
8087
8088 * emulation/cua-base.el (cua-set-mark): Fix case of string.
8089
8090 2011-10-20 Chong Yidong <cyd@gnu.org>
8091
8092 * emulation/cua-base.el (cua-mode):
8093 * mail/footnote.el (footnote-mode):
8094 * mail/mailabbrev.el (mail-abbrevs-mode):
8095 * net/xesam.el (xesam-minor-mode):
8096 * progmodes/bug-reference.el (bug-reference-mode):
8097 * progmodes/cap-words.el (capitalized-words-mode):
8098 * progmodes/compile.el (compilation-minor-mode)
8099 (compilation-shell-minor-mode):
8100 * progmodes/gud.el (gud-tooltip-mode):
8101 * progmodes/hideif.el (hide-ifdef-mode):
8102 * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
8103 * progmodes/subword.el (subword-mode):
8104 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
8105 * progmodes/which-func.el (which-function-mode):
8106 * term/tvi970.el (tvi970-set-keypad-mode):
8107 * term/vt100.el (vt100-wide-mode):
8108 * textmodes/flyspell.el (flyspell-mode):
8109 * textmodes/ispell.el (ispell-minor-mode):
8110 * textmodes/nroff-mode.el (nroff-electric-mode):
8111 * textmodes/paragraphs.el (use-hard-newlines):
8112 * textmodes/refill.el (refill-mode):
8113 * textmodes/reftex.el (reftex-mode):
8114 * textmodes/rst.el (rst-minor-mode):
8115 * textmodes/sgml-mode.el (html-autoview-mode)
8116 (sgml-electric-tag-pair-mode):
8117 * textmodes/tex-mode.el (latex-electric-env-pair-mode):
8118 * vc/diff-mode.el (diff-auto-refine-mode, diff-minor-mode):
8119 * emulation/crisp.el (crisp-mode):
8120 * emacs-lisp/eldoc.el (eldoc-mode):
8121 * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fixes for new
8122 minor mode behavior.
8123
8124 2011-10-19 Juri Linkov <juri@jurta.org>
8125
8126 * descr-text.el (describe-char): Add #x2010 and #x2011 to
8127 the list of hard-coded chars with escape-glyph face.
8128
8129 2011-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
8130
8131 * vc/log-edit.el (log-edit-empty-buffer-p): Ignore empty headers.
8132
8133 2011-10-19 Michael Albinus <michael.albinus@gmx.de>
8134
8135 * net/tramp.el (tramp-connectable-p): Make a stronger check on a
8136 running process.
8137
8138 2011-10-19 Glenn Morris <rgm@gnu.org>
8139
8140 * vc/vc-bzr.el (vc-bzr-after-dir-status):
8141 Ignore ignored files. (Bug#9726)
8142
8143 2011-10-19 Chong Yidong <cyd@gnu.org>
8144
8145 Doc fix for minor modes, stating that an omitted argument enables
8146 the mode unconditionally when called from Lisp.
8147
8148 * abbrev.el (abbrev-mode):
8149 * allout.el (allout-mode):
8150 * autoinsert.el (auto-insert-mode):
8151 * autoarg.el (autoarg-mode, autoarg-kp-mode):
8152 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
8153 (global-auto-revert-mode):
8154 * battery.el (display-battery-mode):
8155 * composite.el (global-auto-composition-mode)
8156 (auto-composition-mode):
8157 * delsel.el (delete-selection-mode):
8158 * desktop.el (desktop-save-mode):
8159 * dired-x.el (dired-omit-mode):
8160 * dirtrack.el (dirtrack-mode):
8161 * doc-view.el (doc-view-minor-mode):
8162 * double.el (double-mode):
8163 * electric.el (electric-indent-mode, electric-pair-mode):
8164 * emacs-lock.el (emacs-lock-mode):
8165 * epa-hook.el (auto-encryption-mode):
8166 * follow.el (follow-mode):
8167 * font-core.el (font-lock-mode):
8168 * frame.el (auto-raise-mode, auto-lower-mode, blink-cursor-mode):
8169 * help.el (temp-buffer-resize-mode):
8170 * hilit-chg.el (highlight-changes-mode)
8171 (highlight-changes-visible-mode):
8172 * hi-lock.el (hi-lock-mode):
8173 * hl-line.el (hl-line-mode, global-hl-line-mode):
8174 * icomplete.el (icomplete-mode):
8175 * ido.el (ido-everywhere):
8176 * image-file.el (auto-image-file-mode):
8177 * image-mode.el (image-minor-mode):
8178 * iswitchb.el (iswitchb-mode):
8179 * jka-cmpr-hook.el (auto-compression-mode):
8180 * linum.el (linum-mode):
8181 * longlines.el (longlines-mode):
8182 * master.el (master-mode):
8183 * mb-depth.el (minibuffer-depth-indicate-mode):
8184 * menu-bar.el (menu-bar-mode):
8185 * minibuf-eldef.el (minibuffer-electric-default-mode):
8186 * mouse-sel.el (mouse-sel-mode):
8187 * msb.el (msb-mode):
8188 * mwheel.el (mouse-wheel-mode):
8189 * outline.el (outline-minor-mode):
8190 * paren.el (show-paren-mode):
8191 * recentf.el (recentf-mode):
8192 * reveal.el (reveal-mode, global-reveal-mode):
8193 * rfn-eshadow.el (file-name-shadow-mode):
8194 * ruler-mode.el (ruler-mode):
8195 * savehist.el (savehist-mode):
8196 * scroll-all.el (scroll-all-mode):
8197 * scroll-bar.el (scroll-bar-mode):
8198 * server.el (server-mode):
8199 * shell.el (shell-dirtrack-mode):
8200 * simple.el (auto-fill-mode, transient-mark-mode)
8201 (visual-line-mode, overwrite-mode, binary-overwrite-mode)
8202 (line-number-mode, column-number-mode, size-indication-mode)
8203 (auto-save-mode, normal-erase-is-backspace-mode, visible-mode):
8204 * strokes.el (strokes-mode):
8205 * time.el (display-time-mode):
8206 * t-mouse.el (gpm-mouse-mode):
8207 * tool-bar.el (tool-bar-mode):
8208 * tooltip.el (tooltip-mode):
8209 * type-break.el (type-break-mode-line-message-mode)
8210 (type-break-query-mode):
8211 * view.el (view-mode):
8212 * whitespace.el (whitespace-mode, whitespace-newline-mode)
8213 (global-whitespace-mode, global-whitespace-newline-mode):
8214 * xt-mouse.el (xterm-mouse-mode): Doc fix.
8215
8216 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
8217 Fix autogenerated docstring.
8218
8219 2011-10-19 Juri Linkov <juri@jurta.org>
8220
8221 * net/browse-url.el (browse-url-can-use-xdg-open): Support LXDE
8222 by checking environment variables "DESKTOP_SESSION" and
8223 "XDG_CURRENT_DESKTOP". (Bug#9779)
8224
8225 2011-10-19 Juri Linkov <juri@jurta.org>
8226
8227 * net/browse-url.el (browse-url-browser-function): Add "Chromium".
8228 (browse-url-chromium-program, browse-url-chromium-arguments):
8229 New defcustoms.
8230 (browse-url-default-browser): Check for `browse-url-chromium' and
8231 call `browse-url-chromium-program'.
8232 (browse-url-chromium): New command. (Bug#9779)
8233
8234 2011-10-18 Juanma Barranquero <lekktu@gmail.com>
8235
8236 * facemenu.el (list-colors-duplicates): On Windows, detect more
8237 duplicates by assuming that only colors matching "^System" are
8238 special "system colors". (Bug#9722)
8239
8240 2011-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
8241
8242 * vc/log-edit.el (log-edit): Add "Author:" header to encourage people
8243 to distinguish the author from the committer.
8244
8245 2011-10-18 Michael Albinus <michael.albinus@gmx.de>
8246
8247 * net/tramp.el (tramp-file-name-handler): Load Tramp packages silently.
8248
8249 2011-10-18 Jirka Kosek <jirka@kosek.cz> (tiny change)
8250
8251 * international/mule.el (sgml-html-meta-auto-coding-function):
8252 Add support for detecting encoding in HTML5 specified only as
8253 <meta charset="UTF-8">. Implementation just makes http-equiv and
8254 content-type parts from HTML4 encoding string optional. (Bug#9716)
8255
8256 2011-10-18 Glenn Morris <rgm@gnu.org>
8257
8258 * vc/vc.el (vc-initial-comment): Mark as obsolete. (Bug#9745)
8259
8260 2011-10-18 Chong Yidong <cyd@gnu.org>
8261
8262 * faces.el (cursor): Doc fix.
8263
8264 2011-10-17 Chong Yidong <cyd@gnu.org>
8265
8266 * font-lock.el (font-lock-maximum-size): Mark as obsolete.
8267
8268 2011-10-17 Ryan Barrett <emacs@ryanb.org> (tiny change)
8269
8270 * dirtrack.el (dirtrack): Support shell buffers with path
8271 prefixes, e.g. tramp-based remote shells. (Bug#9647)
8272
8273 2011-10-17 Teodor Zlatanov <tzz@lifelogs.com>
8274
8275 * json.el: Bump version to 1.3 and note change in History.
8276 (json-alist-p, json-plist-p): Rewrite to avoid recursion.
8277
8278 2011-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
8279
8280 * comint.el (comint-insert-input, comint-send-input)
8281 (comint-get-old-input-default, comint-backward-matching-input)
8282 (comint-next-prompt): Use nil instead of `input' for field property of
8283 past user input (bug#114).
8284
8285 * minibuffer.el (completion--replace): Inherit surrounding properties
8286 (bug#114).
8287 (minibuffer-complete-and-exit): Use it.
8288
8289 * comint.el (comint--table-subvert): Quote the all-completions output
8290 (bug#9160).
8291
8292 2011-10-17 Martin Rudalics <rudalics@gmx.at>
8293
8294 * ido.el (ido-default-buffer-method): Remove redundant :type entry.
8295
8296 * menu-bar.el (menu-bar-file-menu): Add entry for making new
8297 window on right of selected. (Bug#9350) Reword other window
8298 entries and separate them from frame entries.
8299
8300 2011-10-15 Glenn Morris <rgm@gnu.org>
8301
8302 * emacs-lisp/ert.el (ert--explain-equal-rec, ert-select-tests):
8303 Doc fixes.
8304
8305 2011-10-15 Chong Yidong <cyd@stupidchicken.com>
8306
8307 * net/network-stream.el (network-stream-open-starttls):
8308 Improve detection of failure due to lack of TLS support.
8309
8310 * mail/sendmail.el (sendmail-query-once): Tweak prompt message,
8311 putting the input text in front and in bold.
8312
8313 2011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
8314
8315 * pcmpl-unix.el (pcomplete/ssh): SSH does allow ganging.
8316
8317 * mpc.el (mpc-songs-jump-to): Don't burp if the user clicks in an
8318 empty buffer.
8319
8320 * mouse.el (mouse-drag-mode-line-1): Modify the end-event we pushed on
8321 unread-command-events rather than pushing yet-another event.
8322
8323 2011-10-14 Eli Zaretskii <eliz@gnu.org>
8324
8325 * mail/sendmail.el (sendmail-query-once): Improve the wording of
8326 the explanation of the possible choices. Make the options passed
8327 to completing-read shorter.
8328
8329 2011-10-13 Agustín Martín Domingo <agustin.martin@hispalinux.es>
8330
8331 * textmodes/flyspell.el (flyspell-large-region): Make sure
8332 extended character mode is used if defined (Bug#1339).
8333
8334 2011-10-13 Eli Zaretskii <eliz@gnu.org>
8335
8336 * simple.el (what-cursor-position): Fix the display of the
8337 character info for LRE, LRO, RLE, and RLO characters by appending
8338 an invisible PDF.
8339
8340 2011-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
8341
8342 * emacs-lisp/timer.el (with-timeout): Make sure we cancel the timer
8343 even in case of error; add debug spec; simplify data flow.
8344 (with-timeout-handler): Remove.
8345
8346 2011-10-12 Michael Albinus <michael.albinus@gmx.de>
8347
8348 Fix Bug#6019, Bug#9315.
8349
8350 * files.el (set-auto-mode): Call `file-name-sans-versions' for the
8351 complete `buffer-file-name', the local file name part could look
8352 remotely (for example on VMS).
8353
8354 * net/ange-ftp.el (ange-ftp-run-real-handler): Make it an alias of
8355 `tramp-run-real-handler'.
8356 (ange-ftp-fix-name-for-vms): Handle the case, where `name' is
8357 already quoted by '"'.
8358
8359 * net/tramp.el (tramp-rfn-eshadow-update-overlay): Ignore errors.
8360 Let `file-name-handler-alist' be nil, the local file name part
8361 could look remotely (for example on VMS).
8362
8363 2011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
8364
8365 * textmodes/flyspell.el (flyspell-word): Move with-local-quit
8366 from here...
8367 (flyspell-post-command-hook): ...to here.
8368
8369 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
8370
8371 * mail/sendmail.el (send-mail-function): Don't use sendmail-query-once
8372 if not needed.
8373 (sendmail-query-once): Remove OS dependencies. Make it a 3-way choice
8374 using completion. Protect against "slow" callers.
8375 Remove the "message hack".
8376
8377 2011-10-11 Juri Linkov <juri@jurta.org>
8378
8379 * isearch.el (isearch-lazy-highlight-word): New variable.
8380 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
8381 Use it. (Bug#9727)
8382
8383 2011-10-11 Glenn Morris <rgm@gnu.org>
8384
8385 * progmodes/f90.el (f90-next-statement): Ignore preprocessor lines,
8386 like f90-previous-statement does.
8387
8388 2011-10-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
8389
8390 * eshell/eshell.el (eshell-command): History should be saved
8391 only in interactive use, to avoid error.
8392
8393 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
8394
8395 * minibuffer.el (completion-file-name-table): Fix last change,
8396 i.e. ignore normal errors but not the other ones.
8397
8398 2011-10-10 Martin Rudalics <rudalics@gmx.at>
8399
8400 * window.el (special-display-buffer-names)
8401 (special-display-regexps): Remove some remnants of earlier
8402 changes from doc-strings.
8403 (quit-windows-on): New function.
8404
8405 * vc/vc.el (vc-revert, vc-rollback):
8406 * vc/vc-dispatcher.el (vc-finish-logentry): Call quit-windows-on
8407 instead of deleting windows. (Bug#4557) (Bug#5310) (Bug#5556)
8408 (Bug#6183) (Bug#7074) (Bug#7447)
8409
8410 2011-10-09 Martin Rudalics <rudalics@gmx.at>
8411
8412 * window.el (frame-auto-hide-function): Add version tag.
8413 (Bug#9699)
8414
8415 2011-10-09 Michael Albinus <michael.albinus@gmx.de>
8416
8417 * net/tramp.el (tramp-file-name-handler): Add 'debug to the error
8418 condition.
8419
8420 2011-10-09 Leo Liu <sdl.web@gmail.com>
8421
8422 * mail/smtpmail.el (smtpmail-send-data): Add a missing space.
8423 (Bug#9701)
8424
8425 2011-10-08 Glenn Morris <rgm@gnu.org>
8426
8427 * progmodes/f90.el (f90-calculate-indent): Give preprocessor lines
8428 before the first code statement zero indent. (Bug#9690)
8429
8430 2011-10-08 Chong Yidong <cyd@stupidchicken.com>
8431
8432 * simple.el (count-words-region): Always count in the region.
8433 Report the number of lines and characters too.
8434 (count-words): New command, which counts in the buffer if the
8435 region is inactive, as count-words-region used to.
8436 (count-words--message): New function. Handle plurals.
8437 (count-lines-region): Make it an alias for count-words-region.
8438
8439 * bindings.el (esc-map): Replace count-lines-region with
8440 count-words-region.
8441
8442 2011-10-08 Martin Rudalics <rudalics@gmx.at>
8443
8444 * window.el (window--delete): Delete dedicated frame
8445 unconditionally when argument KILL is non-nil. (Bug#9699)
8446 (switch-to-buffer): Fix doc-string typo.
8447
8448 2011-10-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
8449
8450 * eshell/eshell.el (eshell-command): Avoid using hooks.
8451
8452 2011-10-07 Chong Yidong <cyd@stupidchicken.com>
8453
8454 * bindings.el ([M-left],[M-right]): Bind to left-word and
8455 right-word respectively.
8456
8457 2011-10-07 Glenn Morris <rgm@gnu.org>
8458
8459 * cus-start.el (debug-on-quit): Fix custom type.
8460
8461 2011-10-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
8462
8463 * subr.el (define-key-after): Clarify that the function is not
8464 useful for non-menu keymaps.
8465
8466 * progmodes/gdb-mi.el (gdb): Fix typo in doc string.
8467
8468 2011-10-06 Thierry Volpiatto <thierry.volpiatto@gmail.com>
8469
8470 * eshell/eshell.el (eshell-command): Enable `eshell-mode' only
8471 in current minibuffer (Fix bug with recursive minibuffers).
8472
8473 2011-10-06 Chong Yidong <cyd@stupidchicken.com>
8474
8475 * progmodes/gdb-mi.el (gdb): Doc fix.
8476
8477 2011-10-05 Martin Rudalics <rudalics@gmx.at>
8478
8479 * window.el (frame-auto-hide-function): New option replacing
8480 frame-auto-delete. Suggested by Stefan Monnier.
8481 (window--delete): Call frame-auto-hide-function instead of
8482 investigating frame-auto-delete.
8483 (window-point-1, set-window-point-1): New functions.
8484 (window-in-direction, record-window-buffer, window-state-get-1)
8485 (display-buffer-record-window): Use window-point-1 instead of
8486 window-point.
8487 (set-window-buffer-start-and-point): Use set-window-point-1.
8488
8489 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
8490
8491 * emacs-lisp/edebug.el: Heed checkdoc recommendations.
8492
8493 2011-10-05 Glenn Morris <rgm@gnu.org>
8494
8495 * progmodes/perl-mode.el (perl-electric-terminator): Doc fix.
8496 (perl-calculate-indent): Suppress scan errors. (Bug#2205)
8497
8498 2011-10-05 Leo Liu <sdl.web@gmail.com>
8499
8500 * subr.el (read-char-choice): Fix argument to buffer-live-p which
8501 works with buffer object.
8502
8503 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
8504
8505 * mpc.el (mpc-tool-bar-map): Add labels.
8506
8507 2011-10-04 Glenn Morris <rgm@gnu.org>
8508
8509 * calendar/holidays.el (calendar-check-holidays): Doc fix.
8510
8511 2011-10-04 Martin Rudalics <rudalics@gmx.at>
8512
8513 * window.el (window--delete): New function.
8514 (frame-auto-delete): Resuscitate option.
8515 (bury-buffer, replace-buffer-in-windows)
8516 (quit-window): Rewrite using window--delete.
8517 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
8518 Pass display-buffer-mark-dedicated to window--display-buffer-2
8519 (Bug#9639).
8520
8521 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
8522
8523 * pcmpl-unix.el (pcomplete/scp): Don't assume pcomplete-all-entries
8524 returns a list (bug#9554). Add remote file name completion.
8525 * comint.el (comint--table-subvert): Curry and get quote&unquote
8526 functions as arguments.
8527 (comint--complete-file-name-data): Adjust call accordingly.
8528 * pcomplete.el (pcomplete--table-subvert): Remove.
8529 (pcomplete-completions-at-point): Use comint--table-subvert instead.
8530
8531 * minibuffer.el (completion-table-case-fold): Use currying.
8532 (completion--styles-type, completion--cycling-threshold-type):
8533 New constants.
8534 (completion-styles, completion-category-overrides)
8535 (completion-cycle-threshold): Use them.
8536 * pcomplete.el (pcomplete-completions-at-point): Adjust call to
8537 completion-table-case-fold.
8538
8539 2011-10-03 Stephen Berman <stephen.berman@gmx.net>
8540
8541 * minibuffer.el (completion-category-overrides): Fix type of styles
8542 and add more user friendly tags (bug#9660).
8543
8544 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
8545
8546 * international/mule-cmds.el: Fix abuses of apply-partially (bug#9661).
8547 (mule-input-method-string): New widget.
8548 (default-input-method, language-info-custom-alist): Use it.
8549
8550 2011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
8551
8552 * pcomplete.el: Require comint.
8553 (pcomplete--common-suffix): Remove.
8554 (pcomplete--common-quoted-suffix): Use comint--common-suffix instead.
8555 (pcomplete--table-subvert): Sync with comint--table-subvert.
8556 (pcomplete--entries): Use comint-completion-file-name-table.
8557 * comint.el (comint-unquote-filename): Simplify.
8558 (comint-completion-file-name-table): New function (bug#9616).
8559 (comint--complete-file-name-data): Use it.
8560
8561 * pcmpl-gnu.el (pcmpl-gnu-with-file-buffer): New macro (bug#9643).
8562 (pcmpl-gnu-tar-buffer): Remove.
8563 (pcmpl-gnu-with-file-buffer): Use it to avoid leaving the tar's buffer
8564 around. Make sure pcomplete-suffix-list is only changed temporarily.
8565 Don't look inside the tar's file if it's too large.
8566
8567 2011-10-01 Chong Yidong <cyd@stupidchicken.com>
8568
8569 * cus-edit.el (custom-mode-map):
8570 * epa.el (epa-key-list-mode-map):
8571 * man.el (Man-mode-map):
8572 * startup.el (splash-screen-keymap):
8573 * simple.el (special-mode-map): Use scroll-up-command and
8574 scroll-down-command.
8575
8576 * progmodes/idlw-help.el (idlwave-help-mode-map):
8577 * progmodes/ebrowse.el (ebrowse-electric-position-mode-map):
8578 * net/newst-plainview.el (newsticker-mode-map):
8579 * emulation/ws-mode.el (wordstar-mode-map):
8580 * emulation/vi.el (vi-com-map):
8581 * calc/calc-graph.el (calc-graph-show-dumb):
8582 * term/sun.el (terminal-init-sun):
8583 * term/ns-win.el (global-map):
8584 * progmodes/grep.el (grep-mode-map):
8585 * progmodes/ebrowse.el (ebrowse-electric-list-mode-map):
8586 * mail/rmail.el (rmail-mode-map):
8587 * progmodes/cpp.el (cpp-edit-mode-map): Likewise.
8588
8589 * custom.el (custom-safe-themes, load-theme): Treat value of t for
8590 custom-safe-themes as special.
8591
8592 2011-10-01 Julien Danjou <julien@danjou.info>
8593
8594 * notifications.el (notifications-notify): Fix docstring.
8595
8596 2011-10-01 Per Starbäck <per@starback.se>
8597
8598 * pcmpl-gnu.el (pcomplete/tar): Fix tar-header-name call. (Bug#9643)
8599
8600 2011-09-30 Martin Rudalics <rudalics@gmx.at>
8601
8602 * startup.el (command-line-1): Fix last fix by inserting
8603 initial-scratch-message into *scratch* before displaying it.
8604 (Bug#9605) and (Bug#9636)
8605
8606 2011-09-29 Eli Zaretskii <eliz@gnu.org>
8607
8608 * simple.el (line-move): If auto-hscroll-mode is disabled and the
8609 window is hscrolled, move by logical lines. (Bug#9607)
8610 (line-move-visual): Update the doc string to the above effect.
8611
8612 2011-09-29 Martin Rudalics <rudalics@gmx.at>
8613
8614 * window.el (display-buffer-record-window): When WINDOW is the
8615 selected window use `point' instead of `window-point'. (Bug#9626)
8616
8617 * startup.el (command-line-1): Use insert-before-markers when
8618 inserting initial-scratch-message. (Bug#9605)
8619
8620 * help.el (help-window): Remove variable.
8621
8622 2011-09-29 Glenn Morris <rgm@gnu.org>
8623
8624 * pcmpl-cvs.el (pcomplete/cvs): Add "status" handler.
8625
8626 2011-09-29 Juanma Barranquero <lekktu@gmail.com>
8627
8628 * descr-text.el (describe-char-categories): Accept category
8629 descriptions more than one line long.
8630
8631 2011-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
8632
8633 * simple.el (delete-trailing-whitespace): Fix last change.
8634
8635 * progmodes/perl-mode.el (perl-syntax-propertize-function):
8636 Don't confuse "y => 3" as the beginning of a `y' operation.
8637
8638 * emacs-lisp/debug.el (debug-convert-byte-code): Don't assume the
8639 object has more than 4 slots (bug#9613).
8640
8641 2011-09-28 Juanma Barranquero <lekktu@gmail.com>
8642
8643 * subr.el (with-output-to-temp-buffer):
8644 * net/quickurl.el (quickurl, quickurl-browse-url):
8645 Fix typos in docstrings.
8646
8647 2011-09-27 Eli Zaretskii <eliz@gnu.org>
8648
8649 * minibuffer.el (completion-styles)
8650 (completion-category-overrides): Cross reference each other in doc
8651 strings.
8652
8653 2011-09-27 Glenn Morris <rgm@gnu.org>
8654
8655 * pcmpl-cvs.el (pcmpl-cvs-entries): Update for Emacs 22.1 changes
8656 to split-string. (Bug#9606)
8657
8658 2011-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
8659
8660 * mail/smtpmail.el (smtpmail-via-smtp): Fix STARTTLS detection
8661 (bug#9615).
8662
8663 2011-09-27 Chong Yidong <cyd@stupidchicken.com>
8664
8665 * emacs-lisp/package.el (list-packages): Fix echo area message.
8666
8667 2011-09-27 Leo Liu <sdl.web@gmail.com>
8668
8669 * ido.el (ido-read-internal): Accept cons cell HIST arg.
8670
8671 2011-09-25 Michael Albinus <michael.albinus@gmx.de>
8672
8673 * net/dbus.el (dbus-unregister-object): Don't release services for
8674 registered signals. (Bug#9581)
8675
8676 2011-09-25 Teodor Zlatanov <tzz@lifelogs.com>
8677
8678 * progmodes/cfengine.el (cfengine-auto-mode): Add convenience
8679 function that picks between cfengine 2 and 3 support
8680 automatically. Update docs accordingly.
8681
8682 2011-09-22 Kenichi Handa <handa@m17n.org>
8683
8684 * language/ind-util.el (indian-tml-base-table): Add TAMIL DIGIT
8685 ZERO.
8686 (indian-itrans-v5-table-for-tamil): New variable.
8687 (indian-tml-itrans-v5-hash): Use the above variable (Bug#9336).
8688
8689 2011-09-22 Ken Manheimer <ken.manheimer@gmail.com>
8690
8691 * allout.el (allout-this-command-hid-stuff): Buffer-local variable
8692 that's true if the current command involved collapsing of text.
8693 It's reset to false at the beginning of the next command.
8694 (allout-post-command-business): Move the cursor to the beginning
8695 of entry if the cursor is hidden and collapsing activity just
8696 happened.
8697
8698 2011-09-24 Chong Yidong <cyd@stupidchicken.com>
8699
8700 * mouse.el (mouse-drag-track): Set scroll-margin to 0 while
8701 tracking (Bug#9541).
8702
8703 2011-09-24 Ulf Jasper <ulf.jasper@web.de>
8704
8705 * net/newst-reader.el (newsticker-html-renderer)
8706 (newsticker-show-news): Automatically load html rendering package
8707 if newsticker-html-renderer is set. Fixes "Warning: defvar ignored
8708 because w3m-fill-column is let-bound" and the error "Symbol's value
8709 as variable is void: w3m-fill-column".
8710
8711 2011-09-24 Michael Albinus <michael.albinus@gmx.de>
8712
8713 * net/dbus.el (dbus-unregister-object): Remove match rule of signals.
8714 Release services only if they are defined. (Bug#9581)
8715
8716 2011-09-23 Richard Stallman <rms@gnu.org>
8717
8718 * textmodes/paragraphs.el (forward-sentence): For backwards case,
8719 distinguish start of paragraph from start of its text.
8720
8721 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs): Autoload.
8722
8723 * mail/rmail.el (rmail-view-buffer-kill-buffer-hook): New function.
8724 (rmail-generate-viewer-buffer): Put that hook on view buffer.
8725 (rmail-mode-kill-buffer-hook): Override that hook, to kill view buffer.
8726
8727 2011-09-23 Andreas Schwab <schwab@linux-m68k.org>
8728
8729 * international/mule-diag.el (mule-diag): Insert a newline after
8730 each fontset description.
8731
8732 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
8733
8734 * simple.el (delete-trailing-whitespace):
8735 Document last change; simplify.
8736
8737 2011-09-23 Peter J. Weisberg <pj@irregularexpressions.net>
8738
8739 * simple.el (delete-trailing-whitespace): Also delete
8740 extra newlines at the end of the buffer.
8741
8742 * textmodes/picture.el: Make motion commands obey shift-select-mode.
8743 (picture-newline): Use forward-line so as to ignore fields.
8744
8745 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
8746
8747 * subr.el (with-wrapper-hook): Fix edebug spec.
8748
8749 2011-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
8750
8751 * simple.el (kill-line): Note effect of `show-trailing-whitespace'
8752 (bug#4538).
8753
8754 2011-09-23 Michael Albinus <michael.albinus@gmx.de>
8755
8756 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
8757 Fix nasty bug using wrong cached values.
8758
8759 2011-09-23 Alan Mackenzie <acm@muc.de>
8760
8761 * progmodes/cc-defs.el (c-version): Increase to 5.31.9.
8762
8763 2011-09-23 Chong Yidong <cyd@stupidchicken.com>
8764
8765 * window.el (pop-to-buffer): Ensure right window is selected if we
8766 chose another frame.
8767
8768 2011-09-22 Eli Zaretskii <eliz@gnu.org>
8769
8770 * simple.el (what-cursor-position): Use get-char-property-change
8771 and next-single-char-property-change, to be able to show display
8772 properties that come from overlays as well as text properties.
8773
8774 2011-09-22 Chong Yidong <cyd@stupidchicken.com>
8775
8776 * window.el (pop-to-buffer-same-window): New (reinstated) fun.
8777
8778 * cmuscheme.el (run-scheme, switch-to-scheme):
8779 * cus-edit.el (customize-group, custom-buffer-create)
8780 (customize-browse):
8781 * info.el (info):
8782 * shell.el (shell):
8783 * mail/sendmail.el (mail):
8784 * progmodes/inf-lisp.el (inferior-lisp): Use it (Bug#9532).
8785
8786 2011-09-22 Richard Stallman <rms@gnu.org>
8787
8788 * textmodes/paragraphs.el (forward-sentence): When setting PAR-BEG,
8789 move back only to line beg, don't move back over blank lines.
8790
8791 2011-09-22 Michael Albinus <michael.albinus@gmx.de>
8792
8793 * files.el (copy-directory): Set directory attributes only in case
8794 they could be retrieved from the source directory. (Bug#9565)
8795
8796 2011-09-22 Dima Kogan <dkogan@secretsauce.net> (tiny change)
8797
8798 * progmodes/hideshow.el (hs-looking-at-block-start-p)
8799 (hs-find-block-beginning, hs-hide-level-recursive):
8800 Ignore strings as well as comments. (Bug#9502)
8801
8802 2011-09-22 Andrew Schein <andrew@andrewschein.com> (tiny change)
8803
8804 * progmodes/sql.el (sql-comint-postgres):
8805 Convert port number to a string. (Bug#9566)
8806
8807 2011-09-22 Martin Rudalics <rudalics@gmx.at>
8808
8809 * window.el (quit-window): Undedicate window when switching to
8810 previous buffer. Reported by Thierry Volpiatto
8811 <thierry.volpiatto@gmail.com>.
8812 (special-display-popup-frame): When popping up a new frame reset
8813 its previous buffers to nil. Simplify code.
8814
8815 2011-09-21 Michael Albinus <michael.albinus@gmx.de>
8816
8817 * net/tramp.el (tramp-handle-shell-command): Set process sentinel
8818 and process filter, as done also in `shell-command'.
8819
8820 2011-09-21 Martin Rudalics <rudalics@gmx.at>
8821
8822 * window.el (set-window-buffer-start-and-point):
8823 Call set-window-start with NOFORCE argument t.
8824 Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
8825 (quit-window): Reword doc-string. Handle new format of
8826 quit-restore parameter. Don't delete window if it has a
8827 previous buffer we can show instead of the present one.
8828 (display-buffer-record-window): Rewrite using a new format for
8829 the quit-restore window parameter
8830 (special-display-popup-frame, display-buffer-same-window)
8831 (display-buffer-reuse-window, display-buffer-pop-up-frame)
8832 (display-buffer-pop-up-window, display-buffer-use-some-window):
8833 Adapt symbol passed to display-buffer-record-window.
8834 * help.el (help-window-setup): Handle new format of quit-restore
8835 parameter.
8836
8837 2011-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
8838
8839 * faces.el (face-list): Fix docstring (bug#9564).
8840
8841 * window.el (display-buffer--action-function-custom-type):
8842 Don't include internal functions in the Custom interface.
8843
8844 2011-09-20 Juri Linkov <juri@jurta.org>
8845
8846 * info.el (Info-history-skip-intermediate-nodes): New defcustom.
8847 (Info-forward-node, Info-backward-node, Info-next-preorder)
8848 (Info-last-preorder): Use it. (Bug#9528)
8849
8850 2011-09-20 Juri Linkov <juri@jurta.org>
8851
8852 * info.el (Info-last-preorder): Visit last menu item only when
8853 `Info-scroll-prefer-subnodes' is non-nil (third test-case of bug#9528).
8854
8855 2011-09-20 Julien Danjou <julien@danjou.info>
8856
8857 * password-cache.el (password-cache-remove): Remove entries even if the
8858 value is nil, so that password with a nil value (negative caching) is
8859 possible to invalidate.
8860
8861 2011-09-20 Lawrence Mitchell <wence@gmx.li>
8862
8863 * progmodes/f90.el (f90-break-line): If breaking inside comment delete
8864 all whitespace around breakpoint. (Bug#9553)
8865 (f90-find-breakpoint): Only break at whitespace inside a comment.
8866
8867 2011-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
8868
8869 * minibuffer.el (completion-file-name-table): Keep track of errors.
8870 (completion-table-with-predicate): Handle the case where pred1 is nil.
8871 * pcomplete.el (pcomplete-completions-at-point): Simplify.
8872
8873 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
8874
8875 * emacs-lisp/debug.el (debugger-args): Give it a docstring.
8876 (debugger-return-value): Signal an error if the debugging context does
8877 not await any return value.
8878
8879 * ps-mule.el (ps-mule-plot-string): Don't inf-loop (bug#5108).
8880 * image-mode.el (image-toggle-display-text)
8881 (image-toggle-display-image): Stay away from evil `intangible'.
8882
8883 2011-09-19 Leo Liu <sdl.web@gmail.com>
8884
8885 * replace.el (occur-revert-arguments): Make it permanent-local.
8886 (occur-mode): Don't call font-lock-defontify.
8887
8888 2011-09-19 Chong Yidong <cyd@stupidchicken.com>
8889
8890 * net/ldap.el (ldap-search-internal): Don't push empty search
8891 result (Bug#9508).
8892
8893 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
8894
8895 * whitespace.el (whitespace-newline-mode): Disable it right (bug#9550).
8896
8897 2011-09-19 Michael Albinus <michael.albinus@gmx.de>
8898
8899 * net/tramp-sh.el (tramp-inline-compress-commands): Add "xz".
8900 Suggested by Liam Stitt <stittl@cuug.ab.ca>.
8901
8902 2011-09-18 Juri Linkov <juri@jurta.org>
8903
8904 * buff-menu.el (Buffer-menu-mode-map):
8905 * dired.el (dired-mode-map):
8906 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map)
8907 (lisp-interaction-mode-map):
8908 * emacs-lisp/package.el (package-menu-mode-map):
8909 * epa.el (epa-key-list-mode-map):
8910 * menu-bar.el (menu-bar-showhide-tool-bar-menu)
8911 (menu-bar-options-menu):
8912 * outline.el (outline-mode-menu-bar-map):
8913 * vc/vc-bzr.el (vc-bzr-shelve-menu-map, vc-bzr-extra-menu-map):
8914 * vc/vc-dir.el (vc-dir-menu-map):
8915 * vc/vc-git.el (vc-git-stash-menu-map, vc-git-extra-menu-map):
8916 Capitalize non-function content words in menu item strings.
8917
8918 * dired.el (dired-mode-map): Add menu item for
8919 `image-dired-dired-toggle-marked-thumbs'.
8920
8921 2011-09-18 Juri Linkov <juri@jurta.org>
8922
8923 * isearch.el (isearch-edit-string): Bind `isearch-new-case-fold'
8924 to `isearch-case-fold-search' and restore its original value
8925 after the `isearch-mode' call.
8926
8927 2011-09-18 Juri Linkov <juri@jurta.org>
8928
8929 * progmodes/grep.el (grep-process-setup): Don't check code for 1
8930 because `zgrep' returns 1 for successful matches (bug#9226).
8931
8932 2011-09-18 Juri Linkov <juri@jurta.org>
8933
8934 * info.el (Info-extract-menu-node-name): Check the second match
8935 for empty string (second test-case of bug#9528).
8936 (Info-last-preorder): Let-bind `Info-history' to nil to not add
8937 intermediate nodes to the history (first test-case of bug#9528).
8938
8939 2011-09-18 Juri Linkov <juri@jurta.org>
8940
8941 * info.el (Info-mode-syntax-table): New variable.
8942 (Info-mode): Set `:syntax-table' to `Info-mode-syntax-table' (bug#3312).
8943
8944 2011-09-18 Juri Linkov <juri@jurta.org>
8945
8946 * info.el (Info-file-supports-index-cookies):
8947 Increment line-beginning-position's arg from 3 to 4 because makeinfo
8948 outputs one more line for long file names (bug#4142).
8949
8950 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
8951
8952 * newcomment.el (comment-normalize-vars): If prompting for
8953 comment-start, set comment-start-skip too (Bug#8424).
8954
8955 2011-09-18 Johan Bockgård <bojohan@gnu.org>
8956
8957 * icomplete.el: Fix previous fix of Bug#5849.
8958 (icomplete-mode): Don't set completion-show-inline-help.
8959 (icomplete-minibuffer-setup): Set completion-show-inline-help
8960 locally during icompletion.
8961
8962 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
8963
8964 * woman.el (woman2-process-escapes): Don't delete unrecognized
8965 escapes (Bug#7843).
8966
8967 * files.el (inhibit-first-line-modes-regexps): Add image files.
8968 (hack-local-variables-prop-line): Return nil for malformed
8969 prop-lines (Bug#9044).
8970
8971 2011-09-18 Michael Albinus <michael.albinus@gmx.de>
8972
8973 * net/tramp.el (top): Don't require 'shell.
8974 (tramp-methods): Fix docstring.
8975 (tramp-get-remote-tmpdir): New defun, moved from tramp-sh.el.
8976 Return complete remote file name. Handle "smb" case.
8977 Use `tramp-tmpdir', if defined for the respective method.
8978 (tramp-make-tramp-temp-file): Adapt call of `tramp-get-remote-tmpdir'.
8979
8980 * net/tramp-compat.el (top): Require 'shell.
8981
8982 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
8983 (tramp-maybe-open-connection): Use `tramp-file-name-real-host' for
8984 `tramp-current-host'.
8985 (tramp-get-remote-tmpdir): Remove.
8986
8987 * net/tramp-smb.el (tramp-methods): Add `tramp-remote-shell' and
8988 `tramp-tmpdir' entries.
8989 (tramp-smb-errors): Add "NT_STATUS_IMAGE_ALREADY_LOADED".
8990 (tramp-smb-handle-file-attributes): Ignore errors.
8991 (tramp-smb-wait-for-output): Check also for process end.
8992
8993 2011-09-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
8994
8995 * mail/smtpmail.el (smtpmail-via-smtp): Ignore errors that arise
8996 when sending QUIT (bug#9312).
8997
8998 2011-09-17 Chong Yidong <cyd@stupidchicken.com>
8999
9000 * replace.el (occur-mode-map): Rebind occur-edit-mode to "e" (Bug#8463).
9001 (occur-edit-mode-map): Bind C-c C-c to occur-cease-edit and C-o to
9002 occur-mode-display-occurrence.
9003 (occur-edit-mode): Add usage message.
9004 (occur-cease-edit): New command.
9005 (occur-after-change-function): Use text properties to find the
9006 position of the prefix text.
9007 (occur-engine): Set stickiness of prefix text properties.
9008
9009 2011-09-17 Glenn Morris <rgm@gnu.org>
9010
9011 * progmodes/etags.el (complete-tag):
9012 Fix call to completion-in-region. (Bug#9526)
9013
9014 2011-09-17 Juri Linkov <juri@jurta.org>
9015
9016 * textmodes/ispell.el (ispell-word): Add to the error message
9017 the word, ispell program name and current dictionary (bug#9121).
9018 (ispell-tex-arg-end): Capitalize "error" in the error message.
9019
9020 2011-09-17 Andreas Schwab <schwab@linux-m68k.org>
9021
9022 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix overflow
9023 check. (Bug#4251)
9024
9025 2011-09-17 Juri Linkov <juri@jurta.org>
9026
9027 * window.el (window-safe-min-height, window-safe-min-width):
9028 Fix typos (followup to bug#9522).
9029
9030 2011-09-17 Sven Joachim <svenjoac@gmx.de>
9031
9032 * window.el (window-min-width, window-state-put): Fix typos (bug#9522).
9033
9034 2011-09-16 Eli Zaretskii <eliz@gnu.org>
9035
9036 * simple.el (line-move): If goal-column is set, move by logical
9037 lines, not by display lines. (Bug#971)
9038 (next-line, previous-line, goal-column, line-move-visual): Doc fix
9039 to reflect the above change.
9040
9041 2011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
9042
9043 * image.el (imagemagick-register-types): Use regexp-opt.
9044
9045 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
9046
9047 * window.el (display-buffer-base-action): Rename from
9048 display-buffer-default-action. Make default value empty.
9049 (display-buffer-overriding-action): Convert to defvar.
9050 (display-buffer-fallback-action): New var.
9051
9052 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
9053
9054 * emacs-lisp/package.el (package-alist): Fix risky-local-variable
9055 declaration.
9056 (package--add-to-archive-contents): If there is a duplicate entry
9057 with an older version, remove it.
9058 (package-menu-mark-delete, package-menu-mark-install)
9059 (package-menu-mark-unmark): Make unused args optional.
9060 (package-menu-mark-obsolete-for-deletion):
9061 Use package-menu-get-status instead of a regexp search.
9062 (package-menu-get-status): Use tabulated-list-entry.
9063 (package-menu-mark-upgrades): New command.
9064 (package-menu-mode-map): Bind it to U. Add it to menu bar.
9065 (package-menu-execute): Do installation before deletion.
9066 (package-menu-refresh, package-menu-execute): Use derived-mode-p
9067 instead of checking major-mode.
9068 (package-menu--find-upgrades): New function.
9069
9070 2011-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
9071
9072 * mail/smtpmail.el (smtpmail-send-command): Don't include AUTH
9073 passwords in the log buffer.
9074 (smtpmail-process-filter): Update the process marker so that the
9075 "broken by peer" status message is inserted in the right place.
9076
9077 2011-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
9078
9079 * textmodes/bibtex.el (bibtex-complete-string-cleanup)
9080 (bibtex-complete-crossref-cleanup): Adjust to accommodate needs of
9081 bibtex-completion-at-point-function.
9082 (bibtex-completion-at-point-function): Use them.
9083
9084 * newcomment.el (comment-add, comment-valid-prefix-p): Docfix.
9085
9086 * mpc.el (mpc-constraints-tag-lookup): New function.
9087 (mpc-constraints-restore): Use it to make jumping to "album=Foo" apply
9088 also to browser "album|playlist".
9089
9090 2011-09-14 Juri Linkov <juri@jurta.org>
9091
9092 * isearch.el (isearch-fail-pos): Add new arg `msg'. Doc fix.
9093 (isearch-edit-string): Use length of `isearch-string' when
9094 `isearch-fail-pos' returns nil.
9095 (isearch-message): Remove duplicate code and call
9096 `isearch-fail-pos' with arg `t'.
9097
9098 2011-09-14 Chong Yidong <cyd@stupidchicken.com>
9099
9100 * replace.el (occur-mode-goto-occurrence): Don't force using other
9101 window (Bug#9499).
9102
9103 * dired-aux.el (dired-do-chmod): Don't provide initial input.
9104
9105 2011-09-14 Martin Rudalics <rudalics@gmx.at>
9106
9107 * window.el (display-buffer-window): Remove.
9108 (display-buffer-record-window): Use help-setup window parameter
9109 instead of variable display-buffer-window.
9110 (display-buffer-function, special-display-buffer-names)
9111 (special-display-function): Mention help-setup parameter instead
9112 of display-buffer-window in doc-string.
9113 * help.el (help-window-setup): New argument help-window.
9114 Use help-window-setup parameter instead of display-buffer-window.
9115 Reword some messages.
9116 (with-help-window): Pass window used for displaying the buffer
9117 to help-window-setup. Don't set display-buffer-window.
9118
9119 2011-09-13 Glenn Morris <rgm@gnu.org>
9120
9121 * emacs-lisp/debug.el (debugger-make-xrefs):
9122 Preserve point. (Bug#9462)
9123
9124 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
9125
9126 * window.el (window-deletable-p): Use next-frame.
9127
9128 2011-09-13 Martin Rudalics <rudalics@gmx.at>
9129
9130 * window.el (window-auto-delete): Remove.
9131 (window-deletable-p): Remove argument FORCE. Don't deal with
9132 dedication and previous buffers.
9133 (switch-to-prev-buffer): Don't delete window.
9134 (delete-windows-on): Delete a window's frame if and only if the
9135 window is dedicated.
9136 (replace-buffer-in-windows): Delete buffer's window or frame if
9137 and only if window is dedicated.
9138 (quit-window): Handle quit-restore as before last change.
9139 (bury-buffer): Delete window only if window-deletable-p returns t.
9140
9141 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
9142
9143 * window.el (window-deletable-p): Never delete the last frame on a
9144 given terminal.
9145
9146 2011-09-13 Glenn Morris <rgm@gnu.org>
9147
9148 * help.el (describe-key-briefly): Copy previous standard-output change.
9149
9150 2011-09-13 PJ Weisberg <pj@irregularexpressions.net>
9151
9152 * help.el (where-is): Respect non-standard standard-output. (Bug#9030)
9153
9154 2011-09-13 Glenn Morris <rgm@gnu.org>
9155
9156 * emacs-lisp/lisp-mode.el (lisp-indent-function):
9157 * progmodes/scheme.el (scheme-indent-function): Doc fixes.
9158
9159 2011-09-12 Chong Yidong <cyd@stupidchicken.com>
9160
9161 * dired-aux.el (dired-mark-read-string): Don't return default
9162 value on empty input (Bug#9361).
9163 (dired-do-chxxx): Treat empty input for "touch" as no -t option.
9164 Omit initial minibuffer contents.
9165 (dired-do-chmod): Signal an error on empty input.
9166 (dired-mark-read-string): Don't return default on empty input.
9167
9168 * files.el (file-modes-symbolic-to-number): Doc fix.
9169
9170 2011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
9171
9172 * international/mule-cmds.el (ucs-completions): Remove.
9173 (read-char-by-name): Use complete-with-action instead; add metadata.
9174
9175 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
9176
9177 * window.el (display-buffer--action-function-custom-type)
9178 (display-buffer--action-custom-type): New vars.
9179 (display-buffer-alist, display-buffer-default-action)
9180 (display-buffer-overriding-action): Add defcustom types.
9181
9182 * frame.el (delete-other-frames): Doc fix (Bug#276).
9183
9184 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
9185
9186 * play/doctor.el (make-doctor-variables): Define `doctor-sent'.
9187
9188 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
9189
9190 Change modes that used same-window-* vars to use switch-to-buffer.
9191
9192 * progmodes/gdb-mi.el (gdb-restore-windows, gdb-setup-windows):
9193 Use switch-to-buffer.
9194
9195 * cus-edit.el (customize-group, custom-buffer-create)
9196 (customize-browse, custom-buffer-create-other-window):
9197 Use switch-to-buffer or switch-to-buffer-other-window.
9198
9199 * info.el (info, Info-find-node, Info-revert-find-node, Info-next)
9200 (Info-prev, Info-up, Info-speedbar-goto-node)
9201 (info-display-manual): Use switch-to-buffer.
9202 (Info-speedbar-goto-node): Use switch-to-buffer-other-frame.
9203
9204 * mail/sendmail.el (mail): Use switch-to-buffer.
9205 (mail-recover): Use switch-to-buffer-other-window.
9206
9207 * cmuscheme.el (run-scheme, switch-to-scheme):
9208 * ielm.el (ielm):
9209 * shell.el (shell):
9210 * net/rlogin.el (rlogin):
9211 * net/telnet.el (telnet, rsh):
9212 * progmodes/inf-lisp.el (inferior-lisp): Use switch-to-buffer.
9213
9214 2011-09-11 Andreas Schwab <schwab@linux-m68k.org>
9215
9216 * dired.el (dired-sort-toggle-or-edit): Revert last changes.
9217
9218 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
9219
9220 * dired.el (dired-sort-toggle-or-edit): -o doesn't exist on *BSD,
9221 so don't mention it (bug#9301).
9222 (dired-sort-toggle-or-edit): Clarify string further.
9223
9224 * faces.el (face-spec-set-match-display): Make `(type graphic)'
9225 match `x', `w32' and `ns', like the manual says (bug#9029).
9226
9227 * subr.el (eval-after-load): Doc string clarification (bug#9125).
9228 (process-kill-buffer-query-function): Mention the buffer name in
9229 the query.
9230
9231 * image-mode.el (image-next-line): The line parameter is mandatory
9232 (bug#9258).
9233
9234 * dired.el (dired-sort-toggle-or-edit): Mention -o and -g, too,
9235 which can be useful (bug#9301).
9236
9237 * textmodes/flyspell.el: Remove obsolete comment (bug#9368).
9238
9239 * subr.el (match-string): Mention that the current buffer should
9240 be the same as the search was done in (bug#9282).
9241
9242 * facemenu.el: Disable the remove-* commands if the mark isn't
9243 active (bug#9162).
9244
9245 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
9246
9247 * buff-menu.el (Buffer-menu-switch-other-window): Use second arg
9248 of display-buffer.
9249 (Buffer-menu-2-window): Use switch-to-buffer-other-window.
9250
9251 * replace.el (occur-mode-goto-occurrence)
9252 (occur-mode-display-occurrence) Use second arg of pop-to-buffer
9253 and display-buffer.
9254
9255 * mail/reporter.el (reporter-submit-bug-report): Use second arg of
9256 display-buffer.
9257
9258 * mail/sendmail.el (sendmail-user-agent-compose): Don't bind the
9259 special-display and same-window variables.
9260 (mail-other-window): Use switch-to-buffer-other-window.
9261 (mail-other-frame): USe switch-to-buffer-other-frame.
9262
9263 * progmodes/gdb-mi.el (gdb-frame-gdb-buffer):
9264 Use display-buffer-other-frame.
9265 (gdb-display-gdb-buffer): Use pop-to-buffer.
9266
9267 * progmodes/gud.el (gud-goto-info): Use info-other-window.
9268
9269 * progmodes/python.el: Don't set same-window-buffer-names.
9270
9271 * textmodes/bibtex.el (bibtex-search-entry): Use switch-to-buffer.
9272
9273 * window.el (display-buffer-alist): Add *Python*.
9274
9275 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
9276
9277 * window.el (display-buffer-alist): Add entry for buffers
9278 previously handled same-window-*.
9279 (display-buffer-alist, display-buffer-default-action)
9280 (display-buffer-overriding-action): Mark as risky.
9281 (display-buffer-alist): Document action function changes.
9282 (display-buffer--same-window-action)
9283 (display-buffer--other-frame-action): New variables.
9284 (switch-to-buffer, display-buffer-other-frame): Use them.
9285 (display-buffer): Rename reuse-frame entry to reusable-frames.
9286 (display-buffer-reuse-selected-window): Function deleted.
9287 (display-buffer-reuse-window): Handle reusable-frames alist entry.
9288 If it's omitted, check pop-up-frames/display-buffer-reuse-frames.
9289 (display-buffer-special): New function.
9290 (display-buffer--maybe-pop-up-frame-or-window): Rename from
9291 display-buffer-reuse-or-pop-window. Split off special-display
9292 part into display-buffer-special.
9293 (display-buffer-use-some-window): Don't perform any special
9294 pop-up-frames handling.
9295 (pop-to-buffer): Use window-normalize-buffer-to-switch-to.
9296 (display-buffer--maybe-same-window): Rename from
9297 display-buffer-maybe-same-window.
9298
9299 * info.el: Don't set same-window-regexps.
9300 (info-setup): New function.
9301 (info-other-window, info): Call it.
9302
9303 * cus-edit.el: Don't set same-window-regexps.
9304 (customize-group): New argument.
9305 (customize-group-other-window): Use it.
9306 (customize-face, customize-face-other-window): Likewise.
9307 (custom-buffer-create-other-window): Use pop-to-buffer directly.
9308
9309 * net/rlogin.el:
9310 * net/telnet.el:
9311 * progmodes/gud.el: Don't set same-window-regexps.
9312
9313 * cmuscheme.el:
9314 * ielm.el:
9315 * shell.el:
9316 * mail/sendmail.el:
9317 * progmodes/inf-lisp.el: Don't set same-window-buffer-names.
9318
9319 2011-09-10 Juri Linkov <juri@jurta.org>
9320
9321 * isearch.el (isearch-edit-string): Remove obsolete mention of
9322 `C-w' (`isearch-yank-word-or-char') from docstring.
9323 (isearch-query-replace): Fix typo in docstring (bug#9466).
9324
9325 2011-09-10 Juri Linkov <juri@jurta.org>
9326
9327 * paren.el (show-paren-function): Don't show escaped parens.
9328 Let-bind `unescaped' to `t' when paren is not escaped. (Bug#9461)
9329
9330 2011-09-10 Eli Zaretskii <eliz@gnu.org>
9331
9332 * mail/sendmail.el (mml-to-mime, mml-attach-file)
9333 (mm-default-file-encoding): Remove autoload forms, they are
9334 replaced with autoload cookies in mml.el and mm-encode.el.
9335 (mail-add-attachment): New command.
9336 (mail-mode-map): Add a menu-bar item for mail-add-attachment.
9337 (mail-mode): Mention mail-insert-file and mail-add-attachment in
9338 the doc string.
9339 (mml-to-mime, mml-attach-file, mm-default-file-encoding): Declare.
9340
9341 2011-09-10 Reuben Thomas <rrt@sc3d.org>
9342
9343 * simple.el (count-words-region): Use buffer if there's no region
9344 (bug#9429).
9345
9346 2011-09-09 Juri Linkov <juri@jurta.org>
9347
9348 * wdired.el (wdired-change-to-wdired-mode): Set buffer-local
9349 `isearch-filter-predicate' to `wdired-isearch-filter-read-only'.
9350 (wdired-isearch-filter-read-only): New function. (Bug#6362)
9351
9352 2011-09-09 Alan Mackenzie <acm@muc.de>
9353
9354 * progmodes/cc-mode.el (awk-mode): Prevent `define-derived-mode'
9355 spuriously generating `awk-mode-syntax-table'. (Bug #9448).
9356
9357 2011-09-09 Eli Zaretskii <eliz@gnu.org>
9358
9359 Fix for Savannah bug#9392.
9360 * simple.el (mail-encode-mml): New defvar.
9361
9362 * mail/rmail.el (mail-encode-mml): Add a defvar.
9363 (rmail-enable-mime-composing): Default to t.
9364 (rmail-forward): Use MIME method of forwarding only if both
9365 rmail-enable-mime-composing and rmail-enable-mime are non-nil.
9366 Set mail-encode-mml non-nil if the MIME method was used.
9367
9368 * mail/sendmail.el (mml-to-mime): Add autoload form.
9369 (mail-encode-mml): Add a defvar.
9370 (mail-mode): Make mail-encode-mml buffer-local and initialize it
9371 to nil.
9372 (mail-send): If mail-encode-mml is non-nil, run the outgoing
9373 message through mml-to-mime, and reset mail-encode-mml to nil.
9374
9375 2011-09-09 Glenn Morris <rgm@gnu.org>
9376
9377 * woman.el (woman-if-body): When processing an .el block,
9378 do not delete the next .el block as well. (Bug#9447)
9379 (woman-special-characters): Add oq, cq, and hy characters.
9380
9381 2011-09-08 Martin Rudalics <rudalics@gmx.at>
9382
9383 * window.el (window-deletable-p): Make sure window is live before
9384 invoking window-prev-buffers.
9385
9386 2011-09-08 Leo Liu <sdl.web@gmail.com>
9387
9388 * net/rcirc.el (rcirc-cmd-invite): New rcirc command. (Bug#9453)
9389
9390 2011-09-08 Juri Linkov <juri@jurta.org>
9391
9392 * progmodes/compile.el (compilation-environment): Make it
9393 a defcustom (bug#8340).
9394
9395 2011-09-08 Martin Rudalics <rudalics@gmx.at>
9396
9397 * window.el (frame-auto-delete): Rename to window-auto-delete.
9398 Make it control auto-deletion of windows and/or frames.
9399 (window-deletable-p): New argument FORCE. Rewrite conditions
9400 for deleting window/frame. (Bug#9419)
9401 (switch-to-prev-buffer, replace-buffer-in-windows, quit-window):
9402 Rewrite handling of case when window/frame can be deleted.
9403 (delete-windows-on): Call window-deletable-p with new FORCE
9404 argument t. (Bug#9456)
9405
9406 2011-09-07 Chong Yidong <cyd@stupidchicken.com>
9407
9408 * help-mode.el (help-mode): Restore autoload.
9409
9410 2011-09-07 Juri Linkov <juri@jurta.org>
9411
9412 * progmodes/compile.el (compilation-start): Let-bind `thisenv' to
9413 `compilation-environment'. Set buffer-local
9414 `compilation-environment' to `thisenv' later after (funcall mode).
9415 (Bug#8340)
9416
9417 * vc/vc-git.el (vc-git-grep): Remove --no-color. (Bug#9408)
9418 (vc-git-grep): Prepend "PAGER=" to `compilation-environment'
9419 instead of replacing its value. (Bug#8340)
9420
9421 2011-09-07 Juri Linkov <juri@jurta.org>
9422
9423 * progmodes/grep.el (grep-regexp-alist): Calculate column positions
9424 based on text properties put by `grep-filter' instead of matching
9425 escape sequences.
9426 (grep-mode): Set buffer-local `compilation-error-screen-columns'
9427 to the value of `grep-error-screen-columns' (bug#9438).
9428
9429 2011-09-07 Juri Linkov <juri@jurta.org>
9430
9431 * simple.el (next-error-highlight, next-error-highlight-no-select):
9432 Doc fix (bug#9432).
9433
9434 2011-09-07 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
9435
9436 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
9437 Check for null c-opt-block-decls-with-vars-key. (Bug#9443)
9438
9439 2011-09-07 Leo Liu <sdl.web@gmail.com>
9440
9441 * net/rcirc.el (rcirc-mode): Conditionally initialize
9442 rcirc-input-ring.
9443
9444 2011-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
9445
9446 * emacs-lisp/find-func.el (find-function-C-source): Only set
9447 find-function-C-source-directory after checking that we found a source
9448 file there (bug#9440).
9449
9450 2011-09-06 Alan Mackenzie <acm@muc.de>
9451
9452 * isearch.el (isearch-other-meta-char): Wherever a key list is
9453 unread, "unread" the prefix arg, too. This fixes bug #8901.
9454
9455 2011-09-05 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
9456
9457 * progmodes/grep.el (rgrep): Add "-type d" (bug#9414).
9458
9459 2011-09-05 Juri Linkov <juri@jurta.org>
9460
9461 * progmodes/grep.el (grep-process-setup): Fix comments (bug#8084).
9462
9463 2011-09-05 Juri Linkov <juri@jurta.org>
9464
9465 * progmodes/grep.el (grep-filter): Avoid incomplete processing by
9466 keeping point where processing of grep matches begins, and
9467 continue to delete remaining escape sequences from the same point.
9468 (grep-filter): Make leading zero optional in "0?1;31m" because
9469 git-grep emits "\033[1;31m" escape sequences unlike expected
9470 "\033[01;31m" as GNU Grep does (bug#9408).
9471 (grep-process-setup): Replace obsolete "ml=" with newer "sl=".
9472
9473 2011-09-05 Juri Linkov <juri@jurta.org>
9474
9475 * subr.el (y-or-n-p): Capitalize "yes".
9476
9477 2011-09-04 Michael Albinus <michael.albinus@gmx.de>
9478
9479 * net/tramp.el (top): Require 'shell. Use `tramp-unload-hook' but
9480 `tramp-cache-unload-hook' where appropriate.
9481 (tramp-methods): Rename `tramp-remote-sh' to
9482 `tramp-remote-shell'. Add `tramp-remote-shell-args'.
9483 (tramp-handle-shell-command): New defun, moved from tramp-sh.el.
9484
9485 * net/tramp-sh.el (top): Don't require 'shell.
9486 (tramp-methods): Add `tramp-remote-shell' and
9487 `tramp-remote-shell-args' entries.
9488 (tramp-sh-file-name-handler-alist): Use `tramp-handle-shell-command'.
9489 (tramp-sh-handle-shell-command): Remove.
9490 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
9491 Use `tramp-remote-shell'.
9492
9493 2011-09-03 Chong Yidong <cyd@stupidchicken.com>
9494
9495 * mail/sendmail.el (sendmail-query-once-function): Delete.
9496 (sendmail-query-once): Save directly to send-mail-function.
9497 Update message-send-mail-function too.
9498
9499 * mail/smtpmail.el (smtpmail-try-auth-methods): Clarify prompt.
9500
9501 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
9502
9503 * progmodes/python.el (python-mode-map): Use correct function to
9504 start python interpreter from menu-bar (as reported by Geert
9505 Kloosterman).
9506 (inferior-python-mode-map): Fix typo.
9507 (python-shell-map): Remove.
9508
9509 2011-09-03 Deniz Dogan <deniz@dogan.se>
9510
9511 * net/rcirc.el (rcirc-print): Simplify code for
9512 rcirc-scroll-show-maximum-output. There is no need to walk
9513 through all windows to find the right one.
9514
9515 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
9516
9517 * help.el (help-return-method): Doc fix.
9518
9519 2011-09-03 Martin Rudalics <rudalics@gmx.at>
9520
9521 * window.el (window-deletable-p): Don't return a non-nil value
9522 when there's a buffer that was shown in the window before.
9523 (Bug#9419)
9524 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
9525 Set window's previous buffers to nil.
9526
9527 2011-09-03 Eli Zaretskii <eliz@gnu.org>
9528
9529 * mail/rmailmm.el (rmail-mime-insert-tagline): Insert an extra
9530 newline before and after the tag line, so it doesn't interfere
9531 with determining the paragraph direction of bidirectional text.
9532
9533 2011-09-03 Leo Liu <sdl.web@gmail.com>
9534
9535 * files.el (find-file-not-true-dirname-list): Remove. (Bug#9422)
9536
9537 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
9538
9539 * window.el (pop-to-buffer-1, pop-to-buffer-same-window): Delete.
9540 (pop-to-buffer): Change interactive spec. Pass second argument
9541 directly to display-buffer.
9542 (display-buffer): Fix interactive spec. Use functionp to
9543 distinguish between a function and a list of functions.
9544
9545 * abbrev.el (edit-abbrevs):
9546 * arc-mode.el (archive-extract):
9547 * autoinsert.el (auto-insert):
9548 * bookmark.el (bookmark-bmenu-list):
9549 * files.el (find-file):
9550 * view.el (view-buffer):
9551 * progmodes/compile.el (compilation-goto-locus):
9552 * textmodes/bibtex.el (bibtex-initialize): Use switch-to-buffer.
9553
9554 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
9555
9556 * window.el (display-buffer-alist): Doc fix.
9557 (display-buffer): Add docstring. Don't treat
9558 display-buffer-default specially.
9559 (display-buffer-reuse-selected-window)
9560 (display-buffer-same-window, display-buffer-maybe-same-window)
9561 (display-buffer-reuse-window, display-buffer-pop-up-frame)
9562 (display-buffer-pop-up-window)
9563 (display-buffer-reuse-or-pop-window)
9564 (display-buffer-use-some-window): New functions.
9565 (display-buffer-default-action): Use them.
9566 (display-buffer-default): Delete.
9567 (pop-to-buffer-1): Fix choice of actions.
9568
9569 2011-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
9570
9571 * minibuffer.el (completion--insert-strings): Don't get confused by
9572 completion entries that end with an LF char.
9573
9574 2011-09-01 Eli Zaretskii <eliz@gnu.org>
9575
9576 * window.el (frame-auto-delete, window-deletable-p): Doc fix.
9577
9578 2011-09-01 Chong Yidong <cyd@stupidchicken.com>
9579
9580 * window.el (display-buffer): Restore interactive spec.
9581 (display-buffer-same-window, display-buffer-other-window):
9582 New functions.
9583 (pop-to-buffer-1): New function. Use the above.
9584 (pop-to-buffer, pop-to-buffer-same-window): Use it.
9585 (pop-to-buffer-other-window, pop-to-buffer-other-frame): Delete.
9586
9587 * view.el (view-buffer-other-window, view-buffer-other-frame):
9588 Just use pop-to-buffer.
9589
9590 2011-09-01 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9591
9592 * vc/vc-rcs.el (vc-rcs-responsible-p): Handle directories. (Bug#9391)
9593
9594 2011-09-01 Wilfred Hughes <wilfred@potatolondon.com> (tiny change)
9595
9596 * vc/vc-git.el (vc-git-grep): Use --no-color. (Bug#9408)
9597
9598 2011-08-31 Richard Stallman <rms@gnu.org>
9599
9600 * mail/rmail.el (rmail-epa-decrypt): Rewrite to take account
9601 of the separation of rmail-view-buffer from rmail-buffer.
9602 If you say no to "replace original", the decrypt is in the
9603 view buffer. If you say yes, the decrypt goes into the
9604 rmail buffer also.
9605
9606 2011-08-31 Martin Rudalics <rudalics@gmx.at>
9607
9608 * window.el (display-buffer-window): Rewrite doc-string.
9609 (display-buffer-record-window): New function.
9610 (display-buffer-macro-specifiers)
9611 (display-buffer-even-window-sizes, display-buffer-set-height)
9612 (display-buffer-set-width, display-buffer-in-window)
9613 (display-buffer-reuse-window, display-buffer-split-specifiers)
9614 (display-buffer-side-specifiers, display-buffer-split-window-1)
9615 (display-buffer-split-window, display-buffer-split-atom-window)
9616 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
9617 (display-buffer-pop-up-side-window, display-buffer-in-side-window)
9618 (display-buffer-other-window-means-other-frame)
9619 (display-buffer-normalize-special)
9620 (display-buffer-normalize-default)
9621 (display-buffer-normalize-argument)
9622 (display-buffer-normalize-alist-1, display-buffer-normalize-alist)
9623 (display-buffer-normalize-specifiers, display-buffer-frame)
9624 (display-buffer-same-window, display-buffer-same-frame)
9625 (display-buffer-other-window)
9626 (display-buffer-same-frame-other-window)
9627 (display-buffer-other-frame, pop-to-buffer-same-window)
9628 (pop-to-buffer-same-frame, pop-to-buffer-other-window)
9629 (pop-to-buffer-same-frame-other-window, pop-to-buffer-other-frame)
9630 (switch-to-buffer-same-frame)
9631 (switch-to-buffer-other-window-same-frame)
9632 (display-buffer-alist-of-strings-p, display-buffer-alist-add)
9633 (display-buffer-alist-set-1, display-buffer-alist-set-2)
9634 (display-buffer-alist-set): Remove.
9635 (display-buffer-function, special-display-buffer-names)
9636 (special-display-regexps, special-display-function):
9637 In doc-string refer to display-buffer-window and quit-restore
9638 parameter.
9639 (pop-up-frame-alist, pop-up-frame-function, special-display-p)
9640 (special-display-frame-alist, special-display-popup-frame)
9641 (same-window-buffer-names, same-window-regexps, same-window-p)
9642 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
9643 (split-window-preferred-function, split-height-threshold)
9644 (split-width-threshold, window-splittable-p)
9645 (split-window-sensibly, window--try-to-split-window)
9646 (window--frame-usable-p, even-window-heights)
9647 (window--even-window-heights, window--display-buffer-1)
9648 (window--display-buffer-2, display-buffer-other-frame):
9649 Restore old Emacs 23 code, order and doc-strings where applicable.
9650 (display-buffer-default, display-buffer-assq-regexp): New functions.
9651 (display-buffer-alist): Rewrite doc-string.
9652 (display-buffer-default-action)
9653 (display-buffer-overriding-action): New variables.
9654 (display-buffer, switch-to-buffer): Rewrite.
9655 (pop-to-buffer): Restore Emacs 23 behavior but use
9656 window-normalize-buffer-to-display.
9657 (switch-to-buffer-other-window, switch-to-buffer-other-frame):
9658 Restore Emacs 23 behavior but use
9659 window-normalize-buffer-to-switch-to.
9660 (pop-to-buffer-same-window): Rewrite.
9661 (pop-to-buffer-other-window, pop-to-buffer-other-frame):
9662 Rewrite using Emacs 23 options.
9663
9664 2011-08-31 Michael Albinus <michael.albinus@gmx.de>
9665
9666 * net/tramp.el (tramp-root-regexp): Remove.
9667 (tramp-completion-file-name-regexp-unified)
9668 (tramp-completion-file-name-regexp-separate)
9669 (tramp-completion-file-name-regexp-url): Don't use leading volume
9670 letter on win32 systems. (Bug#5303, Bug#9311)
9671 (tramp-drop-volume-letter): Simplify definition.
9672 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
9673
9674 2011-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
9675
9676 * subr.el (event-modifiers): Fix "missing modifier" part of docstring
9677 (bug#9356).
9678
9679 2011-08-30 Reuben Thomas <rrt@sc3d.org> (tiny change)
9680
9681 * vc/pcvs-defs.el (cvs-find-file-and-jump): Docstring typo (bug#9369).
9682
9683 2011-08-29 Juri Linkov <juri@jurta.org>
9684
9685 * isearch.el (isearch-done): Don't display message "Mark saved"
9686 when arg `edit' is non-nil to prevent its flicker in the echo area.
9687
9688 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
9689
9690 * emacs-lisp/package.el (package-menu-mark-delete): Allow marking
9691 obsolete packages for deletion.
9692
9693 2011-08-28 Christoph Scholtes <cschol2112@googlemail.com>
9694
9695 * help-mode.el (help-mode-map): Add special-mode-map to parent.
9696 (help-mode): Derive help-mode from special-mode. Don't invoke
9697 view-mode from help-mode.
9698 (help-xref-override-view-map): Remove.
9699 (help-make-xrefs): Remove minor-mode-overriding-map-alist since
9700 view-mode is not used anymore.
9701
9702 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
9703
9704 * server.el (server-port): Doc fix.
9705
9706 * cus-theme.el (custom-theme-choose-mode): Inherit from
9707 special-mode (Bug#9124).
9708 (custom-theme-choose-mode-map): Add special-mode to parent.
9709
9710 2011-08-28 Alan Mackenzie <acm@muc.de>
9711
9712 * progmodes/cc-fonts.el
9713 (c-make-font-lock-BO-decl-search-function): New function.
9714 (c-basic-matchers-after - "Fontify the clauses after various
9715 keywords"): Extract the three keyword lists for the 3 erroneous
9716 constructs from the list of four, and use the new function above
9717 in place of an old one.
9718
9719 2011-08-28 Deniz Dogan <deniz@dogan.se>
9720
9721 * net/rcirc.el (rcirc-insert-prev-input)
9722 (rcirc-insert-next-input): Remove unused argument.
9723
9724 2011-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
9725
9726 * shell.el (shell-parse-pcomplete-arguments): Unquote args (bug#9160).
9727
9728 2011-08-27 Alan Mackenzie <acm@muc.de>
9729
9730 * progmodes/cc-menus.el (cc-imenu-c++-generic-expression): Make it
9731 handle function pointer parameters properly.
9732
9733 2011-08-27 Martin Rudalics <rudalics@gmx.at>
9734
9735 * window.el (display-buffer-reuse-window): Fix case where
9736 selected window was reused with non-nil OTHER-WINDOW argument.
9737 (Bug#9381)
9738
9739 2011-08-27 Deniz Dogan <deniz@dogan.se>
9740
9741 * net/rcirc.el (rcirc-check-auth-status): Adding support for
9742 oftc's NickServ messages.
9743
9744 2011-08-27 Glenn Morris <rgm@gnu.org>
9745
9746 * saveplace.el (save-place-limit): Make it finite. (Bug#9352)
9747
9748 2011-08-26 Chong Yidong <cyd@stupidchicken.com>
9749
9750 * emacs-lisp/package.el (package-install): Call package-initialize
9751 if called interactively.
9752
9753 2011-08-26 Leo Liu <sdl.web@gmail.com>
9754
9755 * emacs-lisp/cl-macs.el (defstruct): Fix format. (Bug#9357)
9756
9757 2011-08-25 Juri Linkov <juri@jurta.org>
9758
9759 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
9760 `search-whitespace-regexp' (bug#9364).
9761
9762 2011-08-25 Juri Linkov <juri@jurta.org>
9763
9764 * isearch.el (isearch-edit-string): Let-bind `search-ring' and
9765 `regexp-search-ring' to their global values to protect from
9766 updating by `read-from-minibuffer' (bug#9185).
9767
9768 2011-08-25 Juri Linkov <juri@jurta.org>
9769
9770 * textmodes/ispell.el (ispell-command-loop): Add newline
9771 at the end of the "Use option `i'..." line.
9772
9773 2011-08-25 Juri Linkov <juri@jurta.org>
9774
9775 * battery.el (display-battery-mode): If `battery-status-function'
9776 or `battery-mode-line-format' is nil, display the message and set
9777 `display-battery-mode' to nil (bug#9363).
9778
9779 2011-08-25 Eli Zaretskii <eliz@gnu.org>
9780
9781 * buff-menu.el (Buffer-menu-buffer+size): Remove calls to
9782 bidi-string-mark-left-to-right; they are unnecessary now.
9783
9784 2011-08-25 Deniz Dogan <deniz@dogan.se>
9785
9786 * net/quickurl.el: Documentation typo fixes.
9787
9788 2011-08-25 Chong Yidong <cyd@stupidchicken.com>
9789
9790 * window.el (bury-buffer, quit-window): Use bury-buffer-internal.
9791
9792 2011-08-25 Glenn Morris <rgm@gnu.org>
9793
9794 * emacs-lisp/derived.el (define-derived-mode): Doc fix.
9795
9796 * mail/smtpmail.el (smtpmail-smtp-user): Add version: tag.
9797 (smtpmail-via-smtp): Handle nil response from smtp.
9798
9799 2011-08-24 Juri Linkov <juri@jurta.org>
9800
9801 * proced.el (proced-marked): Inherit from `error' instead of
9802 `font-lock-warning-face'.
9803
9804 * ibuffer.el (ibuffer-marked-face): Change default face from
9805 `font-lock-warning-face' to `warning'.
9806 (ibuffer-deletion-face): Change default face from
9807 `font-lock-type-face' to `error'.
9808
9809 * battery.el (battery-update): Use the face `error' instead of
9810 `font-lock-warning-face' (bug#6117).
9811
9812 2011-08-24 Juri Linkov <juri@jurta.org>
9813
9814 * faces.el (success): Change face color from "Green3" to
9815 "ForestGreen" on light background (bug#9353).
9816
9817 2011-08-24 Chong Yidong <cyd@stupidchicken.com>
9818
9819 * window.el (quit-window): Rename from quit-restore-window.
9820 Use same arglist as old quit-window.
9821 (frame-auto-delete): Doc fix.
9822
9823 * view.el (view-mode-exit): Use quit-window.
9824
9825 2011-08-24 Juri Linkov <juri@jurta.org>
9826
9827 * isearch.el (isearch-ring-adjust1): Start visiting previous
9828 search strings from the index 0 (-1 + 1) instead of 1 (0 + 1).
9829 (isearch-repeat, isearch-edit-string): Call `isearch-ring-adjust1'
9830 for empty search string (when the last search string is reused
9831 automatically) to adjust the isearch ring to the last element and
9832 prepare the correct index for further M-p commands (bug#9185).
9833
9834 2011-08-24 Kenichi Handa <handa@m17n.org>
9835
9836 * international/ucs-normalize.el: If decomposition property of
9837 CHAR is the default one (i.e. a list of CHAR itself), treat it as
9838 nil.
9839 (nfd, nfkd): Likewise.
9840
9841 2011-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
9842
9843 * mpc.el (mpc--proc-filter): Don't signal mpc-proc-error since signals
9844 from process filters aren't reliably transmitted to the surrounding
9845 accept-process-output.
9846 (mpc-proc-check): New function.
9847 (mpc-proc-sync): Use it (bug#8293)
9848
9849 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
9850
9851 * emacs-lisp/eieio.el (eieio-defmethod, eieio-defgeneric):
9852 Add compatibility functions (bug#9313).
9853
9854 2011-08-23 Eli Zaretskii <eliz@gnu.org>
9855
9856 * cus-start.el (all): Add entry for bidi-paragraph-direction.
9857
9858 * international/uni-bidi.el: Regenerate.
9859
9860 2011-08-23 Kenichi Handa <handa@m17n.org>
9861
9862 * international/charprop.el:
9863 * international/uni-bidi.el:
9864 * international/uni-category.el:
9865 * international/uni-combining.el:
9866 * international/uni-comment.el:
9867 * international/uni-decimal.el:
9868 * international/uni-decomposition.el:
9869 * international/uni-digit.el:
9870 * international/uni-lowercase.el:
9871 * international/uni-mirrored.el:
9872 * international/uni-name.el:
9873 * international/uni-numeric.el:
9874 * international/uni-old-name.el:
9875 * international/uni-titlecase.el:
9876 * international/uni-uppercase.el: Regenerate.
9877
9878 2011-08-23 Martin Rudalics <rudalics@gmx.at>
9879
9880 * help.el (help-window-setup): Fix message displayed when other
9881 window is reused. (Bug#9341)
9882
9883 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
9884
9885 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list.
9886 * pcomplete.el (pcomplete-quote-argument): Fix thinko (bug#9161).
9887
9888 * pcomplete.el (pcomplete-parse-comint-arguments): Fix inf-loop.
9889 Mark obsolete.
9890 * shell.el (shell-parse-pcomplete-arguments): New function.
9891 (shell-completion-vars): Use it instead (bug#9160).
9892
9893 2011-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
9894
9895 * progmodes/sh-script.el (sh-maybe-here-document): Disable magic in
9896 strings and comments (bug#9333).
9897
9898 * emacs-lisp/debug.el (debug-arglist): New function.
9899 (debug-convert-byte-code): Use it. Handle lexical byte-codes.
9900 (debug-on-entry-1): Handle interpreted closures (bug#9120).
9901
9902 2011-08-22 Juri Linkov <juri@jurta.org>
9903
9904 * progmodes/compile.el (compilation-mode-font-lock-keywords):
9905 Revert regexp that highlights output switches to its old
9906 pre-2010-10-28 value and remove one `?' from it (bug#9319).
9907
9908 * progmodes/grep.el (grep-process-setup): Use `buffer-modified-p'
9909 to check for empty output (bug#9226).
9910
9911 2011-08-22 Chong Yidong <cyd@stupidchicken.com>
9912
9913 * progmodes/scheme.el (scheme-mode-syntax-table): Don't use
9914 symbol-constituent as the default, as that stops font-lock from
9915 working properly (Bug#8843).
9916
9917 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
9918
9919 * mail/smtpmail.el (smtpmail-via-smtp): Only bind
9920 `coding-system-for-*' around the process open call to avoid
9921 auth-source side effects.
9922 (smtpmail-try-auth-methods): Expand the secret password.
9923 (smtpmail-query-smtp-server): Allow `quit'-ing out in case the
9924 probe hangs.
9925
9926 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
9927
9928 * term.el (term-mouse-paste): Yank primary selection (Bug#6845).
9929
9930 * emacs-lisp/find-func.el (find-function-noselect): New arg
9931 lisp-only.
9932
9933 * emacs-lisp/edebug.el (edebug-instrument-function): Use it to
9934 signal an error for built-in functions (Bug#6664).
9935
9936 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
9937
9938 * mail/smtpmail.el (smtpmail-smtp-user): New variable.
9939 (smtpmail-try-auth-methods): Use it.
9940
9941 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
9942
9943 * font-lock.el (font-lock-fontify-region)
9944 (font-lock-unfontify-region, font-lock-default-fontify-buffer)
9945 (font-lock-default-unfontify-buffer)
9946 (font-lock-default-fontify-region)
9947 (font-lock-default-unfontify-region): Add docstrings (Bug#8624).
9948
9949 * progmodes/compile.el (compilation-error-properties):
9950 Fix confusion between file struct and message struct (Bug#9319).
9951 (compilation-error-regexp-alist-alist): Fix 2011-05-09 change to
9952 `ant' regexp.
9953
9954 * net/browse-url.el (browse-url-firefox): Don't call
9955 browse-url-firefox-sentinel unless using -remote (Bug#9328).
9956
9957 2011-08-20 Glenn Morris <rgm@gnu.org>
9958
9959 * tutorial.el (help-with-tutorial): Avoid an error on short screens.
9960
9961 * tutorial.el (tutorial--default-keys): Update some default bindings.
9962
9963 * files.el (hack-local-variables): Fully ignore case for "mode:".
9964
9965 2011-08-20 Alan Mackenzie <acm@muc.de>
9966
9967 Resolve invalid use of a regexp in regexp-opt.
9968
9969 * progmodes/cc-fonts.el (c-complex-decl-matchers): Add in special
9970 detection for a java annotation.
9971
9972 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Add in special
9973 detection for a java annotation.
9974
9975 * progmodes/cc-langs.el (c-prefix-spec-kwds-re): Remove the special
9976 handling for java.
9977 (c-modifier-kwds): Remove the regexp "@[A-za-z0-9]+".
9978
9979 2011-08-20 Chong Yidong <cyd@stupidchicken.com>
9980
9981 * startup.el (normal-top-level-add-subdirs-to-load-path): Doc fix
9982 (Bug#9274).
9983
9984 2011-08-20 Alan Mackenzie <acm@muc.de>
9985
9986 Fontify CPP expressions correctly when starting in the middle of
9987 such a construct. Mainly for when jit-lock etc. starts a chunk
9988 here.
9989
9990 * progmodes/cc-fonts.el (c-font-lock-context): New buffer local
9991 variable.
9992 (c-make-font-lock-search-form): New function, extracted from
9993 c-make-font-lock-search-function.
9994 (c-make-font-lock-search-function): Use the above function.
9995 (c-make-font-lock-context-search-function): New function.
9996 (c-cpp-matchers): Enhance the preprocessor expression case with
9997 the above function
9998 (c-font-lock-complex-decl-prepare): Test for being in a CPP form
9999 which takes an expression.
10000
10001 * progmodes/cc-langs.el (c-cpp-expr-intro-re): New lang-variable.
10002
10003 2011-08-20 Martin Rudalics <rudalics@gmx.at>
10004
10005 * window.el (display-buffer-reuse-window)
10006 (display-buffer-pop-up-window): Don't reuse or split a side
10007 window.
10008
10009 2011-08-19 Glenn Morris <rgm@gnu.org>
10010
10011 * files.el (hack-local-variables-prop-line, hack-local-variables):
10012 Downcase "Mode:". (Bug#9331)
10013
10014 2011-08-18 Chong Yidong <cyd@stupidchicken.com>
10015
10016 * international/characters.el: Add L and R categories.
10017
10018 * subr.el (bidi-string-mark-left-to-right): Rename from
10019 string-mark-left-to-right. Use category search.
10020
10021 * buff-menu.el (Buffer-menu-buffer+size): Callers changed.
10022
10023 2011-08-18 Juri Linkov <juri@jurta.org>
10024
10025 * faces.el (error, warning, success): New faces with definitions
10026 copied from old default values of `font-lock-warning-face',
10027 `compilation-warning', `compilation-info' (bug#6117).
10028
10029 * font-lock.el (font-lock-warning-face): Inherit from `error'.
10030
10031 * progmodes/compile.el (compilation-error): Inherit from `error'.
10032 (compilation-warning): Inherit from `warning'.
10033 (compilation-info): Inherit from `success'.
10034
10035 * dired.el (dired-marked): Inherit from `warning'.
10036 (dired-flagged): Inherit from `error'.
10037
10038 2011-08-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
10039
10040 * mail/smtpmail.el (auth-source): Require to avoid problems with
10041 binding variables (bug#9298). Also clean up some unused
10042 autoloads.
10043
10044 * net/network-stream.el (network-stream-open-starttls):
10045 Support using starttls.el without using gnutls-cli.
10046
10047 2011-08-17 Juri Linkov <juri@jurta.org>
10048
10049 * progmodes/grep.el (rgrep): Handle the case when
10050 `grep-find-command' is a cons cell (bug#9278).
10051
10052 2011-08-17 Martin Rudalics <rudalics@gmx.at>
10053
10054 * window.el (display-buffer-pop-up-frame): Run frame creation
10055 function with BUFFER current (as special-display-popup-frame
10056 does). Reported by Drew Adams.
10057
10058 2011-08-17 Daiki Ueno <ueno@unixuser.org>
10059
10060 * epa-mail.el: Simplify GnuPG group expansion using
10061 epg-expand-group.
10062 (epa-mail-group-alist, epa-mail-group-modtime)
10063 (epa-mail-gnupg-conf-file, epa-mail-parse-groups)
10064 (epa-mail-sync-groups, epa-mail-expand-recipient-1)
10065 (epa-mail-expand-recipients-2, epa-mail-expand-recipients):
10066 Remove.
10067
10068 2011-08-16 Feng Li <fengli@gmail.com> (tiny change)
10069
10070 * calc/calc-ext.el (math-defintegral-2): Remove nested backquote.
10071
10072 2011-08-16 Alan Mackenzie <acm@muc.de>
10073
10074 * progmodes/cc-engine.el (c-state-cache-non-literal-place):
10075 Correct, to avoid the inside of macros.
10076
10077 2011-08-16 Richard Stallman <rms@gnu.org>
10078
10079 * epa-mail.el: Handle GnuPG group definitions.
10080 (epa-mail-group-alist, epa-mail-group-modtime)
10081 (epa-mail-gnupg-conf-file): New variables.
10082 (epa-mail-parse-groups, epa-mail-sync-groups)
10083 (epa-mail-expand-recipient-1, epa-mail-expand-recipients-2)
10084 (epa-mail-expand-recipients): New functions.
10085 (epa-mail-encrypt): Call epa-mail-expand-recipients.
10086
10087 * mail/rmail.el (rmail-epa-decrypt): New command.
10088
10089 * epa.el (epa-decrypt-region): New arg MAKE-BUFFER-FUNCTION.
10090 Don't bind buffer-read-only, just inhibit-read-only.
10091 (epa--find-coding-system-for-mime-charset): Fix the non-xemacs case.
10092 (epa-decrypt-armor-in-region): Make error message clearer.
10093
10094 2011-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
10095
10096 * minibuffer.el (completion-pcm--merge-completions): Don't merge "a1b"
10097 and "a2b" to "ab" for `prefix'.
10098
10099 2011-08-14 Chong Yidong <cyd@stupidchicken.com>
10100
10101 * ibuf-ext.el (ibuffer-filter-disable): New arg for deleting
10102 filter groups.
10103 (ibuffer-included-in-filter-p-1): Use it. Suggested by Rafaël
10104 Fourquet (Bug#8804).
10105
10106 2011-08-12 Juanma Barranquero <lekktu@gmail.com>
10107
10108 * startup.el (argi): Declare as global variable (bug#9275).
10109
10110 2011-08-12 Chong Yidong <cyd@stupidchicken.com>
10111
10112 * subr.el (string-mark-left-to-right): Search the entire string
10113 for RTL script, not just the terminating character. Doc fix.
10114
10115 2011-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
10116
10117 * progmodes/js.el (js-syntax-propertize, js-syntax-propertize-regexp):
10118 New function.
10119 (js--regexp-literal, js-syntax-propertize-function): Remove.
10120 (js-mode): Use js-syntax-propertize to handle multilines (bug#9183).
10121 (js-mode-map): Don't rebind electric keys.
10122 (js-insert-and-indent): Remove.
10123 (js-mode): Setup electric-layout and electric-indent instead.
10124
10125 * epa-file.el (epa-file-select-keys): Revert to nil default (bug#9280).
10126
10127 2011-08-12 Daiki Ueno <ueno@unixuser.org>
10128
10129 * epa.el (epa-progress-callback-function): Fix the logic of
10130 displaying progress.
10131 * epa-file.el (epa-file-insert-file-contents): Make progress
10132 display more user-friendly.
10133 (epa-file-write-region): Ditto.
10134
10135 2011-08-10 Chong Yidong <cyd@stupidchicken.com>
10136
10137 * subr.el (string-mark-left-to-right): New function.
10138
10139 * buff-menu.el (Buffer-menu-buffer+size): Remove LRM argument.
10140 Use string-mark-left-to-right.
10141 (list-buffers-noselect): Caller changed.
10142
10143 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
10144 Use string-mark-left-to-right.
10145 (tabulated-list-print): Recenter after moving point.
10146
10147 2011-08-10 Juri Linkov <juri@jurta.org>
10148
10149 * progmodes/grep.el (rgrep): Don't bind `process-connection-type'.
10150 This finishes incomplete reversion of 2011-06-30T01:09:13Z!larsi@gnus.org
10151 intended by 2011-07-06T15:49:19Z!larsi@gnus.org.
10152
10153 2011-08-09 Chong Yidong <cyd@stupidchicken.com>
10154
10155 * hi-lock.el (hi-lock-unface-buffer): Fix interactive spec
10156 (Bug#7554).
10157
10158 2011-08-09 Andreas Schwab <schwab@linux-m68k.org>
10159
10160 * xt-mouse.el (xterm-mouse-event-read): Try to recover the raw
10161 character. (Bug#6594)
10162
10163 2011-08-08 Chong Yidong <cyd@stupidchicken.com>
10164
10165 * image-dired.el: Don't use find-file for temporary work (Bug#7895).
10166 (image-dired--with-db-file): New macro.
10167 (image-dired-write-tags, image-dired-remove-tag)
10168 (image-dired-create-gallery-lists, image-dired-write-comments)
10169 (image-dired-get-comment, image-dired-mark-tagged-files)
10170 (image-dired-list-tags, image-dired-gallery-generate): Use it.
10171 (image-dired-gallery-generate): Use insert-file-contents.
10172
10173 * time.el (display-time-world-list, display-time-world-display):
10174 * time-stamp.el (time-stamp-string):
10175 * vc/add-log.el (add-change-log-entry): Use setenv instead of
10176 set-time-zone-rule (Bug#7337).
10177
10178 2011-08-08 Daiki Ueno <ueno@unixuser.org>
10179
10180 * epg.el (epg--status-KEYEXPIRED, epg--status-KEYREVOKED): Fix typo.
10181 (epg-error-to-string, epg-errors-to-string): New function.
10182 (epg-wait-for-completion): Reverse errors list.
10183 (epg--check-error-for-decrypt, epg-sign-file, epg-sign-string)
10184 (epg-encrypt-file, epg-encrypt-string, epg-export-keys-to-file)
10185 (epg--import-keys-1, epg-receive-keys, epg-delete-keys)
10186 (epg-sign-keys, epg-generate-key-from-file)
10187 (epg-generate-key-from-string): Format errors by using
10188 epg-errors-to-string (bug#9255).
10189 (epg--status-INV_SGNR, epg--status-NO_SGNR): New status handler.
10190
10191 2011-08-07 Juri Linkov <juri@jurta.org>
10192
10193 * faces.el (list-faces-display): Remove extra angle bracket
10194 from `help-mode-map'.
10195
10196 * info.el (Info-history-toc-nodes): Doc fix.
10197
10198 * longlines.el (longlines-mode): Doc fix.
10199
10200 2011-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
10201
10202 * progmodes/js.el (js--regexp-literal): Accept regexps at the beginning
10203 of statements and in a few more cases (bug#9183).
10204
10205 * emacs-lisp/cl-macs.el (cl--make-usage-var, cl--make-usage-args):
10206 New functions.
10207 (cl-transform-lambda): Use them (bug#9239).
10208
10209 2011-08-05 Martin Rudalics <rudalics@gmx.at>
10210
10211 * window.el (display-buffer-same-window)
10212 (display-buffer-same-frame, display-buffer-other-window)
10213 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
10214 (pop-to-buffer-other-window)
10215 (pop-to-buffer-same-frame-other-window)
10216 (pop-to-buffer-other-frame): Make them defuns.
10217 (switch-to-buffer): Don't set LABEL argument of pop-to-buffer.
10218
10219 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
10220
10221 * subr.el (make-composed-keymap): Move from C. Change calling
10222 convention, and improve docstring to bring attention to a subtle point.
10223 * minibuffer.el (completing-read-default): Adjust accordingly.
10224
10225 2011-08-03 Michael Albinus <michael.albinus@gmx.de>
10226
10227 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
10228 (tramp-open-shell): Use `tramp-shell-quote-argument'.
10229
10230 * net/trampver.el: Update release number.
10231
10232 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
10233
10234 * progmodes/sh-script.el (sh-font-lock-paren): Don't mistake "main" for
10235 "in" (bug#9190).
10236
10237 2011-08-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
10238
10239 * mail/sendmail.el (sendmail-query-once): Restore the current
10240 buffer after querying (bug#9074).
10241
10242 * dired.el (dired-flagged): Use different faces for marked and
10243 flagged files (bug#6117).
10244
10245 * emacs-lisp/cl-macs.el (dolist): Mention that there's a nil block
10246 (bug#4433).
10247
10248 * ido.el (ido-mode): Switch off the message if called
10249 non-interactively.
10250
10251 * mail/smtpmail.el (smtpmail-query-smtp-server): Try port 25
10252 before 587, since it appears that that's more likely to work for
10253 more people.
10254
10255 * cus-edit.el (custom-file): When running under emacs -q, always
10256 refuse to save the customizations, even if the .emacs file doesn't
10257 exist.
10258
10259 * info.el: Remove the `Info-beginning-of-buffer' function
10260 (bug#8325).
10261
10262 * net/network-stream.el (network-stream-open-starttls):
10263 Use `starttls-available-p' to see whether starttls.el can be used.
10264
10265 2011-08-01 Martin Rudalics <rudalics@gmx.at>
10266
10267 * window.el (display-buffer-in-window): Don't set dedicated status
10268 of window here (Bug#9215).
10269 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
10270 (display-buffer-pop-up-side-window)
10271 (display-buffer-in-side-window): Set dedicated status of window here.
10272
10273 2011-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
10274
10275 * emacs-lisp/package.el (package-generate-autoloads): Load autoloads
10276 before binding generated-autoload-file.
10277
10278 2011-08-01 Deniz Dogan <deniz@dogan.se>
10279
10280 * net/rcirc.el (rcirc-handler-333): Clarify docstring.
10281
10282 2011-07-30 Michael Albinus <michael.albinus@gmx.de>
10283
10284 Sync with Tramp 2.2.2.
10285
10286 * net/trampver.el: Update release number.
10287
10288 2011-07-30 Juri Linkov <juri@jurta.org>
10289
10290 * dired-aux.el (dired-touch-initial): Remove function.
10291 (dired-do-chxxx): For op-symbol `touch', set `initial' to the
10292 current time, and `default' to the last modification time of the
10293 current marked file (bug#6887).
10294
10295 2011-07-28 Jose E. Marchesi <jemarch@gnu.org>
10296
10297 * simple.el (goto-line): Use string-to-number to provide a
10298 numeric argument to read-number (bug#9163).
10299
10300 2011-07-27 Michael Albinus <michael.albinus@gmx.de>
10301
10302 * net/tramp-sh.el (tramp-maybe-send-script): Don't let-bind the
10303 connection process, it could be nil.
10304
10305 2011-07-27 Leo Liu <sdl.web@gmail.com>
10306
10307 Simplify url handling in rcirc-mode.
10308
10309 * net/rcirc.el (rcirc-browse-url-map, rcirc-browse-url-at-point)
10310 (rcirc-browse-url-at-mouse): Remove.
10311 * net/rcirc.el (rcirc-markup-urls): Use `make-button'.
10312
10313 2011-07-26 Alan Mackenzie <acm@muc.de>
10314
10315 Fontify bitfield declarations properly.
10316
10317 * progmodes/cc-langs.el (c-has-bitfields): New lang variable.
10318 (c-symbol-chars): Now exported as a lang variable.
10319 (c-not-primitive-type-keywords): New lang variable.
10320
10321 * progmodes/cc-fonts.el (c-font-lock-declarations): Jump over the
10322 QT keyword "more" to prevent "more slots: ...." being spuriously
10323 parsed as a bitfield declaration.
10324
10325 * progmodes/cc-engine.el (c-beginning-of-statement-1):
10326 Refactor and enhance to handle bitfield declarations.
10327 (c-punctuation-in): New function.
10328 (c-forward-decl-or-cast-1): Enhance CASE 3 to handle bitfield
10329 declarations properly.
10330
10331 2011-07-26 Ulf Jasper <ulf.jasper@web.de>
10332
10333 * calendar/icalendar.el (icalendar--all-events): Take care of
10334 multiple vcalendars in a single file.
10335 (icalendar--convert-float-to-ical): Checkdoc fixes.
10336
10337 2011-07-25 Deniz Dogan <deniz@dogan.se>
10338
10339 * image.el (insert-image): Clarifying docstring.
10340
10341 2011-07-24 Michael Albinus <michael.albinus@gmx.de>
10342
10343 * net/tramp-sh.el (tramp-barf-unless-okay): Return the value of
10344 `tramp-send-command-and-check' if there is no error.
10345 (tramp-send-command-and-read): Suppress *all* errors if NOERROR.
10346
10347 2011-07-22 Alan Mackenzie <acm@muc.de>
10348
10349 Prevent cc-langs.elc being loaded at run time.
10350
10351 * progmodes/cc-mode.el: Remove two autoload forms which loaded
10352 cc-langs.
10353
10354 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Don't emit
10355 "(require 'cc-langs)". Quote a form so it will evaluate at
10356 (cc-mode's) compilation time.
10357
10358 2011-07-22 Michael Albinus <michael.albinus@gmx.de>
10359
10360 * net/tramp.el (tramp-file-name-handler): Avoid recursive
10361 loading. (Bug#9114)
10362
10363 2011-07-21 Martin Rudalics <rudalics@gmx.at>
10364
10365 * window.el (display-buffer-pop-up-window)
10366 (display-buffer-pop-up-side-window)
10367 (display-buffer-in-side-window): Call display-buffer-set-height
10368 and display-buffer-set-width after setting the new window's
10369 buffer so `fit-window-to-buffer' and friends work on the right buffer.
10370
10371 2011-07-20 Sam Steingold <sds@gnu.org>
10372
10373 * progmodes/etags.el (etags-file-of-tag, etags-tags-table-files)
10374 (etags-tags-included-tables): Call `convert-standard-filename' on
10375 the file names contained in TAGS so that windows Emacs can handle
10376 TAGS files created by cygwin ctags.
10377
10378 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
10379
10380 * proced.el (proced-update): Revert yesterday's bug#1779 patch,
10381 which apparently didn't work.
10382
10383 2011-07-19 Roland Winkler <winkler@gnu.org>
10384
10385 * proced.el (proced-send-signal): For *Marked Processes* buffer
10386 put point at beginning of buffer.
10387
10388 2011-07-19 Stephen Berman <stephen.berman@gmx.net>
10389
10390 * proced.el (proced-format): Make header lines align with the text
10391 (bug#1779).
10392
10393 2011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
10394
10395 * view.el (view-buffer): Allow running in `special' modes if we're
10396 visiting a file (bug#8615).
10397
10398 2011-07-19 Martin Rudalics <rudalics@gmx.at>
10399
10400 * window.el (display-buffer-alist-of-strings-p)
10401 (display-buffer-alist-set-1, display-buffer-alist-set-2):
10402 New functions.
10403 (display-buffer-alist-set): Rewrite to handle Emacs 23 options
10404 more accurately.
10405
10406 2011-07-18 Alan Mackenzie <acm@muc.de>
10407
10408 Fontify declarators properly when, e.g., a jit-lock chunk begins
10409 inside a declaration.
10410
10411 * progmodes/cc-langs.el (c-symbol-chars): Correct a typo.
10412
10413 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
10414 New function.
10415 (c-complex-decl-matchers): Insert reference to
10416 c-font-lock-enclosing-decls.
10417
10418 * progmodes/cc-engine.el (c-backward-single-comment):
10419 (c-backward-comments): Bind open-paren-in-column-0-is-defun-start
10420 to nil around calls to (forward-comment -1).
10421
10422 2011-07-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
10423
10424 * image.el (put-image): Doc typo fix.
10425
10426 * progmodes/etags.el (tags-search): Doc typo fix.
10427
10428 * mail/smtpmail.el (smtpmail-via-smtp): Query the user for
10429 password if we get errors 550 to 554.
10430
10431 2011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
10432
10433 * net/gnutls.el (gnutls-log-level): Remove.
10434
10435 * textmodes/fill.el (adaptive-fill-regexp): Include EN DASH as an
10436 indentation character (bug#6380).
10437
10438 * files.el (buffer-offer-save): Made permanently local (bug#6241).
10439
10440 * doc-view.el (doc-view-make-safe-dir): Rewrite the error message
10441 to clarify what the problem is (bug#4291).
10442
10443 * simple.el (current-kill): Clarify what
10444 `interprogram-paste-function' does (bug#7500).
10445 (auto-fill-mode): Document `auto-fill-function' in relation to
10446 `auto-fill-mode' (bug#2470).
10447
10448 2011-07-16 Lawrence Mitchell <wence@gmx.li>
10449
10450 * emacs-lisp/cl-macs.el (defstruct): Ignore argument to setf
10451 method if slot is read-only (bug#9035).
10452
10453 2011-07-16 Martin Rudalics <rudalics@gmx.at>
10454
10455 * frame.el (select-frame-set-input-focus): New argument NORECORD.
10456 * window.el (pop-to-buffer): Select window used even if it was
10457 selected before, see discussion of (Bug#8615), (Bug#6954).
10458 Pass argument NORECORD on to select-frame-set-input-focus.
10459
10460 2011-07-15 Glenn Morris <rgm@gnu.org>
10461
10462 * subr.el (read-char-choice): Allow quitting. (Bug#9001)
10463 Respect help-form.
10464
10465 2011-07-09 Lawrence Mitchell <wence@gmx.li>
10466
10467 * net/gnutls.el (gnutls-min-prime-bits): New variable.
10468 (gnutls-negotiate): Use it.
10469
10470 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
10471
10472 * net/gnutls.el (gnutls-negotiate):
10473 Upcase `gnutls-algorithm-priority'.
10474
10475 2011-07-15 Glenn Morris <rgm@gnu.org>
10476
10477 * jka-compr.el (jka-compr-verbose): Move from here...
10478 * jka-cmpr-hook.el (jka-compr-verbose): ... to here. (Bug#9090)
10479 Add missing :version tag.
10480 * info.el: No need to require jka-compr when compiling.
10481
10482 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
10483
10484 * net/gnutls.el (gnutls-algorithm-priority): New variable.
10485 (gnutls-negotiate): Use it.
10486
10487 * emacs-lisp/cl-macs.el (declare): Link to the "Declarations" node.
10488
10489 * info.el (Info-beginning-of-buffer): New command.
10490 (Info-mode-map): Use it instead of `beginning-of-buffer' to allow
10491 announcing `b' as the key (bug#8325).
10492 (Info-mode-menu): Use `Info-beginning-of-buffer' for consistency.
10493
10494 * emacs-lisp/cl-macs.el (declare): Doc string fix-up.
10495
10496 * international/mule-cmds.el
10497 (describe-specified-language-support): Make the error message
10498 clearer (bug#8905).
10499
10500 * emacs-lisp/cl-macs.el (declare): Add a doc string (bug#8690).
10501
10502 * isearch.el (isearch-barrier): Add a doc string, since it's
10503 mentioned in a function doc string (bug#8678).
10504
10505 2011-07-15 Martin Rudalics <rudalics@gmx.at>
10506
10507 * window.el (switch-to-buffer): Call pop-to-buffer with normalized
10508 buffer argument (Bug#9083) and self-identifying label argument.
10509
10510 2011-07-15 Glenn Morris <rgm@gnu.org>
10511
10512 * emacs-lisp/debug.el (debug): Doc fix. (Bug#8273)
10513
10514 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
10515
10516 * man.el (Man-fontify-manpage): Fix message when formatting the
10517 man page (bug#7929).
10518
10519 2011-07-14 Eli Zaretskii <eliz@gnu.org>
10520
10521 * buff-menu.el (Buffer-menu-buffer+size): Accept an additional
10522 argument LRM; if non-nil, append an invisible LRM character to the
10523 buffer name.
10524 (list-buffers-noselect): Call Buffer-menu-buffer+size with the
10525 last argument non-nil, when formatting buffer names.
10526 (Buffer-menu-mode, list-buffers-noselect): Force left-to-right
10527 paragraph direction.
10528
10529 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
10530
10531 * man.el (Man-bgproc-sentinel): Skip any arguments and only output
10532 the man page name (bug#7929).
10533
10534 * image.el (put-image): Mention the `put-image' overlay property
10535 (bug#7834).
10536
10537 * scroll-bar.el (set-scroll-bar-mode): Mention that
10538 `scroll-bar-mode' lists the values (bug#7772).
10539
10540 * image-mode.el (image-mode-fit-frame): Mention that it's a toggle
10541 command (bug#7729).
10542
10543 * rect.el (apply-on-rectangle): Return the point after the last
10544 operation.
10545 (string-rectangle): Go to the point after the last operation
10546 (bug#7522).
10547
10548 * printing.el (pr-toggle-region): Clarify the documentation
10549 slightly (bug#7493).
10550
10551 * time.el (display-time-update):
10552 Allow `display-time-mail-function' to return nil (bug#7158).
10553 Fix suggested by Detlev Zundel.
10554
10555 * vc/diff.el (diff): Clarify the order the file names are read
10556 (bug#7111).
10557
10558 * mouse.el (mouse-set-region): Link to `mouse-drag-copy-region' in
10559 the doc string (bug#7015).
10560
10561 * font-lock.el (font-lock-maximum-decoration): Mention what
10562 numeric levels mean (bug#6935).
10563
10564 * startup.el (initial-buffer-choice): Don't mention the `none'
10565 selection, which is against policy.
10566
10567 2011-07-14 Martin Rudalics <rudalics@gmx.at>
10568
10569 * window.el (display-buffer-normalize-special):
10570 Replace `dedicated' by `dedicate' to dedicate window (Bug#9072).
10571
10572 2011-07-14 Eli Zaretskii <eliz@gnu.org>
10573
10574 * subr.el (version<, version<=, version=): Mention "-CVS" and
10575 "-12345" alpha version numbers.
10576
10577 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
10578
10579 * bindings.el: Add advertised binding for set-mark-command
10580 (Bug#5772).
10581
10582 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
10583
10584 * bindings.el (mode-line-other-buffer):
10585 * bookmark.el (bookmark-bmenu-2-window):
10586 * bs.el (bs-cycle-next, bs-cycle-previous):
10587 * net/tramp-cmds.el (tramp-append-tramp-buffers): Revert to using
10588 switch-to-buffer.
10589
10590 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
10591 Delete.
10592
10593 2011-07-14 Juanma Barranquero <lekktu@gmail.com>
10594
10595 * follow.el (follow-debug-message, follow-redisplay):
10596 * jka-cmpr-hook.el (with-auto-compression-mode):
10597 Fix typos in docstrings.
10598
10599 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
10600
10601 * subr.el (with-silent-modifications): Clarify somewhat what the
10602 macro inhibits (bug#6525).
10603
10604 * simple.el (eval-expression): Note what it does if called
10605 interactively (bug#6495).
10606
10607 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
10608
10609 * window.el (switch-to-buffer): New arg FORCE-SAME-WINDOW.
10610 Use pop-to-buffer buffer-or-name if it is nil.
10611
10612 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
10613 Remove switch-to-buffer.
10614
10615 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
10616
10617 * files.el (make-directory): Clarify that an error will be raised
10618 if there's an error (bug#6397).
10619
10620 * startup.el (initial-buffer-choice): Add `none' as a choice
10621 (bug#6234).
10622
10623 * subr.el (add-hook): Clarify section about buffer-local hooks
10624 (bug#6218).
10625
10626 * dired.el (dired-flagged): Clarify doc string (bug#6117).
10627
10628 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
10629
10630 * tabify.el (untabify): Preserve the current column so that point
10631 doesn't move (bug#6032).
10632
10633 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
10634
10635 * progmodes/cperl-mode.el (cperl-syntaxify-by-font-lock):
10636 Rewrite to avoid awkward possessive "s" (bug#5986).
10637
10638 2011-07-13 Glenn Morris <rgm@gnu.org>
10639
10640 * dired.el (dired-use-ls-dired): Doc fix. (Bug#9039).
10641 (dired-insert-directory): Give a message the first time
10642 if ls is found not to support --dired.
10643
10644 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
10645
10646 * simple.el (toggle-truncate-lines): Clarify what is toggled
10647 (bug#5580). Text by Drew Adams.
10648
10649 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
10650
10651 * simple.el (blink-matching-open): Make the error message from the
10652 last change less verbose.
10653
10654 2011-07-13 Dan Nicolaescu <dann@ics.uci.edu>
10655
10656 * font-lock.el (font-lock-comment-face): Use the high contrast
10657 "yellow" color for font-lock-comment-face on low color terminals
10658 using a dark background color (bug#4221).
10659
10660 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
10661
10662 * dired.el (dired-insert-set-properties): Make the doc string
10663 reflect what it does now (bug#5325).
10664
10665 * simple.el (blink-matching-open): Say that we were unable to find
10666 the match within the limit, if we're limited (bug#5122).
10667
10668 * international/mule-cmds.el (prefer-coding-system): Add an
10669 example (bug#4869).
10670
10671 * progmodes/etags.el (tags-search): Document `file-list-form'
10672 (bug#4731).
10673
10674 2011-07-13 Lawrence Mitchell <wence@gmx.li>
10675
10676 * net/browse-url.el (browse-url-default-browser)
10677 (browse-url-browser-function): Make the default browser choice a
10678 bit more logical (bug#4300). Also clean up the doc string.
10679
10680 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
10681
10682 * bindings.el (completion-ignored-extensions): Add OpenMCL/Clozure
10683 binary endings (bug#4440).
10684
10685 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
10686
10687 * info.el (info-insert-file-contents): Inhibit jka-compr messages,
10688 which can be pretty annoying (bug#8971).
10689
10690 * jka-compr.el (jka-compr-verbose): New variable, and use
10691 throughout (bug#8971).
10692
10693 * info.el (Info-find-file): Fall back on the installation
10694 directory if we can't find the info node anywhere else.
10695
10696 2011-07-13 Sergei Organov <osv@javad.com> (tiny change)
10697
10698 * vc/vc.el (vc-revert-file):
10699 Don't set file time-stamp in the past. (Bug#5181)
10700
10701 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
10702
10703 * files.el (after-find-file): Give a better error message when
10704 trying to find a symlink that points to a file that doesn't exist
10705 (bug#4398).
10706
10707 * progmodes/cc-vars.el: Remove (probably) misleading comment
10708 (bug#4396).
10709
10710 2011-07-12 Johan Bockgård <bojohan@gnu.org>
10711
10712 * mouse-sel.el (mouse-sel-primary-overlay): Use the `region' face.
10713
10714 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
10715
10716 * mouse-sel.el: Hack restoring functionality, while keeping
10717 compatibility with 2010-07-03 changes to mouse selection.
10718 (mouse-sel-primary-overlay): New var.
10719 (mouse-sel-selection-alist): Use it.
10720 (mouse-sel-mode): Doc fix; remove points that are default features
10721 of mouse.el.
10722
10723 2011-07-12 Johan Bockgård <bojohan@gnu.org>
10724
10725 * progmodes/compile.el (compilation-error-regexp-alist-alist):
10726 Fix previous fix (bug#2490).
10727
10728 2011-07-12 Roland Winkler <winkler@gnu.org>
10729
10730 * textmodes/bibtex.el (bibtex-initialize):
10731 Use pop-to-buffer-same-window.
10732 (bibtex-search-entries): Fix interactive call.
10733
10734 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
10735
10736 * progmodes/compile.el (compilation-error-regexp-alist-alist):
10737 Fontise bytecomp Error lines more correctly (bug#2490).
10738 Fix suggested by Johan Bockgård.
10739
10740 * subr.el (remove-duplicates): Remove; `delete-dups' is sufficient.
10741
10742 * dired-x.el (dired-guess-default): Use `delete-dups'.
10743
10744 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
10745
10746 * dired.el (dired-mark-prompt):
10747 * dired-aux.el (dired-read-shell-command): Doc fix.
10748
10749 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
10750
10751 * mail/sendmail.el (sendmail-query-once):
10752 Use `customize-save-variable' unconditionally, now that it works under
10753 emacs -Q.
10754
10755 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
10756
10757 * cus-edit.el (custom-file): Take an optional no-error variable.
10758 (customize-save-variable): Set the variable, and give a warning if
10759 running under "emacs -q".
10760
10761 2011-07-11 Juanma Barranquero <lekktu@gmail.com>
10762
10763 * loadhist.el (unload-feature-special-hooks):
10764 Add `auto-coding-functions', `fill-nobreak-predicate' and
10765 `find-directory-functions' (bug#5327).
10766
10767 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
10768
10769 * vc/ediff.el (ediff-patch-file): Clarify doc string (bug#3138).
10770
10771 * cus-edit.el (custom-guess-name-alist): -alist variables should
10772 use the `alist' type (bug#3120). Suggested by Drew Adams.
10773
10774 * printing.el: Add documentation to all the `pr-toggle-' commands.
10775
10776 2011-07-11 Leo Liu <sdl.web@gmail.com>
10777
10778 * files.el (toggle-read-only): Only do the `C-x C-q' warning on VC
10779 backends where it makes sense (bug#2623).
10780
10781 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
10782
10783 * dired-x.el (dired-guess-default): Remove duplicate shell command
10784 entries (bug#2028).
10785 (dired-guess-default): Fix grammar in doc string (bug#2028).
10786 (dired-guess-shell-alist-user): Clarify the example a bit (bug#2030).
10787
10788 * subr.el (remove-duplicates): New conveniency function.
10789
10790 2011-07-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
10791
10792 * tool-bar.el (tool-bar-mode): Clarify positive/negative arguments
10793 (bug#1526).
10794
10795 2011-07-10 Martin Rudalics <rudalics@gmx.at>
10796
10797 * window.el (display-buffer-normalize-default): Don't invert
10798 meaning of even-window-heights. Reported by Eli Zaretskii
10799 <eliz@gnu.org>.
10800
10801 2011-07-10 Bob Rogers <rogers@rgrjr.dyndns.org>
10802
10803 * vc/vc.el (vc-diff-internal): Fix race condition (Bug#1256).
10804
10805 2011-07-10 Chong Yidong <cyd@stupidchicken.com>
10806
10807 * window.el (display-buffer): Fix arguments to
10808 display-buffer-reuse-window in last change.
10809
10810 * faces.el (link): Use a less saturated blue on light backgrounds.
10811
10812 * startup.el (fancy-startup-text, fancy-about-text)
10813 (fancy-startup-tail): Use font-lock faces, for background safety.
10814
10815 2011-07-09 Bob Nnamtrop <bobnnamtrop@gmail.com> (tiny change)
10816
10817 * emulation/viper-cmd.el (viper-change-state-to-vi):
10818 Limit triggering of abbrev expansion (Bug#9038).
10819
10820 2011-07-09 Martin Rudalics <rudalics@gmx.at>
10821
10822 * window.el (display-buffer-default-specifiers): Remove.
10823 (display-buffer-macro-specifiers): Remove default specifiers.
10824 (display-buffer-alist): Default to nil.
10825 (display-buffer-reuse-window): New optional argument other-window.
10826 (display-buffer-pop-up-window): Allow splitting internal
10827 windows. Check whether a live window was created.
10828 (display-buffer-other-window-means-other-frame)
10829 (display-buffer-normalize-arguments): Rename to
10830 display-buffer-normalize-argument and rewrite. Set the
10831 other-window specifier.
10832 (display-buffer-normalize-special): New function.
10833 (display-buffer-normalize-options): Rename to
10834 display-buffer-normalize-default and rewrite.
10835 (display-buffer-normalize-options-inhibit): Remove.
10836 (display-buffer-normalize-specifiers): Rewrite.
10837 (display-buffer): Process other-window specifier and call
10838 display-buffer-reuse-window with it. Emulate Emacs 23 behavior
10839 more faithfully.
10840 (pop-up-windows, even-window-heights): Restore Emacs 23 default values.
10841 (display-buffer-alist-set): Don't handle 'unset default values.
10842 (display-buffer-in-window, display-buffer-alist-set):
10843 Replace symbol "dedicated" by "dedicate". Reported by Tassilo Horn
10844 <tassilo@member.fsf.org>.
10845
10846 2011-07-09 Leo Liu <sdl.web@gmail.com>
10847
10848 * register.el (insert-register): Restore accidental change on
10849 2011-06-26. (Bug#9028)
10850
10851 2011-07-09 Glenn Morris <rgm@gnu.org>
10852
10853 * subr.el (remq): Handle the empty list. (Bug#9024)
10854
10855 2011-07-08 Andreas Schwab <schwab@linux-m68k.org>
10856
10857 * mail/sendmail.el (send-mail-function): No longer delay custom
10858 initialization.
10859 * custom.el (custom-initialize-delay): Doc fix.
10860
10861 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
10862
10863 * abbrev.el (expand-abbrev): Try to preserve point (bug#5805).
10864
10865 2011-07-08 Michael Albinus <michael.albinus@gmx.de>
10866
10867 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use a
10868 human-friendly prompt.
10869
10870 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
10871
10872 * vc/vc-bzr.el (vc-bzr-revision-keywords): Remove svn, it's only
10873 provided by a particular plugin.
10874
10875 2011-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
10876
10877 * mail/sendmail.el (sendmail-query-once): If we aren't allowed to
10878 save customizations (with "emacs -Q"), just set the variable
10879 instead of erroring out.
10880
10881 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
10882
10883 2011-07-08 Juri Linkov <juri@jurta.org>
10884
10885 * arc-mode.el (archive-zip-expunge, archive-zip-update)
10886 (archive-zip-update-case): Use 7z if found by `executable-find'.
10887 The order of searching the available programs is the same as in
10888 `archive-zip-extract' (bug#8968).
10889
10890 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
10891
10892 * menu-bar.el (menu-bar-line-wrapping-menu): Revert last change.
10893 (menu-bar-options-menu): Tweak descriptions.
10894
10895 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
10896
10897 * menu-bar.el (menu-bar-line-wrapping-menu): Make all the Options
10898 menu items into verb phrases (bug#1421). Also refill to fit under
10899 80 columns.
10900
10901 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
10902
10903 * info.el (info, Info-read-node-name-2, Info-read-node-name-1)
10904 (Info-read-node-name): Doc fix (Bug#1084).
10905
10906 * thingatpt.el (forward-thing, bounds-of-thing-at-point)
10907 (thing-at-point, beginning-of-thing, end-of-thing, in-string-p)
10908 (end-of-sexp, beginning-of-sexp)
10909 (thing-at-point-bounds-of-list-at-point, forward-whitespace)
10910 (forward-symbol, forward-same-syntax, word-at-point)
10911 (sentence-at-point): Doc fix (Bug#1144).
10912
10913 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
10914
10915 * info.el (Info-mode-map): Remove S-TAB binding, since [backtab]
10916 should cover it (bug#1281).
10917
10918 * cus-edit.el (custom-show): Mark as obsolete.
10919
10920 * net/network-stream.el (network-stream-open-starttls): If GnuTLS
10921 negotiation fails, then possibly try again with a non-encrypted
10922 connection (bug#9017).
10923
10924 * mail/smtpmail.el (smtpmail-stream-type): Note that `plain' can
10925 be used.
10926
10927 2011-07-07 Richard Stallman <rms@gnu.org>
10928
10929 * mail/rmail.el (rmail-next-error-move): Use `compilation-message'
10930 property, and handle its changed format.
10931 Look for the correct line number.
10932 Use file's line contents (but not past first =) to find
10933 correct line in message.
10934
10935 2011-07-07 Kenichi Handa <handa@m17n.org>
10936
10937 * international/characters.el (build-unicode-category-table):
10938 Delete it.
10939 (unicode-category-table): Set it by unicode-property-table-internal.
10940
10941 * international/mule-cmds.el (char-code-property-alist): Move to
10942 to src/chartab.c.
10943 (get-char-code-property): Call unicode-property-table-internal to
10944 load a file. Call get-unicode-property-internal where necessary.
10945 (put-char-code-property): Call unicode-property-table-internal to
10946 load a file. Call put-unicode-property-internal where necessary.
10947 put-unicode-property-internal where necessary.
10948 (char-code-property-description):
10949 Call unicode-property-table-internal to load a file.
10950
10951 * international/charprop.el:
10952 * international/uni-bidi.el:
10953 * international/uni-category.el:
10954 * international/uni-combining.el:
10955 * international/uni-comment.el:
10956 * international/uni-decimal.el:
10957 * international/uni-decomposition.el:
10958 * international/uni-digit.el:
10959 * international/uni-lowercase.el:
10960 * international/uni-mirrored.el:
10961 * international/uni-name.el:
10962 * international/uni-numeric.el:
10963 * international/uni-old-name.el:
10964 * international/uni-titlecase.el:
10965 * international/uni-uppercase.el: Regenerate.
10966
10967 * loadup.el: Load international/charprop.el before
10968 international/characters.
10969
10970 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
10971
10972 * window.el (next-buffer, previous-buffer): Signal an error if
10973 called from a minibuffer window.
10974
10975 * bindings.el: Revert 2011-07-04 change.
10976
10977 2011-07-06 Richard Stallman <rms@gnu.org>
10978
10979 * mail/rmailmm.el (rmail-mime-process): Use markers for buf positions.
10980 (rmail-mime-insert-bulk, rmail-mime-insert-text):
10981 Treat markers like ints.
10982 (rmail-mime-entity): Doc fix.
10983
10984 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
10985
10986 * mail/smtpmail.el (smtpmail-default-smtp-server): Made into a
10987 defcustom again for backwards compatibility.
10988
10989 * simple.el (shell-command-on-region): Fill.
10990
10991 * dired-aux.el (dired-kill-line): Add a doc string.
10992
10993 * dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults
10994 to "\\sw\\|\\s_" (bug#358).
10995
10996 * dired.el (dired-mode): Clarify "unmark or unflag" (bug#8770).
10997 (dired-unmark-backward): Ditto.
10998 (dired-flag-backup-files): Ditto.
10999
11000 * dired-x.el (dired-mark-sexp): Ditto.
11001
11002 2011-07-06 Richard Stallman <rms@gnu.org>
11003
11004 * mail/rmailmm.el: Give entity a new slot, TRUNCATED.
11005 (rmail-mime-entity): New arg TRUNCATED.
11006 (rmail-mime-entity-truncated, rmail-mime-entity-set-truncated):
11007 New functions.
11008 (rmail-mime-save): Warn if entity is truncated.
11009 (rmail-mime-toggle-hidden): Likewise, for showing.
11010 (rmail-mime-process-multipart): Record when an entity is truncated.
11011
11012 * mail/rmailmm.el (rmail-search-mime-message): Don't get confused
11013 if ENTITY is a string.
11014
11015 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
11016
11017 * emacs-lisp/lisp-mode.el (eval-defun-1): Update the documentation
11018 of faces when `M-C-x'-ing their definitions (bug#8378).
11019 Also clean up the code slightly.
11020
11021 * progmodes/grep.el (rgrep): Don't bind `process-connection-type',
11022 because that makes the colors go away.
11023
11024 * mail/sendmail.el (send-mail-function): Change the default to
11025 `sendmail-query-once'.
11026 (sendmail-query-once): Add an autoload cookie.
11027
11028 * net/network-stream.el (network-stream-open-starttls): Try using
11029 a plain connection even if the server offered STARTTLS, and we
11030 kinda wanted to use it, if Emacs doesn't have any STARTTLS
11031 capability. This should make smtpmail.el work in slightly more
11032 configurations.
11033
11034 2011-07-06 Michael Albinus <michael.albinus@gmx.de>
11035
11036 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
11037 New defun.
11038 * net/tramp-cmds.el (tramp-append-tramp-buffers): Use it.
11039
11040 2011-07-06 Michael R. Mauger <mmaug@yahoo.com>
11041
11042 * progmodes/sql.el: Version 3.0
11043 (sql-product-alist): Add product :completion-object,
11044 :completion-column, and :statement attributes.
11045 (sql-mode-menu, sql-interactive-mode-map): Fix List entries.
11046 (sql-mode-syntax-table): Mark all punctuation.
11047 (sql-font-lock-keywords-builder): Temporarily remove fallback on
11048 ansi keywords.
11049 (sql-regexp-abbrev, sql-regexp-abbrev-list): New functions.
11050 (sql-mode-oracle-font-lock-keywords): Improve.
11051 (sql-oracle-show-reserved-words): New function for development.
11052 (sql-product-font-lock): Simplify for source code buffers.
11053 (sql-product-syntax-table, sql-product-font-lock-syntax-alist):
11054 New functions.
11055 (sql-highlight-product): Set product specific syntax table.
11056 (sql-mode-map): Add statement movement functions.
11057 (sql-ansi-statement-starters, sql-oracle-statement-starters):
11058 New variable.
11059 (sql-statement-regexp, sql-beginning-of-statement)
11060 (sql-end-of-statement, sql-signum): New functions.
11061 (sql-buffer-live-p, sql=find-sqli-buffer): Add CONNECTION parameter.
11062 (sql-show-sqli-buffer): Bug fix.
11063 (sql-interactive-mode): Store connection data as buffer local.
11064 (sql-connect): Add NEW-NAME parameter. Redesign interaction
11065 with sql-interactive-mode.
11066 (sql-save-connection): Save buffer local settings.
11067 (sql-connection-menu-filter): Change menu entry name.
11068 (sql-product-interactive): Bug fix.
11069 (sql-preoutput-hold): New variable.
11070 (sql-interactive-remove-continuation-prompt): Bug fixes.
11071 (sql-debug-redirect): New variable.
11072 (sql-str-literal): New function.
11073 (sql-redirect, sql-redirect-one, sql-redirect-value, sql-execute):
11074 Redesign.
11075 (sql-oracle-save-settings, sql-oracle-restore-settings)
11076 (sql-oracle-list-all, sql-oracle-list-table): New functions.
11077 (sql-completion-object, sql-completion-column)
11078 (sql-completion-sqlbuf): New variables.
11079 (sql-build-completions-1, sql-build-completions)
11080 (sql-try-completion): New functions.
11081 (sql-read-table-name): Use them.
11082 (sql-contains-names): New buffer local variable.
11083 (sql-list-all, sql-list-table): Use it.
11084 (sql-oracle-completion-types): New variable.
11085 (sql-oracle-completion-object, sql-sqlite-completion-object)
11086 (sql-postgres-completion-object): New functions.
11087
11088 2011-07-06 Glenn Morris <rgm@gnu.org>
11089
11090 * window.el (pop-to-buffer): Doc fix.
11091
11092 2011-07-06 Markus Heiser <markus.heiser@darmarit.de> (tiny change)
11093
11094 * progmodes/gud.el (gud-pdb-marker-regexp): Accept \r char (Bug#5653).
11095
11096 2011-07-06 Chong Yidong <cyd@stupidchicken.com>
11097
11098 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
11099
11100 * info.el (Info-directory-toc-nodes): Minor doc fix (Bug#8833).
11101
11102 2011-07-05 Chong Yidong <cyd@stupidchicken.com>
11103
11104 * button.el (button): Inherit from link face. Suggested by Dan
11105 Nicolaescu.
11106
11107 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
11108
11109 * progmodes/gdb-mi.el: Fit in 80 columns.
11110 (gdb-setup-windows, gdb-restore-windows): Avoid other-window and
11111 switch-to-buffer.
11112
11113 * progmodes/which-func.el (which-func-ff-hook): Don't output a message
11114 if imenu is simply not configured (bug#8941).
11115
11116 2011-07-05 Ken Manheimer <ken.manheimer@gmail.com>
11117
11118 * allout.el (allout-post-undo-hook): New allout outline-change
11119 event hook to signal undo activity.
11120 (allout-post-command-business): Run allout-post-undo-hook if an
11121 undo just occurred.
11122 (allout-after-copy-or-kill-hook, allout-mode): Minor docstring changes.
11123 * allout-widgets.el (allout-widgets-after-undo-function):
11124 Ensure the integrity of the current item's decoration after it has been
11125 in the vicinity of an undo.
11126 (allout-widgets-mode): Include allout-widgets-after-undo-function
11127 on the new allout-post-undo-hook.
11128
11129 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
11130
11131 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-abbrev-table):
11132 Let define-derived-mode define it.
11133 * emacs-lisp/derived.el (define-derived-mode): Try to avoid creating
11134 cycles of abbrev-table inheritance (bug#8998).
11135
11136 2011-07-05 Roland Winkler <winkler@gnu.org>
11137
11138 * textmodes/bibtex.el: Add support for biblatex.
11139 (bibtex-BibTeX-entry-alist, bibtex-biblatex-entry-alist)
11140 (bibtex-BibTeX-field-alist, bibtex-biblatex-field-alist)
11141 (bibtex-dialect-list, bibtex-dialect, bibtex-no-opt-remove-re)
11142 (bibtex-entry-alist, bibtex-field-alist): New variables.
11143 (bibtex-entry-field-alist): Obsolete alias for
11144 bibtex-BibTeX-entry-alist.
11145 (bibtex-entry-alist, bibtex-field-alist): New widgets.
11146 (bibtex-set-dialect): New command.
11147 (bibtex-entry-type, bibtex-entry-head)
11148 (bibtex-entry-maybe-empty-head, bibtex-any-valid-entry-type):
11149 Bind via bibtex-set-dialect.
11150 (bibtex-Article, bibtex-Book, bibtex-Booklet, bibtex-InBook)
11151 (bibtex-InCollection, bibtex-InProceedings, bibtex-Manual)
11152 (bibtex-MastersThesis, bibtex-Misc, bibtex-PhdThesis)
11153 (bibtex-Proceedings, bibtex-TechReport, bibtex-Unpublished):
11154 Define via bibtex-set-dialect.
11155 (bibtex-name-in-field, bibtex-remove-OPT-or-ALT):
11156 Obey bibtex-no-opt-remove-re.
11157 (bibtex-vec-push, bibtex-vec-incr): New functions.
11158 (bibtex-format-entry, bibtex-field-list)
11159 (bibtex-print-help-message, bibtex-validate)
11160 (bibtex-search-entries): Use new format of bibtex-entry-alist.
11161
11162 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
11163
11164 * progmodes/compile.el (compilation-goto-locus):
11165 * net/tramp-cmds.el (tramp-append-tramp-buffers):
11166 * bs.el (bs-cycle-next, bs-cycle-previous):
11167 * bookmark.el (bookmark-bmenu-list, bookmark-bmenu-2-window):
11168 * bindings.el (mode-line-other-buffer):
11169 * autoinsert.el (auto-insert):
11170 * arc-mode.el (archive-extract):
11171 * abbrev.el (edit-abbrevs): Fix some uses of switch-to-buffer.
11172
11173 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
11174
11175 * emacs-lock.el (emacs-lock-mode): Fix typo in variable name.
11176 Fix check of `emacs-lock-unlockable-modes'.
11177 Coerce true values of `emacs-lock--try-unlocking' to t.
11178
11179 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
11180
11181 * obsolete/old-emacs-lock.el: Rename from emacs-lock.el.
11182 * emacs-lock.el: New file.
11183
11184 2011-07-05 Julien Danjou <julien@danjou.info>
11185
11186 * textmodes/rst.el (rst-define-level-faces): Use `facep' rather
11187 than `boundp' to check if face is set.
11188
11189 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
11190
11191 * register.el (registerv-make):
11192 * window.el (window-min-height): Fix typos in docstrings.
11193
11194 2011-07-05 Jan Djärv <jan.h.d@swipnet.se>
11195
11196 * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
11197 Update doc string.
11198
11199 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
11200
11201 * server.el (server-execute): Catch quit and call
11202 `server-return-error' to pass the error back to emacsclient and
11203 close the connection (bug#8942).
11204
11205 2011-07-04 Ken Manheimer <ken.manheimer@gmail.com>
11206
11207 * allout.el (allout-encrypt-unencrypted-on-saves): Do not provide
11208 insecure exception for current topic. Also note that auto-saves
11209 are handled differently.
11210
11211 (allout-auto-save-temporarily-disabled, allout-just-did-undo):
11212 State variables for tracking auto-save inhibition situation.
11213
11214 (allout-write-contents-hook-handler): Rename from
11215 'allout-write-file-hook-handler', and describe how it depends on
11216 write-contents-functions sensitivity to non-nil value to prevent
11217 file write.
11218
11219 (allout-auto-save-hook-handler): Remove. auto-save does not check
11220 this in individual buffers, only in the starting buffer, so this
11221 is not the right way for us to inhibit auto-save in a buffer
11222 according to its condition.
11223
11224 (allout-mode): Use new allout-write-contents-hook-handler, and
11225 only with write-contents-functions. Remove auto-save provisions -
11226 they're implemented elsewhere.
11227
11228 (allout-before-change-handler): If undo is in progress, note that
11229 for attention of allout-post-command-business.
11230
11231 (allout-post-command-business): If the command we're following was
11232 an undo, check for change in the status of encrypted items and
11233 adjust auto-save inhibitions accordingly.
11234
11235 (allout-toggle-subtree-encryption): Adjust auto-save inhibition
11236 according to whether there are or aren't any plain-text topics
11237 pending encryption.
11238
11239 (allout-inhibit-auto-save-info-for-decryption):
11240 Adjust buffer-saved-size and some allout state to inhibit auto-saves
11241 if there are plain-text topics pending encryption.
11242
11243 (allout-maybe-resume-auto-save-info-after-encryption): Adjust
11244 buffer-saved-size and some allout state to not inhibit auto-saves
11245 if there are no longer any plain-text topics pending encryption.
11246
11247 (allout-next-topic-pending-encryption, allout-encrypt-decrypted):
11248 No longer provide for exemption of the current topic.
11249
11250 2011-07-04 Juri Linkov <juri@jurta.org>
11251
11252 Add 7z operations to delete and save changed members (bug#8968).
11253 * arc-mode.el (archive-7z-expunge, archive-7z-update):
11254 New defcustoms.
11255 (archive-7z-write-file-member): New function.
11256 (archive-7z-summarize): Fix the number of dashes in the
11257 listing output.
11258
11259 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
11260
11261 * pcmpl-linux.el (pcomplete-pare-list): Re-add, from pcomplete.el
11262 (bug#8958).
11263
11264 2011-07-04 Chong Yidong <cyd@stupidchicken.com>
11265
11266 * bindings.el: Ignore next-buffer and previous-buffer in
11267 minibuffer-local-map.
11268
11269 * font-lock.el (font-lock-builtin-face): Change light background
11270 color to dark slate blue (Bug#6693).
11271
11272 2011-07-04 Wang Diancheng <dcwang@kingbase.com.cn> (tiny change)
11273
11274 * progmodes/gdb-mi.el (gdb): Use completion-at-point.
11275
11276 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
11277
11278 * files.el (find-file): Use pop-to-buffer-same-window (bug#8911).
11279 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
11280 Add switch-to-buffer.
11281
11282 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
11283
11284 * isearch.el (isearch-search-fun-function): Clarify further the
11285 meaning of the function returned.
11286
11287 2011-07-04 Michael Albinus <michael.albinus@gmx.de>
11288
11289 * net/tramp-cmds.el (tramp-cleanup-this-connection): New command.
11290
11291 * net/tramp-sh.el (tramp-color-escape-sequence-regexp): New defconst.
11292 (tramp-sh-handle-insert-directory, tramp-convert-file-attributes):
11293 Use it.
11294 (tramp-remote-path): Add "/bin" and "/usr/bin". On busyboxes,
11295 `tramp-default-remote-path' does not exist.
11296 (tramp-send-command-and-read): New optional argument NOERROR.
11297 (tramp-open-connection-setup-interactive-shell)
11298 (tramp-get-remote-path, tramp-get-remote-stat): Use it.
11299 (tramp-get-remote-readlink): Do not mask with `ignore-errors'.
11300 (tramp-process-sentinel): Flush also process' connection property.
11301 (tramp-sh-handle-start-file-process): Do not set process
11302 sentinel. It is done now ...
11303 (tramp-maybe-open-connection): ... here. (Bug#8929)
11304
11305 2011-07-04 MON KEY <monkey@sandpframing.com>
11306
11307 * play/animate.el (animate-string): Doc fixes and allow changing
11308 the buffer name (bug#5417).
11309
11310 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
11311
11312 * play/animate.el (animation-buffer-name): Rename from *animate*.
11313
11314 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
11315
11316 * emacs-lisp/timer.el: Use time-date fns rather than rolling our own.
11317 This is simpler and helps future-proof the code.
11318 (timer-until): Use time-subtract and float-time.
11319 (timer--time-less-p): Use time-less-p.
11320
11321 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
11322
11323 * type-break.el (timep): Use the value of `float-time' to avoid a
11324 byte-compiler warning.
11325
11326 * server.el (server-eval-and-print): Return any result, even nil.
11327
11328 2011-07-03 Paul Eggert <eggert@cs.ucla.edu>
11329
11330 * type-break.el: Accept time formats that the builtins accept.
11331 (timep, type-break-time-difference): Accept any format that
11332 float-time accepts, rather than insisting on (HIGH LOW USECS) format.
11333 This is simpler and helps future-proof the code.
11334 (type-break-time-difference): Round rather than ignoring
11335 subseconds components.
11336
11337 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
11338
11339 * info.el (Info-apropos-matches): Make non-interactive, since it
11340 doesn't seem to do anything useful as a command (bug#8829).
11341
11342 2011-07-03 Chong Yidong <cyd@stupidchicken.com>
11343
11344 * frame.el (frame-background-mode, frame-set-background-mode):
11345 Move from faces.el.
11346 (frame-default-terminal-background): New function.
11347
11348 * custom.el (custom-push-theme): Don't record faces in `changed'
11349 theme; this doesn't work correctly for per-frame face settings.
11350 (disable-theme): Use face-set-after-frame-default to reset faces.
11351 (custom--frame-color-default): New function.
11352
11353 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
11354
11355 * dired.el (dired-flagging-regexp): Remove unused variable
11356 (bug#8769).
11357
11358 2011-03-29 Kevin Ryde <user42@zip.com.au>
11359
11360 * progmodes/compile.el (compilation-error-regexp-alist-alist):
11361 `perl-Test2' extend to match possible "fail #N" rep count
11362 (bug#8377).
11363
11364 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
11365
11366 * mail/feedmail.el (feedmail-buffer-to-smtpmail):
11367 `smtpmail-via-smtp' now returns the error instead of nil.
11368
11369 * isearch.el (isearch-search-fun-function): Clarify the doc string
11370 (bug#8101).
11371
11372 2011-07-03 Richard Kim <emacs18@gmail.com> (tiny change)
11373
11374 * textmodes/texnfo-upd.el (texinfo-insert-menu): Don't insert
11375 unnecessary spaces (bug#8987).
11376
11377 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
11378
11379 * net/network-stream.el (open-network-stream): Use the
11380 :end-of-capability command thoughout.
11381
11382 2011-07-03 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
11383
11384 * net/network-stream.el (open-network-stream): Add the
11385 :end-of-capability command parameter, used by pop3.el.
11386
11387 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
11388
11389 * dired.el (dired-map-over-marks): Refill the doc string (bug#6814).
11390
11391 * fringe.el (fringe-query-style): Remove redundant text " (type ?
11392 for list)" (bug#6475).
11393
11394 * files.el (file-expand-wildcards): Ignore non-readable
11395 sub-directories while trying to find matches instead of signaling
11396 an error (bug#6297).
11397
11398 * man.el (Man-reference-regexp): Allow matching possible
11399 word-wrapped references (bug#6289).
11400
11401 * vc/vc.el (vc-modify-change-comment): Change *VC-log* to *vc-log*
11402 for consistency with the other vc buffers (bug#6197).
11403 (vc-checkin): Ditto.
11404
11405 * vc/vc-arch.el: Fix comments to match the *VC-log* name change.
11406
11407 * longlines.el (longlines-mode): Document what ARG does (bug#6150).
11408
11409 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
11410
11411 * custom.el (defcustom): Clarify that :set is only used in the
11412 Customize user interface (bug#6089).
11413
11414 * progmodes/flymake.el (flymake-mode): If the buffer isn't
11415 associated with a file, refuse to run instead of erroring out
11416 (bug#6084).
11417
11418 * textmodes/fill.el (fill-region): Remove the "Ordinarily" from
11419 the doc string, since it appears that using `fill-column' always
11420 controls the width (bug#7845).
11421
11422 * simple.el (shell-command-on-region): Say where the error output
11423 went if `shell-command-default-error-buffer' is set (bug#6857).
11424
11425 2011-07-02 Ken Manheimer <ken.manheimer@gmail.com>
11426
11427 * allout.el (allout-yank-processing): Adjust cursor position for
11428 backwards-deleted space.
11429
11430 (allout-rebullet-heading): Register changes with
11431 allout-exposure-changed-hook, so the modified topic is properly
11432 decorated.
11433
11434 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
11435
11436 * minibuffer.el (completion-in-region): Document PREDICATE
11437 (bug#7136).
11438
11439 * info-look.el (info-lookup-add-help): Clarify that ARGS is a list
11440 of keyword/argument pairs (bug#6904).
11441
11442 * replace.el (multi-occur):
11443 Mention `multi-occur-in-matching-buffers' in the doc string (bug#7566).
11444
11445 2011-07-02 Drew Adams <drew.adams@oracle.com>
11446
11447 * dired.el (dired-mark-if): Make the message about whether it's
11448 marking or unmarking clearer (bug#8523).
11449
11450 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
11451
11452 * disp-table.el (display-table-print-array): New function.
11453 (describe-display-table): Use it to print the vectors more pretty
11454 (Bug#8859).
11455
11456 2011-07-02 Martin Rudalics <rudalics@gmx.at>
11457
11458 * window.el (window-state-get-1): Don't assign clone numbers.
11459 Add clone-of item to list of window parameters.
11460 (window-state-put-2): Don't process clone numbers.
11461 (display-buffer-alist): Fix doc-string.
11462
11463 2011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
11464
11465 * subr.el (remq): Don't allocate if it's not needed.
11466 (keymap--menu-item-binding, keymap--menu-item-with-binding)
11467 (keymap--merge-bindings): New functions.
11468 (keymap-canonicalize): Use them to refine the canonicalization.
11469 * minibuffer.el (minibuffer-local-completion-map)
11470 (minibuffer-local-must-match-map): Move initialization from C.
11471 (minibuffer-local-filename-completion-map): Move initialization from C;
11472 don't inherit from anything here.
11473 (minibuffer-local-filename-must-match-map): Make obsolete.
11474 (completing-read-default): Use make-composed-keymap to combine
11475 minibuffer-local-filename-completion-map with either
11476 minibuffer-local-must-match-map or
11477 minibuffer-local-filename-completion-map.
11478
11479 2011-07-01 Glenn Morris <rgm@gnu.org>
11480
11481 * type-break.el (type-break-time-sum): Use dolist.
11482
11483 * textmodes/flyspell.el (flyspell-word-search-backward):
11484 Replace CL function.
11485
11486 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
11487
11488 * mouse.el (mouse--strip-first-event): New function.
11489 (function-key-map): Use it to map fringe clicks to normal clicks
11490 by default.
11491
11492 * vc/vc-bzr.el (vc-bzr-revision-keywords): Update.
11493 (vc-bzr-revision-completion-table): Add support for annotate and date.
11494
11495 * emacs-lisp/derived.el (define-derived-mode): Make abbrev-table
11496 inherit from parent.
11497
11498 2011-07-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
11499
11500 * dired-aux.el (dired-diff): Doc fixup (bug#8816).
11501 (dired-show-file-type): Doc fixup (bug#8818).
11502
11503 * dired.el (dired-mode): Fix up the doc string as suggested by
11504 Drew Adams (bug#8817).
11505
11506 * progmodes/flymake.el (flymake-find-file-hook): Add an `autoload'
11507 cookie, since the manual says that it should be possible to add
11508 this function to `find-file-hook' (bug#8709).
11509
11510 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
11511
11512 * progmodes/cfengine.el: Moved all cfengine3.el functionality
11513 here. Noted Ted Zlatanov as the maintainer.
11514 (cfengine-common-settings, cfengine-common-syntax): New functions
11515 to set up common things between `cfengine-mode' and
11516 `cfengine3-mode'.
11517 (cfengine3-mode): New mode.
11518 (cfengine3-defuns cfengine3-defuns-regex
11519 (cfengine3-class-selector-regex cfengine3-category-regex)
11520 (cfengine3-vartypes cfengine3-font-lock-keywords)
11521 (cfengine3-beginning-of-defun, cfengine3-end-of-defun)
11522 (cfengine3-indent-line): Add from cfengine3.el.
11523
11524 2011-07-01 Michael Albinus <michael.albinus@gmx.de>
11525
11526 * net/tramp.el (tramp-encoding-command-interactive): New defcustom.
11527
11528 * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
11529
11530 2011-07-01 Martin Rudalics <rudalics@gmx.at>
11531
11532 * window.el (same-window-buffer-names, same-window-regexps)
11533 (same-window-p, special-display-frame-alist)
11534 (special-display-popup-frame, special-display-function)
11535 (special-display-buffer-names, special-display-regexps)
11536 (special-display-p, pop-up-frame-alist, pop-up-frame-function)
11537 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
11538 (split-window-preferred-function, split-height-threshold)
11539 (split-width-threshold, even-window-heights)
11540 (display-buffer-mark-dedicated, window-splittable-p)
11541 (split-window-sensibly, window-safely-shrinkable-p):
11542 Un-obsolete.
11543 (display-buffer): Don't spread args with function specifier
11544 because special-display-popup-frame won't like it.
11545
11546 2011-07-01 Paul Eggert <eggert@cs.ucla.edu>
11547
11548 Time-stamp simplifications and fixes.
11549 These improve accuracy slightly, and future-proof the code
11550 against some potential changes to current-time format.
11551
11552 * woman.el (woman-decode-buffer, WoMan-log-end): Log fractional secs
11553 by using time-since and float-time.
11554
11555 * vc/ediff-util.el (ediff-calc-command-time): Use time-since
11556 and float-time. Say "NNN.NNN seconds" rather than "NNN seconds
11557 + NNN microseconds".
11558
11559 * type-break.el (type-break-time-sum): Rewrite using time-add.
11560
11561 * play/hanoi.el (hanoi-current-time-float): Remove.
11562 All uses replaced by float-time.
11563
11564 * nxml/rng-maint.el (rng-time-function): Rewrite using time-subtract.
11565 This yields a more-accurate answer.
11566 (rng-time-to-float): Remove; no longer needed.
11567
11568 * emacs-lisp/timer.el (timer-relative-time): Use time-add.
11569
11570 * calendar/timeclock.el (timeclock-seconds-to-time):
11571 Defalias to seconds-to-time, since they're the same thing.
11572
11573 * emacs-lisp/elp.el (elp-elapsed-time):
11574 * emacs-lisp/benchmark.el (benchmark-elapse):
11575 * allout-widgets.el (allout-elapsed-time-seconds): Use float-time.
11576
11577 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
11578
11579 * window.el (bury-buffer): Don't iconify the only frame.
11580 (switch-to-buffer): Revert to Emacs<23 behavior, i.e. do not fallback
11581 to pop-to-buffer. Use pop-to-buffer-same-frame if you don't like that.
11582
11583 2011-07-01 Chong Yidong <cyd@stupidchicken.com>
11584
11585 * eshell/em-smart.el (eshell-smart-display-navigate-list):
11586 Add mouse-yank-primary.
11587
11588 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
11589
11590 * progmodes/cfengine3.el: New file to support CFEngine 3.x.
11591
11592 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
11593
11594 * emacs-lisp/find-func.el (find-library--load-name): New fun.
11595 (find-library-name): Use it to find relative load names when provided
11596 absolute file name (bug#8803).
11597
11598 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
11599
11600 * textmodes/flyspell.el (flyspell-word): Consider words that
11601 differ only in case as potential doublons (bug#5687).
11602
11603 * net/soap-client.el (soap-invoke, soap-wsdl-resolve-references):
11604 Remove two rather uninteresting debugging-like messages to make
11605 debbugs.el more silent.
11606
11607 * comint.el (comint-password-prompt-regexp): Accept "Response" as
11608 a password-like phrase.
11609
11610 2011-06-30 Masatake YAMATO <yamato@redhat.com>
11611
11612 * progmodes/cc-guess.el: New file.
11613
11614 * progmodes/cc-langs.el (c-mode-menu): Add "Style..." submenu.
11615
11616 * progmodes/cc-styles.el (cc-choose-style-for-mode): New function
11617 derived from `c-basic-common-init'.
11618
11619 * progmodes/cc-mode.el (top-level): Require cc-guess.
11620 (c-basic-common-init): Use `cc-choose-style-for-mode'.
11621
11622 2011-06-30 Lawrence Mitchell <wence@gmx.li>
11623
11624 * progmodes/js.el (js-mode): Don't stomp on global settings (bug#8933).
11625
11626 2011-06-30 Alan Mackenzie <acm@muc.de>
11627
11628 * progmodes/cc-engine.el (c-guess-continued-construct):
11629 Correct the handling of template-args-cont, particularly for when font
11630 lock is disabled. Name this case as "CASE G".
11631
11632 2011-06-30 Ken Manheimer <ken.manheimer@gmail.com>
11633
11634 * allout.el (allout-yank-processing): Fix injection of extra space
11635 between bullet and non-whitespace character in first topic when
11636 pasting, ensuring that the actual spacing in the pasted topic
11637 following the bullet char is preserved. This extra space was
11638 causing pasted encrypted topics to get a decrypted status even
11639 when the content was actually still encrypted. Now the decryption
11640 status from before the paste is preserved.
11641
11642 (allout-flag-region): Set all allout overlays so they evaporate
11643 when reduced to zero length (evanescent), to prevent overlay
11644 leakage.
11645
11646 2011-06-30 Glenn Morris <rgm@gnu.org>
11647
11648 * w32-fns.el (w32-charset-info-alist): Declare.
11649
11650 * find-dired.el (find-grep-options): Simplify.
11651
11652 * term/ns-win.el (ns-set-resource): Declare.
11653
11654 * ses.el (row, col): Declare dynamic variables honestly.
11655
11656 * textmodes/reftex-parse.el (index-tags): Declare.
11657
11658 2011-06-30 Chong Yidong <cyd@stupidchicken.com>
11659
11660 * cus-edit.el (customize-push-and-save): New function.
11661
11662 * files.el (hack-local-variables-confirm): Use it.
11663
11664 * custom.el (load-theme): New arg NO-CONFIRM.
11665 Use customize-push-and-save (Bug#8720).
11666 (custom-enabled-themes): Doc fix.
11667
11668 * cus-theme.el (customize-create-theme)
11669 (custom-theme-merge-theme): Callers to load-theme changed.
11670
11671 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
11672
11673 * thingatpt.el (thing-at-point-short-url-regexp): Require that
11674 short URLs have at least one dot in them (bug #7614).
11675
11676 * progmodes/grep.el (rgrep): Bind `process-connection-type' to
11677 nil, because using a pty is apparently too slow (bug #895).
11678
11679 2011-06-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
11680
11681 * mail/sendmail.el (sendmail-query-once): New function.
11682 (sendmail-query-once-function): New variable.
11683
11684 2011-06-29 Glenn Morris <rgm@gnu.org>
11685
11686 * files.el (auto-mode-alist): Add .f03, .f08 for f90-mode.
11687
11688 * ses.el (top-level): Require cl when compiling.
11689 (ses-set-localvars): Fix error statement.
11690 Call it at compile time to silence a storm of warnings.
11691
11692 2011-06-29 Martin Rudalics <rudalics@gmx.at>
11693
11694 * window.el (normalize-live-buffer): Rename to
11695 window-normalize-buffer.
11696 (normalize-live-frame): Rename to window-normalize-frame.
11697 (normalize-any-window): Rename to window-normalize-any-window.
11698 (normalize-live-window): Rename to window-normalize-live-window.
11699 (make-window-atom): Rename to window-make-atom.
11700 (window-resize-reset): Rename to window--resize-reset.
11701 (window-resize-reset-1): Rename to window--resize-reset-1.
11702 (resize-mini-window): Rename to window--resize-mini-window.
11703 (resize-subwindows-skip-p): Rename to
11704 window--resize-subwindows-skip-p.
11705 (resize-subwindows-normal): Rename to
11706 window--resize-subwindows-normal.
11707 (resize-subwindows): Rename to window--resize-subwindows.
11708 (resize-other-windows): Rename to window--resize-siblings.
11709 (resize-this-window): Rename to window--resize-this-window.
11710 (resize-root-window): Rename to window--resize-root-window.
11711 (resize-root-window-vertically): Rename to
11712 window--resize-root-window-vertically.
11713 (normalize-buffer-to-display): Rename to
11714 window-normalize-buffer-to-display.
11715 (normalize-buffer-to-switch-to): Rename to
11716 window-normalize-buffer-to-switch-to.
11717 Correspondingly update all callers of the functions listed
11718 above.
11719 (display-buffer-alist, display-buffer-normalize-arguments)
11720 (display-buffer-normalize-options, display-buffer)
11721 (display-buffer-alist-set): Use "function" instead of
11722 "fun-with-args".
11723
11724 2011-06-28 Chong Yidong <cyd@stupidchicken.com>
11725
11726 * mail/emacsbug.el (report-emacs-bug): Handle non-gnu bug
11727 addresses more clearly. Add hyperlinks for bug-gnu-emacs and
11728 debbugs.gnu.org. Mention acknowledgment email.
11729
11730 2011-06-28 Lars Magne Ingebrigtsen <larsi@gnus.org>
11731
11732 * mail/smtpmail.el (smtpmail-send-it): Leave off changing the
11733 buffer multibyteness, since it shouldn't matter.
11734
11735 2011-06-28 Martin Rudalics <rudalics@gmx.at>
11736
11737 * window.el (display-buffer-in-side-window): Handle dedicated
11738 windows as in display-buffer-reuse-window.
11739 (display-buffer-normalize-alist): Use value of override
11740 specifier.
11741 (display-buffer-normalize-specifiers): Use value of
11742 other-window-means-other-frame specifier.
11743 (display-buffer-alist): Rewrite some texts in widgets.
11744 (display-buffer): Spread arguments when calling function
11745 specified by fun-with-args.
11746
11747 2011-06-28 Deniz Dogan <deniz@dogan.se>
11748
11749 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
11750 Unnest `let'.
11751
11752 * textmodes/css-mode.el (css-font-lock-keywords): Fix grouped
11753 selectors (Bug#5732).
11754 (css-proprietary-nmstart-re): Use `regexp-opt'.
11755
11756 2011-06-27 Jari Aalto <jari.aalto@cante.net>
11757
11758 * eshell/em-ls.el: Display `ls -l' dates in ISO format (Bug#8440).
11759 (eshell-ls-date-format): New defcustom.
11760 (eshell-ls-file): Use it.
11761
11762 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
11763
11764 * help-fns.el (describe-variable): Fix message for terminal-local vars.
11765
11766 2011-06-27 Katsumi Yamaoka <yamaoka@jpl.org>
11767
11768 * net/ange-ftp.el: Allow loading .gz files (Bug#6923).
11769 (ange-ftp-make-tmp-name): New arg.
11770 (ange-ftp-file-local-copy): Use it.
11771
11772 2011-06-27 Jambunathan K <kjambunathan@gmail.com>
11773
11774 * tar-mode.el (tar-untar-buffer): Set coding-system-for-write to
11775 no-conversion (Bug#8870).
11776
11777 2011-06-27 Martin Rudalics <rudalics@gmx.at>
11778
11779 * window.el (window-right, window-left, window-child)
11780 (window-child-count, window-last-child)
11781 (window-iso-combination-p, walk-window-tree-1)
11782 (window-atom-check-1, window-tree-1, delete-window)
11783 (window-state-get-1, display-buffer-even-window-sizes): Adapt to
11784 new naming conventions - window-vchild, window-hchild,
11785 window-next and window-prev are now called window-top-child,
11786 window-left-child, window-next-sibling and window-prev-sibling
11787 respectively.
11788 (resize-window-reset): Rename to window-resize-reset.
11789 (resize-window-reset-1): Rename to window-resize-reset-1.
11790 (resize-window): Rename to window-resize.
11791 (window-min-height, window-min-width)
11792 (resize-mini-window, resize-this-window, resize-root-window)
11793 (resize-root-window-vertically, adjust-window-trailing-edge)
11794 (enlarge-window, shrink-window, maximize-window)
11795 (minimize-window, delete-window, quit-restore-window)
11796 (split-window, balance-windows, balance-windows-area-adjust)
11797 (balance-windows-area, window-state-put-2)
11798 (display-buffer-even-window-sizes, display-buffer-set-height)
11799 (display-buffer-set-width, set-window-text-height)
11800 (fit-window-to-buffer): Rename all "resize-window" prefixed
11801 calls to use the "window-resize" prefix convention.
11802 (display-buffer-alist): Fix symbol for label specifier.
11803 (display-buffer-reuse-window): Set reuse-dedicated to cdr of
11804 corresponding specifier.
11805 Reported by Juanma Barranquero <lekktu@gmail.com>.
11806
11807 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
11808
11809 * ses.el (ses-destroy-cell-variable-range): Fix heading comment
11810 convention.
11811 (ses-call-printer): Does not pass an empty string to formatter when the
11812 cell is empty to keep from barking printer Calc math-format-value.
11813
11814 2011-06-27 Richard Stallman <rms@gnu.org>
11815
11816 * battery.el (battery-mode-line-limit): New variable.
11817 (battery-update): Handle it.
11818
11819 * mail/rmailmm.el (rmail-mime-process-multipart):
11820 Handle truncated messages.
11821
11822 2011-06-27 Glenn Morris <rgm@gnu.org>
11823
11824 * progmodes/flymake.el (flymake-err-line-patterns):
11825 Allow for column numbers in the ant/javac pattern. (Bug#8866)
11826
11827 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
11828
11829 * ses.el (ses-relocate-range): Keep rest of arguments for ses-range.
11830 (ses--clean-!, ses--clean-_): New functions.
11831 (ses-range): Add configurability of readout order, and conversion
11832 to Calc vector.
11833
11834 * ses.el (ses-repair-cell-reference-all): New function.
11835 (ses-cell-symbol): Set macro as safe, so that it can be used in
11836 formulas.
11837
11838 * ses.el: Update cycle detection algorithm.
11839 (ses-localvars): Add ses--Dijkstra-attempt-nb and
11840 ses--Dijkstra-weight-bound, and initial values thereof when applicable.
11841 (ses-set-localvars): New function.
11842 (ses-make-cell): Add property-list as a cell element.
11843 (ses-cell-property-get-fun, ses-cell-property-get)
11844 (ses-cell-property-delq-fun, ses-cell-property-set-fun)
11845 (ses-cell-property-pop-fun, ses-cell-property-get-handle-fun):
11846 New functions.
11847 (ses-cell-property-set, ses-cell-property-pop)
11848 (ses-cell-property-get-handle): New macro.
11849 (ses-cell-property-handle-car, ses-cell-property-handle-setcar):
11850 New aliases, used for code readability.
11851 (ses-calculate-cell, ses-update-cells): Use Dijkstra algorithm for
11852 cycle detection.
11853 (ses-self-reference-early-detection): New defcustom.
11854 (ses-formula-references): Robustify against self-referring cells.
11855 (ses-mode): Use ses-set-localvars.
11856 (ses-command-hook): Add call to ses-initialize-Dijkstra-attempt
11857 before lauching the update processing.
11858 (ses-initialize-Dijkstra-attempt): New function.
11859 (ses-recalculate-cell): Update for cycle detection based on
11860 Dijkstra algorithm.
11861
11862 * ses.el: Fix commenting and indenting convention.
11863
11864 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
11865
11866 * bs.el (bs-cycle-next): Complete last change.
11867
11868 2011-06-27 Drew Adams <drew.adams@oracle.com>
11869
11870 * faces.el (list-faces-display): Add help-mode-map to output (bug#8939).
11871
11872 2011-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
11873
11874 * net/network-stream.el (network-stream-open-starttls):
11875 Don't re-get capabilities unless we've reestablished connection.
11876 (network-stream-open-starttls): Fix stupid typo with gnutls-clii.
11877
11878 * mail/smtpmail.el (smtpmail-via-smtp): Bind coding-system-for-*
11879 to binary to possibly avoid line encoding issues on Windows (among
11880 other things).
11881
11882 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
11883
11884 * net/network-stream.el (open-network-stream): Return an :error
11885 saying what the problem was, if possible.
11886
11887 * mail/smtpmail.el (smtpmail-via-smtp): Report the error from the
11888 server.
11889
11890 * net/network-stream.el (network-stream-open-starttls): If we
11891 wanted to use STARTTLS, and the server offered it, but we weren't
11892 able to because we had no STARTTLS support, then close the connection.
11893 (open-network-stream): Return an :error element, if present.
11894
11895 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
11896
11897 * hl-line.el (hl-line-sticky-flag): Doc fix.
11898 (global-hl-line-sticky-flag): New option (Bug#8323).
11899 (global-hl-line-highlight): Obey it.
11900
11901 * vc/vc.el (vc-revert-show-diff): Default to t.
11902
11903 2011-06-26 Ken Manheimer <ken.manheimer@gmail.com>
11904
11905 * allout-widgets.el (allout-widgets-post-command-business):
11906 Stop decorating intermediate isearch matches. They're not being
11907 undecorated when an isearch is continued past, and isearch
11908 automatically collapses them. This leads to "widget leaks", where
11909 decorated items accumulate in collapsed areas. Lines with lots of
11910 hidden widgets can slow down cursor travel, substantially.
11911 Too much complicated machinery would be needed to ensure undecoration,
11912 so we're doing without this nicety.
11913
11914 (allout-widgets-tally-string): Don't try to do a hash-table-count
11915 of allout-widgets-tally when it's nil. This eliminates spurious "Error
11916 during redisplay: (wrong-type-argument hash-table-p nil)" warnings in
11917 *Messages* when allout-widgets-maintain-tally is t.
11918
11919 2011-06-26 Martin Rudalics <rudalics@gmx.at>
11920
11921 * window.el (display-buffer-normalize-argument): Rename to
11922 display-buffer-normalize-arguments. Handle special meaning of
11923 LABEL argument. Respect special-display-function when popping up
11924 a new frame. Fix code searching for a window showing the buffer
11925 on another frame.
11926 (display-buffer-normalize-specifiers):
11927 Call display-buffer-normalize-arguments.
11928 (display-buffer-in-window): Don't undedicate the window if its
11929 buffer remains the same.
11930 Reported by Drew Adams <drew.adams@oracle.com>.
11931 (display-buffer-alist): Add choice for same-window macro
11932 specfier.
11933 (display-buffer): Mention special meaning of LABEL argument in
11934 doc-string. Fix quoting. Don't pop up a new frame even as
11935 fallback.
11936
11937 2011-06-26 Juanma Barranquero <lekktu@gmail.com>
11938
11939 * bs.el (bs-cycle-next): Pass current buffer to `bury-buffer' to
11940 avoid deleting the current window in some cases (bug#8911).
11941
11942 2011-06-26 Andreas Schwab <schwab@linux-m68k.org>
11943
11944 * emacs-lisp/smie.el (smie-bnf->prec2): Fix last change.
11945 (Bug#8934)
11946
11947 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
11948
11949 * net/network-stream.el (network-stream-open-starttls):
11950 Use built-in TLS support if `gnutls-available-p' is true.
11951 (network-stream-open-tls): Ditto.
11952
11953 2011-06-26 Leo Liu <sdl.web@gmail.com>
11954
11955 * register.el (registerv): New struct.
11956 (registerv-make): New function.
11957 (jump-to-register, describe-register-1, insert-register):
11958 Support the jump-func, print-func and insert-func slot of a registerv
11959 struct. (Bug#8415)
11960
11961 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
11962
11963 * vc/vc.el (vc-revert-show-diff): New defcustom.
11964 (vc-diff-internal): New arg specifying diff buffer.
11965 (vc-revert): Obey vc-revert-show-diff. If we show a diff, don't
11966 reuse an existing *vc-diff* buffer (Bug#8927).
11967
11968 * progmodes/cperl-mode.el (cperl-mode): Derive from prog-mode.
11969
11970 2011-06-26 Glenn Morris <rgm@gnu.org>
11971
11972 * progmodes/f90.el (f90-critical-indent): New option.
11973 (f90-font-lock-keywords-2, f90-blocks-re, f90-end-block-re)
11974 (f90-start-block-re, f90-mode-abbrev-table): Add block, critical.
11975 (f90-mode): Doc fix.
11976 (f90-looking-at-critical, f90-looking-at-end-critical): New funcs.
11977 (f90-no-block-limit, f90-calculate-indent, f90-end-of-block)
11978 (f90-beginning-of-block, f90-next-block, f90-indent-region)
11979 (f90-match-end): Handle block, critical.
11980
11981 2011-06-25 Glenn Morris <rgm@gnu.org>
11982
11983 * calendar/diary-lib.el (diary-included-files): Doc fix.
11984 (diary-include-files): New function, extracted from
11985 diary-include-other-diary-files and diary-mark-included-diary-files.
11986 (diary-include-other-diary-files, diary-mark-included-diary-files):
11987 Just call diary-include-files.
11988 (diary-mark-entries): Reset diary-included-files on first call.
11989
11990 * calendar/diary-lib.el (diary-mark-entries)
11991 (diary-mark-included-diary-files):
11992 Visit included diary-files in temp buffers.
11993
11994 * progmodes/f90.el (f90-keywords-re, f90-font-lock-keywords-1)
11995 (f90-blocks-re, f90-program-block-re, f90-end-block-re)
11996 (f90-start-block-re, f90-imenu-generic-expression)
11997 (f90-looking-at-program-block-start, f90-no-block-limit):
11998 Add support for submodules.
11999
12000 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
12001 (f90-procedures-re, f90-constants-re): Add some F2008 stuff.
12002
12003 2011-06-25 Eli Zaretskii <eliz@gnu.org>
12004
12005 * net/ange-ftp.el (ange-ftp-insert-file-contents): Let-bind
12006 buffer-file-type before setting its value, to avoid disastrous
12007 global effects on decoding files for DOS/Windows systems. (Bug#8780)
12008
12009 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
12010
12011 * allout.el (allout-unload-function): Pass -1 to `allout-mode'.
12012
12013 * ses.el (ses-unload-function):
12014 * emacs-lisp/re-builder.el (re-builder-unload-function): Simplify.
12015
12016 * proced.el (proced-unload-function):
12017 * progmodes/cperl-mode.el (cperl-mode-unload-function): Remove.
12018
12019 2011-06-25 Andreas Rottmann <a.rottmann@gmx.at>
12020
12021 * server.el (server-create-window-system-frame): Add parameters arg.
12022 (server-process-filter): Doc fix. Handle frame-parameters.
12023
12024 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
12025
12026 Fix bug#8730, bug#8781.
12027
12028 * loadhist.el (unload--set-major-mode): New function.
12029 (unload-feature): Use it.
12030
12031 * progmodes/python.el (python-after-info-look): Add autoload cookie.
12032 (python-unload-function): New function.
12033
12034 2011-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
12035
12036 * mail/rmail.el (rmail-show-message-1): Use restore-buffer-modified-p.
12037
12038 2011-06-25 Giuseppe Scrivano <gscrivano@gnu.org>
12039
12040 * net/browse-url.el (browse-url-firefox-program): Add icecat to
12041 the candidates list.
12042
12043 2011-06-24 Juanma Barranquero <lekktu@gmail.com>
12044
12045 * progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
12046
12047 2011-06-23 Richard Stallman <rms@gnu.org>
12048
12049 * mail/rmail.el: Going to grep hit in Rmail buffer finds the message.
12050 (rmail-variables): Set next-error-move-function.
12051 (rmail-what-message): Take argument POS.
12052 (rmail-next-error-move): New function.
12053
12054 2011-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
12055
12056 * emacs-lisp/smie.el (smie-bnf->prec2): Give more understandable error
12057 messages for adjacent non-terminals.
12058
12059 2011-06-23 Richard Stallman <rms@gnu.org>
12060
12061 * mail/rmail.el (rmail-retry-ignored-headers): Add message-id.
12062 (rmail-show-message-1): Preserve buffer modified flag.
12063 (rmail-start-mail): Don't specify use of rmail-mail-return;
12064 that's done by mail-bury now.
12065 (rmail-mail-return): Handle arg NEWBUF.
12066
12067 2011-06-23 Michael Albinus <michael.albinus@gmx.de>
12068
12069 * net/tramp-sh.el (tramp-method-out-of-band-p): Check, whether
12070 SIZE is a number.
12071
12072 2011-06-23 Martin Rudalics <rudalics@gmx.at>
12073
12074 * window.el (get-lru-window, get-mru-window)
12075 (get-largest-window): Never return a minibuffer window.
12076 (display-buffer-pop-up-window): Fix a bug that could lead to
12077 reusing the minibuffer window.
12078 (display-buffer): Pass original specifier argument to
12079 display-buffer-function instead of the normalized one.
12080 Reported by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
12081
12082 2011-06-22 Leo Liu <sdl.web@gmail.com>
12083
12084 * minibuffer.el (completing-read-function)
12085 (completing-read-default): Move from minibuf.c
12086
12087 2011-06-22 Richard Stallman <rms@gnu.org>
12088
12089 * mail/sendmail.el (mail-bury): If Rmail is in use, return nicely
12090 to Rmail even if not started by a special Rmail command.
12091
12092 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
12093 Copy the buffer currently showing just one message.
12094
12095 2011-06-22 Roland Winkler <winkler@gnu.org>
12096
12097 * textmodes/bibtex.el (bibtex-entry-update): Use mapc.
12098 (bibtex-clean-entry): First delete the old key so that a
12099 customized algorithm for generating the new key does not get
12100 confused by the old key.
12101 (bibtex-url): Obey regexp of first step.
12102 (bibtex-search-entries): Do not use add-to-list with local
12103 list-var.
12104
12105 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
12106
12107 * mail/smtpmail.el (smtpmail-try-auth-methods): If the user has
12108 stored a user name, then query for the password first, instead of
12109 waiting for SMTP to give an error message and the trying again.
12110
12111 2011-06-22 Lawrence Mitchell <wence@gmx.li>
12112
12113 * net/browse-url.el (browse-url-xdg-open): Use 0, rather than nil
12114 BUFFER in call-process.
12115
12116 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
12117
12118 * mail/smtpmail.el (smtpmail-via-smtp): Make sure we don't send
12119 QUIT twice.
12120 (smtpmail-try-auth-methods): Require user name and password from
12121 auth-source.
12122
12123 2011-06-22 Martin Rudalics <rudalics@gmx.at>
12124
12125 * window.el (display-buffer-default-specifiers)
12126 (display-buffer-alist): Remove entries for pop-up-frame-alist.
12127 Suggested by Katsumi Yamaoka <yamaoka@jpl.org>.
12128 (split-window): Normalize SIDE argument (Bug#8916).
12129
12130 * frame.el (pop-up-frame-alist, pop-up-frame-function)
12131 (special-display-frame-alist, special-display-popup-frame):
12132 Remove duplicate declarations. These are now in window.el.
12133
12134 2011-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
12135
12136 * mail/smtpmail.el (smtpmail-via-smtp):
12137 Set :use-starttls-if-possible so that we always use STARTTLS if the
12138 server supports it. SMTP servers that support STARTTLS commonly
12139 require it.
12140
12141 * net/network-stream.el (network-stream-open-starttls): Support
12142 upgrading to STARTTLS always, even if we don't have built-in support.
12143 (open-network-stream): Add the :always-query-capabilities keyword.
12144
12145 * mail/smtpmail.el: Rewritten to do opportunistic STARTTLS
12146 upgrades with `open-network-stream', and rely solely on
12147 auth-source for all credentials. Big changes throughout the file,
12148 but in particular:
12149 (smtpmail-auth-credentials): Remove.
12150 (smtpmail-starttls-credentials): Remove.
12151 (smtpmail-via-smtp): Check for servers saying they want AUTH after
12152 MAIL FROM, too.
12153
12154 * net/network-stream.el (network-stream-open-starttls):
12155 Provide support for client certificates both for external and built-in
12156 STARTTLS.
12157 (auth-source): Require.
12158 (open-network-stream): Document the :client-certificate keyword.
12159 (network-stream-certificate): Change cert-cert to cert and
12160 cert-key to key.
12161
12162 2011-06-21 Michael Albinus <michael.albinus@gmx.de>
12163
12164 * net/tramp-cache.el (top): Don't load the persistency file when
12165 "emacs -Q" has been called.
12166
12167 2011-06-21 Tim Harper <timcharper@gmail.com>
12168
12169 * term/ns-win.el (ns-initialize-window-system):
12170 Set application-specific `ApplePressAndHoldEnabled' system
12171 resource to NO as it is not yet supported by the NS port.
12172
12173 2011-06-21 Juanma Barranquero <lekktu@gmail.com>
12174
12175 * misc.el (list-dynamic-libraries--refresh): Compute header here...
12176 (list-dynamic-libraries): ...not here.
12177
12178 2011-06-21 Leo Liu <sdl.web@gmail.com>
12179
12180 * subr.el (sha1): Implement sha1 using secure-hash.
12181
12182 2011-06-21 Martin Rudalics <rudalics@gmx.at>
12183
12184 * window.el (display-buffer-alist): In default value do not
12185 enforce searching a window on any but the selected frame.
12186 Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
12187 (display-buffer-select-window): Remove function.
12188 (display-buffer-in-window): When a window on another frame gets
12189 reused, do not select it any more but just raise its frame if
12190 necessary (Bug#8851) and (Bug#8856).
12191 (display-buffer-normalize-options): Handle pop-up-frames related
12192 options more faithfully.
12193 (pop-to-buffer): Don't rely on `display-buffer' selecting the
12194 window if it is on another frame.
12195 (display-buffer-alist, display-buffer-default-specifiers):
12196 Don't make new frame unsplittable by default.
12197 (display-buffer-normalize-argument): Fix doc-string typo and use
12198 'same-frame-other-window instead of 'other-window when associating
12199 with display-buffer-macro-specifiers.
12200
12201 2011-06-21 Vincent Belaïche <vincent.b.1@hotmail.fr>
12202
12203 * play/5x5.el (5x5-solve-rotate-left, 5x5-solve-rotate-right):
12204 New functions.
12205 (5x5-mode-map, 5x5-mode-menu): Bind them.
12206 (5x5-draw-grid): Tweak the solver's rendering.
12207
12208 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
12209
12210 * progmodes/compile.el (compilation-error-regexp-alist-alist): Rename
12211 `caml' to `python-tracebacks-and-caml'; allow leading tabs (bug#8585).
12212
12213 2011-06-21 Drew Adams <drew.adams@oracle.com>
12214
12215 * menu-bar.el: Use function variable instead of switch-to-buffer.
12216 (menu-bar-select-buffer-function): New variable.
12217 (menu-bar-update-buffers): Use it (bug#8876).
12218
12219 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
12220
12221 * emacs-lisp/bytecomp.el (add-to-list): Add handler to check the
12222 variable's status.
12223
12224 2011-06-20 Jan Djärv <jan.h.d@swipnet.se>
12225
12226 * x-dnd.el (x-dnd-version-from-flags)
12227 (x-dnd-more-than-3-from-flags): New functions that handle long-as-cons
12228 and long as number (Bug#8899).
12229 (x-dnd-handle-xdnd): Call functions above (Bug#8899).
12230
12231 2011-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
12232
12233 * minibuffer.el (completion-metadata): Add `metadata' to the alist.
12234 (completion-try-completion, completion-all-completions): Compute the
12235 metadata argument if it's missing; make it optional (bug#8795).
12236
12237 * wid-edit.el: Use lex-bind and move towards completion-at-point.
12238 (widget-complete): Use new :completion-function property.
12239 (widget-completions-at-point): New function.
12240 (default): Use :completion-function instead of :complete.
12241 (widget-default-completions): Rename from widget-default-complete;
12242 Rewrite.
12243 (widget-string-complete, widget-file-complete, widget-color-complete):
12244 Remove functions.
12245 (file, symbol, function, variable, coding-system, color):
12246 * international/mule-cmds.el (default-input-method, charset)
12247 (language-info-custom-alist):
12248 * cus-edit.el (face): Use new property :completions.
12249
12250 * progmodes/pascal.el (pascal-completions-at-point): New function.
12251 (pascal-mode): Use it.
12252 (pascal-mode-map): Use completion-at-point.
12253 (pascal-toggle-completions): Make obsolete.
12254 (pascal-complete-word, pascal-show-completions):
12255 * progmodes/octave-mod.el (octave-complete-symbol):
12256 Redefine as obsolete alias.
12257 * progmodes/octave-inf.el (inferior-octave-completion-at-point):
12258 Signal absence of completion info for old Octave,
12259 (inferior-octave-complete): Redefine as obsolete alias.
12260 * progmodes/meta-mode.el: Use lexical-binding and completion-at-point.
12261 (meta-completions-at-point): Rename from meta-complete-symbol and
12262 adapt it for use on completion-at-point-functions.
12263 (meta-common-mode): Use it.
12264 (meta-looking-at-backward, meta-match-buffer): Remove.
12265 (meta-complete-symbol): Redefine as obsolete alias.
12266 (meta-common-mode-map): Use completion-at-point.
12267 * progmodes/make-mode.el: Use lexical-binding and completion-at-point.
12268 (makefile-mode-map): Use completion-at-point.
12269 (makefile-completions-at-point): Rename from makefile-complete and
12270 adapt it for use on completion-at-point-functions.
12271 (makefile-mode): Use it.
12272 (makefile-complete): Redefine as obsolete alias.
12273
12274 2011-06-20 Deniz Dogan <deniz@dogan.se>
12275
12276 * net/rcirc.el: Delete trailing whitespaces once and for all.
12277
12278 2011-06-20 Daniel Colascione <dan.colascione@gmail.com>
12279
12280 * emacs-lisp/syntax.el (syntax-ppss): Further improve docstring.
12281
12282 2011-06-19 Chong Yidong <cyd@stupidchicken.com>
12283
12284 * files.el (auto-mode-alist): Entry for m2-mode (Bug#8852).
12285
12286 * info.el (Info-apropos-toc-nodes): Minor doc fix (Bug#8833).
12287
12288 2011-06-19 Martin Rudalics <rudalics@gmx.at>
12289
12290 * window.el (display-buffer-other-window-means-other-frame):
12291 Call display-buffer-normalize-alist.
12292 (display-buffer-normalize-specifiers-1): Rename to
12293 display-buffer-normalize-argument. New argument other-frame.
12294 Rewrite.
12295 (display-buffer-normalize-specifiers-2): Rename to
12296 display-buffer-normalize-options.
12297 (display-buffer-normalize-alist-1): New function.
12298 (display-buffer-normalize-specifiers-3): Rename to
12299 display-buffer-normalize-alist.
12300 Call display-buffer-normalize-alist-1.
12301 (display-buffer-normalize-options-inhibit): New variable.
12302 (display-buffer-normalize-specifiers): Rewrite calling
12303 display-buffer-normalize-alist,
12304 display-buffer-normalize-argument, and
12305 display-buffer-normalize-options. Don't call the latter if
12306 display-buffer-normalize-options-inhibit is non-nil.
12307 (frame-auto-delete): New option.
12308 (window-deletable-p): Use frame-auto-delete.
12309 (window-list-no-nils, window-state-ignored-parameters)
12310 (window-state-get-1, window-state-get, window-state-put-list)
12311 (window-state-put-1, window-state-put-2, window-state-put):
12312 New functions.
12313 (display-buffer-normalize-options): Move special-display-p group
12314 after pop-up-frame group (Bug#8851) and (Bug#8856).
12315
12316 2011-06-18 Chong Yidong <cyd@stupidchicken.com>
12317
12318 * emacs-lisp/rx.el (rx-constituents): Add support for numbered
12319 groups (Bug#8776).
12320 (rx-submatch-n): New function.
12321 (rx): Document it.
12322
12323 * dired-x.el (dired-mark-unmarked-files): Fix interactive spec
12324 (Bug#8768).
12325
12326 * replace.el (occur-mode-map): Set occur-edit-mode binding to "e".
12327
12328 * textmodes/fill.el (default-justification): Add :safe (Bug#8879).
12329
12330 * cus-face.el (custom-declare-face): Call custom-theme-recalc face
12331 anytime existing face settings are present (Bug#8889).
12332
12333 * progmodes/delphi.el (delphi-mode-syntax-table): Use defvar.
12334 (delphi-mode): Use define-derived-mode to inherit from prog-mode.
12335 Remove unused argument.
12336
12337 2011-06-18 Martin Rudalics <rudalics@gmx.at>
12338
12339 * window.el (display-buffer-default-specifiers):
12340 Remove pop-up-frame. Add pop-up-window-min-height,
12341 pop-up-window-min-width, and another reuse-window specifier
12342 (Bug#8882). Reported by Dan Nicolaescu <dann@gnu.org>.
12343 (display-buffer-normalize-specifiers-2):
12344 Handle split-height-threshold and split-width-threshold also when
12345 pop-up-windows is unset. Add a reuse-window specifier for the
12346 case popping up a new window fails.
12347 (special-display-popup-frame): Remove double quoting.
12348 (display-buffer-normalize-specifiers-1): Fix thinko.
12349
12350 2011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
12351
12352 * shell.el (shell-completion-vars): Set pcomplete-termination-string
12353 according to comint-completion-addsuffix.
12354
12355 * pcomplete.el: Convert to lexical binding and fix bug#8819.
12356 (pcomplete-suffix-list): Mark as obsolete.
12357 (pcomplete-completions-at-point): Capture pcomplete-norm-func and
12358 pcomplete-seen in the closure.
12359 (pcomplete-comint-setup): Setup completion-at-point as well.
12360 (pcomplete--entries): New function.
12361 (pcomplete--env-regexp): New var.
12362 (pcomplete-entries): Rewrite to work with partial-completion and
12363 without relying on pcomplete-suffix-list.
12364 (pcomplete-pare-list): Remove, unused.
12365
12366 2011-06-17 Martin Rudalics <rudalics@gmx.at>
12367
12368 * window.el (display-buffer-alist): Set pop-up-window-min-height
12369 and pop-up-window-min-width in default value. Reported by
12370 Thierry Volpiatto <thierry.volpiatto@gmail.com>. New specifier
12371 other-window-means-other-frame.
12372 (display-buffer-macro-specifiers): Comment out entry for
12373 other-window specifier.
12374 (display-buffer-other-window-means-other-frame): New function.
12375 (display-buffer-normalize-specifiers-1): New arguments
12376 buffer-name and label. Treat other-window case specially.
12377 (display-buffer-normalize-specifiers-2): Treat other-window case
12378 specially.
12379 (display-buffer-normalize-specifiers-3): New function.
12380 (display-buffer-normalize-specifiers):
12381 Call display-buffer-normalize-specifiers-3.
12382
12383 2011-06-17 Martin Rudalics <rudalics@gmx.at>
12384
12385 * window.el (same-window-p): Fix two typos introduced when
12386 adding with-no-warnings.
12387 (display-buffer-normalize-specifiers-1): Don't check
12388 pop-up-frames for 'unset initialization.
12389 (display-buffer-normalize-specifiers-2): Major rewrite using
12390 special-display-p and same-window-p (Bug#8851) and (Bug#8856).
12391 (pop-up-frames, display-buffer-reuse-frames)
12392 (display-buffer-mark-dedicated): Don't initialize to 'unset.
12393 Suggested by David Engster <deng@randomsample.de>.
12394 (even-window-heights): Initialize to 'unset.
12395 (display-buffer-alist-set): Handle new 'unset initializations.
12396 (display-buffer-macro-specifiers): Don't pop up a new frame in the
12397 other window case.
12398
12399 2011-06-16 Martin Rudalics <rudalics@gmx.at>
12400
12401 * window.el (display-buffer-normalize-specifiers-1):
12402 Respect current value of pop-up-frames for most reasonable values of
12403 second argument of display-buffer (Bug#8865).
12404 (switch-to-buffer-same-frame, switch-to-buffer-other-window)
12405 (switch-to-buffer-other-window-same-frame)
12406 (switch-to-buffer-other-frame): Fix doc-strings. Reported by Drew
12407 Adams (Bug#8875).
12408 (display-buffer): Don't check noninteractive when calling
12409 display-buffer-pop-up-frame.
12410 (display-buffer-pop-up-frame): Never pop up a frame in
12411 noninteractive mode (Bug#8857).
12412 (enlarge-window, shrink-window): Don't report an error when the
12413 window can't be resized as requested (Bug#8862).
12414
12415 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
12416
12417 * pcmpl-rpm.el (pcomplete/rpm): Minor simplification.
12418
12419 * emacs-lisp/debug.el (debug): Don't leave the buffer in Debugger.
12420
12421 * abbrev.el (define-abbrev-table): Don't add a table multiple times.
12422
12423 2011-06-15 Alan Mackenzie <acm@muc.de>
12424
12425 * progmodes/cc-fonts.el (c-font-lock-declarations): 1: Whilst checking
12426 for declarators, disable knr checking to speed up for normal files.
12427 2: Refactor, replacing a sequence of nested if forms by a cond form.
12428
12429 2011-06-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
12430
12431 * net/network-stream.el (open-network-stream): Add the keyword
12432 :always-query-capabilities for the case where you want to force a
12433 `plain' network connection, but the protocol still requires the
12434 capabilitiy command (i.e., SMTP and EHLO).
12435
12436 * subr.el (process-live-p): Rename from `process-alive-p' for
12437 consistency with other `-live-p' functions.
12438
12439 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
12440
12441 * window.el (same-window-buffer-names, same-window-regexps)
12442 (special-display-frame-alist, special-display-popup-frame)
12443 (special-display-function, special-display-buffer-names)
12444 (special-display-regexps, pop-up-frame-alist)
12445 (pop-up-frame-function, pop-up-frames, display-buffer-reuse-frames)
12446 (pop-up-windows, split-window-preferred-function)
12447 (split-height-threshold, split-width-threshold, even-window-heights)
12448 (display-buffer-mark-dedicated): Don't encourage the use of
12449 display-buffer-alist from Elisp code.
12450
12451 2011-06-15 Dan Nicolaescu <dann@ics.uci.edu>
12452
12453 * progmodes/python.el (python-mode): Derive from prog-mode.
12454 * progmodes/ps-mode.el (ps-mode):
12455 * progmodes/mixal-mode.el (mixal-mode):
12456 * progmodes/cfengine.el (cfengine-mode):
12457 * progmodes/ld-script.el (ld-script-mode): Likewise.
12458
12459 2011-06-15 Martin Rudalics <rudalics@gmx.at>
12460
12461 * window.el (display-buffer-alist): Trim default value to avoid
12462 popping up a new frame (Bug#8857) or reusing an arbitrary window
12463 on another frame.
12464 (display-buffer): Do not fall back on popping up a new frame in
12465 batch mode (Bug#8857).
12466
12467 2011-06-14 Chong Yidong <cyd@stupidchicken.com>
12468
12469 * cus-theme.el (describe-theme-1): Use custom-theme-p.
12470 (custom-theme-summary): New function.
12471 (customize-themes): Use it.
12472
12473 2011-06-13 Glenn Morris <rgm@gnu.org>
12474
12475 * cus-dep.el (custom-make-dependencies): Use up command-line-args-left.
12476
12477 2011-06-13 Martin Rudalics <rudalics@gmx.at>
12478
12479 * help.el (help-window): Remove variable.
12480 (help-window-point-marker, temp-buffer-max-height)
12481 (temp-buffer-resize-mode, help-window-select): Rewrite doc-strings.
12482 (help-print-return-message): Don't set help-window.
12483 (resize-temp-buffer-window): Rewrite cod eand doc-string.
12484 (help-window-setup-finish): Remove.
12485 (help-window-display-message, help-window-setup)
12486 (with-help-window): Major rewrite based on new
12487 display-buffer-window variable.
12488
12489 * help-mode.el (help-mode-finish): Remove help-window related
12490 code.
12491
12492 * view.el (view-exits-all-viewing-windows): Remove reference to
12493 view-return-to-alist in doc-string.
12494 (view-return-to-alist): Make obsolete.
12495 (view-buffer): Call pop-to-buffer-same-window and remove
12496 undo-window code.
12497 (view-buffer-other-window): Call pop-to-buffer-other-window and
12498 simplify code. Ignore second argument.
12499 (view-buffer-other-frame): Call pop-to-buffer-other-frame and
12500 simplify code. Ignore second argument.
12501 (view-return-to-alist-update): Make obsolete.
12502 (view-mode-enter): Rename second argument to QUIT-RESTORE.
12503 Rewrite using quit-restore window parameters.
12504 (view-mode-exit): Rename second argument to EXIT-ONLY.
12505 Rewrite using quit-restore-window.
12506 (View-exit, View-exit-and-edit, View-leave, View-quit)
12507 (View-quit-all, View-kill-and-leave): Call view-mode-exit with
12508 appropriate arguments.
12509 (view-end-message): Use quit-restore window parameter.
12510
12511 * window.el (display-buffer-function): Rewrite doc-string.
12512 (display-buffer-window, display-buffer-alist): New variables.
12513 (display-buffer-split-specifiers)
12514 (display-buffer-side-specifiers)
12515 (display-buffer-macro-specifiers): New constants.
12516 (display-buffer-even-window-sizes, display-buffer-set-height)
12517 (display-buffer-set-width, display-buffer-select-window)
12518 (display-buffer-in-window, display-buffer-reuse-window)
12519 (display-buffer-split-window-1, display-buffer-split-window)
12520 (display-buffer-split-atom-window, display-buffer-pop-up-window)
12521 (display-buffer-pop-up-frame, display-buffer-pop-up-side-window)
12522 (display-buffer-in-side-window, normalize-buffer-to-display)
12523 (display-buffer-normalize-specifiers-1)
12524 (display-buffer-normalize-specifiers-2)
12525 (display-buffer-normalize-specifiers, display-buffer-frame):
12526 New functions.
12527 (display-buffer): Major rewrite.
12528 (display-buffer-other-window, display-buffer-other-frame)
12529 (pop-to-buffer, switch-to-buffer-other-window)
12530 (switch-to-buffer-other-frame): Rewrite.
12531 (display-buffer-same-window, display-buffer-same-frame)
12532 (display-buffer-same-frame-other-window)
12533 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
12534 (pop-to-buffer-other-window)
12535 (pop-to-buffer-same-frame-other-window)
12536 (pop-to-buffer-other-frame, switch-to-buffer-same-frame)
12537 (switch-to-buffer-other-window-same-frame): New functions.
12538 (same-window-p, special-display-p): Rewrite disabling warnings.
12539 Make obsolete.
12540 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
12541 (display-buffer-mark-dedicated): Initialize to symbol 'unset.
12542 Make obsolete
12543 (same-window-buffer-names, same-window-regexps)
12544 (special-display-frame-alist, special-display-popup-frame)
12545 (special-display-function, special-display-buffer-names)
12546 (special-display-regexps, pop-up-frame-alist)
12547 (pop-up-frame-function, split-window-preferred-function)
12548 (split-height-threshold, split-width-threshold)
12549 (even-window-heights): Make obsolete.
12550
12551 2011-06-12 Glenn Morris <rgm@gnu.org>
12552
12553 * term/xterm.el (terminal-init-xterm): `version' may be nil. (Bug#8838)
12554 Misc simplifications.
12555
12556 2011-06-12 Martin Rudalics <rudalics@gmx.at>
12557
12558 * window.el (window-safely-shrinkable-p): Restore function which
12559 was inadvertently removed in change from 2011-06-11. Declare as
12560 obsolete.
12561
12562 * calendar/calendar.el (calendar-generate-window):
12563 Use window-iso-combined-p instead of combination of one-window-p and
12564 window-safely-shrinkable-p.
12565
12566 2011-06-12 Glenn Morris <rgm@gnu.org>
12567
12568 * progmodes/fortran.el (fortran-mode-syntax-table):
12569 * progmodes/f90.el (f90-mode-syntax-table):
12570 Set % to punctuation. (Bug#8820)
12571 (f90-find-tag-default): Remove, no longer needed.
12572
12573 2011-06-12 Daniel Colascione <dan.colascione@gmail.com>
12574
12575 * emacs-lisp/syntax.el (syntax-ppss): Clarify which items are invalid.
12576
12577 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
12578
12579 * image.el (image-animated-p): Return animation delay in seconds.
12580 Avoid bit manipulation in Lisp; use `delay' entry in the metadata.
12581 (image-animate-timeout): Remove DELAY argument. Don't assume
12582 every subimage has the same delay; get it from image-animated-p.
12583 (image-animate): Caller changed.
12584
12585 2011-06-11 Michael Albinus <michael.albinus@gmx.de>
12586
12587 * net/tramp.el (tramp-debug-message): Add `tramp-with-progress-reporter'
12588 to ignored backtrace functions.
12589
12590 2011-06-11 Glenn Morris <rgm@gnu.org>
12591
12592 * calendar/appt.el (appt-disp-window-function): Doc fix.
12593 (appt-check): Handle overlapping appointments. (Bug#8337)
12594
12595 2011-06-11 Martin Rudalics <rudalics@gmx.at>
12596
12597 * window.el (window-tree-1, window-tree): New functions, moving
12598 the latter to window.el.
12599 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
12600 (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
12601 (bw-refresh-edges): Remove.
12602 (balance-windows-1, balance-windows-2): New functions.
12603 (balance-windows): Rewrite in terms of window tree functions,
12604 balance-windows-1 and balance-windows-2.
12605 (bw-adjust-window): Remove.
12606 (balance-windows-area-adjust): New function with functionality of
12607 bw-adjust-window but using resize-window.
12608 (set-window-text-height): Rewrite doc-string.
12609 Use normalize-live-window and resize-window.
12610 (enlarge-window-horizontally, shrink-window-horizontally):
12611 Rename argument to DELTA.
12612 (window-buffer-height): New function.
12613 (fit-window-to-buffer, shrink-window-if-larger-than-buffer):
12614 Rewrite using new window resize routines.
12615 (kill-buffer-and-window, mouse-autoselect-window-select):
12616 Use ignore-errors instead of condition-case.
12617 (quit-window): Call delete-frame instead of delete-windows-on
12618 for the only buffer on frame.
12619
12620 2011-06-10 Martin Rudalics <rudalics@gmx.at>
12621
12622 * loadup.el (top-level): Load window before files for the sake
12623 of replace-buffer-in-windows.
12624
12625 * files.el (read-buffer-to-switch)
12626 (switch-to-buffer-other-window)
12627 (switch-to-buffer-other-frame, display-buffer-other-frame):
12628 Move to window.el.
12629
12630 * simple.el (get-next-valid-buffer, last-buffer, next-buffer)
12631 (previous-buffer): Move to window.el.
12632
12633 * bindings.el (unbury-buffer): Move to window.el.
12634
12635 * window.el (delete-other-windows-vertically): Move after
12636 definition of delete-other-windows.
12637 (other-window, delete-windows-on, replace-buffer-in-windows):
12638 Move here from window.c.
12639 (record-window-buffer, unrecord-window-buffer)
12640 (set-window-buffer-start-and-point, switch-to-prev-buffer)
12641 (switch-to-next-buffer): New functions.
12642 (get-next-valid-buffer, last-buffer, next-buffer): Move here
12643 from simple.el. Call switch-to-next-buffer.
12644 (previous-buffer): Move here from simple.el.
12645 Call switch-to-prev-buffer.
12646 (bury-buffer): Move here from buffer.c. Switch to previous
12647 buffer when window cannot be deleted.
12648 (unbury-buffer): Move here from bindings.el.
12649 (ctl-x-map): Move binding for other-window from window.c to
12650 here.
12651 (read-buffer-to-switch, switch-to-buffer-other-window)
12652 (switch-to-buffer-other-frame): Move here from files.el.
12653 (normalize-buffer-to-switch-to): New functions.
12654 (switch-to-buffer): Move here from buffer.c.
12655 Use read-buffer-to-switch and normalize-buffer-to-switch-to.
12656
12657 2011-06-10 Martin Rudalics <rudalics@gmx.at>
12658
12659 * window.el (window-min-height, window-min-width): Move here
12660 from window.c. Add defcustoms and rewrite doc-strings.
12661 (resize-mini-window, resize-window): New functions.
12662 (adjust-window-trailing-edge, enlarge-window, shrink-window):
12663 Move here from window.c.
12664 (maximize-window, minimize-window): New functions.
12665 (delete-window, delete-other-windows, split-window): Move here
12666 from window.c.
12667 (window-split-min-size): New function.
12668 (split-window-keep-point): Mention split-window-above-each-other
12669 instead of split-window-vertically.
12670 (split-window-above-each-other, split-window-vertically):
12671 Rename split-window-vertically to split-window-above-each-other
12672 and provide defalias for old definition.
12673 (split-window-side-by-side, split-window-horizontally):
12674 Rename split-window-horizontally to split-window-side-by-side
12675 and provide defalias for the old definition.
12676 (ctl-x-map): Move bindings for delete-window,
12677 delete-other-windows and enlarge-window here from window.c.
12678 Replace bindings for split-window-vertically and
12679 split-window-horizontally by bindings for
12680 split-window-above-each-other and split-window-side-by-side.
12681
12682 * cus-start.el (all): Remove entries for window-min-height and
12683 window-min-width. Add entries for window-splits and
12684 window-nest.
12685
12686 2011-06-09 Glenn Morris <rgm@gnu.org>
12687
12688 * calendar/appt.el (appt-mode-line): New function.
12689 (appt-check, appt-disp-window): Use it.
12690
12691 * files.el (hack-one-local-variable-eval-safep):
12692 Allow minor-modes with explicit +/-1 arguments.
12693
12694 2011-06-09 Teodor Zlatanov <tzz@lifelogs.com>
12695
12696 * term/xterm.el (xterm): Add defgroup.
12697 (xterm-extra-capabilities): Add defcustom to supply known xterm
12698 capabilities, skip querying them, or query them (default).
12699 (terminal-init-xterm): Use it.
12700 (terminal-init-xterm-modify-other-keys): New function to set up
12701 modifyOtherKeys support to simplify `terminal-init-xterm'.
12702
12703 2011-06-09 Martin Rudalics <rudalics@gmx.at>
12704
12705 * window.el (resize-window-reset, resize-window-reset-1)
12706 (resize-subwindows-skip-p, resize-subwindows-normal)
12707 (resize-subwindows, resize-other-windows, resize-this-window)
12708 (resize-root-window, resize-root-window-vertically)
12709 (window-deletable-p, window-or-subwindow-p)
12710 (frame-root-window-p): New functions.
12711
12712 2011-06-09 Glenn Morris <rgm@gnu.org>
12713
12714 * net/ange-ftp.el (ange-ftp-switches-ok): New function.
12715 (ange-ftp-get-files): Use it.
12716
12717 2011-06-09 Alexander Klimov <alserkli@inbox.ru> (tiny change)
12718
12719 * mail/sendmail.el (mail-recover-1, mail-recover):
12720 * files.el (recover-file, recover-session):
12721 Handle dired-listing-switches not being just a single short option.
12722
12723 2011-06-09 Glenn Morris <rgm@gnu.org>
12724
12725 * calendar/appt.el (appt-display-message, appt-disp-window):
12726 Handle lists of appointments.
12727
12728 2011-06-08 Martin Rudalics <rudalics@gmx.at>
12729
12730 * window.el (one-window-p): Move down in code.
12731 Rewrite doc-string.
12732 (window-current-scroll-bars): Rewrite doc-string.
12733 Normalize live window argument.
12734 (walk-windows, get-window-with-predicate, count-windows):
12735 Rewrite doc-string. Use window-list-1.
12736 (window-in-direction-2, window-in-direction, get-mru-window):
12737 New functions.
12738
12739 2011-06-08 Reuben Thomas <rrt@sc3d.org>
12740
12741 * progmodes/flymake.el (flymake-compilation-prevents-syntax-check):
12742 Doc fix (Bug#8713).
12743
12744 2011-06-08 Chong Yidong <cyd@stupidchicken.com>
12745
12746 * repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
12747
12748 2011-06-08 Juanma Barranquero <lekktu@gmail.com>
12749
12750 * loadhist.el (unload-feature-special-hooks):
12751 Add `comint-output-filter-functions'.
12752
12753 2011-06-08 Ivan Kanis <gnu@kanis.fr>
12754
12755 * calendar/appt.el (appt-check): Move some initializations into the let.
12756
12757 2011-06-08 Martin Rudalics <rudalics@gmx.at>
12758
12759 * window.el (window-height): Defalias to window-total-height.
12760 (window-width): Defalias to window-body-width.
12761
12762 2011-06-07 Chong Yidong <cyd@stupidchicken.com>
12763
12764 * image-mode.el (image-toggle-animation): New command.
12765 (image-mode-map): Bind it to RET.
12766 (image-mode): Update message.
12767 (image-toggle-display-image): Avoid a spurious cache flush.
12768 (image-transform-rotation): Doc fix.
12769 (image-transform-properties): Return quickly in the normal case.
12770 (image-animate-loop): Rename from image-animate-max-time.
12771
12772 * image.el (image-animate-max-time): Move to image-mode.el.
12773 (create-animated-image): Remove unnecessary function.
12774 (image-animate): Rename from image-animate-start. New arg.
12775 (image-animate-stop): Remove; just use image-animate-timer.
12776 (image-animate-timer): Use car-safe.
12777 (image-animate-timeout): Rename argument.
12778
12779 2011-06-07 Martin Rudalics <rudalics@gmx.at>
12780
12781 * window.el (get-lru-window, get-largest-window): Move here from
12782 window.c. Rename first argument to ALL-FRAMES.
12783 Rephrase doc-strings.
12784 (get-buffer-window-list): Rewrite using window-list-1.
12785 Rephrase doc-string.
12786 (window-safe-min-height, window-safe-min-width): New constants.
12787 (window-size-ignore, window-min-size, window-min-size-1)
12788 (window-sizable, window-sizable-p, window-size-fixed-1)
12789 (window-size-fixed-p, window-min-delta-1, window-min-delta)
12790 (window-max-delta-1, window-max-delta, window-resizable)
12791 (window-resizable-p, window-total-height, window-total-width)
12792 (window-body-width): New functions.
12793 (window-full-height-p, window-full-width-p): Rewrite using
12794 window-total-size.
12795 (window-body-height): Rewrite using window-body-size.
12796
12797 2011-06-06 Martin Rudalics <rudalics@gmx.at>
12798
12799 * window.el (window-right, window-left, window-child)
12800 (window-child-count, window-last-child, window-any-p)
12801 (normalize-live-buffer, normalize-live-frame)
12802 (normalize-any-window, normalize-live-window)
12803 (window-iso-combination-p, window-iso-combined-p)
12804 (window-iso-combinations)
12805 (walk-window-tree-1, walk-window-tree, walk-window-subtree)
12806 (windows-with-parameter, window-with-parameter)
12807 (window-atom-root, make-window-atom, window-atom-check-1)
12808 (window-atom-check, window-side-check, window-check):
12809 New functions.
12810 (ignore-window-parameters, window-sides, window-sides-vertical)
12811 (window-sides-slots): New variables.
12812 (window-size-fixed): Move down in code. Minor doc-string fix.
12813
12814 2011-06-05 Andreas Schwab <schwab@linux-m68k.org>
12815
12816 * comint.el (comint-dynamic-complete-as-filename)
12817 (comint-dynamic-complete-filename): Correctly call
12818 completion-in-region.
12819
12820 2011-06-05 Deniz Dogan <deniz@dogan.se>
12821
12822 * net/rcirc.el (rcirc-prompt-for-encryption): Fix bug introduced
12823 in last change.
12824
12825 2011-06-05 Deniz Dogan <deniz@dogan.se>
12826
12827 * net/rcirc.el (rcirc-prompt-for-encryption): New function.
12828 (rcirc): Use it to prompt for encryption.
12829
12830 2011-06-05 Roland Winkler <winkler@gnu.org>
12831
12832 * textmodes/bibtex.el (bibtex-search-buffer): New variable.
12833 (bibtex-search-entries): New command bound to C-c C-a.
12834 (bibtex-display-entries): New function.
12835
12836 2011-06-05 Roland Winkler <winkler@gnu.org>
12837
12838 * textmodes/bibtex.el (bibtex-generate-url-list): Fix docstring.
12839 (bibtex-insert-kill): After yanking insert newline if necessary.
12840 (bibtex-initialize): Call bibtex-string-files-init only once.
12841 (bibtex-mode): Do not call easy-menu-add.
12842 (bibtex-validate-globally): Use save-excursion in bibtex buffers.
12843 (bibtex-yank): Set arg properly if nil.
12844
12845 2011-06-05 Roland Winkler <winkler@gnu.org>
12846
12847 * textmodes/bibtex.el (bibtex-search-entry-globally):
12848 New variable.
12849 (bibtex-search-entry): Use it.
12850
12851 2011-06-05 Roland Winkler <winkler@gnu.org>
12852
12853 * textmodes/bibtex.el (bibtex-entry-format): New option
12854 sort-fields.
12855 (bibtex-format-entry, bibtex-reformat): Honor this option.
12856 (bibtex-parse-entry): Return fields in proper order.
12857
12858 2011-06-05 Juanma Barranquero <lekktu@gmail.com>
12859
12860 * doc-view.el (doc-view-remove-if): Move computation of result out
12861 of `dolist' to silence misleading lexical-binding warning.
12862
12863 2011-06-04 Chong Yidong <cyd@stupidchicken.com>
12864
12865 * emacs-lisp/timer.el (timer-activate): Remove unused arg.
12866 (timer-activate, timer-activate-when-idle): Doc fix (Bug#8793).
12867
12868 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
12869
12870 * net/tramp-sh.el (tramp-find-shell): Apply workaround also for
12871 "SunOS 5.10".
12872
12873 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
12874
12875 * net/tramp.el (tramp-set-completion-function, tramp-parse-rhosts)
12876 (tramp-parse-shosts, tramp-parse-sconfig, tramp-parse-shostkeys)
12877 (tramp-parse-hosts, tramp-parse-passwd, tramp-parse-netrc)
12878 (tramp-parse-putty):
12879 * net/tramp-sh.el (tramp-completion-function-alist-rsh)
12880 (tramp-completion-function-alist-ssh)
12881 (tramp-completion-function-alist-telnet)
12882 (tramp-completion-function-alist-su)
12883 (tramp-completion-function-alist-putty): Set `tramp-autoload'
12884 cookie.
12885
12886 * net/tramp-ftp.el:
12887 * net/tramp-sh.el:
12888 * net/tramp-smb.el: Set `tramp-autoload' cookie, and eval after
12889 load "tramp.el" `tramp-set-completion-function'.
12890
12891 2011-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
12892
12893 * shell.el: Require and use pcomplete.
12894 (shell-dynamic-complete-functions): Add pcomplete-completions-at-point.
12895 (shell-completion-vars): Set pcomplete-default-completion-function.
12896
12897 2011-06-04 Deniz Dogan <deniz@dogan.se>
12898
12899 * iswitchb.el (iswitchb-window-buffer-p): Use `member' instead of
12900 `memq' (Bug#8799).
12901
12902 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
12903
12904 * subr.el (make-progress-reporter): Add "..." by default (bug#8785).
12905
12906 2011-06-02 Juanma Barranquero <lekktu@gmail.com>
12907
12908 * bs.el (bs--mark-unmark, bs--nth-wrapper):
12909 * mpc.el (mpc-select-extend, mpc-songpointer-context):
12910 * vc/log-view.el (log-view-beginning-of-defun):
12911 * vc/smerge-mode.el (smerge-apply-resolution-patch)
12912 (smerge-refine-forward, smerge-refine-chopup-region):
12913 Silence warning for unused `dotimes' counter variables.
12914
12915 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
12916
12917 * net/tramp.el (tramp-with-progress-reporter): Rename from
12918 with-progress-reporter. Use `declare'.
12919 * net/tramp-smb.el:
12920 * net/tramp-sh.el:
12921 * net/tramp-gvfs.el: Update all uses.
12922
12923 2011-06-02 Jay Belanger <jay.p.belanger@gmail.com>
12924
12925 * calc/calc.el (calc-kill-stack-buffer): Make sure that the trail
12926 buffer isn't killed before making it current.
12927
12928 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
12929
12930 Silence various byte-compiler warnings.
12931 * emacs-lisp/byte-run.el (make-obsolete-variable): New argument
12932 `access-type' and new obsolescence format.
12933 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): Adjust to
12934 new format.
12935 (byte-compile-check-variable): New `access-type' argument.
12936 Only warn if the access-type is obsolete.
12937 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
12938 (byte-compile-variable-set): Adjust callers.
12939 * help-fns.el (describe-variable): Adjust to new obsolescence format.
12940 * mail/sendmail.el (mail-mailer-swallows-blank-line): Only mark
12941 setting it as obsolete.
12942 * simple.el (minibuffer-completing-symbol):
12943 * font-lock.el (font-lock-beginning-of-syntax-function): Only mark read
12944 access as obsolete.
12945 * minibuffer.el (minibuffer-completing-file-name): Don't make it
12946 obsolete yet.
12947 * international/quail.el (quail-mouse-choose-completion): Remove unused
12948 code referring to obsolete var.
12949 (quail-choose-completion-string): Remove.
12950 * server.el (server-clients-with, server-kill-buffer-query-function)
12951 (server-kill-emacs-query-function): Silence "unused `proc'" warnings.
12952 * proced.el (proced-send-signal):
12953 * emacs-lisp/lisp.el (lisp-complete-symbol):
12954 Replace completion-annotate-function with completion-extra-properties.
12955
12956 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
12957
12958 * simple.el (goto-line): Use read-number.
12959 (overriding-map-is-bound): Remove.
12960 (saved-overriding-map): Change default.
12961 (save&set-overriding-map): Rename from ensure-overriding-map-is-bound;
12962 Take the map as argument.
12963 (universal-argument, negative-argument, digit-argument): Use it.
12964 (restore-overriding-map): Adjust.
12965 (do-auto-fill): Use fill-forward-paragraph.
12966 (keyboard-quit): Don't signal an error when debug-on-quit is non-nil.
12967
12968 * minibuffer.el (minibuffer-inactive-mode-map): New var.
12969 (minibuffer-inactive-mode): New major mode.
12970 * mouse.el (mouse-drag-region): Remove the "mouse-1 pops up
12971 the *Messages* buffer" hack.
12972 (mouse-popup-menubar): Don't burp if the event is a normal key.
12973
12974 Miscellaneous tweaks.
12975 * emacs-lisp/cl-macs.el (dolist, dotimes): Use the same strategy for
12976 lexical scoping as in subr.el's dolist and dotimes.
12977 * emacs-lisp/bytecomp.el (byte-compile-unfold-bcf):
12978 Silence compiler warning.
12979 * thingatpt.el (forward-whitespace): Trivial coding style fix.
12980 * subr.el (with-output-to-temp-buffer): Provide an edebug spec.
12981 * international/ccl.el (ccl-compile): Trivial simplification.
12982 * help-fns.el (help-do-arg-highlight): Silence compiler warning.
12983 * emacs-lisp/testcover.el (testcover-end): Remove spurious
12984 `printflag' argument.
12985 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
12986 Purecopy the whole obsolescence data.
12987
12988 2011-06-01 Leo Liu <sdl.web@gmail.com>
12989
12990 * net/rcirc.el (rcirc-decode-coding-system): Revert last change;
12991 improve doc-string as suggested by Marco Pessotto
12992 <melmothx@gmail.com>.
12993 (rcirc-print): Fix last change.
12994
12995 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
12996
12997 * minibuffer.el (complete-with-action): Return nil for the metadata and
12998 boundaries of non-functional tables.
12999 (completion-table-dynamic): Return nil for the metadata.
13000 (completion-table-with-terminator): Add default case, using
13001 complete-with-action.
13002 (completion--metadata): New function.
13003 (completion-all-sorted-completions, minibuffer-completion-help): Use it
13004 to try and avoid pathological performance problems.
13005 (completion--embedded-envvar-table): Return `category' metadata.
13006
13007 2011-05-31 Lars Magne Ingebrigtsen <larsi@gnus.org>
13008
13009 * subr.el (process-alive-p): New tiny convenience function.
13010
13011 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
13012
13013 * emacs-lisp/debug.el (debug): Save&restore not just the buffer's
13014 content but also its previous major mode.
13015
13016 2011-05-31 Helmut Eller <eller.helmut@gmail.com>
13017
13018 * emacs-lisp/debug.el (debug): Restore the previous content of the
13019 *Backtrace* buffer when we exit with C-M-c.
13020
13021 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
13022
13023 * minibuffer.el: Add metadata method to completion tables.
13024 (completion-category-overrides): New defcustom.
13025 (completion-metadata, completion--field-metadata)
13026 (completion-metadata-get, completion--styles)
13027 (completion--cycle-threshold): New functions.
13028 (completion-try-completion, completion-all-completions):
13029 Add `metadata' argument to choose completion-styles.
13030 (completion--do-completion): Use metadata to choose cycling.
13031 (completion-all-sorted-completions): Use metadata for sorting.
13032 Remove :completion-cycle-penalty which is not needed any more.
13033 (completion--try-word-completion): Add `metadata' argument.
13034 (minibuffer-completion-help): Check metadata for annotation function
13035 and sorting.
13036 (completion-file-name-table): Return `category' metadata.
13037 (minibuffer-completing-file-name): Make obsolete.
13038 * simple.el (minibuffer-completing-symbol): Make obsolete.
13039 * icomplete.el (icomplete-completions): Pass new `metadata' param to
13040 completion-try-completion.
13041
13042 2011-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
13043
13044 * mail/smtpmail.el (smtpmail-send-data): Add progress reporter.
13045
13046 2011-05-30 Leo Liu <sdl.web@gmail.com>
13047
13048 * net/rcirc.el (rcirc-debug-buffer): Use visible buffer name.
13049 (rcirc-print): Decode all incoming messages (bug#8744).
13050 (rcirc-decode-coding-system): Allow value nil for automatic coding
13051 system detection.
13052
13053 2011-06-01 Glenn Morris <rgm@gnu.org>
13054
13055 * mail/emacsbug.el (report-emacs-bug-hook): Mailclient ignores From.
13056
13057 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
13058
13059 * image.el (image-animate-max-time): Allow nil and t values.
13060 Default to nil.
13061 (create-animated-image): Doc fix.
13062 (image-animate-start): Remove second arg; just use
13063 image-animate-max-time.
13064 (image-animate-timeout): Doc fix. Args changed.
13065
13066 * image-mode.el (image-toggle-display-image): Ensure that the
13067 image spec passed to the animate timer is the same object as in
13068 the buffer's display property (Bug#6981).
13069 (image-transform-properties): Doc fix.
13070
13071 * image.el (image-animate-max-time): Default to nil.
13072
13073 2011-05-29 Martin Rudalics <rudalics@gmx.at>
13074
13075 * menu-bar.el (kill-this-buffer-enabled-p): Avoid looping over
13076 entire buffer list (Bug#8184).
13077
13078 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
13079
13080 * image.el (imagemagick-types-inhibit)
13081 (imagemagick-register-types): Doc fix.
13082
13083 2011-05-29 Deniz Dogan <deniz@dogan.se>
13084
13085 * net/rcirc.el (rcirc): Use the user's stored encryption method by
13086 default.
13087
13088 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
13089
13090 * select.el: Don't perform clipboard-manager saving in hooks;
13091 leave the hooks empty.
13092
13093 2011-05-28 Leo Liu <sdl.web@gmail.com>
13094
13095 * replace.el (occur-menu-map, occur-edit-mode-map): New vars.
13096 (occur-mode-map): Bind occur-edit-mode. Use occur-menu-map.
13097 (occur-edit-mode): New major mode (Bug#8463).
13098 (occur-after-change-function): New function.
13099 (occur-engine): Give Occur tags a read-only property.
13100
13101 2011-05-28 Kevin Ryde <user42@zip.com.au>
13102
13103 * subr.el (def-edebug-spec): Doc fix (Bug#8430).
13104
13105 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
13106
13107 * bindings.el (help-echo): Make the initial non-indicator dash
13108 empty on graphical terminals (Bug#7295).
13109
13110 * files.el (auto-mode-alist): Move config rule after the
13111 in-stripping one (Bug#8547).
13112
13113 * newcomment.el (comment-end-skip): Doc fix (Bug#8659).
13114
13115 * startup.el (normal-splash-screen): Remove gratuitous mode-line
13116 setting (Bug#8740).
13117
13118 2011-05-28 Alp Aker <aker@pitt.edu> (tiny change)
13119
13120 * buff-menu.el (Buffer-menu-revert-function, Buffer-menu-sort)
13121 (Buffer-menu-buffer+size): Use Buffer-menu-buffer-column
13122 (Bug#8539).
13123
13124 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
13125
13126 * emacs-lisp/re-builder.el (re-builder): Improve doc (Bug#8286).
13127
13128 2011-05-28 Dima Kogan <dkogan@cds.caltech.edu> (tiny change)
13129
13130 * progmodes/hideshow.el (hs-looking-at-block-start-p): New fun.
13131 (hs-hide-block-at-point, hs-find-block-beginning)
13132 (hs-already-hidden-p, hs-hide-block, hs-show-block): Use it
13133 (Bug#8279).
13134
13135 2011-05-28 Glenn Morris <rgm@gnu.org>
13136
13137 * startup.el (fancy-about-screen): Use standard mode line. (Bug#8740)
13138
13139 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
13140
13141 * help-fns.el (describe-function-1): If the function is a derived
13142 major mode, print the parent mode.
13143
13144 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode, java-mode)
13145 (idl-mode, pike-mode, awk-mode): Inherit from prog-mode.
13146
13147 2011-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
13148
13149 * minibuffer.el (completion--capf-wrapper): Check applicability before
13150 returning non-nil for non-exclusive completion data.
13151 * progmodes/etags.el (tags-completion-at-point-function):
13152 * info-look.el (info-lookup-completions-at-point): Mark as
13153 non-exclusive.
13154 (info-complete): Adjust accordingly.
13155
13156 * info-look.el: Convert to lexical-binding and completion-at-point.
13157 (info-lookup-completions-at-point): New function.
13158 (info-complete): Use it and completion-in-region.
13159
13160 2011-05-28 Drew Adams <drew.adams@oracle.com>
13161
13162 * isearch.el: Let M-e start with point at the first mismatched char.
13163 (isearch-fail-pos): New function.
13164 (isearch-edit-string): Use it.
13165
13166 2011-05-28 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
13167
13168 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
13169
13170 2011-05-27 Toby Cubitt <toby-predictive@dr-qubit.org>
13171
13172 * emacs-lisp/avl-tree.el: New avl-tree-stack datatype. Add new
13173 traversal functions for avl-trees.
13174 (avl-tree--stack): New struct.
13175 (avl-tree-stack-p, avl-tree--stack-repopulate): New funs.
13176 (avl-tree-enter): Add optional `updatefun' arg.
13177 (avl-tree--do-enter): Add optional `updatefun' arg.
13178 Change return value.
13179 (avl-tree-delete): Add optional `test' and `nilflag' args.
13180 (avl-tree--do-delete): Add `test' and `nilflag' args.
13181 Change return value.
13182 (avl-tree-member): Add optional `nilflag'
13183 (avl-tree-member-p): New function.
13184 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar): New functions.
13185 (avl-tree-stack, avl-tree-stack-pop, avl-tree-stack-first)
13186 (avl-tree-stack-empty-p): New functions.
13187
13188 * emacs-lisp/avl-tree.el (avl-tree--del-balance): Rename from
13189 avl-tree--del-balance1 and make it work both ways.
13190 (avl-tree--del-balance2): Remove.
13191 (avl-tree--enter-balance): Rename from avl-tree--enter-balance1 and
13192 make it work both ways.
13193 (avl-tree--enter-balance2): Remove.
13194 (avl-tree--switch-dir, avl-tree--dir-to-sign, avl-tree--sign-to-dir):
13195 New macros.
13196 (avl-tree--mapc, avl-tree-map): Add direction argument.
13197
13198 2011-05-27 David Michael <fedora.dm0@gmail.com> (tiny change)
13199
13200 * files.el (interpreter-mode-alist): Add rbash (bug#8745).
13201
13202 2011-05-27 Chong Yidong <cyd@stupidchicken.com>
13203
13204 * select.el: Support clipboard managers with built-in function
13205 x-clipboard-manager-save, via delete-frame-functions and
13206 kill-emacs-hook.
13207 (xselect-convert-to-targets): Add MULTIPLE target to list.
13208 (xselect-convert-to-save-targets): New function.
13209
13210 2011-05-27 Kenichi Handa <handa@m17n.org>
13211
13212 * mail/sendmail.el (mail-encode-header): Avoid double encoding by
13213 let-binding rfc2047-encode-encoded-words to nil.
13214
13215 2011-05-27 Glenn Morris <rgm@gnu.org>
13216
13217 * mail/emacsbug.el: Don't require url-util.
13218
13219 * shell.el (shell-directory-tracker): Case matters. (Bug#8735)
13220
13221 * files.el (set-auto-mode):
13222 Also respect mode: entries at the end of the file. (Bug#8586)
13223
13224 2011-05-26 Glenn Morris <rgm@gnu.org>
13225
13226 * files.el (hack-local-variables-prop-line, hack-local-variables):
13227 Downcase mode names, as seems to be traditional.
13228 (hack-local-variables, hack-local-variables-apply): Doc fixes.
13229
13230 * mail/emacsbug.el (report-emacs-bug): Mention checking From address.
13231 (report-emacs-bug-hook): Try to validate the From address. (Bug#8038)
13232
13233 2011-05-25 Julien Danjou <julien@danjou.info>
13234
13235 * textmodes/rst.el (rst-define-level-faces): Do not define face
13236 symbol if it is already defined.
13237
13238 2011-05-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
13239
13240 * play/5x5.el (5x5-new-game, 5x5-randomize):
13241 Reset 5x5-solver-output to nil when a new grid is cast.
13242 (5x5-log-init, 5x5-log): Use defsubst instead of defmacro to shunt
13243 these debugging traces, as defmacro breaks the compiled code.
13244
13245 2011-05-24 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
13246
13247 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
13248
13249 2011-05-24 Leo Liu <sdl.web@gmail.com>
13250
13251 * vc/vc-bzr.el (vc-bzr-sha1-program): Rename from sha1-program.
13252 (vc-bzr-sha1): Adapt.
13253
13254 * sha1.el: Remove. Function `sha1' is now builtin.
13255
13256 * bindings.el: Provide sha1 feature.
13257
13258 2011-05-24 Kenichi Handa <handa@m17n.org>
13259
13260 * mail/sendmail.el: Require `rfc2047'.
13261 (mail-insert-from-field): Do not perform RFC2047 encoding.
13262 (mail-encode-header): New function.
13263 (sendmail-send-it): Set buffer-file-coding-system of the work
13264 buffer to the return value of select-message-coding-system.
13265 Call mail-encode-header.
13266
13267 * mail/smtpmail.el (smtpmail-send-it): Call mail-encode-header.
13268
13269 2011-05-24 Sean Neakums <sneakums@zork.net> (tiny change)
13270
13271 * mail/supercite.el (sc-default-cite-frame):
13272 Handle sc-nested-citation-p when sc-cite-blank-lines-p is non-nil.
13273
13274 2011-05-24 Glenn Morris <rgm@gnu.org>
13275
13276 * progmodes/python.el (brm-menu): Declare.
13277
13278 * emulation/viper.el (viper-set-hooks): Declare.
13279
13280 * play/5x5.el (5x5-log-init, 5x5-log): Evaluate when compiling.
13281 (5x5-log-init, 5x5-log, 5x5-solver): Doc fixes.
13282 (math-map-vec, math-sub, math-mul, math-make-intv, math-reduce-vec)
13283 (math-format-number, math-pow, calcFunc-arrange, calcFunc-cvec)
13284 (calcFunc-diag, calcFunc-trn, calcFunc-inv, calcFunc-mrow)
13285 (calcFunc-mcol, calcFunc-vconcat, calcFunc-index): Declare.
13286
13287 2011-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
13288
13289 Add an :exit-function for completion-at-point.
13290
13291 * minibuffer.el (completion--done): New fun.
13292 (completion--do-completion): Use it. New arg `expect-exact'.
13293 (minibuffer-complete, minibuffer-complete-word): Don't output message,
13294 since completion--do-completion does it for us now.
13295 (minibuffer-force-complete): Use completion--done and
13296 completion--replace. Handle sole-completion case with more care.
13297 (minibuffer-complete-and-exit): Use new `expect-exact' arg.
13298 (completion-extra-properties): New var.
13299 (completion-annotate-function): Make obsolete.
13300 (minibuffer-completion-help): Adjust accordingly.
13301 Use completion-list-insert-choice-function.
13302 (completion-at-point, completion-help-at-point):
13303 Bind completion-extra-properties.
13304 (completion-pcm-word-delimiters): Add | (for uniquify, for example).
13305 * simple.el (completion-list-insert-choice-function): New var.
13306 (completion-setup-function): Preserve it.
13307 (choose-completion): Pay attention to it, shuffle the code a bit.
13308 (choose-completion-string): New arg `insert-function'.
13309
13310 * textmodes/bibtex.el: Convert to lexical binding.
13311 (bibtex-mode-map): Use completion-at-point.
13312 (bibtex-mode): Use define-derived-mode&completion-at-point-functions.
13313 (bibtex-completion-at-point-function): New fun, from bibtex-complete.
13314 (bibtex-complete): Define as obsolete alias.
13315 (bibtex-complete-internal): Remove.
13316 (bibtex-format-entry): Remove unused sub-group in regexp.
13317 * shell.el (shell--command-completion-data)
13318 (shell-environment-variable-completion):
13319 * pcomplete.el (pcomplete-completions-at-point):
13320 * comint.el (comint--complete-file-name-data): Use :exit-function
13321 instead of completion-table-with-terminator so it also works for
13322 choose-completion.
13323
13324 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
13325
13326 * <lots-of-files>.el: Don't quote lambda expressions with `quote'.
13327
13328 * vc/smerge-mode.el (smerge-refine-subst): Don't deactivate the mark
13329 (bug#8710).
13330
13331 * emacs-lisp/lisp.el (up-list): Fix forward movement (bug#8708).
13332
13333 2011-05-23 Ken Manheimer <ken.manheimer@gmail.com>
13334
13335 * allout.el (allout-inhibit-auto-fill-on-headline): Create new
13336 customization variable and implement: If non-nil, auto-fill will
13337 be inhibited while on topic's header line.
13338
13339 2011-05-23 Vincent Belaïche <vincentb1@users.sourceforge.net>
13340
13341 * play/5x5.el: I/ Add an arithmetic solver to suggest positions to
13342 click on. II/ Make 5x5 multisession. III/ Ensure that random grids
13343 always have a solution in grid size = 5 cases.
13344 (5x5-mode-map): Add keybinding to function `5x5-solve-suggest'.
13345 (5x5-solver-output, 5x5-log-buffer): New vars.
13346 (5x5-grid, 5x5-x-pos, 5x5-y-pos, 5x5-moves, 5x5-cracking):
13347 Make these variables buffer local to achieve 5x5 multi-session-ness.
13348 (5x5): Set 5x5-grid-size only if SIZE is non-negative.
13349 (5x5-grid-to-vec, 5x5-vec-to-grid, 5x5-log-init, 5x5-log, 5x5-solver)
13350 (5x5-solve-suggest): New funs.
13351 (5x5-randomize): Use 5x5-make-move instead of 5x5-flip-cell to
13352 randomize a grid so that we ensure that there is always a solution.
13353 (5x5-make-random-grid): Allow other movement than flipping.
13354
13355 2011-05-23 Kevin Ryde <user42@zip.com.au>
13356
13357 * emacs-lisp/advice.el (ad-read-advised-function):
13358 Use `function-called-at-point' as the default, if it has
13359 advice and passes PREDICATE.
13360
13361 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
13362
13363 * emacs-lisp/bytecomp.el (byte-compile-function-form): Only call
13364 byte-compile-lambda if it's actually a lambda.
13365
13366 * emacs-lisp/eieio.el (eieio-defgeneric-form-primary-only-one):
13367 Fix function quoting. Use backquote better.
13368
13369 2011-05-22 Yuanle Song <sylecn@gmail.com>
13370
13371 * nxml/rng-xsd.el (rng-xsd-check-pattern): Use case-sensitive
13372 matching (Bug#8516).
13373
13374 2011-01-22 Jari Aalto <jari.aalto@cante.net>
13375
13376 * vc/vc-dir.el (vc-default-dir-printer): Give edited tag a
13377 different face (Bug#8178).
13378
13379 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
13380
13381 * vc/diff-mode.el (diff-changed): Don't use terminal specs for
13382 defface (Bug#8144).
13383
13384 2011-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
13385
13386 * emacs-lisp/macroexp.el (macroexpand-all-1): Convert ' to #' for
13387 funcall as well (bug#8712). Warn when performing those conversions.
13388 * emacs-lisp/bytecomp.el (byte-compile-form): Fix error report.
13389
13390 * progmodes/grep.el (grep-mode): Fix it for good (bug#8684)!
13391
13392 2011-05-22 Glenn Morris <rgm@gnu.org>
13393
13394 * files.el (hack-local-variables-prop-line): Small simplifications.
13395 (hack-local-variables, hack-local-variables-prop-line):
13396 If MODE-ONLY, return the mode, rather than just `t'.
13397
13398 2011-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
13399
13400 * progmodes/grep.el (grep-mode): Fix last change (bug#8684).
13401
13402 2011-05-21 Glenn Morris <rgm@gnu.org>
13403
13404 * files.el (hack-local-variables-prop-line, hack-local-variables):
13405 If only interested in the mode, don't bother doing the other stuff.
13406
13407 * image-mode.el (image-after-revert-hook):
13408 Redraw all frames on which the image is visible. (Bug#8567)
13409
13410 * dired-aux.el (dired-touch-initial): Just use current-time. (Bug#6887)
13411
13412 * wid-edit.el (widget-checklist-match-inline):
13413 Fix 2011-04-19 change. (Bug#8649)
13414
13415 2011-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
13416
13417 * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
13418 Also allow singlespace after single-letter capitals followed by a dot.
13419
13420 * nxml/nxml-mode.el (nxml-electric-slash): Reindent when completion is
13421 enabled. Suggested by James Ahlborn <jahlborn@gmail.com> (bug#8704).
13422
13423 2011-05-20 Nix <nix@esperi.org.uk>
13424
13425 * files.el (basic-save-buffer-2):
13426 Fix handling of break-hardlink-on-save with non-existent files.
13427
13428 2011-05-19 Deniz Dogan <deniz@dogan.se>
13429
13430 * net/rcirc.el (rcirc-mode): Initialize rcirc-urls to nil.
13431 (rcirc-markup-urls): Check if rcirc-url-regexp is nil.
13432
13433 2011-05-19 Glenn Morris <rgm@gnu.org>
13434
13435 * progmodes/f90.el (f90-type-def-re):
13436 Handle "type, bind(c)". (Bug#8691)
13437
13438 * emacs-lisp/autoload.el (batch-update-autoloads):
13439 Set autoload-excludes by parsing loadup.el rather than Makefiles.
13440
13441 2011-05-18 Michael Albinus <michael.albinus@gmx.de>
13442
13443 * net/tramp.el (tramp-process-actions): Set "first-password-request"
13444 property for the correct connection in case of multihops.
13445
13446 2011-05-18 Glenn Morris <rgm@gnu.org>
13447
13448 * emacs-lisp/authors.el (authors-fixed-entries): Remove fakemail.c.
13449 * mail/sendmail.el (sendmail-program): Fall back to just "sendmail".
13450
13451 Rationalize calendar handling of day and month abbrev-arrays.
13452 * calendar/calendar.el (calendar-customized-p): New function.
13453 (calendar-abbrev-construct, calendar-make-alist): Change what it does.
13454 (calendar-day-name-array, calendar-month-name-array): Doc fix.
13455 Add :set function.
13456 (calendar-abbrev-length, calendar-day-abbrev-array)
13457 (calendar-month-abbrev-array): Make defcustoms, with appropriate :set.
13458 (calendar-day-abbrev-array, calendar-month-abbrev-array):
13459 Elements may no longer be nil.
13460 (calendar-day-name, calendar-month-name):
13461 Update for changed nature of abbrev arrays.
13462 * calendar/diary-lib.el (diary-name-pattern):
13463 Update for changed nature of abbrev arrays.
13464 (diary-mark-entries-1): Update calendar-make-alist calls.
13465 (diary-font-lock-date-forms): Doc fix for changed abbrev arrays.
13466 * calendar/cal-html.el (cal-html-day-abbrev-array):
13467 Simply inherit from calendar-day-abbrev-array.
13468
13469 2011-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
13470
13471 * progmodes/grep.el (grep-mode): Disable default
13472 compilation-directory-matcher setting (bug#8684).
13473
13474 2011-05-17 Michael Albinus <michael.albinus@gmx.de>
13475
13476 * net/tramp.el (tramp-handle-insert-file-contents): Use "dd"
13477 instead of "head" and "tail". There were problems with SunOS 5.9,
13478 and it performs better.
13479
13480 2011-05-17 Glenn Morris <rgm@gnu.org>
13481
13482 * mail/mail-utils.el (mail-dont-reply-to): Silence compiler.
13483
13484 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
13485 Replace obsolete function.
13486
13487 * shell.el (pcomplete-parse-arguments-function): Declare.
13488
13489 * calendar/appt.el (appt-message-warning-time, appt-display-mode-line)
13490 (appt-display-diary, appt-display-interval, appt-prev-comp-time)
13491 (appt-check): Doc fixes.
13492 (appt-disp-window-function, appt-delete-window-function):
13493 Remove needless special case in custom :type.
13494 (appt-display-count): Default to 0, not nil.
13495 (appt-check): Reset appt-display-count to 0, not nil.
13496
13497 2011-05-17 Juanma Barranquero <lekktu@gmail.com>
13498
13499 * progmodes/python.el (python-font-lock-keywords):
13500 Add the Python 3.X keyword "nonlocal" (bug#8639).
13501
13502 2011-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
13503
13504 * emacs-lisp/eieio.el (defmethod): Fix quoting of code (bug#8677).
13505
13506 2011-05-16 Kevin Ryde <user42@zip.com.au>
13507
13508 * info-look.el (makefile-automake-mode): New setups, looking in
13509 automake manual, then makefile-mode.
13510 (makefile-mode): Remove automake manual, have it just in
13511 makefile-automake-mode since there's various things different or
13512 not relevant to plain make.
13513 (makefile-mode): Remove "other-modes" non-existent automake-mode,
13514 believe a hypothetical automake-mode would go to makefile-mode,
13515 not the other way around.
13516
13517 2011-05-15 Chong Yidong <cyd@stupidchicken.com>
13518
13519 * vc/diff-mode.el (diff-fixup-modifs): Locate correct position for
13520 hunk-end tags (Bug#8672).
13521
13522 * vc/vc-annotate.el (vc-annotate-mode-map): Bind = to
13523 vc-annotate-show-diff-revision-at-line (Bug#8671).
13524
13525 2011-05-14 Glenn Morris <rgm@gnu.org>
13526
13527 * vc/add-log.el (add-change-log-entry): Don't start adding a new entry
13528 in the middle of an existing one with multiple authors. (Bug#8645)
13529 (change-log-font-lock-keywords): Also handle multiple author lines
13530 with leading tabs. (Bug#8644)
13531
13532 * calendar/appt.el (appt-check): Rename some local variables.
13533 Some simplification/reordering.
13534
13535 * mail/feedmail.el (feedmail-confirm-outgoing-timeout)
13536 (feedmail-sendmail-f-doesnt-sell-me-out)
13537 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
13538 (feedmail-debug-sit-for, feedmail-queue-express-hook)
13539 (feedmail-queue-runner-message-sender): Set :version.
13540 (bbdb-search, bbdb-records, smtp-via-smtp, smtp-server)
13541 (bbdb-dwim-net-address, vm-mail): Declare.
13542 (feedmail-binmail-gnulinuxish-template):
13543 Rename from feedmail-binmail-linuxish-template.
13544 (feedmail-buffer-to-smtp, feedmail-vm-mail-mode):
13545 Use insert-buffer-substring.
13546
13547 2011-05-14 Bill Carpenter <bill@carpenter.org>
13548
13549 * mail/feedmail.el (feedmail-patch-level): Increase.
13550 (feedmail-debug): New custom group.
13551 (feedmail-confirm-outgoing-timeout)
13552 (feedmail-sendmail-f-doesnt-sell-me-out)
13553 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
13554 (feedmail-debug-sit-for, feedmail-queue-express-hook): New options.
13555 (feedmail-sender-line, feedmail-from-line)
13556 (feedmail-fiddle-headers-upwardly, feedmail-enable-spray)
13557 (feedmail-spray-this-address)
13558 (feedmail-spray-address-fiddle-plex-list)
13559 (feedmail-queue-use-send-time-for-date)
13560 (feedmail-queue-use-send-time-for-message-id)
13561 (feedmail-last-chance-hook, feedmail-queue-runner-mode-setter)
13562 (feedmail-buffer-eating-function):
13563 Doc fixes.
13564 (feedmail-spray-via-bbdb, feedmail-buffer-to-smtp)
13565 (feedmail-vm-mail-mode, feedmail-message-action-scroll-up)
13566 (feedmail-message-action-scroll-down): New functions.
13567 (feedmail-queue-directory, feedmail-queue-draft-directory):
13568 Use expand-file-name.
13569 (feedmail-prompt-before-queue-standard-alist): Add scroll entries.
13570 Remove C-v help entry.
13571 (feedmail-queue-buffer-file-name): New variable.
13572 (feedmail-mail-send-hook-splitter, feedmail-buffer-to-binmail)
13573 (feedmail-buffer-to-smtpmail, feedmail-queue-express-to-draft)
13574 (feedmail-message-action-send-strong, feedmail-message-action-edit)
13575 (feedmail-message-action-draft, feedmail-message-action-draft-strong)
13576 (feedmail-message-action-queue, feedmail-message-action-queue-strong)
13577 (feedmail-message-action-toggle-spray)
13578 (feedmail-run-the-queue-no-prompts)
13579 (feedmail-run-the-queue-global-prompt, feedmail-queue-reminder)
13580 (feedmail-look-at-queue-directory, feedmail-queue-subject-slug-maker)
13581 (feedmail-create-queue-filename, feedmail-rfc822-time-zone):
13582 (feedmail-fiddle-header, feedmail-give-it-to-buffer-eater)
13583 (feedmail-envelope-deducer, feedmail-fiddle-from)
13584 (feedmail-fiddle-sender, feedmail-default-date-generator)
13585 (feedmail-fiddle-date, feedmail-fiddle-message-id)
13586 (feedmail-fiddle-spray-address)
13587 (feedmail-fiddle-list-of-spray-fiddle-plexes)
13588 (feedmail-fiddle-list-of-fiddle-plexes)
13589 (feedmail-fill-to-cc-function, feedmail-fill-this-one)
13590 (feedmail-one-last-look, feedmail-fqm-p): Add debug calls.
13591 (feedmail-queue-runner-message-sender, feedmail-binmail-template):
13592 Change default. Doc fix.
13593 (feedmail-queue-runner-cleaner-upper): Use feedmail-say-chatter.
13594 (feedmail-binmail-linuxish-template): New constant.
13595 (feedmail-buffer-to-sendmail): Doc fix. Add debug call.
13596 Respect feedmail-sendmail-f-doesnt-sell-me-out.
13597 (feedmail-send-it): Add debug call.
13598 Use feedmail-queue-buffer-file-name, and
13599 feedmail-send-it-immediately-wrapper.
13600 (feedmail-message-action-send): Add debug call.
13601 Use feedmail-send-it-immediately-wrapper.
13602 (feedmail-queue-express-to-queue): Add debug call.
13603 Run feedmail-queue-express-hook.
13604 (feedmail-message-action-help): Add debug call. Use feedmail-p-h-b-n.
13605 (feedmail-message-action-help-blat):
13606 Rename from feedmail-queue-send-edit-prompt-help-first.
13607 (feedmail-run-the-queue): Add debug call. Set buffer-file-type.
13608 Check line-endings. Handle errors better.
13609 (feedmail-queue-reminder-brief, feedmail-queue-reminder-medium):
13610 Doc fix. Add debug call.
13611 (feedmail-queue-send-edit-prompt): Doc fix. Add debug call.
13612 Use feedmail-queue-send-edit-prompt-inner.
13613 (feedmail-queue-runner-prompt, feedmail-scroll-buffer): New functions.
13614 (feedmail-queue-send-edit-prompt-inner): New function, extracted
13615 from feedmail-queue-send-edit-prompt.
13616 (feedmail-queue-send-edit-prompt-help)
13617 (feedmail-queue-send-edit-prompt-help-later): Remove functions.
13618 (feedmail-tidy-up-slug): Add debug call.
13619 Respect feedmail-queue-slug-suspect-regexp.
13620 (feedmail-queue-subject-slug-maker): Use buffer-substring-no-properties.
13621 (feedmail-dump-message-to-queue): Add debug call.
13622 Expand queue-directory.
13623 (feedmail-dump-message-to-queue): Change message slightly.
13624 Use feedmail-say-chatter.
13625 (feedmail-rfc822-date): Add debug call. Bind system-time-locale.
13626 (feedmail-send-it-immediately-wrapper): New function.
13627 (feedmail-send-it-immediately): Add debug calls. Use let not let*.
13628 Insert empty string rather than newline. Handle full-frame case.
13629 Use catch/throw. Use feedmail-say-chatter.
13630 (feedmail-fiddle-from): Try mail-host-address.
13631 (feedmail-default-message-id-generator): Doc fix.
13632 Bind system-time-locale. Handle missing end.
13633 (feedmail-fiddle-x-mailer): Add debug call.
13634 Handle feedmail-x-mailer-line being nil.
13635 (feedmail-accume-n-nuke-header, feedmail-deduce-address-list):
13636 Add debug call. Use buffer-substring-no-properties.
13637 (feedmail-say-debug, feedmail-say-chatter): New functions.
13638 (feedmail-find-eoh): Give an explicit error.
13639
13640 2011-05-13 Ulf Jasper <ulf.jasper@web.de>
13641
13642 * net/newst-treeview.el (newsticker-treeview-face): Change default
13643 family from helvetica to sans.
13644 (newsticker-treeview-tool-bar-map): Move tool-bar icons to
13645 etc/images/newsticker.
13646
13647 * net/newst-reader.el (newsticker-feed-face): Change default
13648 family from helvetica to sans.
13649
13650 * net/newst-plainview.el (newsticker-new-item-face)
13651 (newsticker-old-item-face, newsticker-immortal-item-face)
13652 (newsticker-obsolete-item-face, newsticker-date-face)
13653 (newsticker-statistics-face): Change default family from
13654 helvetica to sans.
13655 (newsticker--plainview-tool-bar-map): Move tool-bar icons to
13656 etc/images/newsticker.
13657
13658 * net/newst-backend.el (newsticker--do-run-auto-mark-filter)
13659 (newsticker--process-auto-mark-filter-match): Tell user about
13660 auto-marking.
13661
13662 2011-05-13 Didier Verna <didier@xemacs.org>
13663
13664 Common Lisp indentation improvements on defmethod and lambda-lists.
13665 * emacs-lisp/cl-indent.el: Advertise the changes and remove obsolete
13666 TODO entries.
13667 (lisp-lambda-list-keyword-parameter-indentation)
13668 (lisp-lambda-list-keyword-parameter-alignment)
13669 (lisp-lambda-list-keyword-alignment): New customizable user options.
13670 (lisp-indent-defun-method): Improve docstring.
13671 (extended-loop-p): Fix comment.
13672 (lisp-indent-lambda-list-keywords-regexp): New variable.
13673 (lisp-indent-lambda-list): New function.
13674 (lisp-indent-259): Use it.
13675 (lisp-indent-defmethod): Support for more than one
13676 method qualifier and properly indent methods lambda-lists.
13677 (defgeneric): Provide a missing common-lisp-indent-function property.
13678
13679 2011-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
13680
13681 * thingatpt.el (bounds-of-thing-at-point): Return nil rather than
13682 bounds for the empty string (bug#8667).
13683
13684 2011-05-13 Glenn Morris <rgm@gnu.org>
13685
13686 * mail/feedmail.el (feedmail-buffer-to-sendmail): Require sendmail.
13687
13688 * mail/sendmail.el (sendmail-program): Try executable-find first.
13689 (sendmail-send-it): `sendmail-program' cannot be unbound.
13690
13691 * calendar/appt.el (appt-make-list): Simplify.
13692 (appt-time-msg-list): Doc fix.
13693 (appt-check): Change mode-line message at the time of the appointment.
13694
13695 2011-05-12 Andreas Schwab <schwab@linux-m68k.org>
13696
13697 * progmodes/ld-script.el (ld-script-keywords)
13698 (ld-script-builtins): Update keywords list.
13699
13700 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
13701
13702 * progmodes/grep.el (grep-filter): Don't trip on partial lines.
13703
13704 * shell.el (shell-completion-vars): New function.
13705 (shell-mode):
13706 * simple.el (read-shell-command): Use it.
13707 (blink-matching-open): No need for " [...]" in minibuffer-message.
13708
13709 2011-05-12 Glenn Morris <rgm@gnu.org>
13710
13711 * calendar/appt.el (appt-now-displayed): Remove pointless variable.
13712 (appt-check): Simplify.
13713
13714 2011-05-12 Eli Zaretskii <eliz@gnu.org>
13715
13716 * vc/smerge-mode.el (smerge-resolve): Use null-device rather than a
13717 literal "/dev/null".
13718
13719 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
13720
13721 * emacs-lisp/lisp.el (lisp-complete-symbol, lisp-completion-at-point):
13722 Fix typo.
13723
13724 2011-05-12 Ralph Schleicher <rs@ralph-schleicher.de>
13725
13726 * progmodes/which-func.el (which-function):
13727 Use add-log-current-defun instead of add-log-current-defun-function,
13728 which might not be defined (Bug#8260).
13729
13730 2011-05-12 Glenn Morris <rgm@gnu.org>
13731
13732 * emacs-lisp/bytecomp.el (byte-compile-file-form-defmumble):
13733 Let byte-compile-initial-macro-environment always take precedence.
13734
13735 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
13736
13737 * net/rcirc.el: Add support for SSL/TLS connections.
13738 (rcirc-server-alist): New field `encryption'.
13739 (rcirc): Check `encryption' settings.
13740 (rcirc-connect): New arg `encryption'. Use open-network-stream.
13741 Merge make-local-variable into `set'.
13742 (rcirc--connection-open-p): New function.
13743 (rcirc-send-string, rcirc-clean-up-buffer): Use it to handle case where
13744 the process is not a network process (e.g. running gnutls-cli).
13745 (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
13746 Make rcirc-(en|de)code-coding-system local here.
13747 (rcirc-mode): Merge make-local-variable into `set'.
13748 (rcirc-parent-buffer): Make permanent buffer-local.
13749 (rcirc-multiline-minor-mode): Don't do it here.
13750 (rcirc-switch-to-server-buffer): Don't switch to a random buffer if
13751 there's no server buffer.
13752
13753 2011-05-11 Glenn Morris <rgm@gnu.org>
13754
13755 * newcomment.el (comment-kill): Prefix "unused" local.
13756
13757 * term/w32console.el (get-screen-color): Declare.
13758
13759 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
13760 Handle symbol elements of byte-compile-initial-macro-environment.
13761
13762 2011-05-10 Leo Liu <sdl.web@gmail.com>
13763
13764 * bookmark.el (bookmark-bmenu-mode-map):
13765 Bind bookmark-bmenu-search to `/'.
13766
13767 * mail/footnote.el: Convert to utf-8 encoding.
13768 (footnote-unicode-string, footnote-unicode-regexp): New variable.
13769 (Footnote-unicode): New function.
13770 (footnote-style-alist): Add unicode style to the list.
13771 (footnote-style): Doc fix.
13772
13773 2011-05-10 Jim Meyering <meyering@redhat.com>
13774
13775 Fix doubled-word typos.
13776 * international/quail.el (quail-insert-kbd-layout): and and -> and
13777 * kermit.el: and and -> and
13778 * net/ldap.el (ldap-search-internal): to to -> to
13779 * progmodes/vhdl-mode.el (vhdl-offsets-alist): Likewise.
13780 * progmodes/js.el (js-mode): and and -> and
13781 * textmodes/artist.el (artist-move-to-xy): at at -> at
13782 (artist-draw-region-trim-line-endings): if if -> if
13783 And Safetyc -> Safety.
13784 * textmodes/reftex-dcr.el (reftex-view-crossref): at at -> at a
13785
13786 2011-05-10 Glenn Morris <rgm@gnu.org>
13787 Stefan Monnier <monnier@iro.umontreal.ca>
13788
13789 * files.el (hack-one-local-variable-eval-safep):
13790 Consider "eval: (foo-mode)" to be safe. (Bug#8613)
13791
13792 2011-05-10 Glenn Morris <rgm@gnu.org>
13793
13794 * calendar/diary-lib.el (diary-list-entries-hook)
13795 (diary-mark-entries-hook, diary-nongregorian-listing-hook)
13796 (diary-nongregorian-marking-hook, diary-list-entries)
13797 (diary-include-other-diary-files, diary-mark-entries)
13798 (diary-mark-included-diary-files): Doc fixes.
13799
13800 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
13801
13802 * misc.el: Require tabulated-list.el during compilation.
13803
13804 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
13805
13806 * progmodes/compile.el (compilation-start):
13807 Run compilation-filter-hook for the async case too.
13808 (compilation-filter-hook): Doc fix.
13809
13810 2011-05-09 Deniz Dogan <deniz@dogan.se>
13811
13812 * wdired.el: Remove outdated installation comment. Fix usage
13813 comment.
13814
13815 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
13816
13817 * misc.el: Implement new command `list-dynamic-libraries'.
13818 (list-dynamic-libraries--loaded-only-p): New variable.
13819 (list-dynamic-libraries--refresh): New function.
13820 (list-dynamic-libraries): New command.
13821
13822 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
13823
13824 * progmodes/compile.el (compilation-error-regexp-alist-alist):
13825 Fix the ant regexp to handle end-line and end-column info from jikes.
13826 Re-introduce maven regexp. Give the ruby-Test::Unit regexp a
13827 higher priority to avoid clobbering by gnu.
13828
13829 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
13830
13831 * cus-face.el (custom-declare-face): Call custom-theme-recalc-face
13832 if the face has existing theme settings (Bug#8454).
13833
13834 2011-05-08 Ralph Schleicher <rs@ralph-schleicher.de>
13835
13836 * progmodes/perl-mode.el (perl-imenu-generic-expression):
13837 Only match variables declared via `my' or `our' (Bug#8261).
13838
13839 * net/browse-url.el (browse-url-of-dired-file): Allow browsing of
13840 special file names `.' and `..' (Bug#8259).
13841
13842 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
13843
13844 * progmodes/grep.el (grep-mode-font-lock-keywords):
13845 Remove buffer-changing entries.
13846 (grep-filter): New function.
13847 (grep-mode): Add it to compilation-filter-hook.
13848
13849 * progmodes/compile.el (compilation-filter-hook)
13850 (compilation-filter-start): New defvars.
13851 (compilation-filter): Call compilation-filter-hook prior to
13852 updating the process mark.
13853
13854 2011-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
13855
13856 * emacs-lisp/eieio.el (defmethod): Fix typo in last change.
13857
13858 2011-05-07 Eli Zaretskii <eliz@gnu.org>
13859
13860 * mail/sendmail.el (send-mail-function): On MS-Windows, default to
13861 mailclient-send-it even if window-system is nil. (Bug#8595)
13862
13863 * term/w32console.el (terminal-init-w32console):
13864 Call get-screen-color and use its output to set the frame
13865 background-mode. (Bug#8597)
13866
13867 2011-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
13868
13869 Make bytecomp.el understand that defmethod defines funs (bug#8631).
13870 * emacs-lisp/eieio.el (eieio--defalias, eieio--defgeneric-init-form):
13871 New functions.
13872 (defgeneric, eieio--defmethod): Use them.
13873 (eieio-defgeneric): Remove.
13874 (defmethod): Call defgeneric in a way visible to the byte-compiler.
13875
13876 2011-05-07 Glenn Morris <rgm@gnu.org>
13877
13878 * calendar/timeclock.el (timeclock-log-data): Remove unused local.
13879 Use let rather than let*.
13880 (timeclock-find-discrep): Remove unused local.
13881
13882 * calendar/diary-lib.el (diary-comment-start): Doc fix.
13883
13884 * calendar/appt.el (appt-time-msg-list): Doc fix.
13885
13886 2011-05-06 Noah Friedman <friedman@splode.com>
13887
13888 * apropos.el (apropos-print-doc): Only use
13889 emacs-lisp-docstring-fill-column when it is bound to an integer,
13890 per that variable's documentation.
13891
13892 2011-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
13893
13894 * lpr.el (print-region-1): Echo lpr-program's output, so error messages
13895 and warnings are not silently discarded (e.g. use -d instead of -P).
13896
13897 2011-05-06 Glenn Morris <rgm@gnu.org>
13898
13899 * calendar/appt.el (appt-message-warning-time): Doc fix.
13900 (appt-warning-time-regexp): New option.
13901 (appt-make-list): Respect appt-message-warning-time.
13902
13903 * calendar/diary-lib.el (diary-comment-start, diary-comment-end):
13904 New options.
13905 (diary-add-to-list): Strip comments from the displayed string.
13906 (diary-mode): Set comment-start and comment-end.
13907
13908 * vc/diff-mode.el (smerge-refine-subst): Declare.
13909 (diff-refine-hunk): Don't require smerge-mode when compiling.
13910
13911 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
13912
13913 * simple.el (list-processes): Return nil as the docstring says.
13914
13915 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
13916
13917 * net/ange-ftp.el (ange-ftp-binary-file-name-regexp): Set default
13918 to "".
13919 (ange-ftp-write-region, ange-ftp-insert-file-contents)
13920 (ange-ftp-copy-file-internal): Use only `ange-ftp-binary-file' for
13921 determining of binary transfer. (Bug#7383)
13922
13923 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
13924
13925 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
13926 Fix port computation bug. (Bug#8618)
13927
13928 2011-05-05 Glenn Morris <rgm@gnu.org>
13929
13930 * allout-widgets.el (allout-widgets-mode-inhibit): Declare before use.
13931
13932 * simple.el (shell-dynamic-complete-functions)
13933 (comint-dynamic-complete-functions): Declare.
13934
13935 * net/network-stream.el (gnutls-negotiate):
13936 * simple.el (tabulated-list-print): Fix declarations.
13937
13938 * progmodes/gud.el (syntax-symbol, syntax-point):
13939 Remove unnecessary and incorrect declarations.
13940
13941 * emacs-lisp/check-declare.el (check-declare-scan):
13942 Handle byte-compile-initial-macro-environment in bytecomp.el
13943
13944 2011-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
13945
13946 Fix earlier half-done eieio-defmethod change (bug#8338).
13947 * emacs-lisp/eieio.el (eieio--defmethod): Rename from eieio-defmethod.
13948 Streamline and change calling convention.
13949 (defmethod): Adjust accordingly and simplify.
13950 (eieio-defclass): Fix broken calls to eieio-defmethod and redirect to
13951 new eieio--defmethod.
13952 (slot-boundp): Minor CSE simplification.
13953
13954 2011-05-05 Milan Zamazal <pdm@zamazal.org>
13955
13956 * progmodes/glasses.el (glasses-separate-capital-groups): New option.
13957 (glasses-make-readable): Use glasses-separate-capital-groups.
13958
13959 2011-05-05 Juanma Barranquero <lekktu@gmail.com>
13960
13961 * emacs-lisp/warnings.el (warning-level-aliases): Reflow docstring.
13962 (warning-series): Doc fix.
13963 (display-warning): Don't try to create the buffer if we just found it.
13964
13965 2011-05-04 Chong Yidong <cyd@stupidchicken.com>
13966
13967 * emacs-lisp/autoload.el (generated-autoload-file): Set to nil.
13968 (autoload-find-generated-file): New function.
13969 (generate-file-autoloads): Bind generated-autoload-file to
13970 buffer-file-name.
13971 (update-file-autoloads, update-directory-autoloads):
13972 Use autoload-find-generated-file. If called interactively, prompt for
13973 output file (Bug#7989).
13974 (batch-update-autoloads): Doc fix.
13975
13976 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
13977
13978 * term/w32-win.el (dynamic-library-alist): Add `gnutls'.
13979
13980 2011-05-04 Glenn Morris <rgm@gnu.org>
13981
13982 * calendar/diary-lib.el (diary-fancy-date-pattern): Turn it into a
13983 function, so it follows changes in calendar-date-style.
13984 (diary-fancy-date-matcher): New function.
13985 (diary-fancy-font-lock-keywords): Use diary-fancy-date-matcher.
13986 (diary-fancy-font-lock-fontify-region-function):
13987 Use diary-fancy-date-pattern as a function.
13988
13989 * calendar/diary-lib.el (diary-fancy-date-pattern): Do not use
13990 non-numbers for `year' etc pseudo-variables. (Bug#8583)
13991
13992 2011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
13993
13994 * net/gnutls.el (gnutls-negotiate): Use CL-style keyword arguments
13995 instead of positional arguments. Allow :keylist and :crlfiles
13996 arguments.
13997 (open-gnutls-stream): Call it.
13998
13999 * net/network-stream.el (network-stream-open-starttls): Adjust to
14000 call `gnutls-negotiate' with :process and :hostname arguments.
14001
14002 2011-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
14003
14004 * minibuffer.el (completion--message): New function.
14005 (completion--do-completion, minibuffer-complete)
14006 (minibuffer-force-complete, minibuffer-complete-word): Use it.
14007 (completion--do-completion): Don't ignore completion-auto-help when in
14008 icomplete-mode.
14009
14010 * whitespace.el (whitespace-trailing-regexp): Don't rely on the
14011 internal encoding (e.g. tibetan zero is not whitespace).
14012 (global-whitespace-mode): Prefer save-current-buffer.
14013 (whitespace-trailing-regexp): Remove useless save-match-data.
14014 (whitespace-empty-at-bob-regexp): Minor simplification.
14015
14016 2011-05-03 Chong Yidong <cyd@stupidchicken.com>
14017
14018 * emacs-lisp/autoload.el (generated-autoload-file): Doc fix (Bug#7989).
14019
14020 2011-05-03 Agustín Martín Domingo <agustin.martin@hispalinux.es>
14021
14022 * textmodes/ispell.el (ispell-add-per-file-word-list):
14023 Use `concat' to create string for insertion.
14024
14025 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
14026
14027 * textmodes/bibtex.el (bibtex-fill-field-bounds, bibtex-fill-entry):
14028 Avoid open-line which runs post-self-insert-hook.
14029 (bibtex-fill-entry): Remove unused `end' var.
14030
14031 2011-05-03 Dirk Ullrich <dirk.ullrich@googlemail.com> (tiny change)
14032
14033 * textmodes/ispell.el (ispell-add-per-file-word-list):
14034 Protect against `nil' value of `comment-start' (Bug#8579).
14035
14036 2011-05-03 Leo Liu <sdl.web@gmail.com>
14037
14038 * isearch.el (isearch-yank-pop): New command.
14039 (isearch-mode-map): Bind it to `M-y'.
14040 (isearch-forward): Mention it.
14041
14042 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
14043
14044 * simple.el (minibuffer-complete-shell-command): Remove.
14045 (minibuffer-local-shell-command-map): Use completion-at-point.
14046 (read-shell-command): Setup completion vars here instead.
14047 (read-expression-map): Bind TAB to symbol completion.
14048
14049 * textmodes/ispell.el (lookup-words): Use with-temp-buffer; signal
14050 error directly rather via storing it into `results'.
14051
14052 2011-05-02 Leo Liu <sdl.web@gmail.com>
14053
14054 * vc/diff.el: Fix description.
14055
14056 2011-05-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
14057
14058 * server.el (server-eval-at): New function.
14059
14060 2011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
14061
14062 * net/network-stream.el (open-network-stream): Take a :nowait
14063 parameter and pass it on to `make-network-process'.
14064 (network-stream-open-plain): Ditto.
14065
14066 2011-04-30 Andreas Schwab <schwab@linux-m68k.org>
14067
14068 * faces.el (face-spec-set-match-display): Don't match toolkit
14069 options on terminal frames.
14070
14071 2011-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
14072
14073 * progmodes/pascal.el: Use lexical binding.
14074 (pascal-mode-map): Remove author preferences.
14075
14076 * pcomplete.el (pcomplete-std-complete): Don't abuse
14077 completion-at-point.
14078
14079 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
14080
14081 * calc/calccomp.el (math-comp-to-string-flat-term): Simplify by
14082 removing code that has been dead since 1991 or so.
14083
14084 * startup.el (command-line): When warning about "_emacs", use a
14085 delayed warning to allow the user to filter it out.
14086
14087 2011-04-28 Deniz Dogan <deniz@dogan.se>
14088
14089 * net/rcirc.el (rcirc-handler-353): Fix bug for channels which the
14090 user has not joined.
14091
14092 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
14093
14094 * pcomplete.el (pcomplete-completions-at-point): Return nil if there
14095 aren't any completions at point.
14096
14097 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
14098
14099 * subr.el (display-delayed-warnings): New function.
14100 (delayed-warnings-hook): New variable.
14101
14102 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
14103
14104 * minibuffer.el (completion-at-point, completion-help-at-point):
14105 Don't presume that a given completion-at-point-function will always
14106 use the same calling convention.
14107
14108 * pcomplete.el (pcomplete-completions-at-point):
14109 Obey pcomplete-ignore-case. Don't call pcomplete-norm-func unless
14110 pcomplete-seen is non-nil.
14111 (pcomplete-comint-setup): Also recognize the new comint/shell
14112 completion functions.
14113 (pcomplete-do-complete): Don't call pcomplete-norm-func unless
14114 pcomplete-seen is non-nil.
14115
14116 2011-04-27 Niels Giesen <niels.giesen@gmail.com>
14117
14118 * calendar/icalendar.el (diary-lib): Add require statement.
14119 (icalendar--create-uid): Read out a uid from a text-property on
14120 the first character in the entry. This allows for code to add its
14121 own uid to the entry.
14122 (icalendar--convert-float-to-ical): Add export of
14123 `diary-float'-entries save for those with the optional DAY
14124 argument.
14125
14126 2011-04-27 Daniel Colascione <dan.colascione@gmail.com>
14127
14128 * subr.el (shell-quote-argument): Use alternate escaping strategy
14129 when we spot a variable reference in a string.
14130
14131 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
14132
14133 * cus-start.el (all): Define customization for debug-on-event.
14134
14135 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
14136
14137 * subr.el (shell-quote-argument): Escape correctly under Windows.
14138
14139 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
14140
14141 * emulation/cua-base.el (cua-selection-mode): Make it toggle again.
14142
14143 2011-04-25 Michael Albinus <michael.albinus@gmx.de>
14144
14145 * net/tramp.el (tramp-process-actions): Add POS argument.
14146 Delete region between POS and (pos).
14147
14148 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
14149 Use `nil' position in `tramp-process-actions' call.
14150 (tramp-maybe-open-connection): Call `tramp-process-actions' with pos.
14151
14152 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Use `nil'
14153 position in `tramp-process-actions' call.
14154
14155 * net/trampver.el: Update release number.
14156
14157 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
14158
14159 * custom.el (defcustom): Obey lexical-binding.
14160
14161 Fix octave-inf completion problems reported by Alexander Klimov.
14162 * progmodes/octave-inf.el (inferior-octave-mode-syntax-table):
14163 Inherit from octave-mode-syntax-table.
14164 (inferior-octave-mode): Set info-lookup-mode.
14165 (inferior-octave-completion-at-point): New function.
14166 (inferior-octave-complete): Use it and completion-in-region.
14167 (inferior-octave-dynamic-complete-functions): Use it as well, and use
14168 comint-filename-completion.
14169 * progmodes/octave-mod.el (octave-mode-syntax-table): Use _ syntax for
14170 symbol elements which shouldn't be word elements.
14171 (octave-font-lock-keywords, octave-beginning-of-defun)
14172 (octave-function-header-regexp): Adjust regexps accordingly.
14173 (octave-mode-map): Also use info-lookup-symbol for C-c C-h.
14174
14175 2011-04-25 Juanma Barranquero <lekktu@gmail.com>
14176
14177 * net/gnutls.el (gnutls-errorp): Declare before first use.
14178
14179 2011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
14180
14181 * net/gnutls.el (gnutls-negotiate): Add hostname, verify-flags,
14182 verify-error, and verify-hostname-error parameters. Check whether
14183 default trustfile exists before going to use it. Add missing
14184 argument to gnutls-message-maybe call. Return value.
14185 Reported by Claudio Bley <claudio.bley@gmail.com>.
14186 (open-gnutls-stream): Add usage example.
14187
14188 * net/network-stream.el (network-stream-open-starttls): Give host
14189 parameter to `gnutls-negotiate'.
14190 (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
14191 * subr.el (shell-quote-argument): Escape correctly under Windows.
14192
14193 2011-04-24 Daniel Colascione <dan.colascione@gmail.com>
14194
14195 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
14196 Use correct match group (bug#8438).
14197
14198 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
14199
14200 * emacs-lisp/package.el (package-built-in-p): Fix typo.
14201 (package-menu--generate): New arg specifying packages to show.
14202 (package-menu-refresh, package-menu-execute, list-packages):
14203 Callers changed.
14204 (package-show-package-list): New function, replacing deleted
14205 package--list-packages (renamed because it is non-internal).
14206
14207 * finder.el (finder-list-matches): Use package-show-package-list
14208 instead of deleted package--list-packages.
14209
14210 * vc/vc-annotate.el (vc-annotate-goto-line): New command.
14211 Based on a previous implementation by Juanma Barranquero (Bug#8366).
14212 (vc-annotate-mode-map): Bind it to RET.
14213
14214 2011-04-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
14215
14216 * progmodes/etags.el (next-file): Don't use set-buffer to change
14217 buffers (Bug#8478).
14218
14219 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
14220
14221 * files.el (auto-mode-alist): Use js-mode for .json (Bug#8529).
14222
14223 * apropos.el (apropos-label-face): Avoid variable-pitch face.
14224 (apropos-accumulator): Doc fix.
14225 (apropos-function, apropos-macro, apropos-command)
14226 (apropos-variable, apropos-face, apropos-group, apropos-widget)
14227 (apropos-plist): Add face property.
14228 (apropos-symbols-internal): Fix indentation.
14229 (apropos-print): Simplify help, and recognize apropos-multi-type.
14230 (apropos-print-doc): Use button-type-get to extract the button's
14231 face property. Fill docstring (Bug#8352).
14232
14233 2011-04-23 Juanma Barranquero <lekktu@gmail.com>
14234
14235 * buff-menu.el (Buffer-menu--buffers): Fix typo in docstring (bug#8535).
14236
14237 * play/mpuz.el (mpuz-silent): Doc fix.
14238 (mpuz-mode-map): Use mapc.
14239 (mpuz-put-number-on-board): Rename parameter L to COLUMNS.
14240 (mpuz-letter-to-digit, mpuz-check-all-solved, mpuz-create-buffer):
14241 Fix typos in docstrings.
14242
14243 * play/doctor.el (doc$, doctor-$, doctor-read-print, doctor-read-token)
14244 (doctor-nounp, doctor-pronounp): Fix typos in docstrings.
14245
14246 * mouse-drag.el (mouse-drag-throw): Fix typo in docstring.
14247
14248 2011-04-23 Chong Yidong <cyd@stupidchicken.com>
14249
14250 * minibuffer.el (completion--do-completion): Avoid the "Next char
14251 not unique" prompt if icomplete-mode is enabled (Bug#5849).
14252
14253 * mouse.el (mouse-drag-mode-line-1): Make sure that if we push
14254 mouse-2 into unread-command-events, it is interpreted correctly.
14255
14256 * image-mode.el (image-type, image-mode-map, image-minor-mode-map)
14257 (image-toggle-display): Doc fix.
14258
14259 2011-04-23 Stephen Berman <stephen.berman@gmx.net>
14260
14261 * textmodes/page.el (what-page): Use line-number-at-pos to
14262 calculate line number (Bug#6825).
14263
14264 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
14265
14266 * eshell/esh-mode.el (find-tag-interactive): Declare function.
14267 (eshell-find-tag): Remove `with-no-warnings', unneeded now.
14268 Pass argument NO-DEFAULT to `find-tag-interactive'.
14269
14270 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
14271
14272 Lexical-binding cleanup.
14273
14274 * progmodes/ada-mode.el (ada-after-change-function, ada-loose-case-word)
14275 (ada-no-auto-case, ada-capitalize-word, ada-untab, ada-narrow-to-defun):
14276 * progmodes/ada-prj.el (ada-prj-initialize-values)
14277 (ada-prj-display-page, ada-prj-field-modified, ada-prj-display-help)
14278 (ada-prj-show-value):
14279 * progmodes/ada-xref.el (ada-find-any-references, ada-gdb-application):
14280 * progmodes/antlr-mode.el (antlr-with-displaying-help-buffer)
14281 (antlr-invalidate-context-cache, antlr-options-menu-filter)
14282 (antlr-language-option-extra, antlr-c++-mode-extra, antlr-run-tool):
14283 * progmodes/bug-reference.el (bug-reference-push-button):
14284 * progmodes/fortran.el (fortran-line-length):
14285 * progmodes/glasses.el (glasses-change):
14286 * progmodes/octave-mod.el (octave-fill-paragraph):
14287 * progmodes/python.el (python-mode, python-pdbtrack-track-stack-file)
14288 (python-pdbtrack-grub-for-buffer, python-sentinel):
14289 * progmodes/sql.el (sql-save-connection):
14290 * progmodes/tcl.el (tcl-indent-command, tcl-popup-menu):
14291 * progmodes/xscheme.el (xscheme-enter-debugger-mode):
14292 Mark unused parameters.
14293
14294 * progmodes/compile.el (compilation--flush-directory-cache)
14295 (compilation--flush-parse, compile-internal): Mark unused parameters.
14296 (compilation-buffer-name): Rename parameter MODE-NAME to NAME-OF-MODE.
14297 (compilation-next-error-function): Remove unused variable `timestamp'.
14298
14299 * progmodes/cpp.el (cpp-parse-close): Remove unused variable `begin'.
14300 (cpp-signal-read-only, cpp-grow-overlay): Mark unused parameters.
14301
14302 * progmodes/dcl-mode.el (dcl-end-of-command):
14303 Remove unused variable `start'.
14304 (dcl-calc-command-indent-multiple, dcl-calc-cont-indent-relative)
14305 (dcl-option-value-basic, dcl-option-value-offset)
14306 (dcl-option-value-margin-offset, dcl-option-value-comment-line):
14307 Mark unused parameters.
14308 (dcl-save-local-variable): Remove unused variable `val'.
14309 (mode): Declare.
14310
14311 * progmodes/delphi.el (delphi-save-state, delphi-after-change):
14312 Mark unused parameters.
14313 (delphi-ignore-changes): Move before first use.
14314 (delphi-charset-token-at): Remove unused variable `start'.
14315 (delphi-else-start): Remove unused variable `if-count'.
14316 (delphi-comment-block-start, delphi-comment-block-end):
14317 Remove unused variable `kind'.
14318 (delphi-indent-line): Remove unused variable `new-point'.
14319
14320 * progmodes/ebrowse.el (ebrowse-files-list)
14321 (ebrowse-list-of-matching-members, ebrowse-tags-list-members-in-file):
14322 Mark unused parameters. Don't quote `lambda'.
14323 (ebrowse-sort-tree-list, ebrowse-same-tree-member-buffer-list):
14324 Don't quote `lambda'.
14325 (ebrowse-revert-tree-buffer-from-file, ebrowse-tags-choose-class)
14326 (ebrowse-goto-visible-member/all-member-lists): Mark unused parameters.
14327 (ebrowse-create-tree-buffer): Rename parameter OBARRAY to CLASSES.
14328 (ebrowse-toggle-mark-at-point): Remove unused variable `pnt'.
14329 Use `ignore-errors'.
14330 (ebrowse-frozen-tree-buffer-name, ebrowse-find-source-file)
14331 (ebrowse-view/find-file-and-search-pattern)
14332 (ebrowse-view/find-member-declaration/definition):
14333 Rename parameter TAGS-FILE-NAME to TAGS-FILE.
14334 (ebrowse-find-class-declaration, ebrowse-view-class-declaration):
14335 Rename parameter PREFIX-ARG to PREFIX.
14336 (ebrowse-tags-read-name): Remove unused variables `start' and
14337 `member-info'.
14338 (ebrowse-display-member-buffer): Rename variable `tags-file-name'
14339 to `tags-file'.
14340
14341 * progmodes/etags.el (local-find-tag-hook): Declare.
14342 (tag-partial-file-name-match-p, tag-any-match-p, list-tags):
14343 Mark unused parameters.
14344
14345 * progmodes/executable.el (compilation-error-regexp-alist): Declare.
14346 (executable-interpret): Mark unused parameter.
14347
14348 * progmodes/flymake.el (flymake-process-sentinel)
14349 (flymake-after-change-function)
14350 (flymake-create-temp-with-folder-structure)
14351 (flymake-get-include-dirs-dot): Mark unused parameters.
14352 (flymake-safe-delete-directory): Remove unused variable `err'.
14353
14354 * progmodes/gdb-mi.el (speedbar-change-initial-expansion-list)
14355 (speedbar-timer-fn, speedbar-line-text)
14356 (speedbar-change-expand-button-char, speedbar-delete-subblock)
14357 (speedbar-center-buffer-smartly): Declare functions.
14358 (gdb-find-watch-expression): Remove unused variable `array'.
14359 (gdb-edit-value, gdb-gdb, gdb-ignored-notification, gdb-thread-created)
14360 (gdb-starting): Mark unused parameters.
14361 (gud-gdbmi-marker-filter): Remove unused variable `output-record'.
14362 (gdb-table-string): Remove unused variable `res'.
14363 (gdb-place-breakpoints): Remove unused variables `flag' and `bptno'.
14364 (gdb-disassembly-handler-custom): Remove unused variable `pos'.
14365 (gdb-display-buffer): Remove unused variable `cur-size'.
14366
14367 * progmodes/gud.el (gud-def): Use `defalias' instead of `defun' to
14368 allow lexical-binding compilation.
14369 (gud-expansion-speedbar-buttons, gud-gdb-goto-stackframe)
14370 (gud-dbx-massage-args, gud-xdb-massage-args, gud-perldb-massage-args)
14371 (gud-jdb-massage-args, gud-jdb-find-source, gud-find-class):
14372 Mark unused parameters.
14373 (gud-gdb-marker-filter): Remove unused variable `match'.
14374 (gud-find-class): Bind `syntax-symbol' and `syntax-point' to suitable
14375 lambda expressions and funcall them, instead of using `fset'.
14376
14377 * progmodes/hideif.el (hif-parse-if-exp): Rename parameter
14378 HIF-TOKEN-LIST to TOKEN-LIST and let-bind `hif-token-list'.
14379
14380 * progmodes/hideshow.el (hs-hide-block-at-point): Remove unused
14381 variable `header-beg'; use `let'.
14382
14383 * progmodes/icon.el (indent-icon-exp): Remove unused variables
14384 `restart', `last-sexp' and `at-do'.
14385
14386 * progmodes/js.el (js--debug): Mark unused parameter.
14387 (js--parse-state-at-point): Remove unused variable `bound'; use `let'.
14388 (js--splice-into-items): Remove unused variable `item'.
14389 (js--read-symbol, js--read-tab): Pass 1/-1 to `ido-mode', not t/nil.
14390
14391 * progmodes/make-mode.el (makefile-make-font-lock-keywords):
14392 Rename parameter FONT-LOCK-KEYWORDS to FL-KEYWORDS.
14393 (makefile-complete): Remove unused variable `try'.
14394 (makefile-fill-paragraph, makefile-match-function-end):
14395 Mark unused parameters.
14396
14397 * progmodes/octave-inf.el (inferior-octave-complete):
14398 Remove unused variable `proc'.
14399 (inferior-octave-output-digest): Mark unused parameter.
14400
14401 * progmodes/perl-mode.el (perl-calculate-indent):
14402 Remove unused variable `err'.
14403
14404 * progmodes/prolog.el (prolog-mode-keybindings-inferior)
14405 (prolog-indent-line): Mark unused parameters.
14406 (prolog-indent-line): Remove unused variable `beg'.
14407
14408 * progmodes/ps-mode.el (reporter-prompt-for-summary-p)
14409 (reporter-dont-compact-list): Declare.
14410
14411 * progmodes/sh-script.el (sh-font-lock-quoted-subshell):
14412 Remove unused variable `char'.
14413 (sh-debug): Mark unused parameter.
14414 (sh-get-indent-info): Remove unused variable `start'.
14415 (sh-calculate-indent): Remove unused variable `var'.
14416
14417 * progmodes/simula.el (simula-popup-menu): Mark unused parameter.
14418 (simula-electric-keyword): Remove unused variable `null'.
14419 (simula-search-backward, simula-search-forward): Remove unused
14420 variables `begin' and `end'.
14421
14422 * progmodes/vera-mode.el (vera-guess-basic-syntax):
14423 Remove unused variable `pos'.
14424 (vera-electric-tab, vera-comment-uncomment-region):
14425 Mark unused parameters.
14426 (vera-electric-tab): Rename parameter PREFIX-ARG to PREFIX.
14427
14428 2011-04-22 Chong Yidong <cyd@stupidchicken.com>
14429
14430 * emacs-lisp/package.el (package--builtins, package-alist)
14431 (package-load-descriptor, package-built-in-p, package-activate)
14432 (define-package, package-installed-p)
14433 (package-compute-transaction, package-buffer-info)
14434 (package--push): Doc fix. Distinguish more clearly between
14435 version strings and version lists.
14436
14437 2011-04-21 Juanma Barranquero <lekktu@gmail.com>
14438
14439 Lexical-binding cleanup.
14440
14441 * play/5x5.el (5x5-make-random-solution, 5x5-make-mutate-current)
14442 (5x5-make-mutate-best):
14443 * play/fortune.el (fortune-in-buffer):
14444 * play/gomoku.el (gomoku-init-display):
14445 * play/solitaire.el (solitaire, solitaire-do-check):
14446 * play/tetris.el (tetris-default-update-speed-function):
14447 Mark unused parameters.
14448
14449 * play/bubbles.el (bubbles-mode): Set `show-trailing-whitespace'.
14450 (bubbles--shift): Remove unused variable `char-org'.
14451 (bubbles--set-faces): Remove unused variable `fg-col'. Simplify.
14452 (bubbles--show-images): Remove unused variable `char'.
14453
14454 * play/decipher.el (decipher-keypress, decipher-alphabet-keypress)
14455 (decipher-get-undo, decipher-set-map, decipher-complete-alphabet)
14456 (decipher-resync, decipher-loop-with-breaks, decipher--analyze)
14457 (decipher-analyze-buffer): Use ?\s.
14458 (decipher-make-checkpoint): Remove unused variable `mapping'.
14459
14460 * play/doctor.el (doctor-doc): Rename parameter DOCTOR-SENT to SENT.
14461
14462 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
14463 Remove unused variable `result'; use `let'.
14464
14465 * play/gametree.el (gametree-current-layout, gametree-apply-layout):
14466 Rename parameter TOP-LEVEL to FROM-TOP-LEVEL; use `ignore-errors'.
14467 (gametree-children-shown-p, gametree-compute-reduced-score):
14468 Use `ignore-errors'.
14469
14470 * play/handwrite.el (ps-lpr-switches): Declare.
14471 (handwrite): Remove unused variables `pmin' and `lastp'.
14472
14473 * play/hanoi.el (hanoi-move-ring): Remove unused variable `total-steps'.
14474
14475 * play/landmark.el (landmark-init-display)
14476 (landmark-update-naught-weights): Mark unused parameters.
14477 (landmark-y): Remove unused variable `noise'. Simplify.
14478 (landmark-human-plays): Remove unused variable `score'.
14479
14480 * play/mpuz.el (mpuz-try-letter): Remove unused variable `message'.
14481 (mpuz-try-proposal): Remove unused variable `game'.
14482
14483 * play/zone.el (life-patterns): Declare.
14484
14485 2011-04-20 Juanma Barranquero <lekktu@gmail.com>
14486
14487 * vc/vc.el (ediff-vc-internal): Declare function.
14488
14489 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
14490
14491 * shell.el: Use lexical-binding and std completion UI.
14492 (shell-filter-ctrl-a-ctrl-b): Work as a preoutput filter.
14493 (shell-mode): Put shell-filter-ctrl-a-ctrl-b on
14494 comint-preoutput-filter-functions rather than on
14495 comint-output-filter-functions.
14496 (shell-command-completion, shell--command-completion-data)
14497 (shell-filename-completion, shell-environment-variable-completion)
14498 (shell-c-a-p-replace-by-expanded-directory): New functions.
14499 (shell-dynamic-complete-functions, shell-dynamic-complete-command)
14500 (shell-dynamic-complete-filename, shell-replace-by-expanded-directory)
14501 (shell-dynamic-complete-environment-variable): Use them.
14502 (shell-dynamic-complete-as-environment-variable)
14503 (shell-dynamic-complete-as-command): Remove.
14504 (shell-match-partial-variable): Match past point.
14505 * comint.el: Clean up use of completion-at-point-functions.
14506 (comint-completion-at-point): New function.
14507 (comint-mode): Use it completion-at-point-functions.
14508 (comint-dynamic-complete): Make it obsolete.
14509 (comint-replace-by-expanded-history-before-point): Add dry-run arg.
14510 (comint-c-a-p-replace-by-expanded-history): New function.
14511 (comint-dynamic-complete-functions)
14512 (comint-replace-by-expanded-history): Use it.
14513 * minibuffer.el (completion-table-with-terminator): Allow dynamic
14514 termination strings. Try harder to avoid second try-completion.
14515 (completion-in-region-mode-map): Disable bindings that don't work yet.
14516
14517 * comint.el: Use lexical-binding. Require CL.
14518 (comint-dynamic-complete-functions): Use comint-filename-completion.
14519 (comint-completion-addsuffix): Tweak custom type.
14520 (comint-filename-completion, comint--common-suffix)
14521 (comint--common-quoted-suffix, comint--table-subvert)
14522 (comint--complete-file-name-data): New functions.
14523 (comint-dynamic-complete-as-filename, comint-dynamic-complete-filename)
14524 (comint-dynamic-list-filename-completions): Use them.
14525 (comint-dynamic-simple-complete): Make obsolete.
14526
14527 * minibuffer.el (completion-in-region-mode):
14528 Keep completion-in-region-mode--predicate global.
14529 (completion-in-region--postch):
14530 Assume completion-in-region-mode--predicate is not null.
14531
14532 * progmodes/flymake.el (flymake-start-syntax-check-process):
14533 Obey `dir'. Simplify.
14534
14535 * vc/vc.el (vc-version-ediff): Call ediff-vc-internal directly, since
14536 we're in VC after all.
14537
14538 2011-04-20 Christoph Scholtes <cschol2112@googlemail.com>
14539
14540 * vc/vc.el (vc-diff-build-argument-list-internal)
14541 (vc-version-ediff, vc-ediff): New commands.
14542 (vc-version-diff): Use vc-diff-build-argument-list-internal.
14543
14544 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
14545
14546 * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Remove dead code,
14547 add sanity check.
14548
14549 * obsolete/erc-hecomplete.el: Make obsolete.
14550 * obsolete/: Standardize obsolescence info in the header.
14551
14552 2011-04-20 Glenn Morris <rgm@gnu.org>
14553
14554 * calendar/solar.el (solar-horizontal-coordinates):
14555 Use the longitude argument rather than `calendar-longitude'.
14556 (solar-date-next-longitude): Remove unused locals.
14557
14558 2011-04-20 Vinicius Jose Latorre <viniciusjl@ig.com.br>
14559
14560 * whitespace.el: New version 13.2.1.
14561
14562 2011-04-20 felix <EmacsWiki> (tiny change)
14563
14564 * whitespace.el (global-whitespace-mode): Keep highlight when
14565 switching between major modes on a file.
14566
14567 2011-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
14568
14569 * progmodes/octave-mod.el (octave-in-comment-p, octave-in-string-p)
14570 (octave-not-in-string-or-comment-p): Use syntax-ppss so it works with
14571 multi-line comments as well.
14572
14573 2011-04-19 Juanma Barranquero <lekktu@gmail.com>
14574
14575 Lexical-binding cleanup.
14576
14577 * arc-mode.el (archive-mode-revert):
14578 * cmuscheme.el (scheme-interactively-start-process):
14579 * custom.el (custom-initialize-delay):
14580 * dnd.el (dnd-open-local-file, dnd-open-remote-url):
14581 * dos-w32.el (direct-print-region-helper, direct-print-region-function):
14582 * emacs-lock.el (emacs-lock-clear-sentinel):
14583 * ezimage.el (defezimage):
14584 * follow.el (follow-avoid-tail-recenter):
14585 * fringe.el (set-fringe-mode-1):
14586 * generic-x.el (bat-generic-mode-compile):
14587 * help-mode.el (help-info-variable, help-do-xref)
14588 (help-mode-revert-buffer):
14589 * help.el (view-emacs-todo):
14590 * iswitchb.el (iswitchb-completion-help):
14591 * jka-compr.el (jka-compr-make-temp-name, jka-compr-load):
14592 * kmacro.el (kmacro-cycle-ring-next, kmacro-cycle-ring-previous)
14593 (kmacro-delete-ring-head, kmacro-bind-to-key, kmacro-view-macro):
14594 * locate.el (locate-update):
14595 * longlines.el (longlines-encode-region)
14596 (longlines-after-change-function):
14597 * outline.el (outline-isearch-open-invisible):
14598 * ps-def.el (declare-function, charset-dimension, char-width)
14599 (encode-char):
14600 * ps-mule.el (ps-mule-plot-string):
14601 * recentf.el (recentf-make-menu-items, recentf-cancel-dialog)
14602 (recentf-edit-list-select, recentf-edit-list-validate)
14603 (recentf-open-files-action):
14604 * rect.el (delete-whitespace-rectangle-line)
14605 (rectangle-number-line-callback):
14606 * register.el (window-configuration-to-register)
14607 (frame-configuration-to-register):
14608 * scroll-bar.el (scroll-bar-mode, toggle-horizontal-scroll-bar):
14609 * select.el (xselect-convert-to-string, xselect-convert-to-length)
14610 (xselect-convert-to-targets, xselect-convert-to-delete)
14611 (xselect-convert-to-filename, xselect-convert-to-charpos)
14612 (xselect-convert-to-lineno, xselect-convert-to-colno)
14613 (xselect-convert-to-os, xselect-convert-to-host)
14614 (xselect-convert-to-user, xselect-convert-to-class)
14615 (xselect-convert-to-name, xselect-convert-to-integer)
14616 (xselect-convert-to-atom, xselect-convert-to-identity):
14617 * subr.el (declare, ignore, process-kill-without-query)
14618 (text-clone-maintain):
14619 * terminal.el (te-get-char, te-tic-sentinel):
14620 * tool-bar.el (tool-bar-make-keymap):
14621 * tooltip.el (tooltip-timeout, tooltip-hide, tooltip-help-tips):
14622 * type-break.el (type-break-mode, type-break-noninteractive-query):
14623 * view.el (View-back-to-mark):
14624 * wid-browse.el (widget-browse-action, widget-browse-widget)
14625 (widget-browse-widgets, widget-browse-sexp):
14626 * widget.el (define-widget-keywords):
14627 * xt-mouse.el (xterm-mouse-translate, turn-off-xterm-mouse-tracking):
14628 Mark unused parameters.
14629
14630 * align.el (align-adjust-col-for-rule): Mark unused parameter.
14631 (align-areas): Remove unused variable `look'.
14632 (align-region): Remove unused variables `real-end' and `pos-list'.
14633
14634 * apropos.el (apropos-score-doc): Remove unused variable `i'.
14635
14636 * bindings.el (mode-line-modified, mode-line-remote):
14637 Mark unused parameters.
14638 (mode-line-mule-info): Mark unused parameter; don't quote `lambda'.
14639
14640 * buff-menu.el (Buffer-menu-revert-function): Mark unused parameters.
14641 (Buffer-menu-mode): Mark unused parameter; don't quote `lambda'.
14642
14643 * comint.el (comint-history-isearch-pop-state)
14644 (comint-postoutput-scroll-to-bottom, comint-truncate-buffer)
14645 (comint-strip-ctrl-m, comint-read-noecho): Mark unused parameters.
14646 (comint-substitute-in-file-name): Doc fix.
14647
14648 * completion.el (cmpl-statistics-block): Mark unused parameter.
14649 (add-completions-from-tags-table, add-completions-from-lisp-buffer)
14650 (save-completions-to-file, load-completions-from-file):
14651 Remove unused local variable `e'.
14652
14653 * composite.el (compose-chars): Remove unused variable `len'.
14654 (lgstring-insert-glyph): Remove unused variable `g'.
14655 (compose-glyph-string): Remove unused variables `ascent',
14656 `descent', `lbearing' and `rbearing'.
14657 (compose-glyph-string-relative): Remove unused variables
14658 `lbearing', `rbearing' and `wadjust'.
14659 (compose-gstring-for-graphic): Remove unused variables `header',
14660 `wadjust', `xoff' and `yoff'. Use `let', not `let*'.
14661 (compose-gstring-for-terminal): Remove unused variables `header'
14662 and `nchars'. Use `let', not `let*'.
14663
14664 * cus-edit.el (Custom-set, Custom-save, custom-reset)
14665 (Custom-reset-current, Custom-reset-saved, Custom-reset-standard)
14666 (Custom-buffer-done, custom-buffer-create-internal)
14667 (custom-browse-visibility-action, custom-browse-group-tag-action)
14668 (custom-browse-variable-tag-action, custom-browse-face-tag-action)
14669 (widget-magic-mouse-down-action, custom-toggle-parent)
14670 (custom-add-parent-links, custom-toggle-hide-variable)
14671 (custom-face-edit-value-visibility-action, custom-face-edit-fix-value)
14672 (custom-toggle-hide-face, face, hook, custom-group-link-action)
14673 (custom-face-menu-create, custom-variable-menu-create, get)
14674 (custom-group-menu-create, Custom-no-edit): Mark unused parameters.
14675 (custom-reset-standard-save-and-update): Remove unused variable `value'.
14676 (customize-apropos): Remove unused variable `tests'.
14677 (custom-group-value-create): Remove unused variable `hidden-p'.
14678 (sort-fold-case): Declare.
14679
14680 * cus-theme.el (custom-reset-standard-faces-list)
14681 (custom-reset-standard-variables-list): Declare.
14682 (customize-create-theme, custom-theme-revert, custom-theme-write)
14683 (custom-theme-choose-mode, customize-themes, custom-theme-save):
14684 Mark unused parameters.
14685
14686 * dabbrev.el (dabbrev-completion): Remove unused variable `init'.
14687
14688 * delim-col.el (delimit-columns-max): Move defvar before first use.
14689
14690 * descr-text.el (describe-char-categories): Don't quote `lambda'.
14691 (describe-char): Don't quote `lambda'. Mark unused parameter.
14692
14693 * desktop.el (desktop-save-buffer-p): Mark unused parameter.
14694 (auto-insert): Declare.
14695 (desktop-restore-file-buffer): Rename desktop-* parameters;
14696 mark unused ones.
14697 (desktop-create-buffer): Rename desktop-* parameters and bind them.
14698 (desktop-buffer): Rename desktop-* parameters.
14699
14700 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
14701 (dframe-reposition-frame-xemacs, dframe-help-echo)
14702 (dframe-hack-buffer-menu, dframe-set-timer, dframe-set-timer-internal):
14703 Mark unused parameters.
14704
14705 * dired-aux.el (backup-extract-version-start, overwrite-query)
14706 (overwrite-backup-query, rename-regexp-query)
14707 (rename-non-directory-query): Declare.
14708 (dired-shell-stuff-it, dired-do-create-files): Mark unused parameters.
14709 (dired-add-entry): Remove unused variable `orig-file-name'.
14710 (dired-copy-file-recursive): Remove unused variable `dirfailed'.
14711 Use parameter PRESERVE-TIME instead of accessing dynamic variable
14712 `dired-copy-preserve-time' directly.
14713 (dired-do-create-files-regexp): Remove unused variable `fn-count'.
14714 (dired-insert-subdir-newpos): Rename unused variable `pos'.
14715
14716 * dired-x.el (dired-omit-size-limit): Move defcustom before first use.
14717 (dired-virtual-revert, dired-make-relative-symlink):
14718 Mark unused parameters.
14719 (manual-program): Declare.
14720 (dired-x-hands-off-my-keys): Rename parameters of lambda expression.
14721 (inode, s, mode, nlink, uid, gid, size, time, name, sym): Declare them,
14722 wrapped in `with-no-warnings' to avoid replacing one warning by another.
14723
14724 * dirtrack.el (dirtrack): Remove unused variable `multi-line'.
14725
14726 * dos-fns.el (dos-8+3-filename): Remove unused variable `i'.
14727
14728 * echistory.el (electric-history-in-progress, Helper-return-blurb):
14729 Declare.
14730
14731 * edmacro.el (edmacro-finish-edit): Remove unused variable `kmacro'.
14732
14733 * electric.el (Electric-command-loop): Rename parameter
14734 INHIBIT-QUIT to INHIBIT-QUITTING and bind `inhibit-quit'.
14735
14736 * expand.el (expand-in-literal): Remove unused variable `here'.
14737
14738 * facemenu.el (facemenu-add-new-color):
14739 Remove unused variable `docstring'.
14740
14741 * faces.el (face-id, make-face-bold, make-face-unbold, make-face-italic)
14742 (make-face-unitalic, make-face-bold-italic): Mark unused parameters.
14743 (face-attr-construct): Mark unused parameter. Doc fix.
14744 (read-color): Remove unused variable `hex-string'.
14745
14746 * files.el (parse-colon-path): Rename argument CD-PATH to SEARCH-PATH.
14747 (locate-dominating-file): Remove unused vars `prev-file' and `user'.
14748 (remote-file-name-inhibit-cache, revert-buffer): Clean up docstrings.
14749 (display-buffer-other-frame): Remove unused variable `old-window'.
14750 (kill-buffer-hook): Declare.
14751 (insert-file-contents-literally, set-auto-mode, risky-local-variable-p):
14752 Mark unused parameters.
14753 (after-find-file): Pass 1 to `auto-save-mode', not t.
14754
14755 * files-x.el (auto-insert): Declare.
14756 (modify-file-local-variable-prop-line): Remove unused variable `val'.
14757
14758 * find-lisp.el (find-lisp-find-dired-internal): Remove unused
14759 variable `buf'. Mark unused parameter.
14760 (find-lisp-insert-directory): Mark unused parameter.
14761
14762 * format.el (format-decode-run-method): Mark unused parameter; doc fix.
14763 (format-encode-region): Remove unused variables `cur-buf' and `result'.
14764 (format-common-tail): Remove, unused.
14765 (format-deannotate-region): Remove unused variable `loc'.
14766 (format-annotate-region): Remove unused variable `p'.
14767 (format-annotate-single-property-change): Remove unused variables
14768 `default' and `tail'.
14769
14770 * forms.el (read-file-filter): Declare.
14771 (forms--iif-hook, forms--revert-buffer): Mark unused parameters.
14772
14773 * frame.el (frame-creation-function-alist): Mark unused parameter.
14774 (frame-geom-spec-cons): Pass FRAME to `frame-geom-value-cons'.
14775
14776 * hilit-chg.el (hilit-chg-cust-fix-changes-face-list, hilit-chg-clear):
14777 Remove unused parameters.
14778 (hilit-chg-set-face-on-change): Remove unused variable `beg-decr'.
14779 (highlight-compare-with-file): Remove unused variable `buf-b-read-only'.
14780
14781 * htmlfontify.el (hfy-default-footer, hfy-decor, hfy-invisible)
14782 (hfy-parse-tags-buffer, hfy-prepare-index-i, hfy-prepare-index)
14783 (hfy-prepare-tag-map): Mark unused parameters.
14784 (htmlfontify-buffer): Use `called-interactively-p'.
14785
14786 * ibuf-ext.el (ibuffer-do-kill-lines, ibuffer-jump-to-buffer)
14787 (ibuffer-copy-filename-as-kill, ibuffer-mark-on-buffer)
14788 (ibuffer-do-occur): Mark unused parameters.
14789 (ibuffer-forward-next-marked): Remove unused variable `curmark'.
14790 (ibuffer-diff-buffer-with-file-1): Remove unused variable `proc'.
14791
14792 * ibuffer.el: Don't quote `lambda'.
14793 (ibuffer-count-marked-lines, ibuffer-count-deletion-lines)
14794 (ibuffer-unmark-all, ibuffer-toggle-marks, ibuffer-redisplay-engine):
14795 Mark unused parameters.
14796
14797 * ido.el (ido-mode, ido-wide-find-dir-or-delete-dir)
14798 (ido-completing-read): Mark unused parameters.
14799 (ido-copy-current-word): Mark unused parameters;
14800 remove unused variable `name'.
14801 (ido-sort-merged-list): Remove unused parameter `dirs'.
14802
14803 * ielm.el (ielm-input-sender): Mark unused parameter.
14804 (ielm-string, ielm-form, ielm-pos, ielm-result, ielm-error-type)
14805 (ielm-output, ielm-wbuf, ielm-pmark): Declare.
14806 (ielm-eval-input): Rename argument IELM-STRING to INPUT-STRING to keep
14807 `ielm-string' as a dynamic variable accessible from the IELM prompt.
14808 Bind `ielm-string' to INPUT-STRING. Remove unused variable `err'.
14809
14810 * image-dired.el (image-dired-display-thumbs): Remove unused
14811 variables `curr-file' and `count'.
14812 (image-dired-remove-tag): Remove unused variable `start'.
14813 (image-dired-tag-files, image-dired-create-thumbs): Remove unused
14814 variable `curr-file'
14815 (image-dired-rotate-original): Remove unused variable `temp-file'.
14816 (image-dired-mouse-select-thumbnail, image-dired-mouse-toggle-mark):
14817 Remove unused variable `file'.
14818 (image-dired-gallery-generate): Remove unused variable `curr'.
14819 (image-dired-dired-edit-comment-and-tags): Mark unused parameters.
14820
14821 * indent.el (tab-to-tab-stop): Remove unused variable `opoint'.
14822
14823 * info-xref.el (info-xref-goto-node-p): Remove unused variable `err'.
14824
14825 * informat.el (texinfo-command-start, texinfo-command-end): Declare.
14826
14827 * isearch.el (minibuffer-history-symbol): Declare.
14828 (isearch-edit-string): Remove unused variable `err'.
14829 (isearch-message-prefix, isearch-message-suffix):
14830 Mark unused parameters.
14831
14832 * ls-lisp.el (ls-lisp-insert-directory): Remove unused variable `fil'.
14833
14834 * macros.el (insert-kbd-macro): Remove unused variable `mods'.
14835
14836 * makesum.el (double-column): Remove unused variable `cnt'.
14837
14838 * misearch.el (multi-isearch-pop-state): Mark unused parameter.
14839 (ido-ignore-item-temp-list): Declare.
14840
14841 * mouse-drag.el (mouse-drag-throw): Remove unused variables
14842 `mouse-delta', `window-last-row', `mouse-col-delta', `window-last-col',
14843 `adjusted-mouse-col-delta' and `adjusted-mouse-delta'.
14844 (mouse-drag-drag): Remove unused variables `mouse-delta' and
14845 `mouse-col-delta'.
14846
14847 * mouse-sel.el (mouse-extend-internal):
14848 Remove unused variable `orig-window-frame'.
14849
14850 * pcomplete.el (pcomplete-args, pcomplete-begins, pcomplete-last)
14851 (pcomplete-index, pcomplete-stub, pcomplete-seen, pcomplete-norm-func):
14852 Move declarations before first use.
14853 (pcomplete-opt): Mark unused parameters; doc fix.
14854
14855 * proced.el (proced-revert): Mark unused parameter.
14856 (proced-send-signal): Remove unused variable `err'.
14857
14858 * ps-print.el (ps-print-preprint-region, ps-print-preprint):
14859 Rename parameter PREFIX-ARG to ARG.
14860 (ps-basic-plot-string, ps-basic-plot-whitespace):
14861 Mark unused parameters.
14862
14863 * replace.el (replace-count): Define.
14864 (occur-revert-function): Mark unused parameters.
14865 (ido-ignore-item-temp-list, isearch-error, isearch-forward)
14866 (isearch-case-fold-search, isearch-string): Declare.
14867 (occur-engine): Rename parameter CASE-FOLD-SEARCH to CASE-FOLD and
14868 bind `case-fold-search'. Remove unused variables `beg' and `end',
14869 and simplify.
14870 (replace-eval-replacement): Rename parameter REPLACE-COUNT to
14871 COUNT and bind `replace-count'.
14872 (replace-loop-through-replacements): Rename parameter REPLACE-COUNT
14873 to COUNT.
14874
14875 * savehist.el (print-readably, print-string-length): Declare.
14876
14877 * shadowfile.el (shadow-expand-cluster-in-file-name):
14878 Remove unused variable `cluster'.
14879 (shadow-copy-file): Remove unused variable `i'.
14880 (shadow-noquery, shadow-clusters, shadow-site-cluster)
14881 (shadow-parse-fullname, shadow-parse-name, shadow-define-cluster)
14882 (shadow-define-literal-group, shadow-define-regexp-group)
14883 (shadow-make-group, shadow-shadows-of): Clean up docstrings.
14884
14885 * shell.el (shell-filter-ctrl-a-ctrl-b): Mark unused parameter.
14886 (shell): Use `called-interactively-p'.
14887 (shell-directory-tracker): Remove unused variable `chdir-failure'.
14888
14889 * simple.el (compilation-context-lines, comint-file-name-quote-list)
14890 (comint-file-name-chars, comint-delimiter-argument-list): Declare.
14891 (delete-backward-char): Remove unused variable `ocol'.
14892 (minibuffer-avoid-prompt, minibuffer-history-isearch-pop-state)
14893 (line-move-1, event-apply-alt-modifier, event-apply-super-modifier)
14894 (event-apply-hyper-modifier, event-apply-shift-modifier)
14895 (event-apply-control-modifier, event-apply-meta-modifier):
14896 Mark unused parameters.
14897 (undo-make-selective-list): Remove duplicate variable `undo-elt'.
14898 (normal-erase-is-backspace-mode): Remove unused variable `old-state'.
14899
14900 * speedbar.el (speedbar-ignored-directory-expressions)
14901 (speedbar-supported-extension-expressions, speedbar-directory-buttons)
14902 (speedbar-find-file, speedbar-dir-follow)
14903 (speedbar-directory-buttons-follow, speedbar-tag-find)
14904 (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
14905 (speedbar-buffers-line-directory, speedbar-buffer-click):
14906 Mark unused parameters.
14907 (speedbar-tag-file): Remove unused variable `mode'.
14908 (speedbar-buffers-tail-notes): Remove unused variable `mod'; simplify.
14909
14910 * strokes.el (strokes-decode-buffer): Remove unused variable `ext'.
14911
14912 * talk.el (talk): Remove unused variable `display'.
14913
14914 * tar-mode.el (tar-subfile-save-buffer): Remove unused variable `name'.
14915 (tar-write-region-annotate): Mark unused parameter.
14916
14917 * time.el (now, time, load, mail, 24-hours, hour, 12-hours, am-pm)
14918 (minutes, seconds, time-zone, day, year, monthname, month, dayname):
14919 Declare them, wrapped in `with-no-warnings' to avoid replacing one
14920 warning by another.
14921
14922 * time-stamp.el (time-stamp-string-preprocess):
14923 Remove unused variable `require-padding'.
14924
14925 * tree-widget.el (widget-glyph-enable): Declare.
14926 (tree-widget-action): Mark unused parameter.
14927
14928 * w32-fns.el (x-get-selection): Mark unused parameter.
14929 (autoload-make-program, generated-autoload-file): Declare.
14930
14931 * wdired.el (wdired-revert): Mark unused parameters.
14932 (wdired-xcase-word): Remove unused variable `err'.
14933
14934 * whitespace.el (whitespace-buffer-changed): Mark unused parameters.
14935 (whitespace-help-scroll): Remove unused variable `data-help'.
14936
14937 * wid-edit.el (widget-mouse-help, widget-overlay-inactive)
14938 (widget-image-insert, widget-after-change, default)
14939 (widget-default-format-handler, widget-default-notify)
14940 (widget-default-prompt-value, widget-info-link-action)
14941 (widget-url-link-action, widget-function-link-action)
14942 (widget-variable-link-action, widget-file-link-action)
14943 (widget-emacs-library-link-action, widget-emacs-commentary-link-action)
14944 (widget-field-prompt-internal, widget-field-action, widget-field-match)
14945 (widget-choice-mouse-down-action, toggle, widget-radio-button-notify)
14946 (widget-insert-button-action, widget-delete-button-action, visibility)
14947 (widget-documentation-link-action, widget-documentation-string-action)
14948 (widget-const-prompt-value, widget-regexp-match, symbol)
14949 (widget-coding-system-prompt-value)
14950 (widget-key-sequence-value-to-external, sexp)
14951 (widget-sexp-value-to-internal, character, vector, cons)
14952 (widget-choice-prompt-value, widget-boolean-prompt-value)
14953 (widget-color--choose-action): Mark unused parameters.
14954 (widget-item-match-inline, widget-choice-match-inline)
14955 (widget-checklist-match, widget-checklist-match-inline)
14956 (widget-group-match): Rename parameter VALUES to VALS.
14957 (widget-field-value-set): Remove unused variable `size'.
14958 (widget-color-action): Remove unused variables `value' and `start'.
14959
14960 * windmove.el (windmove-wrap-loc-for-movement): Remove unused
14961 variable `dir'. Doc fix.
14962 (windmove-find-other-window): Don't pass it.
14963
14964 * window.el (count-windows): Mark unused parameter.
14965 (bw-adjust-window): Remove unused variable `err'.
14966
14967 * woman.el (woman-file-name): Remove unused variable `default'.
14968 (woman-expand-directory-path): Rename parameters WOMAN-MANPATH and
14969 WOMAN-PATH to PATH-DIRS and PATH-REGEXPS, respectively.
14970 (global-font-lock-mode): Declare.
14971 (woman-decode-region): Mark unused parameter.
14972 (woman-get-tab-stop): Rename parameter TAB-STOP-LIST to TAB-STOPS.
14973
14974 * x-dnd.el (x-dnd-default-test-function, x-dnd-handle-old-kde)
14975 (x-dnd-handle-xdnd, x-dnd-handle-motif): Mark unused parameters.
14976 (x-dnd-handle-moz-url): Remove unused variable `title'.
14977 (x-dnd-handle-xdnd): Remove unused variables `x', `y' and `ret-action'.
14978
14979 * xml.el (xml-parse-tag, xml-parse-attlist):
14980 Remove unused variable `pos'.
14981
14982 2011-04-19 Glenn Morris <rgm@gnu.org>
14983
14984 * calendar/cal-tex.el (cal-tex-list-holidays, cal-tex-cursor-month)
14985 (cal-tex-cursor-week, cal-tex-cursor-week2, cal-tex-cursor-week-iso)
14986 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
14987 (cal-tex-cursor-filofax-daily, cal-tex-mini-calendar)
14988 * calendar/cal-html.el (cal-html-insert-minical):
14989 * calendar/diary-lib.el (diary-list-entries-1, diary-list-entries)
14990 (calendar-mark-date-pattern):
14991 Prefix "unused" locals.
14992
14993 * calendar/cal-dst.el (dst-adjust-time): Remove never-implemented
14994 optional argument `style'.
14995
14996 * calendar/appt.el (appt-make-list):
14997 * calendar/cal-china.el (calendar-chinese-date-string):
14998 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits)
14999 (diary-hebrew-yahrzeit):
15000 * calendar/cal-tex.el (cal-tex-last-blank-p, cal-tex-cursor-week2):
15001 * calendar/calendar.el (calendar-generate-window):
15002 * calendar/time-date.el (time-to-days):
15003 Remove unused local variables.
15004
15005 2011-04-18 Chong Yidong <cyd@stupidchicken.com>
15006
15007 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Use a custom
15008 glyphless-char-display table.
15009 (tabulated-list-glyphless-char-display): New var.
15010
15011 2011-04-18 Sam Steingold <sds@gnu.org>
15012
15013 * vc/add-log.el (change-log-font-lock-keywords): Add "Thanks to"
15014 to acknowledgments.
15015
15016 2011-04-17 Glenn Morris <rgm@gnu.org>
15017
15018 * calendar/diary-lib.el (diary-sexp-entry):
15019 * calendar/holidays.el (holiday-sexp):
15020 Set debug-on-error rather than the removed stack-trace-on-error.
15021
15022 2011-04-16 Glenn Morris <rgm@gnu.org>
15023
15024 * progmodes/f90.el: Use lexical-binding.
15025 (f90-get-correct-indent): Remove unnecessary local variable `cont'.
15026
15027 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
15028
15029 * mail/sendmail.el (mail-mode-map): Use completion-at-point.
15030 (mail-mode): Setup mailalias completion here instead.
15031 * mail/mailalias.el: Use lexical-binding.
15032 (pattern, mailalias-done): Declare dynamic.
15033 (mail-completion-at-point-function): New function, from mail-complete.
15034 (mail-complete): Use it.
15035 (mail-completion-expand): New function.
15036 (mail-get-names): Use it.
15037 (mail-directory, mail-directory-process, mail-directory-stream):
15038 Don't use `pattern' for lexically bound arg.
15039
15040 * emacs-lisp/lisp-mode.el (eval-defun-2): Use eval-sexp-add-defvars.
15041
15042 * htmlfontify.el (hfy-etags-cmd): Remove inoperant eval-and-compile.
15043 (hfy-e2x-etags-cmd, hfy-etags-cmd-alist-default)
15044 (hfy-etags-cmd-alist): Don't eval-and-compile any more.
15045
15046 * emacs-lisp/bytecomp.el (byte-temp-output-buffer-show)
15047 (byte-save-window-excursion, byte-temp-output-buffer-setup)
15048 (byte-interactive-p): Define them again, for use when inlining
15049 old code.
15050
15051 2011-04-15 Juanma Barranquero <lekktu@gmail.com>
15052
15053 * loadup.el: Use `string-to-number', not `string-to-int'.
15054
15055 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
15056
15057 * progmodes/gud.el (gud-gdb): Use completion-at-point instead of
15058 gud-gdb-complete-command.
15059 (gud-gdb-completions): New function, from gud-gdb-complete-command.
15060 (gud-gdb-completion-at-point): New function.
15061 (gud-gdb-completions): Remove.
15062
15063 2011-04-14 Michael Albinus <michael.albinus@gmx.de>
15064
15065 * net/tramp-sh.el (tramp-sh-handle-file-attributes): Handle the case
15066 when the scripts fail. Use `tramp-do-file-attributes-with-ls' then.
15067 (tramp-do-copy-or-rename-file-out-of-band): Do not check any longer
15068 whether `executable-find' is bound.
15069
15070 * net/tramp-smb.el (tramp-smb-handle-copy-file): Fix docstring.
15071
15072 2011-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
15073
15074 * minibuffer.el (completion-in-region-mode-predicate)
15075 (completion-in-region-mode--predicate): New vars.
15076 (completion-in-region, completion-in-region--postch)
15077 (completion-in-region-mode): Use them.
15078 (completion--capf-wrapper): Also return the hook function.
15079 (completion-at-point, completion-help-at-point):
15080 Adjust and provide a predicate.
15081
15082 Preserve arg names for advice of subr and lexical functions (bug#8457).
15083 * help-fns.el (help-function-arglist): Consolidate the subr and
15084 new-byte-code cases. Add argument `preserve-names' to extract names
15085 from the docstring when needed.
15086 * emacs-lisp/advice.el (ad-define-subr-args, ad-undefine-subr-args)
15087 (ad-subr-args-defined-p, ad-get-subr-args, ad-subr-arglist): Remove.
15088 (ad-arglist): Use help-function-arglist's new arg.
15089 (ad-definition-type): Use cond.
15090
15091 2011-04-13 Juanma Barranquero <lekktu@gmail.com>
15092
15093 * autorevert.el (auto-revert-handler):
15094 Bind `remote-file-name-inhibit-cache', not `tramp-cache-inhibit-cache',
15095 which was removed in 2010-10-02T13:21:43Z!michael.albinus@gmx.de.
15096 Don't quote lambda.
15097
15098 * image-mode.el (image-transform-set-scale):
15099 Fix change in 2011-04-09T20:28:01Z!cyd@stupidchicken.com.
15100
15101 2011-04-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
15102
15103 * net/network-stream.el (network-stream-open-starttls): Only do
15104 opportunistic STARTTLS upgrades if we have built-in GnuTLS support.
15105 Upgrades via gnutls-cli are too slow to be done opportunistically.
15106
15107 2011-04-12 Juanma Barranquero <lekktu@gmail.com>
15108
15109 * dframe.el (dframe-current-frame): Remove spurious quote.
15110
15111 2011-04-12 Glenn Morris <rgm@gnu.org>
15112
15113 * calendar/cal-tex.el (cal-tex-end-document):
15114 Try to automatically use latin1 input if needed.
15115
15116 * calendar/cal-hebrew.el (diary-hebrew-rosh-hodesh):
15117 Don't try to cons a mark onto an empty element.
15118
15119 2011-04-11 Leo Liu <sdl.web@gmail.com>
15120
15121 * ido.el (ido-buffer-internal): Allow method 'kill for virtual
15122 buffers.
15123 (ido-kill-buffer-at-head): Support killing virtual buffers.
15124
15125 2011-04-10 Chong Yidong <cyd@stupidchicken.com>
15126
15127 * minibuffer.el (completion-show-inline-help): New var.
15128 (completion--do-completion, minibuffer-complete)
15129 (minibuffer-force-complete, minibuffer-complete-word):
15130 Inhibit minibuffer messages if completion-show-inline-help is nil.
15131
15132 * icomplete.el (icomplete-mode): Bind completion-show-inline-help
15133 to avoid interference from inline help (Bug#5849).
15134
15135 2011-04-10 Leo Liu <sdl.web@gmail.com>
15136
15137 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
15138 Fix typo.
15139
15140 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
15141
15142 * image-mode.el (image-toggle-display-image): Signal an error if
15143 not in Image mode.
15144 (image-transform-mode, image-transform-resize)
15145 (image-transform-set-rotation): Doc fix.
15146 (image-transform-set-resize): Delete.
15147 (image-transform-set-scale, image-transform-fit-to-height)
15148 (image-transform-fit-to-width): Handle image-toggle-display-image
15149 and image-transform-resize directly.
15150
15151 2011-04-08 Sho Nakatani <lay.sakura@gmail.com>
15152
15153 * doc-view.el (doc-view-fit-width-to-window)
15154 (doc-view-fit-height-to-window, doc-view-fit-page-to-window):
15155 New functions for fitting the shown image to the Emacs window size.
15156 (doc-view-mode-map): Add bindings for the new functions.
15157
15158 2011-04-08 Juanma Barranquero <lekktu@gmail.com>
15159
15160 * vc/vc-annotate.el (vc-annotate-show-log-revision-at-line):
15161 Fix typo in docstring.
15162
15163 2011-04-08 Eli Zaretskii <eliz@gnu.org>
15164
15165 * files.el (file-size-human-readable): Produce one digit after
15166 decimal, like "ls -lh" does.
15167
15168 * ls-lisp.el (ls-lisp-format-file-size): Allow for 7 characters in
15169 the file size representation.
15170
15171 * simple.el (list-processes): If async subprocesses are not
15172 available, error out with a clear error message.
15173
15174 2011-04-08 Chong Yidong <cyd@stupidchicken.com>
15175
15176 * help.el (help-form-show): New function, to be called from C.
15177 Put help-form output in a buffer named differently than *Help*.
15178
15179 2011-04-08 Eli Zaretskii <eliz@gnu.org>
15180
15181 * files.el (file-size-human-readable): New function.
15182
15183 * ls-lisp.el (ls-lisp-format-file-size): Use it, instead of
15184 computing the representation inline. Don't require `cl'.
15185
15186 2011-04-08 Glenn Morris <rgm@gnu.org>
15187
15188 * man.el (Man-page-header-regexp): Solaris < 2.6 no longer supported.
15189
15190 * net/browse-url.el (browse-url-firefox):
15191 Test system-type, not system-configuration.
15192
15193 * vc/log-edit.el (log-edit-empty-buffer-p): New function.
15194 (log-edit-insert-cvs-template, log-edit-insert-cvs-rcstemplate):
15195 Use log-edit-empty-buffer-p. (Bug#7598)
15196
15197 * net/rlogin.el (rlogin-process-connection-type): Simplify.
15198 (rlogin-mode-map): Initialize in the defvar.
15199 (rlogin): Use ignore-errors.
15200
15201 * replace.el (occur-mode-map): Some fixes for menu items.
15202
15203 2011-04-07 Aaron S. Hawley <aaron.s.hawley@gmail.com>
15204
15205 * play/morse.el (denato-region): Handle varying case. (Bug#8386)
15206
15207 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
15208
15209 * emacs-lisp/cconv.el (cconv--analyse-use): Ignore "ignored" when
15210 issuing unused warnings.
15211
15212 * emacs-lisp/tabulated-list.el (tabulated-list-print): Use lambda
15213 macro directly.
15214
15215 * simple.el: Lisp reimplement of list-processes. Based on an
15216 earlier reimplementation by Leo Liu, but using tabulated-list.el.
15217 (process-menu-mode): New major mode.
15218 (list-processes--refresh, list-processes):
15219 (process-menu-visit-buffer): New functions.
15220
15221 * files.el (save-buffers-kill-emacs): Don't assume any return
15222 value of list-processes, which is undocumented anyway.
15223
15224 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
15225
15226 * emacs-lisp/tabulated-list.el: New file.
15227
15228 * emacs-lisp/package.el: Use Tabulated List mode.
15229 (package-menu-mode-map): Inherit from tabulated-list-mode-map.
15230 (package-menu-mode): Derive from tabulated-list-mode. Set up the
15231 table format using Tabulated List mode variables.
15232 (package--push): New macro, replacing package-list-maybe-add.
15233 (package-menu--generate): Use package--push. Renamed from
15234 package--generate-package-list.
15235 (package-menu-refresh, list-packages): Use it.
15236 (package-menu--print-info): Rename from package-print-package.
15237 Return insertion data instead of inserting it directly.
15238 (package-menu-describe-package, package-menu-execute):
15239 Use tabulated-list-get-id.
15240 (package-menu-mark-delete, package-menu-mark-install)
15241 (package-menu-mark-unmark, package-menu-backup-unmark)
15242 (package-menu-mark-obsolete-for-deletion):
15243 Use tabulated-list-put-tag.
15244 (package--list-packages, package-menu-revert)
15245 (package-menu-get-package, package-menu-get-version)
15246 (package-menu-sort-by-column): Functions deleted.
15247 (package-menu-package-list, package-menu-sort-key): Vars deleted.
15248 (package-menu--status-predicate, package-menu--version-predicate)
15249 (package-menu--name-predicate)
15250 (package-menu--description-predicate): Handle arguments in the
15251 Tabulated List format.
15252 (package-list-packages-no-fetch): Call list-packages.
15253
15254 2011-04-06 Juanma Barranquero <lekktu@gmail.com>
15255
15256 * files.el (after-find-file-from-revert-buffer): Remove variable.
15257 (after-find-file): Don't bind it.
15258 (revert-buffer-in-progress-p): New variable.
15259 (revert-buffer): Bind it.
15260 Pass nil for `after-find-file-from-revert-buffer'.
15261
15262 * saveplace.el (save-place-find-file-hook): Use new variable
15263 `rever-buffer-in-progress-p', not `after-find-file-from-revert-buffer'.
15264
15265 2011-04-06 Glenn Morris <rgm@gnu.org>
15266
15267 * Makefile.in (AUTOGEN_VCS): New variable.
15268 (autoloads): Use $AUTOGEN_VCS.
15269
15270 * calendar/cal-move.el (calendar-scroll-toolkit-scroll): New function.
15271 * calendar/calendar.el (calendar-mode-map):
15272 Check for toolkit scroll bars. (Bug#8305)
15273
15274 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
15275
15276 * minibuffer.el (completion-in-region--postch)
15277 (completion-in-region-mode): Remove unnecessary messages.
15278
15279 2011-04-05 Juanma Barranquero <lekktu@gmail.com>
15280
15281 * font-lock.el (font-lock-refresh-defaults):
15282 Don't bind `hi-lock--inhibit-font-lock-hook', removed in
15283 2010-10-09T04:09:19Z!cyd@stupidchicken.com and 2010-10-11T23:57:49Z!lekktu@gmail.com (2010-10-12).
15284
15285 * info.el (Info-directory-list, Info-read-node-name-2)
15286 (Info-split-parameter-string): Doc fixes.
15287 (Info-virtual-nodes): Reflow docstring.
15288 (Info-find-file, Info-directory-toc-nodes, Info-history-toc-nodes)
15289 (Info-apropos-toc-nodes, info-finder, Info-get-token)
15290 (Info-find-emacs-command-nodes, Info-speedbar-key-map):
15291 Fix typos in docstrings.
15292 (Info-revert-buffer-function, Info-search, Info-isearch-pop-state)
15293 (Info-speedbar-hierarchy-buttons, Info-speedbar-goto-node)
15294 (Info-speedbar-buttons, Info-desktop-buffer-misc-data)
15295 (Info-restore-desktop-buffer): Mark unused parameters.
15296 (Info-directory-find-file, Info-directory-find-node)
15297 (Info-history-find-file, Info-history-find-node, Info-toc-find-node)
15298 (Info-virtual-index-find-node, Info-apropos-find-file)
15299 (Info-apropos-find-node, Info-finder-find-file, Info-finder-find-node):
15300 Mark unused parameters; fix typos in docstrings.
15301 (Info-virtual-index): Remove unused local variable `nodename'.
15302
15303 2011-04-05 Deniz Dogan <deniz@dogan.se>
15304
15305 * net/rcirc.el: Update my e-mail address.
15306 (rcirc-mode-map): Remove M-o binding.
15307
15308 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
15309
15310 * startup.el (command-line): Save the cursor's theme-face
15311 directly, instead of using face-override-spec.
15312
15313 * custom.el (load-theme): Minor optimization in assigning faces.
15314
15315 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
15316
15317 * help-fns.el (describe-variable): Complete all variables having
15318 documentation, including keywords.
15319 http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00112.html
15320
15321 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
15322
15323 Convert to lexical-binding.
15324
15325 * bs.el (bs-refresh, bs-sort-buffer-interns-are-last)
15326 (bs--get-marked-string, bs--get-modified-string)
15327 (bs--get-readonly-string, bs--get-size-string, bs--get-name)
15328 (bs--get-mode-name, bs--get-file-name): Mark unused arguments.
15329 (bs--configuration-name-for-prefix-arg): Rename argument PREFIX-ARG.
15330
15331 * ehelp.el (electric-help-execute-extended)
15332 (electric-help-ctrl-x-prefix):
15333 * hexl.el (hexl-revert-buffer-function):
15334 * linum.el (linum-after-change, linum-after-scroll):
15335 * emacs-lisp/re-builder.el (reb-auto-update): Mark unused arguments.
15336
15337 * help-fns.el (help-describe-category-set): Remove unused ERR variable.
15338
15339 2011-04-04 Daiki Ueno <ueno@unixuser.org>
15340
15341 * epa-dired.el:
15342 * epa-mail.el:
15343 * epa-hook.el:
15344 * epa-file.el:
15345 * epa.el:
15346 * epg.el: Use lexical binding.
15347
15348 2011-04-03 Chong Yidong <cyd@stupidchicken.com>
15349
15350 * dired-aux.el (dired-create-files): Add docstring (Bug#7970).
15351
15352 * textmodes/flyspell.el (flyspell-word): Recognize default
15353 dictionary case for flyspell-mark-duplications-exceptions.
15354 Use regexp matching for languages.
15355 (flyspell-mark-duplications-exceptions): Add "that" and "had" for
15356 default dictionary (Bug#7926).
15357
15358 2011-04-02 Chong Yidong <cyd@stupidchicken.com>
15359
15360 * emacs-lisp/package.el (package--with-work-buffer):
15361 Recognize https URLs.
15362
15363 * net/network-stream.el: Move from gnus/proto-stream.el.
15364 Change prefix to network-stream throughout.
15365 (open-protocol-stream): Merge into open-network-stream, leaving
15366 open-protocol-stream as an alias. Handle nil BUFFER args.
15367
15368 * subr.el (open-network-stream): Move to net/network-stream.el.
15369
15370 2011-04-02 Glenn Morris <rgm@gnu.org>
15371
15372 * find-dired.el (find-exec-terminator): New option.
15373 (find-ls-option): Test for -ls support.
15374 (find-ls-subdir-switches): Test for -b in find-ls-option.
15375 (find-dired, find-grep-dired): Doc fixes.
15376 (find-dired): Use find-exec-terminator.
15377
15378 * find-dired.el (find-ls-option, find-ls-subdir-switches)
15379 (find-grep-options): Do not autoload these defcustoms, remove purecopy.
15380 (find-name-arg): Remove purecopy.
15381
15382 * progmodes/grep.el (grep-find-use-xargs): Doc fix.
15383 (grep-compute-defaults): Check for `-exec COMMAND +' support.
15384 Set grep-find-use-xargs, grep-find-command, and grep-find-template
15385 accordingly. Don't add the null-device if not needed.
15386
15387 * files.el (save-some-buffers): Doc fix.
15388
15389 2011-04-02 Eli Zaretskii <eliz@gnu.org>
15390
15391 * makefile.w32-in (EMACS): Default to ../src/$(BLD)/emacs.exe.
15392
15393 2011-04-01 Juanma Barranquero <lekktu@gmail.com>
15394
15395 * progmodes/idlwave.el (idlwave-one-key-select, idlwave-list-abbrevs):
15396 Use `dolist' rather than `mapcar'.
15397
15398 2011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
15399
15400 Add lexical binding.
15401
15402 * subr.el (apply-partially): Use new closures rather than CL.
15403 (--dolist-tail--, --dotimes-limit--): Don't declare dynamic.
15404 (dolist, dotimes): Use slightly different expansion for lexical code.
15405 (functionp): Move to C.
15406 (letrec): New macro.
15407 (with-wrapper-hook): Use it and apply-partially instead of CL.
15408 (eval-after-load): Preserve lexical-binding.
15409 (save-window-excursion, with-output-to-temp-buffer): Turn them
15410 into macros.
15411
15412 * simple.el (with-wrapper-hook, apply-partially): Move to subr.el.
15413
15414 * help-fns.el (help-split-fundoc): Return nil if there's nothing else
15415 than the arglist.
15416 (help-add-fundoc-usage): Don't add `Not documented'.
15417 (help-function-arglist): Handle closures, subroutines, and new
15418 byte-code-functions.
15419 (help-make-usage): Remove leading underscores.
15420 (describe-function-1): Handle closures.
15421 (describe-variable): Use special-variable-p for completion.
15422
15423 * files.el (lexical-binding): Declare safe.
15424
15425 * emacs-lisp/pcase.el: Don't use destructuring-bind.
15426 (pcase--memoize): Rename from pcase-memoize. Change weakness.
15427 (pcase): Add `let' pattern.
15428 Change memoization so it actually works.
15429 (pcase-mutually-exclusive-predicates): Add byte-code-function-p.
15430 (pcase--u1) <guard, pred>: Fix possible shadowing problem.
15431 <let>: New case.
15432
15433 * emacs-lisp/macroexp.el: Use lexical binding.
15434 (macroexpand-all-1): Check obsolete macros. Expand compiler-macros.
15435 Don't convert ' to #' without checking that it's indeed quoting
15436 a lambda.
15437
15438 * emacs-lisp/lisp-mode.el (eval-last-sexp-1):
15439 Use eval-sexp-add-defvars.
15440 (eval-sexp-add-defvars): New fun.
15441
15442 * emacs-lisp/float-sup.el (pi): Don't declare as dynamically bound.
15443
15444 * emacs-lisp/eieio.el (byte-compile-file-form-defmethod):
15445 Don't autoload.
15446 (eieio-defgeneric-form-primary-only-one): Use `byte-compile' rather
15447 than the internal `byte-compile-lambda'.
15448 (defmethod): Don't hide code under quotes.
15449 (eieio-defmethod): New `code' argument.
15450
15451 * emacs-lisp/eieio-comp.el: Remove.
15452
15453 * emacs-lisp/edebug.el (edebug-eval-defun)
15454 (edebug-eval-top-level-form): Use eval-sexp-add-defvars.
15455 (edebug-toggle): Avoid `eval'.
15456
15457 * emacs-lisp/disass.el (disassemble-internal): Handle new
15458 `closure' objects.
15459 (disassemble-1): Handle new byte codes.
15460
15461 * emacs-lisp/cl.el (pushnew): Silence warning.
15462
15463 * emacs-lisp/cl-macs.el (cl-byte-compile-block)
15464 (cl-byte-compile-throw): Remove.
15465 (cl-block-wrapper, cl-block-throw): Use compiler-macros instead.
15466
15467 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Properly quote CL
15468 closures.
15469
15470 * emacs-lisp/cconv.el: New file.
15471
15472 * emacs-lisp/bytecomp.el: Use lexical binding instead of
15473 a "bytecomp-" prefix. Macroexpand everything as a separate phase.
15474 (byte-compile-initial-macro-environment):
15475 Handle declare-function here.
15476 (byte-compile--lexical-environment): New var.
15477 (byte-stack-ref, byte-stack-set, byte-discardN)
15478 (byte-discardN-preserve-tos): New lap codes.
15479 (byte-interactive-p): Don't use any more.
15480 (byte-compile-push-bytecodes, byte-compile-push-bytecode-const2):
15481 New macros.
15482 (byte-compile-lapcode): Use them and handle new lap codes.
15483 (byte-compile-obsolete): Remove.
15484 (byte-compile-arglist-signature): Handle new byte-code arg"lists".
15485 (byte-compile-arglist-warn): Check late def of inlinable funs.
15486 (byte-compile-cl-warn): Don't silence warnings for compiler-macros
15487 since they should have been expanded by now.
15488 (byte-compile--outbuffer): Rename from bytecomp-outbuffer.
15489 (byte-compile-from-buffer): Remove unused second arg.
15490 (byte-compile-preprocess): New function.
15491 (byte-compile-toplevel-file-form): New function to distinguish
15492 file-form calls from outside from file-form calls from hunk-handlers.
15493 (byte-compile-file-form): Simplify.
15494 (byte-compile-file-form-defsubst): Remove.
15495 (byte-compile-file-form-defmumble): Simplify now that
15496 byte-compile-lambda always returns a byte-code-function.
15497 (byte-compile): Preprocess.
15498 (byte-compile-byte-code-maker, byte-compile-byte-code-unmake):
15499 Remove, not used any more.
15500 (byte-compile-arglist-vars, byte-compile-make-lambda-lexenv)
15501 (byte-compile-make-args-desc): New funs.
15502 (byte-compile-lambda): Handle lexical functions. Always return
15503 a byte-code-function.
15504 (byte-compile-reserved-constants): New var, to make up room for
15505 closed-over variables.
15506 (byte-compile-constants-vector): Obey it.
15507 (byte-compile-top-level): New args `lexenv' and `reserved-csts'.
15508 (byte-compile-macroexpand-declare-function): New function.
15509 (byte-compile-form): Call byte-compile-unfold-bcf to inline immediate
15510 byte-code-functions.
15511 (byte-compile-form): Check obsolescence here.
15512 (byte-compile-inline-lapcode, byte-compile-unfold-bcf): New functions.
15513 (byte-compile-variable-ref): Remove.
15514 (byte-compile-dynamic-variable-op): New fun.
15515 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
15516 (byte-compile-variable-set): New funs.
15517 (byte-compile-discard): Add 2 args.
15518 (byte-compile-stack-ref, byte-compile-stack-set)
15519 (byte-compile-make-closure, byte-compile-get-closed-var): New funs.
15520 (byte-compile-funarg, byte-compile-funarg-2): Remove, handled in
15521 macroexpand-all instead.
15522 (byte-compile-quote-form): Remove.
15523 (byte-compile-push-binding-init, byte-compile-not-lexical-var-p)
15524 (byte-compile-bind, byte-compile-unbind): New funs.
15525 (byte-compile-let): Handle let* and lexical binding.
15526 (byte-compile-let*): Remove.
15527 (byte-compile-catch, byte-compile-unwind-protect)
15528 (byte-compile-track-mouse, byte-compile-condition-case):
15529 Handle a new :fun-body form, used for lexical scoping.
15530 (byte-compile-save-window-excursion)
15531 (byte-compile-with-output-to-temp-buffer): Remove.
15532 (byte-compile-defun): Simplify.
15533 (byte-compile-stack-adjustment): New fun.
15534 (byte-compile-out): Use it.
15535 (byte-compile-refresh-preloaded): Don't reload byte-compiler files.
15536
15537 * emacs-lisp/byte-run.el (make-obsolete): Don't set the `byte-compile'
15538 handler any more.
15539
15540 * emacs-lisp/byte-opt.el: Use lexical binding.
15541 (byte-inline-lapcode): Remove (to bytecomp).
15542 (byte-compile-inline-expand): Pay attention to inlining to/from
15543 lexically bound code.
15544 (byte-compile-unfold-lambda): Don't handle byte-code-functions
15545 any more.
15546 (byte-optimize-form-code-walker): Don't handle save-window-excursion
15547 any more and don't call compiler-macros.
15548 (byte-compile-splice-in-already-compiled-code): Remove.
15549 (byte-code): Don't inline any more.
15550 (disassemble-offset): Receive `bytes' as argument rather than via
15551 dynamic scoping.
15552 (byte-compile-tag-number): Declare before first use.
15553 (byte-decompile-bytecode-1): Handle new byte-codes, don't change
15554 `return' even if make-spliceable.
15555 (byte-compile-side-effect-and-error-free-ops): Add stack-ref, remove
15556 obsolete interactive-p.
15557 (byte-optimize-lapcode): Optimize new lap-codes.
15558 Don't trip up on new form of `byte-constant' lap code.
15559
15560 * emacs-lisp/autoload.el (make-autoload): Don't burp on trivial macros.
15561
15562 * emacs-lisp/advice.el (ad-arglist): Use help-function-arglist.
15563
15564 * custom.el (custom-initialize-default, custom-declare-variable):
15565 Use `defvar'.
15566
15567 * Makefile.in (BIG_STACK_DEPTH, BIG_STACK_OPTS, BYTE_COMPILE_FLAGS):
15568 New variables.
15569 (compile-onefile, .el.elc, compile-calc, recompile): Use them.
15570 (COMPILE_FIRST): Add macroexp and cconv.
15571 * makefile.w32-in: Mirror changes in Makefile.in.
15572
15573 * vc/cvs-status.el:
15574 * vc/diff-mode.el:
15575 * vc/log-edit.el:
15576 * vc/log-view.el:
15577 * vc/smerge-mode.el:
15578 * textmodes/bibtex-style.el:
15579 * textmodes/css.el:
15580 * startup.el:
15581 * uniquify.el:
15582 * minibuffer.el:
15583 * newcomment.el:
15584 * reveal.el:
15585 * server.el:
15586 * mpc.el:
15587 * emacs-lisp/smie.el:
15588 * doc-view.el:
15589 * dired.el:
15590 * abbrev.el: Use lexical binding.
15591
15592 2011-04-01 Eli Zaretskii <eliz@gnu.org>
15593
15594 * info.el (info-display-manual): New function.
15595
15596 2011-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
15597
15598 * loadup.el: Load minibuffer after loaddefs, to use define-minor-mode.
15599
15600 2011-03-31 Tassilo Horn <tassilo@member.fsf.org>
15601
15602 * net/rcirc.el (rcirc-handler-001): Only authenticate, if there's
15603 an entry for that server in rcirc-authinfo. (Bug#8385)
15604
15605 2011-03-31 Glenn Morris <rgm@gnu.org>
15606
15607 * progmodes/f90.el (f90-find-tag-default): Handle multiple `%'.
15608
15609 * generic-x.el (etc-fstab-generic-mode): Add ext4, sysfs keywords.
15610
15611 2011-03-30 Christoph Scholtes <cschol2112@googlemail.com>
15612
15613 * progmodes/python.el (python-default-interpreter)
15614 (python-python-command-args, python-jython-command-args)
15615 (python-which-shell, python-which-args, python-which-bufname)
15616 (python-file-queue, python-comint-output-filter-function)
15617 (python-toggle-shells, python-shell): Remove obsolete defcustoms,
15618 variables and functions.
15619
15620 2011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
15621
15622 * minibuffer.el (completion-table-dynamic): Optimize `boundaries'.
15623 (completion-in-region-mode): New minor mode.
15624 (completion-in-region): Use it.
15625 (completion-in-region--data, completion-in-region-mode-map): New vars.
15626 (completion-in-region--postch): New function.
15627 (completion--capf-misbehave-funs, completion--capf-safe-funs):
15628 New vars.
15629 (completion--capf-wrapper): New function.
15630 (completion-at-point): Use it to track well-behavedness of
15631 hook functions.
15632 (completion-help-at-point): New command.
15633
15634 2011-03-30 Jason Merrill <jason@redhat.com> (tiny change)
15635
15636 * vc/add-log.el (add-change-log-entry): Don't use whitespace
15637 syntax class to search for whitespace on a single line
15638 (Message-ID: <4D938140.4030905@redhat.com>).
15639
15640 2011-03-30 Leo Liu <sdl.web@gmail.com>
15641
15642 * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
15643 New commands.
15644 (edit-abbrevs-map): Bind them here.
15645 (write-abbrev-file): New optinal arg VERBOSE. (Bug#5937)
15646
15647 2011-03-29 Ken Manheimer <ken.manheimer@gmail.com>
15648
15649 * allout.el (allout-hide-by-annotation, allout-flag-region):
15650 Reduce possibility of overlay leakage by making them volatile.
15651
15652 * allout-widgets.el (allout-widgets-tally): Define as nil so the
15653 hash is not shared between buffers. Mode initialization is
15654 responsible for giving it a useful starting value.
15655 (allout-item-span): Reduce possibility of overlay leakage by
15656 making them volatile.
15657 (allout-widgets-count-buttons-in-region): Add diagnostic function
15658 for tracking down button overlay leaks.
15659
15660 2011-03-29 Leo Liu <sdl.web@gmail.com>
15661
15662 * ido.el (ido-read-internal): Use the default history var
15663 minibuffer-history if no HISTORY is specified.
15664
15665 2011-03-28 Brian T. Sniffen <bsniffen@akamai.com> (tiny change)
15666
15667 * net/imap.el (imap-shell-open, imap-process-connection-type):
15668 Use imap-process-connection-type for 'shell' streams as well as
15669 Kerberos, SSL, other subprocesses.
15670
15671 2011-03-28 Leo Liu <sdl.web@gmail.com>
15672
15673 * abbrev.el (abbrev-table-empty-p): New function.
15674 (prepare-abbrev-list-buffer): Place empty abbrev tables after
15675 nonempty ones. (Bug#5937)
15676
15677 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
15678
15679 * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
15680
15681 2011-03-27 Leo Liu <sdl.web@gmail.com>
15682
15683 * ansi-color.el (ansi-color-names-vector): Allow cons cell value
15684 for foreground and background colors.
15685 (ansi-color-make-color-map): Adapt.
15686
15687 2011-03-25 Leo Liu <sdl.web@gmail.com>
15688
15689 * midnight.el (midnight-time-float): Remove. Note it calculates
15690 the microsecond component incorrectly and seconds-to-time does the
15691 same job.
15692 Remove redundant (require 'timer).
15693
15694 * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
15695 (ido-completions): Remove unused arguments. (Bug#8329)
15696
15697 2011-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
15698
15699 * minibuffer.el (completion--flush-all-sorted-completions):
15700 Remove itself from hook.
15701 (completion-at-point): Let the functions perform the completion
15702 immediately and return nil or t.
15703 * comint.el (comint-dynamic-complete-functions): Now identical to
15704 completion-at-point-functions.
15705 (comint-dynamic-list-input-ring): Remove unused var `index'.
15706 (comint--match-partial-filename, comint--unquote&expand-filename):
15707 New funs, split from comint-match-partial-filename.
15708 (comint-dynamic-complete): Use completion-at-point.
15709 (comint-dynamic-complete-filename): Use comint--match-partial-filename.
15710
15711 2011-03-24 Drew Adams <drew.adams@oracle.com>
15712
15713 * thingatpt.el: Support `defun'.
15714
15715 2011-03-23 Leo Liu <sdl.web@gmail.com>
15716
15717 * abbrevlist.el: Move to obsolete/abbrevlist.el.
15718
15719 * help-mode.el (help-mode-finish): Tweak regexp.
15720
15721 2011-03-23 Glenn Morris <rgm@gnu.org>
15722
15723 * eshell/esh-opt.el (eshell-eval-using-options):
15724 Do not bind unused local variable `eshell-option-stub'.
15725
15726 * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
15727
15728 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
15729
15730 * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
15731 keymap variable in `with-no-warnings' to avoid a warning when the
15732 keymap has been already `defconst'ed.
15733
15734 2011-03-22 Leo Liu <sdl.web@gmail.com>
15735
15736 * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
15737 encode all chars in abbrevs; otherwise use emacs-mule or
15738 utf-8-emacs. (Bug#8308)
15739
15740 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
15741
15742 * simple.el (backward-delete-char-untabify):
15743 Avoid warning about using `delete-backward-char'.
15744
15745 * image.el (image-type-file-name-regexps): Make it variable.
15746 `imagemagick-register-types' modifies it, and the user may want
15747 to add new extensions for known image types.
15748 (imagemagick-register-types): Throw error if not using ImageMagick.
15749
15750 2011-03-22 Leo Liu <sdl.web@gmail.com>
15751
15752 * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
15753 located before rcirc-prompt-end-marker.
15754 (rcirc-complete): Error if point is not after rcirc prompt.
15755 Handle the case when table is nil.
15756 (rcirc-user-authenticated): Define to fix compiler warning.
15757
15758 2011-03-22 Chong Yidong <cyd@stupidchicken.com>
15759
15760 * custom.el (custom--inhibit-theme-enable): Make it affect only
15761 custom-theme-set-variables and custom-theme-set-faces.
15762 (provide-theme): Ignore custom--inhibit-theme-enable.
15763 (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
15764 (custom-enabling-themes): Delete variable.
15765 (enable-theme): Accept only loaded themes as arguments.
15766 Ignore the special custom-enabled-themes variable.
15767 (custom-enabled-themes): Forbid themes from setting this.
15768 Eliminate use of custom-enabling-themes.
15769 (custom-push-theme): Quote "changed" custom var entry.
15770
15771 2011-03-21 Leo Liu <sdl.web@gmail.com>
15772
15773 * ido.el (ido-read-internal): Add ido-selected to history instead
15774 of user input.
15775
15776 2011-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
15777
15778 * subr.el (deferred-action-list, deferred-action-function):
15779 Mark obsolete.
15780
15781 2011-03-21 Leo Liu <sdl.web@gmail.com>
15782
15783 * vc/log-view.el: Remove (require 'wid-edit), not needed after the
15784 change on 2011-02-13 (bug#8309).
15785
15786 * minibuffer.el (read-file-name-function): Change default value.
15787 (read-file-name--defaults): Rename from read-file-name-defaults.
15788 (read-file-name-default): Rename from read-file-name.
15789 (read-file-name): Call read-file-name-function.
15790
15791 2011-03-21 Glenn Morris <rgm@gnu.org>
15792
15793 * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
15794 Doc fixes.
15795
15796 2011-03-21 Chong Yidong <cyd@stupidchicken.com>
15797
15798 * cus-theme.el: Add missing provide statement.
15799 (customize-create-theme): Extract theme value correctly.
15800 (custom-theme-visit-theme): Autoload.
15801 (customize-create-theme): Prompt before inserting default faces.
15802
15803 2011-03-20 Jay Belanger <jay.p.belanger@gmail.com>
15804
15805 * calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
15806 units and musical notes.
15807
15808 2011-03-20 Leo Liu <sdl.web@gmail.com>
15809
15810 * ido.el (ido-read-internal): Use completing-read-default.
15811 (ido-completing-read): Fix compatibility with completing-read.
15812
15813 2011-03-20 Christian Ohler <ohler@gnu.org>
15814
15815 * emacs-lisp/ert.el (ert-run-tests-batch): Remove unused variable.
15816 (ert-delete-all-tests): Use `called-interactively-p' rather than
15817 `interactive-p'.
15818 (ert--make-xrefs-region): Respect END.
15819
15820 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
15821
15822 * dired-aux.el (dired-create-directory): Signal an error if the
15823 directory already exists (Bug#8246).
15824
15825 * facemenu.el (list-colors-display): Call list-faces-display
15826 inside with-help-window.
15827 (list-colors-print): Use display property to align the final
15828 column, instead of checking window-width.
15829
15830 2011-03-19 Eli Zaretskii <eliz@gnu.org>
15831
15832 * vc/emerge.el (emerge-metachars): Separate value for ms-dos and
15833 windows-nt systems.
15834 (emerge-protect-metachars): Quote correctly for ms-dos and
15835 windows-nt systems.
15836
15837 2011-03-19 Ralph Schleicher <rs@ralph-schleicher.de>
15838
15839 * info.el (info-initialize): Replace all uses of `:' with
15840 path-separator for compatibility with non-Unix systems.
15841 Cache quoting of path-separator. (Bug#8258)
15842
15843 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
15844
15845 * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
15846 (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
15847 (mouse-avoidance-mode): Fix typos in docstrings.
15848
15849 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
15850
15851 * startup.el (package-subdirectory-regexp): Move from package.el.
15852 Omit \\` and \\', and let callers add them.
15853
15854 * emacs-lisp/package.el (package-strip-version)
15855 (package-load-all-descriptors): Add \\` and \\' to
15856 package-subdirectory-regexp before using it.
15857 (package-untar-buffer): New arg DIR; ensure that file untars only
15858 into this expected directory. Remove superfluous delete-region.
15859 (package-unpack): Caller changed.
15860 (package-tar-file-info): Use package-subdirectory-regexp.
15861
15862 2011-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
15863
15864 * vc/diff-mode.el (diff-mode-map): Shadow problematic bindings from
15865 diff-mode-shared-map (bug#8284).
15866 (diff-mode-shared-map): Re-introduce some bindings that were problematic.
15867
15868 2011-03-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
15869
15870 * calendar/time-date.el (format-seconds): Use assoc instead of
15871 assoc-string, since assoc-string doesn't exist in XEmacs.
15872
15873 2011-03-17 Juanma Barranquero <lekktu@gmail.com>
15874
15875 * custom.el (custom-known-themes): Reflow docstring.
15876 (custom-theme-load-path): Fix typo in docstring.
15877 (load-theme): Fix typo in error message.
15878 (custom-available-themes, custom-variable-theme-value):
15879 Use `let', not `let*'.
15880
15881 2011-03-17 Jay Belanger <jay.p.belanger@gmail.com>
15882
15883 * calc/README: Mention inclusion of musical notes.
15884
15885 * calc/calc-units.el (calc-lu-quant): Rename from
15886 `calc-logunits-quantity'.
15887 (calcFunc-lupquant): Rename from `calcFunc-powerquant'.
15888 (calcFunc-lufquant): Rename from `calcFunc-fieldquant'.
15889 (calc-db): Rename from `calc-dblevel'.
15890 (calcFunc-dbpower): Rename from `calcFunc-dbpowerlevel'.
15891 (calcFunc-dbfield): Rename from `calcFunc-dbfieldlevel'.
15892 (calc-np): Rename from `calc-nplevel'.
15893 (calcFunc-nppower): Rename from `calcFunc-nppowerlevel'.
15894 (calcFunc-npfield): Rename from `calcFunc-npfieldlevel'.
15895 (calc-lu-plus): Rename from `calc-logunits-add'.
15896 (calcFunc-lupadd): Rename from `calcFunc-lupoweradd'.
15897 (calcFunc-lufadd): Rename from `calcFunc-lufieldadd'.
15898 (calc-lu-minus): Rename from `calc-logunits-sub'.
15899 (calcFunc-lupsub): Rename from `calcFunc-lupowersub'.
15900 (calcFunc-lufsub): Rename from `calcFunc-lufieldsub'.
15901 (calc-lu-times): Rename from `calc-logunits-mul'.
15902 (calcFunc-lupmul): Rename from `calcFunc-lupowermul'.
15903 (calcFunc-lufmul): Rename from `calcFunc-lufieldmul'.
15904 (calc-lu-divide): Rename from `calc-logunits-div'.
15905 (calcFunc-lupdiv): Rename from `calcFunc-lupowerdiv'.
15906 (calcFunc-lufdiv): Rename from `calcFunc-lufielddiv'.
15907
15908 * calc/calc-ext.el (calc-init-extensions): Update the names of the
15909 functions being autoloaded.
15910
15911 * calc/calc.el (calc-lu-power-reference): Rename from
15912 `calc-logunits-power-reference'.
15913 (calc-lu-field-reference): Rename from
15914 `calc-logunits-field-reference'.
15915
15916 * calc/calc-help.el (calc-l-prefix-help):
15917 Mention musical note functions.
15918
15919 2011-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
15920
15921 * minibuffer.el (completion-all-sorted-completions):
15922 Use :completion-cycle-penalty text property if present.
15923
15924 2011-03-16 Ken Manheimer <ken.manheimer@gmail.com>
15925
15926 * allout.el (allout-yank-processing): Adjust for new rebulleting
15927 regime so bullet being yanked is used without prompting the user
15928 for a choice.
15929
15930 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
15931
15932 * startup.el (command-line): Warn the user that _emacs is deprecated.
15933
15934 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
15935
15936 * progmodes/delphi.el (delphi-search-path, delphi-indent-level)
15937 (delphi-verbose, delphi-comment-face, delphi-string-face)
15938 (delphi-keyword-face, delphi-ignore-changes, delphi-indent-line)
15939 (delphi-mode-abbrev-table, delphi-debug-buffer, delphi-tab)
15940 (delphi-find-unit, delphi-find-current-xdef, delphi-fill-comment)
15941 (delphi-new-comment-line, delphi-font-lock-defaults)
15942 (delphi-debug-mode-map, delphi-mode-syntax-table, delphi-mode):
15943 Fix typos in docstrings.
15944
15945 2011-03-15 Ken Manheimer <ken.manheimer@gmail.com>
15946
15947 * allout.el (allout-make-topic-prefix, allout-rebullet-heading):
15948 Invert the roles of character and string values for INSTEAD, so a
15949 string is used for the more common case of a defaulting prompt.
15950
15951 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
15952
15953 * progmodes/ruby-mode.el (ruby-backward-sexp):
15954 * progmodes/ebrowse.el (ebrowse-draw-file-member-info):
15955 * play/gamegrid.el (gamegrid-make-face):
15956 * play/bubbles.el (bubbles--grid-width, bubbles--grid-height)
15957 (bubbles--colors, bubbles--shift-mode, bubbles--initialize-images):
15958 * notifications.el (notifications-notify):
15959 * net/xesam.el (xesam-search-engines):
15960 * net/quickurl.el (quickurl-list-insert):
15961 * vc/vc-hg.el (vc-hg-dir-printer): Fix use of case.
15962
15963 2011-03-15 Chong Yidong <cyd@stupidchicken.com>
15964
15965 * startup.el (command-line): Update package subdirectory regexp.
15966
15967 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
15968
15969 * allout.el (allout-abbreviate-flattened-numbering)
15970 (allout-mode-deactivate-hook): Fix up obsolescence "date".
15971
15972 * subr.el (read-char-choice): Only show the cursor after the prompt,
15973 not after the answer.
15974
15975 2011-03-15 Kevin Ryde <user42@zip.com.au>
15976
15977 * help-fns.el (variable-at-point): Skip leading quotes, if any
15978 (bug#8253).
15979
15980 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
15981
15982 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
15983 warning message.
15984
15985 2011-03-14 Michael Albinus <michael.albinus@gmx.de>
15986
15987 * shell.el (shell): When called interactively, offer to change the
15988 shell file name on remote hosts.
15989
15990 2011-03-13 Teodor Zlatanov <tzz@lifelogs.com>
15991
15992 * net/ldap.el (ldap-search-internal): Add `auth-source-search'
15993 integration for LDAP parameters. The host, base, user or binddn,
15994 and secret tokens can be specified in a netrc file, for instance.
15995 This is optional because an `auth-source' parameter must be
15996 specified in the search attributes.
15997
15998 2011-03-13 Juanma Barranquero <lekktu@gmail.com>
15999
16000 * help.el (describe-mode): Link to the mode's definition (bug#8185).
16001
16002 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
16003
16004 * ebuff-menu.el (electric-buffer-menu-mode-map): Move initialization
16005 into declaration. Remove redundant and harmful binding.
16006
16007 2011-03-12 Eli Zaretskii <eliz@gnu.org>
16008
16009 * files.el (file-ownership-preserved-p): Pass `integer' as an
16010 explicit 2nd argument to `file-attributes'. If the file's owner
16011 is the Administrators group on Windows, and the current user is
16012 Administrator, consider that a match.
16013
16014 * server.el (server-ensure-safe-dir): Consider server directory
16015 safe on MS-Windows if its owner is the Administrators group while
16016 the current Emacs user is Administrator. Use `=' to compare
16017 numerical UIDs, since they could be integers or floats.
16018
16019 2011-03-12 Juanma Barranquero <lekktu@gmail.com>
16020
16021 * vc/vc-bzr.el (vc-bzr-state): Handle bzr 2.3.0 (follow-up to bug#8170).
16022
16023 2011-03-12 Michael Albinus <michael.albinus@gmx.de>
16024
16025 Sync with Tramp 2.2.1.
16026
16027 * net/tramp-sh.el (tramp-methods): Exchange "%k" marker with options.
16028
16029 * net/trampver.el: Update release number.
16030
16031 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
16032
16033 * progmodes/compile.el (compilation--previous-directory): Fix up
16034 various nil/dead-marker mismatches (bug#8014).
16035 (compilation-directory-properties, compilation-error-properties):
16036 Don't call it at a position past the one we're about to change.
16037
16038 * emacs-lisp/bytecomp.el (byte-compile-make-obsolete-variable):
16039 Disable obsolescence warnings in the file that declares it.
16040
16041 2011-03-11 Ken Manheimer <ken.manheimer@gmail.com>
16042
16043 * allout-widgets.el (allout-widgets-tally):
16044 Initialize allout-widgets-tally as a hash table rather than nil to
16045 prevent mode-line redisplay warnings. Also, clarify the module
16046 description and fix a comment typo.
16047
16048 2011-03-11 Juanma Barranquero <lekktu@gmail.com>
16049
16050 * help-fns.el (describe-variable): Don't complete keywords.
16051 Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
16052
16053 2011-03-10 Chong Yidong <cyd@stupidchicken.com>
16054
16055 * emacs-lisp/package.el (package-version-join): Impose a standard
16056 string representation for pre/alpha/beta version lists.
16057 (package-unpack-single): Standardize the directory name by passing
16058 it through package-version-join.
16059 (package-strip-rcs-id): Accept any version string that does not
16060 signal an error in version-to-list.
16061
16062 2011-03-10 Michael Albinus <michael.albinus@gmx.de>
16063
16064 * simple.el (delete-trailing-whitespace): Return nil for the
16065 benefit of `write-file-functions'.
16066
16067 2011-03-10 Glenn Morris <rgm@gnu.org>
16068
16069 * vc/vc-hg.el (vc-hg-pull, vc-hg-merge-branch): Use vc-hg-program.
16070
16071 * vc/vc-git.el (vc-git-program): New option.
16072 (vc-git-branches, vc-git-pull, vc-git-merge-branch, vc-git-command)
16073 (vc-git--call): Use it.
16074
16075 * eshell/esh-util.el (eshell-condition-case): Doc fix.
16076
16077 * cus-edit.el (Custom-newline): If no button at point, look
16078 for a subgroup button at start-of-line. (Bug#2298)
16079
16080 * mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
16081
16082 2011-03-10 Julien Danjou <julien@danjou.info>
16083
16084 * avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if
16085 `cursor-type' is nil.
16086
16087 2011-03-09 Jay Belanger <jay.p.belanger@gmail.com>
16088
16089 * calc/calc.el (calc-mode-map): Don't bind "C-_" to `calc-missing-key'.
16090
16091 2011-03-09 Ken Manheimer <ken.manheimer@gmail.com>
16092
16093 * allout.el: Change so yank of distinctive-bullet items
16094 preserves the existing header prefix, rebulleting it if necessary,
16095 rather than replacing it. This is necessary for proper operation
16096 of cooperative addons like allout-widgets.
16097 (allout-make-topic-prefix, allout-rebullet-heading):
16098 Change SOLICIT arg to INSTEAD, and interpret additionally a string
16099 value as alternate bullet to be used, instead of prompting the user
16100 for a bullet character.
16101
16102 2011-03-09 Michael Albinus <michael.albinus@gmx.de>
16103
16104 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
16105 Do not use `tramp-file-name-port', because this returns also
16106 `tramp-default-port'.
16107
16108 2011-03-09 Deniz Dogan <deniz.a.m.dogan@gmail.com>
16109
16110 * net/rcirc.el (rcirc-handler-001): Remove useless
16111 with-rcirc-process-buffer.
16112 (rcirc-check-auth-status): Swap arguments to string-match.
16113
16114 2011-03-09 Glenn Morris <rgm@gnu.org>
16115
16116 * shell.el (shell-mode):
16117 Set comint-input-ring-size from HISTSIZE. (Bug#7889)
16118
16119 * progmodes/gdb-mi.el (gdb): Improve 2010-12-08 change.
16120 Check for GDBHISTFILE, HISTSIZE, etc. (Bug#7889)
16121
16122 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
16123
16124 * emacs-lisp/package.el (package-refresh-contents)
16125 (package-menu-execute): Use condition-case-no-debug.
16126
16127 2011-03-08 Michael Albinus <michael.albinus@gmx.de>
16128
16129 * simple.el (shell-command-to-string): Use `process-file'.
16130
16131 * emacs-lisp/package.el (package-tar-file-info): Handle also
16132 remote files.
16133
16134 * emacs-lisp/package-x.el (package-upload-buffer-internal):
16135 Use `equal' for upload base check.
16136
16137 2011-03-08 Arni Magnusson <arnima@hafro.is> (tiny change)
16138
16139 * textmodes/texinfo.el (texinfo-environments):
16140 Add deftypecv, deftypeivar, deftypemethod, deftypeop, html. (Bug#2783)
16141
16142 2011-03-08 Glenn Morris <rgm@gnu.org>
16143
16144 * cus-start.el (cursor-in-non-selected-windows):
16145 Fix :set quoting oddness. (Bug#8192)
16146
16147 * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
16148 in some setf expressions. (Bug#2159)
16149
16150 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
16151
16152 * custom.el (custom-available-themes): Return themes in
16153 alphabetical order.
16154
16155 See ChangeLog.15 for earlier changes.
16156
16157 ;; Local Variables:
16158 ;; coding: utf-8
16159 ;; End:
16160
16161 Copyright (C) 2011-2012 Free Software Foundation, Inc.
16162
16163 This file is part of GNU Emacs.
16164
16165 GNU Emacs is free software: you can redistribute it and/or modify
16166 it under the terms of the GNU General Public License as published by
16167 the Free Software Foundation, either version 3 of the License, or
16168 (at your option) any later version.
16169
16170 GNU Emacs is distributed in the hope that it will be useful,
16171 but WITHOUT ANY WARRANTY; without even the implied warranty of
16172 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16173 GNU General Public License for more details.
16174
16175 You should have received a copy of the GNU General Public License
16176 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.