]> code.delx.au - gnu-emacs/blob - lisp/ChangeLog
textmodes/ispell.el: Expand hunspell affix-file paths. Improve debug messages printing.
[gnu-emacs] / lisp / ChangeLog
1 2013-03-01 Agustín Martín Domingo <agustin.martin@hispalinux.es>
2
3 * textmodes/ispell.el (ispell-find-hunspell-dictionaries):
4 Always expand affix-file before storing to protect against changed
5 `default-directory'.
6 (ispell-print-if-debug): Make sure message is printed at the end
7 of the debug buffer.
8
9 2013-03-01 Michael Albinus <michael.albinus@gmx.de>
10
11 * net/tramp.el (tramp-obsolete-methods): New defconst.
12 (tramp-warned-obsolete-methods): New defvar.
13 (tramp-find-method): Check for obsolete methods. Map them to a
14 replacement method if appropriate.
15
16 * net/tramp-sh.el (tramp-methods) [scp1, scp2, ssh1, ssh2, plink1]:
17 Remove methods.
18 (top): Remove completion functions for "scp1", "scp2", "ssh1",
19 "ssh2" and "plink1".
20
21 2013-02-28 Dale Sedivec <dale@codefu.org>
22
23 * textmodes/sgml-mode.el (sgml-syntax-propertize-function):
24 Return valid syntax-table property value when converting
25 quotes within text from string syntax to punctuation syntax (bug#13844).
26
27 2013-02-28 Juri Linkov <juri@jurta.org>
28
29 * dired-aux.el (dired-diff): If file at point is a backup file,
30 use its original as the default value, and reverse the order
31 of arguments to the `diff' call. Doc fix. (Bug#13772)
32
33 2013-02-28 Michael Albinus <michael.albinus@gmx.de>
34
35 * net/tramp-adb.el (tramp-adb-sdk-dir): Remove. Replaced by ...
36 (tramp-adb-program): New defcustom. Remove function. Adapt calls.
37
38 2013-02-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
39
40 Initial support for hunspell dictionaries auto-detection (Bug#13639)
41
42 * textmodes/ispell.el (ispell-find-hunspell-dictionaries):
43 Ask hunspell about available and default dictionaries.
44 (ispell-parse-hunspell-affix-file): Extract relevant info from
45 hunspell affix file.
46 (ispell-hunspell-fill-dictionary-entry): Fill non-initialized
47 `ispell-dictionary-alist' entry for given dictionary after info
48 provided by `ispell-parse-hunspell-affix-file'.
49 (ispell-hunspell-dict-paths-alist): New defvar to contain an alist
50 of parsed hunspell dicts and associated affix files.
51 (ispell-hunspell-dictionary-alist): New defvar to contain an alist
52 of parsed hunspell dicts and associated parameters.
53 (ispell-set-spellchecker-params):
54 Call `ispell-find-hunspell-dictionaries' if hunspell and not
55 previously done.
56 (ispell-start-process):
57 Call `ispell-hunspell-fill-dictionary-entry' for current
58 dictionary if it is not initialized.
59
60 2013-02-28 Stefan Monnier <monnier@iro.umontreal.ca>
61
62 * imenu.el: Comment nitpicks.
63
64 2013-02-28 Sam Steingold <sds@gnu.org>
65
66 * vc/diff-mode.el (diff-hunk-file-names): Handle filenames with spaces.
67 See <http://stackoverflow.com/questions/14720205>.
68
69 2013-02-28 Thierry Volpiatto <thierry.volpiatto@gmail.com>
70
71 * net/net-utils.el (net-utils--revert-function): New fun (bug#13831).
72 (net-utils-mode): Use it.
73 (net-utils--revert-cmd): New var.
74 (net-utils-run-simple): Set it, and remove bogus interactive spec.
75 (traceroute): Use net-utils-run-simple.
76
77 2013-02-28 Glenn Morris <rgm@gnu.org>
78
79 * textmodes/paragraphs.el (mark-paragraph): Doc fix.
80
81 2013-02-28 Stefan Monnier <monnier@iro.umontreal.ca>
82
83 * doc-view.el: Preserve h&v scroll across C-c C-c C-c C-c.
84 (doc-view-fallback-mode): Remove overlays here.
85 (doc-view-toggle-display): Instead of here. Don't throw away
86 image-mode-winprops-alist.
87 (doc-view-goto-page): Don't mess with hscroll.
88
89 2013-02-27 Thierry Volpiatto <thierry.volpiatto@gmail.com>
90
91 * font-lock.el (lisp-font-lock-keywords-2): Fix highlighting of
92 &optional (bug#13819).
93
94 2013-02-27 Michael Albinus <michael.albinus@gmx.de>
95
96 * net/tramp-adb.el (tramp-adb-parse-device-names)
97 (tramp-adb-maybe-open-connection): Add timeouts. (Bug#13299)
98
99 2013-02-26 Michael Albinus <michael.albinus@gmx.de>
100
101 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
102 Add "2>/dev/null" to the ls command, in case "en_US.utf8" is not
103 defined. POSIX environments fall back to the "C" locale then and
104 emit a warning, which shall be suppressed.
105
106 2013-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
107
108 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode): Tweak logic.
109 (easy-mmode-set-keymap-parents): Use make-composed-keymap.
110
111 2013-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
112
113 * emacs-lisp/bytecomp.el (byte-compile-file): Use let.
114
115 2013-02-25 Juri Linkov <juri@jurta.org>
116
117 * replace.el (read-regexp): Let-bind `default' to the first
118 element of `defaults' if it's a list, otherwise it should be
119 a string or nil. Let-bind `suggestions' to `defaults' if it's
120 a list, otherwise make a list with the string value. Doc fix.
121 (Bug#13805)
122
123 2013-02-25 Eli Zaretskii <eliz@gnu.org>
124
125 * emacs-lisp/bytecomp.el (byte-recompile-directory): Reject files
126 that match "\`\.#", to avoid compiling lock files, even if they
127 are readable (as they are on MS-Windows).
128
129 2013-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
130
131 * files.el (basic-save-buffer): Remove redundant directory-creation.
132
133 2013-02-24 Jay Belanger <jay.p.belanger@gmail.com>
134
135 * calc/calc-ext.el (math-to-radians-2, math-from-radians-2):
136 Add option to force `pi' to remain symbolic.
137 * calc/calcalg2.el (calcFunc-sin, calcFunc-cos, calcFunc-tan)
138 (calcFunc-cot, calcFunc-csc, calcFunc-sec, calcFunc-arcsin)
139 (calcFunc-arccos, calcFunc-arctan): Use symbolic `pi' in the
140 derivatives, when necessary.
141
142 2013-02-23 Peter Kleiweg <p.c.j.kleiweg@rug.nl>
143
144 * progmodes/ps-mode.el (ps-mode-version): Bump to 1.1i.
145 (ps-mode-octal-region): Use string-make-unibyte.
146
147 2013-02-23 Glenn Morris <rgm@gnu.org>
148
149 * emulation/viper-cmd.el (viper-submit-report):
150 * progmodes/ps-mode.el (ps-mode-maintainer-address):
151 * progmodes/vera-mode.el (vera-mode-help-address):
152 * textmodes/artist.el (artist-maintainer-address):
153 * textmodes/reftex.el (reftex-report-bug):
154 * vc/ediff-util.el (ediff-submit-report):
155 Add bug-gnu-emacs to bug report address.
156
157 * progmodes/simula.el (simula-mode-menu, simula-mode-map):
158 Remove bug report entries.
159 (simula-mode-help-address, simula-submit-bug-report): Make obsolete.
160
161 * emacs-lisp/bytecomp.el (byte-compile-level): New.
162 (byte-compile-file, byte-compile-from-buffer):
163 Use separate input/output buffers for each level of recursive
164 byte-compile-file calls. (Bug#13787)
165
166 2013-02-23 Michael Albinus <michael.albinus@gmx.de>
167
168 * net/tramp.el (tramp-methods): Fix docstring.
169 (tramp-ssh-controlmaster-options): Rename it from
170 `tramp-ssh-controlmaster-template'. Return a string.
171 (tramp-default-method): Adapt check for
172 `tramp-ssh-controlmaster-options'.
173
174 * net/tramp-sh.el (tramp-methods):
175 Replace `tramp-ssh-controlmaster-template' by "%c".
176 (tramp-do-copy-or-rename-file-out-of-band)
177 (tramp-maybe-open-connection): Use it in format spec. Ensure,
178 that it is applied for the first hop only.
179
180 2013-02-22 Juri Linkov <juri@jurta.org>
181
182 * isearch.el (isearch-lazy-highlight-new-loop):
183 Set `isearch-lazy-highlight-start' and `isearch-lazy-highlight-end'
184 to `isearch-other-end' if it is not nil. (Bug#13402)
185
186 * replace.el (replace-highlight): Let-bind `isearch-other-end'
187 to `match-beg'.
188
189 * textmodes/ispell.el (ispell-highlight-spelling-error-overlay):
190 Let-bind `isearch-other-end' to `start', `isearch-forward' to t
191 and `isearch-error' to nil.
192
193 2013-02-22 Michael Albinus <michael.albinus@gmx.de>
194
195 * net/tramp.el (tramp-tramp-file-p): Fix docstring.
196
197 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
198 Handle multibyte file names.
199
200 2013-02-22 Glenn Morris <rgm@gnu.org>
201
202 * textmodes/sgml-mode.el (sgml-xml-mode): Move before use.
203 (sgml-transformation-function): Give it a :set function.
204 (sgml-tag): Doc fix.
205
206 * cmuscheme.el (scheme-buffer):
207 * progmodes/inf-lisp.el (inferior-lisp-buffer):
208 * progmodes/tcl.el (inferior-tcl-buffer):
209 * textmodes/tex-mode.el (tex-command): Doc fixes.
210
211 * image-mode.el (image-mode): Add mouse bindings for mode-line-process.
212
213 * htmlfontify.el (hfy-default-header): Encode title string. (Bug#7457)
214
215 2013-02-21 Bastien Guerry <bzg@gnu.org>
216
217 * cmuscheme.el (scheme-buffer): Fix docstring. (Bug#13778)
218
219 2013-02-21 Fabián Ezequiel Gallina <fgallina@cuca>
220
221 * progmodes/python.el (python-info-current-defun):
222 Enhance match-data cluttering prevention.
223
224 2013-02-21 Glenn Morris <rgm@gnu.org>
225
226 * net/tramp.el (tramp-get-debug-buffer): Ensure outline.el is not
227 loaded while outline-regexp is let bound. (Bug#9584)
228
229 2013-02-21 Fabián Ezequiel Gallina <fgallina@cuca>
230
231 * progmodes/python.el (python-info-current-defun): Fix failed
232 defun name retrieval because of unwanted match-data cluttering.
233
234 2013-02-21 Michael Albinus <michael.albinus@gmx.de>
235
236 * net/tramp.el (tramp-ssh-controlmaster-template): Make it a
237 defconst. Apply independent check for ControlPersist.
238
239 * net/tramp-sh.el (tramp-sh-handle-set-file-times): Set $UTC only
240 temporarily, via "env".
241
242 2013-02-21 Glenn Morris <rgm@gnu.org>
243
244 * info.el (Info-enable-edit): Remove.
245 (Info-edit): Disable it rather than using Info-enable.
246 (Info-edit-mode-hook, Info-edit-map, Info-edit-mode, Info-edit)
247 (Info-cease-edit): Make editing of Info files obsolete.
248
249 * informat.el (Info-tagify):
250 Handle buffers not visiting files. (Bug#13763)
251
252 2013-02-21 Juanma Barranquero <lekktu@gmail.com>
253
254 * calc/calc-graph.el (calc-graph-show-dumb): Fix typo.
255
256 2013-02-21 Glenn Morris <rgm@gnu.org>
257
258 * files.el (basic-save-buffer): Move check for existing parent
259 directory after hooks. (Bug#13773)
260
261 2013-02-20 Stefan Monnier <monnier@iro.umontreal.ca>
262
263 * simple.el (command-execute): Move from C. Add obsolete check.
264 (extended-command-history): Move from C.
265
266 2013-02-20 Ulrich Müller <ulm@gentoo.org>
267
268 * jka-cmpr-hook.el (jka-compr-compression-info-list)
269 (jka-compr-mode-alist-additions): Handle .txz suffix for
270 XZ-compressed tar archives (bug#13770).
271
272 2013-02-20 Bastien Guerry <bzg@gnu.org>
273
274 * outline.el (outline-regexp, outline-heading-end-regexp):
275 Make variables, not options (bug#13731).
276
277 2013-02-20 Glenn Morris <rgm@gnu.org>
278
279 * image.el (image-current-frame): Change from variable to function.
280 (image-show-frame): Rename from image-nth-frame. Update callers.
281 * image-mode.el (image-multi-frame): New variable.
282 (image-mode-map, image-mode, image-goto-frame):
283 Use image-multi-frame rather than image-current-frame.
284 (image-mode, image-goto-frame): Use image-current-frame as
285 function rather than as variable.
286
287 * emacs-lisp/cl-lib.el (cl-floatp-safe): Make it an alias for floatp.
288 * emacs-lisp/cl-macs.el (cl--make-type-test)
289 (cl--compiler-macro-assoc): Use floatp rather than cl-floatp-safe.
290
291 2013-02-19 Michael Albinus <michael.albinus@gmx.de>
292
293 * net/tramp-cache.el (tramp-get-hash-table): New defun.
294 (tramp-get-file-property, tramp-set-file-property)
295 (tramp-get-connection-property, tramp-set-connection-property): Use it.
296 (tramp-flush-file-property, tramp-flush-directory-property):
297 Rename argument to KEY.
298 (tramp-flush-connection-property): Simplify a little bit.
299 (tramp-connection-property-p): New defun.
300 (top): Reapply saved values only if there isn't a corresponding
301 entry in `tramp-connection-properties'.
302
303 2013-02-19 Fabián Ezequiel Gallina <fgallina@cuca>
304
305 * progmodes/python.el (python-indent-context):
306 Fix python-info-line-ends-backslash-p call.
307 (python-info-line-ends-backslash-p)
308 (python-info-beginning-of-backslash): Respect line-number argument.
309 (python-info-current-line-comment-p):
310 Fix behavior when not at beginning-of-line.
311 (python-util-position): Remove function.
312 (python-util-goto-line): New function.
313
314 2013-02-19 Michael Albinus <michael.albinus@gmx.de>
315
316 * eshell/em-unix.el (eshell/su): Require tramp.
317 (eshell/sudo): Require tramp. Remove now unnecessary check.
318
319 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Let-bind
320 `tramp-current-connection' in order to avoid an error when several
321 commands are invoked in a short time in eshell and friends.
322
323 2013-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
324
325 Cleanup some of EIEIO's namespace.
326 * emacs-lisp/eieio.el (eieio--define-field-accessors): New macro.
327 Use it to define all the class-* and object-* field accessors (renamed
328 to eieio--class-* and eieio--object-*). Update all uses.
329 (eieio--class-num-slots, eieio--object-num-slots): Rename from
330 class-num-slots and object-num-slots.
331 (eieio--check-type): New macro.
332 (eieio-defclass, eieio-oref, eieio-oref-default, same-class-p)
333 (object-of-class-p, child-of-class-p, object-slots, class-slot-initarg)
334 (eieio-oset, eieio-oset-default, object-assoc, object-assoc-list)
335 (object-assoc-list-safe): Use it.
336 (eieio-defclass): Tighten regexp.
337 (eieio--defmethod): Use `memq'. Signal an error for unknown method kind.
338 Remove unreachable code.
339 (object-class-fast): Declare obsolete.
340 (eieio-class-name, eieio-object-name, eieio-object-set-name-string)
341 (eieio-object-class, eieio-object-class-name, eieio-class-parents)
342 (eieio-class-children, eieio-class-precedence-list, eieio-class-parent):
343 Rename from class-name, object-name, object-set-name-string,
344 object-class, object-class-name, class-parents, class-children,
345 class-precedence-list, class-parent; with obsolete alias.
346 (class-of, class-direct-superclasses, class-direct-subclasses):
347 Declare obsolete.
348 (eieio-defmethod): Use `memq'; remove unreachable code.
349 * emacs-lisp/eieio-base.el (eieio-persistent-read):
350 * emacs-lisp/eieio-opt.el (eieio-class-button, eieio-describe-generic)
351 (eieio-browse-tree, eieio-browse): Use eieio--check-type.
352
353
354 2013-02-18 Michael Heerdegen <michael_heerdegen@web.de>
355
356 * emacs-lisp/eldoc.el (eldoc-highlight-function-argument):
357 Use font-lock-keyword-face for macros and special forms (bug#8345).
358
359 2013-02-17 Didier Verna <didier@didierverna.net>
360
361 * net/network-stream.el (network-stream-open-starttls):
362 Check that response to the starttls-command is non-nil. (Bug#13706)
363
364 2013-02-17 Stefan Monnier <monnier@iro.umontreal.ca>
365
366 * font-lock.el (lisp-font-lock-keywords-1, lisp-font-lock-keywords-2):
367 Don't assume all identifier chars have syntax word.
368 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
369 Remove bar-not-symbol. Adjust callers.
370 (lisp-mode-variables): Don't set a font-lock-syntax-table.
371
372 2013-02-17 Leo Liu <sdl.web@gmail.com>
373
374 * net/rcirc.el (rcirc-keepalive): Fix invalid timer error.
375
376 2013-02-17 Glenn Morris <rgm@gnu.org>
377
378 * menu-bar.el (menu-bar-tools-menu): Fix case of EDE entry.
379
380 * image-mode.el (image-mode-map): Add image-dired menu entry.
381
382 * image-dired.el (tumme): Make this alias obsolete.
383
384 2013-02-16 Glenn Morris <rgm@gnu.org>
385
386 * image.el (image-animated-types): Remove.
387 (image-multi-frame-p): Rename from image-animated-p, and generalize.
388 (image-animated-p): Make obsolete alias.
389 (image-animate, image-nth-frame, image-animate-timeout):
390 Use image-multi-frame-p.
391 (image-animate-timeout): If no delay, use image-default-frame-delay.
392 * image-mode.el (image-mode, image-toggle-animation):
393 Use image-multi-frame-p. (Bug#763, bug#10739)
394 (image-mode): Adjust startup message for a multi-frame image.
395
396 * image-mode.el (image-mode-map): Give it a menu.
397
398 2013-02-16 Michael Albinus <michael.albinus@gmx.de>
399
400 * net/tramp-cache.el (tramp-connection-properties): New customer
401 option.
402 (tramp-get-connection-property): Use it.
403
404 * net/tramp-compat.el (top): Require 'trampver.
405
406 * net/tramp-sh.el (tramp-remote-process-environment):
407 Set tramp-autoload cookie.
408
409 2013-02-16 Kevin Ryde <user42@zip.com.au>
410
411 * info-look.el (info-lookup-select-mode): If major-mode has no
412 info-lookup-alist entry then search up derived-mode-parent (bug#8660).
413
414 2013-02-16 Jambunathan K <kjambunathan@gmail.com>
415
416 * replace.el (read-regexp): Tighten the regexp that matches tag.
417 When tag is retrieved with `find-tag-default', use regexp that
418 matches tag at point. Also update docstring (Bug#13687).
419
420 2013-02-16 Eli Zaretskii <eliz@gnu.org>
421
422 * autorevert.el (auto-revert-notify-add-watch): With 'w32notify',
423 add watch for the file, not its parent directory, since w32notify
424 sets up the watch for the directory internally. (Bug#13725)
425
426 2013-02-16 Glenn Morris <rgm@gnu.org>
427
428 * image.el (image-default-frame-delay): New variable.
429 (image-animated-p): Use image-default-frame-delay.
430 (image-minimum-frame-delay): New constant.
431 (image-animate-timeout): Use image-minimum-frame-delay.
432
433 * image.el (image-nth-frame): New, split from image-animate-timeout.
434 (image-animate-timeout): Use image-nth-frame.
435 * image-mode.el (image-goto-frame, image-next-frame)
436 (image-previous-frame): New commands.
437 (image-mode-map): Add new frame commands.
438
439 2013-02-16 Jonas Bernoulli <jonas@bernoul.li>
440
441 * emacs-lisp/tabulated-list.el (tabulated-list-print-col):
442 If col-desc already has help-echo, use it. (Bug#13563)
443
444 2013-02-16 Glenn Morris <rgm@gnu.org>
445
446 * image.el (image-current-frame): New variable.
447 (image-animate-timeout): Set image-current-frame.
448 * image-mode.el (image-mode): For animated images,
449 display a frame counter via mode-line-process.
450
451 * font-lock.el (lisp-font-lock-keywords-1): Add defvar-local.
452
453 2013-02-15 Stefan Monnier <monnier@iro.umontreal.ca>
454
455 * simple.el (eval-expression): Let `exp' set the mark (bug#13724).
456
457 2013-02-15 Alan Mackenzie <acm@muc.de>
458
459 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode): When a
460 global minor mode has been enabled, call the minor mode function
461 for a new buffer once only, after the major mode hook, whilst
462 allowing that hook explicitly to disable the minor mode.
463 (MODE-disable-in-buffer): New (generated) function.
464 (disable-MODE): New (generated) buffer local variable.
465
466 2013-02-15 Jambunathan K <kjambunathan@gmail.com>
467
468 * iswitchb.el (iswitchb-read-buffer): Bind `C-.' and `C-,' to
469 `iswitchb-next-match' and `iswitchb-prev-match' resply.
470 * ido.el (ido-init-completion-maps): Bind `C-.' and `C-,' to
471 `ido-next-match' and `ido-prev-match' resply.
472 * icomplete.el (icomplete-minibuffer-map): Unbind `C-s' and `C-r'.
473 Bind `C-.' and `C-,' to `icomplete-forward-completions' and
474 `icomplete-backward-completions' (Bug#13708).
475
476 2013-02-15 Glenn Morris <rgm@gnu.org>
477
478 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
479
480 2013-02-15 Stefan Monnier <monnier@iro.umontreal.ca>
481
482 * net/goto-addr.el (goto-address-fontify): Add start and end args.
483 (goto-address-fontify-region): Use them instead of narrowing, so
484 syntax-ppss has access to the whole buffer.
485
486 2013-02-15 Fabián Ezequiel Gallina <fgallina@cuca>
487
488 * progmodes/python.el: Explain how to restore "cc-mode"-like
489 forward-sexp movement in header documentation (Bug#13642).
490 (python-nav--forward-sexp): Behave like emacs-lisp-mode in
491 comments and strings (GH bug 114).
492
493 2013-02-15 Fabián Ezequiel Gallina <fgallina@cuca>
494
495 * progmodes/python.el (python-info-current-defun): Fix current
496 defun detection (Bug#13618).
497
498 2013-02-15 Chong Yidong <cyd@gnu.org>
499
500 * xml.el (xml-parse-string): Fix typo in handling of bad character
501 references.
502
503 2013-02-15 Glenn Morris <rgm@gnu.org>
504
505 * play/fortune.el (fortune-compile): Simplify and fix previous change.
506
507 2013-02-14 Michael Albinus <michael.albinus@gmx.de>
508
509 * net/tramp.el (tramp-debug-message):
510 Add `tramp-condition-case-unless-debug'.
511 (tramp-debug-on-error): New defvar.
512 (tramp-condition-case-unless-debug): New defun.
513 (tramp-file-name-handler): Use it.
514
515 2013-02-14 Juri Linkov <juri@jurta.org>
516
517 * info.el (Info-isearch-filter): Treat non-nil values of
518 `search-invisible' including its default value `open'
519 like the value `t' to match hidden text. (Bug#13402)
520
521 2013-02-14 Glenn Morris <rgm@gnu.org>
522
523 * help-fns.el (find-lisp-object-file-name): Give special treatment
524 to all ~/.foo.elc files, not just ~/.emacs. (Bug#9007)
525
526 2013-02-14 David Biesack <sasdjb@d72933.na.sas.com> (tiny change)
527
528 * net/quickurl.el (quickurl-save-urls):
529 Ensure quickurl-urls is not truncated on printing. (Bug#9276)
530
531 2013-02-14 Dmitry Gutov <dgutov@yandex.ru>
532
533 * progmodes/ruby-mode.el (ruby-parse-partial): Don't increase
534 depth for unfinished percent literal. Not using it in the caller.
535 (ruby-move-to-block): Jump over multiline literals of all types,
536 ignoring code-looking contents inside them.
537 (ruby-add-log-current-method): Improve performance at the expense
538 of accuracy. `ruby-block-contains-point' is relatively slow, so
539 only use it for method and singleton class blocks.
540
541 2013-02-13 Michael Albinus <michael.albinus@gmx.de>
542
543 Use ControlMaster where applicable. (Bug#13677)
544
545 * net/tramp.el (tramp-ssh-controlmaster-template): New defvar,
546 replacing `tramp-detect-ssh-controlmaster'.
547 (tramp-default-method): Use it.
548
549 * net/tramp-sh.el (tramp-methods) [scp, scp1, scp2, scpx, sftp]:
550 [rsync, ssh, ssh1, ssh2, sshx]: Add ControlPath and ControlMaster
551 arguments.
552 [scpc, rsyncc]: Remove methods.
553 (top): Remove completion functions for "scpc", "rsyncc", "ssh1_old"
554 and "ssh2_old".
555 (tramp-do-copy-or-rename-file-out-of-band): Change trace level.
556 (tramp-maybe-open-connection): Reuse tmpfile for ControlPath.
557
558 2013-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
559
560 * emacs-lisp/package.el (package--initialized): Move before first use.
561
562 2013-02-13 Jambunathan K <kjambunathan@gmail.com>
563
564 * icomplete.el (icomplete-hide-common-prefix): New user option.
565 (icomplete-first-match): New face.
566 (icomplete-completions): Correct handling of "complete but not
567 unique" (Bug#12638).
568
569 2013-02-13 YE Qianchuan <stool.ye@gmail.com> (tiny change)
570
571 * descr-text.el (describe-char): Display the script (bug#13698).
572
573 2013-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
574
575 * tmm.el: Use lexical-binding and current-active-maps.
576 (tmm-menubar): Use map-keymap and pcase.
577 (tmm--completion-table): New function.
578 (tmm-prompt): Use it to fix the menu order.
579 (tmm-get-keybind): Use current-active-maps.
580
581 2013-02-12 Christopher Schmidt <christopher@ch.ristopher.com>
582
583 Add dired-hide-details-mode. (Bug#6799)
584
585 * locate.el (locate-mode): Set parent mode property to dired-mode.
586
587 * find-dired.el (find-dired): Call dired-insert-set-properties on
588 initial information line. Set process mark on end of buffer.
589 (find-dired-sentinel):
590 Call dired-insert-set-properties on summary.
591
592 * dired.el (dired-hide-details-hide-symlink-targets)
593 (dired-hide-details-hide-information-lines): New options.
594 (dired-insert-directory):
595 Set properties after final treatment of output.
596 (dired-insert-set-properties):
597 Set dired-hide-details-* properties.
598 (dired-mode-map): Bind dired-hide-details-mode.
599 (dired-mode): Set buffer-invisibility-spec to a list.
600 (dired-next-line): Skip hidden lines.
601 (dired-previous-line): Use dired-next-line.
602 (dired-hide-details-mode): New minor mode.
603 (dired-hide-details-update-invisibility-spec): New function.
604
605 2013-02-13 Glenn Morris <rgm@gnu.org>
606
607 * play/yow.el: Move to obsolete/. (Bug#9384)
608
609 2013-02-13 Juri Linkov <juri@jurta.org>
610
611 * vc/ediff-util.el (ediff-recenter): Use `select-frame-set-input-focus'
612 to select `ediff-control-frame' and set input focus correctly on Xfce.
613 (Bug#12218)
614
615 2013-02-13 Juri Linkov <juri@jurta.org>
616
617 * image-mode.el (image-mode-map):
618 * doc-view.el (doc-view-mode-map):
619 * vc/ediff-util.el (ediff-setup-keymap):
620 Make S-SPC scroll in the opposite sense to SPC. (Bug#2145)
621
622 2013-02-13 Dmitry Gutov <dgutov@yandex.ru>
623
624 * progmodes/ruby-mode.el (ruby-move-to-block): Improve
625 performance. Instead of recalculating indentation fully for each
626 line, sum up indentation depth based only on visited lines.
627 (ruby-parse-partial): Increase the depth after "do" even when END
628 is right after it.
629 (ruby-parse-partial): When END is in the middle of a percent
630 literal, increase the depth if the delimiter chars belong to the
631 paren syntax class.
632
633 2013-02-13 Kirill A. Korinskiy <catap@catap.ru>
634
635 * play/fortune.el (fortune-compile): Also make the compiled file
636 if it does not exist at all, not just if it is old. (Bug#5338)
637
638 2013-02-13 Glenn Morris <rgm@gnu.org>
639
640 * emacs-lisp/package.el (package-menu-execute): Doc fix.
641
642 2013-02-13 Yves Baumes <ybaumes@gmail.com> (tiny change)
643
644 * lisp/emacs-lisp/package.el (package-menu-execute):
645 Add optional noquery argument. (Bug#13625)
646
647 2013-02-13 Michael Albinus <michael.albinus@gmx.de>
648
649 * net/ange-ftp.el (ange-ftp-make-directory): Don't raise an error,
650 if DIR exists and PARENTS is non-nil.
651
652 2013-02-13 Juanma Barranquero <lekktu@gmail.com>
653
654 * progmodes/js.el (js--multi-line-declaration-indentation):
655 Silence byte-compiler warning.
656
657 2013-02-12 Michael Albinus <michael.albinus@gmx.de>
658
659 * net/tramp-adb.el (tramp-adb-handle-start-file-process): Rewrite.
660
661 * net/tramp-compat.el (top): Declare `remote-file-name-inhibit-cache'
662 only if it doesn't exist.
663
664 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
665 Set process marker.
666
667 2013-02-12 Tassilo Horn <tsdh@gnu.org>
668
669 * doc-view.el (doc-view-odf->pdf-converter-soffice): Use separate
670 UserInstallation when calling soffice to work around LibreOffice
671 bug 37531.
672
673 2013-02-12 Glenn Morris <rgm@gnu.org>
674
675 * files.el (basic-save-buffer):
676 Offer to create a non-existing directory. (Bug#3016)
677
678 * calc/calc-graph.el (calc-graph-show-dumb):
679 * calendar/calendar.el (calendar-mode-map):
680 * cus-edit.el (custom-mode-map):
681 * ehelp.el (electric-help-map):
682 * emulation/vip.el (vip-mode-map):
683 * epa.el (epa-key-list-mode-map):
684 * info.el (Info-mode-map):
685 * mail/rmail.el (rmail-mode-map):
686 * mail/rmailsum.el (rmail-summary-mode-map):
687 * man.el (Man-mode-map):
688 * net/newst-plainview.el (newsticker-mode-map):
689 * progmodes/cpp.el (cpp-edit-mode-map):
690 * progmodes/grep.el (grep-mode-map):
691 * progmodes/idlw-help.el (idlwave-help-mode-map):
692 * simple.el (special-mode-map):
693 * startup.el (splash-screen-keymap):
694 * view.el (view-mode-map):
695 Make S-SPC scroll in the opposite sense to SPC. (Bug#2145)
696
697 2013-02-11 Elias Pipping <pipping@lavabit.com>
698
699 * doc-view.el (doc-view-current-cache-dir): Beware % escapes
700 (bug#13679).
701
702 2013-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
703
704 * cus-start.el (all): Remove inhibit-local-menu-bar-menus.
705
706 2013-02-11 Glenn Morris <rgm@gnu.org>
707
708 * vc/diff.el (diff-use-labels): New variable.
709 (diff-no-select): Use --label rather than -L, and first
710 check that it is supported. (Bug#11067)
711
712 * files.el (enable-dir-local-variables): New variable.
713 (hack-dir-local-variables): Respect enable-dir-local-variables.
714 * tutorial.el (help-with-tutorial):
715 Ignore directory-local variables. (Bug#11127)
716
717 * vc/vc-svn.el (vc-svn-command): Move --non-interactive from here...
718 (vc-svn-global-switches): ... to here. (Bug#13513)
719
720 2013-02-10 Christopher Schmidt <christopher@ch.ristopher.com>
721
722 * minibuf-eldef.el (minibuffer-default--in-prompt-regexps):
723 Handle "foo (bar, default: xxx): " prompts.
724
725 2013-02-10 Chong Yidong <cyd@gnu.org>
726
727 * files.el (basic-save-buffer-1): Do not set
728 buffer-file-coding-system-explicit (Bug#4533).
729
730 * mail/emacsbug.el (report-emacs-bug): Change binding of
731 report-emacs-bug-insert-to-mailer to C-c M-i (Bug#13510).
732
733 2013-02-09 Jay Belanger <jay.p.belanger@gmail.com>
734
735 * calc/calc.el (calc-allow-units-as-numbers): New variable.
736 * calc/calc-units.el (calc-convert-units): Use new variable.
737
738 2013-02-09 Eli Zaretskii <eliz@gnu.org>
739
740 * subr.el (buffer-file-type, default-buffer-file-type): Remove.
741
742 * net/ange-ftp.el (ange-ftp-insert-file-contents): Don't reference
743 buffer-file-type.
744
745 * mail/feedmail.el (feedmail-force-binary-write): Doc fix.
746 (feedmail-run-the-queue, feedmail-dump-message-to-queue)
747 (feedmail-send-it-immediately): Don't bind buffer-file-type, bind
748 coding-system-for-write instead.
749
750 * jka-compr.el (jka-compr-write-region): Don't bind
751 buffer-file-type.
752
753 * emacs-lisp/bytecomp.el (byte-compile-file): Don't bind
754 buffer-file-type.
755
756 * files.el (file-name-buffer-file-type-alist): Remove defvar.
757 (insert-file-contents-literally): Remove reference to
758 file-name-buffer-file-type-alist.
759
760 * dos-w32.el (file-name-buffer-file-type-alist): Deprecate and
761 make-obsolete.
762 (find-buffer-file-type-match, find-buffer-file-type): Remove.
763 (find-buffer-file-type-coding-system): Remove references to
764 find-buffer-file-type-match, find-buffer-file-type, and
765 buffer-file-type.
766 Don't put find-buffer-file-type-coding-system into
767 file-coding-system-alist.
768 (find-file-binary, find-file-text): Bind coding-system-for-read
769 instead of file-name-buffer-file-type-alist.
770
771 2013-02-09 Jambunathan K <kjambunathan@gmail.com>
772
773 * doc-view.el: Use (and prefer) soffice as default ODF->PDF
774 converter (Bug#13622).
775 (doc-view-unoconv-program): Make obsolete alias.
776 (doc-view-odf->pdf-converter-program): New variable.
777 (doc-view-odf->pdf-converter-function): New variable.
778 (doc-view-mode-p): Use it.
779 (doc-view-odf->pdf-converter-unoconv):
780 Rename from `doc-view-odf->pdf-converter-unoconv'.
781 (doc-view-odf->pdf-converter-soffice): New function.
782 (doc-view-convert-current-doc):
783 Use `doc-view-odf->pdf-converter-function'.
784
785 2013-02-09 Chong Yidong <cyd@gnu.org>
786
787 * minibuffer.el (minibuffer-inactive-mode-map): Bind mouse-1 to
788 view-echo-area-messages (Bug#13340).
789
790 * help.el (view-echo-area-messages): Use display-buffer.
791
792 * dired-x.el (dired-do-run-mail): Prompt for confirmation
793 (Bug#13561).
794
795 2013-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
796
797 * emacs-lisp/byte-run.el (eval-when-compile, eval-and-compile):
798 Eval body right away, now that we do eager macroexpansion (bug#13605).
799
800 * simple.el (end-of-buffer): Don't touch unrelated windows (bug#13466).
801 (fundamental-mode): Use run-mode-hooks.
802
803 * eshell/esh-proc.el (eshell/kill): Fix last change.
804 * eshell/em-ls.el (eshell-ls-dir): Fix use of CL in last change.
805
806 2013-02-08 Aidan Gauland <aidalgol@no8wireless.co.nz>
807
808 * eshell/esh-proc.el (eshell/kill): Rewrite.
809
810 * eshell/em-ls.el (show-almost-all): Declare.
811 (eshell-do-ls): Add support for -A argument.
812
813 2013-02-08 Jambunathan K <kjambunathan@gmail.com>
814
815 * icomplete.el (icomplete-forward-completions)
816 (icomplete-backward-completions): Handle corner case (bug#13602).
817
818 2013-02-07 Michael Albinus <michael.albinus@gmx.de>
819
820 * vc/vc-hooks.el (vc-find-file-hook): `buffer-file-truename' can
821 be nil. Handle this. (Bug#13636)
822
823 2013-02-07 Richard Stallman <rms@gnu.org>
824
825 * mail/rmail.el (rmail-variables): Specify `no-conversion' for
826 `save-buffer-coding-system'.
827
828 2013-02-07 Alan Mackenzie <acm@muc.de>
829
830 Fix bug in state cache mechanism. Remove 'BOD "strategy". Refactor.
831 * progmodes/cc-engine.el (c-get-fallback-scan-pos): Remove.
832 (c-parse-state-get-strategy): Don't return 'BOD any more.
833 (c-append-lower-brace-pair-to-state-cache):
834 Extra parameter HERE instead of narrowing.
835 Widen to top of buffer before searching backwards for a brace pair.
836 (c-state-push-any-brace-pair): Add HERE parameter to function call.
837 (c-append-to-state-cache): Extra parameter HERE in place of narrowing.
838 Narrow to parameter HERE, in place of being called narrowed.
839 (c-remove-stale-state-cache): Extra parameter HERE in place of
840 narrowing. Check there's an open brace in the cache before
841 searching for its match.
842 (c-invalidate-state-cache-1): Add HERE parameter to function call.
843 (c-parse-state-1): Don't narrow here for 'forward strategy,
844 instead passing extra parameter HERE to several functions.
845 Remove 'BOD strategy.
846
847 2013-02-06 Nicolas Richard <theonewiththeevillook@yahoo.fr> (tiny change)
848
849 * emacs-lisp/package.el (describe-package-1): Tell what archive is
850 used to install the package.
851
852 2013-02-06 Glenn Morris <rgm@gnu.org>
853
854 * vc/vc-hooks.el (vc-find-file-hook): Don't ask about following links
855 if we can't get user input. (Bug#6567)
856
857 * startup.el (command-line): If simple.el is missing,
858 test and warn about for some possible causes.
859
860 2013-02-05 Jan Djärv <jan.h.d@swipnet.se>
861
862 * cus-start.el (all): Add ns-use-native-fullscreen.
863
864 2013-02-05 Glenn Morris <rgm@gnu.org>
865
866 * profiler.el (profiler-report-mode-map): Add a restart menu entry.
867
868 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
869 Fix directory creation in fallback case.
870
871 2013-02-04 Thierry Volpiatto <thierry.volpiatto@gmail.com>
872
873 * vc/vc.el (vc-next-action): Fix inf-loop (bug#13610).
874 (vc-update-change-log): Use dolist.
875
876 2013-02-04 Chong Yidong <cyd@gnu.org>
877
878 * thingatpt.el: Rewrite the URL detection routines, absorbing some
879 code from ffap.el.
880 (thing-at-point-beginning-of-url-regexp): New var.
881 (thing-at-point-uri-schemes): Update list of URI schemes.
882 (thing-at-point-url-regexp): Variable deleted.
883 (thing-at-point-markedup-url-regexp): Disallow newlines.
884 (thing-at-point-newsgroup-regexp)
885 (thing-at-point-newsgroup-heads)
886 (thing-at-point-default-mail-uri-scheme): New variables.
887 (thing-at-point-bounds-of-url-at-point): Rewrite. Use ffap's
888 method to find the possible bounds of the URI at point.
889 New optional argument to find ill-formed URIs.
890 (thing-at-point-url-at-point): Rewrite. New arguments for finding
891 ill-formed URIs. Use thing-at-point-bounds-of-url-at-point, and
892 the scheme-adding heuristics from ffap-url-at-point.
893 (thing-at-point--bounds-of-well-formed-url): New function.
894 Do parens matching to decide whether to include parens in the URI
895 (Bug#9153).
896
897 * ffap.el: Require thingatpt.
898 (ffap-url-at-point): Delegate URI detection to thing-at-point.
899 All URI-valid characters are now recognized (Bug#5673).
900 (ffap-string-at-point): Use use-region-p.
901 (ffap-url-regexp): Extra character is handled by thing-at-point.
902 (ffap-string-at-point-mode-alist): Allow parentheses.
903 (ffap-newsgroup-regexp, ffap-newsgroup-heads, ffap-newsgroup-p):
904 Convert to aliases; code moved to thingatpt.el.
905 (ffap-gnus-hook): Use setq-local.
906
907 2013-02-04 Glenn Morris <rgm@gnu.org>
908
909 * emacs-lisp/ert.el (ert--explain-format-atom):
910 Don't try to print non-characters as characters. (Bug#13543)
911
912 2013-02-03 Michael Albinus <michael.albinus@gmx.de>
913
914 * net/tramp.el (tramp-debug-message): Extend function exclude list.
915 (tramp-backtrace): New defun.
916 (tramp-handle-insert-file-contents): Use `visit' when inserting
917 the local copy.
918
919 * net/tramp-sh.el (tramp-sh-handle-set-visited-file-modtime):
920 Use `remote-file-name-inhibit-cache'.
921
922 2013-02-03 Stefan Monnier <monnier@iro.umontreal.ca>
923
924 * progmodes/cperl-mode.el (cperl-mode): Avoid byte-compile warning
925 (bug#13614).
926
927 * subr.el (internal--called-interactively-p--get-frame): Avoid filling
928 current-load-list (bug#13366).
929
930 2013-02-02 Christopher Schmidt <christopher@ch.ristopher.com>
931
932 * progmodes/compile.el (compilation-error-regexp-alist-alist):
933 Identify g++ template instantiation trace. (Bug#12287)
934 (compilation-mode-hook, compilation-start-hook)
935 (compilation-window-height): Simplify docstrings. (Bug#13379)
936
937 2013-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
938
939 * mouse.el (mouse-drag-track): Always deactivate the mark before
940 running the final event's command since that command is in charge of
941 activating the mark if needed (bug#13523).
942
943 2013-02-02 Juri Linkov <juri@jurta.org>
944
945 * replace.el (perform-replace): Move let-bindings of isearch-*
946 variables deeper to the loop that searches for the next match.
947 Add bindings for `isearch-nonincremental' and `isearch-adjusted'.
948 Use `isearch-search-fun-default' instead of `isearch-search-fun'.
949 (Bug#13579)
950
951 * isearch.el (isearch-search-fun-default): Check for null
952 first element of isearch-cmds as a precaution when it's used
953 with inactive isearch.
954
955 2013-02-02 Andrew W. Nosenko <andrew.w.nosenko@gmail.com> (tiny change)
956
957 * net/tramp.el (tramp-check-for-regexp): Avoid "Args out of range"
958 error when buffer in question is narrowed so position 1 is out of
959 visible part.
960
961 2013-02-02 Glenn Morris <rgm@gnu.org>
962
963 * textmodes/remember.el (remember-clipboard): Doc fix.
964
965 2013-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
966
967 * progmodes/make-mode.el (makefile-fill-paragraph): Reset syntax-table
968 properties (bug#13179).
969
970 2013-02-02 Juri Linkov <juri@jurta.org>
971
972 * progmodes/grep.el (grep-regexp-alist): Use variable grep-match-face
973 instead of hard-coded default face `match'. (Bug#9438)
974
975 2012-02-01 Christopher Schmidt <christopher@ch.ristopher.com>
976
977 * vc/vc-arch.el (vc-arch-registered):
978 * vc/vc-bzr.el (vc-bzr-registered):
979 * vc/vc-cvs.el (vc-cvs-registered):
980 * vc/vc-git.el (vc-git-registered):
981 * vc/vc-hg.el (vc-hg-registered):
982 * vc/vc-mtn.el (vc-mtn-registered):
983 * vc/vc-svn.el (vc-svn-registered): Suppress load messages.
984 (Bug#13139)
985
986 * info.el (Info-next-reference, Info-prev-reference): Add numeric
987 prefix argument. (Bug#11656)
988
989 2013-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
990
991 * help-fns.el (help-split-fundoc): Don't insert byte-compiled body.
992
993 2013-02-01 Glenn Morris <rgm@gnu.org>
994
995 * vc/vc-hooks.el (vc-menu-map): Disable vc-rollback menu item
996 if the backend is known not to support it.
997
998 * imenu.el (imenu-default-create-index-function):
999 Tweak infinite loop test to check for forward motion as well as none.
1000
1001 2013-02-01 Alex Harsanyi <AlexHarsanyi@gmail.com>
1002
1003 * net/soap-client.el (soap-invoke): Encode the string for
1004 `url-request-data' as UTF-8.
1005 Fixes <http://code.google.com/p/emacs-soap-client/issues/detail?id=16>.
1006
1007 2013-02-01 Glenn Morris <rgm@gnu.org>
1008
1009 * calc/calc-help.el (calc-view-news): Use view-emacs-news.
1010
1011 * calc/README, calc/README.prev: Rename/merge to etc/CALC-NEWS.
1012
1013 2013-01-31 Michael Albinus <michael.albinus@gmx.de>
1014
1015 * net/tramp.el (tramp-tramp-file-p): Comment check for
1016 `string-as-unibyte'. The function does not exist on XEmacs, and
1017 likely we need another approach.
1018
1019 * net/tramp-sh.el (tramp-compute-multi-hops): Check, whether
1020 `tramp-gw-*' variables are bound.
1021
1022 2013-01-31 Glenn Morris <rgm@gnu.org>
1023
1024 * files.el (basic-save-buffer-2): Choose coding system for
1025 writing the file before backing it up, to reduce delay between
1026 backing up and writing the new version. (Bug#13522)
1027
1028 2013-01-31 Michal Nazarewicz <mina86@mina86.com>
1029
1030 * simple.el (cycle-spacing): New command.
1031 (just-one-space): Use it.
1032
1033 2013-01-31 Stefan Monnier <monnier@iro.umontreal.ca>
1034
1035 * progmodes/opascal.el: Rename from delphi.el. Use lexical-binding.
1036 (opascal-newline-always-indents): Remove custom.
1037 (opascal-tab, opascal-newline): Remove commands.
1038 (opascal-new-comment-line): Insert "\n" instead of calling newline.
1039 (opascal-mode-map): Keep default bindings for RET and TAB and DEL.
1040 (opascal-save-match-data): Remove, use save-match-data instead.
1041 (opascal-save-state): Use with-silent-modifications.
1042
1043 * progmodes/pascal.el (pascal-mode-syntax-table): Accept //..\n comments
1044 (bug#13585).
1045
1046 2013-01-30 Juri Linkov <juri@jurta.org>
1047
1048 * frame.el (toggle-frame-maximized, toggle-frame-fullscreen):
1049 Use fullboth as an alias for fullscreen. Suggested by Jan Djärv in
1050 <http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00203.html>.
1051
1052 2013-01-30 Stefan Monnier <monnier@iro.umontreal.ca>
1053
1054 * progmodes/make-mode.el (makefile-backslash-region): Don't compute
1055 column if we're just deleting the backslashes.
1056 (makefile-fill-paragraph): Use eolp.
1057
1058 2013-01-30 Michael Albinus <michael.albinus@gmx.de>
1059
1060 * autorevert.el (auto-revert-use-notify): Fix docstring.
1061
1062 2013-01-30 Leo Liu <sdl.web@gmail.com>
1063
1064 * imenu.el (imenu--truncate-items): Fix subalist checking (bug#13576).
1065
1066 2013-01-30 Glenn Morris <rgm@gnu.org>
1067
1068 * mouse.el (mouse-drag-line): Avoid pushing same event onto
1069 unread-command-events twice in some cases. This tries to implement
1070 the 2012-07-26 changes in a different way. (Bug#13560)
1071
1072 2013-01-30 Fabián Ezequiel Gallina <fgallina@cuca>
1073
1074 * progmodes/python.el
1075 (python-pdbtrack-comint-output-filter-function): Enhancements on
1076 stacktrace detection. (thanks @gnovak)
1077
1078 2013-01-30 Stefan Monnier <monnier@iro.umontreal.ca>
1079
1080 * jit-lock.el (jit-lock-stealth-chunk-start): Don't widen (bug#13542).
1081 (jit-lock-mode, jit-lock-functions, jit-lock-context-unfontify-pos):
1082 Use defvar-local.
1083 (jit-lock-register): Use setq-local.
1084
1085 2013-01-30 Jay Belanger <jay.p.belanger@gmail.com>
1086
1087 * calc-units.el (math-default-units-table): Remove initial value.
1088 (calc-convert-units): Treat expressions where all the units cancel as
1089 if they didn't have units.
1090
1091 2013-01-30 Michael Albinus <michael.albinus@gmx.de>
1092
1093 * net/tramp.el (tramp-process-connection-type): Fix docstring.
1094 (tramp-completion-reread-directory-timeout): Fix type.
1095 (tramp-connection-min-time-diff): New defcustom.
1096
1097 * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
1098
1099 2013-01-30 Glenn Morris <rgm@gnu.org>
1100
1101 * imenu.el (imenu-default-create-index-function):
1102 Put back a version of the infinite loop test removed 2013-01-23.
1103
1104 2013-01-30 Fabián Ezequiel Gallina <fgallina@cuca>
1105
1106 * progmodes/python.el (python-shell-parse-command):
1107 Find python-shell-interpreter with modified environment.
1108
1109 2013-01-30 Stefan Monnier <monnier@iro.umontreal.ca>
1110
1111 * emacs-lisp/cl.el (cl-set-getf): Add compatibility alias.
1112
1113 2013-01-29 Alan Mackenzie <acm@muc.de>
1114
1115 Amend to fontify /regexp/s in actions correctly.
1116 * cc-awk.el (c-awk-harmless-char-re, c-awk-harmless-string*-re):
1117 (c-awk-harmless-string*-here-re): Braces, parens and semicolons
1118 are no longer included.
1119 (c-awk-harmless-line-char-re, c-awk-harmless-line-string*-re):
1120 What used to be these variables without "-line" in the name.
1121 (c-awk-neutral-re): { is no longer neutral. Escaped newlines now are.
1122 (c-awk-non-arith-op-bra-re): Now also matches {.
1123 (c-awk-pre-exp-alphanum-kwd-re): New regexp to match "print",
1124 "return", and "case".
1125 (c-awk-kwd-regexp-sign-re): New, to match "print", etc., followed
1126 by /.
1127 (c-awk-syntax-tablify-/): Check special cases "print /re/", etc.
1128 (c-awk-set-syntax-table-properties): Extend FSM to handle {,},(,),;.
1129
1130 2013-01-29 Michael Albinus <michael.albinus@gmx.de>
1131
1132 * autorevert.el (auto-revert-use-notify):
1133 Use `custom-initialize-default' for initialization. (Bug#13583)
1134
1135 * net/ange-ftp.el (ange-ftp-skip-msgs): Add another message.
1136
1137 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
1138 Catch `suppress'. Otherwise, `tramp-run-real-handler' might be called
1139 in `tramp-file-name-handler'.
1140 (tramp-gw-tunnel-method, tramp-gw-socks-method): Declare for
1141 compatibility.
1142 (tramp-compute-multi-hops): Check, whether
1143 `tramp-gw-tunnel-method' and `tramp-gw-socks-method' are non-nil.
1144
1145 2013-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
1146
1147 * hi-lock.el (hi-lock-unface-buffer): Don't assume `face' is a symbol
1148 (bug#13297).
1149
1150 2013-01-27 Dmitry Gutov <dgutov@yandex.ru>
1151
1152 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Remove some
1153 checks made superfluous by the \_< operator.
1154 * progmodes/ruby-mode.el (ruby-move-to-block): Work with (maybe
1155 temporarily) broken indentation.
1156 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
1157 Highlight nested constants, too. \_< broke that.
1158
1159 2013-01-27 Nobuyoshi Nakada <nobu@ruby-lang.org>
1160
1161 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Use "\\_<"
1162 instead of "\\b".
1163
1164 2013-01-27 Michael Albinus <michael.albinus@gmx.de>
1165
1166 * autorevert.el (auto-revert-handler): Notifications which result
1167 from a saved file shall not be taken into account. (Bug#13557)
1168
1169 2013-01-26 Andreas Schwab <schwab@linux-m68k.org>
1170
1171 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Add optional
1172 parameter BAR-NOT-SYMBOL to control syntax of | for font-lock.
1173 (lisp-mode): Pass t for it. (Bug#13556)
1174
1175 2013-01-25 Alan Mackenzie <acm@muc.de>
1176
1177 AWK Mode: Fix indentation bug at top level. Bug #12274.
1178
1179 * progmodes/cc-engine.el (c-guess-basic-syntax): Move CASE 5P to
1180 just before CASE 5D.
1181
1182 2013-01-25 Dmitry Antipov <dmantipov@yandex.ru>
1183
1184 * net/socks.el (socks-nslookup-host): Use string-to-number.
1185
1186 2013-01-25 Michael Albinus <michael.albinus@gmx.de>
1187
1188 * autorevert.el (auto-revert-remote-files)
1189 (auto-revert-notify-exclude-dir-regexp): New defcustoms.
1190 (auto-revert-notify-enabled, auto-revert-use-notify)
1191 (auto-revert-notify-watch-descriptor-hash-list)
1192 (auto-revert-notify-modified-p, auto-revert-notify-event-p)
1193 (auto-revert-notify-event-descriptor)
1194 (auto-revert-notify-event-action)
1195 (auto-revert-notify-event-file-name): Doc fix.
1196 (global-auto-revert-mode): Reorder checks.
1197 (auto-revert-notify-rm-watch): Respect changed values of
1198 `auto-revert-notify-watch-descriptor-hash-list'.
1199 (auto-revert-notify-add-watch): Check for
1200 `auto-revert-notify-exclude-dir-regexp'. Adapt filters for
1201 `inotify-add-watch'. Watch `default-directory' instead of
1202 `buffer-file-name'. `auto-revert-notify-watch-descriptor-hash-list'
1203 has a changed meaning now. (Bug#13540)
1204 (auto-revert-notify-handler): Change implementation wrt events
1205 returning from a directory.
1206 (auto-revert-handler): Reorder implementation for checks of remote
1207 files.
1208 (auto-revert-buffers): Fix parentheses error.
1209
1210 2013-01-25 Fabián Ezequiel Gallina <fgallina@cuca>
1211
1212 * progmodes/python.el: Enhancements to header documentation about
1213 skeletons. (Bug#5716)
1214
1215 * imenu.el (imenu-default-create-index-function): Remove useless
1216 infinite loop check. (Bug#13438)
1217
1218 2013-01-25 Alan Mackenzie <acm@muc.de>
1219
1220 Fix a bug in the state cache mechanism. Refactor this a bit.
1221
1222 * progmodes/cc-engine.el (c-parse-state-get-strategy): Remove the
1223 `cache-pos' element from the return value.
1224 (c-append-lower-brace-pair-to-state-cache): "Narrow" to end of
1225 buffer to enable proper searching from beyond HERE. Amend the
1226 test for detecting the sought brace pair. Amend the value written
1227 to the "brace desert cache" when the brace isn't found.
1228 (c-remove-stale-state-cache): Rename `good-pos' to `start-point',
1229 and several other variables analogously.
1230 (c-remove-stale-state-cache-backwards): Change `cache-pos' from a
1231 parameter to a locally calculated variable.
1232 (c-parse-state-1): Change the calling conventions to the two
1233 defuns involving `cache-pos'.
1234
1235 2013-01-25 Chong Yidong <cyd@gnu.org>
1236
1237 * xml.el (xml-entity-or-char-ref-re): Fix regexp.
1238
1239 2013-01-24 Aaron Ecay <aaronecay@gmail.com> (tiny change)
1240
1241 * paren.el (show-paren-function): Make sure to set 'priority and
1242 'face only if the overlay does exist.
1243
1244 2013-01-24 Michael Albinus <michael.albinus@gmx.de>
1245
1246 * net/tramp.el (tramp-tramp-file-p): Check, whether NAME is unibyte.
1247
1248 * net/tramp-sh.el (tramp-sh-handle-set-file-acl): Do not suppress
1249 basic attributes.
1250 (tramp-sh-handle-set-file-acl): Improve error checking.
1251
1252 2013-01-24 Dmitry Antipov <dmantipov@yandex.ru>
1253
1254 * doc-view.el (doc-view-display): Force mode line update until all
1255 document is converted. Suggested by Stefan Monnier (Bug#13164).
1256
1257 2013-01-23 Bastien Guerry <bzg@gnu.org>
1258
1259 * paren.el (show-paren-function): Make sure an overlay exists
1260 before trying to delete it. Also use `pos' as a position only
1261 when it is an integer.
1262
1263 2013-01-23 Dmitry Antipov <dmantipov@yandex.ru>
1264
1265 * play/gametree.el (gametree-break-line-here): Use point-marker.
1266
1267 2013-01-22 Michael Albinus <michael.albinus@gmx.de>
1268
1269 * net/tramp-cmds.el (tramp-bug, tramp-append-tramp-buffers):
1270 Mark descriptive parts with `display' property.
1271
1272 2013-01-21 Agustín Martín Domingo <agustin.martin@hispalinux.es>
1273
1274 * textmodes/ispell.el (ispell-hunspell-dictionary-equivs-alist):
1275 New variable to map standard dict names to hunspell ones.
1276 (ispell-set-spellchecker-params): Make sure specific dict names
1277 are used for standard dicts with hunspell.
1278
1279 2013-01-21 Tassilo Horn <tsdh@gnu.org>
1280
1281 * textmodes/reftex-cite.el (reftex-format-citation): Add format
1282 chars for note (%N) and url (%U).
1283 * textmodes/reftex-vars.el (reftex-cite-format): Document them.
1284
1285 2013-01-21 Juri Linkov <juri@jurta.org>
1286
1287 * frame.el: Bind `f10' in `esc-map' to `toggle-frame-maximized'
1288 in addition to existing separate binding `meta f10' in `global-map'.
1289 (Bug#13484)
1290
1291 2013-01-21 Michael Albinus <michael.albinus@gmx.de>
1292
1293 Improve XEmacs compatibility.
1294
1295 * net/tramp.el (tramp-replace-environment-variables): Make it a defun.
1296
1297 * net/tramp-adb.el (top): Require `time-date'.
1298 (tramp-adb-ls-output-time-less-p): Use `tramp-time-less-p'.
1299 (tramp-adb-handle-copy-file, tramp-adb-handle-rename-file):
1300 Use `tramp-file-name-handler'.
1301 (tramp-adb-maybe-open-connection):
1302 Use `tramp-compat-set-process-query-on-exit-flag'.
1303
1304 * net/tramp-sh.el (tramp-sh-handle-file-acl):
1305 Use `tramp-compat-funcall'.
1306
1307 * net/tramp-smb.el (tramp-smb-handle-file-acl): Use `looking-at' and
1308 `tramp-compat-funcall'.
1309
1310 2013-01-21 Jürgen Hötzel <juergen@archlinux.org>
1311
1312 * net/tramp-adb.el (tramp-adb-handle-start-file-process): Complete
1313 reimplementation using "adb shell command ..." instead of running
1314 remote shell interactively.
1315
1316 2013-01-20 Glenn Morris <rgm@gnu.org>
1317
1318 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
1319 Add native profiler menu entries.
1320
1321 * profiler.el (profiler-running-p): New function.
1322 (profiler-cpu-profile): Use profiler-running-p.
1323 (profiler-report-mode-map): Add some more menu entries.
1324
1325 2013-01-19 Glenn Morris <rgm@gnu.org>
1326
1327 * mail/unrmail.el (unrmail): Do not mangle the mbox From line;
1328 fixes 2012-12-07 change. (Bug#13499)
1329
1330 2013-01-19 Leo Liu <sdl.web@gmail.com>
1331
1332 * dired.el (dired-get-marked-files): Prune erroneous values due to
1333 last change. (Bug#13152)
1334
1335 2013-01-19 Glenn Morris <rgm@gnu.org>
1336
1337 * progmodes/etags.el (tags-table-check-computed-list):
1338 Preserve point in tags buffer. (Bug#13412)
1339
1340 * emacs-lisp/lisp-mode.el (lisp-indent-function): Doc fix.
1341
1342 2013-01-19 Christian Wittern <cwittern@gmail.com> (tiny change)
1343 Chong Yidong <cyd@gnu.org>
1344
1345 * image-mode.el (image-next-file, image-previous-file):
1346 New commands (Bug#8453).
1347 (image-mode-map): Bind them to n and p.
1348 (image-mode--images-in-directory): New helper function.
1349
1350 2013-01-19 Chong Yidong <cyd@gnu.org>
1351
1352 * image-mode.el (image-mode-fit-frame): Add a frame argument.
1353 Suggested by Drew Adams (Bug#7730). Handle window decorations;
1354 save and restore the old window configuration.
1355
1356 2013-01-18 Leo Liu <sdl.web@gmail.com>
1357
1358 * progmodes/js.el: Tweak autoload cookie for alias.
1359
1360 2013-01-17 Michael Albinus <michael.albinus@gmx.de>
1361
1362 * autorevert.el (auto-revert-notify-watch-descriptor): Make it
1363 buffer local, again. This was lost with the fix on 2013-01-12.
1364
1365 2013-01-17 Jürgen Hötzel <juergen@archlinux.org>
1366
1367 * eshell/esh-util.el (eshell-path-env): Make it buffer local, in
1368 order to support several eshell buffers in parallel.
1369
1370 2013-01-17 Michael Albinus <michael.albinus@gmx.de>
1371
1372 * autorevert.el (auto-revert-use-notify): In the :set function, do
1373 not modify `kill-buffer-hook'.
1374 (auto-revert-notify-rm-watch):
1375 Remove `auto-revert-notify-rm-watch' from `kill-buffer-hook'.
1376 (auto-revert-notify-add-watch): Do not call
1377 `auto-revert-notify-rm-watch', but add it to a buffer local
1378 `kill-buffer-hook'.
1379
1380 2013-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
1381
1382 * emacs-lisp/trace.el (trace--read-args): Use a closure and an honest
1383 call to `eval' rather than a backquoted lambda.
1384
1385 2013-01-15 Stefan Monnier <monnier@iro.umontreal.ca>
1386
1387 * emacs-lisp/nadvice.el (advice--tweak): Make it possible for `tweak'
1388 to return an explicit nil.
1389 (advice--remove-function): Change accordingly.
1390
1391 * emacs-lisp/advice.el (ad-preactivate-advice): Adjust the cleanup to
1392 the use of nadvice.el.
1393
1394 * progmodes/which-func.el (which-function): Silence imenu errors
1395 (bug#13433).
1396
1397 2013-01-15 Michael R. Mauger <mmaug@yahoo.com>
1398
1399 * progmodes/sql.el: (sql-imenu-generic-expression):
1400 (sql-mode-font-lock-object-name): Match schema qualified names.
1401 (sql-connect): Use string keys.
1402 (sql-product-interactive): Wait for interpreter prompt.
1403 (sql-comint-oracle): Set process coding based on NLS_LANG.
1404
1405 2013-01-15 Michael R. Mauger <mmaug@yahoo.com>
1406
1407 * progmodes/sql.el (sql-output-to-send): Remove, unused.
1408 (sql-interactive-remove-continuation-prompt):
1409 (sql-send-magic-terminator, sql-interactive-mode): Remove references.
1410
1411 2013-01-14 Leo Liu <sdl.web@gmail.com>
1412
1413 * calendar/calendar.el (calendar-redraw): Sync window-point and point.
1414 (Bug#13420)
1415
1416 2013-01-14 Glenn Morris <rgm@gnu.org>
1417
1418 * progmodes/compile.el (compilation-error-regexp-alist-alist):
1419 Fix interpretation of gnu line.col1-col2 format. (Bug#13335)
1420
1421 2013-01-13 Fabián Ezequiel Gallina <fgallina@cuca>
1422
1423 * progmodes/python.el (python-nav-end-of-statement):
1424 Fix cornercase when handling multiline strings.
1425
1426 2013-01-13 Richard Stallman <rms@gnu.org>
1427
1428 * mail/sendmail.el (mail-position-on-field): Add doc string.
1429
1430 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
1431 Get current message boundaries and pass them to
1432 message-forward-make-body-mime. Minor style changes.
1433
1434 2013-01-13 Eli Zaretskii <eliz@gnu.org>
1435
1436 * cus-start.el (all): Avoid warnings about
1437 scroll-bar-adjust-thumb-portion on platforms where it is not defined.
1438
1439 2013-01-11 Jan Djärv <jan.h.d@swipnet.se>
1440
1441 * cus-start.el (all): Add scroll-bar-adjust-thumb-portion.
1442
1443 2013-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
1444
1445 * jit-lock.el (jit-lock-debug-mode): New minor mode.
1446 (jit-lock--debug-fontifying): New var.
1447 (jit-lock--debug-fontify): New function.
1448 * subr.el (condition-case-unless-debug): Don't prevent catching the
1449 error, just let the debbugger run.
1450 * emacs-lisp/timer.el (timer-event-handler): Don't prevent debugging
1451 timer code and don't drop errors silently.
1452
1453 2013-01-12 Michael Albinus <michael.albinus@gmx.de>
1454
1455 * autorevert.el (auto-revert-notify-watch-descriptor): Give it
1456 `permanent-local' property.
1457 (auto-revert-notify-handler): Use `file-equal-p'.
1458
1459 2013-01-12 Eli Zaretskii <eliz@gnu.org>
1460
1461 * autorevert.el (auto-revert-notify-handler): Fix filtering of
1462 file notification by ACTION. For filtering by file name, compare
1463 only the non-directory part of the file name.
1464
1465 2013-01-12 Stefan Monnier <monnier@iro.umontreal.ca>
1466
1467 * autorevert.el: Use cl-lib instead of cl.
1468
1469 * vc/vc-bzr.el (vc-bzr--sanitize-header): New function (bug#13307).
1470 (vc-bzr-checkin): Use it.
1471 * vc/log-edit.el (log-edit-extract-headers): Don't presume FUNCTION
1472 will preserve match-data.
1473
1474 2013-01-11 Felix H. Dahlke <fhd@ubercode.de>
1475
1476 * progmodes/js.el: Fix multiline declarations's indentation (bug#8576).
1477 (js--declaration-keyword-re): New var.
1478 (js--multi-line-declaration-indentation): New function.
1479 (js--proper-indentation): Use it.
1480
1481 2013-01-11 Aaron S. Hawley <Aaron.Hawley@vtinfo.com>
1482
1483 * calc/calc.el (calc-highlight-selections-with-faces)
1484 (calc-dispatch):
1485 * comint.el (comint-history-isearch-message):
1486 * emacs-lisp/edebug.el (edebug-read, edebug-eval-defun):
1487 * ffap.el (ffap-string-at-point-region, ffap-next)
1488 (ffap-string-at-point, ffap-string-around)
1489 (ffap-copy-string-as-kill, ffap-highlight-overlay)
1490 (ffap-literally):
1491 * font-lock.el (font-lock-keywords-alist)
1492 (font-lock-removed-keywords-alist):
1493 * help-mode.el (help-xref-symbol-regexp):
1494 * info.el (Info-find-emacs-command-nodes):
1495 * international/mule.el (add-to-coding-system-list):
1496 * isearch.el (isearch-message-function, isearch-fail-pos):
1497 * misearch.el (multi-isearch-next-buffer-function):
1498 * newcomment.el (comment-box):
1499 * printing.el (pr-txt-printer-alist, pr-ps-printer-alist)
1500 (pr-setting-database):
1501 * progmodes/cc-fonts.el (c-font-lock-keywords-3)
1502 (c++-font-lock-keywords-3, objc-font-lock-keywords-3)
1503 (java-font-lock-keywords-3, idl-font-lock-keywords-3)
1504 (pike-font-lock-keywords-3):
1505 * progmodes/compile.el (compile):
1506 * progmodes/etags.el (tags-table-files)
1507 (tags-table-files-function, tags-included-tables-function):
1508 * progmodes/gdb-mi.el (gdb, gdb-setup-windows)
1509 (gdb-restore-windows):
1510 * ps-print.el (ps-even-or-odd-pages, ps-spool-buffer-with-faces)
1511 (ps-n-up-filling-database):
1512 * server.el (server-buffer, server-log):
1513 * simple.el (newline, delete-backward-char, delete-forward-char)
1514 (minibuffer-history-isearch-message, kill-line, track-eol)
1515 (temporary-goal-column):
1516 * textmodes/flyspell.el (flyspell-mark-duplications-flag)
1517 (flyspell-default-deplacement-commands):
1518 * textmodes/ispell.el (ispell-accept-output):
1519 * textmodes/sgml-mode.el (html-tag-help):
1520 * vc/compare-w.el (compare-ignore-whitespace)
1521 (compare-ignore-case, compare-windows-dehighlight):
1522 * vc/diff.el (diff):
1523 * whitespace.el (whitespace-point)
1524 (whitespace-font-lock-refontify, whitespace-bob-marker)
1525 (whitespace-eob-marker): Fix ambiguous doc string cross-reference(s).
1526
1527 2013-01-11 Michael Albinus <michael.albinus@gmx.de>
1528
1529 * autorevert.el (top): Require 'cl in order to pacify byte compiler.
1530 (auto-revert-notify-rm-watch): Ignore errors.
1531 (auto-revert-notify-add-watch): Ignore errors. Use '(modify) for
1532 inotify, and '(size last-write-time) for w32notify.
1533 Set buffer-local `auto-revert-use-notify' to nil when adding a file
1534 watch fails - this is a fallback to the file modification check.
1535 (auto-revert-notify-event-p, auto-revert-notify-event-descriptor)
1536 (auto-revert-notify-event-action)
1537 (auto-revert-notify-event-file-name): New defuns.
1538 (auto-revert-notify-handler): Use them. Implement first
1539 plausibility checks.
1540 (auto-revert-handler): Handle also `auto-revert-tail-mode'.
1541
1542 2013-01-11 Julien Danjou <julien@danjou.info>
1543
1544 * color.el (color-rgb-to-hsv): Fix conversion computing in case min and
1545 max are almost equal. Also return the correct value for V which is
1546 already between 0 and 1.
1547
1548 2013-01-11 Dmitry Antipov <dmantipov@yandex.ru>
1549
1550 * emacs-lisp/ert.el (ert-run-test): Use point-max-marker.
1551
1552 2013-01-11 Eli Zaretskii <eliz@gnu.org>
1553
1554 * autorevert.el (auto-revert-notify-rm-watch)
1555 (auto-revert-notify-add-watch): Fix typos in w32notify function
1556 names.
1557
1558 2013-01-10 Michael Albinus <michael.albinus@gmx.de>
1559
1560 * autorevert.el (auto-revert-notify-enabled): Move up.
1561 (auto-revert-use-notify): New defcustom.
1562 (auto-revert-mode, global-auto-revert-mode)
1563 (auto-revert-notify-add-watch, auto-revert-handler)
1564 (auto-revert-buffers): Use `auto-revert-use-notify' instead of
1565 `auto-revert-notify-enabled'.
1566
1567 2013-01-10 Elias Pipping <pipping@exherbo.org>
1568
1569 * files.el (auto-mode-alist): Use doc-view for djvu files (bug#13164).
1570 * doc-view.el (doc-view-document->bitmap):
1571 Use doc-view-single-page-converter-function instead of
1572 single-page-converter arg; adjust callers.
1573
1574 2013-01-10 Feng Li <fengli@gmail.com> (tiny change)
1575
1576 * progmodes/which-func.el (which-function): Understand Semantic's use
1577 of overlays in imenu--index-alist.
1578
1579 2013-01-10 Wolfgang Jenkner <wjenkner@inode.at>
1580
1581 * man.el: Handle different "man -k" behaviors (bug#13160). Use utf-8.
1582 (Man-man-k-use-anchor): New var.
1583 (Man-parse-man-k): New function.
1584 (Man-completion-table): Use it.
1585 (man): Flush the completion cache between uses.
1586
1587 2013-01-10 Michael Albinus <michael.albinus@gmx.de>
1588
1589 * autorevert.el: Add file watch support.
1590 (auto-revert-notify-enabled): New defconst.
1591 (auto-revert-notify-watch-descriptor-hash-list)
1592 (auto-revert-notify-watch-descriptor)
1593 (auto-revert-notify-modified-p): New defvars.
1594 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
1595 (auto-revert-notify-handler): New defuns.
1596 (auto-revert-mode, global-auto-revert-mode): Remove file watches
1597 when mode is disabled.
1598 (auto-revert-handler): Check for `auto-revert-notify-modified-p'.
1599 (auto-revert-buffers): Add file watches for active buffers.
1600
1601 2013-01-10 Dmitry Antipov <dmantipov@yandex.ru>
1602
1603 * cus-start.el (toplevel): Only allow float values for
1604 scroll-up-aggressively and scroll-down-aggressively.
1605 Allow any number for line-spacing.
1606
1607 2013-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
1608
1609 * doc-view.el (doc-view-pdfdraw-program): Allow "pdfdraw" name.
1610 (doc-view-pdf->png-converter-function): Use mupdf if available.
1611 (doc-view-djvu->png-converter-function)
1612 (doc-view-ps->png-converter-function): Remove.
1613 (doc-view--image-file-pattern): Replace doc-view--image-file-extension.
1614 (doc-view-goto-page, doc-view-convert-current-doc, doc-view-display)
1615 (doc-view-already-converted-p): Adjust accordingly.
1616 (doc-view-mode-p): Simplify.
1617 (doc-view-enlarge): Use setq-local.
1618 (doc-view-pdf->png-converter-ghostscript)
1619 (doc-view-djvu->png-converter-ddjvu)
1620 (doc-view-pdf->png-converter-mupdf): Rework to call
1621 doc-view-start-process directly.
1622 (doc-view-pdf/ps->png): Simplify accordingly.
1623 (doc-view-pdf->png-1, doc-view-djvu->png-1): Remove.
1624 (doc-view-document->bitmap): Rename from doc-view-document->png.
1625 (doc-view-convert-current-doc): Merge pdf and djvu cases.
1626 (doc-view-set-slice-from-bounding-box): Fix completion table.
1627 (doc-view-mode): Use add-hook for after-revert-hook.
1628
1629 2013-01-10 Glenn Morris <rgm@gnu.org>
1630
1631 * emacs-lisp/authors.el (authors-ignored-files)
1632 (authors-valid-file-names, authors-renamed-files-alist):
1633 Add some more entries.
1634
1635 2013-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
1636
1637 * image-mode.el (image-mode-winprops): Don't throw away the fallback
1638 `t' pseudo-window entry.
1639
1640 2013-01-10 Alan Mackenzie <acm@muc.de>
1641
1642 Fix bugs in the c-parse-state mechanism. Reuse some markers
1643 instead of continually generating new ones.
1644
1645 * progmodes/cc-engine.el (c-state-old-cpp-beg-marker)
1646 (c-state-old-cpp-end-marker): New variables.
1647 (c-append-lower-brace-pair-to-state-cache): Start a backward
1648 search for "}" definitively outside CPP constructs.
1649 (c-remove-stale-state-cache): Inform the caller of a need to
1650 search back for a brace pair in certain circumstances.
1651 (c-state-maybe-marker): New macro.
1652 (c-parse-state): Reuse markers when appropriate.
1653
1654 2013-01-10 Glenn Morris <rgm@gnu.org>
1655
1656 * simple.el (execute-extended-command): Doc fix.
1657 Bind prefix-arg around read-extended-command, for prompt. (Bug#13395)
1658
1659 2013-01-10 Chong Yidong <cyd@gnu.org>
1660
1661 * faces.el (read-face-name): Doc fix.
1662
1663 2013-01-10 Roland Winkler <winkler@gnu.org>
1664
1665 * emacs-lisp/crm.el: Allow any regexp for separators.
1666 (crm-default-separator): All spaces around the default comma separator.
1667 (crm--completion-command): New macro.
1668 (crm-completion-help, crm-complete, crm-complete-word): Use it.
1669 (crm-complete-and-exit): Handle non-single-char separators.
1670
1671 2013-01-09 Elias Pipping <pipping@lavabit.com>
1672
1673 * doc-view.el: Add support for DjVu (bug#13164).
1674 (doc-view-djvu->png-converter-function): New config var.
1675 (doc-view-single-page-converter-function, doc-view--image-type)
1676 (doc-view--image-file-extension): New vars.
1677 (doc-view-mode): Initialize them.
1678 (doc-view-goto-page): Use them.
1679 (doc-view-mode-p): Add support for ddjvu.
1680 (doc-view-djvu->png-converter-ddjvu, doc-view-djvu->png-1)
1681 (doc-view-set-up-single-converter): New funs.
1682 (doc-view-pdf/ps->png): Extend for djvu.
1683 (doc-view-document->png): Rename from doc-view-pdf->png.
1684 (doc-view-convert-current-doc): Handle djvu.
1685 (doc-view-insert-image, doc-view-display)
1686 (doc-view-already-converted-p): Don't hardcode png.
1687 (doc-view-set-doc-type): Recognize djvu docs.
1688
1689 2013-01-09 Elias Pipping <pipping@lavabit.com>
1690
1691 * doc-view.el: Add support for mupdf converter (bug#13164).
1692 (doc-view-pdfdraw-program, doc-view-pdf->png-converter-function)
1693 (doc-view-ps->png-converter-function): New config vars.
1694 (doc-view-pdf->png-converter-ghostscript)
1695 (doc-view-ps->png-converter-ghostscript)
1696 (doc-view-pdf->png-converter-mupdf): New functions.
1697 (doc-view-pdf/ps->png, doc-view-pdf->png-1): Use them.
1698
1699 2013-01-09 Jürgen Hötzel <juergen@archlinux.org>
1700
1701 * net/tramp.el (tramp-eshell-directory-change): Check remote-path
1702 first in session cache: When `tramp-own-remote-path' is in
1703 `tramp-remote-path', the remote path is only set in the session
1704 cache.
1705
1706 2013-01-09 Glenn Morris <rgm@gnu.org>
1707
1708 * emacs-lisp/trace.el (trace-function-foreground)
1709 (trace-function-background): Doc fix.
1710
1711 2013-01-09 Juri Linkov <juri@jurta.org>
1712
1713 * international/mule-cmds.el (read-char-by-name): Move let-binding
1714 of completion-ignore-case around completing-read to fix regression
1715 exhibited by the test case `C-x 8 RET *acc TAB' and caused by
1716 `string-match-p' using the nil value of `case-fold-search' and
1717 `completion-ignore-case' in `completion-pcm--all-completions'.
1718 (Bug#12615).
1719
1720 2013-01-09 Glenn Morris <rgm@gnu.org>
1721
1722 * progmodes/compile.el (compilation-parse-errors):
1723 Fix typo. (Bug#13369)
1724
1725 2013-01-09 Vitalie Spinu <spinuvit@gmail.com> (tiny change)
1726
1727 * comint.el (comint-send-input): Check size of buffer before
1728 waiting for process output, in case already accepted. (Bug#13290)
1729
1730 2013-01-09 Paul Eggert <eggert@cs.ucla.edu>
1731
1732 Spelling fixes.
1733 * net/tramp-adb.el (tramp-adb-get-toolbox):
1734 Fix misspelling of 'unknown'.
1735
1736 2013-01-08 Juri Linkov <juri@jurta.org>
1737
1738 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
1739 * progmodes/flymake.el (flymake-errline, flymake-warnline):
1740 Use underline style wave on terminals that support it. (Bug#13000)
1741
1742 2013-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
1743
1744 * emacs-lisp/pcase.el (pcase--split-equal): Also take advantage if
1745 the predicate returns nil.
1746
1747 * simple.el: Use lexical-binding.
1748 (primitive-undo): Use pcase.
1749 (minibuffer-history-isearch-push-state): Use a closure.
1750
1751 2013-01-08 Aaron S. Hawley <aaron.s.hawley@gmail.com>
1752
1753 * simple.el (primitive-undo): Move from undo.c.
1754
1755 2013-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
1756
1757 * vc/pcvs.el (cvs-cleanup-collection): Extend meaning of `rm-handled'.
1758 (cvs-mode-remove-handled): Use it (bug#13380).
1759
1760 * emacs-lisp/nadvice.el (advice--tweak): New function.
1761 (advice--remove-function, advice--subst-main): Use it.
1762
1763 * emacs-lisp/advice.el: Update commentary.
1764
1765 2013-01-08 Michael Albinus <michael.albinus@gmx.de>
1766
1767 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
1768 Remove spurious entry.
1769
1770 2013-01-08 Glenn Morris <rgm@gnu.org>
1771
1772 * net/tramp.el (tramp-default-host-alist): Add :version.
1773
1774 2013-01-08 Juri Linkov <juri@jurta.org>
1775
1776 * info.el (Info-read-node-name-2): Don't duplicate suffixes for
1777 single completion. (Bug#12456)
1778 (info--manual-names): Expand node completions into an explicit list
1779 before appending it to another list. Filter out internal buffers
1780 with the leading space in the buffer name. (Bug#10771)
1781
1782 2013-01-08 Juri Linkov <juri@jurta.org>
1783
1784 * info.el (Info-read-node-name-1): Allow empty node name in (FILENAME)
1785 that defaults to the Top node.
1786 (Info-goto-node, Info-read-node-name): Doc fix to mention that
1787 the short format (FILENAME) goes to the Top node.
1788 (Info-build-node-completions): Rename arg `file' to `filename'.
1789 (Bug#13365)
1790
1791 2013-01-07 Bastien Guerry <bzg@gnu.org>
1792
1793 * menu-bar.el (menu-bar-search-documentation-menu):
1794 Use `apropos-user-option' and fix the help message.
1795
1796 2013-01-07 Bastien Guerry <bzg@gnu.org>
1797
1798 * apropos.el (apropos-do-all): Update docstring.
1799 (apropos-user-option-button): New face.
1800 (apropos-user-option): Rename from `apropos-variable' and update
1801 docstring.
1802 (apropos-variable): Rewrite, now show all variables by default.
1803 (apropos-print): Mention "User option" instead of "Variable" when
1804 printing doc for user options. (Bug#13276)
1805
1806 2013-01-07 Jürgen Hötzel <juergen@archlinux.org>
1807
1808 * net/tramp-adb.el (tramp-do-parse-file-attributes-with-ls):
1809 Handle filename correctly, when parsing "source -> target" symlink
1810 output.
1811 (tramp-adb-handle-set-file-times): New defun.
1812
1813 2013-01-07 Stefan Monnier <monnier@iro.umontreal.ca>
1814
1815 * emacs-lisp/advice.el (ad-activate-advised-definition): Refresh the
1816 advice list when the interactive-spec of ad-Advice-* changes.
1817
1818 2013-01-07 Katsumi Yamaoka <yamaoka@jpl.org>
1819
1820 * wid-edit.el (widget-default-get): Work for inlined elements.
1821 (Bug#12670)
1822
1823 2013-01-07 Michael Albinus <michael.albinus@gmx.de>
1824
1825 * net/tramp.el (tramp-default-host-alist): New defcustom.
1826 (tramp-find-host): Use it.
1827 (tramp-eshell-directory-change): Move from tramp-sh.el. Add to
1828 `eshell-directory-change-hook'.
1829
1830 * net/tramp-adb.el (top): Add adb specific entry in
1831 `tramp-default-host-alist'.
1832 (tramp-adb-file-name-host): Remove function.
1833 (tramp-adb-execute-adb-command, tramp-adb-maybe-open-connection):
1834 Use `tramp-file-name-host' instead of `tramp-adb-file-name-host'.
1835
1836 * net/tramp-sh.el: Move eshell integration code to tramp.el.
1837
1838 2013-01-06 Jürgen Hötzel <juergen@archlinux.org>
1839
1840 * net/tramp-adb.el (tramp-methods): Add `tramp-tmpdir' entry.
1841
1842 2013-01-06 Michael Albinus <michael.albinus@gmx.de>
1843
1844 * net/tramp-adb.el (tramp-adb-ls-toolbox-regexp): The file size can
1845 consist of more than one digit.
1846 (tramp-adb-file-name-handler-alist):
1847 Use `tramp-handle-file-exists-p' consistently.
1848 (tramp-adb-file-name-handler): Don't tweak `tramp-default-host'.
1849 (tramp-adb-handle-file-exists-p): Remove function.
1850 (tramp-adb-file-name-host): New defun.
1851 (tramp-adb-execute-adb-command, tramp-adb-maybe-open-connection):
1852 Use it.
1853 (tramp-adb-maybe-open-connection): Set "remote-path" property.
1854
1855 2013-01-06 Chong Yidong <cyd@gnu.org>
1856
1857 * vc/vc.el (vc-next-action): Detect buffer modifications
1858 conflicting with locking VCS operation (Bug#11490).
1859
1860 * vc/vc-hooks.el (vc-after-save): DTRT for locking VCSes.
1861
1862 2013-01-05 Michael Albinus <michael.albinus@gmx.de>
1863
1864 * net/tramp-adb.el (tramp-do-parse-file-attributes-with-ls):
1865 (tramp-adb-handle-directory-files-and-attributes): Fix typos.
1866
1867 2013-01-05 Jürgen Hötzel <juergen@archlinux.org>
1868
1869 * net/tramp-adb.el (tramp-adb-handle-file-attributes): More robust
1870 parsing of ls output using regular expression (handle filenames
1871 with spaces). Use virtual device number.
1872 (tramp-do-parse-file-attributes-with-ls): New defun (Code
1873 cleanup).
1874
1875 2013-01-04 Daiki Ueno <ueno@gnu.org>
1876
1877 * epg.el: Silence byte-compiler warnings.
1878 (epg--start): Use delete-char instead of delete-backward-char.
1879 (epg-wait-for-completion): Pass FRAME arg to redraw-frame.
1880
1881 2013-01-04 Daiki Ueno <ueno@gnu.org>
1882
1883 * epg.el (epg--start): Don't call "tty" program on W32 platforms.
1884 Suggested by Eli Zaretskii <eliz@gnu.org>.
1885
1886 2013-01-04 Michael Albinus <michael.albinus@gmx.de>
1887
1888 * net/tramp-sh.el (tramp-set-file-uid-gid): UID and GID must be
1889 non-negative integers. Otherwise, the default values are used.
1890 (tramp-convert-file-attributes): Convert uid and gid to integers.
1891
1892 2013-01-04 Glenn Morris <rgm@gnu.org>
1893
1894 * term.el (term-handle-colors-array): Ensure face attributes
1895 are fully specified, not nil. (Bug#13337)
1896
1897 * term.el (term-default-fg-color, term-default-bg-color):
1898 Fix custom type.
1899
1900 * progmodes/etags.el (tags-compression-info-list): Doc fix.
1901 (tag-find-file-of-tag-noselect): Check auto-compression-mode
1902 rather than 'jka-compr being loaded. (Bug#13338)
1903
1904 2013-01-04 Wesley Dawson <whd@lavabit.com> (tiny change)
1905
1906 * icomplete.el (icomplete-completions):
1907 Honor icomplete-prospects-height once more following
1908 2012-11-29 changes. (Bug#13224)
1909
1910 2013-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
1911
1912 * subr.el (internal--called-interactively-p--get-frame): Find aliases
1913 of called-interactively-p as well (bug#13237).
1914
1915 * view.el (view--enable, view--disable): Rename from view-mode-enable
1916 and view-mode-disable and assume it's called from view-mode.
1917 (view-mode-enable, view-mode-disable): Redefine as obsolete
1918 compatibility layer above view-mode.
1919 (view-mode-enter): Call `view-mode'.
1920
1921 * files.el (after-find-file): Call `view-mode'.
1922
1923 * doc-view.el (doc-view-scale-internally): New var.
1924 (doc-view-enlarge, doc-view-insert-image): Obey it.
1925
1926 2013-01-03 Daiki Ueno <ueno@gnu.org>
1927
1928 * epg.el (epg--start): Ignore errors when /dev/fd/0 does not
1929 exist. (Bug#13344)
1930
1931 2013-01-03 Glenn Morris <rgm@gnu.org>
1932
1933 * mail/rmail.el (rmail-set-header-1): Ignore case.
1934 Handle multi-line headers. (Bug#13330)
1935
1936 * progmodes/make-mode.el (makefile-fill-paragraph): Add doc.
1937 Handle paragraph starting at beginning of buffer.
1938
1939 * subr.el (eval-after-load): Don't purecopy the form, so that it
1940 can be nconc'd later on; reverts 2009-11-11 change. (Bug#13331)
1941
1942 * emacs-lisp/byte-run.el (defun): Place cl declarations
1943 after any interactive spec. (Bug#13265)
1944
1945 2013-01-02 Andreas Schwab <schwab@linux-m68k.org>
1946
1947 * emacs-lisp/byte-run.el (defmacro): Use same argument parsing as
1948 defun. Don't check for DECL if DOCSTRING isn't a string.
1949 (defun): Likewise.
1950
1951 2013-01-02 Glenn Morris <rgm@gnu.org>
1952
1953 * eshell/em-cmpl.el (eshell-pcomplete):
1954 More thoroughly imitate pcomplete. (Bug#13293)
1955
1956 * files.el (parse-colon-path): Doc fix. (Bug#12351)
1957 Return nil for empty path elements. (Bug#13296)
1958
1959 2013-01-02 Fabián Ezequiel Gallina <fgallina@cuca>
1960
1961 * progmodes/python.el (python-nav-end-of-statement): Rewrite in
1962 order to improve efficiency (Based on Daniel Colascione's
1963 <dancol@dancol.org> patch). (Bug#13182)
1964
1965 2013-01-02 Glenn Morris <rgm@gnu.org>
1966
1967 * vc/log-edit.el (log-edit-header-contents-regexp): Add doc string.
1968
1969 2013-01-02 Andreas Schwab <schwab@linux-m68k.org>
1970
1971 * emacs-lisp/byte-run.el (defmacro): Don't lose final nil if
1972 neither DOCSTRING nor DECL was given. (Bug#13316)
1973
1974 2013-01-02 Michael Albinus <michael.albinus@gmx.de>
1975
1976 * net/tramp-sh.el (tramp-sh-handle-set-file-acl): Add argument to
1977 `error' call.
1978 (tramp-do-copy-or-rename-file): Ignore errors when calling
1979 `set-file-extended-attributes'.
1980
1981 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
1982 Add handler for `file-acl'.
1983 (tramp-smb-handle-file-acl): New defun.
1984
1985 2013-01-02 Jay Belanger <jay.p.belanger@gmail.com>
1986
1987 * calc/README: Mention ISO 8601 week-numbering dates.
1988
1989 2013-01-01 Martin Rudalics <rudalics@gmx.at>
1990
1991 * view.el (view-mode-enable): New argument run-view-mode-hook.
1992 Run view-mode-hook only when it's non-nil (Bug#13315).
1993 (view-mode-enter): Call view-mode-enable with run-view-mode-hook
1994 argument t.
1995
1996 2012-12-31 Jürgen Hötzel <juergen@archlinux.org>
1997
1998 * net/tramp-adb.el (tramp-adb-maybe-open-connection): Handle errors
1999 (No device connected, invalid device name). (Bug #13299)
2000
2001 2012-12-31 Martin Rudalics <rudalics@gmx.at>
2002
2003 * window.el (window-resizable--p): Rename to window-resizable-p.
2004 (window-resize-no-error): New function.
2005
2006 * mail/rmail.el (rmail-maybe-display-summary): Restore behavior
2007 broken in fix from 2012-12-28.
2008
2009 2012-12-31 Stefan Monnier <monnier@iro.umontreal.ca>
2010
2011 * subr.el (special-form-p): Don't signal errors on undef aliases.
2012
2013 2012-12-31 Jay Belanger <jay.p.belanger@gmail.com>
2014
2015 * calc/calc-forms.el (math-parse-date): Try using
2016 `math-parse-iso-date' when it looks like it might be needed.
2017 Allow times of 24:00.
2018 (math-parse-date-validate, math-parse-iso-date-validate): Allow times
2019 of 24:00.
2020
2021 2012-12-30 Glenn Morris <rgm@gnu.org>
2022
2023 * net/mairix.el (rmail, rmail-summary-displayed, rmail-summary):
2024 Remove unnecessary/buggy autoloads (missing interactive). (Bug#13294)
2025 (rmail-summary-displayed, rmail-summary): Declare.
2026 (mairix-rmail-display): Just require rmail.
2027
2028 2012-12-30 Chong Yidong <cyd@gnu.org>
2029
2030 * emacs-lisp/package.el (package-untar-buffer): Improve integrity
2031 check for the tarball contents.
2032
2033 2012-12-30 Matt Fidler <matt.fidler@alcon.com> (tiny change)
2034
2035 * emacs-lisp/package.el (package-untar-buffer): Handle problematic
2036 tarfile content listings (Bug#13136).
2037
2038 2012-12-30 Mark Lillibridge <mark.lillibridge@hp.com>
2039
2040 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
2041 Insert the undecoded text of the message being forwarded. (Bug#9521)
2042
2043 2012-12-30 Michael Albinus <michael.albinus@gmx.de>
2044
2045 * net/tramp-sh.el (tramp-set-file-uid-gid): Convert UID and GID to
2046 integers, if they are real numbers. (Bug#13282)
2047
2048 * net/tramp-sh.el (tramp-sh-handle-set-file-selinux-context):
2049 Return `t' on success.
2050
2051 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
2052 Add handler for `set-file-selinux-context'.
2053
2054 2012-12-29 Michael Albinus <michael.albinus@gmx.de>
2055
2056 * net/tramp-sh.el (tramp-sh-handle-file-acl): Suppress basic attributes.
2057 (tramp-sh-handle-set-file-acl): Return `t' on success.
2058
2059 2012-12-29 Eli Zaretskii <eliz@gnu.org>
2060
2061 * files.el (backup-buffer-copy, basic-save-buffer-2):
2062 If set-file-extended-attributes fails, fall back on set-file-modes
2063 instead of signaling an error. (Bug#13298)
2064 (basic-save-buffer): Likewise.
2065
2066 2012-12-29 Fabián Ezequiel Gallina <fgallina@cuca>
2067
2068 * progmodes/python.el: Support other commands triggering
2069 python-indent-line so indentation cycling continues to work.
2070 (python-indent-trigger-commands): New defcustom.
2071 (python-indent-line): Use it.
2072
2073 2012-12-29 Fabián Ezequiel Gallina <fgallina@cuca>
2074
2075 * progmodes/python.el (python-shell-send-region): Add blank lines
2076 for non sent code so backtraces remain correct.
2077
2078 2012-12-29 Fabián Ezequiel Gallina <fgallina@cuca>
2079
2080 * progmodes/python.el: Remove cl dependency.
2081 (python-syntax-count-quotes): Replace incf call.
2082 (python-fill-string): Replace setf call.
2083
2084 2012-12-29 Damien Cassou <damien.cassou@gmail.com>
2085
2086 * info.el (info-other-window): New arg, for consistency with info.
2087
2088 2012-12-28 Martin Rudalics <rudalics@gmx.at>
2089
2090 * mail/rmail.el (rmail-maybe-display-summary):
2091 Rewrite (Bug#13066).
2092
2093 2012-12-28 Andreas Schwab <schwab@linux-m68k.org>
2094
2095 * epg.el (epg--start): Modify process-environment locally.
2096
2097 2012-12-28 Daiki Ueno <ueno@gnu.org>
2098
2099 * epg.el: Support pinentry-curses.
2100 Suggested by Werner Koch in
2101 <http://lists.gnu.org/archive/html/emacs-devel/2007-02/msg00755.html>.
2102 (epg-agent-file, epg-agent-mtime): New variable.
2103 (epg--start): Record the modified time of gpg-agent socket file,
2104 to restore Emacs frame after pinentry-curses termination.
2105 (epg-wait-for-completion): Restore Emacs frame here.
2106
2107 2012-12-27 Juri Linkov <juri@jurta.org>
2108
2109 * info.el (Info-file-completions): New variable.
2110 (Info-read-node-name-1): Complete node names in the Info file
2111 when a file name is given. Call `Info-build-node-completions'
2112 with a file name.
2113 (Info-build-node-completions): Add new arg `file'. When it is
2114 non-nil, visit it in a temporary buffer and cache its completions in
2115 `Info-current-file-completions'. Move most of the function body to
2116 `Info-build-node-completions-1'.
2117 (Info-build-node-completions-1): New function with the body from
2118 `Info-build-node-completions'. (Bug#12456)
2119
2120 2012-12-27 Juri Linkov <juri@jurta.org>
2121
2122 * frame.el (frame-maximization-style): Remove user option.
2123 (cycle-frame-maximized): Remove function.
2124 (toggle-frame-maximized): Rewrite and bind to M-<f10>.
2125 (toggle-frame-fullscreen): New command bound to <f11> instead of
2126 `toggle-frame-maximized'.
2127 http://lists.gnu.org/archive/html/emacs-devel/2012-12/msg00703.html
2128
2129 2012-12-27 Michael Albinus <michael.albinus@gmx.de>
2130
2131 * net/tramp.el (tramp-handle-file-accessible-directory-p): New defun.
2132
2133 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
2134 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
2135 * net/tramp-sh.el (tramp-sh-file-name-handler-alist): Add handler
2136 for `file-accessible-directory-p'. (Bug#13275)
2137
2138 2012-12-27 Sam Steingold <sds@gnu.org>
2139
2140 * progmodes/cperl-mode.el (cperl-calculate-indent): Do not stagger
2141 continuations, see <http://stackoverflow.com/questions/3582436>.
2142
2143 2012-12-27 Dmitry Gutov <dgutov@yandex.ru>
2144
2145 * progmodes/ruby-mode.el (ruby-indent-beg-re): Only allow "class",
2146 "module" and "def" to have indentation before them.
2147 Regression from 2012-09-07T04:15:56Z!dgutov@yandex.ru (see the new test).
2148
2149 * progmodes/ruby-mode.el: Bump the version to 1.2 (Bug#13200).
2150
2151 2012-12-27 Alan Mackenzie <acm@muc.de>
2152
2153 Speed up fontification where there's large brace blocks.
2154 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Add a limit
2155 to a call of c-beginning-of-decl-1.
2156
2157 2012-12-27 Vitalie Spinu <spinuvit@gmail.com> (tiny change)
2158
2159 * comint.el (comint-adjust-window-point): New function.
2160 (comint-postoutput-scroll-to-bottom):
2161 Call comint-adjust-window-point (Bug#13248).
2162
2163 2012-12-26 Dmitry Gutov <dgutov@yandex.ru>
2164
2165 * progmodes/ruby-mode.el (auto-mode-alist): `purecopy' the
2166 Rakefile regexp.
2167 (auto-mode-alist): Associate .gemspec files with ruby-mode
2168 (https://bugs.ruby-lang.org/issues/5453).
2169
2170 2012-12-26 Jürgen Hötzel <juergen@archlinux.org>
2171
2172 * net/tramp-adb.el (tramp-adb-get-ls-command): New defun.
2173 Suppress coloring, if possible (required for BusyBox based systems like
2174 CyanogenMod).
2175 (tramp-adb-handle-file-attributes)
2176 (tramp-adb-handle-insert-directory)
2177 (tramp-adb-handle-file-name-all-completions): Use it.
2178 (tramp-adb-get-toolbox): New defun. Check for remote shell
2179 implementation (BusyBox or Toolbox).
2180
2181 2012-12-24 Constantin Kulikov <zxnotdead@gmail.com> (tiny change)
2182
2183 * startup.el (initial-buffer-choice): Allow function as value
2184 (Bug#13251).
2185 (command-line-1): Handle case where initial-buffer-choice
2186 specifies a function.
2187 * server.el (server-execute): Handle case where
2188 initial-buffer-choice specifies a function.
2189
2190 2012-12-24 Lars Ingebrigtsen <larsi@gnus.org>
2191
2192 * mail/smtpmail.el (smtpmail-try-auth-method): Refactored out into
2193 its own function.
2194 (smtpmail-try-auth-methods): Forget the user name/password if the
2195 login is unsuccessful (bug#12424).
2196
2197 2012-12-22 Michael Albinus <michael.albinus@gmx.de>
2198
2199 * notifications.el (notifications-notify): Protect body with
2200 `with-demoted-errors'.
2201
2202 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
2203 Check properties of remote device. Restart connection, if there is a
2204 change.
2205
2206 2012-12-21 Chong Yidong <cyd@gnu.org>
2207
2208 * sort.el (sort-subr): Doc fix (Bug#13056).
2209
2210 2012-12-21 Bastien Guerry <bzg@gnu.org>
2211
2212 * progmodes/etags.el (tags-search): Fix typo. Bug #13232.
2213
2214 2012-12-21 Michael Albinus <michael.albinus@gmx.de>
2215
2216 * simple.el (process-file): Overwrite stderr file, if exists.
2217
2218 2012-12-21 Daiki Ueno <ueno@gnu.org>
2219
2220 * epg.el (epg--start): Print GPG_AGENT_INFO in the debug buffer.
2221 (epg-error): Set `error-message' property.
2222
2223 2012-12-21 Chong Yidong <cyd@gnu.org>
2224
2225 * international/mule-cmds.el (read-char-by-name): Signal an error
2226 if the user does not supply a valid character (Bug#13177).
2227
2228 * simple.el (transpose-subr-1): Preserve marker positions by
2229 changing the insertion sequence (Bug#13122).
2230
2231 2012-12-21 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
2232
2233 * simple.el (kill-region): Deactivate mark even for empty regions
2234 (Bug#13169).
2235
2236 2012-12-21 Chong Yidong <cyd@gnu.org>
2237
2238 * help-fns.el (describe-variable): Make sure we get the right
2239 buffer name (Bug#13105). Suggested by Kelly Dean.
2240
2241 2012-12-20 Michael R. Mauger <mmaug@yahoo.com>
2242
2243 * comint.el (comint-redirect-previous-input-string): New variable.
2244 (comint-redirect-setup, comint-redirect-cleanup)
2245 (comint-redirect-preoutput-filter): Use it. Fixes redirection bug.
2246 (comint-redirect-preoutput-filter): Fix verbose message.
2247
2248 2012-12-20 Michael Albinus <michael.albinus@gmx.de>
2249
2250 * progmodes/grep.el (rgrep): Escape command line. Sometimes, it
2251 is too long for Tramp. See discussion in
2252 <http://thread.gmane.org/gmane.emacs.tramp/8233/focus=8244>.
2253
2254 * progmodes/compile.el (compilation-start): Remove line escape
2255 template.
2256
2257 2012-12-20 Dmitry Antipov <dmantipov@yandex.ru>
2258
2259 * vc/ediff-ptch.el (ediff-map-patch-buffer): Use `point-min-marker'.
2260 Adjust comment.
2261
2262 2012-12-19 Jonas Bernoulli <jonas@bernoul.li>
2263
2264 * emacs-lisp/lisp-mnt.el (lm-section-end): Always end before the
2265 following non-comment text (bug#13207).
2266 (lm-header-multiline): Continuation lines need to be indented more than
2267 the first line.
2268 (lm-homepage): New function.
2269 (lm-with-file): Don't be confused if narrowing is in effect.
2270
2271 2012-12-19 Stefan Monnier <monnier@iro.umontreal.ca>
2272
2273 * vc/diff-mode.el (diff-post-command-hook): Don't ignore changes at the
2274 very beginning of a hunk (e.g. killing the first line).
2275
2276 2012-12-19 Michael Albinus <michael.albinus@gmx.de>
2277
2278 * net/tramp-sh.el (tramp-sh-handle-file-acl): Delete empty lines
2279 and text properties from returned ACL string.
2280 (tramp-sh-handle-set-file-acl): Do not use additional parentheses
2281 for "setfacl" command.
2282
2283 2012-12-18 Michael Albinus <michael.albinus@gmx.de>
2284
2285 * net/tramp.el (tramp-error-with-buffer): Give a hint to use
2286 `tramp-cleanup-this-connection', when the process has died.
2287 (Bug#13151)
2288
2289 2012-12-17 Stefan Monnier <monnier@iro.umontreal.ca>
2290
2291 * icomplete.el (icomplete-completions): Also use … to truncate prefix.
2292
2293 2012-12-17 Kevin Ryde <user42@zip.com.au>
2294
2295 * files.el (auto-save-file-name-p): Use \` and \' (bug#13186).
2296
2297 2012-12-17 Michael Albinus <michael.albinus@gmx.de>
2298
2299 Add support for preserving ACL entries of files.
2300
2301 * net/tramp.el (tramp-file-name-for-operation): Add `file-acl' and
2302 `set-file-acl' handlers.
2303
2304 * net/tramp-adb.el (tramp-adb-handle-copy-file):
2305 Handle PRESERVE-EXTENDED-ATTRIBUTES.
2306
2307 * net/tramp-compat.el (tramp-compat-copy-file):
2308 Handle PRESERVE-EXTENDED-ATTRIBUTES.
2309
2310 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
2311 Add `file-acl' and `set-file-acl' handlers.
2312 (tramp-gvfs-handle-copy-file):
2313 Handle PRESERVE-EXTENDED-ATTRIBUTES.
2314 (tramp-gvfs-handle-file-acl, tramp-gvfs-handle-set-file-acl):
2315 New defuns.
2316
2317 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
2318 Add `file-acl' and `set-file-acl' handlers.
2319 (tramp-remote-acl-p, tramp-sh-handle-file-acl)
2320 (tramp-sh-handle-set-file-acl): New defuns.
2321 (tramp-sh-handle-copy-file, tramp-do-copy-or-rename-file):
2322 Handle PRESERVE-EXTENDED-ATTRIBUTES.
2323
2324 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
2325 Add `file-acl' and `set-file-acl' handlers.
2326 (tramp-smb-handle-copy-file): Handle PRESERVE-EXTENDED-ATTRIBUTES.
2327
2328 2012-12-17 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
2329
2330 * help-macro.el (make-help-screen): Instead of switch-to-buffer
2331 use pop-to-buffer with NORECORD argument t. As buffer name, use
2332 *Metahelp* with a leading space (Bug#13190).
2333
2334 2012-12-16 Romain Francoise <romain@orebokech.com>
2335
2336 * files.el (file-extended-attributes)
2337 (set-file-extended-attributes): New functions.
2338 (backup-buffer): Use them to handle both SELinux context and ACL
2339 entries.
2340 (backup-buffer-copy): Work with an alist of extended attributes,
2341 rather than an SELinux context.
2342 (basic-save-buffer-2): Ditto.
2343
2344 2012-12-16 Timo Myyrä <timo.myyra@gmail.com>
2345
2346 * battery.el (battery-bsd-apm): New function.
2347
2348 2012-12-16 Jay Belanger <jay.p.belanger@gmail.com>
2349
2350 * calc/calc.el (calc-standard-date-formats): Adjust one of the
2351 standard date formats.
2352
2353 2012-12-15 Juri Linkov <juri@jurta.org>
2354
2355 * isearch.el (isearch-mode-map): Bind `C-x 8 RET' to
2356 `isearch-insert-char-by-name'.
2357 (with-isearch-suspended): New defmacro with body mostly from
2358 `isearch-edit-string' except the part that sets
2359 `isearch-new-string' and `isearch-new-message'.
2360 (isearch-edit-string): Use new macro `with-isearch-suspended' with
2361 body that sets `isearch-new-string' and `isearch-new-message'.
2362 (isearch-insert-char-by-name): New command.
2363 * international/mule-cmds.el (read-char-by-name): Let-bind
2364 `enable-recursive-minibuffers' to t.
2365 http://lists.gnu.org/archive/html/emacs-devel/2012-12/msg00234.html
2366
2367 2012-12-15 Juri Linkov <juri@jurta.org>
2368
2369 * isearch.el (isearch-delete-char, isearch-del-char): Doc fix.
2370 (Bug#13175)
2371
2372 2012-12-15 Christopher Schmidt <christopher@ch.ristopher.com>
2373
2374 * dired-x.el (dired-guess-shell-command): Put colon at the end of
2375 the prompt. (Bug#13045)
2376
2377 2012-12-14 Glenn Morris <rgm@gnu.org>
2378
2379 * emacs-lisp/macroexp.el (macroexp--warn-and-return):
2380 Try to include filename in non-bytecomp warning. (Bug#13132)
2381
2382 2012-12-14 Paul Eggert <eggert@cs.ucla.edu>
2383
2384 Fix permissions bugs with setgid directories etc. (Bug#13125)
2385 * files.el (backup-buffer): Don't rely on 9th output of
2386 file-attributes, as it's now a placeholder. Instead, use the new
2387 optional arg of file-ownership-preserved-p.
2388 (file-ownership-preserved-p): New optional arg GROUP.
2389 Fix mishandling of setuid directories that would cause this
2390 function to return t when it should have returned nil.
2391 Document what happens if the file does not exist, and when
2392 it's not known whether the ownership will be preserved.
2393 * net/tramp-sh.el (tramp-sh-handle-file-ownership-preserved-p):
2394 Likewise.
2395 (tramp-get-local-gid): Use group-gid for integer, as that's
2396 faster and more reliable.
2397
2398 2012-12-14 Julien Danjou <julien@danjou.info>
2399
2400 * progmodes/sql.el (sql-mode-postgres-font-lock-keywords):
2401 Update keywords list, data type and PL/pgSQL.
2402
2403 2012-12-14 Dave Abrahams <dave@boostpro.com>
2404
2405 * vc/ediff-util.el (ediff-buffer-type): New function.
2406 (ediff-clone-buffer-for-current-diff-comparison): Compute the buf-type
2407 rather than taking it as as argument.
2408 (ediff-inferior-compare-regions): Adjust calls accordingly (bug#11319).
2409
2410 2012-12-14 Ryan Crum <ryan.crum@eleostech.com>
2411
2412 * json.el: Add pretty-print option (bug#12634).
2413 (json-encoding-separator, json-encoding-default-indentation)
2414 (json--encoding-current-indentation, json-encoding-pretty-print)
2415 (json-encoding-lisp-style-closings): New vars.
2416 (json--with-indentation): New macro.
2417 (json-encode-hash-table, json-encode-alist, json-encode-plist)
2418 (json-encode-array): Use it to obey json-encoding-pretty-print.
2419 (json-pretty-print-buffer, json-pretty-print): New commands.
2420
2421 2012-12-14 Dmitry Gutov <dgutov@yandex.ru>
2422
2423 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
2424 Extract `ruby-syntax-propertize-expansions'.
2425 (ruby-syntax-propertize-expansions): Only change syntax on
2426 certain string delimiters, to punctuation. This way the common
2427 functions like forward-word and thing-at-point still work.
2428 (ruby-match-expression-expansion): Improve readability.
2429 (ruby-block-contains-point): New function.
2430 (ruby-add-log-current-method): Handle several edge cases.
2431
2432 2012-12-13 Juanma Barranquero <lekktu@gmail.com>
2433
2434 * emacs-lisp/edebug.el (edebug-unload-function): Make sure that
2435 unload-feature finishes even when aborting an ongoing edebug session.
2436 Also, do not worry about edebug-mode, unload-feature takes care of it.
2437
2438 2012-12-13 Andreas Schwab <schwab@suse.de>
2439
2440 * net/tls.el (tls-program): Update customize type.
2441
2442 2012-12-13 Juanma Barranquero <lekktu@gmail.com>
2443
2444 * emacs-lisp/edebug.el (edebug--require-cl-read): New function.
2445 (edebug-setup-hook, cl-read-load-hooks): Use it.
2446 (edebug-unload-function): New function. (Bug#13163)
2447
2448 2012-12-13 Michael Albinus <michael.albinus@gmx.de>
2449
2450 * net/tramp-adb.el (tramp-adb-file-name-p): Make it a defsubst.
2451 Otherwise, there could be errors in autoloading. (Bug#13151)
2452
2453 2012-12-13 Jürgen Hötzel <juergen@archlinux.org>
2454
2455 * net/tramp-adb.el (tramp-adb-wait-for-output): Remove spurious " ^H"
2456 sequences.
2457
2458 2012-12-13 Alan Mackenzie <acm@muc.de>
2459
2460 Make CC Mode not hang when _some_ lines end in CRLF. Bug #11841.
2461 * progmodes/cc-engine.el (c-backward-comments): Add code to work
2462 around `forward-comment' not recognizing ^M as whitespace.
2463
2464 2012-12-13 Fabián Ezequiel Gallina <fgallina@cuca>
2465
2466 * progmodes/python.el (python-skeleton-class)
2467 (python-skeleton-def): Do not add space after defun name.
2468
2469 2012-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
2470
2471 * emacs-lisp/cl.el (letf): Make it an alias of cl-letf.
2472 (cl--symbol-function): Remove (now that funbound is like nil).
2473
2474 2012-12-12 Glenn Morris <rgm@gnu.org>
2475
2476 * button.el (button--area-button-p): Fix typo.
2477
2478 2012-12-12 Sam Steingold <sds@gnu.org>
2479
2480 * frame.el (frame-maximization-style): New user option.
2481 (toggle-frame-maximized): Toggle frame maximization according to
2482 `frame-maximization-style', bound to <f11>.
2483 (cycle-frame-maximized): Cycle between all maximization styles and
2484 non-maximized frame, bound to shift-<f11>.
2485
2486 2012-12-12 David Cadé <codename68@gmail.com>
2487
2488 * mpc.el (mpc-format): Use truncate-string-to-width (bug#13143).
2489
2490 2012-12-12 Jonas Bernoulli <jonas@bernoul.li>
2491
2492 * lisp/emacs-lisp/eieio.el: Prettier object pretty-printing (bug#13115).
2493 (eieio-override-prin1): Don't quote kewords and booleans.
2494 (object-write) <eieio-default-superclass>: Don't put closing parens
2495 on new line, avoid needless empty lines, align values that are objects
2496 with the slot keyword (instead of beginning on the same line).
2497 (eieio-list-prin1): Align value with slot keyword; increase
2498 eieio-print-depth before printing members of the list.
2499
2500 2012-12-11 Stefan Monnier <monnier@iro.umontreal.ca>
2501
2502 * mail/emacsbug.el (report-emacs-bug): Move the intangible text to
2503 a display text-property.
2504 (report-emacs-bug-hook): Don't bother deleting it any more.
2505
2506 * hilit-chg.el (highlight-save-buffer-state): Delete.
2507 Use with-silent-modifications instead.
2508 (hilit-chg-set-face-on-change): Only fixup the text that's modified.
2509
2510 * button.el: Handle buttons in display text-properties.
2511 (button--area-button-p, button--area-button-string):
2512 Use (STRING . STRING-POS) representation instead of just STRING.
2513
2514 2012-12-11 Eli Zaretskii <eliz@gnu.org>
2515
2516 * makefile.w32-in (compile4-SH): Fix a typo that caused term
2517 subdirectory be skipped.
2518
2519 2012-12-11 Glenn Morris <rgm@gnu.org>
2520
2521 * net/rcirc.el (rcirc-urls, rcirc-condition-filter): Doc fixes.
2522
2523 * progmodes/f90.el (f90-line-continued, f90-indent-region):
2524 Treat preprocessor lines embedded in continuations like comments.
2525 (f90-indent-line): Special-case preprocessor lines. (Bug#13138)
2526
2527 2012-12-11 Jay Belanger <jay.p.belanger@gmail.com>
2528
2529 * calc/calc.el (calc-standard-date-formats): Add more date
2530 formats.
2531 * calc/calc-forms.el (math-parse-iso-date): New function.
2532 (math-parse-date): Use `math-parse-iso-date' when appropriate.
2533 (math-parse-iso-date-validate): Add extra error checking.
2534 (calc-date-notation): Add ability to access new date formats.
2535
2536 2012-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
2537
2538 * hi-lock.el (hi-lock--regexps-at-point): Fix boundary case for
2539 font-lock as well as when there's no text-property.
2540
2541 2012-12-10 Jambunathan K <kjambunathan@gmail.com>
2542
2543 * hi-lock.el: Refine the choice of default face.
2544 (hi-lock-keyword->face): New function. Use it wherever we used
2545 cadadadr instead.
2546 (hi-lock--regexps-at-point): Ignore faces that can't come from hi-lock.
2547 (hi-lock--last-face): Remove var.
2548 (hi-lock--unused-faces): New var to replace it.
2549 (hi-lock-read-face-name): Use/maintain it.
2550 (hi-lock-unface-buffer): Maintain it. Fix error for the C-u case.
2551 (hi-lock-set-pattern): Ignore new rule if it has the same regexp even
2552 if it has another face.
2553
2554 2012-12-10 Eli Zaretskii <eliz@gnu.org>
2555
2556 * subr.el (w32notify-handle-event): New function.
2557 (inotify-handle-event): Doc fix.
2558
2559 2012-12-10 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
2560
2561 * subr.el (inotify-event-p, inotify-handle-event): New functions.
2562
2563 2012-12-10 Dani Moncayo <dmoncayo@gmail.com>
2564
2565 * simple.el (just-one-space): Doc fix.
2566
2567 2012-12-10 Eli Zaretskii <eliz@gnu.org>
2568
2569 * textmodes/texinfo.el (texinfo-enable-quote-envs): Add "smallexample".
2570
2571 2012-12-10 Le Wang <l26wang@gmail.com>
2572
2573 * hilit-chg.el (hilit-chg-set-face-on-change): Don't burp in
2574 narrowed buffer (bug#12361).
2575
2576 2012-12-10 Juanma Barranquero <lekktu@gmail.com>
2577
2578 * vc/vc-hooks.el (vc-state): Doc fix.
2579
2580 2012-12-10 Glenn Morris <rgm@gnu.org>
2581
2582 * mail/rmail.el (rmail-maybe-display-summary):
2583 Preserve buffer, in case select-window changes it. (Bug#13066)
2584
2585 2012-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
2586
2587 * emacs-lisp/cl.el, emacs-lisp/cl-lib.el: Move cl-unload-function and
2588 cl-load-hook where they belong.
2589
2590 2012-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
2591
2592 * emacs-lisp/cl-lib.el (cl-declaim): Paren typo.
2593
2594 2012-12-09 Eli Zaretskii <eliz@gnu.org>
2595
2596 Parallelize byte compilation on MS-Windows.
2597 * makefile.w32-in (WINS_BASIC1, WINS_BASIC2, WINS_BASIC3)
2598 (WINS_BASIC4): New variables, subdivide subdirectories into 4 parts.
2599 (WINS_BASIC): Define as concatenation of the above.
2600 (compile): Subdivide into 4 separate and independent jobs that can
2601 be run in parallel.
2602 (compile0-CMD, compile0-SH): New targets for compiling
2603 COMPILE_FIRST files, which are prerequisites for the rest of the
2604 byte-compilation.
2605 (compile1-CMD, compile2-CMD, compile3-CMD, compile4-CMD):
2606 New targets for parallel compilation with cmd.exe.
2607 (compile1-SH, compile2-SH, compile3-SH, compile4-SH): Ditto for
2608 compiling under a Unixy shell.
2609
2610 2012-12-09 Chong Yidong <cyd@gnu.org>
2611
2612 * simple.el (set-mark-default-inactive): Delete this
2613 accidentally-introduced option.
2614 (set-mark-command, exchange-point-and-mark): Remove calls.
2615
2616 2012-12-09 Glenn Morris <rgm@gnu.org>
2617
2618 * emacs-lisp/lisp-mode.el (eval-defun-1): Doc fix.
2619 Respect a defcustom's :set function, if appropriate. (Bug#109)
2620 (eval-defun): Doc fix.
2621
2622 2012-12-08 Juri Linkov <juri@jurta.org>
2623
2624 * info.el (Info-copy-current-node-name, Info-breadcrumbs)
2625 (Info-fontify-node, Info-bookmark-make-record): Remove the
2626 file extension from Info-current-file (Bug#13016).
2627
2628 2012-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
2629
2630 * hi-lock.el (hi-lock-unface-buffer): If there's no matching regexp at
2631 point, still provide some default.
2632 (hi-lock--regexps-at-point): Don't enforce a "hi-lock-" prefix on face
2633 names, since we don't use it right now. Actually return the list.
2634 (hi-lock-file-patterns, hi-lock-interactive-patterns): Use defvar-local.
2635
2636 2012-12-07 Chong Yidong <cyd@gnu.org>
2637
2638 * novice.el (disabled-command-function): Remove a spurious help
2639 xref (Bug#13043). Suggested by Kelly Dean.
2640
2641 * subr.el (text-clone-maintain): Fix clone overlay deletion when a
2642 syntax is specified (Bug#13025).
2643
2644 * info.el (Info-set-mode-line): Remove the file extension from
2645 Info-current-file if there is one (Bug#13016).
2646
2647 2012-12-07 Glenn Morris <rgm@gnu.org>
2648
2649 * mail/rmail.el (rmail-mime-decoded): New permanent local.
2650 (rmail-show-message-1): Set rmail-mime-decoded when appropriate.
2651 * mail/rmailedit.el (rmail-cease-edit): Respect rmail-mbox-format
2652 and rmail-mime-decoded. (Bug#9841)
2653
2654 * mail/unrmail.el (unrmail-mbox-format): New option. (Bug#6574)
2655 (batch-unrmail, unrmail): Doc fixes.
2656 (unrmail): Respect unrmail-mbox-format.
2657 * mail/rmail.el (rmail-mbox-format): New option.
2658 (rmail-show-message-1): Respect rmail-mbox-format.
2659
2660 2012-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
2661
2662 * emacs-lisp/cl-macs.el (cl-tagbody): New macro.
2663
2664 2012-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
2665
2666 Further cleanup of the "cl-" namespace. Fit CL in 80 columns.
2667 * emacs-lisp/cl-macs.el (cl--pop2, cl--optimize-safety)
2668 (cl--optimize-speed, cl--not-toplevel, cl--parse-loop-clause)
2669 (cl--expand-do-loop, cl--proclaim-history, cl--declare-stack)
2670 (cl--do-proclaim, cl--proclaims-deferred): Rename from the "cl-" prefix.
2671 (cl-progv): Don't rely on dynamic scoping to find the body.
2672 * emacs-lisp/cl-lib.el (cl--optimize-speed, cl--optimize-safety)
2673 (cl--proclaims-deferred): Rename from the "cl-" prefix.
2674 (cl-declaim): Use backquotes.
2675 * emacs-lisp/cl-extra.el (cl-make-random-state, cl-random-state-p):
2676 Use "cl--" prefix for the object's tag.
2677
2678 * ses.el: Use advice-add/remove.
2679 (ses--advice-copy-region-as-kill, ses--advice-yank): New functions.
2680 (copy-region-as-kill, yank): Use advice-add.
2681 (ses-unload-function): Use advice-remove.
2682
2683 2012-12-06 Jonas Bernoulli <jonas@bernoul.li>
2684
2685 * button.el: Make them work in header-lines (bug#12817).
2686 (button-map): Add bindings for header-line and mode-line use.
2687 (button-get, button-put, button-label): `button' may now be a string.
2688 (button-activate): Don't make it a defsubst.
2689 (button--area-button-p, button--area-button-string): New functions.
2690 (make-text-button): Fix the return value when `beg' was a string.
2691 (push-button): Handle the mode-line case.
2692
2693 2012-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
2694
2695 * progmodes/sql.el: Use cl-lib and lexical-binding; various cleanup.
2696 (sql-signum): Remove. Use `cl-signum' instead.
2697 (sql-read-passwd): Remove; use read-passwd instread.
2698 (sql-get-login-ext): Use read-string.
2699 (sql-get-login): Use dolist and pcase.
2700 (sql--completion-table): Rename from sql-try-completion.
2701 Use complete-with-action.
2702 (sql-mode): Don't change abbrev-all-caps globally.
2703 (sql-connect): Don't rely on dynamic scoping for `new-name'.
2704 (sql-postgres-completion-object): Initialize vars in their `let'.
2705 (sql-comint-sybase, sql-comint-sqlite, sql-comint-mysql)
2706 (sql-comint-solid, sql-comint-ms, sql-comint-postgres)
2707 (sql-comint-interbase): Use a single append, without setq.
2708 (sql-comint-linter): Same, and unwind-protect the LINTER_MBX var.
2709
2710 * hi-lock.el: Rework the default face and the serialize regexp code.
2711 (hi-lock--auto-select-face-defaults): Remove.
2712 (hi-lock-string-serialize-serial): Remove.
2713 (hi-lock--hashcons-hash): Rename from hi-lock-string-serialize-hash;
2714 make weak.
2715 (hi-lock--hashcons): Rename from hi-lock-string-serialize, return an
2716 equal string.
2717 (hi-lock-set-pattern): Adjust accordingly.
2718 (hi-lock--regexps-at-point): Simplify accordingly.
2719 (hi-lock--auto-select-face-defaults): Remove.
2720 (hi-lock--last-face): New var to replace it.
2721 (hi-lock-read-face-name): Rewrite (bug#11095).
2722 (hi-lock-unface-buffer): Arrange for the face to be the next default.
2723
2724 2012-12-06 Michael Albinus <michael.albinus@gmx.de>
2725
2726 * net/tramp.el (tramp-replace-environment-variables):
2727 Hide compiler warning.
2728 (tramp-file-name-for-operation): Remove `executable-find',
2729 `start-process', `call-process' and `call-process-region'.
2730
2731 * net/tramp-compat.el (top): Don't require 'tramp-util and 'tramp-vc.
2732
2733 * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error): Ensure backward
2734 compatibility.
2735
2736 * net/tramp-sh.el (top): Remove `tramp-sh-handle-call-process-region'.
2737
2738 2012-12-06 Chong Yidong <cyd@gnu.org>
2739
2740 * ffap.el (ffap-replace-file-component): Fix typo.
2741
2742 2012-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
2743
2744 * progmodes/octave-mod.el (octave-mark-block): Move out of tokens and
2745 fix open-paren-like token test (bug#12785).
2746
2747 2012-12-06 Glenn Morris <rgm@gnu.org>
2748
2749 * mail/rmailsum.el (rmail-new-summary): Tweak for
2750 rmail-maybe-display-summary changing buffer. (Bug#13066)
2751
2752 2012-12-06 Juri Linkov <juri@jurta.org>
2753
2754 * info.el (Info-fontify-node): Don't hide the last newline.
2755 (Bug#12272)
2756
2757 2012-12-06 Katsumi Yamaoka <yamaoka@jpl.org>
2758
2759 * mail/mailabbrev.el (mail-abbrev-expand-wrapper): Work in minibuffer
2760 so as to enable message-read-from-minibuffer to expand mail aliases.
2761
2762 2012-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
2763
2764 * minibuf-eldef.el (minibuf-eldef-update-minibuffer): Don't mess with
2765 the `intangible' property.
2766 Suggested by Christopher Schmidt <christopher@ch.ristopher.com>
2767
2768 2012-12-05 Deniz Dogan <deniz@dogan.se>
2769
2770 * net/rcirc.el (rcirc-urls): Update documentation.
2771 (rcirc-condition-filter): New function.
2772 (rcirc-browse-url, rcirc-markup-urls): Use only URLs before point
2773 and exclude consecutive duplicate URLs (Bug#6082).
2774
2775 2012-12-05 Michael Albinus <michael.albinus@gmx.de>
2776
2777 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
2778 Check return code of copy command.
2779
2780 * net/tramp-adb.el (tramp-adb-sdk-dir, tramp-adb-prompt):
2781 Use group `tramp'. Add version.
2782
2783 2012-12-05 Chong Yidong <cyd@gnu.org>
2784
2785 * ffap.el (ffap-url-regexp): Don't require matching at front of
2786 string (Bug#4952).
2787 (ffap-url-p): If only a substring matches, return that.
2788 (ffap-url-at-point): Use the return value of ffap-url-p.
2789 (ffap-read-file-or-url, ffap-read-file-or-url-internal)
2790 (find-file-at-point, dired-at-point, dired-at-point-prompter)
2791 (ffap-guess-file-name-at-point): Likewise.
2792 (ffap-replace-file-component): Fix typo.
2793
2794 * info.el (info-display-manual): Add existing Info buffers, whose
2795 files may not be in Info-directory-list, to the completion.
2796 (info--manual-names): New helper function.
2797
2798 2012-12-05 Glenn Morris <rgm@gnu.org>
2799
2800 * vc/vc-hg.el (vc-hg-resolve-when-done, vc-hg-find-file-hook):
2801 New functions, for detecting and resolving conflicts. (Bug#10709)
2802
2803 2012-12-04 Jambunathan K <kjambunathan@gmail.com>
2804
2805 * hi-lock.el (hi-lock-auto-select-face): New user variable.
2806 (hi-lock-auto-select-face-defaults): New buffer local variable.
2807 (hi-lock-read-face-name): Honor `hi-lock-auto-select-face'.
2808 (hi-lock-unface-buffer): Prompt user with useful defaults.
2809 With prefix arg, unhighlight all hi-lock patterns in buffer.
2810
2811 2012-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
2812
2813 * obsolete/terminal.el, obsolete/longlines.el: Add obsolecence info.
2814
2815 2012-12-04 Michael Albinus <michael.albinus@gmx.de>
2816
2817 * Makefile.in (TRAMP_SRC):
2818 * makefile.w32-in (TRAMP_SRC): Add tramp-adb.el.
2819
2820 2012-12-04 Juergen Hoetzel <juergen@archlinux.org>
2821
2822 * net/tramp-adb.el: New package.
2823
2824 2012-12-04 Chong Yidong <cyd@gnu.org>
2825
2826 * terminal.el: Move to obsolete/.
2827
2828 * longlines.el: Move to obsolete/.
2829
2830 * vc/ediff-diff.el (ediff-extract-diffs, ediff-extract-diffs3):
2831 Remove code referring to longlines mode.
2832
2833 2012-12-03 Juri Linkov <juri@jurta.org>
2834
2835 * sort.el (delete-duplicate-lines): New command. (Bug#13032)
2836
2837 2012-12-03 Agustín Martín Domingo <agustin.martin@hispalinux.es>
2838
2839 * textmodes/ispell.el (ispell-init-process)
2840 (ispell-start-process, ispell-internal-change-dictionary):
2841 Make sure personal dictionary name is expanded after initial
2842 `default-directory' value. Use expanded strings for
2843 keep/restart checks and for value (Bug#13019).
2844
2845 2012-12-03 Jay Belanger <jay.p.belanger@gmail.com>
2846
2847 * calc/calc-forms.el (math-date-to-iso-dt): Fix weekday number.
2848
2849 2012-12-03 Leo Liu <sdl.web@gmail.com>
2850
2851 * files.el (dir-locals-read-from-file): Check file non-empty
2852 before reading. (Bug#13038)
2853
2854 2012-12-03 Glenn Morris <rgm@gnu.org>
2855
2856 * jka-cmpr-hook.el (jka-compr-get-compression-info):
2857 Remove any version extension before checking filename. (Bug#13006)
2858 (jka-compr-compression-info-list): Belated :version bump.
2859
2860 2012-12-03 Chong Yidong <cyd@gnu.org>
2861
2862 * simple.el (transient-mark-mode): Doc fix (Bug#11523).
2863
2864 * buff-menu.el (Buffer-menu-delete-backwards, Buffer-menu-mode)
2865 (buffer-menu): Doc fix (Bug#12294).
2866
2867 2012-12-03 Roland Winkler <winkler@gnu.org>
2868
2869 * calendar/diary-lib.el (diary-header-line-format): Use keybinding
2870 of diary-show-all-entries in the diary buffer (Bug#12994).
2871
2872 2012-12-03 Michael Albinus <michael.albinus@gmx.de>
2873
2874 * net/tramp-sh.el (tramp-perl-encode): Use "read STDIN" instead of
2875 "<STDIN>". This is binary safe.
2876
2877 2012-12-03 Jay Belanger <jay.p.belanger@gmail.com>
2878
2879 * calc/calc-forms.el (math-absolute-from-iso-dt)
2880 (math-date-to-iso-dt, math-parse-iso-date-validate)
2881 (math-iso-dt-to-date): New functions.
2882 (math-fd-iso-dt, math-fd-isoyear, math-fd-isoweek)
2883 (math-fd-isoweekday): New variables.
2884 (calc-date-notation, math-parse-standard-date, math-format-date)
2885 (math-format-date-part): Add support for more formatting codes.
2886
2887 2012-12-02 Dmitry Gutov <dgutov@yandex.ru>
2888
2889 * vc/vc.el (vc-delete-file, vc-rename-file): Default to the
2890 current buffer's file name when called interactively (Bug#12488).
2891
2892 2012-12-02 Juri Linkov <juri@jurta.org>
2893
2894 * info.el (info-display-manual): Don't clobber an existing Info
2895 buffer (Bug#10770). Add completion (Bug#10771).
2896
2897 2012-12-01 Yuya Nishihara <yuya@tcha.org> (tiny change)
2898
2899 * vc/vc-hooks.el (vc-find-file-hook): Expand buffer-file-truename
2900 before using it for comparison (Bug#5297).
2901
2902 2012-12-01 Jari Aalto <jari.aalto@cante.net>
2903
2904 * textmodes/css-mode.el (css-current-defun-name): New function.
2905 (css-mode): Use it.
2906
2907 * textmodes/sgml-mode.el (html-current-defun-name): New function.
2908 (html-mode): Use it.
2909
2910 2012-12-01 Chong Yidong <cyd@gnu.org>
2911
2912 Modularize add-log-current-defun (Bug#2224).
2913 Suggested by Jari Aalto.
2914
2915 * vc/add-log.el (add-log-current-defun-function): Doc fix.
2916 (add-log-current-defun): Move mode-specific code to other files.
2917 (add-log-lisp-like-modes, add-log-c-like-modes)
2918 (add-log-tex-like-modes): Variables deleted.
2919
2920 * emacs-lisp/lisp-mode.el (lisp-current-defun-name): New.
2921 (lisp-mode-variables): Use it.
2922
2923 * progmodes/cc-mode.el (c-common-init):
2924 * progmodes/cperl-mode.el (cperl-mode): Set a value for
2925 add-log-current-defun-function.
2926
2927 * progmodes/m4-mode.el (m4-current-defun-name): New function.
2928 (m4-mode): Use it.
2929
2930 * progmodes/perl-mode.el (perl-current-defun-name): New.
2931 (perl-mode): Use it.
2932
2933 * progmodes/scheme.el (scheme-mode-variables, dsssl-mode):
2934 Use lisp-current-defun-name.
2935
2936 * textmodes/tex-mode.el (tex-current-defun-name): New.
2937 (tex-common-initialization): Use it.
2938
2939 * textmodes/texinfo.el (texinfo-current-defun-name): New.
2940 (texinfo-mode): Use it.
2941
2942 2012-12-01 Chong Yidong <cyd@gnu.org>
2943
2944 * emacs-lisp/lisp-mode.el (lisp-mode-variables, lisp-mode):
2945 * progmodes/autoconf.el (autoconf-mode):
2946 * progmodes/js.el (js-mode):
2947 * progmodes/make-mode.el (makefile-mode, makefile-makepp-mode)
2948 (makefile-bsdmake-mode, makefile-imake-mode, makefile-browse):
2949 * progmodes/perl-mode.el (perl-mode):
2950 * progmodes/sh-script.el (sh-mode, sh-set-shell):
2951 * textmodes/css-mode.el (css-mode):
2952 * textmodes/sgml-mode.el (html-mode, sgml-mode)
2953 (sgml-tags-invisible, sgml-guess-indent):
2954 * textmodes/tex-mode.el (tex-common-initialization)
2955 (latex-complete-bibtex-keys, tex-shell, tex-main-file)
2956 (doctex-mode, plain-tex-mode, latex-mode):
2957 * textmodes/texinfo.el (texinfo-mode): Use setq-local.
2958
2959 2012-12-01 Kirk Kelsey <kirk.kelsey@0x4b.net>
2960
2961 * vc/vc-hg.el (vc-hg-next-revision):
2962 Ensure use of default "tip" output format. (Bug#6968)
2963
2964 2012-12-01 Kim F. Storm <storm@cua.dk>
2965
2966 * startup.el (fancy-startup-tail): Add a clickable link
2967 (Bug#2176).
2968
2969 2012-12-01 Chong Yidong <cyd@gnu.org>
2970
2971 * startup.el (fancy-startup-tail): Improve the message about
2972 auto-save files (Bug#2176).
2973
2974 * files.el (recover-session): Improve the descriptive message, and
2975 use substitute-command-keys.
2976
2977 2012-12-01 Glenn Morris <rgm@gnu.org>
2978
2979 * ido.el (ido-file-internal):
2980 Handle other-window, other-frame for dired. (Bug#13036)
2981
2982 2012-11-30 Glenn Morris <rgm@gnu.org>
2983
2984 * icomplete.el (icomplete-separator): Fix :version.
2985
2986 2012-11-30 Chong Yidong <cyd@gnu.org>
2987
2988 * shell.el (shell): For C-u M-x shell, use an inactive shell
2989 buffer as the default (Bug#1975).
2990 (shell-apply-ansi-color, shell-reapply-ansi-color): New functions.
2991 (shell-mode): Use them to reapply ansi colorization if Shell mode
2992 is re-enabled.
2993
2994 2012-11-30 Yuriy Vostrikov <delamonpansie@gmail.com> (tiny change)
2995
2996 * vc/vc-git.el (vc-git-command): Disable the pager (Bug#6137).
2997
2998 2012-11-30 Samuel Bronson <naesten@gmail.com>
2999
3000 * progmodes/grep.el (grep-compute-defaults): Do not pass the -e
3001 flag to xargs, for compatibility with BSD xargs (Bug#11703).
3002
3003 2012-11-30 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
3004
3005 * textmodes/fill.el (fill-region-as-paragraph): Handle overshoot
3006 by move-to-column (Bug#3234).
3007
3008 2012-11-30 Chong Yidong <cyd@gnu.org>
3009
3010 * longlines.el (longlines-wrap-line, longlines-encode-region):
3011 Preserve text properties (Bug#1425).
3012
3013 2012-11-30 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
3014
3015 * vc/vc.el (vc-register): Allow registering a file which is
3016 already registered with a different backend (Bug#10589).
3017
3018 2012-11-29 Jambunathan K <kjambunathan@gmail.com>
3019 Stefan Monnier <monnier@iro.umontreal.ca>
3020
3021 * icomplete.el: Change separator; add ido-style commands.
3022 (icomplete-show-key-bindings): Remove custom var.
3023 (icomplete-get-keys): Remove function.
3024 (icomplete-forward-completions, icomplete-backward-completions):
3025 New commands.
3026 (icomplete-minibuffer-map): New var.
3027 (icomplete-minibuffer-setup): Use it.
3028 (icomplete-exhibit): Don't delay if the list of completions is known.
3029 (icomplete-separator): New custom.
3030 (icomplete-completions): Use it.
3031 * minibuffer.el (completion-all-sorted-completions): Delete duplicates.
3032 (minibuffer-force-complete-and-exit): New command.
3033 (minibuffer--complete-and-exit): New function extracted from
3034 minibuffer-complete-and-exit.
3035 (minibuffer-complete-and-exit): Use it.
3036
3037 * progmodes/etags.el (visit-tags-table-buffer): Give a more precise
3038 error message when the file doesn't exist (bug#12974).
3039
3040 2012-11-29 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
3041
3042 * simple.el (activate-mark): Run activate-mark-hook (bug#13027).
3043
3044 2012-11-29 Glenn Morris <rgm@gnu.org>
3045
3046 * files.el (hack-dir-local-variables): Warn if try to set
3047 coding via dir-locals, since it doesn't work. (Bug#7169)
3048
3049 Add desktop support for restoring vc-dir buffers. (Bug#10606)
3050 * vc/vc-dir.el (vc-dir-mode): Autoload it (for desktop restore).
3051 Set buffer-local value of desktop-save-buffer.
3052 (vc-dir-desktop-buffer-misc-data, vc-dir-restore-desktop-buffer):
3053 New functions.
3054 (desktop-buffer-mode-handlers): Add vc-dir-mode entry.
3055 * desktop.el (desktop-save-buffer-p): Treat vc-dir like dired.
3056
3057 * files.el (inhibit-local-variables-ignore-case): New. (Bug#10610)
3058 (inhibit-local-variables-p): Use inhibit-local-variables-ignore-case.
3059 Doc fix.
3060 (inhibit-local-variables-regexps, inhibit-local-variables-suffixes):
3061 Doc fixes.
3062
3063 2012-11-28 Jay Belanger <jay.p.belanger@gmail.com>
3064
3065 * calc/calc-forms.el (calc-date-notation): Fix regexp
3066 used to find time codes. Fix symbol for seconds.
3067
3068 2012-11-27 Glenn Morris <rgm@gnu.org>
3069
3070 * emacs-lisp/derived.el (derived-mode-make-docstring):
3071 Don't mention "abbrev" or "syntax" if nil. (Bug#11277)
3072
3073 2012-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
3074
3075 * textmodes/table.el (table-insert): Don't use `symbol-name' on
3076 lexically scoped variables (bug#13005).
3077
3078 2012-11-27 Glenn Morris <rgm@gnu.org>
3079
3080 * vc/vc-hooks.el (vc-mistrust-permissions):
3081 Default to t, to avoid data-loss. (Bug#11490)
3082
3083 2012-11-27 Fabián Ezequiel Gallina <fgallina@cuca>
3084
3085 * progmodes/python.el (python-indent-guess-indent-offset):
3086 If indentation is guessed make python-indent-offset buffer-local.
3087
3088 Fix Imenu regression.
3089 * progmodes/python.el (python-nav-beginning-of-defun):
3090 Fix forward movement when statement(s) separates point from defun.
3091 (python-imenu-prev-index-position): New function.
3092
3093 2012-11-27 Eli Zaretskii <eliz@gnu.org>
3094
3095 * subr.el (buffer-file-type): Declare with defvar-local. Doc fix.
3096
3097 * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
3098 Don't set buffer-file-type. Return nil. (Bug#12989)
3099
3100 2012-11-27 Glenn Morris <rgm@gnu.org>
3101
3102 * hippie-exp.el (hippie-expand-try-functions-list):
3103 Re-autoload it. (Bug#12982)
3104
3105 2012-11-27 Eli Zaretskii <eliz@gnu.org>
3106
3107 * descr-text.el (describe-char-padded-string):
3108 Call internal-char-font only on GUI frames. (Bug#11964)
3109
3110 2012-11-27 Andreas Schwab <schwab@linux-m68k.org>
3111
3112 * buff-menu.el (Buffer-menu-buffer+size-width): Fix customize type
3113 and obsoletion message.
3114
3115 2012-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
3116
3117 * emacs-lisp/cl-macs.el (cl--transform-lambda): Add back `declare' in
3118 the constructs to keep outside of the `cl-block' (bug#12977).
3119
3120 2012-11-27 Chong Yidong <cyd@gnu.org>
3121
3122 * mouse.el (mouse-drag-line): Even if the line is not draggable,
3123 keep reading until we get the up-event anyway, in order to process
3124 the up-event for mouse-1-click-follows-link (Bug#12971).
3125
3126 2012-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
3127
3128 * emacs-lisp/advice.el (ad-should-compile): Don't compile advice if the
3129 base function is not yet defined (bug#12965).
3130 (ad-activate-advised-definition): Use ad-compile-function.
3131 (ad-activate): Use cond.
3132
3133 2012-11-25 Leo Liu <sdl.web@gmail.com>
3134
3135 * textmodes/sgml-mode.el (sgml-tag): Fix indentation for closing tag.
3136 (Bug#12979)
3137
3138 2012-11-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
3139
3140 * textmodes/reftex-parse.el (reftex-parse-from-file): Use variable
3141 reftex-section-info-function in order to be compatible with
3142 Texinfo integration.
3143
3144 * textmodes/reftex.el (reftex-section-pre-regexp)
3145 (reftex-section-post-regexp, reftex-section-info-function):
3146 New variable.
3147 (reftex-compile-variables): Use variables reftex-section-pre-regexp,
3148 reftex-section-post-regexp, and reftex-section-info-function in order
3149 to be compatible with Texinfo integration.
3150
3151 * textmodes/reftex-toc.el (reftex-toc-promote-action):
3152 use reftex-section-pre-regexp variable in order to be compatible with
3153 Texinfo integration.
3154
3155 2012-11-25 Chong Yidong <cyd@gnu.org>
3156
3157 * faces.el: Make face-spec-set more analogous to setq.
3158 (face-spec-set): Change the third arg to specify whether this
3159 function is being called via defface, customize, or a third party.
3160 Set the appropriate symbol properties. Clear the override spec if
3161 setting via Custom. Initialize face if necessary. (Bug#4988)
3162 (face-spec-recalc): Allow theme faces to completely replace the
3163 defface spec, in the same way as custom faces (Bug#8454).
3164
3165 * cus-face.el (custom-declare-face): Move face initialization to
3166 face-spec-set.
3167 (custom-theme-set-faces): Don't initialize the face name here, as
3168 that is now done in face-spec-set.
3169
3170 * cus-edit.el (custom-face-set, custom-face-mark-to-save)
3171 (custom-face-reset-saved, custom-face-mark-to-reset-standard):
3172 Simplify by using the new arg to face-spec-set.
3173
3174 * emacs-lisp/lisp-mode.el (eval-defun-1): When evaluating defface,
3175 reset face-override-spec too, and use custom-declare-face.
3176
3177 2012-11-24 Jan Djärv <jan.h.d@swipnet.se>
3178
3179 * term/ns-win.el (ns-initialize-window-system): Move creation of
3180 fontsets here (Bug#11964).
3181
3182 2012-11-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
3183
3184 * ses.el (ses-rename-cell): Correct bug on mode-line update after
3185 cell renaming.
3186
3187 2012-11-24 Chong Yidong <cyd@gnu.org>
3188
3189 * woman.el (woman-default-faces, woman-monochrome-faces): Mark as
3190 obsolete.
3191
3192 * custom.el (custom-theme-set-variables): Use a topological sort
3193 for ordering by custom dependencies (Bug#12952).
3194 (custom--sort-vars, custom--sort-vars-1): New functions.
3195
3196 2012-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
3197
3198 * emacs-lisp/bytecomp.el (byte-compile-file): Setup default value for
3199 lexical-binding (bug#12938).
3200
3201 2012-11-24 Wolfgang Jenkner <wjenkner@inode.at>
3202
3203 * image-mode.el (image-transform-check-size): Use assertions only
3204 for images of type imagemagick.
3205
3206 Otherwise no error, image-transform-fit-to-{width,height} is
3207 silently ignored, as before. Doc fix.
3208
3209 2012-11-24 Chong Yidong <cyd@gnu.org>
3210
3211 * faces.el (color-defined-p): Doc fix (Bug#12853).
3212
3213 2012-11-24 Juri Linkov <juri@jurta.org>
3214
3215 * dired.el (dired-mark): Add optional arg `interactive'.
3216 Check for `use-region-p' if `interactive' is non-nil.
3217 (dired-unmark, dired-flag-file-deletion): Add optional arg
3218 `interactive'. Call `dired-mark' with the arg `interactive'.
3219 (Bug#10624)
3220
3221 * wdired.el: Revert 2012-10-17 change partly and replace it with
3222 Patch by Christopher Schmidt <christopher@ch.ristopher.com>.
3223 (wdired-finish-edit): Add marks for new file names to
3224 `wdired-old-marks'. Restore marks using `dired-mark-remembered'
3225 after `revert-buffer'.
3226 (wdired-do-renames): Remove calls to `dired-remove-file',
3227 `dired-add-file', `dired-add-entry'. (Bug#11795)
3228
3229 2012-11-24 Alan Mackenzie <acm@muc.de>
3230
3231 * progmodes/cc-defs.el (c-version): Bump to 5.32.4.
3232
3233 Fix bugs in the state cache. Enhance a debugging mechanism.
3234 * progmodes/cc-engine.el (c-parse-state-get-strategy): Don't use
3235 "brace at column zero" strategy for C++.
3236 (c-append-lower-brace-pair-to-state-cache): Repair algorithm.
3237 (c-parse-state-point): New variable.
3238 (c-record-parse-state-state): Record old parse state with
3239 `copy-tree'. Record previous value of point.
3240 (c-debug-parse-state-double-cons): New debugging function.
3241 (c-debug-parse-state): Call the above new function.
3242 (c-toggle-parse-state-debug): Output a confirmatory message.
3243
3244 * progmodes/cc-mode.el (c-before-change, c-after-change):
3245 Call c-invalidate-state-cache from `c-before-change' instead of
3246 `c-after-change'.
3247
3248 2012-11-23 Chong Yidong <cyd@gnu.org>
3249
3250 * find-cmd.el (find-constituents): Add executable, ipath,
3251 readable, samefile, writable, daystart, regextype (Bug#12856).
3252
3253 2012-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
3254
3255 * emacs-lisp/ert.el, emacs-lisp/ert-x.el: Use cl-lib and lexical-binding.
3256
3257 2012-11-22 Paul Eggert <eggert@cs.ucla.edu>
3258
3259 * calc/calc.el (calc-gregorian-switch): Move to after calc-refresh
3260 definition. This fixes a bootstrap failure.
3261 (calc-gregorian-switch): In menu, put dates before regions.
3262 This is easier to follow, lines up better in the menu, and lets us
3263 coalesce regions that switch at the same time. Give country
3264 names, not "Vatican", as that's better for non-expert users.
3265 Use names that are stable between the date of switch and now, e.g.,
3266 Bohemia and Moravia (which existed then and now) and not
3267 Czechoslovakia (which didn't exist then and doesn't exist now).
3268 What is now the U.S. mostly did not switch at the same time as
3269 Britain, so omit the U.S. Correct spelling of "Britain".
3270 Catholic Switzerland was too much of a mess, so omit it.
3271
3272 2012-11-22 Jay Belanger <jay.p.belanger@gmail.com>
3273
3274 * calc/calc.el (calc-gregorian-switch): Refresh the Calc buffer
3275 after the variable is changed.
3276
3277 2012-11-21 Daniel Colascione <dancol@dancol.org>
3278
3279 * progmodes/sql.el (sql-mode-font-lock-object-name): Support IF NOT EXISTS
3280 in SQL declarations for font-lock.
3281 (sql-imenu-generic-expression): Teach imenu about IF NOT EXISTS.
3282
3283 2012-11-21 Glenn Morris <rgm@gnu.org>
3284
3285 * faces.el (face-underline-p, face-inverse-video-p, face-bold-p)
3286 (face-italic-p): Add optional argument "inherit".
3287
3288 * faces.el (set-face-inverse-video, set-face-bold, set-face-italic):
3289 Remove -p suffix from names, for consistency with other set-face-*.
3290 (set-face-inverse-video): Fix interactive spec.
3291 * play/gamegrid.el (gamegrid-make-mono-tty-face):
3292 * textmodes/table.el (table--update-cell-face):
3293 Use set-face-inverse-video rather than now obsolete alias.
3294
3295 2012-11-21 Eli Zaretskii <eliz@gnu.org>
3296
3297 * simple.el (line-move): Don't call line-move-partial if
3298 scroll-conservatively is in effect. (Bug#12927)
3299
3300 2012-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
3301
3302 * eshell/em-cmpl.el (eshell-pcomplete): Refine fix for bug#12838:
3303 Fallback on completion-at-point rather than
3304 pcomplete-expand-and-complete, and only if pcomplete actually failed.
3305 (eshell-cmpl-initialize): Setup completion-at-point.
3306
3307 * pcomplete.el (pcomplete--entries): Obey pcomplete-ignore-case.
3308
3309 * emacs-lisp/ert.el (ert--expand-should-1): Adapt to cl-lib.
3310
3311 2012-11-21 Michael Albinus <michael.albinus@gmx.de>
3312
3313 * net/tramp-sh.el (tramp-do-copy-or-rename-file): If both files
3314 are remote, check out-of-band property for both.
3315
3316 2012-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
3317
3318 * window.el (switch-to-buffer): Re-add the warning that was lost in the
3319 code rewrite.
3320
3321 2012-11-21 Paul Eggert <eggert@cs.ucla.edu>
3322
3323 More minor time fixes.
3324 * calendar/time-date.el: Commentary fix.
3325 * net/tramp-sh.el (tramp-do-file-attributes-with-ls): Undo last change;
3326 too much other code depends on (0 0) time stamps.
3327 * net/tramp.el (tramp-time-less-p, tramp-time-subtract):
3328 Add a couple of FIXME comments.
3329
3330 Minor cleanup for times as lists of four integers.
3331 * files.el (dir-locals-directory-cache):
3332 * ps-bdf.el (bdf-file-mod-time, bdf-read-font-info):
3333 Doc fixes.
3334 * net/tramp-sh.el (tramp-do-file-attributes-with-ls):
3335 * ps-bdf.el (bdf-file-newer-than-time):
3336 Process four-integers time stamps, not two. Doc fixes.
3337
3338 2012-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
3339
3340 * uniquify.el (uniquify-managed): Use defvar-local.
3341 (rename-buffer, create-file-buffer): Advise with advice-add.
3342 (uniquify-unload-function): Unadvise accordingly.
3343
3344 * emacs-lisp/trace.el: Rewrite, use nadvice and lexical-binding.
3345 (trace-buffer): Don't purecopy.
3346 (trace-entry-message, trace-exit-message): Add `context' arg.
3347 (trace--timer): New var.
3348 (trace-make-advice): Adjust for use in nadvice.
3349 Add `context' argument. Delay `display-buffer' via a timer.
3350 (trace-function-internal): Use advice-add.
3351 (trace--read-args): New function.
3352 (trace-function-foreground, trace-function-background): Use it.
3353 (trace-function): Rename to trace-function-foreground and redefine as
3354 an alias to that new name.
3355 (untrace-function, untrace-all): Adjust to the use of nadvice.
3356
3357 * emacs-lisp/bytecomp.el (byte-compile): Fix handling of closures.
3358
3359 * emacs-lisp/byte-run.el (defun-declarations-alist): Fix last change.
3360
3361 * subr.el (called-interactively-p-functions): New var.
3362 (internal--called-interactively-p--get-frame): New macro.
3363 (called-interactively-p, interactive-p): Rewrite in Lisp.
3364 * emacs-lisp/nadvice.el (advice--called-interactively-skip): New fun.
3365 (called-interactively-p-functions): Use it.
3366 * emacs-lisp/edebug.el (edebug--called-interactively-skip): New fun.
3367 (called-interactively-p-functions): Use it.
3368 * allout.el (allout-called-interactively-p): Don't assume
3369 called-interactively-p is a subr.
3370
3371 2012-11-20 Glenn Morris <rgm@gnu.org>
3372
3373 * profiler.el (profiler-report-mode-map): Add a menu.
3374 No need to bind `q' because we derive from special-mode.
3375 (profiler-report-find-entry): Handle calls from the menu-bar.
3376
3377 2012-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
3378
3379 * emacs-lisp/byte-run.el (defun-declarations-alist):
3380 Allow a compiler-macro to be a lambda expression.
3381
3382 * progmodes/python.el: Use cl-lib. Move var declarations outside of
3383 eval-when-compile.
3384 (python-syntax-context): Add compiler-macro.
3385 (python-font-lock-keywords): Simplify with De Morgan.
3386
3387 * vc/diff-mode.el (diff-hunk): Don't make useless timers.
3388
3389 * files.el (load-file): Require match in minibuffer selection, as was
3390 the case in Emacs-20 before we changed the spec to allow .elc files
3391 (bug#12935).
3392
3393 * json.el: Don't require cl since we don't use it.
3394 * color.el: Don't require cl.
3395 (color-complement): `caddr' -> `nth 2'.
3396
3397 * calendar/time-date.el (time-to-seconds): De-obsolete.
3398
3399 2012-11-19 Jay Belanger <jay.p.belanger@gmail.com>
3400
3401 * calc/calc-forms.el (math-leap-year-p): Fix formula for negative
3402 year numbers.
3403 (math-date-to-julian-dt): Adjust the initial approximation for the
3404 year to deal with the new definition of the DATE.
3405
3406 2012-11-19 Daniel Colascione <dancol@dancol.org>
3407
3408 * term/w32-win.el (cygwin-convert-path-from-windows):
3409 Accomodate rename of cygwin_convert_path* to cygwin_convert_file_name*.
3410
3411 2012-11-18 Chong Yidong <cyd@gnu.org>
3412
3413 * filecache.el (file-cache--read-list): New function.
3414 (file-cache-add-directory-list, file-cache-add-file-list)
3415 (file-cache-delete-file-list, file-cache-delete-directory-list):
3416 Use it to read a list of files or directories (Bug#12846).
3417 (file-cache-add-file, file-cache-add-directory)
3418 (file-cache-delete-file-list, file-cache-delete-file-regexp)
3419 (file-cache-delete-directory): Print an message.
3420
3421 2012-11-18 Jay Belanger <jay.p.belanger@gmail.com>
3422
3423 * calc/calc-forms.el (math-date-to-dt): Use integer date when
3424 calling `math-date-to-julian-dt' and 'math-date-to-gregorian-dt'.
3425
3426 2012-11-18 Glenn Morris <rgm@gnu.org>
3427
3428 * image.el (insert-image, insert-sliced-image): Doc fix.
3429
3430 2012-11-18 Chong Yidong <cyd@gnu.org>
3431
3432 * emacs-lisp/syntax.el (syntax-propertize-function): Doc fix
3433 (Bug#12810).
3434
3435 2012-11-18 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
3436
3437 * vc/vc-svn.el (vc-svn-merge-news): Properly parse the merge
3438 response when the target file is in a subdirectory (Bug#12757).
3439
3440 2012-11-18 Chong Yidong <cyd@gnu.org>
3441
3442 * filecache.el (file-cache-add-file-list): Doc fix (Bug#12694).
3443
3444 2012-11-18 Glenn Morris <rgm@gnu.org>
3445
3446 * emacs-lisp/cl-lib.el (face-underline-p):
3447 Use set-face-underline rather than the alias set-face-underline-p.
3448
3449 * window.el (with-temp-buffer-window): Doc fix.
3450 * subr.el (with-output-to-temp-buffer):
3451 Add doc xref to with-temp-buffer-window.
3452
3453 2012-11-18 Juanma Barranquero <lekktu@gmail.com>
3454
3455 * woman.el (woman-non-underline-faces): Use `set-face-underline'.
3456 * calc/calc.el (math-format-date-cache): Declare.
3457
3458 2012-11-17 Paul Eggert <eggert@cs.ucla.edu>
3459
3460 Calc by default uses the Gregorian calendar for all dates (Bug#12633).
3461 It also uses January 1, 1 AD as its day number 1.
3462 * calc/calc-forms.el (math-julian-date-beginning)
3463 (math-julian-date-beginning-int): Implement this.
3464
3465 2012-11-17 Juanma Barranquero <lekktu@gmail.com>
3466
3467 * descr-text.el (quail-find-key):
3468 * dired.el (desktop-file-name):
3469 * dirtrack.el (shell-prefixed-directory-name, shell-process-cd):
3470 * generic-x.el (comint-mode, comint-exec):
3471 * image-dired.el (widget-forward):
3472 * info.el (speedbar-add-expansion-list, speedbar-center-buffer-smartly)
3473 (speedbar-change-expand-button-char)
3474 (speedbar-change-initial-expansion-list, speedbar-delete-subblock)
3475 (speedbar-make-specialized-keymap, speedbar-make-tag-line):
3476 * printing.el (easy-menu-add-item, easy-menu-remove-item)
3477 (widget-field-action, widget-value-set):
3478 * speedbar.el (imenu--make-index-alist):
3479 * term.el (ring-empty-p, ring-ref, ring-insert-at-beginning)
3480 (ring-length, ring-insert):
3481 * vcursor.el (compare-windows-skip-whitespace):
3482 * woman.el (dired-get-filename):
3483 Declare functions.
3484
3485 * term/w32-win.el (cygwin-convert-path-from-windows): Fix declaration.
3486
3487 2012-11-17 Jay Belanger <jay.p.belanger@gmail.com>
3488
3489 * calc/calc.el (calc-gregorian-switch): New variable.
3490
3491 * calc/calc-forms.el (math-day-in-year, math-dt-before-p)
3492 (math-absolute-from-gregorian-dt, math-absolute-from-julian-dt)
3493 (math-date-to-julian-dt, math-date-to-gregorian-dt): New functions.
3494 (math-leap-year-p): Add option to distinguish between Julian
3495 and Gregorian calendars.
3496 (math-day-number): Use `math-day-in-year' to do the computations.
3497 (math-absolute-from-dt): Rename from `math-absolute-from-date'.
3498 Use `math-absolute-from-gregorian' and `math-absolute-from-julian'
3499 to do the computations.
3500 (math-date-to-dt): Use `math-date-to-julian-dt' and
3501 `math-date-to-gregorian-dt' to do the computations.
3502 (calcFunc-weekday, math-format-date-part): Use the new version of
3503 the DATE to determine the weekday.
3504 (calcFunc-newmonth, calcFunc-newyear): Use `calc-gregorian-switch'
3505 when necessary.
3506
3507 2012-11-17 Eli Zaretskii <eliz@gnu.org>
3508
3509 * term/w32-win.el (w32-handle-dropped-file): Use 'file://' only on
3510 Cygwin; otherwise use 'file:'. (Bug#12914)
3511 (cygwin-convert-path-from-windows): Declare, to avoid
3512 byte-compiler warnings.
3513
3514 2012-11-17 Andreas Politz <politza@fh-trier.de>
3515
3516 * ibuffer.el (ibuffer-mark-forward, ibuffer-unmark-forward)
3517 (ibuffer-unmark-backward, ibuffer-mark-interactive): Support plain
3518 prefix and negative numeric prefix args (Bug#12795).
3519
3520 2012-11-17 Stephen Berman <stephen.berman@gmx.net>
3521
3522 * play/gamegrid.el (gamegrid-add-score-with-update-game-score-1):
3523 Don't signal an error with a score that is too low to add to the
3524 list of top scores. (Bug#12779)
3525
3526 2012-11-17 Chong Yidong <cyd@gnu.org>
3527
3528 * help-mode.el (help-xref-interned): End on point-min (Bug#12737).
3529
3530 * filecache.el (file-cache-add-file): Handle relative file name in
3531 the argument (Bug#12694).
3532
3533 2012-11-16 Jürgen Hötzel <juergen@archlinux.org> (tiny change)
3534
3535 * eshell/em-unix.el (eshell/mkdir): Handle "--parents" (bug#12897).
3536
3537 2012-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
3538
3539 * emacs-lisp/advice.el (ad-make-advised-definition): Improve last fix.
3540
3541 * emacs-lisp/cl-lib.el: Set more meaningful version number.
3542
3543 2012-11-16 Martin Rudalics <rudalics@gmx.at>
3544
3545 * window.el (enlarge-window, shrink-window): Don't mention return
3546 value in doc-string (Bug#12896).
3547 (window--display-buffer): Don't resize frames - it won't work
3548 with all window managers and defeat pop-up-frame-alist.
3549 (display-buffer-alist): In doc-string explain that CONDITION can
3550 be a function and which arguments are passed to it (Bug#12854).
3551 (display-buffer-assq-regexp): New argument ACTION. Handle lambda
3552 expressions (Bug#12854).
3553 (display-buffer): Pass ACTION argument to
3554 display-buffer-assq-regexp.
3555
3556 2012-11-16 Glenn Morris <rgm@gnu.org>
3557
3558 * window.el (fit-frame-to-buffer-bottom-margin)
3559 (fit-frame-to-buffer, fit-window-to-buffer): Doc fixes.
3560
3561 * faces.el (face-underline-p): Use face-attribute-specified-or.
3562
3563 2012-11-16 Juanma Barranquero <lekktu@gmail.com>
3564
3565 * emacs-lisp/cl-macs.el (cl-loop, cl-do, cl-do*): Doc fixes.
3566
3567 2012-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
3568
3569 * emacs-lisp/cl-macs.el (cl-flet, cl-flet*): Fix docstring (bug#12895).
3570
3571 2012-11-16 Glenn Morris <rgm@gnu.org>
3572
3573 * eshell/em-cmpl.el (eshell-pcomplete): New command. (Bug#12838)
3574 (eshell-cmpl-initialize): Bind eshell-pcomplete to TAB, C-i.
3575
3576 * faces.el (face-underline-p): Doc fix. Handle :underline being
3577 things other than `t' (a string, a list).
3578 (face-inverse-video-p): Doc fix.
3579 (set-face-underline): Rename it back from set-face-underline-p.
3580 Doc fix. Allow interactive input of values other than t.
3581 (read-face-attribute): Apply formatting to :underline,
3582 since like :box and :stipple it can take list values.
3583
3584 * term.el (ansi-term): Don't let C-x escape-char binding
3585 clobber the more standard C-c binding. (Bug#12842)
3586
3587 * subr.el (set-temporary-overlay-map): Doc fix.
3588
3589 2012-11-16 Martin Rudalics <rudalics@gmx.at>
3590
3591 * window.el (record-window-buffer)
3592 (display-buffer-record-window): When copying the markers to
3593 window-point preserve window-point-insertion-type. (Bug#12588)
3594
3595 2012-11-16 Glenn Morris <rgm@gnu.org>
3596
3597 * emacs-lisp/eieio-datadebug.el (eieio-debug-methodinvoke):
3598 * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error):
3599 Use new names for hooks rather than obsolete aliases.
3600
3601 2012-11-15 Daniel Colascione <dancol@dancol.org>
3602
3603 * term/w32-win.el (w32-handle-dropped-file): Use a "file://"
3604 prefix instead of "file:" so that when FILE-NAME begins with "//",
3605 as it does when the target file is on a network share, url-handler
3606 isn't confused.
3607
3608 2012-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
3609
3610 * emacs-lisp/advice.el (ad-definition-type): Make sure we don't use
3611 a preactivated advice from an old advice.el; they're not compatible!
3612
3613 2012-11-15 Katsumi Yamaoka <yamaoka@jpl.org>
3614
3615 * emacs-lisp/nadvice.el (advice--make-interactive-form):
3616 Fix string-spec case.
3617
3618 * emacs-lisp/advice.el (ad-make-advised-definition): Fix undefined case.
3619
3620 2012-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
3621
3622 * emacs-lisp/nadvice.el: Add buffer-local support to add-function.
3623 (advice--buffer-local-function-sample): New var.
3624 (advice--set-buffer-local, advice--buffer-local): New functions.
3625 (add-function, remove-function): Use them.
3626
3627 2012-11-15 Drew Adams <drew.adams@oracle.com>
3628
3629 * imenu.el (imenu--split-submenus): Use imenu--subalist-p (bug#12717).
3630
3631 2012-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
3632
3633 * emacs-lisp/cl-macs.el (cl--transform-lambda): Defend against
3634 potential binding of print-gensym to t, and prettify (back)quotes in
3635 case they appear in args's default values (bug#12884).
3636
3637 2012-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
3638
3639 * emacs-lisp/nadvice.el: Add around advice for interactive specs.
3640 (advice-eval-interactive-spec): New function.
3641 (advice--make-interactive-form): Support around advice (bug#12844).
3642
3643 2012-11-14 Dmitry Gutov <dgutov@yandex.ru>
3644
3645 * progmodes/ruby-mode.el (ruby-expr-beg): Make heredoc detection
3646 more strict. Add docstring.
3647 (ruby-expression-expansion-re): Extract from
3648 `ruby-match-expression-expansion'.
3649 (ruby-syntax-propertize-function): After everything else, search
3650 for expansions in string literals, mark their insides as
3651 whitespace syntax and save match data for font-lock.
3652 (ruby-font-lock-keywords): Use the 2nd group from expression
3653 expansion matches.
3654 (ruby-match-expression-expansion): Use the match data saved to the
3655 text property in ruby-syntax-propertize-function.
3656
3657 2012-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
3658
3659 * emacs-lisp/gv.el (setf): Fix debug spec for multiple assignments
3660 (bug#12879).
3661
3662 2012-11-13 Dmitry Gutov <dgutov@yandex.ru>
3663
3664 * progmodes/ruby-mode.el (ruby-move-to-block): Looks for a block
3665 start/end keyword a bit harder. Works with different values of N.
3666 Add more comments.
3667 (ruby-end-of-block): Update accordingly.
3668
3669 2012-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
3670
3671 * woman.el (woman-file-name): Don't mess with unread-command-events
3672 (bug#12861).
3673
3674 * emacs-lisp/advice.el: Layer on top of nadvice.el.
3675 Remove out of date self-require hack.
3676 (ad-do-advised-functions): Use simple `dolist'.
3677 (ad-advice-name, ad-advice-protected, ad-advice-enabled)
3678 (ad-advice-definition): Redefine as functions.
3679 (ad-advice-classes): Move before first use.
3680 (ad-make-origname, ad-set-orig-definition, ad-clear-orig-definition)
3681 (ad-make-mapped-call, ad-make-advised-docstring,ad-make-plain-docstring)
3682 (ad--defalias-fset): Remove functions.
3683 (ad-make-advicefunname, ad-clear-advicefunname-definition): New funs.
3684 (ad-get-orig-definition): Rewrite.
3685 (ad-make-advised-definition-docstring): Change base docstring.
3686 (ad-real-orig-definition): Rewrite.
3687 (ad-map-arglists): Change name of called function.
3688 (ad--make-advised-docstring): Redirect `function' from ad-Advice-...
3689 (ad-make-advised-definition): Simplify.
3690 (ad-assemble-advised-definition): Tweak for new calling context.
3691 (ad-activate-advised-definition): Setup ad-Advice-* i.s.o ad-Orig-*.
3692 (ad--defalias-fset): Rename from ad-handle-definition. Make it set the
3693 function and call ad-activate if needed.
3694 (ad-activate, ad-deactivate): Don't call ad-handle-definition any more.
3695 (ad-recover): Clear ad-Advice-* instead of ad-Orig-*.
3696 (ad-compile-function): Compile ad-Advice-*.
3697 (ad-activate-on-top-level, ad-with-auto-activation-disabled): Remove.
3698 (ad-start-advice, ad-stop-advice): Remove.
3699
3700 2012-11-13 Dmitry Gutov <dgutov@yandex.ru>
3701
3702 * progmodes/ruby-mode.el (ruby-add-log-current-method): Print the
3703 period before class method names, not after. Remove handling of
3704 one impossible case. Add comments.
3705
3706 2012-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
3707
3708 * emacs-lisp/advice.el: Remove support for freezing.
3709 (ad-make-freeze-docstring, ad-make-freeze-definition): Remove functions.
3710 (ad-make-single-advice-docstring, ad-defadvice-flags, defadvice):
3711 Remove support for `freeze'.
3712
3713 * emacs-lisp/cl.el (dolist, dotimes, declare): Use advice-add to
3714 override the default.
3715 * emacs-lisp/cl-macs.el (cl-dolist, cl-dotimes): Rewrite without using
3716 cl--dotimes/dolist.
3717 * subr.el (dolist, dotimes, declare): Redefine them normally, even when
3718 `cl' is loaded.
3719
3720 * emacs-lisp/nadvice.el (advice--normalize): New function, extracted
3721 from add-advice.
3722 (advice--strip-macro): New function.
3723 (advice--defalias-fset): Use them to handle macros.
3724 (advice-add): Use them.
3725 (advice-member-p): Correctly handle macros.
3726
3727 2012-11-13 Dmitry Gutov <dgutov@yandex.ru>
3728
3729 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
3730 Never font-lock the beginning of singleton class as heredoc.
3731
3732 2012-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
3733
3734 * emacs-lisp/gv.el (gv-define-simple-setter): One more fix (bug#12871).
3735
3736 2012-11-13 Wolfgang Jenkner <wjenkner@inode.at>
3737
3738 * ansi-color.el (ansi-color-apply-sequence): Implement SGR codes
3739 39 and 49 (bug#12792). Also, treat unimplemented parameters as 0,
3740 thereby restoring the behavior of revisions prior to 2012-08-15T03:33:55Z!monnier@iro.umontreal.ca.
3741
3742 2012-11-13 Fabián Ezequiel Gallina <fgallina@cuca>
3743
3744 Fix end-of-defun misbehavior.
3745 * progmodes/python.el (python-nav-beginning-of-defun): Rename from
3746 python-beginning-of-defun-function. Handle nested defuns
3747 correctly.
3748 (python-nav-end-of-defun): Rename from
3749 python-end-of-defun-function. Ensure forward movement.
3750 (python-info-current-defun): Reimplement to work as intended
3751 with new fixed python-nav-{end,beginning}-of-defun. Stop scanning
3752 parent defuns as soon as possible.
3753
3754 2012-11-13 Glenn Morris <rgm@gnu.org>
3755
3756 * progmodes/flymake.el (flymake-error-bitmap)
3757 (flymake-warning-bitmap, flymake-fringe-indicator-position): Doc fixes.
3758 (flymake-error-bitmap, flymake-warning-bitmap): Fix :types.
3759
3760 2012-11-13 Dmitry Gutov <dgutov@yandex.ru>
3761
3762 * progmodes/ruby-mode.el (ruby-move-to-block): When moving
3763 backward, always stop at indentation. Reverts the change from
3764 2012-08-12T22:06:56Z!monnier@iro.umontreal.ca (Bug#12851).
3765
3766 2012-11-13 Glenn Morris <rgm@gnu.org>
3767
3768 * ibuffer.el (ibuffer-mode-map, ibuffer-mode):
3769 Add ibuffer-filter-by-derived-mode.
3770
3771 * ibuffer.el (ibuffer-mode-map): Don't have two menu items with
3772 the same name shadowing each other.
3773
3774 * window.el (with-temp-buffer-window): Doc tweak.
3775
3776 * emacs-lisp/debug.el (debugger-bury-or-kill): Doc tweak.
3777
3778 * help.el (temp-buffer-max-height):
3779 * window.el (fit-frame-to-buffer, fit-frame-to-buffer-bottom-margin):
3780 * emacs-lisp/debug.el (debugger-bury-or-kill): Fix :version.
3781
3782 2012-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
3783
3784 * emacs-lisp/nadvice.el: New package.
3785 * subr.el (special-form-p): New function.
3786 * emacs-lisp/elp.el: Use lexical-binding and advice-add.
3787 (elp-all-instrumented-list): Remove var.
3788 (elp-not-profilable): Remove elp-wrapper.
3789 (elp-profilable-p): Use autoloadp and special-form-p.
3790 (elp--advice-name): New const.
3791 (elp-instrument-function): Use advice-add.
3792 (elp--instrumented-p): New predicate.
3793 (elp-restore-function): Use advice-remove.
3794 (elp-restore-all, elp-reset-all): Use mapatoms.
3795 (elp-set-master): Use elp--instrumented-p.
3796 (elp--make-wrapper): Rename from elp-wrapper, return a function
3797 suitable for advice-add. Use cl-inf.
3798 (elp-results): Use mapatoms+elp--instrumented-p.
3799 * emacs-lisp/debug.el: Use lexical-binding and advice-add.
3800 (debug-function-list): Remove var.
3801 (debug): Rename arg, and then let-bind it explicitly inside.
3802 (debugger-setup-buffer): Rename arg.
3803 (debugger-setup-buffer): Adjust counts to new debug-on-entry setup.
3804 (debugger-frame-number): Adjust to new debug-on-entry setup.
3805 (debug--implement-debug-on-entry): Rename from
3806 implement-debug-on-entry, add argument.
3807 (debugger-special-form-p): Remove, use special-form-p instead.
3808 (debug-on-entry): Use advice-add.
3809 (debug--function-list): New function.
3810 (cancel-debug-on-entry): Use it, along with advice-remove.
3811 (debug-arglist, debug-convert-byte-code, debug-on-entry-1): Remove.
3812 (debugger-list-functions): Use debug--function-list instead of
3813 debug-function-list.
3814 * emacs-lisp/advice.el (ad-save-real-definition): Remove, unused.
3815 (ad-special-form-p): Remove, use special-form-p instead.
3816 (ad-set-advice-info): Use add-function and remove-function.
3817 (ad--defalias-fset): Adjust accordingly.
3818
3819 2012-11-10 Glenn Morris <rgm@gnu.org>
3820
3821 * mail/emacsbug.el (report-emacs-bug-tracker-url)
3822 (report-emacs-bug-bug-alist, report-emacs-bug-choice-widget)
3823 (report-emacs-bug-create-existing-bugs-buffer)
3824 (report-emacs-bug-parse-query-results)
3825 (report-emacs-bug-query-existing-bugs): Remove. (Bug#7449)
3826
3827 * term.el (term-default-fg-color, term-default-bg-color):
3828 Make obsolete, rather than just saying "deprecated" in the doc.
3829
3830 * term.el (term): Rename from `term-face'.
3831 (term-current-face, ansi-term-color-vector)
3832 (term-default-fg-color, term-default-bg-color, term-ansi-reset):
3833 Update all users.
3834
3835 2012-11-10 Jan Djärv <jan.h.d@swipnet.se>
3836
3837 * server.el (server-create-window-system-frame): Handle Nextstep
3838 specially (Bug#12780).
3839
3840 2012-11-10 Glenn Morris <rgm@gnu.org>
3841
3842 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs):
3843 Unautoload, and make obsolete. (Bug#7449)
3844
3845 2012-11-10 Chong Yidong <cyd@gnu.org>
3846
3847 * vc/diff-mode.el (diff-delete-trailing-whitespace): Rewrite, and
3848 rename from diff-remove-trailing-whitespace (Bug#12831).
3849
3850 2012-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
3851
3852 * emacs-lisp/advice.el: Require `cl-lib' at run-time to fix
3853 miscompilation of trace.el.
3854
3855 2012-11-10 Glenn Morris <rgm@gnu.org>
3856
3857 * vc/diff-mode.el (diff-remove-trailing-whitespace): Doc fix.
3858
3859 2012-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
3860
3861 * emacs-lisp/gv.el (gv-define-simple-setter): Fix last change
3862 (bug#12812).
3863
3864 2012-11-10 Chong Yidong <cyd@gnu.org>
3865
3866 * minibuf-eldef.el (minibuffer-eldef-shorten-default): Convert to
3867 a defcustom with an appropriate :set function.
3868 (minibuffer-default--in-prompt-regexps): New function.
3869
3870 2012-11-10 Glenn Morris <rgm@gnu.org>
3871
3872 * emacs-lisp/cl.el (define-setf-expander, defsetf)
3873 (define-modify-macro): Doc fixes.
3874
3875 * emacs-lisp/gv.el (gv-letplace): Fix doc typo.
3876 (gv-define-simple-setter): Update doc of `fix-return'.
3877
3878 2012-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
3879
3880 * emacs-lisp/gv.el (gv-define-simple-setter): Don't evaluate `val'
3881 twice when `fix-return' is set (bug#12813).
3882
3883 * emacs-lisp/cl.el (defsetf): Pass the third arg to
3884 gv-define-simple-setter (bug#12812).
3885
3886 * woman.el (woman-decode-region): Disable adaptive-fill when rendering
3887 (bug#12756).
3888
3889 2012-11-10 Glenn Morris <rgm@gnu.org>
3890
3891 * emacs-lisp/gv.el (gv-define-setter): Fix doc typo.
3892
3893 * emacs-lisp/cl-extra.el (cl-prettyexpand):
3894 * emacs-lisp/cl-lib.el (cl-proclaim, cl-declaim):
3895 * emacs-lisp/cl-macs.el (cl-destructuring-bind, cl-locally)
3896 (cl-the, cl-compiler-macroexpand): Add basic doc strings.
3897
3898 * emacs-lisp/cl-extra.el (cl-maplist, cl-mapcan): Doc fix.
3899
3900 2012-11-10 Leo Liu <sdl.web@gmail.com>
3901
3902 * ido.el (ido-set-matches-1): Improve flex matching performance by
3903 removing backtracking in the regexp (suggested by Stefan). (Bug#12796)
3904
3905 2012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
3906
3907 * emacs-lisp/advice.el (ad-set-advice-info): Set defalias-fset-function.
3908 (ad--defalias-fset): New function.
3909 (ad-safe-fset): Remove.
3910 (ad-make-freeze-definition): Use cl-letf*.
3911
3912 2012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
3913
3914 * subr.el (dolist): Don't bind VAR in RESULT.
3915
3916 * emacs-lisp/advice.el: Miscellaneous cleanup. Use lexical-binding.
3917 (fset, documentation): Don't save real def since we don't advise.
3918 (ad-do-advised-functions): Remove problematic `result-form'.
3919 (ad-safe-fset): `ad-real-fset' => `fset'.
3920 (ad-read-advised-function): Don't assume that ad-do-advised-functions
3921 uses CL's dolist internally.
3922 (ad-arglist): Remove unused arg `name'.
3923 (ad-docstring, ad-make-advised-docstring):
3924 `ad-real-documentation' => `documentation'.
3925 (warning-suppress-types): Declare.
3926 (ad-set-arguments): Simple CSE.
3927 (ad-recover-normality): Sanity check.
3928
3929 * emacs-lisp/bytecomp.el (byte-compile-out-toplevel): Don't turn
3930 (funcall '(lambda ..) ..) into ((lambda ..) ..).
3931
3932 2012-11-09 Vincent Belaïche <vincentb1@users.sourceforge.net>
3933
3934 * ses.el: symbol to coordinate mapping is made by symbol property
3935 `ses-cell'. This means that the same mapping is done for all SES
3936 sheets. That is good enough for cells with standard A1 names, but
3937 not for named cell. So a hash map is added for the latter.
3938 (defconst ses-localvars): Add local variable ses--named-cell-hashmap
3939 (ses-sym-rowcol): Use hashmap for named cell.
3940 (ses-is-cell-sym-p): New defun.
3941 (ses-decode-cell-symbol): New defun.
3942 (ses-create-cell-variable): Add cell to hashmap when name is not
3943 A1-like.
3944 (ses-rename-cell): Check that cell new name is not already in
3945 spreadsheet with the use of ses-is-cell-sym-p
3946 (ses-rename-cell): Use hash map for named cells, but accept also
3947 renaming back to A1-like.
3948
3949 2012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
3950
3951 * emacs-lisp/advice.el: Use new dynamic docstrings.
3952 (ad-make-advised-definition-docstring, ad-advised-definition-p):
3953 Use dynamic-docstring-function instead of ad-advice-info.
3954 (ad--make-advised-docstring): New function extracted from
3955 ad-make-advised-docstring.
3956 (ad-make-advised-docstring): Use it.
3957 * progmodes/sql.el (sql--make-help-docstring): New function, extracted
3958 from sql-help.
3959 (sql-help): Use it with dynamic-docstring-function.
3960
3961 * env.el (env--substitute-vars-regexp): Don't use rx (for bootstrap).
3962
3963 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
3964
3965 * files.el (hack-one-local-variable--obsolete): New function.
3966 (hack-one-local-variable): Use it for obsolete settings.
3967
3968 * subr.el (locate-user-emacs-file): If both old and new name exist, use
3969 the new name.
3970
3971 * progmodes/js.el (js--filling-paragraph): New var.
3972 (c-forward-sws, c-backward-sws, c-beginning-of-macro): Advise.
3973 (js-c-fill-paragraph): Prefer advice to cl-letf so the rebinding is
3974 less sneaky.
3975
3976 2012-11-08 Julien Danjou <julien@danjou.info>
3977
3978 * progmodes/ruby-mode.el (auto-mode-alist): Add Rakefile in
3979 `auto-mode-alist' (Bug#12835).
3980
3981 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
3982
3983 * progmodes/perl-mode.el (perl-prettify-symbols): New defcustom.
3984 (perl--prettify-symbols-alist): New const.
3985 (perl--font-lock-compose-symbol, perl--font-lock-symbols-keywords):
3986 New functions.
3987 (perl-font-lock-keywords-2): Use them.
3988 (perl-electric-noindent-p): New function.
3989 (perl-mode): Use it to set up electric-indent-mode.
3990 (perl-electric-terminator, perl-indent-command): Mark obsolete.
3991 (perl-mode-map): Remove bindings for them.
3992 (perl-imenu-generic-expression, perl-outline-level):
3993 Match functions&packages in column>0.
3994
3995 * env.el (env--substitute-vars-regexp): New const.
3996 (substitute-env-vars): Use it. Add `only-defined' arg.
3997 * net/tramp.el (tramp-replace-environment-variables): Use it.
3998
3999 * emacs-lisp/bytecomp.el (byte-compile-initial-macro-environment):
4000 Byte-compile *before* eval in eval-and-compile.
4001 (byte-compile-log-warning): Remove redundant inhibit-read-only.
4002 (byte-compile-file-form-autoload): Don't hide actual definition.
4003 (byte-compile-maybe-guarded): Accept `functionp' as well.
4004
4005 * emacs-lisp/gv.el (gv-ref, gv-deref): New function and macro.
4006
4007 2012-11-07 Michael Albinus <michael.albinus@gmx.de>
4008
4009 * notifications.el (notifications-get-server-information-method):
4010 New defconst.
4011 (notifications-get-capabilities): Fix docstring.
4012 (notifications-get-server-information): New defun.
4013
4014 2012-11-06 Agustín Martín Domingo <agustin.martin@hispalinux.es>
4015
4016 * textmodes/ispell.el (ispell-region): Standard re-indent for better
4017 readability.
4018
4019 * textmodes/ispell.el: Experimental support for support debugging.
4020 (ispell-create-debug-buffer): Create a `ispell-debug-buffer' debug
4021 buffer for ispell.
4022 (ispell-print-if-debug): New function to print stuff to
4023 `ispell-debug-buffer' if debugging is enabled.
4024 (ispell-region, ispell-process-line): Use `ispell-print-if-debug' to
4025 show some debugging info.
4026 (ispell-buffer-with-debug): New function that creates a debugging
4027 buffer and calls `ispell-buffer' with debugging enabled.
4028
4029 * textmodes/ispell.el (ispell-region): Do not prefix sent string by
4030 comment in autoconf mode. (Bug#12768)
4031
4032 2012-11-06 Dmitry Antipov <dmantipov@yandex.ru>
4033
4034 * emacs-lisp/byte-opt.el (toplevel): Add compare-window-configurations,
4035 frame-first-window, frame-root-window, frame-selected-window,
4036 minibuffer-selected-window, minibuffer-window,
4037 window-absolute-pixel-edges, window-at, window-body-height,
4038 window-body-width, window-display-table, window-combination-limit,
4039 window-frame, window-fringes, window-inside-absolute-pixel-edges,
4040 window-inside-edges, window-inside-pixel-edges, window-left-child,
4041 window-left-column, window-margins, window-next-buffers,
4042 window-next-sibling, window-new-normal, window-new-total,
4043 window-normal-size, window-parameter, window-parameters, window-parent,
4044 window-pixel-edges, window-point, window-prev-buffers,
4045 window-prev-sibling, window-redisplay-end-trigger, window-scroll-bars,
4046 window-start, window-text-height, window-top-child, window-top-line,
4047 window-total-height, window-total-width and window-use-time to the list
4048 of functions without side-effects.
4049 (toplevel): Add window-valid-p to the list of error-free functions
4050 without side-effects.
4051
4052 2012-11-05 Agustín Martín Domingo <agustin.martin@hispalinux.es>
4053
4054 * textmodes/ispell.el (ispell-program-name):
4055 Update spellchecker parameters when customized.
4056
4057 2012-11-04 Glenn Morris <rgm@gnu.org>
4058
4059 * vc/vc-svn.el (vc-svn-state-heuristic): Avoid calling svn. (Bug#7850)
4060
4061 2012-11-04 Chong Yidong <cyd@gnu.org>
4062
4063 * bookmark.el (bookmark-bmenu-switch-other-window): Avoid binding
4064 same-window-* variables.
4065
4066 2012-11-04 Juri Linkov <juri@jurta.org>
4067
4068 * isearch.el (isearch-help-for-help, isearch-describe-bindings)
4069 (isearch-describe-key, isearch-describe-mode): Use a display
4070 action instead of binding same-window-* variables (Bug#10040).
4071
4072 2012-11-03 Glenn Morris <rgm@gnu.org>
4073
4074 * emacs-lisp/cl-macs.el (cl-parse-loop-clause):
4075 Rename handler properties back from cl-- to cl-. (Bug#12788)
4076
4077 * emacs-lisp/cl-macs.el (cl-do-all-symbols): Add doc string.
4078
4079 2012-11-03 Eli Zaretskii <eliz@gnu.org>
4080
4081 * term/pc-win.el: Don't load term/internal from here.
4082
4083 * loadup.el: Load term/internal from here.
4084
4085 2012-11-03 Fabián Ezequiel Gallina <fgallina@cuca>
4086
4087 * progmodes/python.el (inferior-python-mode): Fix hang in
4088 jit-lock (Bug#12645).
4089
4090 2012-11-03 Martin Rudalics <rudalics@gmx.at>
4091
4092 * window.el (switch-to-visible-buffer)
4093 (switch-to-buffer-preserve-window-point): Fix doc-strings.
4094
4095 2012-11-03 Glenn Morris <rgm@gnu.org>
4096
4097 * emacs-lisp/cl-lib.el (cl--random-time):
4098 Rename from cl-random-time. (Bug#12773)
4099 (cl--gensym-counter, cl--random-state): Update callers.
4100 * emacs-lisp/cl-extra.el (cl-make-random-state): Update callers.
4101
4102 2012-11-03 Chong Yidong <cyd@gnu.org>
4103
4104 * cus-start.el: Make cursor-type customizable (Bug#11633).
4105
4106 2012-11-02 Glenn Morris <rgm@gnu.org>
4107
4108 * filecache.el: No need to load find-lisp when compiling.
4109 (find-lisp-find-files): Autoload it.
4110 (file-cache-add-directory-recursively): Don't require find-lisp.
4111
4112 * image.el (image-type-from-file-name): Trivial simplification.
4113
4114 * emacs-lisp/bytecomp.el (byte-compile-eval):
4115 Decouple "noruntime" and "cl-functions" warnings.
4116
4117 2012-11-01 Stephen Berman <stephen.berman@gmx.net>
4118
4119 * play/gomoku.el (gomoku-display-statistics): Update mode line
4120 only if in Gomoku buffer; don't capitalize "won" (Bug#12771).
4121
4122 2012-10-31 Martin Rudalics <rudalics@gmx.at>
4123
4124 * window.el (quit-restore-window): If the window has been
4125 created on an existing frame and ended up as the sole window on
4126 that frame, do not delete it (Bug#12764).
4127
4128 2012-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
4129
4130 * progmodes/sh-script.el (sh--inside-noncommand-expression):
4131 Rename from sh--inside-arithmetic-expression, handle more cases
4132 (bug#11263).
4133
4134 * progmodes/sh-script.el (sh--inside-arithmetic-expression): New func.
4135 (sh-font-lock-open-heredoc): Use it (bug#12770).
4136
4137 2012-10-30 Glenn Morris <rgm@gnu.org>
4138
4139 * emacs-lisp/cl-extra.el (cl-mapc): Add autoload cookie. Doc fix.
4140
4141 * emacs-lisp/cl.el (letf): Doc fix. (Bug#12760)
4142
4143 2012-10-29 Chong Yidong <cyd@gnu.org>
4144
4145 * isearch.el (isearch-other-meta-char): Ensure that a reprocessed
4146 function key is stored in a keyboard macro (Bug#4894).
4147
4148 * thingatpt.el (number-at-point): Apply a thing-at-point property.
4149
4150 2012-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
4151
4152 * vc/diff-mode.el (diff-context->unified): Don't get confused by "hunk
4153 header comments".
4154 (diff-unified->context, diff-context->unified)
4155 (diff-reverse-direction, diff-fixup-modifs): Use `use-region-p'.
4156
4157 * emacs-lisp/cl.el (letf): Add missing indent rules (bug#12759).
4158
4159 * files.el (find-alternate-file): Only ask one question (bug#12487).
4160
4161 2012-10-29 Chong Yidong <cyd@gnu.org>
4162
4163 * vc/vc-hooks.el (vc-file-clearprops): Kill vc-parent-buffer.
4164 Suggested by Dan Nicolaescu (Bug#6326).
4165
4166 * info.el (Info-complete-menu-item): Avoid duplicates (Bug#12705).
4167
4168 * startup.el (fancy-about-screen): Don't message (Bug#12680).
4169
4170 * thingatpt.el (thing-at-point): Doc fix (Bug#12691).
4171
4172 * imenu.el (imenu): Inhibit push-mark message (Bug#12726).
4173
4174 * face-remap.el (face-remap-add-relative): Handle the case where a
4175 face-remapping-alist entry is a cons cell (Bug#12762).
4176
4177 2012-10-29 Kevin Ryde <user42@zip.com.au>
4178
4179 * woman.el (woman-parse-numeric-value): Handle picas correctly
4180 (Bug#12639).
4181
4182 2012-10-29 Glenn Morris <rgm@gnu.org>
4183
4184 * emacs-lisp/cl.el (defsetf): Doc fix.
4185
4186 2012-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
4187
4188 * progmodes/sh-script.el (sh-font-lock-paren): Also put punctuation
4189 syntax to the matching opener, if any (bug#12547).
4190 (sh-smie-sh-forward-token, sh-smie-sh-backward-token): Recognize this
4191 matching open as a "case-(".
4192 (sh-smie-rc-grammar): Add a corresponding rule for it.
4193
4194 2012-10-28 Daniel Hackney <dan@haxney.org>
4195
4196 * emacs-lisp/package.el (package-generate-autoloads): Kill buffer
4197 "PKGNAME-autoloads.el" in case we created it.
4198
4199 2012-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
4200
4201 * minibuffer.el (completion--sifn-requote): Rewrite to handle things
4202 like Tramp's "/foo:~bar//baz" -> "/scpc:foo:/baz" mapping (bug#11714).
4203 (completion--twq-all): Disable too-strict assertions.
4204
4205 * tmm.el (tmm-prompt): Use map-keymap (bug#12744).
4206
4207 2012-10-27 Eli Zaretskii <eliz@gnu.org>
4208
4209 * profiler.el (profiler-report-make-entry-part): Fix help-echo
4210 text to match the real keybindings.
4211
4212 2012-10-27 Juri Linkov <juri@jurta.org>
4213
4214 * wdired.el (wdired-keep-marker-rename): New defcustom.
4215 (wdired-do-renames): Use it instead of `dired-keep-marker-rename'.
4216 (Bug#11795)
4217
4218 * dired.el (dired-keep-marker-rename): Add reference to
4219 `wdired-keep-marker-rename' in the docstring.
4220 Add default character value ?R to display initially in
4221 Customization UI instead of ?@.
4222
4223 2012-10-27 Martin Rudalics <rudalics@gmx.at>
4224
4225 * window.el (display-buffer): In doc-string describe
4226 window-height and window-width alist entries.
4227
4228 * time.el (display-time-world): Restore fit-window-to-buffer
4229 behavior.
4230
4231 2012-10-27 Chong Yidong <cyd@gnu.org>
4232
4233 * subr.el (insert-buffer-substring-as-yank): Doc fix.
4234
4235 2012-10-26 Jambunathan K <kjambunathan@gmail.com>
4236
4237 * minibuffer.el (completion-category-overrides): New completion
4238 category `bookmark' (bug#11131).
4239
4240 2012-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
4241
4242 * emacs-lisp/advice.el (ad-assemble-advised-definition):
4243 Silence bogus compiler warnings for ad-do-it.
4244
4245 * bookmark.el (bookmark-completing-read): Set the completion category
4246 to `bookmark' (bug#11131).
4247
4248 2012-10-26 Bastien <bzg@altern.org>
4249 Stefan Monnier <monnier@iro.umontreal.ca>
4250
4251 * face-remap.el: Use lexical-binding.
4252 (text-scale-adjust): Improve docstring. Use itself for the temporary
4253 overlay-map bindings, so as to repeat the "Use..." message each time.
4254
4255 2012-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
4256
4257 * emacs-lisp/macroexp.el (macroexp--expand-all):
4258 Obey byte-compile-warning-enabled-p (bug#12486).
4259
4260 * vc/diff-mode.el (diff-end-of-hunk): Also skip potential "no LF at eol".
4261 (diff-refine-hunk): Similarly, handle the "no LF at eol" (bug#12584).
4262
4263 2012-10-26 Martin Rudalics <rudalics@gmx.at>
4264
4265 * mouse.el (mouse-drag-line): Move last form into preceding when
4266 clause (Bug#12731).
4267
4268 * help.el (resize-temp-buffer-window): Fix doc-string.
4269
4270 2012-10-25 David Engster <deng@randomsample.de>
4271
4272 * emacs-lisp/eieio.el (eieio-update-lisp-imenu-expression):
4273 Remove. This feature is already integrated in imenu.
4274
4275 * emacs-lisp/eieio-opt.el: Remove require for `button' since it is
4276 always loaded. Require `speedbar' unconditionally.
4277
4278 2012-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
4279
4280 * dired.el (dired-get-marked-files): Allow ! on . and .. (bug#12725).
4281
4282 * minibuffer.el (minibuffer-force-complete): Fix thinko.
4283
4284 * net/ldap.el (ldap-search-internal): The official ldif format starts
4285 with a "version: 1" header (bug#12724).
4286
4287 * emacs-lisp/package.el (package-installed-p): Warn if not ready
4288 (bug#12721).
4289
4290 2012-10-25 Glenn Morris <rgm@gnu.org>
4291
4292 * emacs-lisp/cl-macs.el (cl-progv): Doc fix.
4293
4294 2012-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
4295
4296 * minibuffer.el (minibuffer-force-complete): Use one more marker
4297 for the temporary-overlay-map command (bug#12619).
4298
4299 2012-10-24 Chong Yidong <cyd@gnu.org>
4300
4301 * time.el (display-time-world-mode): Derive from special-mode.
4302 (display-time-world): Use display-buffer (Bug#12708).
4303 (display-time-world-mode-map): Variable deleted.
4304 (display-time-world-display): Wrap the final delete-char inside
4305 inhibit-read-only.
4306
4307 2012-10-24 Chong Yidong <cyd@gnu.org>
4308
4309 * dired.el (dired-mark, dired-unmark, dired-flag-file-deletion):
4310 Doc fix.
4311
4312 * emacs-lisp/easymenu.el (easy-menu-define): Doc fix (Bug#12628).
4313
4314 2012-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
4315
4316 * minibuffer.el (completion--all-sorted-completions-location): New var.
4317 (completion--cache-all-sorted-completions)
4318 (completion--flush-all-sorted-completions): Use it.
4319 (completion-in-region, completion-in-region--postch)
4320 (completion-at-point, completion-help-at-point): Use markers in
4321 completion-in-region--data (bug#12619).
4322
4323 2012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
4324
4325 * progmodes/compile.el (compilation-start): Try to handle common
4326 quoting of `cd' argument (bug#12640).
4327
4328 * vc/diff-mode.el (diff-hunk): `save-excursion' while refining
4329 (bug#12671).
4330
4331 2012-10-23 Glenn Morris <rgm@gnu.org>
4332
4333 * progmodes/gud.el (gud-menu-map):
4334 Check gdb-active-process is bound. (Bug#12358)
4335
4336 2012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
4337
4338 * repeat.el (repeat): Set real-this-command (bug#12232).
4339
4340 * htmlfontify.el (hfy-post-html-hook):
4341 * filesets.el (filesets-cache-fill-content-hook):
4342 * arc-mode.el (archive-extract-hook):
4343 * progmodes/cc-mode.el (c-prepare-bug-report-hook):
4344 * net/rcirc.el (rcirc-sentinel-functions)
4345 (rcirc-receive-message-functions, rcirc-activity-functions)
4346 (rcirc-print-functions):
4347 * net/dbus.el (dbus-event-error-functions):
4348 * emacs-lisp/eieio.el (eieio-pre-method-execution-functions):
4349 * emacs-lisp/checkdoc.el (checkdoc-style-functions)
4350 (checkdoc-comment-style-functions): Don't use "-hooks" suffix.
4351 * term/sun.el (sun-raw-prefix-hooks):
4352 * mail/sendmail.el (mail-yank-hooks): Use make-obsolete-variable.
4353
4354 2012-10-23 Michael Albinus <michael.albinus@gmx.de>
4355
4356 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
4357 Set `tramp-chunksize' to 1. This improves the performance.
4358 (tramp-smb-wait-for-output): Add timeout to
4359 `tramp-accept-process-output' calls.
4360
4361 2012-10-23 Chong Yidong <cyd@gnu.org>
4362
4363 * faces.el (font-list-limit): Define as an obsolete variable.
4364
4365 * startup.el (command-line):
4366 * cus-start.el: Don't refer to font-list-limit.
4367
4368 * newcomment.el (comment-normalize-vars): Doc fix (Bug#12583).
4369
4370 2012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
4371
4372 * subr.el (internal-temp-output-buffer-show): Rename from
4373 temp-output-buffer-show, since previously compiled files expect this name.
4374
4375 2012-10-23 Glenn Morris <rgm@gnu.org>
4376
4377 * image.el (image-type-from-file-name): If multiple types match,
4378 return the first one that is supported. (Bug#9045)
4379
4380 2012-10-22 Glenn Morris <rgm@gnu.org>
4381
4382 * image.el (imagemagick-enabled-types): Doc fix.
4383
4384 2012-10-22 Takafumi Arakaki <aka.tkf@gmail.com> (tiny change)
4385
4386 * progmodes/which-func.el (which-func-current): The hash-table may have
4387 an explicit nil (bug#12338).
4388
4389 2012-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
4390
4391 * electric.el (electric-pair-delete-selection-self-insert-function):
4392 Rename to electric-pair-will-use-region, return a boolean.
4393 (electric-pair-mode): Adjust accordingly. Don't require delsel.
4394
4395 * delsel.el (delete-selection-helper): Use a function instead of a hook.
4396 (delete-selection-pre-hook): Use use-region-p.
4397 (delete-selection-self-insert-function): Remove.
4398 (self-insert-command): Obey self-insert-uses-region-functions.
4399 (self-insert-iso): Revert to previous setting, since we don't actually
4400 know what that command does.
4401 (delete-selection-self-insert-hooks): Remove.
4402
4403 2012-10-22 Simon Law <sfllaw@sfllaw.ca> (tiny change)
4404
4405 * delsel.el (delete-selection-helper): New function, extracted from
4406 delete-selection-pre-hook.
4407 (delete-selection-pre-hook): Use it.
4408 (delete-selection-self-insert-function): New function.
4409 (delete-selection-self-insert-hooks): New hook.
4410 (self-insert-command, self-insert-iso): Use it.
4411 * electric.el (electric-pair-syntax): New function, extracted from
4412 electric-pair-post-self-insert-function.
4413 (electric-pair-post-self-insert-function): Use it.
4414 (electric-pair-delete-selection-self-insert-function): New function.
4415 (electric-pair-mode): Require delsel and setup
4416 delete-selection-self-insert-hooks (bug#11520).
4417
4418 2012-10-20 Chong Yidong <cyd@gnu.org>
4419
4420 * vc/vc.el (vc-diff-internal): Set up Diff mode even if there are
4421 no changes to show (Bug#12586).
4422
4423 * eshell/esh-cmd.el (eshell-rewrite-for-command): Copy the body
4424 list explicitly (Bug#12571).
4425
4426 2012-10-20 Arne Jørgensen <arne@arnested.dk>
4427
4428 * progmodes/flymake.el (flymake-create-temp-inplace):
4429 Use file-truename.
4430
4431 2012-10-20 Eli Zaretskii <eliz@gnu.org>
4432
4433 * loadup.el: Update comment about uncompiled Lisp files. (Bug#12395)
4434
4435 2012-10-20 Jay Belanger <jay.p.belanger@gmail.com>
4436
4437 * calc/calc-units.el (math-extract-units): Properly extract powers
4438 of units.
4439
4440 2012-10-20 Daniel Colascione <dancol@dancol.org>
4441
4442 * frame.el (make-frame): Set x-display-name as we used to in order
4443 to unbreak creating an X11 frame from an Emacs daemon started
4444 without a display.
4445
4446 2012-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
4447
4448 * minibuffer.el (minibuffer-force-complete): Make the next completion use
4449 the same completion-field (bug#12221).
4450
4451 2012-10-19 Martin Rudalics <rudalics@gmx.at>
4452
4453 * emacs-lisp/debug.el (debug): Record height of debugger window
4454 also when debugger will be back (Bug#8789).
4455
4456 2012-10-18 Chong Yidong <cyd@gnu.org>
4457
4458 * progmodes/gdb-mi.el (gdb-display-buffer-other-frame-action):
4459 Convert to defcustom.
4460 (gdb-get-source-file): Don't bind pop-up-windows.
4461
4462 * progmodes/gud.el (gud-display-line): Don't specially re-use
4463 other frames for the gdb-mi case (Bug#12648).
4464
4465 2012-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
4466
4467 * emacs-lisp/advice.el: Clean up commentary a bit.
4468 (ad-do-advised-functions, ad-with-originals): Use `declare'.
4469 (byte-code-function-p): Never redefine.
4470
4471 * emacs-lisp/gv.el (cond): Same fix as before for `if'.
4472
4473 2012-10-18 Glenn Morris <rgm@gnu.org>
4474
4475 * dired.el (dired-sort-toggle): Some ls implementations only allow
4476 a single option string. (Bug#12666)
4477
4478 * minibuffer.el (completion-cycle-threshold): Doc fix.
4479
4480 2012-10-17 Kenichi Handa <handa@gnu.org>
4481
4482 * international/mule.el (set-keyboard-coding-system):
4483 Recover input meta mode when the new coding system doesn not use 8-bit.
4484 Supply TERMINAL arg to set-input-meta-mode.
4485
4486 2012-10-17 Michael Heerdegen <michael_heerdegen@web.de>
4487
4488 * wdired.el (wdired-old-marks): New variable.
4489 (wdired-change-to-wdired-mode): Locally set wdired-old-marks.
4490 (wdired-do-renames): Move point with renamed file and don't lose
4491 mark status (Bug#11795).
4492
4493 2012-10-16 Juri Linkov <juri@jurta.org>
4494
4495 * replace.el (query-replace-help): Mention multi-buffer replacement
4496 keys in the Help message. (Bug#12655)
4497
4498 2012-10-15 Chong Yidong <cyd@gnu.org>
4499
4500 * emacs-lisp/byte-run.el (defsubst): Doc fix.
4501
4502 2012-10-14 Eli Zaretskii <eliz@gnu.org>
4503
4504 * window.el (display-buffer): Doc fix.
4505
4506 * progmodes/compile.el (compilation-error-regexp-alist-alist):
4507 Adjust the msft regexp to the output of Studio 2010, and move msft
4508 before edg-1. See the discussion on emacs-devel,
4509 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00579.html,
4510 for the details.
4511
4512 2012-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
4513
4514 * emacs-lisp/eieio.el (eieio-oset-default, eieio-oset, oset-default)
4515 (oset): Move uses of object-class-fast macro after its definition.
4516
4517 * emacs-lisp/gv.el (if): Don't use closures in non-lexical-binding code.
4518
4519 2012-10-13 Chong Yidong <cyd@gnu.org>
4520
4521 * textmodes/ispell.el (ispell-pdict-save): If flyspell-mode is
4522 enabled, re-enable it (Bug#11963).
4523
4524 2012-10-13 Martin Rudalics <rudalics@gmx.at>
4525
4526 * emacs-lisp/debug.el (debug): When debugger-will-be-back is
4527 non-nil, restore window configuration (Bug#12623).
4528
4529 2012-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
4530
4531 * help-fns.el (describe-variable, describe-function-1):
4532 * help-mode.el (help-make-xrefs): Remove error handler, made unneeded.
4533
4534 * emacs-lisp/eieio.el (lisp-imenu-generic-expression): Fix typo.
4535
4536 2012-10-12 Glenn Morris <rgm@gnu.org>
4537
4538 * mail/rmailsum.el (rmail-header-summary):
4539 Fix 2010-11-26 test for multiline Subject: field. (Bug#12625)
4540
4541 2012-10-12 Fabián Ezequiel Gallina <fgallina@cuca>
4542
4543 * progmodes/python.el (python-mode-map):
4544 Replace subtitute-key-definition with proper command remapping.
4545 (python-nav--up-list): Fix behavior for blocks on the same level.
4546
4547 2012-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
4548
4549 * help-fns.el (describe-function-1): Handle autoloads w/o docstrings.
4550
4551 * emacs-lisp/bytecomp.el (byte-compile-eval): Adjust to long-ago
4552 changes to the format of load-history.
4553
4554 * international/mule-cmds.el (read-char-by-name): Move let-binding of
4555 completion-ignore-case in case that var is buffer-local (bug#12615).
4556
4557 2012-10-11 Kenichi Handa <handa@gnu.org>
4558
4559 * international/eucjp-ms.el: Re-generated.
4560
4561 2012-10-10 Kenichi Handa <handa@gnu.org>
4562
4563 * select.el (xselect--encode-string): If a coding is specified for
4564 selection, and that is compatible with COMPOUND_TEXT, use it.
4565
4566 2012-10-10 Martin Rudalics <rudalics@gmx.at>
4567
4568 * window.el (switch-to-buffer-preserve-window-point): New option.
4569 (switch-to-buffer):
4570 Obey `switch-to-buffer-preserve-window-point' (Bug#4041).
4571
4572 2012-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
4573
4574 * newcomment.el (comment-start-skip, comment-end-skip, comment-end):
4575 Don't document nil as a useful value (bug#12583).
4576
4577 2012-10-09 Michael Albinus <michael.albinus@gmx.de>
4578
4579 * net/tramp.el (tramp-debug-message):
4580 Remove "tramp-with-progress-reporter" from regexp of ignored functions.
4581 (with-tramp-progress-reporter): Rename from
4582 `tramp-with-progress-reporter'.
4583 (with-tramp-file-property, with-tramp-connection-property):
4584 Move from tramp-cache.el, rename from `with-file-property' and
4585 `with-connection-property', respectively.
4586
4587 * net/tramp-cache.el: Remove `with-file-property' and
4588 `with-connection-property'.
4589
4590 * net/tramp.el:
4591 * net/tramp-gvfs.el:
4592 * net/tramp-sh.el:
4593 * net/tramp-smb.el: Adapt callees.
4594
4595 * net/trampver.el: Update release number.
4596
4597 2012-10-09 Glenn Morris <rgm@gnu.org>
4598
4599 * w32-fns.el (set-message-beep):
4600 * term/w32-win.el (set-message-beep): Update declarations.
4601
4602 2012-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
4603
4604 * bindings.el (mode-line-toggle-read-only, mode-line-toggle-modified)
4605 (mode-line-widen, mode-line-input-method-map)
4606 (mode-line-coding-system-map, mode-line-remote)
4607 (mode-line-unbury-buffer, mode-line-bury-buffer)
4608 (mode-line-next-buffer, mode-line-previous-buffer):
4609 Replace save-selected-window+select-window => with-selected-window.
4610
4611 * progmodes/cc-bytecomp.el (cc-bytecomp-defmacro): Remove, unused.
4612 * progmodes/cc-vars.el (bq-process): Remove, unused.
4613
4614 * emacs-lisp/cl-macs.el (cl-defstruct): Obey the :read-only property.
4615
4616 2012-10-09 Fabián Ezequiel Gallina <fgallina@cuca>
4617
4618 Implemented `backward-up-list'-like navigation.
4619 * progmodes/python.el (python-nav-up-list)
4620 (python-nav-backward-up-list): New functions.
4621 (python-mode-map): Define substitute key for backward-up-list to
4622 python-nav-backward-up-list.
4623
4624 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
4625
4626 * progmodes/python.el (python-fill-paragraph): Rename from
4627 python-fill-paragraph-function. Fixed fill-paragraph for
4628 decorators (Bug#12605).
4629
4630 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
4631
4632 * progmodes/python.el (python-shell-output-filter): Handle extra
4633 carriage return in OSX (Bug#12409).
4634
4635 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
4636
4637 Fix shell handling of unbalanced quotes and parens in output.
4638 * progmodes/python.el (python-rx-constituents): Add string-delimiter.
4639 (python-syntax-propertize-function): Use it.
4640 (python-shell-output-syntax-table): New var.
4641 (inferior-python-mode): Prevent unbalanced parens/quotes from
4642 previous output mess with current input context.
4643
4644 2012-10-08 Juanma Barranquero <lekktu@gmail.com>
4645
4646 * generic-x.el (javascript-generic-mode, javascript-generic-mode-hook):
4647 Make obsolete aliases of js-mode and js-mode-hook (from js.el).
4648
4649 2012-10-08 Michael Albinus <michael.albinus@gmx.de>
4650
4651 * ffap.el (ffap-replace-file-component): Support Tramp file name
4652 syntax, not only ange-ftp's one.
4653
4654 2012-10-08 Glenn Morris <rgm@gnu.org>
4655
4656 * cus-start.el (message-log-max): Set :version.
4657
4658 * calendar/calendar.el (calendar-intermonth-header): Doc fix.
4659
4660 2012-10-08 Martin Rudalics <rudalics@gmx.at>
4661
4662 * emacs-lisp/edebug.el (edebug-pop-to-buffer): Don't try to split
4663 the minibuffer window (Bug#10851).
4664
4665 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
4666
4667 Enhancements on forward-sexp movement.
4668 * progmodes/python.el (python-nav-beginning-of-statement)
4669 (python-nav-end-of-statement): Return point-marker.
4670 (python-nav-forward-sexp): lisp-like forward-sexp behavior.
4671 (python-info-current-symbol)
4672 (python-info-statement-starts-block-p): Rename from
4673 python-info-beginning-of-block-p.
4674 (python-info-statement-ends-block-p): Rename from
4675 python-info-end-of-block-p.
4676 (python-info-beginning-of-statement-p)
4677 (python-info-end-of-statement-p)
4678 (python-info-beginning-of-block-p, python-info-end-of-block-p):
4679 New functions.
4680
4681 2012-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
4682
4683 * comint.el (comint-preinput-scroll-to-bottom): Preserve the
4684 frame-selected-windows.
4685
4686 2012-10-08 Daniel Colascione <dancol@dancol.org>
4687
4688 * battery.el (battery-status-function): Check for
4689 w32-battery-status itself, not system-time windows-nt.
4690
4691 * frame.el: Require cl-lib.
4692 (display-format-alist): New variable mapping frame types to
4693 functions that initialize them.
4694 (window-system-for-display): New function: interprets
4695 display-format-alist.
4696 (make-frame-on-display): Remove existing display-selection logic
4697 and just forward to make-frame, which will now DTRT.
4698 (make-frame): Restructure to use window-system-for-display to
4699 figure out how to create a frame on a given display.
4700 (display-mouse-p): Look for frame-type w32, not a particular
4701 system-type.
4702
4703 * loadup.el: Load w32 lisp code when we have the w32 feature.
4704
4705 * mouse.el (mouse-yank-primarY): Look for frame-type w32, not
4706 system-type windows-nt.
4707
4708 * server.el (server-create-window-system-frame): Look for window
4709 type.
4710 (server-proces-filter): Only force a window system when windows-nt
4711 _and_ w32. Explain why.
4712
4713 * simple.el (normal-erase-is-backspace-mode): Add w32 to the list
4714 of window systems we configure for the mode.
4715
4716 * startup.el (command-line): Mark window system is initialized
4717 after we've done it.
4718
4719 * common-win.el (x-select-text): Look for w32, not windows-nt.
4720
4721 * ns-win.el: Require cl-lib. Add ourselves to
4722 display-format-alist.
4723 (ns-initialize-window-system): Assert we're not initialized twice.
4724
4725 * w32-win.el: Enable lexical binding; require cl-lib; add
4726 ourselves to display-format-alist.
4727 (w32-handle-dropped-file): Convert incoming dropped files from
4728 Windows paths to Cygwin ones before passing them on to the rest of
4729 Emacs.
4730 (w32-drag-n-drop): New paramter new-frame. Simplify logic.
4731 (w32-initialize-window-system): Assert we're not initialized twice.
4732
4733 * x-win.el: Require cl-lib; add ourselves to display-format-alist.
4734 (x-initialize-window-system): Assert we're not initialized twice.
4735
4736 * w32-common-fns.el: New File.
4737 (w32-version, w32-using-nt, w32-get-clipboard-data)
4738 (w32-set-clipboard-data, x-set-selection, x-get-selection)
4739 (w32-charset-info-alist, x-last-selected, text)
4740 (x-get-selection-value, x-selection-value): Move here.
4741
4742 * w32-fns.el: Require w32-common-fns.
4743 (w32-version, w32-using-nt, w32-get-clipboard-data)
4744 (w32-set-clipboard-data, x-set-selection, x-get-selection)
4745 (w32-charset-info-alist, x-last-selected, text)
4746 (x-get-selection-value, x-selection-value): Move to
4747 w32-common-fns.
4748
4749 * w32-vars.el:
4750 (w32-allow-system-shell, w32-system-shells): Define only in
4751 non-cygwin case.
4752
4753 2012-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
4754
4755 * subr.el (read-passwd-map): Don't use `defconst' (bug#12597).
4756 (read-passwd): Remove a few more potential sources of leaks.
4757
4758 2012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
4759
4760 * progmodes/python.el (inferior-python-mode)
4761 (python-shell-make-comint): Fix initialization of local
4762 variables copied from parent buffer.
4763
4764 2012-10-07 Jan Djärv <jan.h.d@swipnet.se>
4765
4766 * term/ns-win.el (ns-read-file-name): Update declaration to match
4767 nsfns.m.
4768 (ns-respond-to-change-font): Change fontsize separatly so we are sure
4769 it is set when font is acted upon.
4770
4771 2012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
4772
4773 Enhancements to indentation.
4774 * progmodes/python.el (python-indent-context): Give priority to
4775 inside-string context. Make comments indentation markers.
4776 (python-indent-region): Do not mess with strings, unless it's the
4777 enclosing set of quotes.
4778
4779 2012-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
4780
4781 * window.el (internal--before-save-selected-window)
4782 (internal--after-save-selected-window): New functions extracted from
4783 save-selected-window. Make sure we return the `alist' we construct.
4784 (save-selected-window): Use them.
4785
4786 * textmodes/tex-mode.el (tex-recenter-output-buffer):
4787 Use with-selected-window.
4788
4789 * emacs-lisp/autoload.el (make-autoload): Add `cl-defmacro' to the
4790 forms that define macros (bug#12593).
4791
4792 2012-10-07 Kenichi Handa <handa@gnu.org>
4793
4794 * international/mule-conf.el (compound-text-with-extensions):
4795 Add :mime-charset property as x-ctext.
4796
4797 2012-10-07 Stefan Merten <smerten@oekonux.de>
4798
4799 * textmodes/rst.el (rst-new-adornment-down, rst-indent-field)
4800 (rst-indent-literal-normal, rst-indent-literal-minimized)
4801 (rst-indent-comment): Correct :version tag.
4802 (rst-official-cvs-rev): Correct version string.
4803
4804 2012-10-07 Glenn Morris <rgm@gnu.org>
4805
4806 * mail/rmailmm.el (rmail-mime-process-multipart):
4807 Do not confuse a multipart message with an epilogue
4808 with a "truncated" one; fixes 2011-06-27 change. (Bug#10101)
4809
4810 2012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
4811
4812 Fix shell output retrieval and comint-prompt-regexp init.
4813 * progmodes/python.el (inferior-python-mode):
4814 (python-shell-make-comint): Fix initialization of
4815 comint-prompt-regexp from copied file local variables.
4816 (python-shell-fetched-lines): Remove var.
4817 (python-shell-output-filter-in-progress): Rename from
4818 python-shell-fetch-lines-in-progress.
4819 (python-shell-output-filter-buffer): Rename from
4820 python-shell-fetch-lines-string.
4821 (python-shell-fetch-lines-filter): Delete function.
4822 (python-shell-output-filter): New function.
4823 (python-shell-send-string-no-output): Use them.
4824
4825 2012-10-07 Glenn Morris <rgm@gnu.org>
4826
4827 * hi-lock.el (hi-lock-process-phrase):
4828 Try to make it less fragile. (Bug#7161)
4829
4830 * hi-lock.el (hi-lock-face-phrase-buffer): Doc fix.
4831
4832 2012-10-06 Glenn Morris <rgm@gnu.org>
4833
4834 * ehelp.el (electric-help-mode): Use help-mode rather than
4835 non-existent mode `help'.
4836 (electric-help-map): Use button-buffer-map. (Bug#10917)
4837
4838 * textmodes/reftex-vars.el (reftex-create-bibtex-header)
4839 (reftex-create-bibtex-footer): Fix custom types.
4840
4841 * progmodes/sh-script.el (sh-indent-after-continuation):
4842 Add explicit :group.
4843
4844 * textmodes/rst.el (rst-preferred-decorations)
4845 (rst-shift-basic-offset): Clarify obsolescence versions.
4846
4847 * profiler.el (profiler): Add missing group :version tag.
4848 * avoid.el (mouse-avoidance-banish-position):
4849 * proced.el (proced-renice-command):
4850 * calc/calc.el (calc-ensure-consistent-units):
4851 * calendar/icalendar.el (icalendar-import-format-uid):
4852 * net/tramp.el (tramp-save-ad-hoc-proxies):
4853 * progmodes/bug-reference.el (bug-reference-bug-regexp):
4854 * progmodes/flymake.el (flymake-error-bitmap)
4855 (flymake-warning-bitmap, flymake-fringe-indicator-position):
4856 * progmodes/sh-script.el (sh-indent-after-continuation):
4857 * progmodes/verilog-mode.el (verilog-auto-template-warn-unused)
4858 (verilog-before-save-font-hook, verilog-after-save-font-hook):
4859 * progmodes/vhdl-mode.el (vhdl-makefile-default-targets)
4860 (vhdl-array-index-record-field-in-sensitivity-list)
4861 (vhdl-indent-comment-like-next-code-line):
4862 * textmodes/reftex-vars.el (reftex-ref-style-alist)
4863 (reftex-ref-macro-prompt, reftex-ref-style-default-list)
4864 (reftex-cite-key-separator, reftex-create-bibtex-header)
4865 (reftex-create-bibtex-footer):
4866 * textmodes/rst.el (rst-new-adornment-down, rst-indent-field)
4867 (rst-indent-literal-normal, rst-indent-literal-minimized)
4868 (rst-indent-comment): Add missing custom :version tags.
4869
4870 * calendar/timeclock.el (timeclock-modeline-display):
4871 Add missing obsolete alias for renamed user option.
4872
4873 * strokes.el (strokes-modeline-string):
4874 * emulation/crisp.el (crisp-mode-modeline-string):
4875 * eshell/esh-mode.el (eshell-status-in-modeline):
4876 Aliases to defcustoms must come before the defcustom.
4877
4878 * calendar/cal-tex.el (cal-tex-diary, cal-tex-cursor-week)
4879 (cal-tex-cursor-week2, cal-tex-cursor-week-iso)
4880 (cal-tex-cursor-week-monday): Doc fixes.
4881 (cal-tex-cursor-week2-summary): Doc fix.
4882 Rename from cal-tex-cursor-week-at-a-glance.
4883
4884 * calendar/cal-menu.el (cal-menu-context-mouse-menu):
4885 Tweak week descriptions. Add cal-tex-cursor-week2-summary.
4886
4887 * calendar/calendar.el (calendar-mode-map):
4888 Add cal-tex-cursor-week2-summary.
4889
4890 2012-10-06 Stefan Monnier <monnier@iro.umontreal.ca>
4891
4892 * emacs-lisp/cl-macs.el (cl-defstruct): Improve docstring.
4893
4894 * subr.el (read-passwd-map): New var.
4895 (read-passwd): Use `read-string' again.
4896 * minibuffer.el (delete-minibuffer-contents): Make it interactive.
4897
4898 2012-10-06 Jambunathan K <kjambunathan@gmail.com>
4899
4900 * register.el (append-to-register, prepend-to-register):
4901 Deactivate mark, as does `copy-to-register' (bug#12389).
4902
4903 2012-10-06 Chong Yidong <cyd@gnu.org>
4904
4905 * files.el (auto-mode-alist): Add .by and .wy (Semantic grammars).
4906
4907 2012-10-06 Ikumi Keita <ikumi@ikumi.que.jp> (tiny change)
4908
4909 * international/characters.el: Fix simple mistake ((car chars) ->
4910 elt), delete duplicated code.
4911
4912 2012-10-06 Glenn Morris <rgm@gnu.org>
4913
4914 * subr.el (read-passwd): Allow C-u to erase entry. (Bug#12570)
4915
4916 2012-10-06 Julian Scheid <julians37@gmail.com> (tiny change)
4917
4918 * color.el (color-hsl-to-rgb): Fix incorrect results for
4919 small and large hue values. (Bug#12559)
4920
4921 2012-10-05 Fabián Ezequiel Gallina <fgallina@cuca>
4922
4923 Enhancements to docstring formatting when filling paragraphs.
4924 * progmodes/python.el (python-fill-docstring-style): Rename from
4925 python-fill-string-style. Added new style.
4926 (python-fill-string): Use new style. Better checks for
4927 docstrings.
4928
4929 2012-10-05 Glenn Morris <rgm@gnu.org>
4930
4931 * net/newst-treeview.el (newsticker-group-move-feed): Doc fix.
4932
4933 * color.el (color-name-to-rgb, color-rgb-to-hex)
4934 (color-hue-to-rgb, color-hsl-to-rgb, color-rgb-to-hsv)
4935 (color-rgb-to-hsl, color-srgb-to-xyz, color-saturate-hsl)
4936 (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
4937 (color-lighten-name, color-darken-hsl, color-darken-name): Doc fixes.
4938
4939 * emacs-lisp/timer.el (with-timeout): Add missing progn. (Bug#12577)
4940
4941 2012-10-05 Juanma Barranquero <lekktu@gmail.com>
4942
4943 * ido.el (ido-directory-too-big-p): Pass dir through file-truename
4944 to get the correct size across symlinks.
4945
4946 * ido.el (ido-buffer-disable-smart-matches): Fix typo in docstring.
4947
4948 2012-10-04 Juri Linkov <juri@jurta.org>
4949
4950 * replace.el (query-replace-interactive): Declare obsolete.
4951 (query-replace-read-from): Add the last incremental search string
4952 to the list of default values accessible via M-n.
4953 (map-query-replace-regexp): Use `read-regexp'.
4954 (query-replace, query-replace-regexp, query-replace-regexp-eval)
4955 (map-query-replace-regexp, replace-string, replace-regexp):
4956 Fix docstrings to replace mentions of `query-replace-interactive'
4957 with alternatives. (Bug#12526)
4958
4959 2012-10-04 Juri Linkov <juri@jurta.org>
4960
4961 * dired.el (dired-shrink-to-fit): Declare obsolete. (Bug#1806)
4962 (dired-pop-to-buffer): Declare obsolete.
4963 (dired-mark-pop-up): Doc fix.
4964
4965 2012-10-04 Fabián Ezequiel Gallina <fgallina@cuca>
4966
4967 Allow user to set docstring style for fill-paragraph.
4968 * progmodes/python.el
4969 (python-fill-comment-function, python-fill-string-function)
4970 (python-fill-decorator-function, python-fill-paren-function):
4971 Remove :safe for defcustoms.
4972 (python-fill-string-style): New defcustom
4973 (python-fill-paragraph-function): Enhance context detection.
4974 (python-fill-string): Honor python-fill-string-style settings.
4975
4976 2012-10-04 Martin Rudalics <rudalics@gmx.at>
4977
4978 * emacs-lisp/edebug.el (edebug-pop-to-buffer): Select window
4979 after setting its buffer (Bug#10805).
4980
4981 2012-10-03 Fabián Ezequiel Gallina <fgallina@cuca>
4982
4983 Fix cornercase for string syntax.
4984 * progmodes/python.el (python-syntax-propertize-function):
4985 Simplify and enhance the regexp for unescaped quotes. Now it also
4986 matches quotes in weird situations like the single quote in
4987 "something\"'".
4988 (python-syntax-stringify): Simplify num-quotes detecting code.
4989
4990 2012-10-03 Glenn Morris <rgm@gnu.org>
4991
4992 * help-macro.el (three-step-help):
4993 Revert 2012-09-29 change. (Bug#12567)
4994
4995 2012-10-03 Martin Rudalics <rudalics@gmx.at>
4996
4997 * menu-bar.el (kill-this-buffer): Don't do anything when
4998 `menu-frame' is not alive or visible (Bug#8184).
4999
5000 * emacs-lisp/debug.el (debug): When quitting the debugger window
5001 restore current buffer (Bug#12502).
5002
5003 2012-10-02 Chong Yidong <cyd@gnu.org>
5004
5005 * progmodes/hideif.el (hif-lookup, hif-defined):
5006 Handle semantic-c-takeover-hideif.
5007
5008 2012-10-02 Paul Eggert <eggert@cs.ucla.edu>
5009
5010 Change sampling interval units from ms to ns.
5011 * profiler.el (profiler-sampling-interval): Change units
5012 from ms to ns, multiplying the default by 1000000 so that
5013 it remains 1 ms.
5014 (profiler-report-cpu-line-format): Give enough room for
5015 the maximum counters on 64-bit hosts.
5016 (profiler-report-render-calltree-1): Call them "CPU samples",
5017 not "Time (ms)", since they are not milliseconds now (and
5018 never really were).
5019
5020 2012-10-02 Sergio Durigan Junior <sergiodj@riseup.net> (tiny change)
5021
5022 * net/eudcb-bbdb.el (eudc-bbdb-format-record-as-result):
5023 Fix querying BBDB for entries without a last name (Bug#11580).
5024
5025 2012-10-02 Chong Yidong <cyd@gnu.org>
5026
5027 * emacs-lisp/eieio.el: Restore Version header.
5028
5029 2012-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
5030
5031 * vc/diff-mode.el (diff--auto-refine-data): New var.
5032 (diff-hunk): Use it to delay refinement.
5033 (diff-mode): Remove overlays when we turn off font-lock.
5034
5035 * textmodes/table.el: Use lexical-binding, dolist, define-minor-mode.
5036 (table-initialize-table-fixed-width-mode)
5037 (table-set-table-fixed-width-mode): Remove functions.
5038 (table-command-list): Move initialization into declaration.
5039 (table--tweak-menu-for-xemacs): Move defun outside mapcar.
5040 (table-with-cache-buffer): Use `declare'.
5041 (table-span-cell): Simplify via CSE.
5042 (table-fixed-width-mode): Use define-minor-mode.
5043 (table-call-interactively, table-funcall, table-apply): Remove.
5044 (table-function): New function, to replace them.
5045
5046 * bookmark.el (bookmark-search-pattern): Remove var.
5047 (bookmark-read-search-input): Remove function.
5048 (bookmark-bmenu-search): Reimplement using a minibuffer.
5049
5050 * faces.el (modeline): Remove obsolete face name.
5051
5052 * vc/add-log.el (add-log-buffer-file-name-function): Demote to defvar
5053 and give a non-nil default value.
5054 (add-change-log-entry): Simplify accordingly.
5055
5056 2012-10-01 Dmitry Gutov <dgutov@yandex.ru>
5057
5058 * vc/vc-git.el (vc-git-log-edit-toggle-signoff): New function.
5059 (vc-git-log-edit-toggle-amend): New function.
5060 (vc-git-log-edit-toggle-signoff): New function.
5061 (vc-git-log-edit-mode): New major mode.
5062 (vc-git-log-edit-mode-map): Keymap for it.
5063 (vc-git-checkin): Handle "Amend" and "Sign-Off" headers.
5064
5065 * vc/log-edit.el (log-edit-font-lock-keywords): Allow hyphens in
5066 header names.
5067 (log-edit-toggle-header): New function.
5068 (log-edit-extract-headers): Accept function values in HEADERS alist.
5069
5070 2012-10-01 David Engster <deng@randomsample.de>
5071
5072 * emacs-lisp/eieio-opt.el (eieio-describe-class): Add filename
5073 from symbol property and change message to be more consistent with
5074 Emacs proper.
5075 (eieio-describe-generic): Add filename for each implementation.
5076 Fix indices for generic and normal methods.
5077 (eieio-method-def, eieio-class-def): New buttons.
5078 (eieio-help-find-method-definition)
5079 (eieio-help-find-class-definition): New functions.
5080 (eieio-help-mode-augmentation-maybee): Add buttons to filenames of
5081 class, constructor and method definitions.
5082
5083 * emacs-lisp/eieio.el (eieiomt-add, eieio-defclass): Save file
5084 information in symbol property.
5085 (scoped-class): Remove.
5086 (eieio-slot-name-index, call-next-method): Check if it is bound.
5087
5088 2012-10-01 Leo P. White <lpw25@cam.ac.uk>
5089
5090 * emacs-lisp/eieio-custom.el (eieio-custom-mode-map): New option.
5091 (eieio-custom-mode): New major mode.
5092 (eieio-customize-object): Use it.
5093
5094 2012-10-01 Eric Ludlam <zappo@gnu.org>
5095
5096 * emacs-lisp/eieio-base.el (eieio-persistent-read): New input args
5097 specifying the expected class, and whether subclassing is allowed.
5098 (eieio-persistent-convert-list-to-object):
5099 (eieio-persistent-validate/fix-slot-value)
5100 (eieio-persistent-slot-type-is-class-p): New functions.
5101 (eieio-named::slot-missing): Doc fix.
5102
5103 * emacs-lisp/eieio-datadebug.el (data-debug/eieio-insert-slots):
5104 Stop using unused publd variable.
5105
5106 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click):
5107 (eieio-speedbar-description, eieio-speedbar-derive-line-path)
5108 (eieio-speedbar-object-buttonname, eieio-speedbar-make-tag-line)
5109 (eieio-speedbar-handle-click): Do not specify a class for the
5110 method. Fixes method invocation order problems with EDE.
5111
5112 2012-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
5113
5114 * emacs-lisp/bytecomp.el (byte-compiler-abbreviate-file): New function.
5115 (byte-compile-warning-prefix, byte-compile-file): Use it (bug#12508).
5116
5117 2012-10-01 Karl Fogel <kfogel@red-bean.com>
5118
5119 * bookmark.el (bookmark-version-control): Give tags in the
5120 :type choices (Bug#12309), and improve doc string.
5121 (bookmark-write-file): Bind `print-circle' to `t' to allow
5122 circular custom bookmark types. (Bug#12503)
5123
5124 2012-10-01 Paul Eggert <eggert@cs.ucla.edu>
5125
5126 Revert the FOLLOW-SYMLINKS change for file-attributes.
5127 * files.el (remote-file-name-inhibit-cache, after-find-file):
5128 * time.el (display-time-file-nonempty-p): Undo last change.
5129
5130 * profiler.el (profiler-sampling-interval): Change default back to 1.
5131 See Stefan Monnier in
5132 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00863.html>.
5133
5134 2012-10-01 Fabián Ezequiel Gallina <fgallina@cuca>
5135
5136 Shell output catching a la gud-gdb.
5137 * progmodes/python.el (python-shell-fetch-lines-in-progress)
5138 (python-shell-fetch-lines-string, python-shell-fetched-lines):
5139 New Vars.
5140 (python-shell-fetch-lines-filter): New function.
5141 (python-shell-send-string-no-output): Use them.
5142
5143 2012-09-30 Tomohiro Matsuyama <tomo@cx4a.org>
5144
5145 * profiler.el (profiler-sampling-interval): Rename from
5146 profiler-sample-interval.
5147 (profiler-sampling-interval): Default to 10.
5148 (profiler-find-profile): New command (was profiler-find-log).
5149 (profiler-find-profile-other-window): New command.
5150 (profiler-find-profile-other-frame): New command.
5151 (profiler-profile): Introduce API-level data structure.
5152
5153 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
5154
5155 file-attributes has a new optional arg FOLLOW-SYMLINKS.
5156 * files.el (remote-file-name-inhibit-cache):
5157 * time.el (display-time-file-nonempty-p): Use it.
5158 * files.el (after-find-file): Don't chase links before calling
5159 file-exists-p, as file-exists-p already does the right thing.
5160
5161 2012-09-30 Ralf Angeli <angeli@caeruleus.net>
5162
5163 Merge from standalone RefTeX repository.
5164
5165 The following ChangeLog entries are shortened versions of the
5166 original ones with file paths adapted. A not so strongly edited
5167 version of the original ChangeLog can be found in the commit log.
5168
5169 * textmodes/reftex-auc.el: Move `provide' call to bottom of file.
5170 (reftex-arg-cite): Use `reftex-cite-key-separator'.
5171 Correctly handle new value type returned by `reftex-citation'.
5172
5173 * textmodes/reftex-cite.el (reftex-create-bibtex-file): Make sure
5174 that entries with whitespace at various places are found.
5175 Doc fix. Include entries that are cross-referenced from cited entries.
5176 Include @String definitions in the resulting bib file. Add header
5177 and footer defined in `reftex-create-bibtex-header' and
5178 `reftex-create-bibtex-footer'.
5179 (reftex-do-citation): Make it possible again to insert
5180 non-existent entries. Save match data when asking for optional
5181 arguments. Return all keys, not just the first one.
5182 (reftex-all-used-citation-keys): Fix regexp to correctly extract
5183 all citations in the same line.
5184 (reftex-parse-bibtex-entry): Accept additional optional argument
5185 `raw' and keep quotes or braces if it is non-nil. Match fields
5186 containing hyphens besides word constituents.
5187 (reftex-get-string-refs): New function.
5188 (reftex-extract-bib-entries): Check if BibTeX file changed on disk
5189 and ask if it should be reread in case it did.
5190 (reftex-pop-to-bibtex-entry)
5191 (reftex-extract-bib-entries-from-thebibliography): Match \bibitem
5192 entries with spaces or tabs in front of arguments.
5193 (reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
5194 (reftex-parse-bibtex-entry, reftex-create-bibtex-file):
5195 Match entries containing numbers and symbol constituents.
5196 (reftex-do-citation, reftex-figure-out-cite-format):
5197 Use `reftex-cite-key-separator'.
5198
5199 * textmodes/reftex-dcr.el: Move provide statement to end of file.
5200 (reftex-mouse-view-crossref): Explain why point is set.
5201
5202 * textmodes/reftex-global.el: Whitespace changes.
5203
5204 * textmodes/reftex-index.el: Move provide statement to end of
5205 file.
5206 (reftex-index-selection-or-word): Use `reftex-region-active-p'.
5207 (reftex-index-visit-phrases-buffer): Set marker when visiting
5208 buffer. This allows for returning from the phrases file to the
5209 file one was just editing instead of the file where the last
5210 phrases was added from.
5211 (reftex-index-phrases-syntax-table): New variable. Give ?\"
5212 punctuation syntax as it usually is not used as string quote in
5213 TeX-related modes and may occur unmatched. The change also
5214 prevents fontification of quoted content.
5215 (reftex-index-phrases-mode): Use it.
5216
5217 * textmodes/reftex-parse.el (reftex-parse-from-file):
5218 Move backward one char if a `\' was matched after a section macro.
5219 (reftex-parse-from-file): Use beginning of match instead of end as
5220 bound.
5221
5222 * textmodes/reftex-ref.el: Adapt creation of
5223 `reftex-<package>-<macro>' functions to new structure of
5224 `reftex-ref-style-alist'.
5225 (reftex-reference): Use `reftex-ref-style-list' function.
5226 Adapt to new structure of `reftex-ref-style-alist'. Prompt for a
5227 reference macro if `reftex-ref-macro-prompt' is non-nil.
5228 (reftex-reference): Pass refstyle to `reftex-format-special'.
5229 Determine reference macro by looking at
5230 `reftex-ref-style-default-list' and `reftex-ref-style-alist'.
5231 Use only one special format function.
5232 (reftex-varioref-vref, reftex-fancyref-fref)
5233 (reftex-fancyref-Fref): Remove definitions. The functions are now
5234 generated from `reftex-ref-style-alist'.
5235 (reftex-format-vref, reftex-format-Fref, reftex-format-fref):
5236 Remove.
5237 (reftex-format-special): New function.
5238
5239 * textmodes/reftex-sel.el
5240 (reftex-select-cycle-ref-style-internal): Adapt to new structure
5241 of `reftex-ref-style-alist'. Remove code for testing macro type.
5242 (reftex-select-toggle-varioref)
5243 (reftex-select-toggle-fancyref): Remove.
5244 (reftex-select-cycle-ref-style-internal)
5245 (reftex-select-cycle-ref-style-forward)
5246 (reftex-select-cycle-ref-style-backward): New functions.
5247 (reftex-select-label-map): Use `v' and `V' for general cycling
5248 through reference styles. Add `p' for switching between number
5249 and page reference types.
5250
5251 * textmodes/reftex-toc.el (reftex-re-enlarge):
5252 Call `enlarge-window' only if there is something to do because in Emacs
5253 the horizontal version throws an error even if the parameter is 0.
5254
5255 * textmodes/reftex-vars.el (reftex-label-alist): Doc fix.
5256 (reftex-plug-into-AUCTeX): Doc fix.
5257 (reftex-vref-is-default, reftex-fref-is-default): Adapt doc
5258 string. Adapt to new name.
5259 (reftex-ref-style-alist): Change structure so that it is not
5260 possible to use multiple different package names within a style.
5261 Remove the symbols for symbols for macro type distinction.
5262 Add characters for macro selection.
5263 (reftex-ref-macro-prompt, reftex-create-bibtex-header)
5264 (reftex-create-bibtex-footer): New variables.
5265 (reftex-format-ref-function): Mention third argument of special
5266 format function.
5267 (reftex-ref-style-alist, reftex-ref-style-default-list):
5268 New variables.
5269 (reftex-vref-is-default, reftex-fref-is-default): Adapt doc string
5270 to new implementation. Mark as obsolete. Add compatibility code
5271 for honoring the variable values in case they are set.
5272 (reftex-cite-format-builtin, reftex-bibliography-commands):
5273 Add support for ConTeXt.
5274 (reftex-format-ref-function, reftex-format-cite-function):
5275 Fix custom type.
5276 (reftex-cite-key-separator): New variable.
5277
5278 * textmodes/reftex.el (reftex-syntax-table-for-bib)
5279 (reftex-mode): Do not derive `reftex-syntax-table-for-bib' from
5280 `reftex-syntax-table' because parens have to retain their paren
5281 syntax in order for parsing of BibTeX entries like @book(...) to
5282 work.
5283 (reftex-in-comment): Do not error out if `comment-start-skip' is
5284 not set. Deal correctly with escaped comment characters.
5285 (reftex-tie-multifile-symbols): Add doc string.
5286 Initialize `reftex-ref-style-list'.
5287 (reftex-untie-multifile-symbols): Add doc string.
5288 (reftex-add-index-macros): Doc fix.
5289 (reftex-ref-style-activate, reftex-ref-style-toggle)
5290 (reftex-ref-style-list): New functions.
5291 (reftex-mode-menu): Use them. Adapt to new structure of
5292 `reftex-ref-style-alist'.
5293 (reftex-select-with-char): Kill the RefTeX Select buffer when
5294 done.
5295 (reftex-remove-if): New function.
5296 (reftex-erase-all-selection-and-index-buffers)
5297 (reftex-mode-menu): Reference styles are now computed from
5298 `reftex-ref-style-alist'. Fix typo.
5299 (reftex-report-bug): New function.
5300 (reftex-uniquify, reftex-uniquify-by-car): Replace O(n^2)
5301 algorithms with O(n log n). Introduce optional argument SORT (not
5302 yet used).
5303
5304 2012-09-30 Fabián Ezequiel Gallina <fgallina@cuca>
5305
5306 Enhancements for triple-quote string syntax.
5307 * progmodes/python.el (python-syntax-propertize-function):
5308 Match both quote cases in one regexp.
5309 (python-syntax-stringify): Handle matches properly.
5310
5311 2012-09-30 Juri Linkov <juri@jurta.org>
5312
5313 * arc-mode.el (archive-summarize): Let-bind `buffer-file-truename'
5314 to nil around the call to `insert' to prevent
5315 directory time modification by lock_file. (Bug#2295)
5316 * tar-mode.el (tar-summarize-buffer): Idem.
5317
5318 2012-09-30 Juri Linkov <juri@jurta.org>
5319
5320 * facemenu.el (list-colors-sort): Add option "Luminance".
5321 (list-colors-sort-key): Implement it.
5322
5323 * vc/diff-mode.el (diff-refine-removed):
5324 * vc/ediff-init.el (ediff-fine-diff-A):
5325 * vc/smerge-mode.el (smerge-refined-removed):
5326 Change background color "#ffaaaa" to "#ffbbbb". (Bug#10181)
5327
5328 2012-09-30 Jan Djärv <jan.h.d@swipnet.se>
5329
5330 * term/ns-win.el (x-file-dialog): New function.
5331
5332 2012-09-30 Juanma Barranquero <lekktu@gmail.com>
5333
5334 * ido.el (ido-max-directory-size): Default to nil; the current
5335 default is small for POSIX systems, and impractical on Windows 7
5336 now that lstat returns directory sizes for NTFS.
5337
5338 2012-09-30 Martin Rudalics <rudalics@gmx.at>
5339
5340 In buffer display functions handle window-height/window-width
5341 alist entries. Suggested by Juri Linkov as fix for Bug#1806.
5342 * window.el (window--display-buffer): New argument ALIST.
5343 Obey window-height and window-width alist entries.
5344 (window--try-to-split-window): New argument ALIST.
5345 Bind window-combination-limit to t when the window's size shall be
5346 changed and window-combination-limit equals `window-size'.
5347 (display-buffer-in-atom-window)
5348 (display-buffer-in-major-side-window)
5349 (display-buffer-in-side-window, display-buffer-same-window)
5350 (display-buffer-reuse-window, display-buffer-pop-up-frame)
5351 (display-buffer-pop-up-window, display-buffer-below-selected)
5352 (display-buffer-at-bottom, display-buffer-in-previous-window)
5353 (display-buffer-use-some-window): Adjust all callers of
5354 window--display-buffer and window--try-to-split-window.
5355 (fit-frame-to-buffer): New option.
5356 (fit-window-to-buffer): Can resize frames if fit-frame-to-buffer
5357 is non-nil.
5358 (display-buffer-in-major-side-window): Evaluate window-height /
5359 window-width alist entries.
5360
5361 * help.el (temp-buffer-resize-frames)
5362 (temp-buffer-resize-regexps): Remove options.
5363 (temp-buffer-resize-mode): Adjust doc-string.
5364 (resize-temp-buffer-window): Don't consult
5365 temp-buffer-resize-regexps. Use fit-frame-to-buffer instead of
5366 temp-buffer-resize-frames.
5367
5368 * dired.el (dired-mark-pop-up):
5369 Call display-buffer-below-selected with a fit-window-to-buffer alist
5370 entry.
5371
5372 2012-09-30 Chong Yidong <cyd@gnu.org>
5373
5374 * server.el (server-host): Document the security implications.
5375 (server-auth-key): Doc fix.
5376
5377 * startup.el (initial-buffer-choice): Doc fix.
5378
5379 * minibuffer.el (minibuffer-local-filename-syntax): Doc fix.
5380
5381 * simple.el (delete-trailing-whitespace): Avoid an unnecessary
5382 restriction change.
5383
5384 * bindings.el (goto-map): Bind M-g TAB to move-to-column.
5385
5386 * help-fns.el (help-fns--obsolete): Fix last change.
5387
5388 2012-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
5389
5390 * winner.el (winner-mode-map): Obey winner-dont-bind-my-keys here.
5391 (minor-mode-map-alist): Remove redundant code.
5392
5393 * vc/pcvs.el (cvs-cleanup-collection): Keep entries that are currently
5394 visited in a buffer.
5395 (cvs-insert-visited-file): New function.
5396 (find-file-hook): Use it.
5397
5398 * vc/pcvs-info.el (cvs-fileinfo-pp): Don't use non-existent faces.
5399
5400 * vc/log-edit.el (log-edit-font-lock-keywords): Ignore case to
5401 chose face.
5402 (log-edit-empty-buffer-p): Don't require a space after a header.
5403
5404 * vc/ediff-util.el (ediff-diff-at-point): Don't assume point-min==1.
5405
5406 * tutorial.el (help-with-tutorial): Use minibuffer-with-setup-hook.
5407
5408 * textmodes/text-mode.el (paragraph-indent-minor-mode): Make it
5409 a proper minor-mode.
5410
5411 * textmodes/tex-mode.el (tex-mode-map): Don't bind paren keys.
5412
5413 2012-09-29 Glenn Morris <rgm@gnu.org>
5414
5415 * winner.el (winner-mode): Remove variable (let define-minor-mode
5416 handle it).
5417 (winner-dont-bind-my-keys, winner-boring-buffers, winner-mode-hook):
5418 Doc fixes.
5419 (winner-mode-leave-hook): Rename to winner-mode-off-hook.
5420 (winner-mode): Use define-minor-mode.
5421
5422 * vc/vc-sccs.el (vc-sccs-registered): Use the progn trick to get
5423 the full definition in loaddefs, rather than duplicating it.
5424
5425 * help-macro.el (three-step-help): No need to autoload defcustom.
5426
5427 * progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
5428 (inferior-lisp-program, inferior-lisp-load-command)
5429 (inferior-lisp-prompt, inferior-lisp-mode-hook):
5430 No need to autoload defcustoms.
5431
5432 * hippie-exp.el (hippie-expand-try-functions-list)
5433 (hippie-expand-verbose, hippie-expand-dabbrev-skip-space)
5434 (hippie-expand-dabbrev-as-symbol, hippie-expand-no-restriction)
5435 (hippie-expand-max-buffers, hippie-expand-ignore-buffers)
5436 (hippie-expand-only-buffers): No need to autoload defcustoms.
5437 * progmodes/vhdl-mode.el (vhdl-line-expand):
5438 Explicitly load hippie-exp, so it does not get autoloaded
5439 while hippie-expand-try-functions-list is let-bound.
5440
5441 2012-09-28 Glenn Morris <rgm@gnu.org>
5442
5443 * emacs-lisp/cl.el (flet): Fix case of obsolescence message.
5444
5445 * emacs-lisp/bytecomp.el (byte-compile-cl-file-p):
5446 Only "cl.el" counts as cl these days.
5447
5448 2012-09-28 Juri Linkov <juri@jurta.org>
5449
5450 Display archive errors in the echo area instead of inserting
5451 to the file buffer.
5452
5453 * arc-mode.el (archive-extract-by-stdout): Change arg STDERR-FILE
5454 to STDERR-TEST that can be a regexp matching a successful output.
5455 Create a temporary file and redirect stderr to it. Search for
5456 STDERR-TEST in the stderr output and display it in the echo area
5457 if no match is found.
5458 (archive-extract-by-file): New function like
5459 `archive-extract-by-stdout' but extracting archives to files
5460 and looking for successful matches in stdout. Function body is
5461 mostly copied from `archive-rar-extract'.
5462 (archive-rar-extract): Use `archive-extract-by-file'.
5463 (archive-7z-extract): Use `archive-extract-by-stdout'. (Bug#10347)
5464
5465 2012-09-28 Leo Liu <sdl.web@gmail.com>
5466
5467 * pcomplete.el (pcomplete-show-completions):
5468 Use minibuffer-message to make pcomplete usable in minibuffer.
5469
5470 * ido.el (ido-set-matches-1): Fix 2012-09-11 change.
5471
5472 2012-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
5473
5474 * type-break.el: Use lexical-binding.
5475 (type-break-mode): Use define-minor-mode.
5476
5477 * emacs-lisp/pcase.el (pcase--mark-used): New.
5478 (pcase--u1): Use it (bug#12512).
5479
5480 * custom.el (load-theme): Set buffer-file-name so the load is recorded
5481 in load-history with the right file name.
5482
5483 2012-09-28 Tassilo Horn <tsdh@gnu.org>
5484
5485 * doc-view.el (doc-view-current-cache-doc-pdf): New function.
5486 (doc-view-doc->txt, doc-view-convert-current-doc): Use it.
5487 (doc-view-get-bounding-box): Make bounding box slicing work for
5488 ODF and DVI documents.
5489
5490 2012-09-28 Glenn Morris <rgm@gnu.org>
5491
5492 * type-break.el (type-break-mode, type-break-interval)
5493 (type-break-good-rest-interval, type-break-keystroke-threshold):
5494 No need to autoload.
5495 (type-break-good-rest-interval, type-break-keystroke-threshold):
5496 Add :set-after.
5497
5498 2012-09-28 Chong Yidong <cyd@gnu.org>
5499
5500 * progmodes/verilog-mode.el (verilog-auto-inst-interfaced-ports):
5501 Add :version tag.
5502
5503 2012-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
5504
5505 * json.el (json-encode-char): Codes 127-160 aren't "ASCII printable".
5506
5507 2012-09-27 Glenn Morris <rgm@gnu.org>
5508
5509 * faces.el (x-display-name): Declare (for without-x builds).
5510
5511 * linum.el (linum-format): Don't autoload it. Improve :type.
5512
5513 * progmodes/tcl.el: Don't require outline when compiling.
5514 (outline-regexp, outline-level): Declare.
5515 * textmodes/sgml-mode.el: Don't require outline when compiling.
5516 (outline-regexp, outline-heading-end-regexp, outline-level): Declare.
5517
5518 * term.el (term-ansi-reset):
5519 Try setting term-ansi-face-already-done to nil. (Bug#11785)
5520
5521 * vc/vc.el (vc-next-action): Only gripe about committing read-only
5522 files for RCS and SCCS. (Bug#9781)
5523
5524 2012-09-27 Chong Yidong <cyd@gnu.org>
5525
5526 * progmodes/verilog-mode.el (verilog-mode-release-emacs): Fix last
5527 change; value should be t.
5528
5529 2012-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
5530
5531 * image-mode.el: Use lexical-binding.
5532 (image-mode-winprops): Use t to stand for the window of
5533 a buffer that's not displayed.
5534 * doc-view.el (doc-view-new-window-function): Handle the new
5535 t in winprops.
5536 (doc-view-enlarge): Make it a real nop if the size is not changed.
5537 (doc-view-display): Handle the case where the buffer is not (yet?)
5538 displayed in any window.
5539 (doc-view-saved-settings): New var.
5540 (doc-view-mode): Use it.
5541 (doc-view-fallback-mode): Set it.
5542
5543 * minibuf-eldef.el: Make it possible to replace (default ...) with [...].
5544 Set lexical-binding.
5545 (minibuffer-eldef-shorten-default): New var.
5546 (minibuffer-default-in-prompt-regexps): Use it for new default.
5547 (minibuf-eldef-setup-minibuffer): Add replacement functionality.
5548
5549 2012-09-26 Juanma Barranquero <lekktu@gmail.com>
5550
5551 * international/uni-bidi.el:
5552 * international/uni-category.el:
5553 * international/uni-name.el:
5554 * international/uni-numeric.el: Regenerate.
5555
5556 2012-09-26 Tomohiro Matsuyama <tomo@cx4a.org>
5557 Stefan Monnier <monnier@iro.umontreal.ca>
5558
5559 * profiler.el: New file.
5560
5561 2012-09-26 Stefan Monnier <monnier@iro.umontreal.ca>
5562
5563 * emacs-lisp/testcover.el (testcover-after): Add gv-expander.
5564 (testcover-reinstrument): Simplify with CSE.
5565
5566 2012-09-26 Juanma Barranquero <lekktu@gmail.com>
5567
5568 * window.el (temp-buffer-window-setup): Fix typo in docstring.
5569
5570 2012-09-25 Wilson Snyder <wsnyder@wsnyder.org>
5571
5572 * verilog-mode.el (verilog-auto-ascii-enum, verilog-auto-inout)
5573 (verilog-auto-input, verilog-auto-insert-lisp)
5574 (verilog-auto-output, verilog-auto-output-every, verilog-auto-reg)
5575 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-undef)
5576 (verilog-auto-unused, verilog-auto-wire)
5577 (verilog-forward-or-insert-line): Fix AUTOs with no trailing
5578 newline. Reported by Andrew Jones.
5579 (verilog-auto-inst) Support expanding $clog2 in AUTOINST.
5580 Reported by Brad Dobbie.
5581 (verilog-batch-delete-trailing-whitespace):
5582 Create verilog-batch-delete-trailing-whitespace.
5583 Reported by Brad Dobbie.
5584 (verilog-auto-inout-param): Support AUTOINOUTPARAM for copying
5585 parameters from another module. Reported by Dan Katz.
5586 (verilog-auto, verilog-auto-assign-modport)
5587 (verilog-auto-inout-modport): Add AUTOASSIGNMODPORT and
5588 AUTOINOUTMODPORT for UVM interface module shell generation.
5589 Reported by Brad Dobbie.
5590 (verilog-auto-inst-interfaced-ports): Make default nil, as more
5591 standard behavior.
5592 (verilog-auto): Fix AUTO parameters with parenthesis arguments.
5593 Reported by Matt Martin.
5594
5595 2012-09-25 Martin Rudalics <rudalics@gmx.at>
5596
5597 * window.el (window--resize-child-windows): When resizing child
5598 windows proportionally, process them in reverse order to
5599 preserve the "when splitting a window the new one gets the odd
5600 line" behavior.
5601 (window--resize-root-window-vertically): When resizing the
5602 minibuffer window try to affect only windows at the bottom of the
5603 frame. (Bug#12419)
5604
5605 2012-09-25 Chong Yidong <cyd@gnu.org>
5606
5607 * subr.el (declare): Doc fix.
5608
5609 * help-fns.el (help-fns--obsolete): Handle macros properly.
5610
5611 2012-09-25 Chong Yidong <cyd@gnu.org>
5612
5613 * bookmark.el (bookmark-jump-noselect): Use a declare form to mark
5614 this function obsolete.
5615
5616 * calendar/cal-x.el (calendar-two-frame-setup)
5617 (calendar-only-one-frame-setup, calendar-one-frame-setup):
5618 * calendar/calendar.el (american-calendar, european-calendar)
5619 (calendar-for-loop):
5620 * comint.el (comint-dynamic-simple-complete)
5621 (comint-dynamic-complete-as-filename, comint-unquote-filename):
5622 * desktop.el (desktop-load-default):
5623 * dired-x.el (dired-omit-here-always)
5624 (dired-hack-local-variables, dired-default-directory):
5625 * emacs-lisp/derived.el (derived-mode-class):
5626 * emacs-lisp/timer.el (timer-set-time-with-usecs):
5627 * emacs-lock.el (toggle-emacs-lock):
5628 * epa.el (epa-display-verify-result):
5629 * epg.el (epg-sign-keys, epg-start-sign-keys)
5630 (epg-passphrase-callback-function):
5631 * eshell/esh-util.el (eshell-for):
5632 * eshell/eshell.el (eshell-remove-from-window-buffer-names)
5633 (eshell-add-to-window-buffer-names):
5634 * files.el (locate-file-completion):
5635 * imenu.el (imenu-example--create-c-index)
5636 (imenu-example--create-lisp-index)
5637 (imenu-example--lisp-extract-index-name)
5638 (imenu-example--name-and-position):
5639 * international/mule-cmds.el (princ-list):
5640 * international/mule-diag.el (decode-codepage-char):
5641 * international/mule-util.el (detect-coding-with-priority):
5642 * iswitchb.el (iswitchb-read-buffer):
5643 * mail/mailalias.el (mail-complete):
5644 * mail/sendmail.el (mail-sent-via):
5645 * mouse.el (mouse-popup-menubar-stuff, mouse-popup-menubar)
5646 (mouse-major-mode-menu):
5647 * password-cache.el (password-read-and-add):
5648 * pcomplete.el (pcomplete-parse-comint-arguments):
5649 * progmodes/sh-script.el (sh-maybe-here-document):
5650 * replace.el (query-replace-regexp-eval):
5651 * savehist.el (savehist-load):
5652 * simple.el (choose-completion-delete-max-match):
5653 * term.el (term-dynamic-simple-complete):
5654 * vc/ediff-init.el (ediff-check-version):
5655 * vc/ediff-wind.el (ediff-choose-window-setup-function-automatically):
5656 * vc/vc.el (vc-diff-switches-list):
5657 * view.el (view-return-to-alist-update): Likewise.
5658
5659 * subr.el (eval-next-after-load, makehash, insert-string)
5660 (assoc-ignore-representation, assoc-ignore-case): Use declare to
5661 mark obsolete.
5662 (mode-line-inverse-video): Variable deleted.
5663
5664 * international/mule-util.el (string-to-sequence): Remove.
5665
5666 * calendar/calendar.el (calendar-version):
5667 * calendar/icalendar.el (icalendar-extract-ical-from-buffer)
5668 (icalendar-convert-diary-to-ical):
5669 * cus-edit.el (custom-mode):
5670 * ansi-color.el (ansi-color-unfontify-region):
5671 * international/latin1-disp.el (latin1-char-displayable-p):
5672 * progmodes/cwarn.el (turn-on-cwarn-mode):
5673 * progmodes/which-func.el (which-func-update-1):
5674 Use define-obsolete-function-alias.
5675
5676 * net/newst-backend.el (newsticker-cache-filename):
5677 * net/newst-treeview.el (newsticker-groups-filename):
5678 Fix incorrect obsolescence declaration.
5679
5680 * allout.el (allout-passphrase-hint-string): Likewise.
5681 (allout-init): Use a declare form to mark obsolete.
5682
5683 * emacs-lisp/byte-run.el (make-obsolete): Doc fix; emphasize that
5684 this applies to functions.
5685
5686 * iswitchb.el (iswitchb-read-buffer): Move code of
5687 iswitchb-define-mode-map here, and delete that obsolete function.
5688
5689 * net/snmp-mode.el (snmp-font-lock-keywords-3): Don't use obsolete
5690 font-lock-reference-face.
5691
5692 2012-09-25 Glenn Morris <rgm@gnu.org>
5693
5694 * buff-menu.el (Buffer-menu-name-width, Buffer-menu-size-width):
5695 Doc fixes.
5696
5697 * eshell/em-term.el (eshell-term-name):
5698 Default to term-term-name. (Bug#12485)
5699
5700 2012-09-24 Fabián Ezequiel Gallina <fgallina@cuca>
5701
5702 * progmodes/python.el (python-shell-send-buffer): Better handling
5703 of "if __name__ == '__main__':" conditionals when sending the buffer.
5704
5705 2012-09-24 Glenn Morris <rgm@gnu.org>
5706
5707 * eshell/esh-cmd.el (eshell-find-alias-function):
5708 Tighten up file-name regexp. (Bug#12499)
5709
5710 2012-09-24 Fabián Ezequiel Gallina <fgallina@cuca>
5711
5712 Enhancements for triple-quote string syntax.
5713 * progmodes/python.el (python-quote-syntax): Remove.
5714 (python-syntax-propertize-function): New value.
5715 (python-syntax-count-quotes, python-syntax-stringify):
5716 New functions.
5717
5718 2012-09-24 Chong Yidong <cyd@gnu.org>
5719
5720 * mail/supercite.el (sc-version): Remove obsolete function.
5721 (sc-describe): Don't mark as obsolete, since it is bound.
5722 (sc-submit-bug-report): Remove.
5723
5724 * vc/log-edit.el (cvs-changelog-full-paragraphs)
5725 (cvs-commit-buffer-require-final-newline): Remove.
5726 (log-edit-require-final-newline)
5727 (log-edit-changelog-full-paragraphs): Default to t.
5728
5729 * vc/pcvs-defs.el (cvs-diff-buffer-name, cvs-diff-ignore-marks)
5730 * vc/vc-hooks.el (vc-ignore-vc-files, vc-master-templates)
5731 * vc/vc.el (vc-checkout-carefully): Likewise.
5732
5733 * vc/emerge.el (emerge-mode): Make it an obsolete alias.
5734 (emerge-version): Remove.
5735
5736 * progmodes/compile.el (compile-internal): Remove.
5737 (compilation-parse-errors-function): Fix typo.
5738
5739 * international/mule.el (set-char-table-default): Remove.
5740 (set-coding-priority, make-coding-system, generic-char-p)
5741 (charset-list, charset-bytes, charset-id): Use declare to mark
5742 functions as obsolete.
5743
5744 * vc/pcvs-defs.el (cvs-buffer-name-alist)
5745 (cvs-invert-ignore-marks): Remove references to obsolete vars.
5746 * vc/vc-hooks.el (vc-default-registered): Don't use
5747 vc-master-templates.
5748
5749 * font-lock.el (font-lock-reference-face):
5750 Use define-obsolete-variable-alias.
5751
5752 * generic-x.el (rul-generic-mode): Use font-lock-constant-face.
5753 * calendar/calendar.el (calendar-font-lock-keywords):
5754 * calendar/diary-lib.el (diary-font-lock-keywords)
5755 (diary-fancy-font-lock-keywords):
5756 * textmodes/reftex-sel.el (reftex-insert-docstruct):
5757 * textmodes/reftex-index.el (reftex-insert-index):
5758 * textmodes/reftex-cite.el (reftex-format-bib-entry):
5759 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
5760 * progmodes/ps-mode.el (ps-mode-font-lock-keywords-1):
5761 * progmodes/prolog.el (prolog-font-lock-keywords):
5762 * progmodes/idlwave.el (idlwave-idl-keywords):
5763 * progmodes/ada-mode.el (ada-font-lock-keywords):
5764 * net/snmp-mode.el (snmp-font-lock-keywords-3): Likewise.
5765
5766 2012-09-24 Glenn Morris <rgm@gnu.org>
5767
5768 * mail/emacsbug.el (report-emacs-bug): Include `lsb_release -d'.
5769
5770 2012-09-23 Fabián Ezequiel Gallina <fgallina@cuca>
5771
5772 * progmodes/python.el (python-indent-line): More consistent cursor
5773 movement behavior.
5774
5775 2012-09-23 Stefan Merten <smerten@oekonux.de>
5776
5777 * textmodes/rst.el: Fix compiler warning.
5778
5779 2012-09-23 Roland Winkler <winkler@gnu.org>
5780
5781 * textmodes/bibtex.el (bibtex-autokey-transcriptions):
5782 Transcribe also LaTeX hyphenation.
5783 (bibtex-reformat): Bug fix. Do not quote twice the elements of
5784 bibtex-reformat-previous-options.
5785
5786 2012-09-23 Roland Winkler <winkler@gnu.org>
5787
5788 * proced.el (proced-renice-command): New variable.
5789 (proced-marked-processes): New function.
5790 (proced-with-processes-buffer): New macro.
5791 (proced-send-signal): Use them.
5792 (proced-renice): New command bound to r.
5793
5794 2012-09-23 Roland Winkler <winkler@gnu.org>
5795
5796 * ibuf-ext.el (ibuffer-switch-to-saved-filter-groups): If list
5797 ibuffer-saved-filter-groups has one element, shortcut the call of
5798 completing-read. (Bug#12331)
5799
5800 2012-09-23 Chong Yidong <cyd@gnu.org>
5801
5802 * bindings.el (mode-line-toggle-read-only):
5803 * bs.el (bs-toggle-readonly):
5804 * buff-menu.el (Buffer-menu-toggle-read-only):
5805 * dired.el (dired-toggle-read-only):
5806 * ibuffer.el (ibuffer-do-toggle-read-only): Use read-only-mode.
5807
5808 2012-09-23 Chong Yidong <cyd@gnu.org>
5809
5810 * image.el (image-type-available-p): Adapt to init-image-library
5811 argument changes.
5812
5813 2012-09-22 Juri Linkov <juri@jurta.org>
5814
5815 * dired.el (dired-mode-map): Add [remap read-only-mode] for
5816 `dired-toggle-read-only'. (Bug#12462)
5817
5818 2012-09-22 Martin Rudalics <rudalics@gmx.at>
5819
5820 * subr.el (temp-output-buffer-show): New function.
5821 (with-output-to-temp-buffer): Call temp-output-buffer-show
5822 instead of internal-temp-output-buffer-show.
5823
5824 2012-09-22 Chong Yidong <cyd@gnu.org>
5825
5826 * files.el (ctl-x-map): Bind C-x C-q to read-only-mode
5827 (Bug#12462).
5828
5829 * repeat.el (repeat): Doc fix (Bug#12348).
5830
5831 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix
5832 (Bug#10909).
5833
5834 * simple.el (shell-command-on-region): Doc fix.
5835 (read-only-mode): Doc fix.
5836
5837 2012-09-22 Eli Zaretskii <eliz@gnu.org>
5838
5839 * emacs-lisp/timer.el (run-with-idle-timer)
5840 (timer-activate-when-idle): Warn against reinvoking an idle timer
5841 from within its own timer action. (Bug#12447)
5842
5843 2012-09-22 Martin Rudalics <rudalics@gmx.at>
5844
5845 * cus-start.el (window-combination-limit): Add new optional
5846 values.
5847 * window.el (temp-buffer-window-show)
5848 (window--try-to-split-window): Handle new values of
5849 window-combination-limit (Bug#1806).
5850 (split-window): Test window-combination-limit for t instead of
5851 non-nil.
5852 (display-buffer-at-bottom): New buffer display action function.
5853 * help.el (temp-buffer-resize-regexps): New option.
5854 (temp-buffer-resize-mode): Rewrite doc-string.
5855 (resize-temp-buffer-window): Obey temp-buffer-resize-regexps.
5856 Don't resize reused window. Suggested by Glenn Morris.
5857
5858 2012-09-22 Stefan Merten <smerten@oekonux.de>
5859
5860 * textmodes/rst.el: Revamp section title faces.
5861 (rst-official-version)
5862 (rst-package-emacs-version-alist): Sync with official version
5863 V1.4.0.
5864 (rst-faces-defaults, rst-set-level-default)
5865 (rst-level-face-max, rst-level-face-base-color)
5866 (rst-level-face-base-light, rst-level-face-format-light)
5867 (rst-level-face-step-light, rst-define-level-faces): Obsolete.
5868 (rst-adornment-faces-alist): Match new setup.
5869 (rst-level-1, rst-level-2, rst-level-3, rst-level-4)
5870 (rst-level-5, rst-level-6): New faces.
5871
5872 2012-09-22 Chong Yidong <cyd@gnu.org>
5873
5874 * simple.el (undo): Handle indirect buffers (Bug#8207).
5875
5876 2012-09-21 Leo Liu <sdl.web@gmail.com>
5877
5878 IDO: Disable match re-ordering for buffer switching.
5879 * ido.el (ido-buffer-disable-smart-matches): New variable.
5880 (ido-set-matches-1): Use it. (Bug#2042)
5881
5882 2012-09-21 Jose Marino <marinoj@nso.edu> (tiny change)
5883
5884 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
5885 Fix 2011-05-17 change. (Bug#12418)
5886
5887 2012-09-21 Leo Liu <sdl.web@gmail.com>
5888
5889 * subr.el (ignore-errors): Mention with-demoted-errors in doc-string.
5890
5891 2012-09-21 Glenn Morris <rgm@gnu.org>
5892
5893 * emacs-lisp/shadow.el (load-path-shadows-font-lock-keywords):
5894 Be more robust about locating simple.el.
5895
5896 2012-09-21 Glenn Morris <rgm@gnu.org>
5897
5898 * mail/emacsbug.el (report-emacs-bug): Trap load-path-shadows errors.
5899
5900 2012-09-21 Joel Bion <jpbion@westvi.com> (tiny change)
5901
5902 * pcmpl-gnu.el (pcmpl-gnu-tarfile-regexp): Add tar.xz. (Bug#12382)
5903
5904 2012-09-20 Juri Linkov <juri@jurta.org>
5905
5906 * replace.el (query-replace-read-from): Use `read-regexp' instead
5907 of `read-from-minibuffer' when `regexp-flag' is non-nil.
5908 (occur-read-primary-args): Use `read-regexp' instead of
5909 `read-string'.
5910 (multi-occur-in-matching-buffers): Use `read-regexp' instead of
5911 `read-from-minibuffer'.
5912 * isearch.el (isearch-occur): Use `read-regexp' instead of
5913 `read-string'.
5914 * dired.el (dired-read-regexp): Use `read-regexp' instead of
5915 `read-from-minibuffer'.
5916 * progmodes/grep.el (grep-read-regexp): Use `read-regexp' instead
5917 of `read-string'. (Bug#7567)
5918
5919 * replace.el (read-regexp): Rename DEFAULT-VALUE arg to DEFAULTS
5920 and allow accepting a list of strings prepended to a list of
5921 standard default values. Doc fix. (Bug#12321)
5922
5923 * replace.el (read-regexp): Add HISTORY arg. (Bug#7567)
5924
5925 * replace.el (read-regexp): Don't add ": " when PROMPT already
5926 ends with a colon and space. (Bug#12321)
5927
5928 2012-09-20 Tassilo Horn <tsdh@gnu.org>
5929
5930 * doc-view.el (doc-view-display): Better fix for the cl-assertion
5931 error.
5932
5933 2012-09-20 Stefan Merten <smerten@oekonux.de>
5934
5935 * textmodes/rst.el: Integrate support for `imenu' and `which-function'.
5936 Fixes feature request bug#11711.
5937 (rst-mode): Create `imenu-create-index-function'.
5938 (rst-get-stripped-line): Delete after refactoring.
5939 (rst-section-tree, rst-section-tree-rec)
5940 (rst-section-tree-point): Refactor and document properly.
5941 (rst-imenu-find-adornments-for-position)
5942 (rst-imenu-convert-cell, rst-imenu-create-index):
5943 New function.
5944
5945 2012-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
5946
5947 * emacs-lisp/macroexp.el (macroexp--obsolete-warning): New function.
5948 (macroexp--expand-all): Use it.
5949 (macroexp--funcall-and-return): Remove by folding it into its sole
5950 caller (macroexp--warn-and-return).
5951 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete):
5952 Use macroexp--obsolete-warning.
5953
5954 * calc/calc.el: Fix last change by removing the whole chunk, since it
5955 was only needed back when Calc was not bundled.
5956
5957 2012-09-20 Martin Rudalics <rudalics@gmx.at>
5958
5959 * emacs-lisp/debug.el (debug): Restore assignment to
5960 debugger-old-buffer removed on 2012-09-08.
5961
5962 2012-09-20 Juri Linkov <juri@jurta.org>
5963
5964 * dired-aux.el (dired-diff): Remove (require 'diff) since
5965 `diff-latest-backup-file' is now autoloaded.
5966
5967 2012-09-20 Chong Yidong <cyd@gnu.org>
5968
5969 * vc/diff.el (diff-latest-backup-file): Autoload.
5970
5971 2012-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
5972
5973 * calc/calc.el: Remove redundant autoload shape check.
5974 (sel-mode): Don't defvar.
5975 (calc-get-stack-element): Add `sel-mode' arg instead.
5976 (calc-top, calc-top-list): Pass it this additional argument.
5977 * calc/calc-store.el (calc-store-map):
5978 * calc/calc-map.el (calc-apply, calc-reduce, calc-map)
5979 (calc-map-equation, calc-outer-product, calc-inner-product):
5980 * calc/calc-aent.el (calc-alg-entry): Don't bind sel-mode.
5981
5982 * emacs-lisp/macroexp.el (macroexp--expand-all): Fix last change.
5983
5984 2012-09-19 Juri Linkov <juri@jurta.org>
5985
5986 * dired-aux.el (dired-diff): Add (require 'diff) because
5987 `diff-latest-backup-file' is not autoloaded.
5988 (dired-do-chxxx, dired-do-chmod): Set `no-error-if-not-filep' arg
5989 of `dired-get-filename' to t to not report error when there is
5990 no default file on the current line.
5991
5992 2012-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
5993
5994 * emacs-lisp/macroexp.el (macroexp--funcall-if-compiled): Rename from
5995 macroexp--eval-if-compile.
5996 (macroexp--funcall-and-return, macroexp--warn-and-return): New funs.
5997 (macroexp--expand-all): Use them (bug#12371).
5998
5999 * doc-view.el (doc-view-guess-paper-size)
6000 (doc-view-scale-bounding-box): Fix unbound `caddr'.
6001
6002 2012-09-19 Tassilo Horn <tsdh@gnu.org>
6003
6004 New feature: set optimal slice from BoundingBox information.
6005 * doc-view.el (doc-view-mode-map): Add keybinding.
6006 (doc-view-menu): Add menu entry.
6007 (doc-view-set-slice): Adapt docstring.
6008 (doc-view-get-bounding-box, doc-view-guess-paper-size)
6009 (doc-view-scale-bounding-box)
6010 (doc-view-set-slice-from-bounding-box): New functions.
6011 (doc-view-paper-sizes): New defvar.
6012
6013 2012-09-19 Glenn Morris <rgm@gnu.org>
6014
6015 * emacs-lisp/macroexp.el (byte-compile-warn-obsolete)
6016 (byte-compile-log-warning): Autoload. (Bug#12371)
6017
6018 * calendar/calendar.el (calendar-american-month-header)
6019 (calendar-european-month-header, calendar-iso-month-header)
6020 (calendar-month-header): New options.
6021 (calendar-set-date-style): Set calendar-month-header. Redraw calendar.
6022 (calendar-generate-month): Use calendar-month-header. (Bug#9510)
6023
6024 2012-09-19 Jan Djärv <jan.h.d@swipnet.se>
6025
6026 * startup.el (command-line-ns-option-alist): Add -g and --geometry.
6027
6028 2012-09-18 Juri Linkov <juri@jurta.org>
6029
6030 * dired-aux.el (dired-diff): Restore original functionality of
6031 getting the default value, but keep new feature of using the
6032 latest existing backup file (`diff-latest-backup-file').
6033
6034 2012-09-18 Juri Linkov <juri@jurta.org>
6035
6036 * dired.el (dired-mark): If the region is active in Transient Mark
6037 mode, mark all files in the active region. Doc fix.
6038 (dired-unmark, dired-flag-file-deletion, dired-unmark-backward):
6039 Doc fix. (Bug#10624)
6040
6041 2012-09-18 Juri Linkov <juri@jurta.org>
6042
6043 * dired-aux.el (dired-do-chxxx, dired-do-chmod): Default file
6044 attributes for M-n are pulled from the file at point.
6045 (dired-do-chgrp, dired-do-chown, dired-do-touch): Doc fix.
6046 Suggested by Drew Adams. (Bug#10624)
6047
6048 2012-09-18 Dmitry Gutov <dgutov@yandex.ru>
6049
6050 * progmodes/ruby-mode.el (ruby-brace-to-do-end): Don't add extra
6051 whitespace after "end".
6052 (ruby-do-end-to-brace): Collapse block to one line if it fits
6053 within fill-column.
6054
6055 2012-09-18 Martin Rudalics <rudalics@gmx.at>
6056
6057 * emacs-lisp/debug.el (debugger-bury-or-kill): Fix customization
6058 value.
6059 (debug): Don't remove debugger window when debugger is expected
6060 to be back.
6061
6062 2012-09-18 Chong Yidong <cyd@gnu.org>
6063
6064 * custom.el (defface): Doc fix.
6065
6066 * cus-edit.el (custom-unlispify-remove-prefixes): Add warning.
6067
6068 2012-09-18 Martin Blais <blais@furius.ca> (tiny change)
6069
6070 * progmodes/compile.el (compilation-start): Use compilation-always-kill
6071 to initialize query-on-exit; then test that instead (bug#12288).
6072
6073 2012-09-17 Stefan Merten <smerten@oekonux.de>
6074
6075 * textmodes/rst.el: Add support for `testcover'.
6076 (rst-defcustom-testcover, rst-testcover-add-compose)
6077 (rst-testcover-add-1value): New functions.
6078 (rst-portable-mark-active-p): Replace by `use-region-p'.
6079 (rst-update-section, rst-classify-adornment)
6080 (rst-find-title-line): Mark `1value' forms.
6081 (rst-classify-adornment): Remove superfluous form.
6082 (rst-update-section, rst-get-adornments-around)
6083 (rst-adornment-complete-p, rst-get-next-adornment)
6084 (rst-adjust, rst-promote-region)
6085 (rst-display-adornments-hierarchy, rst-straighten-adornments)
6086 (rst-find-pfx-in-region, rst-section-tree-rec)
6087 (rst-section-tree-point, rst-toc-insert, rst-toc-insert-node)
6088 (rst-toc-node, rst-toc, rst-forward-section)
6089 (rst-iterate-leftmost-paragraphs)
6090 (rst-iterate-leftmost-paragraphs-2, rst-enumerate-region)
6091 (rst-bullet-list-region)
6092 (rst-convert-bullets-to-enumeration, rst-font-lock-keywords)
6093 (rst-compile-find-conf, rst-compile)
6094 (rst-repeat-last-character): Fix style.
6095
6096 2012-09-17 Chong Yidong <cyd@gnu.org>
6097
6098 * comint.el (comint--complete-file-name-data): Don't add a space
6099 if the status is `sole'; that adds a gratuitous space in the
6100 completion-cycling case (Bug#12092).
6101
6102 * pcomplete.el (pcomplete-completions-at-point): Likewise.
6103
6104 2012-09-17 Richard Stallman <rms@gnu.org>
6105
6106 * mail/rmailmm.el (rmail-mime-toggle-raw): Do rmail-mime-insert
6107 only in the mime-shown mode, not in raw mode.
6108 (rmail-mime): Toggle off mime by displaying the message without
6109 mime processing. (Bug#12305)
6110
6111 * mail/rmail.el (rmail-retry-failure):
6112 Turn off mime processing first. (Bug#12037)
6113
6114 * epa-mail.el (epa-mail-encrypt): Fix bug when a name has no key.
6115
6116 2012-09-17 Chong Yidong <cyd@gnu.org>
6117
6118 * shell.el (shell-file-name-chars, shell-file-name-quote-list)
6119 (shell-dynamic-complete-functions): Convert to defcustom.
6120 (shell-prompt-pattern, shell-completion-fignore): Doc fix.
6121
6122 * bookmark.el (bookmark-bmenu-toggle-filenames): Doc fixes.
6123 * comint.el (comint-prompt-read-only):
6124 * custom.el (defcustom):
6125 * hi-lock.el (hi-lock-mode):
6126 * ibuffer.el (ibuffer-formats):
6127 * ielm.el (ielm-prompt-read-only):
6128 * novice.el (disable-command):
6129 * saveplace.el (toggle-save-place):
6130 * speedbar.el (speedbar-supported-extension-expressions):
6131 * startup.el (auto-save-list-file-prefix, init-file-user)
6132 (after-init-hook, inhibit-startup-echo-area-message):
6133 * strokes.el (strokes-help):
6134 * time-stamp.el (time-stamp):
6135 * calendar/calendar.el (calendar, diary-file):
6136 * calendar/diary-lib.el (diary-mail-entries, diary)
6137 (diary-list-entries-hook):
6138 * calendar/holidays.el (holidays, calendar-holidays):
6139 * calendar/lunar.el (lunar-phases):
6140 * calendar/solar.el (sunrise-sunset):
6141 * emulation/edt.el (edt-load-keys):
6142 * emulation/viper.el (viper-mode):
6143 * eshell/em-alias.el (eshell-command-aliases-list):
6144 * eshell/esh-util.el (eshell-convert-numeric-arguments):
6145 * international/ogonek.el (ogonek-information):
6146 * net/tramp-cmds.el (tramp-bug):
6147 * net/quickurl.el (quickurl-reread-hook-postfix):
6148 * play/decipher.el (decipher-font-lock-keywords):
6149 * progmodes/cc-styles.el (c-set-style):
6150 * progmodes/idlw-shell.el (idlwave-shell-prompt-pattern):
6151 * progmodes/inf-lisp.el (inferior-lisp-prompt):
6152 * progmodes/octave-mod.el (octave-mode):
6153 * progmodes/sql.el (sql-mode, sql-interactive-mode, sql-password):
6154 * progmodes/verilog-mode.el (verilog-read-defines):
6155 * textmodes/two-column.el (2C-mode): Likewise.
6156
6157 2012-09-16 Katsumi Yamaoka <yamaoka@jpl.org>
6158
6159 * mail/mailabbrev.el (mail-abbrev-expand-hook): Work for a mail aliasee
6160 that holds many addresses.
6161
6162 2012-09-16 Chong Yidong <cyd@gnu.org>
6163
6164 * align.el (align-areas): Call the indication function with
6165 positions instead of markers for arguments (Bug#12343).
6166
6167 * files.el (parse-colon-path): Use split-string (Bug#12351).
6168
6169 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
6170 (display-buffer-function): Mark as obsolete.
6171
6172 * progmodes/compile.el (compilation-parse-errors): Accept list
6173 values similar to font-lock-keywords (Bug#12136).
6174 Suggested by Oleksandr Manzyuk.
6175 (compilation-error-regexp-alist): Doc fix.
6176
6177 2012-09-15 Glenn Morris <rgm@gnu.org>
6178
6179 * version.el (emacs-bzr-version-bzr): New function.
6180 (emacs-bzr-get-version): Add optional EXTERNAL argument.
6181
6182 * vc/vc-bzr.el (vc-bzr-working-revision): For lightweight local
6183 checkouts, check the parent dirstate matches the branch.
6184 Add "--tree" to "bzr revno" arguments. Don't try to shorten the
6185 empty string.
6186
6187 * version.el (emacs-bzr-version): Doc fix.
6188 (emacs-bzr-version-dirstate): New function.
6189 (emacs-bzr-get-version): For lightweight checkouts, if the parent
6190 is local try and check that it matches the branch. If not, just
6191 use dirstate information. (Bug#12441)
6192
6193 2012-09-14 Juri Linkov <juri@jurta.org>
6194
6195 * dired-aux.el (dired-do-chmod): Use `eq' to detect empty input.
6196 (Bug#12399)
6197
6198 2012-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
6199
6200 * emacs-lisp/advice.el (ad-prognify): Remove, use macroexp-progn.
6201
6202 * emacs-lisp/edebug.el: Miscellaneous cleanup.
6203 Remove obsolete byte-compiler hack that tried to silence some warnings.
6204 (edebug-submit-bug-report): Remove.
6205 (edebug-get-buffer-window, edebug-sit-for, edebug-input-pending-p):
6206 Remove aliases, use the un-prefixed name instead.
6207 (edebug-pop-to-buffer): Consider other frames.
6208 (edebug-original-read):: Make it more obvious that it's always defined.
6209 (edebug--make-form-data-entry, edebug--form-data-name)
6210 (edebug--form-data-begin, edebug--form-data-end): Rename from the
6211 single-dashed name, and implement with cl-defstruct.
6212 (edebug-set-form-data-entry): Use the standard accessors.
6213 (edebug-make-top-form-data-entry): Use push.
6214 (edebug-no-match): Drop useless `funcall'.
6215 (mapcar, mapconcat, mapatoms, apply, funcall): Don't add debug specs
6216 to functions.
6217 (defsubst, dont-compile, eval-when-compile, eval-and-compile)
6218 (delay-mode-hooks, with-temp-file, with-temp-message, ad-dolist)
6219 (with-syntax-table, push, pop, 1value, noreturn, defadvice)
6220 (easy-menu-define, with-custom-print): Remove redundant specs.
6221 (edebug-outside-overriding-local-map)
6222 (edebug-outside-overriding-terminal-local-map): Remove, unused.
6223 (edebug--display): Bind unread-command-events directly to nil rather
6224 than binding it to unread-command-events and later setting it to nil.
6225 (edebug--display): Kill edebug-eval-buffer here...
6226 (edebug--recursive-edit): ...rather than here.
6227 Bind standard-output and standard-input.
6228 (edebug-eval): Check cl-macroexpand-all is fboundp.
6229 (edebug-temp-display-freq-count): Fix last change.
6230
6231 * emacs-lisp/easymenu.el (easy-menu-define): Add `debug' spec.
6232 * subr.el (noreturn, 1value): Add `debug' spec.
6233 * emacs-lisp/advice.el: Require cl-lib.
6234 (ad-copy-tree): Remove, use copy-tree instead.
6235 (ad-dolist): Remove use dolist or cl-dolist instead.
6236 (ad-do-return): Remove, use cl-return instead.
6237 (defadvice): Add `debug' spec.
6238
6239 2012-09-13 Juri Linkov <juri@jurta.org>
6240
6241 * dired-aux.el (dired-do-chxxx): Use `eq' to detect empty input.
6242 (Bug#12399)
6243
6244 2012-09-13 Glenn Morris <rgm@gnu.org>
6245
6246 * calc/calc.el (math-compose-expr):
6247 * calc/calc-ext.el (math-compose-expr):
6248 * progmodes/cc-defs.el (cl-macroexpand-all):
6249 * progmodes/cc-langs.el (delete-duplicates, mapcan)
6250 (cl-macroexpand-all): Update declarations.
6251
6252 * vc/vc.el: No need to require ediff.
6253 (ediff-load-version-control): Declare.
6254 (ediff-vc-internal): Fix declaration.
6255 (vc-version-ediff): Require ediff.
6256
6257 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
6258
6259 Use a more backwards-compatible timer format (Bug#12430).
6260 * emacs-lisp/timer.el (timer): PSECS is now at the end, rather than
6261 being right after USECS, as that better supports old code that
6262 inadvisedly looked directly at the timer vector.
6263
6264 2012-09-13 Kenichi Handa <handa@gnu.org>
6265
6266 * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
6267 ("Chinese-CNS", "Chinese-EUC-TW"): Add chinese-gbk to
6268 `coding-priority' property of these language environment.
6269
6270 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
6271
6272 Fix glitches caused by addition of psec to timers (Bug#12430).
6273 * image.el (image-animate-timer):
6274 * time.el (display-time-world-timer):
6275 Use timer--function and timer--args rather than raw access to
6276 timer vector.
6277
6278 2012-09-13 Glenn Morris <rgm@gnu.org>
6279
6280 * emacs-lisp/bytecomp.el (byte-compile-warning-prefix):
6281 If not compiling a file, try using load-file-name.
6282
6283 2012-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
6284
6285 * emacs-lisp/edebug.el (edebug-outside-unread-command-events):
6286 Fix last change.
6287 (edebug-update-eval-list): Use `push'.
6288
6289 * emacs-lisp/edebug.el: Use lexical-binding.
6290 Remove the "edebug-" prefix from non-dynamically-scoped variables.
6291 Mark unused args with underscore.
6292 (edebug-save-restriction, edebug-outside-excursion): Use `declare'.
6293 (edebug-form-data): Use defvar-local.
6294 (edebug-make-before-and-after-form, edebug-make-after-form):
6295 Use backquote.
6296 (edebug-args, edebug-value, edebug-after-index, edebug-arg-mode):
6297 Not dynamically scoped any more.
6298 (edebug--enter-trace): Add arguments `function' and `args'.
6299 Rename from edebug-enter-trace.
6300 (edebug-enter): Call it accordingly. Bind edebug-function explicitly.
6301 (edebug--update-coverage): Add `after-index' and `value' args.
6302 Rename from edebug-update-coverage.
6303 (edebug-slow-after): Call it accordingly.
6304 (edebug--recursive-edit): Add arg `arg-mode'. Rename from
6305 edebug-recursive-edit.
6306 (edebug--display): Call it accordingly. Add args `value',
6307 `offset-index', and `arg-mode'. Rename from edebug-display.
6308 (edebug-debugger, edebug): Call it accordingly.
6309 (edebug-eval-display-list): Use dolist.
6310
6311 2012-09-12 Juri Linkov <juri@jurta.org>
6312
6313 * info.el (Info-search): Don't check for isearch-mode and
6314 isearch-regexp before let-binding search-spaces-regexp to
6315 Info-search-whitespace-regexp.
6316 (Info-isearch-search): Let-bind Info-search-whitespace-regexp to
6317 search-whitespace-regexp if isearch-lax-whitespace or
6318 isearch-regexp-lax-whitespace is non-nil.
6319 (Info-mode): Don't set local variable search-whitespace-regexp.
6320 http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00811.html
6321
6322 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
6323
6324 * emacs-lisp/debug.el (debugger-outer-unread-command-char, debug)
6325 (debugger-env-macro): Remove support for unread-command-char.
6326
6327 * subr.el (set-temporary-overlay-map): Minimize slightly the impact of
6328 the temporary map re-appearing on emulation-mode-map-alists.
6329
6330 * emacs-lisp/edebug.el (def-edebug-form-spec): Remove, it's been broken
6331 since 22.1.
6332
6333 * ehelp.el (with-electric-help): Accept functions in
6334 electric-help-form-to-execute.
6335 (electric-help-execute-extended, electric-help-ctrl-x-prefix): Use it.
6336 And replace unread-command-char -> unread-command-events.
6337
6338 2012-09-12 Michael Albinus <michael.albinus@gmx.de>
6339
6340 Sync with Tramp 2.2.6.
6341
6342 * net/tramp.el (tramp-accept-process-output): Don't use
6343 JUST-THIS-ONE in the XEmacs case.
6344
6345 * net/trampver.el: Update release number.
6346
6347 2012-09-12 Martin Rudalics <rudalics@gmx.at>
6348
6349 * emacs-lisp/debug.el (debugger-previous-window-height):
6350 New variable.
6351 (debug): When debugger-jumping-flag is non-nil try to restore
6352 height of debugger window. (Bug#8789)
6353
6354 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
6355
6356 * emacs-lisp/edebug.el (edebug-enter): Don't mess with
6357 overriding-local-map and pre/post-command-hook here.
6358 (edebug-recursive-edit): Do it here instead (bug#12345).
6359 (edebug-outside-unread-command-char): Remove all uses of
6360 unread-command-char.
6361
6362 * emacs-lisp/debug.el (debug): Don't bind debug-on-error since
6363 inhibit-debugger is bound instead.
6364
6365 2012-09-11 Bastien Guerry <bzg@gnu.org>
6366
6367 * subr.el (set-temporary-overlay-map): Add a docstring.
6368 (Bug#12346)
6369
6370 2012-09-11 Bastien Guerry <bzg@gnu.org>
6371
6372 * minibuffer.el (completion-table-subvert): Fix docstring.
6373 (Bug#12347)
6374
6375 2012-09-11 Bastien Guerry <bzg@gnu.org>
6376
6377 * help-fns.el (describe-variable): Fix typo. (Bug#12346)
6378
6379 2012-09-10 Michael R. Mauger <mmaug@yahoo.com>
6380
6381 * progmodes/sql.el: Version 3.1
6382 (sql-db2-escape-newlines): New variable.
6383 (sql-escape-newlines-filter): Use it.
6384
6385 2012-09-10 Juanma Barranquero <lekktu@gmail.com>
6386
6387 * custom.el (custom-theme-load-confirm): Remove unneeded assignment.
6388
6389 2012-09-10 Dan Nicolaescu <dann@gnu.org>
6390
6391 * vc/diff-mode.el (diff-mode-menu):
6392 Bind diff-remove-trailing-whitespace.
6393
6394 2012-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
6395
6396 * emacs-lisp/lisp-mode.el (emacs-list-byte-code-comment-re): New var.
6397 (emacs-lisp-byte-code-comment, emacs-lisp-byte-code-syntax-propertize)
6398 (emacs-lisp-byte-code-mode): New functions.
6399 (eval-sexp-add-defvars): Don't skip defvars in column >0.
6400 (eval-defun-2): Remove bogus interactive spec.
6401 (lisp-indent-line): Remove redundant whole-exp code, now done in
6402 indent-according-to-mode.
6403 (save-match-data): Remove redundant indent data.
6404
6405 * emacs-lisp/benchmark.el (benchmark-run, benchmark-run-compiled):
6406 Use `declare'.
6407
6408 2012-09-09 Juri Linkov <juri@jurta.org>
6409
6410 * replace.el (replace-regexp-lax-whitespace): New defcustom.
6411 (replace-lax-whitespace, query-replace-regexp)
6412 (query-replace-regexp-eval, replace-regexp): Doc fix.
6413 (perform-replace, replace-highlight): Let-bind
6414 isearch-lax-whitespace to replace-lax-whitespace and
6415 isearch-regexp-lax-whitespace to replace-regexp-lax-whitespace.
6416
6417 * isearch.el (isearch-query-replace): Let-bind
6418 replace-lax-whitespace to isearch-lax-whitespace and
6419 replace-regexp-lax-whitespace to
6420 isearch-regexp-lax-whitespace. (Bug#10885)
6421
6422 2012-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
6423
6424 * eshell/em-unix.el (eshell/sudo): Explicitly drop return value.
6425
6426 2012-09-09 Alan Mackenzie <acm@muc.de>
6427
6428 * progmodes/cc-engine.el (c-state-cache-init):
6429 Initialise c-state-semi-nonlit-pos-cache\(-limit\)? properly.
6430 (c-record-parse-state-state):
6431 Record c-state-semi-nonlit-pos-cache\(-limit\)?.
6432
6433 2012-09-09 Andreas Schwab <schwab@linux-m68k.org>
6434
6435 * register.el (register-separator): Rename from
6436 separator-register. All uses changed. Doc fix.
6437 (register): Fix version.
6438
6439 2012-09-09 Chong Yidong <cyd@gnu.org>
6440
6441 * replace.el (query-replace-map): Bind four new symbols for
6442 requesting window scrolling.
6443
6444 * subr.el (y-or-n-p): Handle the window-scrolling bindings in
6445 query-replace-map (Bug#8948).
6446
6447 * custom.el (custom-theme-load-confirm): Use y-or-n-p.
6448
6449 * emacs-lisp/map-ynp.el (map-y-or-n-p): Don't bind scrolling keys
6450 since they are now in query-replace-map.
6451
6452 * window.el (scroll-other-window-down): Make the arg optional.
6453
6454 2012-09-09 Chong Yidong <cyd@gnu.org>
6455
6456 * files.el (hack-local-variables-confirm): Use quit-window to kill
6457 the *Local Variables* buffer.
6458
6459 2012-09-08 Dmitry Gutov <dgutov@yandex.ru>
6460
6461 * progmodes/ruby-mode.el (ruby-toggle-block): Guess the current block,
6462 not just expect to be at its beginning. Adjust callees.
6463 Succeed when do-end block has no space before the pipe character.
6464 (ruby-brace-to-do-end): When the original block is one-liner,
6465 convert to multiline. Reindent the result.
6466
6467 2012-09-08 Jambunathan K <kjambunathan@gmail.com>
6468
6469 * register.el (register): New group.
6470 (separator-register): New user option.
6471 (increment-register): Route it to `append-to-register', if
6472 register contains text. Implication is that `C-x r +' can now be
6473 used for appending to a text register (bug#12217).
6474 (append-to-register, prepend-to-register): Add separator based on
6475 `separator-register'.
6476
6477 2012-09-08 Alan Mackenzie <acm@muc.de>
6478
6479 AWK Mode: make auto-newline work when there's "==" in the pattern.
6480 * progmodes/cc-cmds.el (c-point-syntax): Handle virtual semicolons
6481 correctly.
6482 * progmodes/cc-engine.el (c-guess-basic-syntax CASE 5A.3):
6483 Test more rigorously for "=" token.
6484
6485 2012-09-08 Dmitry Gutov <dgutov@yandex.ru>
6486
6487 * progmodes/ruby-mode.el (ruby-match-expression-expansion):
6488 Only fail when reached LIMIT.
6489
6490 2012-09-08 Chong Yidong <cyd@gnu.org>
6491
6492 * dired.el (dired-mode-map): Don't bind M-=.
6493
6494 * dired-aux.el (dired-diff): Use backup file as default.
6495
6496 2012-09-08 Drew Adams <drew.adams@oracle.com>
6497
6498 * subr.el (add-to-history): Fix delete usage (Bug#12314).
6499
6500 2012-09-08 Chong Yidong <cyd@gnu.org>
6501
6502 * subr.el (syntax-after, syntax-class): Doc fix.
6503
6504 2012-09-08 Martin Rudalics <rudalics@gmx.at>
6505
6506 * window.el (display-buffer-in-previous-window): New buffer
6507 display action function.
6508
6509 * emacs-lisp/debug.el (debugger-bury-or-kill): New option.
6510 (debugger-previous-window): New variable.
6511 (debug): Rewrite using display-buffer-in-previous-window,
6512 quit-restore-window and debugger-bury-or-kill. (Bug#8789)
6513
6514 2012-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
6515
6516 * emacs-lisp/byte-run.el (defun): Tweak message. Simplify code.
6517
6518 2012-09-07 Matt McClure <mlm@aya.yale.edu> (tiny change)
6519
6520 * progmodes/python.el (python-shell-send-string):
6521 When default-directory is remote, create temp file on remote
6522 filesystem.
6523 (python-shell-send-file): When file is remote, pass local view of
6524 file paths to remote Python interpreter. (Bug#12340)
6525
6526 2012-09-07 Chong Yidong <cyd@gnu.org>
6527
6528 * window.el (switch-to-buffer): Doc fix (Bug#12181).
6529
6530 * files.el (after-find-file): Don't fail on a read-only buffer if
6531 require-final-newline is `visit' or `visit-save' (Bug#11156).
6532
6533 * subr.el (read-char-choice): Allow quitting via ESC ESC.
6534
6535 * userlock.el (ask-user-about-supersession-threat):
6536 Use read-char-choice (Bug#12093).
6537
6538 2012-09-07 Chong Yidong <cyd@gnu.org>
6539
6540 * subr.el (buffer-narrowed-p): New function.
6541
6542 * ses.el (ses-widen):
6543 * simple.el (count-words--buffer-message):
6544 * net/browse-url.el (browse-url-of-buffer): Use it.
6545
6546 * simple.el (count-words-region): Don't signal an error if there
6547 is a non-nil prefix arg and the mark is not set.
6548
6549 * help.el (describe-key-briefly): Allow the message to be seen
6550 when invoked from the minibuffer (Bug#7014).
6551
6552 2012-09-07 Dmitry Gutov <dgutov@yandex.ru>
6553
6554 * progmodes/ruby-mode.el (ruby-end-of-defun)
6555 (ruby-beginning-of-defun): Simplify, allow indentation before
6556 block beginning and end keywords.
6557 (ruby-beginning-of-defun): Only consider 3 keywords defun beginners.
6558 (ruby-end-of-defun): Expect that the point is at the beginning of
6559 the defun.
6560
6561 2012-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
6562
6563 * emacs-lisp/cl-macs.el (cl--do-arglist): Understand _ on &key args
6564 (bug#12367).
6565 (cl--make-usage-args): Strip _ from argument names.
6566
6567 2012-09-06 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
6568
6569 * progmodes/vhdl-mode.el (vhdl-speedbar-initialize): Don't use
6570 obsolete alias speedbar-key-map.
6571 (vhdl-doc-variable, vhdl-doc-mode): Use called-interactively-p.
6572 (vhdl-index-menu-init): Don't use obsolete variable
6573 font-lock-maximum-size.
6574
6575 2012-09-06 Chong Yidong <cyd@gnu.org>
6576
6577 * frame.el (window-system-version): Mark as obsolete.
6578
6579 * speedbar.el (speedbar-update-flag, speedbar-mode): Remove uses
6580 of obsolete variable speedbar-key-map.
6581
6582 2012-09-06 Juri Linkov <juri@jurta.org>
6583
6584 * replace.el (replace-lax-whitespace): New defcustom.
6585 (query-replace, query-replace-regexp, query-replace-regexp-eval)
6586 (replace-string, replace-regexp): Mention it in docstrings.
6587 (perform-replace, replace-highlight): Let-bind
6588 isearch-lax-whitespace and isearch-regexp-lax-whitespace according
6589 to the values of replace-lax-whitespace and regexp-flag.
6590 Don't let-bind search-whitespace-regexp. (Bug#10885)
6591
6592 * isearch.el (isearch-query-replace): Let-bind
6593 replace-lax-whitespace instead of let-binding
6594 replace-search-function and replace-re-search-function.
6595 (isearch-lazy-highlight-search): Let-bind isearch-lax-whitespace
6596 and isearch-regexp-lax-whitespace to lazy-highlight variables.
6597 (isearch-toggle-symbol): Set isearch-regexp to nil
6598 in isearch-word mode (like in isearch-toggle-word).
6599
6600 2012-09-06 Juri Linkov <juri@jurta.org>
6601
6602 * replace.el (replace-search-function)
6603 (replace-re-search-function): Set default values to nil.
6604 (perform-replace): Let-bind isearch-related variables based on
6605 replace-related values, call `isearch-search-fun' and let-bind
6606 the result to `search-function'. Remove code that sets
6607 `search-function' and `search-string' separately for
6608 `delimited-flag'.
6609 (replace-highlight): Add new argument `delimited-flag' and
6610 rename other arguments to the names used in `perform-replace'.
6611 Let-bind `isearch-word' to the argument `delimited-flag'.
6612 (Bug#10885, bug#10887)
6613
6614 2012-09-07 Dmitry Gutov <dgutov@yandex.ru>
6615
6616 * progmodes/ruby-mode.el (ruby-indent-beg-re): Add pieces from
6617 ruby-beginning-of-indent, simplify, allow all keywords to have
6618 indentation before them.
6619 (ruby-beginning-of-indent): Adjust for above. Search until the
6620 found point is not inside a string or comment.
6621 (ruby-font-lock-keywords): Allow symbols to start with "@"
6622 character, give them higher priority than variables.
6623 (ruby-syntax-propertize-function)
6624 (ruby-font-lock-syntactic-keywords): Remove the "not comments"
6625 matchers. Expression expansions are not comments when inside a
6626 string, and there comment syntax status is irrelevant.
6627 (ruby-match-expression-expansion): New function. Check that
6628 expression expansion is inside a string, and it's not escaped.
6629 (ruby-font-lock-keywords): Use it.
6630
6631 2012-09-05 Martin Rudalics <rudalics@gmx.at>
6632
6633 * help.el (temp-buffer-max-height): New default value.
6634 (temp-buffer-resize-frames): New option.
6635 (resize-temp-buffer-window): Optionally resize frame.
6636
6637 * window.el (fit-frame-to-buffer-bottom-margin): New option.
6638 (fit-frame-to-buffer): New function.
6639
6640 2012-09-05 Glenn Morris <rgm@gnu.org>
6641
6642 * emulation/cua-rect.el (cua--init-rectangles):
6643 * textmodes/picture.el (picture-mode-map):
6644 * play/blackbox.el (blackbox-mode-map): Remap right-char and left-char
6645 like forward-char and backward-char. (Bug#12317)
6646
6647 2012-09-05 Leo Liu <sdl.web@gmail.com>
6648
6649 * progmodes/flymake.el (flymake-warning-re): New variable.
6650 (flymake-parse-line): Use it.
6651
6652 2012-09-05 Glenn Morris <rgm@gnu.org>
6653
6654 * calendar/holidays.el (holiday-christian-holidays):
6655 Rename an entry. (Bug#12289)
6656
6657 2012-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
6658
6659 * progmodes/sh-script.el (sh-font-lock-paren): Don't burp at BOB
6660 (bug#12222).
6661
6662 2012-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
6663
6664 * loadup.el: Load macroexp. Remove hack.
6665 * emacs-lisp/macroexp.el (macroexp--eval-if-compile): New function.
6666 (macroexp--expand-all): Use it to get better warnings.
6667 (macroexp--backtrace, macroexp--trim-backtrace-frame)
6668 (internal-macroexpand-for-load): New functions.
6669 (macroexp--pending-eager-loads): New var.
6670 (emacs-startup-hook): New hack to replace one in loadup.el.
6671 * emacs-lisp/cl-macs.el (cl--compiler-macro-list*)
6672 (cl--compiler-macro-cXXr): Move to top, before they can be used.
6673 (cl-psetf): Simplify.
6674 (cl-defstruct): Add indent rule.
6675
6676 2012-09-04 Lars Ingebrigtsen <larsi@gnus.org>
6677
6678 * mail/smtpmail.el (smtpmail-send-it): Prefer the From: header
6679 over `user-mail-address' for the SMTP MAIL FROM envelope.
6680 (smtpmail-via-smtp): Ditto.
6681
6682 2012-09-04 Dmitry Gutov <dgutov@yandex.ru>
6683
6684 * progmodes/ruby-mode.el: Clean up keybindings.
6685 (ruby-mode-map): Don't bind ruby-electric-brace,
6686 ruby-beginning-of-defun, ruby-end-of-defun, ruby-mark-defun,
6687 backward-kill-word, reindent-then-newline-and-indent.
6688 (ruby-mark-defun): Remove.
6689 (ruby-electric-brace): Remove. Obsoleted by electric-indent-chars.
6690 (ruby-mode): Set local beginning-of-defun-function and
6691 end-of-defun-function values.
6692
6693 2012-09-03 Martin Rudalics <rudalics@gmx.at>
6694
6695 * window.el (temp-buffer-window-setup-hook)
6696 (temp-buffer-window-show-hook): New hooks.
6697 (temp-buffer-window-setup, temp-buffer-window-show)
6698 (with-temp-buffer-window): New functions.
6699 (fit-window-to-buffer): Remove unused optional argument OVERRIDE.
6700 (special-display-popup-frame): Make sure the window used shows BUFFER.
6701
6702 * help.el (temp-buffer-resize-mode): Fix doc-string.
6703 (resize-temp-buffer-window): New optional argument WINDOW.
6704
6705 * files.el (recover-file, save-buffers-kill-emacs):
6706 * dired.el (dired-mark-pop-up): Use with-temp-buffer-window.
6707
6708 2012-09-02 Michael Albinus <michael.albinus@gmx.de>
6709
6710 * eshell/em-unix.el (eshell/sudo): When we have an ad-hoc
6711 remote definition of `default-directory', ensure we can connect.
6712
6713 2012-09-02 Juri Linkov <juri@jurta.org>
6714
6715 Toggle whitespace matching mode with M-s SPC.
6716 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00008.html
6717
6718 * isearch.el (search-whitespace-regexp): Doc fix.
6719 Remove cons cell customization.
6720 (isearch-mode-map): Bind "\M-s " to isearch-toggle-lax-whitespace.
6721 (isearch-lax-whitespace, isearch-regexp-lax-whitespace):
6722 New variables.
6723 (isearch-forward, isearch-forward-regexp): Doc fix.
6724 (isearch-toggle-lax-whitespace): New command.
6725 (search-forward-lax-whitespace, search-backward-lax-whitespace)
6726 (re-search-forward-lax-whitespace)
6727 (re-search-backward-lax-whitespace): New functions.
6728 (isearch-whitespace-regexp): Remove function.
6729 (isearch-query-replace): Let-bind replace-search-function and
6730 replace-re-search-function.
6731 (isearch-occur): Let-bind search-spaces-regexp according to the
6732 value of isearch-lax-whitespace and isearch-regexp-lax-whitespace.
6733 (isearch-quote-char): Check isearch-regexp-lax-whitespace in the
6734 condition for C-q SPC.
6735 (isearch-search-fun-default): Use new functions mentioned above.
6736 (isearch-search-forward, isearch-search-backward): Remove functions.
6737 (isearch-search): Don't let-bind search-spaces-regexp.
6738 (isearch-lazy-highlight-space-regexp): Remove variable.
6739 (isearch-lazy-highlight-lax-whitespace)
6740 (isearch-lazy-highlight-regexp-lax-whitespace): New variables.
6741 (isearch-lazy-highlight-new-loop): Use them.
6742 (isearch-lazy-highlight-search): Don't let-bind search-spaces-regexp.
6743
6744 2012-09-02 Chong Yidong <cyd@gnu.org>
6745
6746 * dired.el (dired-mode-map): Menu string fixes (Bug#11616).
6747
6748 2012-09-02 Glenn Morris <rgm@gnu.org>
6749
6750 * simple.el (undo): Tweak message in undo-only case. (Bug#12283)
6751
6752 2012-09-01 Glenn Morris <rgm@gnu.org>
6753
6754 * term.el: Tidy up menu definitions.
6755 (term-mode-map): Use easymenu for In/Out, Complete menus.
6756 (term-pager-break-map): Initialize in the defvar.
6757 (term-terminal-menu, term-signals-menu): Define with easymenu.
6758 (term-terminal-menu): Also show it in line-mode. (Bug#11957)
6759 (term-pager-menu): New, extracted from term-process-pager.
6760 (term-mode, term-char-mode, term-process-pager): Use easymenu-add.
6761 (term-update-mode-line): Propertize line/char and page items.
6762 (term-process-pager): Move keymap initialization elsewhere.
6763
6764 2012-09-01 Martin Rudalics <rudalics@gmx.at>
6765
6766 * window.el (switch-to-prev-buffer): Handle additional values of
6767 BURY-OR-KILL argument. Don't switch in minibuffer window.
6768 (switch-to-next-buffer): Don't switch in minibuffer window.
6769 (quit-restore-window): New function based on quit-window.
6770 Handle additional values of former KILL argument.
6771 (quit-window): Call quit-restore-window with appropriate
6772 interpretation of KILL argument.
6773 (display-buffer-below-selected): New buffer display action
6774 function.
6775
6776 2012-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
6777
6778 * minibuffer.el (completion-at-point-functions): Complete docstring
6779 (bug#12254).
6780
6781 2012-09-01 Paul Eggert <eggert@cs.ucla.edu>
6782
6783 Better seed support for (random).
6784 * play/5x5.el, play/animate.el, play/cookie1.el, play/dissociate.el:
6785 * play/doctor.el, play/dunnet.el, play/gomoku.el, play/landmark.el:
6786 * play/mpuz.el, play/tetris.el, play/zone.el:
6787 * calc/calc-comb.el (math-init-random-base):
6788 * play/blackbox.el (bb-init-board):
6789 * play/life.el (life):
6790 * server.el (server-use-tcp):
6791 * type-break.el (type-break):
6792 Remove unnecessary call to (random t).
6793 * net/sasl.el (sasl-unique-id-function):
6794 Change (random t) to (random), now that the latter is more random.
6795 * play/life.el (life-initialized): Remove no-longer-needed var.
6796
6797 2012-08-31 Alp Aker <alp.tekin.aker@gmail.com>
6798
6799 * window.el (switch-to-prev-buffer, switch-to-next-buffer):
6800 Consider frame's buffer predicate when choosing the buffer.
6801 (Bug#12081)
6802
6803 2012-08-30 Richard Stallman <rms@gnu.org>
6804
6805 * simple.el (special-mode-map): Delete binding for `z'.
6806
6807 2012-08-30 Andreas Schwab <schwab@linux-m68k.org>
6808
6809 * progmodes/compile.el (compilation-always-kill): Doc fix.
6810
6811 2012-08-30 Chong Yidong <cyd@gnu.org>
6812
6813 * window.el (display-buffer-reuse-frames): Make the obsolescence
6814 message more informative.
6815
6816 2012-08-30 Glenn Morris <rgm@gnu.org>
6817
6818 * paren.el (show-paren-delay):
6819 Add a :set function. Doc fix. (Bug#12297)
6820
6821 2012-08-29 Martin Blais <blais@furius.ca> (tiny change)
6822
6823 * progmodes/compile.el (compilation-always-kill): New var.
6824 (compilation-start): Use it.
6825
6826 2012-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
6827
6828 * simple.el (read-only-mode): Move from files.el for bootstrapping.
6829 * files.el (read-only-mode): Move to simple.el.
6830
6831 * files.el (read-only-mode): New minor mode.
6832 (toggle-read-only): Use it and mark obsolete.
6833 (find-file--read-only):
6834 * vc/vc.el (vc-next-action, vc-checkout):
6835 * vc/vc-cvs.el (vc-cvs-checkout):
6836 * obsolete/vc-mcvs.el (vc-mcvs-update):
6837 * ffap.el (ffap--toggle-read-only): Update callers.
6838
6839 2012-08-29 Michael Albinus <michael.albinus@gmx.de>
6840
6841 * eshell/esh-ext.el (eshell-external-command): Do not examine
6842 remote shell scripts.
6843 See <https://bugs.launchpad.net/ubuntu/+source/emacs23/+bug/1035790>.
6844
6845 * net/tramp-sh.el (tramp-remote-path): Add "/sbin" and
6846 "/usr/local/sbin".
6847
6848 2012-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
6849
6850 * emacs-lisp/cl-lib.el (buffer-string): Fix setter macro (bug#12293).
6851
6852 2012-08-28 Leo Liu <sdl.web@gmail.com>
6853
6854 * progmodes/sh-script.el (sh-dynamic-complete-functions): Adapt to
6855 completion-at-point. (Bug#12220)
6856
6857 * skeleton.el (skeleton-untabify): Change to nil (bug#12223).
6858
6859 * progmodes/sh-script.el (sh-indent-comment): Change to t (bug#12267).
6860
6861 2012-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
6862
6863 * files.el (safe-local-eval-forms): Fix before-save-hook entry to
6864 be buffer-local; add delete-trailing-whitespace (bug#12259).
6865
6866 2012-08-28 Jeremy Moore <jmoore@ieee.org> (tiny change)
6867
6868 * progmodes/hideif.el (hif-compress-define-list):
6869 Fix typo. (Bug#11951)
6870
6871 2012-08-28 Dan Nicolaescu <dann@gnu.org>
6872
6873 * progmodes/hideshow.el (hs-block-end-regexp): Restore lost
6874 buffer local setting.
6875
6876 * net/rcirc.el (rcirc-split-message): Fix for buffer-local
6877 rcirc-encode-coding-system.
6878
6879 2012-08-28 Leo Liu <sdl.web@gmail.com>
6880
6881 * net/rcirc.el (rcirc-split-message): New function.
6882 (rcirc-send-message): Use it. (Bug#12051)
6883
6884 2012-08-28 Juri Linkov <juri@jurta.org>
6885
6886 * info.el (Info-fontify-node): Hide empty lines at the end of
6887 the node. (Bug#12272)
6888
6889 2012-08-27 Drew Adams <drew.adams@oracle.com>
6890
6891 * dired.el (dired-pop-to-buffer): Make window start at beginning
6892 of buffer (Bug#12281).
6893
6894 2012-08-26 Chong Yidong <cyd@gnu.org>
6895
6896 * window.el (special-display-regexps, special-display-frame-alist)
6897 (special-display-buffer-names, special-display-function)
6898 (display-buffer-reuse-frames): Mark as obsolete.
6899
6900 * progmodes/compile.el: Don't use display-buffer-reuse-frames.
6901
6902 * help.el (help-print-return-message): Don't treat
6903 display-buffer-reuse-frames specially.
6904
6905 2012-08-26 Chong Yidong <cyd@gnu.org>
6906
6907 * progmodes/gdb-mi.el (gdb-display-buffer-other-frame-action):
6908 New variable, replacing gdb-frame-parameters.
6909 (gdb-frame-io-buffer, gdb-frame-breakpoints-buffer)
6910 (gdb-frame-threads-buffer, gdb-frame-memory-buffer)
6911 (gdb-frame-disassembly-buffer, gdb-frame-stack-buffer)
6912 (gdb-frame-locals-buffer, gdb-frame-registers-buffer): Use it.
6913 (def-gdb-frame-for-buffer): Macro deleted. It is easier to define
6914 the functions directly with gdb-display-buffer-other-frame-action.
6915 (gdb-display-breakpoints-buffer, gdb-display-threads-buffer)
6916 (gdb-display-memory-buffer, gdb-display-disassembly-buffer)
6917 (gdb-display-stack-buffer, gdb-display-locals-buffer)
6918 (gdb-display-registers-buffer): Define directly.
6919 (def-gdb-display-buffer): Macro deleted.
6920 (gdb-display-buffer): Remove second and third args, callers don't
6921 use them. Defer to the default display-buffer behavior, apart
6922 from making windows dedicated.
6923 (gdb-setup-windows): Don't call display-buffer unnecessarily.
6924
6925 * progmodes/gud.el (gud-display-line): Just use display-buffer.
6926
6927 * window.el (display-buffer-pop-up-frame): Handle a
6928 pop-up-frame-parameters alist entry.
6929 (display-buffer): Document it.
6930
6931 2012-08-26 Chong Yidong <cyd@gnu.org>
6932
6933 * isearch.el (search-whitespace-regexp): Make string and nil
6934 values apply to both ordinary and regexp search. Allow a cons
6935 cell value to distinguish between the two.
6936 (isearch-whitespace-regexp, isearch-search-forward)
6937 (isearch-search-backward): New functions.
6938 (isearch-occur, isearch-search-fun-default, isearch-search)
6939 (isearch-lazy-highlight-new-loop): Use them.
6940 (isearch-forward, isearch-forward-regexp): Doc fix.
6941
6942 2012-08-26 Chong Yidong <cyd@gnu.org>
6943
6944 * faces.el (help-argument-name): Always inherit from italic
6945 (Bug#12213).
6946
6947 2012-08-25 Martin Rudalics <rudalics@gmx.at>
6948
6949 * window.el (window--even-window-heights): Even heights when
6950 WINDOW and the selected window form a vertical combination.
6951 (display-buffer-use-some-window): Provide that window used gets
6952 sized back by quit-window. (Bug#11880) and (Bug#12091)
6953
6954 2012-08-24 Paul Eggert <eggert@cs.ucla.edu>
6955
6956 Fix file time stamp problem with bzr and CVS (Bug#12001).
6957 * vc/vc-cvs.el (vc-cvs-parse-entry): Ignore subsecond information
6958 in the file's time stamp, since the version control system loses
6959 that information.
6960
6961 2012-08-22 Juri Linkov <juri@jurta.org>
6962
6963 * info.el (Info-fontify-node): Hide the suffix of the
6964 Info file name in the header line. (Bug#12187)
6965
6966 2012-08-22 Glenn Morris <rgm@gnu.org>
6967
6968 * calendar/cal-tex.el (cal-tex-weekly-common):
6969 Restore leading blank page.
6970
6971 2012-08-22 Le Wang <l26wang@gmail.com>
6972
6973 * misc.el (forward-to-word, backward-to-word): Activate or extend
6974 the region under `shift-select-mode'. (Bug#12231)
6975
6976 2012-08-22 Bastien Guerry <bzg@gnu.org>
6977
6978 * progmodes/executable.el (executable-prefix): Set to "#!" instead
6979 of "#! ". http://www.in-ulm.de/~mascheck/various/shebang/#details
6980 gives details on why the space is never needed.
6981
6982 2012-08-22 Martin Rudalics <rudalics@gmx.at>
6983
6984 * window.el (walk-window-tree, window-with-parameter):
6985 New optional argument MINIBUF to control whether these functions
6986 should run on the minibuffer window.
6987 (window-at-side-list): Don't operate on minibuffer window.
6988 (window-in-direction): Simplify and rewrite doc-string.
6989 (window--size-ignore): Rename to window--size-ignore-p.
6990 Update callers.
6991 (display-buffer-in-atom-window, window--major-non-side-window)
6992 (window--major-side-window, display-buffer-in-major-side-window)
6993 (delete-side-window, display-buffer-in-side-window):
6994 New functions.
6995 (window--side-check, window-deletable-p, delete-window)
6996 (delete-other-windows, split-window): Handle side windows and
6997 atomic windows appropriately.
6998 (window--display-buffer): Call display-buffer-record-window also
6999 when the window buffer did not change.
7000
7001 2012-08-22 Christopher Schmidt <christopher@ch.ristopher.com>
7002
7003 * help-fns.el (help-fns--key-bindings):
7004 Abbreviate non-symbol remap targets. (Bug#12174)
7005
7006 2012-08-22 Martin Rudalics <rudalics@gmx.at>
7007
7008 * dired.el (dired-mark-remembered): Don't clobber point.
7009 (Bug#11795)
7010
7011 2012-08-22 Glenn Morris <rgm@gnu.org>
7012
7013 * progmodes/bug-reference.el (bug-reference): New custom group.
7014 (bug-reference-bug-regexp): Make it a defcustom.
7015
7016 2012-08-22 Daiki Ueno <ueno@unixuser.org>
7017
7018 * progmodes/js.el (js-indent-level, js-expr-indent-offset)
7019 (js-paren-indent-offset, js-square-indent-offset)
7020 (js-curly-indent-offset): Add :safe (Bug#12257).
7021
7022 2012-08-22 Edward O'Connor <hober0@gmail.com>
7023
7024 * json.el (json-key-format): Add error properties.
7025 (json-encode-key): New function.
7026 (json-encode-hash-table, json-encode-alist, json-encode-plist):
7027 Use json-encode-key.
7028
7029 2012-08-22 Glenn Morris <rgm@gnu.org>
7030
7031 * calendar/cal-tex.el (cal-tex-longday): New function, replacing...
7032 (cal-tex-leftday, cal-tex-rightday): Remove functions.
7033 (cal-tex-weekly-common, cal-tex-cursor-filofax-2week):
7034 Update for above change.
7035
7036 2012-08-21 Andreas Schwab <schwab@linux-m68k.org>
7037
7038 * cus-face.el (custom-face-attributes): Fix customize type for the
7039 :underline attribute. (Bug#11805)
7040
7041 2012-08-21 Martin Rudalics <rudalics@gmx.at>
7042
7043 * window.el (window-point-1, set-window-point-1): Remove.
7044 (window-in-direction, record-window-buffer)
7045 (set-window-buffer-start-and-point, split-window-below)
7046 (window--state-get-1, display-buffer-record-window):
7047 Replace calls to window-point-1 and set-window-point-1 by calls to
7048 window-point and set-window-point respectively.
7049
7050 2012-08-21 Glenn Morris <rgm@gnu.org>
7051
7052 * calendar/cal-tex.el (cal-tex-weekly-common): New function.
7053 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-week):
7054 Use it.
7055
7056 * calendar/cal-tex.el (cal-tex-rightday): Add optional funcname arg.
7057 (cal-tex-shortday): New function.
7058 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-week)
7059 (cal-tex-cursor-filofax-daily): Use the above.
7060
7061 * calendar/cal-tex.el (cal-tex-leftday, cal-tex-rightday):
7062 New functions.
7063 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-2week)
7064 (cal-tex-cursor-filofax-week): Use them.
7065
7066 * calendar/cal-tex.el (cal-tex-lefthead, cal-tex-righthead):
7067 New constants.
7068 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-2week)
7069 (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily): Use them.
7070
7071 * calendar/cal-tex.el (cal-tex-preamble): Generate new buffers.
7072 (cal-tex-end-document): Don't rely on buffer name.
7073
7074 * calendar/cal-tex.el (cal-tex-cursor-filofax-year):
7075 Use cal-tex-vspace.
7076 (cal-tex-vspace, cal-tex-hspace, cal-tex-em, cal-tex-bf)
7077 (cal-tex-Huge-bf, cal-tex-large-bf): Use cal-tex-cmd.
7078 (cal-tex-scriptsize, cal-tex-huge, cal-tex-Huge, cal-tex-large):
7079 Use cal-tex-arg.
7080
7081 * calendar/cal-tex.el (cal-tex-cursor-filofax-year)
7082 (cal-tex-cursor-week, cal-tex-cursor-week2)
7083 (cal-tex-cursor-week-iso, cal-tex-cursor-week-at-a-glance)
7084 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
7085 (cal-tex-cursor-filofax-daily, cal-tex-cursor-day)
7086 (cal-tex-insert-preamble, cal-tex-b-document)
7087 (cal-tex-e-document, cal-tex-b-center, cal-tex-e-center):
7088 Improve cal-tex-cmd usage.
7089
7090 * calendar/cal-tex.el (cal-tex-filofax-paper): New function.
7091 (cal-tex-cursor-filofax-year, cal-tex-cursor-filofax-2week)
7092 (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily): Use it.
7093 (cal-tex-weekly-paper): New function.
7094 (cal-tex-cursor-week, cal-tex-cursor-week2)
7095 (cal-tex-cursor-week-iso, cal-tex-cursor-week-monday)
7096 (cal-tex-cursor-day): Use it.
7097
7098 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance)
7099 (cal-tex-cursor-filofax-week): Remove leading blank page.
7100
7101 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance):
7102 Add autoload cookie. For now at least, don't use color, since
7103 no other cal-tex function does.
7104
7105 * calendar/cal-tex.el (cal-tex-cursor-week-iso)
7106 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
7107 (cal-tex-cursor-filofax-daily): Correct start date for diary entries.
7108
7109 2012-08-21 Juri Linkov <juri@jurta.org>
7110
7111 * info.el (Info-file-attributes): New variable.
7112 (info-insert-file-contents): Add file attributes to
7113 `Info-file-attributes'. Clear the caches `Info-index-nodes' and
7114 `Info-toc-nodes' when previous modtime of the Info file is less
7115 than new modtime.
7116 (Info-toc-nodes, Info-index-nodes): Move definitions up to the top
7117 of info.el. (Bug#12230)
7118
7119 2012-08-20 Glenn Morris <rgm@gnu.org>
7120
7121 * calendar/diary-lib.el (diary-include-files, diary-sexp-entry):
7122 * calendar/holidays.el (calendar-holiday-list):
7123 Report errors with display-warning rather than beep'n'sleep.
7124
7125 2012-08-20 Michael Albinus <michael.albinus@gmx.de>
7126
7127 * net/tramp.el (tramp-accept-process-output): Accept only output
7128 from PROC. Otherwise, process filters and sentinels might be
7129 confused. (Bug#12145)
7130
7131 2012-08-20 Chong Yidong <cyd@gnu.org>
7132
7133 * descr-text.el (describe-text-properties-1): Use overlays-in to
7134 report on empty overlays (Bug#3322).
7135
7136 2012-08-20 Glenn Morris <rgm@gnu.org>
7137
7138 * mail/rmailout.el (rmail-output-read-file-name):
7139 Trap and report errors in rmail-output-file-alist elements.
7140
7141 * font-lock.el (font-lock-add-keywords): Doc fix (quote face names
7142 since most non-font-lock faces are not also variables).
7143
7144 2012-08-20 Edward Reingold <reingold@iit.edu>
7145
7146 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance):
7147 New function. (Bug12160)
7148
7149 2012-08-19 Glenn Morris <rgm@gnu.org>
7150
7151 * mail/rmailout.el (rmail-output-read-file-name):
7152 Fix previous change (when the alist is nil or does not match).
7153
7154 2012-08-19 Chong Yidong <cyd@gnu.org>
7155
7156 * xml.el (xml-escape-string): Don't refer to xml-entity-alist
7157 (Bug#12228).
7158
7159 2012-08-18 Chong Yidong <cyd@gnu.org>
7160
7161 * simple.el (yank-handled-properties): New defcustom.
7162 (yank-excluded-properties): Add font-lock-face and category.
7163 (yank): Doc fix.
7164
7165 * subr.el (remove-yank-excluded-properties):
7166 Obey yank-handled-properties. The special handling of font-lock-face
7167 and category is now done this way, instead of being hard-coded.
7168 (insert-for-yank-1): Remove font-lock-face handling.
7169 (yank-handle-font-lock-face-property)
7170 (yank-handle-category-property): New function.
7171
7172 2012-08-17 Glenn Morris <rgm@gnu.org>
7173
7174 * mail/rmailout.el (rmail-output-read-file-name):
7175 Check rmail-output-file-alist against the full message body
7176 in the correct rmail buffer. (Bug#12214)
7177
7178 2012-08-17 Michael Albinus <michael.albinus@gmx.de>
7179
7180 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
7181 Eliminate superfluous prompt. (Bug#12203)
7182
7183 2012-08-17 Chong Yidong <cyd@gnu.org>
7184
7185 * mouse.el (mouse-appearance-menu): If x-select-font returns a
7186 font spec, set the font directly (Bug#3228).
7187
7188 2012-08-17 Martin Rudalics <rudalics@gmx.at>
7189
7190 * window.el (delete-window): Fix last fix.
7191
7192 2012-08-16 Martin Rudalics <rudalics@gmx.at>
7193
7194 * window.el (window-valid-p): Move to window.c.
7195 (window-child, window-child-count, window-last-child)
7196 (window-normalize-window, window-combined-p)
7197 (window-combinations, window-atom-root, window-min-size)
7198 (window-sizable, window-sizable-p, window-size-fixed-p)
7199 (window-min-delta, window-max-delta, window--resizable)
7200 (window--resizable-p, window-resizable, window-total-size)
7201 (window-full-height-p, window-full-width-p, window-body-size)
7202 (window-at-side-p, adjust-window-trailing-edge, maximize-window)
7203 (minimize-window, window-deletable-p, delete-window)
7204 (delete-other-windows, set-window-buffer-start-and-point)
7205 (next-buffer, previous-buffer, split-window, balance-windows-2)
7206 (set-window-text-height, window-buffer-height)
7207 (fit-window-to-buffer, shrink-window-if-larger-than-buffer)
7208 (truncated-partial-width-window-p): Minor code adjustments.
7209 In doc-strings state whether the argument window has to denote a
7210 live, valid or any window.
7211
7212 2012-08-16 Phil Sainty <psainty@orcon.net.nz> (tiny change)
7213
7214 * progmodes/subword.el (subword-forward-function)
7215 (subword-backward-function, subword-forward-regexp)
7216 (subword-backward-regexp): New variables.
7217 (subword-forward, subword-forward-internal, subword-backward-internal):
7218 Use new variables, eg so that different "word" definitions
7219 can be easily used. (Bug#11411)
7220
7221 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
7222
7223 * vc/vc-mtn.el (vc-mtn-revision-completion-table): Handle completion
7224 for composite selectors.
7225 * vc/vc.el (vc-diff-build-argument-list-internal): Don't prevent
7226 operation just because we can't find a previous revision.
7227
7228 2012-08-15 Chong Yidong <cyd@gnu.org>
7229
7230 * frame.el (set-frame-font): Accept font objects.
7231
7232 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
7233
7234 * textmodes/tex-mode.el (tex-insert-quote): ~ is a space (bug#12137).
7235
7236 2012-08-15 Wolfgang Jenkner <wjenkner@inode.at>
7237
7238 * man.el (Man-overstrike-face, Man-underline-face)
7239 (Man-reverse-face): Remove variables.
7240 (Man-overstrike, Man-underline, Man-reverse): New faces.
7241 (Man-fontify-manpage): Use them instead of the variables.
7242 (Man-cleanup-manpage): Comment change.
7243 (Man-ansi-color-map): New variable.
7244 (Man-fontify-manpage): Use it.
7245 Call ansi-color-apply-on-region to replace ad hoc code (bug#12147).
7246
7247 Implement ANSI SGR parameters 22-27 (bug#12146).
7248 * ansi-color.el (ansi-colors): Doc fix.
7249 (ansi-color-context, ansi-color-context-region): Doc fix.
7250 (ansi-color--find-face): New function.
7251 (ansi-color-apply, ansi-color-apply-on-region): Use it.
7252 Rename the local variable `face' to `codes' since it is now a list of
7253 ansi codes. Doc fix.
7254 (ansi-color-get-face): Remove.
7255 (ansi-color-parse-sequence): New function, derived from
7256 ansi-color-get-face.
7257 (ansi-color-apply-sequence): Use it. Rewrite, and support ansi
7258 codes 22-27.
7259
7260 2012-08-14 Stefan Monnier <monnier@iro.umontreal.ca>
7261
7262 * subr.el (read-passwd): Allow use from a minibuffer.
7263
7264 2012-08-14 Eli Zaretskii <eliz@gnu.org>
7265
7266 * tooltip.el (tooltip-identifier-from-point): Don't treat tokens
7267 inside comments and strings as identifiers.
7268
7269 * progmodes/gud.el (gud-tooltip-print-command): Quote the
7270 expression to evaluate. This allows to evaluate expressions with
7271 embedded whitespace.
7272 (gud-tooltip-tips): Add a blank before the newline in the
7273 message-box text, for the benefit of message-box emulation on
7274 MS-Windows.
7275
7276 * progmodes/gdb-mi.el (gdb-tooltip-print): Don't ignore error
7277 messages from GDB, pop them up in a tooltip to give feedback to
7278 user.
7279 (gdb-tooltip-print-1): Quote the expression to evaluate.
7280 This allows to evaluate expressions with embedded whitespace.
7281 (gdb-inferior-io--init-proc): Don't send "-inferior-tty" command
7282 if the TTY name is nil or empty (which happens when communicating
7283 with the inferior via pipes, e.g. on MS-Windows).
7284 (gdb-internals): If GDB sends a "&\n" empty debugging message,
7285 don't send that to the GUD buffer.
7286
7287 2012-08-14 Glenn Morris <rgm@gnu.org>
7288
7289 * emacs-lisp/bytecomp.el (byte-compile-setq-default):
7290 Optimize away setq-default with no args, as for setq. (Bug#12195)
7291
7292 2012-08-14 Chong Yidong <cyd@gnu.org>
7293
7294 * minibuffer.el (read-file-name): Doc fix (Bug#10881).
7295
7296 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Doc fix
7297 (Bug#12085).
7298
7299 2012-08-14 Glenn Morris <rgm@gnu.org>
7300
7301 * emacs-lisp/bytecomp.el (byte-recompile-file): Doc fix.
7302
7303 2012-08-14 Michael Albinus <michael.albinus@gmx.de>
7304
7305 * net/tramp-sh.el (tramp-open-shell): Cache the shell name.
7306 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
7307 Use cached shell name.
7308
7309 2012-08-14 Fabián Ezequiel Gallina <fgallina@cuca>
7310
7311 * progmodes/python.el (python-shell-send-string):
7312 (python-shell-send-setup-code): Do not use `format' with `message'.
7313
7314 2012-08-14 Dmitry Gutov <dgutov@yandex.ru>
7315
7316 * progmodes/ruby-mode.el: Improve percent literals (bug#6286).
7317 (ruby-percent-literal-beg-re): New constant.
7318 (ruby-syntax-general-delimiters-goto-beg): Rename to
7319 `ruby-syntax-enclosing-percent-literal', improve literal type check.
7320 (ruby-syntax-propertize-general-delimiters): Rename to
7321 `ruby-syntax-propertize-percent-literal', it's a shorter and more
7322 popular term. Adjust comments everywhere.
7323 (ruby-syntax-propertize-percent-literal): Only propertize when not
7324 inside a simple string or comment. When the literal is unclosed,
7325 leave the text after it unpropertized.
7326 (ruby-syntax-methods-before-regexp): New constant.
7327 (ruby-syntax-propertize-function): Use it to recognize regexps.
7328 Don't look at the text after regexp, just use the whitelist.
7329
7330 2012-08-14 Andreas Schwab <schwab@linux-m68k.org>
7331
7332 * emacs-lisp/bytecomp.el (byte-recompile-file): When LOAD is
7333 non-nil always load the compiled file if it exists. (Bug#12197)
7334
7335 2012-08-14 Chong Yidong <cyd@gnu.org>
7336
7337 * hi-lock.el (hi-lock-mode): Do not unilaterally enable font lock.
7338 (hi-lock-set-pattern): When deciding whether to use font lock or
7339 overlays, look at font-lock-mode instead of font-lock-fontified
7340 (Bug#12168).
7341 (hi-lock-mode, hi-lock-line-face-buffer, hi-lock-unface-buffer)
7342 (hi-lock-face-buffer, hi-lock-face-phrase-buffer): Doc fix.
7343
7344 2012-08-14 Daiki Ueno <ueno@unixuser.org>
7345
7346 * subr.el (internal--after-with-selected-window): Fix typo
7347 (Bug#12193).
7348
7349 2012-08-14 Fabián Ezequiel Gallina <fgallina@cuca>
7350
7351 Use `completion-table-dynamic' for completion functions.
7352 * progmodes/python.el
7353 (python-shell-completion--do-completion-at-point)
7354 (python-shell-completion--get-completions):
7355 Remove functions.
7356 (python-shell-completion-complete-at-point): New function.
7357 (python-completion-complete-at-point): Use it.
7358
7359 2012-08-13 Jambunathan K <kjambunathan@gmail.com>
7360
7361 * vc/vc-dir.el (vc-dir-hide-state): New command (bug#12159).
7362 (vc-dir-hide-up-to-date): Route it to `vc-dir-hide-state'.
7363
7364 2012-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
7365
7366 * subr.el (function-get): Refine `autoload' arg so it can also
7367 autoload functions for gv.el (bug#12191).
7368 * emacs-lisp/edebug.el (get-edebug-spec): Adjust so it only
7369 autoloads macros.
7370
7371 * color.el (color-xyz-to-lab, color-lab-to-xyz, color-cie-de2000):
7372 Prefer pcase-let over destructuring-bind.
7373 * vc/diff-mode.el (diff-remove-trailing-whitespace): Same.
7374 Also, remove whitespace as we go, rather than after accumulating the
7375 various places.
7376
7377 * subr.el (internal--before-with-selected-window)
7378 (internal--after-with-selected-window): Fix typo seleted->selected.
7379 (with-selected-window): Adjust callers.
7380 Reported by Dmitry Gutov <dgutov@yandex.ru>.
7381
7382 2012-08-13 Bastien Guerry <bzg@gnu.org>
7383
7384 * window.el (special-display-popup-frame): Minor docstring
7385 enhancement. (Bug#12172)
7386
7387 2012-08-13 Andreas Schwab <schwab@linux-m68k.org>
7388
7389 * tar-mode.el (tar-header-data-end): Only ignore size for files of
7390 type 1-6.
7391 (tar-header-block-summarize, tar-get-descriptor): Handle pax
7392 extended headers.
7393
7394 * files.el (hack-local-variables-filter): Remove useless eval.
7395
7396 2012-08-13 Martin Rudalics <rudalics@gmx.at>
7397
7398 * subr.el (with-selected-window): Fix last change.
7399
7400 2012-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
7401
7402 * subr.el (internal--before-with-seleted-window)
7403 (internal--after-with-seleted-window): New functions.
7404 (with-selected-window): Use them, to replace dependency on
7405 tty-top-frame.
7406
7407 2012-08-12 Nobuyoshi Nakada <nobu@ruby-lang.org>
7408
7409 * progmodes/ruby-mode.el (ruby-mode-map): Remove unnecessary
7410 binding for `newline'.
7411 (ruby-move-to-block): When moving backward, stop at block opening,
7412 not indentation.
7413 * progmodes/ruby-mode.el (ruby-brace-to-do-end)
7414 (ruby-do-end-to-brace, ruby-toggle-block): New functions.
7415 * progmodes/ruby-mode.el (ruby-mode-map): Add binding for
7416 `ruby-toggle-block'.
7417
7418 2012-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
7419
7420 * ibuffer.el (ibuffer-do-toggle-read-only):
7421 * dired.el (dired-toggle-read-only):
7422 * buff-menu.el (Buffer-menu-toggle-read-only):
7423 * bindings.el (mode-line-toggle-read-only):
7424 * bs.el (bs-toggle-readonly): Call toggle-read-only interactively.
7425
7426 2012-08-12 Andreas Schwab <schwab@linux-m68k.org>
7427
7428 * descr-text.el (describe-char): Put the overlays over the
7429 "displayed as" character.
7430
7431 2012-08-12 Jay Belanger <jay.p.belanger@gmail.com>
7432
7433 * calc/calc-units.el (math-default-units-table): Give an
7434 initial value.
7435 (math-put-default-units): Add options to put composite units and
7436 unit systems in the default units table.
7437 (calc-convert-units): Send composite units to
7438 `math-put-default-units' when appropriate.
7439
7440 2012-08-11 Glenn Morris <rgm@gnu.org>
7441
7442 * emacs-lisp/copyright.el (copyright-update-directory): Logic fix.
7443
7444 * tutorial.el (help-with-tutorial):
7445 * emacs-lisp/copyright.el (copyright-update-directory):
7446 * emacs-lisp/autoload.el (autoload-find-generated-file)
7447 (autoload-find-file): Disable local eval: (for insurance).
7448
7449 * files.el (hack-local-variables-filter): If an eval: form is not
7450 known to be safe, and enable-local-variables is :safe, then ignore
7451 the form totally, as is done for non-eval forms. (Bug#12155)
7452 This is CVE-2012-3479.
7453
7454 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
7455
7456 * emacs-lisp/rx.el (rx-constituents): Don't define as constant.
7457 (rx-form): Simplify.
7458
7459 2012-08-09 Dmitry Gutov <dgutov@yandex.ru>
7460
7461 * progmodes/ruby-mode.el (ruby-expr-beg, ruby-parse-partial):
7462 ?, _, and : are symbol constituents, ! is not (but kinda should be).
7463 (ruby-syntax-propertize-heredoc): Use ruby-singleton-class-p.
7464 (ruby-syntax-propertize-function): Adjust for changes in
7465 `ruby-syntax-propertize-heredoc'.
7466
7467 2012-08-09 Nobuyoshi Nakada <nobu@ruby-lang.org>
7468
7469 * progmodes/ruby-mode.el (ruby-mode-map): Remove deprecated
7470 binding (use `M-;' instead).
7471 (ruby-singleton-class-p): New function.
7472 (ruby-expr-beg, ruby-in-here-doc-p) Use it.
7473
7474 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
7475
7476 * emacs-lisp/cl-macs.el (cl-loop): Improve debug spec.
7477
7478 2012-08-10 Chong Yidong <cyd@gnu.org>
7479
7480 * progmodes/python.el (python-shell-get-process-name): Don't mess
7481 with same-window-buffer-names.
7482
7483 * eshell/eshell.el (eshell-add-to-window-buffer-names)
7484 (eshell-remove-from-window-buffer-names): Make obsolete.
7485 (eshell-buffer-name, eshell-unload-hook): Don't use them.
7486 (eshell): Just use pop-to-buffer-same-window instead.
7487
7488 2012-08-10 Chong Yidong <cyd@gnu.org>
7489
7490 * bindings.el: Bind M-= back to count-words-region.
7491
7492 * simple.el (count-words-region): Accept a prefix arg for acting
7493 on the entire buffer.
7494 (count-words--buffer-message): New helper function.
7495
7496 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
7497
7498 * term/x-win.el (x-menu-bar-open): Always pass last-nonmenu-event.
7499 * subr.el (eventp): `nil' is not an event, and eventp is not hot.
7500 (event-start, event-end): Use posn-at-point to return a more
7501 informative posn.
7502 (posnp): New function.
7503 * mouse.el (popup-menu-normalize-position): Use it.
7504
7505 2012-08-10 Masatake YAMATO <yamato@redhat.com>
7506
7507 * mouse.el (popup-menu-normalize-position): New function.
7508 (popup-menu): Use `popup-menu-normalize-position' to normalize
7509 the form for POSITION argument.
7510
7511 * term/x-win.el (x-menu-bar-open):
7512 Use the value returend from (posn-at-point) as position
7513 passed to `popup-menu'.
7514
7515 2012-08-09 Jay Belanger <jay.p.belanger@gmail.com>
7516
7517 * calc/calccomp.el (math-compose-expr): Add extra argument
7518 indicating that parentheses should be put around products in
7519 denominators. Give multiplication precedence over division during
7520 composition.
7521
7522 2012-08-09 Chong Yidong <cyd@gnu.org>
7523
7524 * man.el (Man-switches, Man-sed-command, Man-awk-command)
7525 (Man-mode-hook, Man-cooked-hook, Man-untabify-command-args)
7526 (Man-untabify-command, manual-program): Convert to defcustom
7527 (Bug#10429).
7528
7529 * vc/add-log.el (change-log-mode): Bind comment-start to nil.
7530
7531 * descr-text.el (describe-char): Don't insert extra newlines
7532 (Bug#10127).
7533
7534 * vc/log-view.el (log-view-diff): Use use-region-p (Bug#10133).
7535 (log-view-diff-changeset, log-view-minor-wrap): Likewise.
7536
7537 * align.el (align-region): Delete temporary markers (Bug#10047).
7538 Plus some code cleanups.
7539
7540 2012-08-09 Fabián Ezequiel Gallina <fgallina@cuca>
7541
7542 * progmodes/python.el (python-pdbtrack-tracked-buffer)
7543 (python-pdbtrack-buffers-to-kill, python-shell-internal-buffer)
7544 (python-shell-internal-last-output): Use make-local-variable
7545 instead of make-variable-buffer-local.
7546
7547 2012-08-09 Fabián Ezequiel Gallina <fgallina@cuca>
7548
7549 * progmodes/python.el: Enhancements to forward-sexp.
7550 (python-nav-forward-sexp): Rename from
7551 python-nav-forward-sexp-function.
7552 (python-nav--forward-sexp, python-nav--backward-sexp):
7553 New functions.
7554
7555 2012-08-09 Jay Belanger <jay.p.belanger@gmail.com>
7556
7557 * calc/calc-menu.el (calc-modes-menu): Add entries for matrix
7558 modes and simplification modes.
7559
7560 2012-08-09 Stefan Monnier <monnier@iro.umontreal.ca>
7561
7562 * delsel.el (delete-selection-pre-hook): Don't propagate the
7563 file-supersession signals (bug#12161).
7564
7565 2012-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
7566
7567 * emacs-lisp/cl.el (cl-map-keymap-recursively, cl-map-intervals)
7568 (cl-map-extents): Add compatibility aliases (bug#12135).
7569
7570 2012-08-08 Michael Albinus <michael.albinus@gmx.de>
7571
7572 * net/tramp-sh.el (tramp-find-file-exists-command): Protect the
7573 tests by `ignore-error'.
7574 (tramp-find-shell): Open also a new shell, when cache is already
7575 set. Reported by Carsten Bormann <cabo@tzi.org>. (Bug#12148)
7576
7577 2012-08-08 Juri Linkov <juri@jurta.org>
7578
7579 * bookmark.el: Add `defaults' property to the bookmark record.
7580 (bookmark-current-buffer): Doc fix.
7581 (bookmark-make-record): Add `defaults' property with default values
7582 to the bookmark record.
7583 (bookmark-minibuffer-read-name-map): Remove key binding "\C-u"
7584 with `bookmark-insert-current-bookmark'.
7585 (bookmark-set): Get `defaults' property from the bookmark record
7586 and use it in `read-from-minibuffer'.
7587 (bookmark-insert-current-bookmark): Remove function.
7588
7589 * info.el (Info-bookmark-make-record): Add `defaults' property
7590 with values of canonical Info node name, the current Info file
7591 name and the current Info node name. (Bug#12107)
7592
7593 2012-08-08 Juri Linkov <juri@jurta.org>
7594
7595 * files.el (basic-save-buffer): Use `buffer-name' as the default
7596 of `read-file-name' when buffer is not visiting a file (bug#12128).
7597
7598 2012-08-08 Juri Linkov <juri@jurta.org>
7599
7600 * info.el (Info-isearch-search): Doc fix.
7601 (Info-search): Change search-failed message from "initial node" to
7602 "end of node" (bug#12078).
7603 (Info-isearch-search): Change `isearch-string-state' to
7604 `isearch--state-string'.
7605
7606 2012-08-08 Glenn Morris <rgm@gnu.org>
7607
7608 * language/persian.el: Remove file.
7609 * language/misc-lang.el: Move unique part of persian.el here.
7610 * loadup.el: Remove language/persian.
7611
7612 2012-08-08 Óscar Fuentes <ofv@wanadoo.es>
7613
7614 * vc/diff-mode.el (diff-remove-trailing-whitespace): New function.
7615
7616 2012-08-08 Fabián Ezequiel Gallina <fgallina@cuca>
7617
7618 * progmodes/python.el: Fix defsubst warning.
7619 (python-syntax-context) Rename from python-info-ppss-context.
7620 (python-syntax-context-type): Rename from
7621 python-info-ppss-context-type.
7622 (python-syntax-comment-or-string-p): Rename from
7623 python-info-ppss-comment-or-string-p.
7624
7625 2012-08-08 Jay Belanger <jay.p.belanger@gmail.com>
7626
7627 * calc/calc-misc.el (calc-record-why): Don't record a message twice.
7628
7629 2012-08-07 Andreas Schwab <schwab@linux-m68k.org>
7630
7631 * emacs-lisp/lisp-mode.el (eval-defun-1): Handle standard value of
7632 a defcustom that is quoted with backquote.
7633
7634 * calc/calc-prog.el (math-do-defmath): Use backquote forms.
7635 Fix handling of interactive spec when the body uses return.
7636 (math-do-arg-check, math-define-function-body): Use backquote forms.
7637 * calc/calc-ext.el (math-defcache): Likewise.
7638 * calc/calc-rewr.el (math-rwfail, math-rweval): Likewise.
7639 * allout.el (allout-new-exposure): Likewise.
7640 * calc/calcalg2.el (math-tracing-integral): Likewise.
7641 * info.el (Info-last-menu-item): Likewise.
7642 * emulation/vip.el (vip-loop): Likewise.
7643 * textmodes/artist.el (artist-funcall): Likewise.
7644 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle):
7645 Construct menu-item directly.
7646
7647 * progmodes/autoconf.el (font-lock-syntactic-keywords):
7648 Don't declare.
7649
7650 2012-08-07 Chong Yidong <cyd@gnu.org>
7651
7652 * simple.el (deactivate-mark): Preserve text properties when
7653 saving the primary selection (Bug#8384).
7654
7655 2012-08-07 Kevin Ryde <user42@zip.com.au>
7656
7657 * woman.el (woman0-if): Quietly treat ".if v" as false (Bug#12109).
7658 (woman-parse-numeric-value): On a bad .IP line, issue a warning
7659 and continue processing (Bug#12110).
7660
7661 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
7662
7663 * progmodes/cperl-mode.el (cperl-mode): Yet another fix for
7664 syntax-propertize-function (bug#10095).
7665
7666 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
7667
7668 * help-fns.el (help-fns--key-bindings, help-fns--signature)
7669 (help-fns--parent-mode, help-fns--obsolete): New funs, extracted from
7670 describe-function-1.
7671 (describe-function-1): Use them. Move compiler macro after sig.
7672 (help-fns--compiler-macro): Use function-get. Assume we're already in
7673 standard-output. Adjust layout to new call order.
7674
7675 * emacs-lisp/cl-macs.el (cl--sm-macroexpand): Fix handling of
7676 re-binding a symbol that has a symbol-macro (bug#12119).
7677
7678 2012-08-06 Mohsen BANAN <libre@mohsen.1.banan.byname.net>
7679
7680 * language/persian.el: New file. (Bug#11812)
7681 * loadup.el: Add language/persian.el.
7682
7683 2012-08-06 Chong Yidong <cyd@gnu.org>
7684
7685 * window.el (window--maybe-raise-frame): New function.
7686 (window--display-buffer): Split off from here.
7687 (display-buffer-reuse-window, display-buffer-pop-up-frame)
7688 (display-buffer-pop-up-window, display-buffer-use-some-window):
7689 Obey an inhibit-switch-frame action alist entry.
7690 (display-buffer): Update doc.
7691
7692 * replace.el (occur-after-change-function): Avoid losing focus by
7693 using the inhibit-switch-frame display parameter (Bug#12139).
7694
7695 2012-08-06 Fabián Ezequiel Gallina <fgallina@cuca>
7696
7697 Make internal shell process buffer names start with space.
7698 * progmodes/python.el (python-shell-make-comint): Add optional
7699 argument INTERNAL.
7700 (run-python-internal): Use it.
7701 (python-shell-internal-get-or-create-process): Check for new
7702 internal buffer names.
7703
7704 2012-08-06 Glenn Morris <rgm@gnu.org>
7705
7706 * eshell/esh-ext.el (eshell/addpath): Use dolist and mapconcat.
7707 Do less getting and setting of environment variables.
7708
7709 2012-08-05 Chong Yidong <cyd@gnu.org>
7710
7711 * proced.el (proced): Add substitution string to docstring to
7712 trigger autoloading of the proced library on C-h f (Bug#1768).
7713
7714 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
7715 Don't show defvars which have no second argument (Bug#8638).
7716
7717 * imenu.el (imenu-generic-expression): Move documentation here
7718 from imenu--generic-function.
7719 (imenu--generic-function): Refer to imenu-generic-expression.
7720
7721 2012-08-05 Vegard Øye <vegard_oye@hotmail.com> (tiny change)
7722
7723 * emulation/viper-init.el (viper-deflocalvar): Add docstring and
7724 indentation declaration.
7725 (viper-loop): Add indentation declaration (Bug#7025).
7726
7727 2012-08-05 Chong Yidong <cyd@gnu.org>
7728
7729 * help-fns.el (describe-variable): Add hyperlink for
7730 directory-local variables files. Improve buffer-local and
7731 permanent-local reporting; suggested by MON KEY (Bug#6644).
7732
7733 * help-mode.el (help-dir-local-var-def): New button type.
7734
7735 * files.el (kill-buffer-hook): Provide a defvar.
7736
7737 2012-08-05 Glenn Morris <rgm@gnu.org>
7738
7739 * eshell/esh-ext.el (eshell/addpath):
7740 Also update eshell-path-env. (Bug#12013)
7741
7742 2012-08-05 Chong Yidong <cyd@gnu.org>
7743
7744 * wdired.el (wdired-mode, wdired-change-to-wdired-mode): Doc fixes.
7745
7746 * fringe.el (fringe-styles): Add docstring.
7747 (fringe--check-mode): New function.
7748 (set-fringe-mode, set-fringe-style): Use it.
7749 (fringe-mode, set-fringe-style): Doc fixes (Bug#6480).
7750
7751 * files.el (set-auto-mode): Fix invalid setq call.
7752
7753 2012-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
7754
7755 * isearch.el: Misc simplification; use defstruct.
7756 (isearch-mode-map): Dense maps now work like sparse ones.
7757 (isearch--state): New defstruct.
7758 (isearch-string-state, isearch-message-state, isearch-point-state)
7759 (isearch-success-state, isearch-forward-state)
7760 (isearch-other-end-state, isearch-word-state, isearch-error-state)
7761 (isearch-wrapped-state, isearch-barrier-state)
7762 (isearch-case-fold-search-state, isearch-pop-fun-state): Remove,
7763 replaced by defstruct's accessors.
7764 (isearch--set-state): Rename from isearch-top-state and change
7765 calling convention.
7766 (isearch-push-state): Use new isearch--get-state.
7767 (isearch-toggle-word): Disable regexp when enabling word.
7768 (isearch-message-prefix): Remove unused arg _c-q-hack.
7769 (isearch-message-suffix): Remove unused arg _ellipsis.
7770
7771 2012-08-04 Andreas Schwab <schwab@linux-m68k.org>
7772
7773 * simple.el (list-processes--refresh): For a server use :host or
7774 :local as the address.
7775 (list-processes): Doc fix.
7776
7777 2012-08-04 Michal Nazarewicz <mina86@mina86.com>
7778
7779 * lisp/mpc.el: Support password in host argument.
7780 (mpc--proc-connect): Parse and use new password element.
7781 Set mpc-proc variable instead of returning process.
7782 (mpc-proc): Adjust accordingly.
7783
7784 2012-08-03 Eli Zaretskii <eliz@gnu.org>
7785
7786 * whitespace.el (whitespace-display-mappings): Use Unicode
7787 codepoints, instead of emacs-mule codepoints. See
7788 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-07/msg00366.html
7789 for the details.
7790
7791 * files.el (file-truename): Don't skip symlink-chasing part on
7792 windows-nt. Incorporate the resolution of 8+3 short aliases on
7793 Windows into the loop that recursively chases symlinks.
7794 Compare directory and its parent case-insensitively on MS-Windows and
7795 MS-DOS.
7796
7797 2012-08-03 Chong Yidong <cyd@gnu.org>
7798
7799 * menu-bar.el (menu-bar-tools-menu): Remove PCL-CVS.
7800
7801 * sort.el (sort-regexp-fields): Doc fix.
7802
7803 2012-08-03 Tassilo Horn <tsdh@gnu.org>
7804
7805 * textmodes/reftex.el (reftex-compile-variables): Make keyvals
7806 labels regex position point at the expected place.
7807
7808 2012-08-03 MON KEY <monkey@sandpframing.com>
7809
7810 * net/imap.el (imap-interactive-login, imap-authenticate)
7811 (imap-mailbox-lsub, imap-mailbox-list)
7812 (imap-mailbox-status-asynch, imap-mailbox-acl-delete)
7813 (imap-fetch, imap-message-flag-permanent-p, imap-envelope-from)
7814 (imap-parse-response): Doc fix.
7815
7816 2012-08-03 João Távora <joaotavora@gmail.com>
7817
7818 * textmodes/tex-mode.el (latex-forward-sexp): Terminate the loop
7819 if sexp scanning does not move point (Bug#5734).
7820
7821 2012-08-02 Tassilo Horn <tsdh@gnu.org>
7822
7823 * textmodes/reftex-vars.el (reftex-default-label-alist-entries):
7824 Add listings, minted, and ctable packages.
7825 (reftex-label-alist-builtin): Move listings, minted, and ctable
7826 entries before LaTeX.
7827 (reftex-label-alist): Docfix.
7828
7829 2012-08-02 Bastien Guerry <bzg@gnu.org>
7830
7831 * replace.el (occur): Fix docstring (bug#12122).
7832
7833 2012-08-02 Glenn Morris <rgm@gnu.org>
7834
7835 * emacs-lisp/authors.el (authors-renamed-files-alist): Add ms-w32.h.
7836
7837 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
7838
7839 Obsolete alias inactivate-current-input-method-function (Bug#10150).
7840 * international/mule-cmds.el: Create
7841 inactivate-current-input-method-function as an obsolete alias for
7842 deactivate-current-input-method-function. See Katsumi Yamaoka in
7843 <http://bugs.gnu.org/10150#46>.
7844
7845 2012-08-01 Jay Belanger <jay.p.belanger@gmail.com>
7846
7847 * calc/calc-mode.el (calc-set-simplify-mode): Use `cond' instead
7848 of nested `if's.
7849
7850 2012-08-01 Glenn Morris <rgm@gnu.org>
7851
7852 * progmodes/autoconf.el (autoconf-definition-regexp):
7853 Add AH_TEMPLATE, adjust submatch numbering.
7854 (autoconf-font-lock-keywords, autoconf-imenu-generic-expression)
7855 (autoconf-current-defun-function): Update for above change.
7856 (autoconf-current-defun-function): First skip to end of current word.
7857
7858 2012-08-01 Rupert Swarbrick <rswarbrick@gmail.com> (tiny change)
7859
7860 * calendar/cal-html.el (cal-html-insert-agenda-days):
7861 Fix typo. (Bug#12018)
7862
7863 2012-07-31 Fabián Ezequiel Gallina <fgallina@cuca>
7864
7865 Shell processes: enhancements to startup and CEDET compatibility.
7866 * progmodes/python.el (python-shell-send-setup-max-wait): Delete var.
7867 (python-shell-make-comint): accept-process-output at startup.
7868 (run-python-internal): Set inferior-python-mode-hook to nil.
7869 (python-shell-internal-get-or-create-process): call sit-for.
7870 (python-preoutput-result): Add obsolete alias.
7871 (python-shell-internal-send-string): Use it.
7872 (python-shell-send-setup-code): Remove call to
7873 accept-process-output.
7874
7875 2012-07-31 Andreas Schwab <schwab@linux-m68k.org>
7876
7877 * buff-menu.el (list-buffers-noselect): Use prefix-numeric-value.
7878 (Bug#12108)
7879
7880 2012-07-31 Jay Belanger <jay.p.belanger@gmail.com>
7881
7882 * calc-mode.el (calc-basic-simplification-mode): Rename from
7883 `calc-limited-simplification-mode'.
7884 (calc-alg-simplification-mode): New function.
7885 (calc-set-simplify-mode): Adjust message.
7886
7887 * calc.el (calc-set-mode-line): Adjust mode line display for
7888 basic simplification mode.
7889
7890 * calc-help.el (calc-m-prefix-help): Update help message.
7891
7892 * calc-ext.el (calc-init-extensions): Add bindings and autoloads
7893 for `calc-basic-simplify-mode' and `calc-alg-simplify-mode'.
7894
7895 2012-07-31 Bastien Guerry <bzg@gnu.org>
7896
7897 * man.el (man): Fix comment. (bug#12101)
7898
7899 2012-07-31 Martin Rudalics <rudalics@gmx.at>
7900
7901 * window.el (switch-to-prev-buffer, switch-to-next-buffer):
7902 Don't return a non-nil value when no suitable buffer was found.
7903
7904 2012-07-31 Fabián Ezequiel Gallina <fgallina@cuca>
7905
7906 * progmodes/python.el (run-python-internal): Disable font lock for
7907 internal shells.
7908
7909 2012-07-30 Stefan Merten <smerten@oekonux.de>
7910
7911 * textmodes/rst.el: Silence `checkdoc-ispell'.
7912 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
7913 (rst-official-version, rst-official-cvs-rev)
7914 (rst-package-emacs-version-alist): Update to upstream V1.3.1.
7915 (rst-mode-map): New key binding.
7916
7917 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
7918
7919 Update .PHONY listings in makefiles.
7920 * Makefile.in (.PHONY): Add all, doit, custom-deps, finder-data,
7921 autoloads, update-subdirs, updates, bzr-update, update-authors,
7922 compile-onefile, compile-calc, backup-compiled-files,
7923 compile-after-backup, compile-one-process, mh-autoloads,
7924 bootstrap-clean, distclean, maintainer-clean.
7925
7926 2012-07-29 Jay Belanger <jay.p.belanger@gmail.com>
7927
7928 * calc/calc.el (calc-simplify-mode): Make 'alg the default value.
7929 (calc-set-mode-line): Don't display "AlgSimp ".
7930
7931 * calc/calc-mode.el (calc-alg-simplify-mode): Remove function.
7932 (calc-lim-simplify-mode): New function.
7933 (calc-set-simplify-mode): Default to 'alg.
7934 (calc-default-simplify-mode): Make algebraic simplifications
7935 the default.
7936
7937 * calc/calc-ext.el (calc-init-extensions): Remove binding for
7938 `calc-alg-simplify-mode'. Add binding for `calc-lim-simplify-mode'.
7939
7940 * calc/calc-help.el (calc-m-prefix-help): Change messages to
7941 indicate new simplification modes.
7942
7943 * calc/README: Mention new default simplification mode.
7944
7945 * calc/calc.el (math-normalize-error): New variable.
7946 (math-normalize): Set `math-normalize-error' to t
7947 when there's an error.
7948
7949 * calc/calc-alg.el (math-simplify): Don't simplify when
7950 `math-normalize' returns an error.
7951
7952 2012-07-29 Eli Zaretskii <eliz@gnu.org>
7953
7954 * international/mule-cmds.el (set-locale-environment): Revert last
7955 change, since display-graphic-p returns nil when this function is
7956 called during startup. Instead...
7957
7958 * term/w32console.el (terminal-init-w32console): ...setup the
7959 keyboard and terminal encoding for TTY sessions here. (Bug#12082)
7960
7961 2012-07-29 Juri Linkov <juri@jurta.org>
7962
7963 * simple.el (goto-line): Don't display default line number in the
7964 prompt because it should be displayed by `read-number' (bug#9952).
7965 Add the current line number to the defaults of `goto-line' to
7966 allow its easier modification by users with `M-n' (bug#9201).
7967
7968 * subr.el (read-number): Support multiple default values like in
7969 other minibuffer reading functions. Replace `read' with
7970 `string-to-number' for consistency with `number-to-string'.
7971
7972 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
7973
7974 deactive->inactive, inactivate->deactivate spelling fixes (Bug#10150)
7975 * emulation/viper-init.el (viper-deactivate-input-method-action):
7976 Rename from viper-inactivate-input-method-action.
7977 (viper-deactivate-input-method):
7978 Rename from viper-inactivate-input-method.
7979 * follow.el (follow-inactive-menu): Rename from follow-deactive-menu.
7980 * international/mule-cmds.el (deactivate-input-method):
7981 Rename from inactivate-input-method.
7982 Also run input-method-deactivate-hook.
7983 (deactivate-current-input-method-function):
7984 Rename from inactivate-current-input-method-function.
7985 (input-method-deactivate-hook): New hook.
7986 (input-method-inactivate-hook): Mark obsolete.
7987 (inactivate-input-method): Mark obsolete.
7988
7989 * international/quail.el (quail-activate):
7990 Also run quail-deactivate-hook.
7991 (quail-deactivate): Rename from quail-inactivate.
7992 * international/robin.el (robin-activate):
7993 Also run robin-deactivate-hook.
7994 (robin-deactivate): Rename from robin-inactivate.
7995
7996 2012-07-29 Chong Yidong <cyd@gnu.org>
7997
7998 * simple.el (indicate-copied-region): New function.
7999 (kill-ring-save): Split off from here.
8000
8001 * rect.el (copy-rectangle-as-kill): Call indicate-copied-region.
8002 (kill-rectangle): Set deactivate-mark to t on read-only error.
8003
8004 * register.el (copy-to-register, copy-rectangle-to-register):
8005 Deactivate the mark, and use indicate-copied-region (Bug#10056).
8006 (append-to-register, prepend-to-register): Call indicate-copied-region.
8007
8008 2012-07-29 Juri Linkov <juri@jurta.org>
8009
8010 * simple.el (async-shell-command-buffer): New defcustom.
8011 (shell-command): Use it. (Bug#4719)
8012
8013 2012-07-28 Eli Zaretskii <eliz@gnu.org>
8014
8015 * international/mule-cmds.el (set-locale-environment): In a
8016 console session on MS-Windows, set up keyboard and terminal
8017 encoding from the OEM codepage, not the ANSI codepage.
8018 (Bug#12055)
8019
8020 2012-07-28 Chong Yidong <cyd@gnu.org>
8021
8022 * progmodes/gdb-mi.el (gdb-place-breakpoints): Fix the call to
8023 gdb-get-location.
8024
8025 2012-07-28 Leo Liu <sdl.web@gmail.com>
8026
8027 * progmodes/cc-menus.el (cc-imenu-objc-function): Avoid leaving nil in
8028 the alist (bug#12029).
8029
8030 2012-07-28 Eli Zaretskii <eliz@gnu.org>
8031
8032 * makefile.w32-in (custom-deps, finder-data, updates, compile)
8033 (compile-always, compile-first)
8034 ($(lisp)/calendar/cal-loaddefs.el)
8035 ($(lisp)/calendar/diary-loaddefs.el)
8036 ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
8037 ($(lisp)/net/tramp-loaddefs.el, bootstrap)
8038 ($(lisp)/progmodes/cc-mode.elc): Depend on $(lisp)subdirs.el,
8039 instead of on update-subdirs.
8040 (bootstrap-clean): Delete $(lisp)/subdirs.el.
8041
8042 2012-07-28 Chong Yidong <cyd@gnu.org>
8043
8044 * vc/vc.el (vc-root-diff, vc-print-root-log): Prompt for a
8045 directory if vc-deduce-backend returns nil (Bug#7350).
8046
8047 * simple.el (delete-trailing-lines): New option.
8048 (delete-trailing-whitespace): Obey it (Bug#11879).
8049
8050 2012-07-28 David Engster <deng@randomsample.de>
8051
8052 * xml.el (xml-node-name, xml-parse-file, xml-parse-region):
8053 Explanation of new 'symbol-qnames feature in doc-strings.
8054 (xml-maybe-do-ns): Return expanded names as plain symbols if
8055 'symbol-qnames was provided in XML-NS argument (Bug#11916).
8056 (xml-parse-tag-1): Deal with new definition of PARSE-NS argument.
8057
8058 2012-07-27 Fabián Ezequiel Gallina <fgallina@cuca>
8059
8060 Consistent completion in inferior python with emacs -nw.
8061 * progmodes/python.el (inferior-python-mode): replace "<tab>"
8062 binding in inferior-python-mode-map with "\t".
8063 (python-shell-completion-complete-at-point)
8064 (python-completion-complete-at-point): Remove interactive spec.
8065
8066 2012-07-27 Jay Belanger <jay.p.belanger@gmail.com>
8067
8068 * calc/calccomp.el (math-compose-expr): Undo previous change.
8069
8070 2012-07-27 Fabián Ezequiel Gallina <fgallina@cuca>
8071
8072 * progmodes/python.el (python-mode-map): Add keybinding for
8073 run-python.
8074 (python-shell-make-comint): Fix pop-to-buffer call.
8075 (run-python): Autoload. New arg SHOW.
8076 (python-shell-get-or-create-process): Do not pop python process
8077 buffer.
8078
8079 2012-07-27 Michael Albinus <michael.albinus@gmx.de>
8080
8081 * notifications.el (notifications-on-action-signal)
8082 (notifications-on-closed-signal): Use also the bus address for the map.
8083 (notifications-notify, notifications-close-notification)
8084 (notifications-get-capabilities): Add optional argument BUS.
8085
8086 2012-07-27 Tassilo Horn <tsdh@gnu.org>
8087
8088 * textmodes/reftex-vars.el (reftex-label-alist-builtin):
8089 Add support for the lstlisting and minted environments, and for the
8090 ctable macro.
8091 * textmodes/reftex.el (reftex-compile-variables): Also recognize
8092 labels written in keyvals syntax.
8093
8094 2012-07-27 Jay Belanger <jay.p.belanger@gmail.com>
8095
8096 * calc/calccomp.el (math-compose-expr): Use parentheses when
8097 there is a product in the denominator of a fraction.
8098
8099 2012-07-26 Eli Zaretskii <eliz@gnu.org>
8100
8101 * makefile.w32-in ($(lisp)/calendar/cal-loaddefs.el)
8102 ($(lisp)/calendar/diary-loaddefs.el)
8103 ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
8104 ($(lisp)/net/tramp-loaddefs.el): Depend on update-subdirs.
8105 Fixes failures in parallel bootstrap because subdirs.el is being
8106 rewritten while the autoload files are built at the same time,
8107 which needs to load subdirs.el.
8108
8109 2012-07-26 Martin Rudalics <rudalics@gmx.at>
8110
8111 * mouse.el (popup-menu): Fix doc-string and re-indent code.
8112 (mouse-drag-line): Don't exit tracking when a switch-frame or
8113 switch-window event occurs (Bug#12006).
8114
8115 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
8116
8117 * mouse.el (popup-menu): Fix last change.
8118
8119 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
8120
8121 Autoload from Lisp with more care. Follow aliases when looking for
8122 function properties.
8123 * subr.el (autoloadp): New function.
8124 (symbol-file): Use it.
8125 (function-get): New function.
8126 * emacs-lisp/macroexp.el (macroexp--expand-all): Use function-get and
8127 autoload-do-load.
8128 * emacs-lisp/lisp-mode.el (lisp-font-lock-syntactic-face-function)
8129 (lisp-indent-function):
8130 * emacs-lisp/gv.el (gv-get):
8131 * emacs-lisp/edebug.el (get-edebug-spec, edebug-basic-spec):
8132 * emacs-lisp/byte-opt.el (byte-optimize-form):
8133 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
8134 * emacs-lisp/autoload.el (make-autoload, autoload-print-form):
8135 Use function-get.
8136 * emacs-lisp/cl.el: Don't propagate function properties any more.
8137
8138 * speedbar.el (speedbar-add-localized-speedbar-support):
8139 * emacs-lisp/disass.el (disassemble-internal):
8140 * desktop.el (desktop-load-file):
8141 * help-fns.el (help-function-arglist, find-lisp-object-file-name)
8142 (describe-function-1):
8143 * emacs-lisp/find-func.el (find-function-noselect):
8144 * emacs-lisp/elp.el (elp-instrument-function):
8145 * emacs-lisp/advice.el (ad-has-proper-definition):
8146 * apropos.el (apropos-safe-documentation, apropos-macrop):
8147 * emacs-lisp/debug.el (debug-on-entry):
8148 * emacs-lisp/cl-macs.el (cl-compiler-macroexpand):
8149 * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
8150 * calc/calc.el (name): Use autoloadp & autoload-do-load.
8151
8152 2012-07-25 Alp Aker <alp.tekin.aker@gmail.com>
8153
8154 * international/mule-cmds.el (ucs-insert): Mark it as an obsolete
8155 function, not an obsolete variable (Bug#12046).
8156
8157 2012-07-25 Andreas Schwab <schwab@linux-m68k.org>
8158
8159 * faces.el (face-spec-reset-face): Fix last change. (Bug#12042)
8160
8161 2012-07-25 Christopher Schmidt <christopher@ch.ristopher.com>
8162
8163 * emacs-lisp/pp.el (pp-display-expression): Select old selected
8164 window only if it is still live (Bug#12034).
8165
8166 2012-07-25 Martin Rudalics <rudalics@gmx.at>
8167
8168 * subr.el (redirect-frame-focus): Add advertised calling
8169 convention (Bug#12030).
8170
8171 2012-07-25 Paul Eggert <eggert@cs.ucla.edu>
8172
8173 Prefer typical American spelling for "acknowledgment".
8174 * vc/add-log.el (change-log-acknowledgment): Rename from
8175 change-log-acknowledgement, with an alias for the old name.
8176
8177 2012-07-25 Jay Belanger <jay.p.belanger@gmail.com>
8178
8179 * calc-alg.el (math-simplify-divide): Don't cross multiply
8180 in an equation when the lhs is a variable.
8181
8182 2012-07-24 Julien Danjou <julien@danjou.info>
8183
8184 * net/netrc.el (netrc-find-service-number, netrc-store-data):
8185 Remove, unused.
8186
8187 2012-07-23 Eli Zaretskii <eliz@gnu.org>
8188
8189 * startup.el (command-line): Don't display an empty user name in
8190 the error message about non-existent home directory, when
8191 init-file-user was set to an empty string. See
8192 http://lists.gnu.org/archive/html/bug-gnu-emacs/2012-07/msg00835.html
8193 for the details and context.
8194
8195 2012-07-22 Vincent Belaïche <vincentb1@users.sourceforge.net>
8196
8197 * ses.el (ses-cell-formula-aset): New macro.
8198 (ses-cell-references-aset): New macro.
8199 (ses-cell-p): New function.
8200 (ses-rename-cell): Do no longer rely on complex operations like
8201 ses-cell-set-formula or ses-set-cell to change the cell and handle
8202 the undo at the same time, but rather use lower level new macros
8203 `ses-cell-formula-aset' and `ses-cell-references-aset' and handle
8204 the undo directly. Refresh the mode line.
8205
8206 2012-07-21 Leo Liu <sdl.web@gmail.com>
8207
8208 * progmodes/cc-cmds.el (c-defun-name):
8209 Use match-string-no-properties instead for consistency.
8210
8211 2012-07-20 Leo Liu <sdl.web@gmail.com>
8212
8213 * progmodes/cc-cmds.el (c-defun-name): Handle objc selectors properly.
8214 (Bug#7879)
8215
8216 * progmodes/cc-langs.el (c-symbol-start): Include char _ (bug#11986).
8217
8218 2012-07-20 Stefan Monnier <monnier@iro.umontreal.ca>
8219
8220 * userlock.el, emacs-lisp/map-ynp.el: Declare part of `emacs' package.
8221 * progmodes/bug-reference.el, misearch.el: Provide themselves
8222 (bug#11915).
8223
8224 * progmodes/cperl-mode.el (cperl-unwind-to-safe): Don't inf-loop at end
8225 of narrowed buffer (bug#11966).
8226
8227 2012-07-20 Vincent Belaïche <vincentb1@users.sourceforge.net>
8228
8229 * ses.el (ses-rename-cell): Set new name also in reference list of
8230 cells of which the renamed cell depends.
8231
8232 2012-07-20 Masatake YAMATO <yamato@redhat.com>
8233
8234 * term/x-win.el (x-menu-bar-open): Use `frame-parameter'
8235 to check whether menu-bar is shown or not. If not shown,
8236 show the menu-bar as a popup menu instead of using tmm.
8237 * mouse.el (popup-menu): Accept `point' as `position' argument.
8238
8239 2012-07-20 Dmitry Gutov <dgutov@yandex.ru>
8240
8241 * progmodes/ruby-mode.el (ruby-parse-partial): No error when end
8242 up inside string symbol literal (bug#11923).
8243
8244 2012-07-20 Eli Zaretskii <eliz@gnu.org>
8245
8246 * startup.el (fancy-startup-text): Read the whole tutorial, not
8247 just its first 256 bytes. Prevents gibberish in display of the
8248 tutorial title.
8249
8250 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
8251
8252 Drop idle buffer compaction due to an absence of the
8253 proved efficiency.
8254 * compact.el: Remove.
8255
8256 2012-07-19 Sam Steingold <sds@gnu.org>
8257
8258 * vc/vc-dispatcher.el (vc-compilation-mode): Add, based on
8259 vc-bzr-pull & vc-bzr-merge-branch.
8260 * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch): Use it.
8261 (vc-bzr-error-regexp-alist): Rename from vc-bzr-error-regex-alist
8262 for consistency with compilation-error-regexp-alist.
8263 * vc/vc-git.el (vc-git-error-regexp-alist): Add.
8264 (vc-git-pull, vc-git-merge-branch): Call vc-compilation-mode.
8265 * vc/vc-hg.el (vc-hg-error-regexp-alist): Add.
8266 (vc-hg-pull, vc-hg-merge-branch): Call vc-compilation-mode.
8267
8268 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
8269
8270 * emacs-lisp/chart.el: Use lexical-binding.
8271 (chart-emacs-storage): Don't hardcode the list of entries.
8272
8273 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
8274
8275 Next round of tweaks caused by Fgarbage_collect changes.
8276 * emacs-lisp/chart.el (chart-emacs-storage): Adjust again.
8277
8278 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
8279
8280 Compact buffers when idle.
8281 * compact.el: New file.
8282
8283 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
8284
8285 * subr.el (eventp): Presume that if it looks vaguely like an event,
8286 it's an event (bug#10190).
8287
8288 2012-07-19 Fabián Ezequiel Gallina <fgallina@cuca>
8289
8290 Enhancements to ppss related code (thanks Stefan).
8291 * progmodes/python.el (python-indent-context)
8292 (python-indent-calculate-indentation, python-indent-dedent-line)
8293 (python-indent-electric-colon, python-nav-forward-block)
8294 (python-mode-abbrev-table)
8295 (python-info-assignment-continuation-line-p): Simplify checks
8296 for ppss context.
8297 (python-info-continuation-line-p): Cleanup.
8298 (python-info-ppss-context): Do not catch 'quote.
8299 (python-info-ppss-context-type)
8300 (python-info-ppss-comment-or-string-p): Simplify.
8301
8302 2012-07-18 Fabián Ezequiel Gallina <fgallina@cuca>
8303
8304 * progmodes/python.el: Enhancements to eldoc support.
8305 (python-info-current-symbol): New function.
8306 (python-eldoc-at-point): Use python-info-current-symbol.
8307 (python-info-current-defun): Fix cornercase on first defun scan.
8308 (python-eldoc--get-doc-at-point): Use python-info-current-symbol
8309 and signal error when no inferior python process is available.
8310
8311 2012-07-18 Dmitry Gutov <dgutov@yandex.ru>
8312
8313 * vc/vc-git.el (vc-git-state): Don't call `vc-git-registered',
8314 assume it's always t.
8315 (vc-git-registered): Remove caching, the function is only called
8316 once.
8317 (vc-git-branches): Use `vc-git--call' instead of `call-process'.
8318
8319 2012-07-18 Chong Yidong <cyd@gnu.org>
8320
8321 * subr.el (last-input-char, last-command-char): Remove (Bug#9195).
8322
8323 * simple.el (count-words): Report on narrowing (Bug#9959).
8324
8325 * bindings.el: Bind M-= to count-words.
8326
8327 * faces.el (face-spec-reset-face): Handle reverse video (Bug#4238).
8328
8329 2012-07-18 Masatake YAMATO <yamato@redhat.com>
8330
8331 * progmodes/sh-script.el (sh-imenu-generic-expression):
8332 Capture a function with `function' keyword and without parentheses
8333 like "function FOO" (bug#11856).
8334
8335 2012-07-18 Tassilo Horn <tassilo@member.fsf.org>
8336
8337 * window.el (split-window-sensibly): Make WINDOW argument
8338 optional.
8339
8340 2012-07-18 Chong Yidong <cyd@gnu.org>
8341
8342 * subr.el (keyboard-translate): Doc fix (Bug#7261).
8343
8344 * isearch.el (isearch-mode-map): Handle C-x 8 key translations,
8345 and make C-x 8 RET exit isearch (Bug#11439).
8346
8347 * international/iso-transl.el: Move isearch-mode-map key
8348 definitions to isearch.el.
8349
8350 2012-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
8351
8352 * emacs-lisp/eieio.el: Adapt further to gv.el (bug#11970).
8353 (eieio-defclass): Use gv-define-setter when possible.
8354
8355 2012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
8356
8357 Reflect recent changes in Fgarbage_collect.
8358 * emacs-lisp/chart.el (chart-emacs-storage): Change to
8359 reflect new format of data returned by Fgarbage_collect.
8360
8361 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
8362
8363 New utility functions + python-info-ppss-context fix (Bug#11910).
8364 * progmodes/python.el (python-info-beginning-of-block-statement-p)
8365 (python-info-ppss-comment-or-string-p): New functions.
8366 (python-info-ppss-context): Small fix for string check.
8367
8368 2012-07-17 Juri Linkov <juri@jurta.org>
8369
8370 * dired-aux.el (dired-do-async-shell-command): Doc fix.
8371 (dired-do-async-shell-command): Don't add `*' at the end of the
8372 command (Bug#11815).
8373 (dired-do-shell-command): Doc fix.
8374 (dired-shell-stuff-it): Strip the trailing "&" and ";" if any.
8375 Join the individual commands using either "&" or ";" as the
8376 separator depending on the values of these trailing characters.
8377 At the end re-add the trailing "&". (Bug#10598)
8378
8379 * simple.el (async-shell-command): Sync the interactive spec with
8380 `shell-command'. Doc fix.
8381 (shell-command): Doc fix.
8382
8383 2012-07-17 Juri Linkov <juri@jurta.org>
8384
8385 * descr-text.el (describe-char): Fix format args. (Bug#10129)
8386
8387 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
8388
8389 Final renames and doc fixes for movement commands (bug#11899).
8390 * progmodes/python.el (python-nav-beginning-of-statement):
8391 Rename from python-nav-statement-start.
8392 (python-nav-end-of-statement): Rename from
8393 python-nav-statement-end.
8394 (python-nav-beginning-of-block): Rename from
8395 python-nav-block-start.
8396 (python-nav-end-of-block): Rename from python-nav-block-end.
8397
8398 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
8399
8400 * progmodes/python.el (python-shell-send-string-no-output):
8401 Allow accept-process-output to quit, keeping shell process ready for
8402 future interactions (Bug#11868).
8403
8404 2012-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
8405
8406 * emacs-lisp/cl-macs.el (cl-progv): Use a properly prefixed var name.
8407
8408 * emacs-lisp/elint.el (elint-find-args-in-code):
8409 Use help-function-arglist, so as to handle lexical byte-code.
8410
8411 * progmodes/sh-script.el (sh-syntax-propertize-function): Fix last
8412 change (bug#11826).
8413
8414 2012-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
8415
8416 * progmodes/cc-engine.el (c-forward-sws, c-backward-sws):
8417 Avoid spuriously marking the buffer as modified because of c-is-sws.
8418
8419 * progmodes/sh-script.el (sh-syntax-propertize-function): Mark "${#VAR"
8420 as not-a-comment (bug#11946).
8421
8422 * emacs-lisp/macroexp.el (macroexp-let2): Use more informative names
8423 for uninterned vars.
8424
8425 * xt-mouse.el (xterm-mouse-translate-1, xterm-mouse-event-read):
8426 Use read-event since we don't really want to read chars but bytes.
8427
8428 * textmodes/tex-mode.el (tex-font-lock-keywords-1): Highlight not only
8429 $$..$$ but also $..$ using regexps (bug#11953).
8430 Use tex-verbatim for \url and \path.
8431 (tex-font-lock-keywords): Define as defconst like the others.
8432 (tex-common-initialization): Don't use font-lock-syntax-table any more.
8433
8434 2012-07-16 René Kyllingstad <Rene@Kyllingstad.com> (tiny change)
8435
8436 * international/mule-cmds.el (ucs-insert): Make it an obsolete
8437 alias for insert-char.
8438
8439 2012-07-16 Fabián Ezequiel Gallina <fgallina@cuca>
8440
8441 * progmodes/python.el: Simplified imenu implementation.
8442 (python-nav-jump-to-defun): Remove command.
8443 (python-mode-map): Use `imenu' instead.
8444 (python-nav-list-defun-positions-cache)
8445 (python-imenu-include-defun-type, python-imenu-make-tree)
8446 (python-imenu-subtree-root-label, python-imenu-index-alist):
8447 Remove vars.
8448 (python-nav-list-defun-positions, python-nav-read-defun)
8449 (python-imenu-tree-assoc, python-imenu-make-element-tree)
8450 (python-imenu-make-tree, python-imenu-create-index):
8451 Remove functions.
8452 (python-mode): Update to interact with imenu by setting
8453 `imenu-extract-index-name-function' only.
8454
8455 2012-07-16 Fabián Ezequiel Gallina <fgallina@cuca>
8456
8457 * progmodes/python.el: Enhancements to navigation commands.
8458 (python-nav-backward-sentence)
8459 (python-nav-forward-sentence): Remove.
8460 (python-nav-backward-statement, python-nav-forward-statement)
8461 (python-nav-statement-start, python-nav-statement-end)
8462 (python-nav-backward-block, python-nav-forward-block)
8463 (python-nav-block-start, python-nav-block-end)
8464 (python-nav-forward-sexp-function)
8465 (python-info-current-line-comment-p)
8466 (python-info-current-line-empty-p): New functions.
8467 (python-indent-context): Use `python-nav-statement-start'.
8468
8469 2012-07-16 Michael Albinus <michael.albinus@gmx.de>
8470
8471 * eshell/em-ls.el (eshell/ls): Use `apply'.
8472
8473 * eshell/em-unix.el (eshell/su, eshell/sudo): Apply Tramp's ad-hoc
8474 multi-hops, instead of Tramp internals.
8475
8476 * vc/ediff.el (ediff-directories): Add trailing space to prompts.
8477
8478 * vc/ediff-diff.el (ediff-same-file-contents): Handle the case,
8479 when F1 and F2 are located on different hosts.
8480
8481 2012-07-14 Chong Yidong <cyd@gnu.org>
8482
8483 * xt-mouse.el: Implement extended mouse coordinates (Bug#10642).
8484 (xterm-mouse-translate): Move code into xterm-mouse-translate-1.
8485 (xterm-mouse-translate-extended, xterm-mouse-translate-1)
8486 (xterm-mouse--read-event-sequence-1000)
8487 (xterm-mouse--read-event-sequence-1006): New functions. For old
8488 mouse protocol, handle M-mouse-X events correctly.
8489 (xterm-mouse-event): New arg specifying mouse protocol.
8490 (turn-on-xterm-mouse-tracking-on-terminal)
8491 (turn-off-xterm-mouse-tracking-on-terminal): Send DEC 1006
8492 sequence to toggle extended coordinates on newer XTerms.
8493 This appears to be harmless on terminals which do not support this.
8494
8495 2012-07-14 Leo Liu <sdl.web@gmail.com>
8496
8497 Add fringe bitmap indicators for flymake. (Bug#11253)
8498 * progmodes/flymake.el (flymake-highlight-line): Use fringe bitmaps.
8499 (flymake-make-overlay): New arg BITMAP.
8500 (flymake-error-bitmap, flymake-warning-bitmap)
8501 (flymake-fringe-indicator-position): New user variables.
8502
8503 * fringe.el: New bitmap exclamation-mark.
8504
8505 2012-07-14 Jan Djärv <jan.h.d@swipnet.se>
8506
8507 * progmodes/cc-cmds.el (c-defun-name): Recognize Objective-C methods
8508 also (Bug#7879).
8509
8510 2012-07-14 Chong Yidong <cyd@gnu.org>
8511
8512 * electric.el (electric-pair-post-self-insert-function): Fix pair
8513 insertion in empty-region case (Bug#11520).
8514
8515 2012-07-14 Chong Yidong <cyd@gnu.org>
8516
8517 * bindings.el: Consolidate ctl-x-r-map bindings.
8518 Bind copy-rectangle-as-kill to C-x r w.
8519
8520 * rect.el, register.el: Move bindings to bindings.el.
8521
8522 2012-07-14 Reuben Thomas <rrt@sc3d.org>
8523
8524 * rect.el (copy-rectangle-as-kill): New command (Bug#739).
8525
8526 2012-07-13 Andreas Schwab <schwab@linux-m68k.org>
8527
8528 * emacs-lisp/cl.el (labels): Remove spurious quote. (Bug#11938)
8529
8530 2012-07-13 Juanma Barranquero <lekktu@gmail.com>
8531
8532 * bindings.el (top): Use `mapc' instead of `mapcar'.
8533
8534 * loadup.el (top): Remove bogus `if' choice (brought by 2008-06-21T01:38:39Z!monnier@iro.umontreal.ca).
8535
8536 2012-07-13 Michael Albinus <michael.albinus@gmx.de>
8537
8538 * progmodes/sql.el (sql-comint): Suppress the check for program on
8539 remote hosts. Reported by Francis Devereux <francis@devrx.org>.
8540 (Bug#11908)
8541
8542 2012-07-13 Chong Yidong <cyd@gnu.org>
8543
8544 * bindings.el: Assign a non-nil permanent-local property to
8545 per-buffer variables which lack a default value (Bug#11930).
8546
8547 * help-fns.el (describe-variable): In the "automatically becomes
8548 local" notice, take note of permanent-local variables.
8549
8550 2012-07-13 Chong Yidong <cyd@gnu.org>
8551
8552 * files.el (toggle-read-only): Doc fix and code cleanup. New arg
8553 to allow printing the message when called from Lisp.
8554
8555 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
8556 Remove toggle-read-only.
8557
8558 * bs.el (bs-toggle-readonly):
8559 * buff-menu.el (Buffer-menu-toggle-read-only):
8560 Remove with-no-warnings around toggle-read-only.
8561
8562 * ffap.el (ffap--toggle-read-only): Accept a list of buffers.
8563 Remove with-no-warnings around toggle-read-only.
8564 (ffap-read-only, ffap-read-only-other-window)
8565 (ffap-read-only-other-frame): Callers changed.
8566
8567 * help-mode.el: Don't require view package.
8568 (help-mode-finish): Set buffer-read-only instead of calling
8569 toggle-read-only.
8570
8571 * bindings.el (mode-line-toggle-read-only):
8572 * dired.el (dired-toggle-read-only):
8573 * ibuffer.el (ibuffer-do-toggle-read-only): Call toggle-read-only
8574 with non-nil second arg.
8575
8576 * emacs-lisp/eieio-custom.el (eieio-customize-object):
8577 * vc/ediff.el (ediff-set-read-only-in-buf-A): Set buffer-read-only
8578 directly.
8579
8580 2012-07-12 Eli Zaretskii <eliz@gnu.org>
8581
8582 * emacs-lisp/bytecomp.el (byte-recompile-directory): Use cl-incf,
8583 not incf.
8584
8585 2012-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
8586
8587 More CL cleanups and reduction of use of cl.el.
8588 * woman.el, winner.el, vc/vc-rcs.el, vc/vc-hooks.el, vc/vc-hg.el:
8589 * vc/vc-git.el, vc/vc-dir.el, vc/vc-bzr.el, vc/vc-annotate.el:
8590 * textmodes/tex-mode.el, textmodes/sgml-mode.el, tar-mode.el:
8591 * strokes.el, ses.el, server.el, progmodes/js.el, progmodes/gdb-mi.el:
8592 * progmodes/flymake.el, progmodes/ebrowse.el, progmodes/compile.el:
8593 * play/tetris.el, play/snake.el, play/pong.el, play/landmark.el:
8594 * play/hanoi.el, play/decipher.el, play/5x5.el, nxml/nxml-mode.el:
8595 * net/secrets.el, net/quickurl.el, midnight.el, mail/footnote.el:
8596 * image-dired.el, ibuffer.el, ibuf-macs.el, ibuf-ext.el, hexl.el:
8597 * eshell/eshell.el, eshell/esh-io.el, eshell/esh-ext.el:
8598 * eshell/esh-cmd.el, eshell/em-ls.el, eshell/em-hist.el:
8599 * eshell/em-cmpl.el, eshell/em-banner.el:
8600 * calendar/parse-time.el: Use cl-lib.
8601 * wid-browse.el, wdired.el, vc/vc.el, vc/vc-mtn.el, vc/vc-cvs.el:
8602 * vc/vc-arch.el, tree-widget.el, textmodes/texinfo.el:
8603 * textmodes/refill.el, textmodes/css-mode.el, term/tvi970.el:
8604 * term/ns-win.el, term.el, shell.el, ps-samp.el:
8605 * progmodes/perl-mode.el, progmodes/pascal.el, progmodes/gud.el:
8606 * progmodes/glasses.el, progmodes/etags.el, progmodes/cwarn.el:
8607 * play/gamegrid.el, play/bubbles.el, novice.el, notifications.el:
8608 * net/zeroconf.el, net/xesam.el, net/snmp-mode.el, net/mairix.el:
8609 * net/ldap.el, net/eudc.el, net/browse-url.el, man.el:
8610 * mail/mailheader.el, mail/feedmail.el: Don't use CL.
8611 * ibuf-ext.el (ibuffer-mark-old-buffers): Use float-time.
8612 * eshell/esh-opt.el (eshell-eval-using-options): Quote code with
8613 `lambda' rather than with `quote'.
8614 (eshell-do-opt): Adjust accordingly.
8615 (eshell-process-option): Simplify.
8616 * eshell/esh-var.el:
8617 * eshell/em-script.el: Require `esh-opt' for eshell-eval-using-options.
8618 * emacs-lisp/pcase.el (pcase--dontcare-upats, pcase--let*)
8619 (pcase--expand, pcase--u1): Rename pcase's internal `dontcare' pattern
8620 to `pcase--dontcare'.
8621 * emacs-lisp/cl.el (labels): Mark obsolete.
8622 (cl--letf, letf): Move to cl-lib.
8623 (cl--letf*, letf*): Remove.
8624 * emacs-lisp/cl-lib.el (cl-nth-value): Use defalias.
8625 * emacs-lisp/cl-macs.el (cl-dolist, cl-dotimes): Add indent rule.
8626 (cl-progv): Rewrite.
8627 (cl--letf, cl-letf): Move from cl.el.
8628 (cl-letf*): New macro.
8629 * emacs-lisp/cl-extra.el (cl--progv-before, cl--progv-after): Remove.
8630
8631 2012-07-11 Michael Albinus <michael.albinus@gmx.de>
8632
8633 * net/ange-ftp.el (ange-ftp-cf1): Update the files cache.
8634
8635 2012-07-11 Chong Yidong <cyd@gnu.org>
8636
8637 * vc/log-edit.el (log-edit-vc-backend): New variable.
8638 (log-edit): Doc fix.
8639
8640 * vc/vc-dispatcher.el (vc-log-edit): New args. Use PARAMS
8641 argument of log-edit to set up all local variables.
8642 (vc-start-logentry): New optional arg specifying VC backend.
8643
8644 * vc/vc.el (vc-checkin): Use it.
8645 (vc-deduce-fileset): Handle Log Edit buffers.
8646 (vc-diff): Make first argument optional too.
8647
8648 * vc/log-view.el (log-view-vc-fileset, log-view-vc-backend): Doc fix.
8649
8650 2012-07-10 Michael Albinus <michael.albinus@gmx.de>
8651
8652 * eshell/esh-ext.el (eshell-remote-command): Remove remote part of
8653 command, just in case. The function is not needed anymore.
8654 (eshell-external-command): Do not call `eshell-remote-command'.
8655
8656 2012-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
8657
8658 Reduce use of (require 'cl).
8659 * vc/smerge-mode.el, vc/pcvs.el, vc/pcvs-util.el, vc/pcvs-info.el:
8660 * vc/diff-mode.el, vc/cvs-status.el, uniquify.el, scroll-bar.el:
8661 * register.el, progmodes/sh-script.el, net/gnutls.el, net/dbus.el:
8662 * msb.el, mpc.el, minibuffer.el, international/ucs-normalize.el:
8663 * international/quail.el, info-xref.el, imenu.el, image-mode.el:
8664 * font-lock.el, filesets.el, edmacro.el, doc-view.el, bookmark.el:
8665 * battery.el, avoid.el, abbrev.el: Use cl-lib.
8666 * vc/pcvs-parse.el, vc/pcvs-defs.el, vc/log-view.el, vc/log-edit.el:
8667 * vc/diff.el, simple.el, pcomplete.el, lpr.el, comint.el, loadhist.el:
8668 * jit-lock.el, international/iso-ascii.el, info.el, frame.el, bs.el:
8669 * emulation/crisp.el, electric.el, dired.el, cus-dep.el, composite.el:
8670 * calculator.el, autorevert.el, apropos.el: Don't require CL.
8671 * emacs-lisp/bytecomp.el (byte-recompile-directory, display-call-tree)
8672 (byte-compile-unfold-bcf, byte-compile-check-variable):
8673 * emacs-lisp/byte-opt.el (byte-compile-trueconstp)
8674 (byte-compile-nilconstp):
8675 * emacs-lisp/autoload.el (make-autoload): Use pcase.
8676 * face-remap.el (text-scale-adjust): Simplify pcase patterns.
8677
8678 * emacs-lisp/gv.el (cond): Make it a valid place.
8679 (if): Simplify slightly.
8680
8681 * emacs-lisp/pcase.el (pcase): Accept self-quoting exps as "upatterns".
8682 (pcase--self-quoting-p): New function.
8683 (pcase--u1): Use it.
8684
8685 2012-07-10 Glenn Morris <rgm@gnu.org>
8686
8687 * emacs-lisp/authors.el (authors-fixed-entries):
8688 (authors-renamed-files-alist): Update for configure.in -> configure.ac.
8689
8690 2012-07-09 Paul Eggert <eggert@cs.ucla.edu>
8691
8692 Rename configure.in to configure.ac (Bug#11603).
8693 * emacs-lisp/authors.el (authors-canonical-file-name):
8694 * progmodes/autoconf.el (autoconf-mode):
8695 Prefer configure.ac to configure.in.
8696
8697 2012-07-08 Chong Yidong <cyd@gnu.org>
8698
8699 * mouse.el (mouse-drag-line): Rewrite the track-mouse loop.
8700 Implement the mouse-1-click-follows-link handling properly.
8701
8702 * info.el (Info-link-keymap): Use follow-link mechanism for
8703 header-line links (Bug#374).
8704
8705 * simple.el (deactivate-mark): Do not set the primary selection
8706 if another program has acquired it (Bug#11772).
8707
8708 2012-07-07 Kevin Ryde <user42@zip.com.au>
8709
8710 * woman.el (woman-strings): Fix double-quote handling (Bug#1151).
8711 (woman-decode-region): Replace escaped-escapes without destroying
8712 bold or underline (Bug#11552).
8713 (woman2-process-escapes): Handle nofill regions (Bug#11591).
8714
8715 2012-07-07 Chong Yidong <cyd@gnu.org>
8716
8717 * simple.el (yank-pop-change-selection): Doc fix (Bug#11361).
8718 (interprogram-cut-function, interprogram-paste-function):
8719 Mention that we typically mean the clipboard.
8720
8721 2012-07-06 Glenn Morris <rgm@gnu.org>
8722
8723 * kmacro.el (kmacro-call-macro): Restore repeat message. (Bug#11817)
8724
8725 * files.el (toggle-read-only): Restrict message to interactive use.
8726
8727 2012-07-06 Michael Albinus <michael.albinus@gmx.de>
8728
8729 * net/tramp.el (tramp-restricted-shell-hosts-alist): New defcustom.
8730
8731 * net/tramp-sh.el (tramp-maybe-open-connection): Handle it.
8732
8733 2012-07-06 Glenn Morris <rgm@gnu.org>
8734
8735 * Makefile.in (compile-one-process): Rename from "recompile".
8736
8737 * Makefile.in (bzr-update): "compile" is the same as "recompile
8738 autoloads", but parallelizable, so use that instead.
8739
8740 2012-07-06 Dmitry Gutov <dgutov@yandex.ru>
8741
8742 * window.el (quit-window): Always restore window height when
8743 it's saved in quit-restore parameter (Bug#11810).
8744
8745 2012-07-06 Glenn Morris <rgm@gnu.org>
8746
8747 * simple.el (kill-whole-line): Doc tweak.
8748
8749 2012-07-06 Eli Zaretskii <eliz@gnu.org>
8750
8751 * files.el (file-relative-name): Compare file names
8752 case-insensitively if on MS-Windows or MS-DOS, or if
8753 read-file-name-completion-ignore-case is non-nil. Don't use
8754 case-fold-search for this purpose. (Bug#11827)
8755
8756 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
8757
8758 * calendar/cal-dst.el (calendar-current-time-zone):
8759 Return calendar-current-time-zone-cache if non-nil.
8760
8761 2012-07-17 Masatake YAMATO <yamato@redhat.com>
8762 2012-07-06 Andreas Schwab <schwab@linux-m68k.org>
8763
8764 * calendar/cal-dst.el (calendar-current-time-zone):
8765 Return calendar-current-time-zone-cache if non-nil.
8766
8767 2012-07-06 Glenn Morris <rgm@gnu.org>
8768
8769 * Makefile.in (cvs-update): Remove old alias.
8770
8771 2012-07-05 Michael Albinus <michael.albinus@gmx.de>
8772
8773 Sync with Tramp 2.2.6-pre.
8774
8775 * net/tramp.el (tramp-drop-volume-letter): Provide an XEmacs
8776 compatible declaration.
8777
8778 * net/tramp-cmds.el (tramp-append-tramp-buffers):
8779 Protect `list-load-path-shadows' call.
8780
8781 * net/tramp-compat.el (top): Require packages, which aren't
8782 autoloaded anymore for XEmacs. Protect call of
8783 `tramp-file-name-handler' by `tramp-compat-funcall', pacifying the
8784 compiler. Do not require tramp-util.el and tramp-vc.el anymore,
8785 it hurts at least for SXEmacs.
8786 (tramp-compat-temporary-file-directory): In XEmacs, there is no
8787 standard-value for `temporary-file-directory'.
8788
8789 * net/tramp-sh.el (tramp-do-directory-files-and-attributes-with-stat):
8790 Redirect stderr to /dev/null.
8791 (tramp-sh-handle-write-region): uid and gid can be floats.
8792 Reported by Russell Sim <russell.sim@gmail.com>.
8793 (tramp-sh-handle-vc-registered): Hide errors.
8794 (tramp-vc-file-name-handler): Use dummy results for `process-file'
8795 and `start-file-process'.
8796 (tramp-maybe-open-connection): Check also whether `non-essential'
8797 is bound.
8798
8799 2012-07-04 Chong Yidong <cyd@gnu.org>
8800
8801 * xml.el (xml--parse-buffer): Use xml-syntax-table.
8802 (xml-parse-tag): Likewise, and avoid changing entity tables.
8803 (xml-syntax-table): Define from scratch, making sure not to give
8804 x2000 and other Unicode spaces whitespace syntax, since those are
8805 not spaces in XML.
8806 (xml-parse-fragment): Delete unused function.
8807 (xml-name-start-char-re, xml-name-char-re, xml-name-re)
8808 (xml-names-re, xml-nmtoken-re, xml-nmtokens-re, xml-char-ref-re)
8809 (xml-entity-ref, xml-pe-reference-re)
8810 (xml-reference-re,xml-att-value-re, xml-tokenized-type-re)
8811 (xml-notation-type-re, xml-enumeration-re, xml-enumerated-type-re)
8812 (xml-att-type-re, xml-default-decl-re, xml-att-def-re)
8813 (xml-entity-value-re): Use syntax references in regexps where
8814 possible; no need to define inside a let-binding.
8815 (xml-parse-dtd): Use xml-pe-reference-re.
8816 (xml-entity-or-char-ref-re): New defconst.
8817 (xml-parse-string, xml-substitute-special): Use it.
8818
8819 2012-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
8820
8821 * files.el (locate-dominating-file): Allow `name' to be a predicate.
8822 (find-file--read-only): New function.
8823 (find-file-read-only, find-file-read-only-other-window)
8824 (find-file-read-only-other-frame): Use it.
8825 (insert-file-contents-literally): Don't `fset'.
8826 (get-free-disk-space): Use locate-dominating-file.
8827
8828 * emacs-lisp/bytecomp.el (byte-compile): Don't signal an error if the
8829 function is already compiled.
8830
8831 * xml.el (xml-name-regexp): Remove, redundant. Use xml-name-re.
8832
8833 2012-07-03 Michael Albinus <michael.albinus@gmx.de>
8834
8835 * vc/ediff-diff.el (ediff-same-file-contents): Fix it for remote
8836 files on the same host.
8837
8838 2012-07-03 Andreas Schwab <schwab@linux-m68k.org>
8839
8840 * help-fns.el (describe-function-1): Only call
8841 help-fns--autoloaded-p when we have a file name. (Bug#11848)
8842
8843 2012-07-03 Chong Yidong <cyd@gnu.org>
8844
8845 * xml.el: Protect parser against XML bombs.
8846 (xml-entity-expansion-limit): New variable.
8847 (xml-parse-string, xml-substitute-special): Use it.
8848 (xml-parse-dtd): Avoid infloop if the DTD is not terminated.
8849
8850 2012-07-03 Glenn Morris <rgm@gnu.org>
8851
8852 * progmodes/bug-reference.el (bug-reference-bug-regexp):
8853 Allow linking to specific messages in debbugs reports (eg 123#5).
8854
8855 2012-07-02 Chong Yidong <cyd@gnu.org>
8856
8857 * xml.el: Fix entity and character reference expansion, allowing
8858 them to expand into markup as per XML spec.
8859 (xml-default-ns): New variable.
8860 (xml-entity-alist): Use XML spec definitions for lt and amp.
8861 (xml-parse-region): Make first two arguments optional.
8862 Discard text properties.
8863 (xml-parse-tag-1): New function, spun off from xml-parse-tag.
8864 All callers changed.
8865 (xml-parse-tag): Call xml-parse-tag-1. For backward
8866 compatibility, this function should not modify buffer contents.
8867 (xml-parse-tag-1): Fix opening-tag regexp.
8868 (xml-parse-string): Rewrite, handling entity and character
8869 references properly.
8870 (xml--entity-replacement-text): Signal an error if a parameter
8871 entity is undefined.
8872
8873 2012-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
8874
8875 * comint.el (comint-output-filter): Filter out repeated prompts.
8876
8877 * net/ange-ftp.el (ange-ftp-expand-file-name): Use ange-ftp-ftp-name
8878 and file-name-absolute-p.
8879 (ange-ftp-file-exists-p): Use ange-ftp-file-exists-p for
8880 internal calls.
8881
8882 2012-07-02 Paul Eggert <eggert@cs.ucla.edu>
8883
8884 Spelling fixes.
8885 * emacs-lisp/bytecomp.el (byte-compile--reify-function):
8886 Rename from byte-compile--refiy-function. All uses changed.
8887
8888 2012-07-01 Chong Yidong <cyd@gnu.org>
8889
8890 * xml.el (xml--parse-buffer): New function. Move most of
8891 xml-parse-region here.
8892 (xml-parse-region): Copy region into a temporary buffer, since
8893 parameter entity substitution requires changing buffer contents.
8894 Use xml--parse-buffer.
8895 (xml-parse-file): Use xml--parse-buffer.
8896 (xml-parse-dtd): Make parameter entity substitution work right.
8897 Use proper regexps for ELEMENT declarations (Bug#7172).
8898
8899 2012-06-30 Glenn Morris <rgm@gnu.org>
8900
8901 * comint.el (follow-comint-scroll-to-bottom): Fix declaration.
8902
8903 * net/secrets.el, net/tramp-gvfs.el, net/xesam.el, net/zeroconf.el:
8904 Remove outdated and unnecessary dbus declarations.
8905
8906 2012-06-30 Eli Zaretskii <eliz@gnu.org>
8907
8908 * emacs-lisp/timer.el (timer-until): Subtract results of
8909 float-time, instead of taking float-time of the result of
8910 time-subtract, since float-time signals an error for negative time
8911 arguments.
8912
8913 2012-06-30 Chong Yidong <cyd@gnu.org>
8914
8915 * xml.el (xml-*-re): Convert defvars into defconsts, and
8916 eval-and-compile them so eval-and-compile works on derivatives.
8917 (xml--entity-replacement-text): Use eval-and-comple.
8918
8919 2012-06-30 Michael Albinus <michael.albinus@gmx.de>
8920
8921 * vc/vc-git.el (vc-git-registered): Use cache property
8922 `git-registered'.
8923 (vc-git-mode-line-string): Call `vc-working-revision' instead of
8924 `vc-git-working-revision' in order to benefit from the cache.
8925 (vc-git-root): Use cache property `git-root'. (Bug#11757)
8926
8927 2012-06-30 Dmitry Gutov <dgutov@yandex.ru>
8928
8929 * vc/vc-hooks.el (vc-before-save): Clear cache if file has been
8930 removed (likely outside Emacs). (Bug#11757)
8931
8932 2012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
8933
8934 * emacs-lisp/cl-lib.el: Require macroexp.
8935
8936 2012-06-30 Chong Yidong <cyd@gnu.org>
8937
8938 * xml.el: Implement XML parameter entities.
8939 (xml-parameter-entity-alist): New variable.
8940 (xml-parse-region, xml-parse-fragment): Preserve previous values
8941 of xml-entity-alist and xml-parameter-entity-alist, so that
8942 repeated calls on different documents do not change them.
8943 (xml-parse-tag): Fix doctype regexp.
8944 (xml--entity-replacement-text): New function.
8945 (xml-parse-dtd): Use it. Don't handle system entities; doing that
8946 properly requires url retrieval which is unimplemented.
8947 (xml-escape-string): Doc fix.
8948
8949 2012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
8950
8951 * emacs-lisp/cl-lib.el (cl-pushnew): Use macroexp-let2.
8952
8953 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
8954
8955 * fringe.el (fringe-mode): Doc fix.
8956
8957 2012-06-29 Michael Albinus <michael.albinus@gmx.de>
8958
8959 * net/ange-ftp.el (ange-ftp-get-passwd): Throw if `non-essential'
8960 is non-nil.
8961 (ange-ftp-ignore-errors-if-non-essential): New defmacro.
8962 (ange-ftp-file-name-all-completions): Use it. (Bug#11808)
8963
8964 2012-06-29 Andreas Schwab <schwab@linux-m68k.org>
8965
8966 * calendar/cal-dst.el (calendar-current-time-zone):
8967 Return calendar-current-time-zone-cache if non-nil.
8968
8969 2012-06-29 Masatake YAMATO <yamato@redhat.com>
8970
8971 * progmodes/which-func.el (which-func-format):
8972 Add mouse-face. (Bug#11698)
8973
8974 2012-06-29 Leo Liu <sdl.web@gmail.com>
8975
8976 * textmodes/enriched.el (enriched-next-annotation): Use eq (Bug#11528).
8977
8978 2012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
8979
8980 * minibuffer.el (minibuffer-confirm-exit-commands):
8981 Add completion-at-point (bug#11725).
8982
8983 2012-06-29 Glenn Morris <rgm@gnu.org>
8984
8985 * progmodes/f90.el (f90-font-lock-keywords-2):
8986 Add some preprocessor elements. (Bug#10499)
8987
8988 2012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
8989
8990 * progmodes/cperl-mode.el (cperl-update-syntaxification):
8991 Use syntax-propertize (bug#11739).
8992
8993 2012-06-28 Juanma Barranquero <lekktu@gmail.com>
8994
8995 * emacs-lisp/cl-lib.el (cl-pushnew): Don't capture X (bug#11811).
8996
8997 2012-06-28 Julien Danjou <julien@danjou.info>
8998
8999 * term.el (term-handle-colors-array): Use a set of new faces to
9000 color the terminal. Also uses :inverse-video property.
9001 (term-default-fg-color): Set to nil by default, deprecate in favor
9002 of `term-face'.
9003 (term-default-bg-color): Set to nil by default, deprecate in favor
9004 of `term-face'.
9005 (term-current-face): Use `term-face' by default.
9006 (term-bold-attribute): Variable deleted.
9007
9008 2012-06-28 Glenn Morris <rgm@gnu.org>
9009
9010 * simple.el (completion-list-mode-finish):
9011 Don't use toggle-read-only. (Since completion-list-mode has
9012 a special mode-class, it wasn't doing anything extra anyway.)
9013
9014 2012-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
9015
9016 Make inlining of other-mode interpreted functions work (bug#11799).
9017 * emacs-lisp/bytecomp.el (byte-compile--refiy-function): New fun.
9018 (byte-compile): Use it to fix compilation of lexical-binding closures.
9019 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Compile the
9020 function, if needed.
9021
9022 2012-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
9023
9024 * help-mode.el (help-make-xrefs): Don't just withstand
9025 cyclic-variable-indirection but any error in documentation-property.
9026
9027 * loadup.el (purify-flag): Pre-grow the hash-table to reduce the
9028 memory use.
9029 * bindings.el (bindings--define-key): New function.
9030 * vc/vc-hooks.el, replace.el, menu-bar.el, international/mule-cmds.el:
9031 * emacs-lisp/lisp-mode.el, buff-menu.el, bookmark.el:
9032 * bindings.el: Use it to purecopy define-key bindings.
9033
9034 * textmodes/rst.el (rst-adornment-faces-alist): Avoid copy-list.
9035
9036 * emacs-lisp/cl.el (flet): Mark obsolete.
9037 * emacs-lisp/cl-macs.el (cl-flet*): New macro.
9038 * vc/vc-rcs.el (vc-rcs-annotate-command, vc-rcs-parse):
9039 * progmodes/js.el (js-c-fill-paragraph):
9040 * progmodes/ebrowse.el (ebrowse-switch-member-buffer-to-sibling-class)
9041 (ebrowse-switch-member-buffer-to-derived-class):
9042 * play/5x5.el (5x5-solver): Use cl-flet.
9043
9044 * emacs-lisp/cl.el: Use lexical-binding. Fix flet (bug#11780).
9045 (cl--symbol-function): New macro.
9046 (cl--letf, cl--letf*): Use it.
9047
9048 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
9049 Strip "toggle-" if any.
9050
9051 2012-06-27 Glenn Morris <rgm@gnu.org>
9052
9053 * info.el (Info-default-directory-list): Move here from paths.el.
9054 * paths.el: Remove file, which is now empty.
9055 * loadup.el: No longer load "paths".
9056
9057 * custom.el (custom-initialize-delay): Doc fix.
9058
9059 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
9060 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el:
9061 * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el:
9062 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el:
9063 * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el:
9064 * eshell/em-xtra.el: Replace eshell-defgroup with "(progn (defgroup".
9065 * eshell/eshell.el (eshell-defgroup): Remove alias.
9066
9067 2012-06-27 Chong Yidong <cyd@gnu.org>
9068
9069 * help.el (help-enable-auto-load): New variable.
9070
9071 * help-fns.el (help-fns--autoloaded-p): New function.
9072 (describe-function-1): Refer to a function as "autoloaded" if it
9073 was autoloaded at any time in the past. Perform autoloading if
9074 help-enable-auto-load is non-nil.
9075
9076 2012-06-26 Eli Zaretskii <eliz@gnu.org>
9077
9078 * makefile.w32-in (compile, compile-always): Depend on
9079 update-subdirs, not on subdirs.el. Otherwise, several different
9080 sub-targets of 'bootstrap' running in parallel could
9081 simultaneously write to subdirs.el, producing a garbled file.
9082
9083 2012-06-26 Sam Steingold <sds@gnu.org>
9084
9085 * files.el (file-name-base): New convenience function.
9086 * autoinsert.el, cus-dep.el, doc-view.el, image-dired.el:
9087 * woman.el, eshell/esh-cmd.el, progmodes/ada-xref.el:
9088 * progmodes/cc-defs.el, progmodes/cperl-mode.el:
9089 * progmodes/flymake.el, progmodes/gud.el, progmodes/idlwave.el:
9090 * textmodes/ispell.el, textmodes/reftex-ref.el:
9091 * textmodes/tex-mode.el: Use it.
9092 Did not touch cedet and org because they are maintained elsewhere.
9093
9094 2012-06-26 Martin Rudalics <rudalics@gmx.at>
9095
9096 * calendar/calendar.el (calendar-exit): Don't try to delete or
9097 iconify last frame. See:
9098 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00372.html
9099
9100 2012-06-25 Jim Diamond <Jim.Diamond@AcadiaU.ca> (tiny change)
9101
9102 * server.el (server-process-filter): Remember dir in the
9103 process's `server-client-directory' properties.
9104
9105 2012-06-24 Chong Yidong <cyd@gnu.org>
9106
9107 * xml.el (xml-parse-tag): Correctly handle comment embedded in
9108 non-tag text.
9109
9110 2012-06-23 Juanma Barranquero <lekktu@gmail.com>
9111
9112 * makefile.w32-in (COMPILE_FIRST): Synch with changes in 2012-06-22T21:24:54Z!monnier@iro.umontreal.ca.
9113
9114 2012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
9115
9116 * help-fns.el (describe-variable): Don't croak when doc is not found.
9117 * vc/pcvs.el (cvs-retrieve-revision): Avoid toggle-read-only.
9118 * menu-bar.el (menu-bar-line-wrapping-menu): Purecopy a tiny bit more.
9119 * emacs-lisp/syntax.el (syntax-ppss): Simplify with new `if' place.
9120 * emacs-lisp/smie.el (smie-next-sexp): CSE.
9121 * emacs-lisp/macroexp.el (macroexp-let2): Fix edebug spec and avoid
9122 ((lambda ..) ..).
9123 * emacs-lisp/eieio.el (eieio-oref, slot-value): Use simpler defsetf.
9124
9125 2012-06-23 Chong Yidong <cyd@gnu.org>
9126
9127 * info.el (Info-mouse-follow-link): Accept symbol values of
9128 link-args. Select window; suggested by Gerhard Kahl (Bug#11672).
9129 (Info-fontify-node): Use Info-link-keymap for all navigation
9130 buttons, with link-args property to perform the desired action.
9131 (Info-link-keymap): Doc fix.
9132 (Info-next-link-keymap, Info-prev-link-keymap)
9133 (Info-up-link-keymap): Delete now-unused keymaps.
9134
9135 2012-06-23 Chong Yidong <cyd@gnu.org>
9136
9137 * mouse.el (mouse-drag-track): Deactivate the mark before popping.
9138
9139 * progmodes/python.el (python-skeleton-define): Mark abbrevs as
9140 system abbrevs.
9141
9142 * ansi-color.el (ansi-color-apply-on-region): Doc fix.
9143
9144 2012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
9145
9146 * emacs-lisp/cl-macs.el (cl--make-usage-args): Handle improper lists
9147 (bug#11719).
9148
9149 * minibuffer.el (completion--twq-try): Try to fail more gracefully when
9150 the requote function doesn't work properly (bug#11714).
9151
9152 2012-06-23 Glenn Morris <rgm@gnu.org>
9153
9154 * pcmpl-rpm.el (pcmpl-rpm-packages): Give status messages.
9155
9156 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
9157
9158 Further GV/CL cleanups.
9159 * emacs-lisp/gv.el (gv-get): Autoload functions to find their
9160 gv-expander.
9161 (gv--defun-declaration): New function.
9162 (defun-declarations-alist): Use it.
9163 (gv-define-modify-macro, gv-pushnew!, gv-inc!, gv-dec!): Remove.
9164 (gv-place): Autoload.
9165 * emacs-lisp/cl.el (cl--dotimes, cl--dolist): Remember subr.el's
9166 original definition of dotimes and dolist.
9167 * emacs-lisp/cl-macs.el (cl-expr-access-order): Remove unused.
9168 (cl-dolist, cl-dotimes): Use `dolist' and `dotimes'.
9169 * emacs-lisp/cl-lib.el: Move gv handlers from cl-macs to here.
9170 (cl-fifth, cl-sixth, cl-seventh, cl-eighth)
9171 (cl-ninth, cl-tenth): Move gv handler to the function's definition.
9172 * emacs-lisp/cl-extra.el (cl-subseq, cl-get, cl-getf): Move gv handler
9173 to the function's definition.
9174 * Makefile.in (COMPILE_FIRST): Re-order to speed it up by about 50%.
9175 * window.el:
9176 * files.el:
9177 * faces.el:
9178 * env.el: Don't use CL.
9179
9180 2012-06-22 Paul Eggert <eggert@cs.ucla.edu>
9181
9182 Support higher-resolution time stamps (Bug#9000).
9183
9184 * calendar/time-date.el (with-decoded-time-value): New arg
9185 PICO-SYMBOL in VARLIST. It's optional, for backward compatibility.
9186 (encode-time-value): New optional arg PICO. New type 3.
9187 (time-to-seconds) [!float-time]: Support the new picoseconds
9188 component if it's used.
9189 (seconds-to-time, time-subtract, time-add):
9190 Support ps-resolution time stamps as well.
9191
9192 * emacs-lisp/timer.el (timer): New component psecs. All uses changed.
9193 (timerp): Timer vectors now have length 9, not 8.
9194 (timer--time): Support new-style (4-part) time stamps.
9195 (timer-next-integral-multiple-of-time): Time stamps now have
9196 picosecond resolution, so take a bit more care about rounding.
9197 (timer-relative-time, timer-inc-time): New optional arg psecs.
9198 (timer-set-time-with-usecs): Set psecs to 0.
9199 (timer--activate): Check psecs component, too.
9200
9201 * proced.el (proced-time-lessp): Support ps-resolution stamps.
9202
9203 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
9204
9205 * icomplete.el (icomplete-minibuffer-setup, icomplete-completions):
9206 Move the non-essential binding to the post/pre-command-hook where it is
9207 more obviously correct.
9208
9209 * subr.el (read-passwd): Don't use a history at all.
9210 * savehist.el (savehist-save): Remove password saved accidentally
9211 because of the above bug.
9212
9213 2012-06-22 Bastien Guerry <bzg@gnu.org>
9214
9215 * files.el (toggle-read-only): Display a message telling whether
9216 the buffer is read-only or not (bug#11726).
9217
9218 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
9219
9220 * emacs-lisp/gv.el: New file.
9221 * subr.el (push, pop): Extend to generalized variables.
9222 * loadup.el (macroexp): Unload if preloaded and uncompiled (bug#11657).
9223 * emacs-lisp/cl-lib.el (cl-pop, cl-push, cl--set-nthcdr): Remove.
9224 * emacs-lisp/cl-macs.el: Require gv. Use gv-define-setter,
9225 gv-define-simple-setter, and gv-define-expander.
9226 Remove setf-methods defined in gv. Rename cl-setf -> setf.
9227 (cl-setf, cl-do-pop, cl-get-setf-method): Remove.
9228 (cl-letf, cl-letf*, cl-define-modify-macro, cl-defsetf)
9229 (cl-define-setf-expander, cl-struct-setf-expander): Move to cl.el.
9230 (cl-remf, cl-shiftf, cl-rotatef, cl-callf, cl-callf2): Rewrite with
9231 gv-letplace.
9232 (cl-defstruct): Don't define setf-method any more.
9233 * emacs-lisp/cl.el (flet): Don't autoload.
9234 (cl--letf, letf, cl--letf*, letf*, cl--gv-adapt)
9235 (define-setf-expander, defsetf, define-modify-macro)
9236 (cl-struct-setf-expander): Move from cl-lib.el.
9237 * emacs-lisp/syntax.el:
9238 * emacs-lisp/ewoc.el:
9239 * emacs-lisp/smie.el:
9240 * emacs-lisp/cconv.el:
9241 * emacs-lisp/timer.el: Rename cl-setf -> setf, cl-push -> push.
9242 (timer--time): Use gv-define-simple-setter.
9243 * emacs-lisp/macroexp.el (macroexp-let2): Rename from macroexp-let²
9244 to avoid coding-system problems in subr.el. Adjust all users.
9245 (macroexp--maxsize, macroexp-small-p): New functions.
9246 * emacs-lisp/bytecomp.el (byte-compile-file): Don't use cl-letf.
9247 * scroll-bar.el (scroll-bar-mode):
9248 * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
9249 (normal-erase-is-backspace-mode): Don't use the `eq' place.
9250 * winner.el (winner-configuration, winner-make-point-alist)
9251 (winner-set-conf, winner-get-point, winner-set): Don't abuse letf.
9252 * files.el (locate-file-completion-table): Avoid list*.
9253
9254 2012-06-22 Chong Yidong <cyd@gnu.org>
9255
9256 * dired-aux.el (dired-do-create-files): Doc fix (Bug#11327).
9257 (dired-create-files): Doc fix (Bug#11329).
9258 (dired-do-copy): Doc fix (Bug#11334).
9259 (dired-mark-read-string): Doc fix (Bug#11553).
9260
9261 * dired.el (dired-recursive-copies, dired-recursive-deletes):
9262 Doc fix (Bug#11326).
9263 (dired-make-relative): Doc fix (Bug#11332). Remove unused arg.
9264 (dired-dwim-target): Doc fix.
9265
9266 * wdired.el (wdired-mode): Doc fix.
9267
9268 2012-06-22 Glenn Morris <rgm@gnu.org>
9269
9270 * pcmpl-rpm.el (pcmpl-rpm-cache): New option.
9271 (pcmpl-rpm-cache-stamp-file): New constant.
9272 (pcmpl-rpm-cache-time, pcmpl-rpm-packages): New variables.
9273 (pcmpl-rpm-packages): Optionally cache list of packages.
9274
9275 * pcmpl-rpm.el (pcmpl-rpm): New group.
9276 (pcmpl-rpm-query-options): New option.
9277 (pcmpl-rpm-packages): No need to inline it.
9278 Use pcmpl-rpm-query-options.
9279
9280 * calendar/calendar.el (calendar-in-read-only-buffer):
9281 Avoid some needless mode changes.
9282
9283 2012-06-21 Chong Yidong <cyd@gnu.org>
9284
9285 * desktop.el (desktop-read): Don't prompt if daemon (Bug#11674).
9286 (desktop-path): Remove . from the default value (Bug#10977).
9287 (desktop-read): Use user-emacs-directory if desktop-path is nil.
9288
9289 2012-06-20 Chong Yidong <cyd@gnu.org>
9290
9291 * term.el (term-send-raw-meta): Make C-M-<char> keys work (Bug#8172).
9292
9293 2012-06-20 David Röthlisberger <david@rothlis.net> (tiny change)
9294
9295 * ido.el (ido-switch-buffer, ido-find-file): Fix up doc of C-j
9296 (bug#11201).
9297
9298 2012-06-20 Chong Yidong <cyd@gnu.org>
9299
9300 * term.el (term-window-width): Handle the case of a missing right
9301 fringe (Bug#8837).
9302 (term-check-size): Use window-text-height (Bug#5445).
9303 (term-mode): Use define-derived-mode. Minor cleanups.
9304 Set font-lock-defaults (Bug#7692).
9305 (term-move-columns, term-insert-char, term-emulate-terminal)
9306 (term-erase-in-line, term-insert-spaces): Use font-lock-face.
9307
9308 2012-06-20 Michael Albinus <michael.albinus@gmx.de>
9309
9310 * net/ange-ftp.el (ange-ftp-get-passwd):
9311 Bind `enable-recursive-minibuffers'.
9312 (ange-ftp-get-process): Throw if `non-essential' is non-nil.
9313
9314 2012-06-19 David Röthlisberger <david@rothlis.net> (tiny change)
9315
9316 * ido.el (ido-find-file): Mention C-d binding in docstring (bug#11244).
9317
9318 2012-06-19 Glenn Morris <rgm@gnu.org>
9319
9320 * progmodes/python.el (python-mode): Derive from prog-mode.
9321
9322 2012-06-19 Kevin Gallagher <Kevin.Gallagher@boeing.com>
9323
9324 * emulation/edt.el (edt-default-menu-bar-update-buffers)
9325 (edt-user-menu-bar-update-buffers): New functions.
9326 (edt-default-emulation-setup, edt-user-emulation-setup): Use them.
9327
9328 2012-06-19 Chong Yidong <cyd@gnu.org>
9329
9330 * subr.el (with-selected-window): Preserve the selected window's
9331 terminal's top-frame (Bug#4702).
9332
9333 * window.el (save-selected-window): Likewise.
9334
9335 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
9336
9337 * progmodes/python.el (python-rx-constituents): Move backquote.
9338 (python-skeleton-define, python-define-auxiliary-skeleton):
9339 Use `declare'.
9340
9341 2012-06-18 Michael Albinus <michael.albinus@gmx.de>
9342
9343 * minibuffer.el (read-file-name-default): Revert the patch from
9344 2012-06-17.
9345
9346 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
9347
9348 * emacs-lisp/pcase.el (pcase--expand): Warn for unused pattern.
9349 (pcase--u1, pcase--q1): Don't use apply-partially.
9350
9351 2012-06-18 Glenn Morris <rgm@gnu.org>
9352
9353 * progmodes/python.el (python-proc, python-buffer)
9354 (python-send-receive, python-send-string): Fix obsolete versions.
9355
9356 2012-06-18 Martin Rudalics <rudalics@gmx.at>
9357
9358 * window.el (special-display-p): Completely remove stringp
9359 check. Suggested by Andreas Schwab <schwab@linux-m68k.org>.
9360
9361 2012-06-17 Michael Albinus <michael.albinus@gmx.de>
9362
9363 * minibuffer.el (read-file-name-default): Bind `non-essential' to `t'.
9364
9365 * net/tramp.el (tramp-file-name-handler): Catch 'non-essential.
9366
9367 * net/ange-ftp.el (ange-ftp-gwp-start, ange-ftp-start-process):
9368 * net/tramp-sh.el (tramp-maybe-open-connection):
9369 Throw if `non-essential' is non-nil.
9370
9371 2012-06-17 Martin Rudalics <rudalics@gmx.at>
9372
9373 * window.el (special-display-p): Signal an error if BUFFER-NAME
9374 is not a string (Bug#11713).
9375
9376 2012-06-17 Paul Eggert <eggert@cs.ucla.edu>
9377
9378 * progmodes/python.el (python-info-beginning-of-backslash):
9379 Rename from python-info-beginning-of-backlash, as a spelling fix.
9380
9381 2012-06-17 Chong Yidong <cyd@gnu.org>
9382
9383 * term.el (term-emulate-terminal): If term-check-size is called,
9384 move point to the process mark without resetting point (Bug#4635).
9385
9386 2012-06-17 Glenn Morris <rgm@gnu.org>
9387
9388 * international/mule-cmds.el (mule-menu-keymap)
9389 (set-language-environment, set-locale-environment): Doc tweaks.
9390
9391 2012-06-16 Aurelien Aptel <aurelien.aptel@gmail.com>
9392
9393 * cus-face.el (custom-face-attributes): Add wave-style underline
9394 attribute.
9395 * faces.el (set-face-attribute): Update docstring to describe
9396 wave-style underline attribute.
9397
9398 2012-06-16 Chong Yidong <cyd@gnu.org>
9399
9400 * term/xterm.el (terminal-init-xterm): Discard input before
9401 querying background mode (Bug#10959).
9402
9403 2012-06-16 Stefan Merten <smerten@oekonux.de>
9404
9405 * textmodes/rst.el: Added and corrected some comments.
9406 (rst-re-alist-def): Improve symbol syntax.
9407 (rst-mode-syntax-table): Correct syntax entries.
9408 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
9409 (rst-official-version, rst-official-cvs-rev): Update version
9410 information.
9411
9412 2012-06-15 Juanma Barranquero <lekktu@gmail.com>
9413
9414 * makefile.w32-in (COMPILE_FIRST): Synch with makefile.in changes
9415 in 2008-06-22T13:57:28Z!monnier@iro.umontreal.ca.
9416
9417 2012-06-15 Fabián Ezequiel Gallina <fgallina@cuca>
9418
9419 * progmodes/python.el: New python.el merge.
9420 (python-guess-indent): Obsolete var.
9421 (python-indent-guess-indent-offset): New defcustom.
9422 (python-indent): Obsolete var.
9423 (python-indent-offset): New defcustom.
9424 (python-python-command, python-jython-command): Delete var.
9425 (python-shell-interpreter): New defcustom.
9426 (python-pdbtrack-do-tracking-p): Delete var.
9427 (python-pdbtrack-activate): New defcustom.
9428 (python-use-skeletons): Obsolete var.
9429 (python-skeleton-autoinsert): New defcustom.
9430 (inferior-python-filter-regexp, python-continuation-offset)
9431 (python-honour-comment-indentation, python-indent-string-contents)
9432 (python-jython-packages, python-mode-hook)
9433 (python-pdbtrack-minor-mode-string, python-remove-cwd-from-path)
9434 (python-shell-prompt-alist)
9435 (python-source-modes): Delete defcustoms.
9436 (python-check-buffer-name, python-eldoc-setup-code)
9437 (python-eldoc-string-code, python-ffap-setup-code)
9438 (python-ffap-string-code, python-fill-comment-function)
9439 (python-fill-decorator-function, python-fill-paren-function)
9440 (python-fill-string-function, python-imenu-include-defun-type)
9441 (python-imenu-make-tree, python-imenu-subtree-root-label)
9442 (python-pdbtrack-stacktrace-info-regexp, python-shell-buffer-name)
9443 (python-shell-compilation-regexp-alist)
9444 (python-shell-completion-module-string-code)
9445 (python-shell-completion-pdb-string-code)
9446 (python-shell-completion-setup-code)
9447 (python-shell-completion-string-code)
9448 (python-shell-enable-font-lock, python-shell-exec-path)
9449 (python-shell-extra-pythonpaths)
9450 (python-shell-internal-buffer-name, python-shell-interpreter-args)
9451 (python-shell-process-environment)
9452 (python-shell-prompt-block-regexp)
9453 (python-shell-prompt-output-regexp)
9454 (python-shell-prompt-pdb-regexp, python-shell-prompt-regexp)
9455 (python-shell-send-setup-max-wait, python-shell-setup-codes)
9456 (python-shell-virtualenv-path): New defcustoms.
9457 (brm-menu, eldoc-documentation-function, inferior-python-mode-map)
9458 (inferior-python-mode-syntax-table, python--prompt-regexp)
9459 (python-buffer, python-command python-python-command)
9460 (python-default-template, python-imports, python-indent-index)
9461 (python-indent-list, python-indent-list-length)
9462 (python-mode-running, python-pdbtrack-is-tracking-p)
9463 (python-preoutput-continuation, python-preoutput-leftover)
9464 (python-preoutput-result, python-preoutput-skip-next-prompt)
9465 (python-prev-dir/file, python-recursing)
9466 (python-saved-check-command, python-version-checked)
9467 (python-which-func-length-limit)
9468 (view-return-to-alist): Delete vars.
9469 (python-check-custom-command, python-dotty-syntax-table)
9470 (python-imenu-index-alist, python-indent-current-level)
9471 (python-indent-dedenters, python-indent-levels)
9472 (python-nav-beginning-of-defun-regexp)
9473 (python-nav-list-defun-positions-cache)
9474 (python-pdbtrack-buffers-to-kill, python-pdbtrack-tracked-buffer)
9475 (python-shell-internal-buffer)
9476 (python-skeleton-available): New vars.
9477 (def-python-skeleton): Delete macro.
9478 (python-skeleton-define): New macro.
9479 (python-define-auxiliary-skeleton, python-rx): New macros.
9480 (python-insert-class): Delete command.
9481 (python-skeleton-class): New command.
9482 (python-insert-def): Delete command.
9483 (python-skeleton-def): New command.
9484 (python-insert-for): Delete command.
9485 (python-skeleton-for): New command.
9486 (python-insert-if): Delete command.
9487 (python-skeleton-if): New command.
9488 (python-insert-try/except, python-insert-try/finally): Delete commands.
9489 (python-skeleton-try): New command.
9490 (python-insert-while): Delete command.
9491 (python-skeleton-while): New command.
9492 (python-backspace): Delete command.
9493 (python-indent-dedent-line-backspace): New command.
9494 (python-electric-colon): Delete command.
9495 (python-indent-electric-colon): New command.
9496 (python-guess-indent): Delete command.
9497 (python-indent-guess-indent-offset): New command.
9498 (python-shift-left): Delete command.
9499 (python-indent-shift-left): New command.
9500 (python-shift-right): Delete command.
9501 (python-indent-shift-right): New command.
9502 (python-find-function): Delete command.
9503 (python-nav-jump-to-defun): New command.
9504 (python-next-statement): Delete command.
9505 (python-nav-forward-sentence): New command.
9506 (python-previous-statement): Delete command.
9507 (python-nav-backward-sentence): New command.
9508 (python-fill-paragraph): Delete command.
9509 (python-fill-paragraph-function): New command.
9510 (python-send-buffer): Delete command.
9511 (python-shell-send-buffer): New command.
9512 (python-send-defun): Delete command.
9513 (python-shell-send-defun): New command.
9514 (python-send-region, python-send-region-and-go): Delete commands.
9515 (python-shell-send-region)
9516 (python-shell-switch-to-shell): New commands.
9517 (python-send-string): Delete command.
9518 (python-shell-send-string): New command.
9519 (python-switch-to-python): Delete command.
9520 (python-shell-switch-to-shell): New command.
9521 (python-describe-symbol): Delete command.
9522 (python-eldoc-at-point): New command.
9523 (python--set-prompt-regexp, python-args-to-list)
9524 (python-after-info-look, python-check-version)
9525 (python-check-comint-prompt, python-find-imports)
9526 (python-execute-file, turn-off-pdbtrack, turn-on-pdbtrack)
9527 (python-unload-function, python-expand-template)
9528 (python-maybe-jython, python-preoutput-filter)
9529 (python-pdbtrack-get-source-buffer)
9530 (python-pdbtrack-grub-for-buffer, python-pdbtrack-overlay-arrow)
9531 (python-pdbtrack-toggle-stack-tracking)
9532 (python-pdbtrack-track-stack-file, python-initial-text)
9533 (python-first-word, python-comment-line-p, python-send-command)
9534 (python-setup-brm, python-sentinel, python-set-proc)
9535 (python-skip-out, python-input-filter, python-outdent-p)
9536 (python-outline-level, python-backslash-continuation-line-p)
9537 (python-end-of-block, python-end-of-statement, python-mark-block)
9538 (python-beginning-of-block, python-beginning-of-statement)
9539 (python-blank-line-p, python-beginning-of-string)
9540 (python-open-block-statement-p): Delete functions.
9541 (python-indent-line, python-indent-line-1): Delete functions.
9542 (python-indent-line): New function.
9543 (python-indentation-levels): Delete function.
9544 (python-indent-calculate-levels): New function.
9545 (python-proc): Delete function.
9546 (python-shell-get-process): New function.
9547 (python-send-receive): Delete function.
9548 (python-shell-send-string-no-output): New function.
9549 (python-module-path): Delete function.
9550 (python-ffap-module-path): New function.
9551 (python-completion-at-point)
9552 (python-symbol-completions): Delete functions.
9553 (python-completion-complete-at-point): New function.
9554 (python-load-file): Delete function.
9555 (python-shell-send-file): New function.
9556 (python-calculate-indentation): Delete function.
9557 (python-indent-calculate-indentation): New function.
9558 (python-skip-comments/blanks): Delete function.
9559 (python-util-forward-comment): New function.
9560 (python-continuation-line-p): Delete function.
9561 (python-info-continuation-line-p): New function.
9562 (python-which-func, python-current-defun): Delete function.
9563 (python-info-current-defun): New function.
9564 (python-beginning-of-defun): Delete function.
9565 (python-nav-beginning-of-defun): New function.
9566 (python-close-block-statement-p)
9567 (python-block-end-p): Delete function.
9568 (python-info-closing-block): New function.
9569 (python-comint-output-filter-function)
9570 (python-eldoc--get-doc-at-point, python-end-of-defun-function)
9571 (python-fill-comment, python-fill-decorator, python-fill-paren)
9572 (python-fill-string, python-imenu-make-element-tree)
9573 (python-imenu-make-tree, python-imenu-tree-assoc)
9574 (python-indent-context, python-indent-dedent-line)
9575 (python-indent-line-function)
9576 (python-indent-post-self-insert-function)
9577 (python-indent-toggle-levels)
9578 (python-info-assignment-continuation-line-p)
9579 (python-info-beginning-of-backlash)
9580 (python-info-block-continuation-line-p)
9581 (python-info-closing-block-message)
9582 (python-info-line-ends-backslash-p)
9583 (python-info-looking-at-beginning-of-defun)
9584 (python-info-ppss-context, python-info-ppss-context-type)
9585 (python-nav-list-defun-positions, python-nav-read-defun)
9586 (python-nav-sentence-end, python-nav-sentence-start)
9587 (python-pdbtrack-comint-output-filter-function)
9588 (python-pdbtrack-set-tracked-buffer)
9589 (python-shell-calculate-exec-path)
9590 (python-shell-calculate-process-environment)
9591 (python-shell-completion--do-completion-at-point)
9592 (python-shell-completion--get-completions)
9593 (python-shell-completion-complete-at-point)
9594 (python-shell-completion-complete-or-indent)
9595 (python-shell-get-or-create-process)
9596 (python-shell-get-process-name)
9597 (python-shell-internal-get-or-create-process)
9598 (python-shell-internal-get-process-name)
9599 (python-shell-internal-send-string, python-shell-make-comint)
9600 (python-shell-parse-command, python-shell-send-setup-code)
9601 (python-skeleton-add-menu-items)
9602 (python-util-clone-local-variables, python-util-position)
9603 (run-python-internal, python-indentation-levels)
9604 (python-nav-beginning-of-defun)
9605 (python-completion-complete-at-point): New functions.
9606 (run-python): Change arguments. New API requirements.
9607
9608 2012-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
9609
9610 * emacs-lisp/cl-lib.el (cl--defsubst-expand): Autoload inliner
9611 (bug#11649).
9612
9613 * emacs-lisp/macroexp.el (macroexp--compiler-macro): New function.
9614 (macroexp--expand-all): Use it.
9615
9616 * emacs-lisp/cl-macs.el (cl--transform-function-property): Remove.
9617 (cl-define-setf-expander, cl-deftype, cl-define-compiler-macro):
9618 Use `cl-function' instead.
9619
9620 2012-06-14 Juanma Barranquero <lekktu@gmail.com>
9621
9622 * makefile.w32-in (COMPILE_FIRST): Remove subr.el.
9623 Suggested by Stefan Monnier while discussing bug#11657.
9624
9625 2012-06-14 Sam Steingold <sds@gnu.org>
9626
9627 * files.el (abort-if-file-too-large): Use `file-size-human-readable'.
9628
9629 2012-06-14 Andreas Schwab <schwab@linux-m68k.org>
9630
9631 * play/doctor.el (doctor-doc): Remove parameter and use
9632 doctor-sent instead of sent.
9633 (doctor-read-print): Use doctor-sent instead of sent. (Bug#11708)
9634
9635 2012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
9636
9637 * files.el: Require cl-lib.
9638 (file-name-non-special): Replace case -> cl-case.
9639
9640 * emacs-lisp/cl-macs.el (cl-defstruct): Don't add print-func.
9641
9642 * emacs-lisp/edebug.el (edebug-read-function): Remove old incorrect
9643 mapping from #' to function*.
9644
9645 2012-06-13 Chong Yidong <cyd@gnu.org>
9646
9647 * mouse.el (mouse-drag-track): Do not set the mark if the user
9648 releases the mouse without selecting anything (Bug#11588).
9649
9650 2012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
9651
9652 * textmodes/tex-mode.el (latex-indent): Recognize tex-verbatim at EOB
9653 as well (bug#11646).
9654
9655 * loadup.el: Count byte-code functions as well.
9656
9657 * emacs-lisp/byte-opt.el (featurep): Move compiler-macro...
9658 * emacs-lisp/bytecomp.el (featurep): ...here (bug#11692).
9659
9660 * emacs-lisp/autoload.el (make-autoload): Accept nil doc-string-elt
9661 (bug#11649). Add cl-defun and cl-defmacro.
9662
9663 2012-06-13 Drew Adams <drew.adams@oracle.com>
9664
9665 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
9666 Fix last change.
9667
9668 2012-06-13 Michael Albinus <michael.albinus@gmx.de>
9669
9670 * net/dbus.el (dbus-call-method): Use timeout for `read-event'.
9671 Otherwise, it blocks in batch mode.
9672
9673 2012-06-13 Juanma Barranquero <lekktu@gmail.com>
9674
9675 * help-mode.el (bookmark-make-record-default): Declare.
9676
9677 2012-06-13 Chong Yidong <cyd@gnu.org>
9678
9679 * emacs-lisp/package.el (list-packages): Compute a list of
9680 packages that are newly-available since the last list-packages
9681 invocation.
9682 (package-menu--new-package-list): New var.
9683 (package-menu--generate, package-menu--print-info)
9684 (package-menu--status-predicate, package-menu-mark-install):
9685 Handle new status label "new".
9686
9687 2012-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
9688
9689 * emacs-lisp/cl-macs.el (cl-remf): Fix error in recent
9690 conversion to backquotes.
9691
9692 2012-06-12 Chong Yidong <cyd@gnu.org>
9693
9694 * emacs-lisp/edebug.el (edebug-inhibit-emacs-lisp-mode-bindings):
9695 Rename from gud-inhibit-global-bindings.
9696
9697 * emacs-lisp/eieio.el (eieio-pre-method-execution-hooks): Doc fix.
9698
9699 * nxml/nxml-glyph.el (nxml-glyph-set-functions): Rename abnormal
9700 hook from nxml-glyph-set-hook.
9701
9702 * progmodes/cwarn.el (cwarn-mode): Remove redundant variable
9703 declaration.
9704
9705 * progmodes/pascal.el (pascal-toggle-completions): Doc fix.
9706
9707 * textmodes/bibtex.el (bibtex-string-file-path, bibtex-file-path):
9708 Convert to defcustom.
9709
9710 2012-06-12 Drew Adams <drew.adams@oracle.com>
9711
9712 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
9713 New functions.
9714 (help-mode): Use them.
9715
9716 2012-06-11 Glenn Morris <rgm@gnu.org>
9717
9718 * progmodes/fortran.el (fortran-font-lock-keywords-3):
9719 Use preprocessor face for directives.
9720 (fortran-directive-re): Doc fix.
9721
9722 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
9723
9724 * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Fix error in recent
9725 conversion to backquotes (bug#11652).
9726
9727 Fix compiler-expansion of CL's cXXr functions (bug#11673).
9728 * emacs-lisp/cl-lib.el (cl--defalias): New function.
9729 (cl-values, cl-values-list, cl-copy-seq, cl-svref, cl-first)
9730 (cl-second, cl-rest, cl-endp, cl-third, cl-fourth): Use it.
9731 (cl-plusp, cl-minusp, cl-fifth, cl-sixth, cl-seventh, cl-eighth)
9732 (cl-ninth, cl-tenth): Mark them as inlinable.
9733 (cl-caaar, cl-caadr, cl-cadar, cl-caddr, cl-cdaar, cl-cdadr)
9734 (cl-cddar, cl-cdddr, cl-caaaar, cl-caaadr, cl-caadar, cl-caaddr)
9735 (cl-cadaar, cl-cadadr, cl-caddar, cl-cadddr, cl-cdaaar, cl-cdaadr)
9736 (cl-cdadar, cl-cdaddr, cl-cddaar, cl-cddadr, cl-cdddar, cl-cddddr):
9737 Add a compiler-macro declaration to use cl--compiler-macro-cXXr.
9738 (cl-list*, cl-adjoin): Don't put an autoload manually.
9739 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin)
9740 (cl--compiler-macro-list*): Add autoload cookie.
9741 (cl--compiler-macro-cXXr): New function.
9742
9743 * help-fns.el (help-fns--compiler-macro): New function extracted from
9744 describe-function-1; follow aliases and use `compiler-macro' property.
9745 (describe-function-1): Use it.
9746
9747 2012-06-11 Chong Yidong <cyd@gnu.org>
9748
9749 * startup.el (fancy-splash-head): Use splash.svg even if librsvg
9750 is uninstalled, if imagemagick is installed.
9751
9752 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
9753
9754 * emacs-lisp/cl-lib.el: Use lexical-binding.
9755 (cl-map-extents, cl-maclisp-member): Remove.
9756 (cl--set-elt, cl--set-nthcdr, cl--set-buffer-substring)
9757 (cl--set-substring, cl--block-wrapper, cl--block-throw)
9758 (cl--compiling-file, cl--mapcar-many, cl--do-subst): Use "cl--" prefix.
9759 * emacs-lisp/cl-extra.el: Use lexical-binding.
9760 (cl--mapcar-many, cl--map-keymap-recursively, cl--map-intervals)
9761 (cl--map-overlays, cl--set-frame-visible-p, cl--progv-save)
9762 (cl--progv-before, cl--progv-after, cl--finite-do, cl--set-getf)
9763 (cl--do-remf, cl--do-prettyprint): Use "cl--" prefix.
9764 * emacs-lisp/cl-seq.el: Use lexical-binding.
9765 (cl--parsing-keywords, cl--check-key, cl--check-test-nokey)
9766 (cl--check-test, cl--check-match): Use "cl--" prefix and backquotes.
9767 (cl--alist, cl--sublis-rec, cl--nsublis-rec, cl--tree-equal-rec):
9768 * emacs-lisp/cl-macs.el (cl--lambda-list-keywords): Use "cl--" prefix.
9769 * edmacro.el (edmacro-mismatch): Simplify to remove dependence on
9770 CL's internals.
9771
9772 2012-06-11 Michael Albinus <michael.albinus@gmx.de>
9773
9774 Sync with Tramp 2.2.6-pre.
9775
9776 * net/tramp-cache.el (tramp-dump-connection-properties): Let-bind
9777 `print-length' and `print-level' to nil, in order to avoid
9778 truncation. Reported by Christopher Schmidt
9779 <christopher@ristopher.com>.
9780
9781 * net/tramp-cmds.el (tramp-cleanup-connection): Delete also process.
9782
9783 * net/tramp-compat.el (tramp-compat-condition-case-unless-debug):
9784 New defmacro.
9785 (tramp-compat-copy-directory): Add optional argument
9786 COPY-CONTENTS. It is not handled yet.
9787
9788 * net/tramp-ftp.el (tramp-disable-ange-ftp): Fix docstring.
9789 (tramp-ftp-file-name-p): Simplify.
9790
9791 * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name):
9792 * net/tramp-gw.el (tramp-gw-open-connection): Add hop to
9793 connection vector.
9794
9795 * net/tramp-sh.el (tramp-copy-size-limit): Fix docstring.
9796 (tramp-methods): Do not use `tramp-password-end-of-line'.
9797 (tramp-completion-function-alist-putty): Handle UNIX case.
9798 (tramp-remote-path): Add "/opt/bin", "/opt/sbin" and "/opt/local/bin".
9799 (tramp-do-file-attributes-with-stat)
9800 (tramp-do-directory-files-and-attributes-with-stat) Return uid and
9801 gid as real numbers. They could run out of integer range on cygwin.
9802 (tramp-do-copy-or-rename-file-out-of-band): Better trace format.
9803 (tramp-sh-handle-expand-file-name): Handle hops.
9804 (tramp-open-connection-setup-interactive-shell):
9805 Use `tramp-cleanup'. Move check for busyboxes ...
9806 (tramp-find-shell): ... here. Simplify implementation.
9807 Set "remote-shell" property also for alternative shells.
9808 (tramp-remote-coding-commands): Check "test -c /dev/stdout".
9809 If failing, a regular file would be written otherwise.
9810 Reported by Dmitry Kurochkin <dmitry.kurochkin@gmail.com>.
9811 (tramp-find-inline-encoding): Cache the coding commands in the
9812 process cache. Apply test command on the remote side, if defined.
9813 (tramp-find-inline-compress): Cache the compress commands in the
9814 process cache.
9815 (tramp-compute-multi-hops): Save `tramp-default-proxies-alist'
9816 when requested. Handle hops.
9817 (tramp-current-connection): New defvar.
9818 (tramp-maybe-open-connection): Use `tramp-cleanup'.
9819 Throw `suppress', if there was a failed connection shortly before.
9820 Handle user interrupt. (Bug#10187)
9821 (tramp-get-inline-compress, tramp-get-inline-coding):
9822 Read connection properties from the process cache.
9823
9824 * net/tramp-smb.el (tramp-smb-server-version)
9825 (tramp-smb-wrong-passwd-regexp, tramp-smb-actions-with-tar):
9826 New defconsts.
9827 (tramp-smb-prompt): Extend for powershell prompt.
9828 (tramp-smb-file-name-handler-alist): Add handlers for
9829 `process-file', `shell-command' and `start-file-process'.
9830 (tramp-smb-winexe-program, tramp-smb-winexe-shell-command)
9831 (tramp-smb-winexe-shell-command-switch): New defcustoms.
9832 (tramp-smb-file-name-p): Simplify.
9833 (tramp-smb-action-with-tar, tramp-smb-handle-process-file)
9834 (tramp-smb-kill-winexe-function, tramp-smb-call-winexe)
9835 (tramp-smb-shell-quote-argument): New defuns.
9836 (tramp-smb-handle-copy-directory): Add COPY-CONTENTS argument.
9837 Implement using "tar". By this, time-stamps are preserved.
9838 (tramp-smb-handle-copy-file): Handle also the case of directories.
9839 (tramp-smb-do-file-attributes-with-stat)
9840 (tramp-smb-get-file-entries, tramp-smb-get-cifs-capabilities):
9841 Use `tramp-get-connection-buffer').
9842 (tramp-smb-handle-rename-file): Use "rename", when source and
9843 target are on the same share.
9844 (tramp-smb-maybe-open-connection): Handle wrong passwords.
9845 Use `tramp-smb-server-version'.
9846 (tramp-smb-wait-for-output): Remove prompt.
9847
9848 * net/tramp.el (top): Require 'cl.
9849 (tramp-methods, tramp-rsh-end-of-line):
9850 Remove `tramp-password-end-of-line' from docstring.
9851 (tramp-save-ad-hoc-proxies): New defcustom.
9852 (tramp-completion-function-alist): Adapt docstring.
9853 (tramp-default-password-end-of-line): Remove defcustom.
9854 (tramp-shell-prompt-pattern): Allow "[]" style prompts. (Bug#11065)
9855 (tramp-user-regexp, tramp-file-name-regexp-unified)
9856 (tramp-file-name-regexp-url): Extend regexp by hop separator.
9857 (tramp-postfix-hop-format, tramp-postfix-hop-regexp)
9858 (tramp-remote-file-name-spec-regexp): New defconst.
9859 (tramp-file-name-structure): Extend structure for hops.
9860 (tramp-get-method-parameter): Move up.
9861 (tramp-file-name-p, tramp-dissect-file-name)
9862 (with-parsed-tramp-file-name): Handle hops.
9863 (tramp-file-name-hop): New defun.
9864 (tramp-make-tramp-file-name): New optional arg HOP.
9865 (tramp-message-show-progress-reporter-message): New defvar.
9866 (tramp-with-progress-reporter): Use it. We cannot use
9867 `tramp-message-show-message' here, because this suppresses also
9868 error buffers.
9869 (tramp-error-with-buffer): Suppress buffer view, if
9870 `tramp-message-show-message' is nil.
9871 Use `tramp-get-connection-buffer'.
9872 (tramp-cleanup): New defun.
9873 (tramp-rfn-eshadow-update-overlay): Let-bind `non-essential' to `t'.
9874 (tramp-file-name-handler): If `debug-on-error' is set, propagate
9875 an error unchanged.
9876 (tramp-completion-handle-file-name-all-completions): Handle hops.
9877 Fix an error when called from ido.
9878 (tramp-completion-dissect-file-name): Use better local variable
9879 name. Add hop to the vector.
9880 (tramp-handle-insert-file-contents): Use progress-reporter for the
9881 whole scenario.
9882 (tramp-action-password): Let-bind `enable-recursive-minibuffers'
9883 to `t'.
9884 (tramp-check-for-regexp): Simplify search.
9885 (tramp-enter-password): Remove it. Move implementation ...
9886 (tramp-action-password): ... here.
9887 (tramp-mode-string-to-int, tramp-local-host-p)
9888 (tramp-make-tramp-temp-file, tramp-read-passwd)
9889 (tramp-clear-passwd, tramp-time-less-p, tramp-time-diff):
9890 Set tramp-autoload cookie.
9891
9892 * net/trampver.el: Update release number.
9893
9894 2012-06-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9895 Michael Albinus <michael.albinus@gmx.de>
9896
9897 * net/tramp.el (tramp-set-completion-function): Fix docstring.
9898 (tramp-parse-group, tramp-parse-file)
9899 (tramp-parse-shostkeys-sknownhosts): New defuns.
9900 (tramp-parse-rhosts, tramp-parse-rhosts-group, tramp-parse-shosts)
9901 (tramp-parse-shosts-group, tramp-parse-sconfig)
9902 (tramp-parse-sconfig-group, tramp-parse-shostkeys)
9903 (tramp-parse-sknownhosts, tramp-parse-hosts)
9904 (tramp-parse-hosts-group, tramp-parse-passwd, tramp-parse-netrc):
9905 Use them.
9906 (tramp-parse-passwd-group, tramp-parse-netrc-group)
9907 (tramp-parse-putty-group): Don't narrow.
9908 (tramp-parse-putty): Make a loop.
9909 (tramp-file-name-handler): Catch the `suppress' signal.
9910
9911 2012-06-11 Chong Yidong <cyd@gnu.org>
9912
9913 * image.el (imagemagick-register-types): Put the ImageMagick entry
9914 at the end of image-type-file-name-regexps.
9915
9916 2012-06-11 Johan Bockgård <bojohan@gnu.org>
9917
9918 * emacs-lisp/pcase.el (pcase-UPAT, pcase-QPAT): New edebug specs.
9919 (pcase, pcase-let*, pcase-dolist): Use them.
9920
9921 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
9922
9923 * emacs-lisp/pcase.el (pcase--let*): New function.
9924 (pcase-let*): Use it. Use pcase--memoize to avoid repeated expansions.
9925 (pcase--expand): Use macroexp-let².
9926
9927 2012-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
9928
9929 * emacs-lisp/timer.el, emacs-lisp/syntax.el, emacs-lisp/smie.el:
9930 * emacs-lisp/ewoc.el, emacs-lisp/cconv.el, emacs-lisp/bytecomp.el:
9931 * emacs-lisp/byte-opt.el, emacs-lisp/autoload.el: Convert to cl-lib.
9932 * emacs-lisp/easymenu.el, emacs-lisp/easy-mmode.el:
9933 * emacs-lisp/derived.el: Use pcase instead of `cl'.
9934 * emacs-lisp/cl-lib.el: Get rid of special cl-macs auto load.
9935
9936 2012-06-10 Glenn Morris <rgm@gnu.org>
9937
9938 * mail/rmail.el (rmail-yank-current-message): Leave point at
9939 correct position. (Bug#11660)
9940
9941 2012-06-10 Chong Yidong <cyd@gnu.org>
9942
9943 * allout-widgets.el: Fix code header.
9944
9945 2012-06-10 Chong Yidong <cyd@gnu.org>
9946
9947 * cus-edit.el (customize-changed-options-previous-release):
9948 Bump to 24.1.
9949
9950 2012-06-09 Andreas Schwab <schwab@linux-m68k.org>
9951
9952 * Makefile.in (BIG_STACK_DEPTH): Enlarge to 2200.
9953
9954 2012-06-09 Chong Yidong <cyd@gnu.org>
9955
9956 * ebuff-menu.el (electric-buffer-list): Preserve header line.
9957
9958 2012-06-09 Martin Rudalics <rudalics@gmx.at>
9959
9960 * window.el (special-display-popup-frame): Don't use
9961 window--display-buffer (Bug#11651).
9962
9963 2012-06-09 Eli Zaretskii <eliz@gnu.org>
9964
9965 Fix parallel builds: make sure loaddefs.el is not being written
9966 while Lisp files are compiled.
9967 (compile): Don't depend on 'mh-autoloads'.
9968 (compile-CMD, compile-SH): Depend on 'autoloads'.
9969 (bootstrap): Don't depend on 'autoloads' and 'mh-autoloads'.
9970
9971 * makefile.w32-in (BIG_STACK_DEPTH): Enlarge to 2200. (Bug#11649)
9972
9973 2012-06-09 Chong Yidong <cyd@gnu.org>
9974
9975 * face-remap.el (face-remap-add-relative, face-remap-set-base)
9976 (buffer-face-set, buffer-face-toggle, buffer-face-mode-invoke):
9977 Doc fixes (Bug#11225).
9978
9979 2012-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
9980
9981 * emacs-lisp/macroexp.el (macroexp--expand-all): Only autoload
9982 a function if there's a clear indication that it has a compiler-macro.
9983 * emacs-lisp/byte-run.el (defun-declarations-alist, defmacro, defun)
9984 (macro-declarations-alist): Add arglist to declaration functions.
9985 (defun-declarations-alist): Add `obsolete' and `compiler-macro'.
9986 * emacs-lisp/cl-seq.el (cl-member, cl-assoc):
9987 * emacs-lisp/cl-lib.el (cl-list*, cl-adjoin):
9988 * emacs-lisp/cl-extra.el (cl-get): Use the new `declare' statement.
9989 Also add autoload to find the compiler macro.
9990 * emacs-lisp/cl-macs.el (eql) [compiler-macro]: Remove.
9991 (cl--compiler-macro-member, cl--compiler-macro-assoc)
9992 (cl--compiler-macro-adjoin, cl--compiler-macro-list*)
9993 (cl--compiler-macro-get): New functions, replacing calls to
9994 cl-define-compiler-macro.
9995 (cl-typep) [compiler-macro]: Use macroexp-let².
9996
9997 2012-06-08 Nick Dokos <nicholas.dokos@hp.com> (tiny change)
9998
9999 * calendar/icalendar.el (icalendar--parse-vtimezone): Import TZID
10000 string properly, fixes Bug#11473.
10001
10002 2012-06-08 Chong Yidong <cyd@gnu.org>
10003
10004 * faces.el (set-face-attribute): Doc fix.
10005 (modify-face): Don't use :bold and :italic.
10006 (error, warning, success): Tweak definitions.
10007
10008 * cus-edit.el (custom-modified, custom-invalid, custom-rogue)
10009 (custom-modified, custom-set, custom-changed, custom-themed)
10010 (custom-saved, custom-button, custom-button-mouse)
10011 (custom-button-pressed, custom-state, custom-comment-tag)
10012 (custom-variable-tag, custom-group-tag-1, custom-group-tag)
10013 (custom-group-subtitle): Use new-style face specs.
10014 (custom-invalid-face, custom-rogue-face, custom-modified-face)
10015 (custom-set-face, custom-changed-face, custom-saved-face)
10016 (custom-button-face, custom-button-pressed-face)
10017 (custom-documentation-face, custom-state-face)
10018 (custom-comment-face, custom-comment-tag-face)
10019 (custom-variable-tag-face, custom-variable-button-face)
10020 (custom-face-tag-face, custom-group-tag-face-1)
10021 (custom-group-tag-face): Remove obsolete face alias.
10022
10023 * epa.el (epa-validity-high, epa-validity-medium)
10024 (epa-validity-low, epa-mark, epa-field-name, epa-string)
10025 (epa-field-name, epa-field-body):
10026 * font-lock.el (font-lock-comment-face, font-lock-string-face)
10027 (font-lock-keyword-face, font-lock-builtin-face)
10028 (font-lock-function-name-face, font-lock-variable-name-face)
10029 (font-lock-type-face, font-lock-constant-face):
10030 * ido.el (ido-first-match, ido-only-match, ido-subdir)
10031 (ido-virtual, ido-indicator, ido-incomplete-regexp):
10032 * speedbar.el (speedbar-button-face, speedbar-file-face)
10033 (speedbar-directory-face, speedbar-tag-face)
10034 (speedbar-selected-face, speedbar-highlight-face)
10035 (speedbar-separator-face):
10036 * whitespace.el (whitespace-newline, whitespace-space)
10037 (whitespace-hspace, whitespace-tab, whitespace-trailing)
10038 (whitespace-line, whitespace-space-before-tab)
10039 (whitespace-space-after-tab, whitespace-indentation)
10040 (whitespace-empty):
10041 * emulation/cua-base.el (cua-global-mark):
10042 * eshell/em-prompt.el (eshell-prompt):
10043 * net/newst-plainview.el (newsticker-new-item-face)
10044 (newsticker-old-item-face, newsticker-immortal-item-face)
10045 (newsticker-obsolete-item-face, newsticker-date-face)
10046 (newsticker-statistics-face, newsticker-default-face):
10047 * net/newst-reader.el (newsticker-feed-face)
10048 (newsticker-extra-face, newsticker-enclosure-face):
10049 * net/newst-treeview.el (newsticker-treeview-face)
10050 (newsticker-treeview-new-face, newsticker-treeview-old-face)
10051 (newsticker-treeview-immortal-face)
10052 (newsticker-treeview-obsolete-face)
10053 (newsticker-treeview-selection-face):
10054 * net/rcirc.el (rcirc-my-nick, rcirc-other-nick)
10055 (rcirc-bright-nick, rcirc-server, rcirc-timestamp)
10056 (rcirc-nick-in-message, rcirc-nick-in-message-full-line)
10057 (rcirc-prompt, rcirc-track-keyword, rcirc-url, rcirc-keyword):
10058 * nxml/nxml-outln.el (nxml-heading, nxml-outline-indicator)
10059 (nxml-outline-active-indicator, nxml-outline-ellipsis):
10060 * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
10061 (mpuz-text):
10062 * progmodes/vera-mode.el (vera-font-lock-number)
10063 (vera-font-lock-function, vera-font-lock-interface):
10064 * textmodes/table.el (table-cell): Use new-style face specs, and
10065 don't use the old :bold and :italic attributes.
10066
10067 * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
10068 (ebrowse-member-attribute, ebrowse-default, ebrowse-file-name)
10069 (ebrowse-member-class, ebrowse-progress): Likewise.
10070 (ebrowse-tree-mark-face, ebrowse-root-class-face)
10071 (ebrowse-file-name-face, ebrowse-default-face)
10072 (ebrowse-member-attribute-face, ebrowse-member-class-face)
10073 (ebrowse-progress-face): Remove obsolete faces.
10074
10075 * progmodes/flymake.el (flymake-errline, flymake-warnline):
10076 Inherit from error and warning faces respectively.
10077
10078 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
10079 Likewise.
10080 (flyspell-incorrect-face, flyspell-duplicate-face):
10081 Remove obsolete aliases.
10082
10083 2012-06-08 Michael Albinus <michael.albinus@gmx.de>
10084
10085 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
10086 Avoid infloop.
10087
10088 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
10089
10090 * startup.el (argv, argi): Make lexically scoped.
10091 * emacs-lisp/float-sup.el (pi): Use internal-make-var-non-special.
10092 * emacs-lisp/cl-macs.el: Use lexical-binding.
10093 Rename cl-bind-* to cl--bind-*.
10094 * files.el: Don't require `cl' since it doesn't use it.
10095 * emacs-lisp/pcase.el, emacs-lisp/macroexp.el: Add coding cookie.
10096
10097 2012-06-08 Juanma Barranquero <lekktu@gmail.com>
10098
10099 * textmodes/texinfmt.el: Fix bug#11640 (reverts part of 2008-07-31T05:33:56Z!dann@ics.uci.edu).
10100 (texinfo-format-printindex): Use `texinfo-sort-region' in all platforms,
10101 instead of calling external sort utility.
10102 (texinfo-sort-region, texinfo-sort-startkeyfun): Restore functions.
10103
10104 2012-06-08 Eli Zaretskii <eliz@gnu.org>
10105
10106 * descr-text.el (describe-char): Mention how to insert the
10107 character, if the current input method doesn't support it.
10108 See the discussion in this thread for the details:
10109 http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00533.html.
10110
10111 2012-06-08 Sam Steingold <sds@gnu.org>
10112
10113 * bindings.el (global-map): Bind XF86Forward to next-buffer and
10114 XF86Back to previous-buffer.
10115 (minibuffer-local-map): Bind them to next-history-element and
10116 previous-history-element respectively.
10117 * help-mode.el (help-mode-map): Bind them to help-go-forward and
10118 help-go-back respectively.
10119 * info.el (Info-mode-map): Bind them to Info-history-forward and
10120 Info-history-back respectively.
10121 These are the keys next to Up on the ThinkPad keyboard.
10122
10123 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
10124
10125 Get rid of cl-lexical-let, keeping only lexical-let for compatibility.
10126 * emacs-lisp/cl-macs.el: Provide itself.
10127 (cl--labels-convert-cache): New var.
10128 (cl--labels-convert): New function.
10129 (cl-flet, cl-labels): New implementation with new semantics, relying on
10130 lexical-binding.
10131 * emacs-lisp/cl.el: Mark compatibility aliases as obsolete.
10132 (cl-closure-vars, cl--function-convert-cache)
10133 (cl--function-convert): Move from cl-macs.el.
10134 (lexical-let, lexical-let*, flet, labels): Move from cl-macs.el and
10135 rename by removing the "cl-" prefix.
10136 * emacs-lisp/macroexp.el (macroexp-unprogn): New function.
10137
10138 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
10139
10140 * emacs-lisp/cl.el (cl-macroexpand, cl-macro-environment)
10141 (cl-macroexpand-all, cl-not-hash-table, cl-builtin-gethash)
10142 (cl-builtin-remhash, cl-builtin-clrhash, cl-builtin-maphash)
10143 (cl-map-keymap, cl-copy-tree, cl-gethash, cl-puthash, cl-remhash)
10144 (cl-clrhash, cl-maphash, cl-make-hash-table, cl-hash-table-p)
10145 (cl-hash-table-count): Add old compatibility aliases.
10146
10147 * emacs-lisp/cl-macs.el (cl-macro-environment): Remove var.
10148 Use macroexpand-all-environment instead.
10149 (cl--old-macroexpand): New var.
10150 (cl--sm-macroexpand): New function.
10151 (cl-symbol-macrolet): Use it during macro expansion.
10152 (cl--function-convert-cache): New var.
10153 (cl--function-convert): New function, extracted from
10154 cl-macroexpand-all.
10155 (cl-lexical-let): Use it.
10156
10157 * emacs-lisp/cl-lib.el (cl-macro-environment): Remove decl.
10158 (cl-macroexpand): Move to cl-macs.el and rename to cl--sm-macroexpand.
10159 (cl-member): Remove old alias.
10160
10161 * emacs-lisp/cl-extra.el (cl-map-keymap, cl-copy-tree)
10162 (cl-not-hash-table, cl-builtin-gethash, cl-builtin-remhash)
10163 (cl-builtin-clrhash, cl-builtin-maphash, cl-gethash, cl-puthash)
10164 (cl-remhash, cl-clrhash, cl-maphash, cl-make-hash-table)
10165 (cl-hash-table-p, cl-hash-table-count): Move to cl.el.
10166 (cl-macroexpand-cmacs): Remove var.
10167 (cl-macroexpand-all, cl-macroexpand-body): Remove funs.
10168 Use macroexpand-all instead.
10169
10170 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
10171
10172 * emacs-lisp/macroexp.el (macroexp-progn, macroexp-let*, macroexp-if)
10173 (macroexp-let², macroexp--const-symbol-p, macroexp-const-p)
10174 (macroexp-copyable-p): New functions and macros.
10175 * emacs-lisp/edebug.el (edebug-unwrap):
10176 * emacs-lisp/disass.el (disassemble-internal): Use macroexp-progn.
10177 * emacs-lisp/pcase.el: Use macroexp-let*, macroexp-if, ...
10178 (pcase--let*): Remove.
10179 * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p)
10180 (byte-compile-constp): Remove. Use macroexp--const-symbol-p and
10181 macroexp-const-p instead.
10182 * emacs-lisp/byte-opt.el: Use macroexp-const-p and macroexp-progn.
10183
10184 * emacs-lisp/cl-macs.el: Clean up the name space by using "cl--"
10185 instead of "cl-" for internal definitions. Use macroexp-const-p.
10186 (cl-old-bc-file-form): Remove var.
10187 (cl-const-exprs-p): Remove fun.
10188 (cl-labels, cl-macrolet): Use backquote.
10189 (cl-lexical-let): Use cl-symbol-macrolet. Don't use cl-defun-expander.
10190 (cl-defun-expander, cl-byte-compile-compiler-macro): Remove fun.
10191 (cl-define-setf-expander): Rename from cl-define-setf-method.
10192 * emacs-lisp/cl.el: Adjust alias for define-setf-method.
10193
10194 * international/mule-cmds.el: Don't require CL.
10195 (view-hello-file): Don't use `letf'.
10196
10197 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
10198
10199 * tmm.el (tmm-prompt): Use string-prefix-p.
10200 (tmm-completion-delete-prompt): Don't affect current-buffer outside.
10201 (tmm-add-prompt): Use minibuffer-completion-help.
10202 (tmm-delete-map): Remove.
10203
10204 * subr.el (kbd): Make it its own function.
10205
10206 2012-06-07 Stefan Merten <smerten@oekonux.de>
10207
10208 * textmodes/rst.el: Use `eval-when-compile' for requiring `cl.el'.
10209 Silence compiler warnings. Fix versions.
10210 (rst-position-if, rst-position, rst-some, rst-signum): New functions.
10211 (rst-shift-region, rst-adornment-level, rst-compute-tabs)
10212 (rst-indent-line, rst-shift-region, rst-forward-line): Use them.
10213 (rst-package-emacs-version-alist): Correct Emacs version to
10214 represent major merge with upstream.
10215 (rst-transition, rst-adornment, rst-compile-toolsets): Fix versions.
10216
10217 2012-06-06 Glenn Morris <rgm@gnu.org>
10218
10219 * mail/emacsbug.el (report-emacs-bug): Add relevant EMACS env-vars.
10220 Only print environment variables if set.
10221
10222 2012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
10223
10224 * emacs-lisp/macroexp.el: Don't require CL since we don't use it.
10225 (macroexp--cons): Rename from maybe-cons.
10226 (macroexp--accumulate): Rename from macroexp-accumulate.
10227 (macroexp--all-forms): Rename from macroexpand-all-forms.
10228 (macroexp--all-clauses): Rename from macroexpand-all-clauses.
10229 (macroexp--expand-all): Rename from macroexpand-all-1.
10230
10231 2012-06-06 Sam Steingold <sds@gnu.org>
10232
10233 * calendar/calendar.el (calendar-in-read-only-buffer):
10234 Call `special-mode' to enable the standard read-only keybindings.
10235
10236 2012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
10237
10238 * emacs-lisp/macroexp.el (macroexpand-all-1): Don't spam the output
10239 with "loading" messages (bug#11635).
10240
10241 2012-06-06 Michael Albinus <michael.albinus@gmx.de>
10242
10243 * files.el (enable-remote-dir-locals): New option.
10244 (hack-dir-local-variables): Use it. (Bug#1933, Bug#6731)
10245
10246 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
10247 Ensure, that the temp directory is local.
10248
10249 * net/tramp-sh.el (tramp-sh-handle-write-region): Let-bind
10250 `temporary-file-directory'.
10251
10252 * progmodes/python.el (python-send-region): Ensure, that the
10253 temporary file is created also in the remote case.
10254
10255 2012-06-06 Glenn Morris <rgm@gnu.org>
10256
10257 * vc/vc-rcs.el (vc-rcs-rcs2log-program): New.
10258 (vc-rcs-update-changelog): Use it.
10259
10260 * emacs-lisp/authors.el (authors-fixed-entries): Remove vcdiff.
10261
10262 * vc/vc-sccs.el (vc-sccs-write-revision): New function.
10263 (vc-sccs-workfile-unchanged-p): Use vc-sccs-write-revision.
10264 (vc-sccs-diff): Replace use of the external vcdiff script.
10265
10266 2012-06-05 Glenn Morris <rgm@gnu.org>
10267
10268 * ledit.el: Move to obsolete/.
10269
10270 2012-06-05 Sam Steingold <sds@gnu.org>
10271
10272 * calendar/calendar.el (calendar-exit): Reinstate the 2012-03-28
10273 patch (Bug#11140).
10274
10275 2012-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
10276
10277 * emacs-lisp/cust-print.el: Move to obsolete.
10278
10279 * emacs-lisp/macroexp.el (macroexpand-all-1): Tolerate errors during
10280 compiler-macro expansion.
10281
10282 Add native compiler-macro support.
10283 * emacs-lisp/macroexp.el (macroexpand-all-1):
10284 Support compiler-macros directly. Properly follow aliases and apply
10285 the compiler macros more thoroughly.
10286 * emacs-lisp/cl.el: Don't copy compiler-macro properties any more since
10287 macroexpand now properly follows aliases.
10288 * emacs-lisp/cl-macs.el (toplevel, cl-define-compiler-macro)
10289 (cl-compiler-macroexpand): Use new prop.
10290 * emacs-lisp/byte-opt.el (featurep): Optimize earlier.
10291
10292 * emacs-lisp/cl-lib.el (custom-print-functions): Add alias.
10293
10294 2012-06-05 Martin Rudalics <rudalics@gmx.at>
10295
10296 * window.el (get-lru-window, get-mru-window, get-largest-window):
10297 New argument NOT-SELECTED to avoid picking the selected window.
10298 (window--display-buffer-1, window--display-buffer-2): Replace by
10299 new function window--display-buffer
10300 (display-buffer-same-window, display-buffer-reuse-window)
10301 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
10302 Use window--display-buffer.
10303 (display-buffer-use-some-window): Remove temporary dedication
10304 hack by calling get-lru-window and get-largest-window with
10305 NOT-SELECTED argument non-nil. Call window--display-buffer.
10306
10307 2012-06-05 Glenn Morris <rgm@gnu.org>
10308
10309 * vc/vc-sccs.el (vc-sccs-workfile-unchanged-p):
10310 Replace external vcdiff script.
10311
10312 2012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
10313
10314 * emacs-lisp/cl-lib.el (cl-values, cl-values-list): Fix up last change.
10315
10316 2012-06-04 Chong Yidong <cyd@gnu.org>
10317
10318 * image.el (imagemagick-types-inhibit): Revert last change.
10319 Add INFO and M.
10320 (imagemagick-enabled-types): Remove CIN and EPS*.
10321
10322 2012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
10323
10324 * emacs-lisp/cl-lib.el: Rename from cl.el.
10325 * emacs-lisp/cl.el: New compatibility file.
10326 * emacs-lisp/cl-lib.el, emacs-lisp/cl-seq.el, emacs-lisp/cl-macs.el:
10327 * emacs-lisp/cl-extra.el: Rename all top-level functions and variables
10328 to obey the "cl-" prefix.
10329 * emacs-lisp/macroexp.el (macroexpand-all-1): Adjust to new name.
10330
10331 2012-06-03 Glenn Morris <rgm@gnu.org>
10332
10333 * emacs-lisp/authors.el (authors-aliases): Addition.
10334
10335 * cus-start.el (tool-bar-style, tool-bar-max-label-size):
10336 Fix :version.
10337
10338 2012-06-03 Stefan Merten <smerten@oekonux.de>
10339
10340 * textmodes/rst.el: Add comments.
10341 (rst-transition, rst-adornment): New faces.
10342 (rst-adornment-faces-alist): Make default safe to reevaluate.
10343 Fixes
10344 http://sourceforge.net/tracker/?func=detail&atid=422030&aid=3479603&group_id=38414.
10345 Improve customization tags.
10346 (rst-define-level-faces): Clarify meaning.
10347
10348 2012-06-03 Chong Yidong <cyd@gnu.org>
10349
10350 * progmodes/compile.el (compilation-mode-line-fail)
10351 (compilation-mode-line-run, compilation-mode-line-exit):
10352 New faces.
10353 (compilation-start, compilation-handle-exit): Use them (Bug#11032).
10354
10355 2012-06-03 Jack Duthen <duthen.mac.01@gmail.com> (tiny change)
10356
10357 * progmodes/which-func.el (which-func-update-ediff-windows):
10358 New function. Use it in ediff-select-hook (Bug#11478).
10359
10360 2012-06-03 Chong Yidong <cyd@gnu.org>
10361
10362 * bindings.el: Remove explicit help text from format-mode-line.
10363 It is now supplied by mode-line-default-help-echo.
10364 (mode-line-front-space, mode-line-end-spaces)
10365 (mode-line-misc-info): New variables.
10366 (mode-line-modes, mode-line-position): Move the default value to
10367 the variable definition.
10368 (mode-line-default-help-echo): New defcustom.
10369 (mode-line-mule-info-help-echo, mode-line-read-only-help-echo)
10370 (mode-line-modified-help-echo): New functions.
10371 (mode-line-mule-info, mode-line-modified): Use them.
10372 (mode-line-eol-desc, propertized-buffer-identification):
10373 Consistency fixes for help text.
10374 (mode-line-coding-system-map): Allow using mouse-3 to invoke
10375 set-buffer-file-coding-system (Bug#289).
10376 (mode-line-mule-info-help-echo): Update help text.
10377
10378 2012-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
10379
10380 * simple.el (execute-extended-command): Set real-this-command
10381 (bug#11506).
10382
10383 2012-06-02 Chong Yidong <cyd@gnu.org>
10384
10385 Remove incorrect uses of "modeline" in comments, docstrings, and
10386 function/variable names (Bug#10329).
10387
10388 * cus-edit.el (mode-line):
10389 * dframe.el (dframe-mouse-hscroll):
10390 * emacs-lisp/re-builder.el:
10391 * emacs-lisp/easy-mmode.el (define-minor-mode):
10392 * frame.el (set-frame-name):
10393 * help.el (lookup-minor-mode-from-indicator):
10394 * net/rcirc.el (rcirc-activity-string, rcirc-short-buffer-name):
10395 * progmodes/cc-cmds.el (c-toggle-auto-newline)
10396 (c-toggle-hungry-state):
10397 * progmodes/antlr-mode.el (antlr-language-alist):
10398 * progmodes/idlw-shell.el (idlwave-shell-electric-stop-line-face):
10399 * progmodes/vhdl-mode.el (vhdl-mode):
10400 * progmodes/which-func.el (which-func, which-func-cleanup-function):
10401 * term/ns-win.el (ns-face-at-pos):
10402 * term/sup-mouse.el (sup-mouse-report):
10403 * textmodes/flyspell.el (flyspell-mode-line-string):
10404 * textmodes/ispell.el (ispell-highlight-face):
10405 * textmodes/reftex-global.el:
10406 * vc/vc-arch.el (vc-arch-mode-line-string):
10407 * vc/vc-cvs.el (vc-cvs-mode-line-string):
10408 * vc/vc-git.el (vc-git-mode-line-string):
10409 * vc/vc-hooks.el (vc-display-status)
10410 (vc-default-mode-line-string):
10411 * vc/vc-mtn.el (vc-mtn-mode-line-string): Doc fixes.
10412
10413 * ansi-color.el (ansi-color-faces-vector): Change default faces.
10414
10415 * dired.el (dired-sort-set-mode-line): Rename from
10416 dired-sort-set-modeline. All callers changed.
10417
10418 * eshell/esh-mode.el (eshell-status-in-mode-line): Rename from
10419 eshell-status-in-modeline.
10420
10421 * foldout.el (foldout-mode-line-string): Rename from
10422 foldout-modeline-string. All callers changed.
10423 (foldout-update-mode-line): Rename from foldout-update-modeline.
10424
10425 * subr.el (redraw-modeline): Make into obsolete alias.
10426
10427 * calendar/timeclock.el (timeclock-mode-line-display): Rename from
10428 timeclock-modeline-display. Make old name an alias.
10429 (timeclock-update-mode-line): Likewise. All callers changed.
10430 (timeclock-mode-line-display): No need to check before using
10431 add-hook.
10432 (timeclock-relative, timeclock-day-over-hook)
10433 (timeclock-use-elapsed, timeclock-mode-string)
10434 (timeclock-mode-line-display): Doc fix, "modeline" -> "mode line".
10435
10436 * emulation/crisp.el (crisp-mode-mode-line-string): Rename from
10437 crisp-mode-modeline-string.
10438
10439 * play/solitaire.el (solitaire-build-mode-line): Rename from
10440 solitaire-build-modeline. All callers changed.
10441
10442 * play/zone.el (zone-hiding-mode-line): Rename from
10443 zone-hiding-modeline. All callers changed.
10444 (zone): Remove unusued `modeline-hidden-level' property.
10445
10446 * progmodes/xscheme.el (xscheme-mode-line-initialize): Rename from
10447 xscheme-modeline-initialize. All callers changed.
10448
10449 * strokes.el (strokes-lighter): Rename from
10450 strokes-modeline-string.
10451
10452 * textmodes/sgml-mode.el (html-face-tag-alist)
10453 (html-tag-face-alist): Use mode-line face instead of obsolete
10454 alias modeline.
10455
10456 2012-06-02 Stefan Merten <smerten@oekonux.de>
10457
10458 * textmodes/rst.el: Always require `cl'.
10459 (rst-mode-map): Fix meaning of C-M-a / C-M-e.
10460
10461 2012-06-02 Chong Yidong <cyd@gnu.org>
10462
10463 * image.el (imagemagick-enabled-types): Rename from
10464 imagemagick-types-enable. Add many more types.
10465 (imagemagick-types-inhibit): Change default to nil.
10466 (imagemagick-filter-types): Caller changed.
10467
10468 2012-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
10469
10470 * emacs-lisp/cl-macs.el: Use backquotes.
10471 (cl-transform-function-property): Use eval-and-compile rather than
10472 abusing `require'.
10473 (defstruct): Use declare-function instead of with-no-warnings.
10474
10475 * emacs-lisp/bytecomp.el: Fix last change (bug#11594).
10476 (byte-compile-output-docform): Re-add the print-circle bindings.
10477 (byte-compile-fix-header): Use #$ just because it's shorter.
10478 (byte-compile-output-file-form): Remove defun/defmacro.
10479
10480 2012-06-01 Martin Rudalics <rudalics@gmx.at>
10481
10482 * simple.el (choose-completion): Remove now obsolete binding for
10483 owindow.
10484
10485 2012-06-01 Michael Albinus <michael.albinus@gmx.de>
10486
10487 * net/tramp.el (tramp-check-for-regexp): Search from buffer end,
10488 in order to avoid "Stack overflow in regexp matcher".
10489
10490 2012-05-31 Glenn Morris <rgm@gnu.org>
10491
10492 * image.el: For clarity, call imagemagick-register-types at
10493 top-level, rather than relying on a custom :initialize.
10494 (imagemagick-types-enable): New option. (Bug#11557)
10495 (imagemagick-filter-types): New function. (Bug#7406)
10496 (imagemagick-register-types): Use imagemagick-filter-types.
10497 If disabling support, remove elements altogether rather
10498 than using an impossible regexp.
10499 (imagemagick-types-inhibit): Give it the default init function.
10500
10501 2012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
10502
10503 * emacs-lisp/bytecomp.el (byte-compile-fix-header):
10504 Handle arbitrary file name lengths (Bug#11585).
10505
10506 2012-05-31 Martin Rudalics <rudalics@gmx.at>
10507
10508 * desktop.el (desktop-read): Clear previous and next buffers for
10509 all windows and bury *Messages* buffer (bug#11556).
10510
10511 2012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
10512
10513 Add `declare' for `defun'. Align `defmacro's with it.
10514 * emacs-lisp/easy-mmode.el (define-minor-mode)
10515 (define-globalized-minor-mode): Don't autoload the var definitions.
10516 * emacs-lisp/byte-run.el: Use lexical-binding.
10517 (defun-declarations-alist, macro-declarations-alist): New vars.
10518 (defmacro, defun): Use them.
10519 (make-obsolete, define-obsolete-function-alias)
10520 (make-obsolete-variable, define-obsolete-variable-alias):
10521 Use `declare'.
10522 (macro-declaration-function): Mark obsolete.
10523 * emacs-lisp/autoload.el: Use lexical-binding.
10524 (make-autoload): Add `expansion' arg. Rely more on macro expansion.
10525
10526 2012-05-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
10527
10528 * textmodes/ispell.el (ispell-with-no-warnings):
10529 Define as a macro.
10530 (ispell-kill-ispell, ispell-change-dictionary):
10531 Use `called-interactively-p' for Emacs instead of obsolete
10532 `interactive-p'.
10533
10534 2012-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
10535
10536 * emacs-lisp/byte-run.el (defmacro, defun): Move from C.
10537 (macro-declaration-function): Move var from C code.
10538 (macro-declaration-function): Define function with defalias.
10539 * emacs-lisp/macroexp.el (macroexpand-all-1):
10540 * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form):
10541 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Don't handle
10542 defun/defmacro any more.
10543 * emacs-lisp/bytecomp.el (byte-compile-arglist-signature):
10544 Provide fallback for unknown arglist.
10545 (byte-compile-arglist-warn): Change calling convention.
10546 (byte-compile-output-file-form): Move print-vars binding.
10547 (byte-compile-output-docform): Simplify accordingly.
10548 (byte-compile-file-form-defun, byte-compile-file-form-defmacro)
10549 (byte-compile-defmacro-declaration): Remove.
10550 (byte-compile-file-form-defmumble): Generalize to defalias.
10551 (byte-compile-output-as-comment): Return byte-positions.
10552 Simplify callers accordingly.
10553 (byte-compile-lambda): Use `assert'.
10554 (byte-compile-defun, byte-compile-defmacro): Remove.
10555 (byte-compile-file-form-defalias):
10556 Use byte-compile-file-form-defmumble.
10557 (byte-compile-defalias-warn): Remove.
10558
10559 2012-05-29 Stefan Merten <smerten@oekonux.de>
10560
10561 * textmodes/rst.el: Silence `checkdoc-ispell' errors where
10562 possible. Fix authors. Improve comments. Improve loading of `cl'.
10563
10564 (rst-mode-abbrev-table): Merge definition.
10565 (rst-mode): Make sure `font-lock-defaults' is buffer local.
10566 (rst-define-key, rst-deprecated-keys, rst-call-deprecated): Refactor.
10567
10568 2012-05-29 Ulf Jasper <ulf.jasper@web.de>
10569
10570 * calendar/icalendar.el
10571 (icalendar-export-region): Export UID properly.
10572
10573 2012-05-29 Leo Liu <sdl.web@gmail.com>
10574 * calendar/icalendar.el (icalendar-import-format):
10575 Add `icalendar-import-format-uid' (Bug#11525).
10576 (icalendar-import-format-uid): New.
10577 (icalendar--parse-summary-and-rest, icalendar--format-ical-event):
10578 Export UID.
10579
10580 2012-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
10581
10582 * emacs-lisp/pcase.el (pcase--expand): Accept different sets of vars in
10583 different alternative patterns.
10584 (pcase-codegen): Be more careful to preserve identity.
10585 (pcase--u1): Don't forget to mark vars as used.
10586
10587 * emacs-lisp/bytecomp.el (byte-compile-constp): Treat #'v as a constant.
10588 (byte-compile-close-variables): Bind byte-compile--outbuffer here...
10589 (byte-compile-from-buffer): ...rather than here.
10590
10591 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Don't re-preprocess
10592 functions from byte-compile-function-environment.
10593
10594 2012-05-29 Troels Nielsen <bn.troels@gmail.com>
10595
10596 * window.el (window-deletable-p): Avoid deleting the root window
10597 of a frame with an active minibuffer.
10598
10599 2012-05-29 Martin Rudalics <rudalics@gmx.at>
10600
10601 * simple.el (choose-completion): Use quit-window (Bug#11567).
10602
10603 2012-05-29 Chong Yidong <cyd@gnu.org>
10604
10605 * whitespace.el (whitespace-cleanup): Fix usage of
10606 whitespace-empty-at-bob-regexp (Bug#11492).
10607
10608 2012-05-29 Aaron S. Hawley <aaron.s.hawley@gmail.com>
10609
10610 * vc/vc.el (vc-revert, vc-rollback): Dont kill vc-diff buffer on
10611 revert (Bug#11488).
10612
10613 2012-05-29 Juri Linkov <juri@jurta.org>
10614
10615 * isearch.el (isearch-mode-map): Bind `M-s _' to
10616 `isearch-toggle-symbol'. Bind `M-s c' to
10617 `isearch-toggle-case-fold'.
10618 (search-map): Bind `M-s _' to `isearch-forward-symbol'.
10619 (isearch-forward): Add `M-s _' to the docstring.
10620 (isearch-forward-symbol, isearch-toggle-case-fold)
10621 (isearch-symbol-regexp): New functions. (Bug#11381)
10622
10623 2012-05-29 Juri Linkov <juri@jurta.org>
10624
10625 * isearch.el (isearch-word): Add docstring. (Bug#11381)
10626 (isearch-occur, isearch-search-and-update): If `isearch-word' is
10627 a function, call it to get the regexp.
10628 (isearch-message-prefix): If `isearch-word' holds a symbol, use its
10629 property `isearch-message-prefix' instead of the string "word ".
10630 (isearch-search-fun-default): For the case of `isearch-word',
10631 return a lambda that calls re-search-forward/re-search-backward
10632 with a regexp returned by `word-search-regexp' or by the function
10633 in `isearch-word'.
10634
10635 2012-05-29 Juri Linkov <juri@jurta.org>
10636
10637 * isearch.el (isearch-search-fun-default): New function.
10638 (isearch-search-fun): Move default part to the new function
10639 `isearch-search-fun-default'.
10640 (isearch-search-fun-function): Set the default value to
10641 `isearch-search-fun-default'. (Bug#11381)
10642
10643 * comint.el (comint-history-isearch-end):
10644 Use `isearch-search-fun-default'.
10645 (comint-history-isearch-search): Use `isearch-search-fun-default'
10646 and remove spacial case for `isearch-word'.
10647 (comint-history-isearch-wrap): Remove spacial case for
10648 `isearch-word'.
10649
10650 * hexl.el (hexl-isearch-search-function):
10651 Use `isearch-search-fun-default'.
10652
10653 * info.el (Info-isearch-search): Use `isearch-search-fun-default'.
10654 Use `word-search-regexp' for `isearch-word'.
10655
10656 * misearch.el (multi-isearch-search-fun):
10657 Use `isearch-search-fun-default'.
10658
10659 * simple.el (minibuffer-history-isearch-search):
10660 Use `isearch-search-fun-default' and remove spacial case for
10661 `isearch-word'.
10662 (minibuffer-history-isearch-wrap): Remove spacial case for
10663 `isearch-word'.
10664
10665 * textmodes/reftex-global.el (reftex-isearch-wrap-function):
10666 Remove spacial case for `isearch-word'.
10667 (reftex-isearch-isearch-search): Use `isearch-search-fun-default'.
10668
10669 2012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
10670
10671 Decrease XEmacs incompatibilities.
10672 * textmodes/flyspell.el (flyspell-check-pre-word-p):
10673 Use `string-match'.
10674 (flyspell-delete-region-overlays): Use alternative definition for
10675 XEmacs.
10676 (flyspell-delete-all-overlays): Use `flyspell-delete-region-overlays'.
10677 (flyspell-word): Use `process-kill-without-query' if XEmacs.
10678 (flyspell-mode-on): Use `interactive-p' if XEmacs.
10679 (flyspell-incorrect-face, flyspell-duplicate-face): Do not use
10680 `define-obsolete-face-alias' under XEmacs, but old method.
10681
10682 * textmodes/ispell.el (ispell-with-no-warnings): XEmacs alternative
10683 `with-no-warnings' definition or Emacs alias.
10684 (ispell-command-loop, ispell-message): Use `ispell-with-no-warnings'.
10685 (ispell-word): Do not use `region-p' if XEmacs.
10686
10687 2012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
10688
10689 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
10690 Check for `ispell-dictionary-base-alist' instead of full
10691 `ispell-dictionary-alist'.
10692 (ispell-init-process): Show spellchecker when starting new Ispell
10693 process.
10694
10695 2012-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
10696
10697 * progmodes/vhdl-mode.el: Sync with upstream 3.33.28.
10698 http://www.iis.ee.ethz.ch/~zimmi/emacs/vhdl-mode.html#release-notes-3.33
10699
10700 2012-05-27 Juanma Barranquero <lekktu@gmail.com>
10701
10702 * version.el (motif-version-string, gtk-version-string)
10703 (ns-version-string): Declare.
10704
10705 2012-05-27 Juri Linkov <juri@jurta.org>
10706
10707 * emacs-lisp/lisp-mode.el (eval-defun-2): Use `eval-sexp-add-defvars'
10708 after the `eval-defun-1' specialcaseing
10709 like in `edebug-eval-defun' (bug#10181).
10710
10711 * emacs-lisp/edebug.el (edebug-eval-defun): Set `face-documentation'
10712 like in `eval-defun-1'.
10713
10714 2012-05-27 Eli Zaretskii <eliz@gnu.org>
10715
10716 * mail/sendmail.el (mail-yank-region):
10717 Recognize rmail-yank-current-message in addition to insert-buffer.
10718 Fixes mail-mode's "C-c C-r" that otherwise does nothing when invoked in
10719 a *mail* buffer created through rmail-start-mail with sendmail as
10720 mail-user-agent.
10721
10722 2012-05-27 Chong Yidong <cyd@gnu.org>
10723
10724 * net/gnutls.el (gnutls-min-prime-bits): Improve docstring.
10725 Default to 256 (Bug#11267).
10726
10727 * help.el (describe-mode): Doc fix.
10728
10729 2012-05-26 Glenn Morris <rgm@gnu.org>
10730
10731 * w32-fns.el (w32-init-info): Remove.
10732 * paths.el (Info-default-directory-list): Add w32-init-info equivalent.
10733
10734 * info.el (info-initialize): For self-contained NS builds, put the
10735 included info/ directory at the front. (Bug#2791)
10736
10737 * paths.el (Info-default-directory-list): Make it a defcustom,
10738 mainly so that we can use custom-initialize-delay.
10739
10740 2012-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
10741
10742 * subr.el (buffer-has-markers-at): Mark obsolete.
10743
10744 * subr.el (lambda): Use declare.
10745
10746 * emacs-lisp/lisp-mode.el (lambda):
10747 * emacs-lisp/edebug.el (lambda): Move properties to its definition.
10748
10749 2012-05-26 Aaron S. Hawley <aaron.s.hawley@gmail.com>
10750
10751 * thingatpt.el (forward-same-syntax): Handle no ARG case. (Bug#11560)
10752
10753 2012-05-26 Glenn Morris <rgm@gnu.org>
10754
10755 * progmodes/cc-mode.el (auto-mode-alist): Fix typo.
10756
10757 2012-05-25 Glenn Morris <rgm@gnu.org>
10758
10759 * paths.el: Remove no-byte-compile.
10760 * loadup.el: No need to load paths.el uncompiled.
10761
10762 * image.el (imagemagick-types-inhibit): Doc fix.
10763
10764 * version.el: Remove no-byte-compile and associated formatting.
10765 * loadup.el: No need to load version.el uncompiled. AFAICS, this
10766 is ancient code from when there was an "inc-vers.el".
10767
10768 2012-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
10769
10770 * progmodes/gdb-mi.el: Minor style changes.
10771 (gdb-enable-debug, gdb-speedbar-auto-raise, gdb-many-windows):
10772 Turn into minor modes.
10773 (gdb--if-arrow): Rename from gdb-if-arrow, make it hygienic.
10774 (gdb-mouse-until, gdb-mouse-jump): Adjust uses accordingly.
10775 (gdb-shell): Remove unneeded let-binding.
10776 (gdb-get-many-fields): Eliminate O(n²) behavior.
10777
10778 2012-05-25 Eli Zaretskii <eliz@gnu.org>
10779
10780 * cus-start.el <vertical-centering-font-regexp>: Avoid warning on
10781 platforms that don't link in fontset.c.
10782
10783 2012-05-25 Juri Linkov <juri@jurta.org>
10784
10785 Use the same diff color scheme as in modern VCSes (bug#10181).
10786
10787 * vc/diff-mode.el (diff-header, diff-file-header): Remove "green"
10788 to avoid confusion with `diff-added' that now uses green colors.
10789 (diff-removed): Use shades of red.
10790 (diff-added): Use shades of green.
10791 (diff-changed): Leave just the yellow color.
10792 (diff-use-changed-face): New variable.
10793 (diff-font-lock-keywords): Use `diff-use-changed-face' to decide
10794 how to highlight context diff changes.
10795 (diff-refine-change): Use shades of yellow.
10796 (diff-refine-removed): New face that uses shades of red.
10797 (diff-refine-added): New face that uses shades of green.
10798 (diff-refine-hunk): Use `diff-refine-change', `diff-refine-added',
10799 `diff-refine-removed' in the call to `smerge-refine-subst'
10800 depending on the value of `diff-use-changed-face'.
10801
10802 * vc/smerge-mode.el (smerge-mine): Use shades of red.
10803 (smerge-other): Use shades of green.
10804 (smerge-base): Use shades of yellow.
10805 (smerge-refined-change): Empty face.
10806 (smerge-refined-removed): New face that uses shades of red.
10807 (smerge-refined-added): New face that uses shades of green.
10808 (smerge-refine-subst): Rename arg `props' to `props-c'. Add new
10809 args `props-r' and `props-a', and use them. Doc fix.
10810 (smerge-refine): Evaluate `smerge-use-changed-face' and depending
10811 on its value use different faces `smerge-refined-change',
10812 `smerge-refined-removed', `smerge-refined-added' in the call to
10813 `smerge-refine-subst'.
10814
10815 * vc/ediff-init.el (ediff-current-diff-A, ediff-fine-diff-A):
10816 Add face condition `min-colors 88' with shades of red.
10817 (ediff-current-diff-B, ediff-fine-diff-B): Add face condition
10818 `min-colors 88' with shades of green.
10819 (ediff-current-diff-C, ediff-fine-diff-C): Add face condition
10820 `min-colors 88' with shades of yellow.
10821
10822 2012-05-24 Glenn Morris <rgm@gnu.org>
10823
10824 * paths.el (prune-directory-list, remote-shell-program): Move to...
10825 * files.el (prune-directory-list, remote-shell-program): ...here.
10826 For the latter, delay initialization, prefer ssh, just search PATH.
10827
10828 * paths.el (term-file-prefix): Move to faces.el (the only user).
10829 * faces.el (term-file-prefix): Move here, make it a defcustom.
10830
10831 * paths.el (news-directory, news-path, news-inews-program):
10832 Move to gnus/nnspool.el.
10833
10834 * paths.el (gnus-default-nntp-server): Remove (gnus.el defines it).
10835
10836 * paths.el (rmail-file-name, rmail-spool-directory): Move from here...
10837 * mail/rmail.el (rmail-file-name, rmail-spool-directory): ... to here.
10838 Make the latter a defcustom, with a delayed initialization.
10839
10840 * paths.el (gnus-nntp-service, gnus-local-organization): Remove.
10841 These were deleted from Gnus itself late 2010.
10842
10843 2012-05-22 Juanma Barranquero <lekktu@gmail.com>
10844
10845 * progmodes/which-func.el (which-func-ff-hook):
10846 Check against user-error, not error.
10847
10848 * emacs-lisp/edebug.el (top): Do not load or set up loading of
10849 cl-specs.el, which no longer exists.
10850
10851 2012-05-22 Glenn Morris <rgm@gnu.org>
10852
10853 * info.el (info-emacs-bug): New command.
10854 * menu-bar.el (menu-bar-help-menu): Add "How to Report a Bug" to Help.
10855 * mail/emacsbug.el (report-emacs-bug): Replace with info-emacs-bug.
10856
10857 2012-05-21 Glenn Morris <rgm@gnu.org>
10858
10859 * makefile.w32-in (update-subdirs-SH):
10860 * Makefile.in (update-subdirs): Update for moved update-subdirs.
10861
10862 2012-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
10863
10864 * hi-lock.el (hi-lock-face-defaults): Move obsolete before definition.
10865
10866 * progmodes/compile.el (compilation-error-regexp-alist-alist):
10867 Simplify Maven regexp, and make sure the file can't start with a space
10868 (bug#11517).
10869
10870 2012-05-21 Glenn Morris <rgm@gnu.org>
10871
10872 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
10873 Scrap superfluous subshells.
10874
10875 2012-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
10876
10877 * emacs-lisp/bytecomp.el (byte-compile-root-dir): New var.
10878 (byte-compile-warning-prefix, batch-byte-compile-file): Use it.
10879
10880 2012-05-19 Jay Belanger <jay.p.belanger@gmail.com>
10881
10882 * calc/calc.el (calc-ensure-consistent-units): New variable.
10883
10884 * calc/calc-units.el (math-consistent-units-p)
10885 (math-check-unit-consistency): New functions.
10886 (calc-quick-units, calc-convert-units):
10887 Use `math-check-unit-consistency' when `calc-ensure-consistent-units'
10888 is non-nil.
10889 (calc-extract-units): Fix typo.
10890
10891 2012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
10892
10893 * vc/vc-bzr.el (vc-bzr-state-heuristic): Save match-data around sha1.
10894
10895 * textmodes/flyspell.el: Commenting style, plus code simplifications.
10896 (flyspell-default-deplacement-commands): Don't spell check after
10897 repeated window/frame switches (e.g. triggered by mouse-movement).
10898 (flyspell-delay-commands, flyspell-deplacement-commands): Use mapc.
10899 (flyspell-debug-signal-word-checked): Simplify and fit in 80 cols.
10900 (flyspell-casechars-cache, flyspell-ispell-casechars-cache)
10901 (flyspell-not-casechars-cache, flyspell-ispell-not-casechars-cache):
10902 Remove unused vars.
10903 (flyspell-get-casechars, flyspell-get-not-casechars):
10904 Simplify; Don't bother removing a ] just to add it back.
10905 * textmodes/ispell.el (ispell-program-name): Use executable-find.
10906
10907 2012-05-18 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
10908
10909 * calc/calc-lang.el (math-C-parse-bess, math-C-parse-fma):
10910 New functions.
10911 (math-function-table): Add support for more C functions.
10912
10913 2012-05-18 Agustín Martín Domingo <agustin.martin@hispalinux.es>
10914
10915 * textmodes/flyspell.el (flyspell-check-pre-word-p)
10916 (flyspell-check-word-p, flyspell-debug-signal-word-checked):
10917 Protect delay handling for otherchars against empty otherchars.
10918
10919 2012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
10920
10921 * emacs-lisp/lisp-mode.el (doc-string-elt): Move those properties to
10922 their respective macro declarations.
10923 * skeleton.el (define-skeleton):
10924 * progmodes/compile.el (define-compilation-mode):
10925 * ibuf-macs.el (define-ibuffer-sorter, define-ibuffer-op)
10926 (define-ibuffer-filter):
10927 * emacs-lisp/generic.el (define-generic-mode):
10928 * emacs-lisp/easy-mmode.el (define-minor-mode)
10929 (define-globalized-minor-mode):
10930 * emacs-lisp/cl-macs.el (defun*, defmacro*, defstruct, deftype):
10931 * emacs-lisp/byte-run.el (defsubst):
10932 * custom.el (deftheme): Add doc-string metadata.
10933
10934 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
10935
10936 * emacs-lisp/cl-macs.el, emacs-lisp/cl.el: Move indent info.
10937
10938 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
10939
10940 * emacs-lisp/pcase.el (pcase--u1): Avoid ((lambda ...) ...).
10941
10942 * emacs-lisp/cl.el: Add edebug specs from cl-specs.el.
10943 * emacs-lisp/cl-macs.el: Idem.
10944 * emacs-lisp/cl-specs.el: Remove.
10945
10946 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
10947
10948 Minor renaming of internal CL functions and variables.
10949 * emacs-lisp/cl-seq.el (cl--adjoin): Rename from cl-adjoin.
10950 (cl--position): Rename from cl-position.
10951 (cl--delete-duplicates): Rename from cl-delete-duplicates.
10952 * emacs-lisp/cl.el (cl--gensym-counter): Rename from *gensym-counter*.
10953 (cl--random-state): Rename from *random-state*.
10954
10955 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
10956
10957 * emacs-lisp/cl-macs.el (cl-transform-lambda): Don't add spurious
10958 parens around the arg list (bug#11499).
10959
10960 2012-05-17 Juri Linkov <juri@jurta.org>
10961
10962 * isearch.el (word-search-regexp, word-search-backward)
10963 (word-search-forward, word-search-backward-lax)
10964 (word-search-forward-lax): Move functions from search.c
10965 (bug#10145, bug#11381).
10966
10967 2012-05-16 Agustín Martín Domingo <agustin.martin@hispalinux.es>
10968
10969 * textmodes/flyspell.el (flyspell-check-pre-word-p)
10970 (flyspell-check-word-p, flyspell-debug-signal-word-checked):
10971 Delay for otherchars as for normal word components.
10972
10973 2012-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
10974
10975 * minibuffer.el (completion--sifn-requote): Fix last change.
10976 (minibuffer-local-must-match-filename-map):
10977 Move define-obsolete-variable-alias before its var.
10978
10979 2012-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
10980
10981 * emacs-lisp/pcase.el (pcase-let*, pcase-let): Fix edebug spec.
10982
10983 * minibuffer.el (completion--sifn-requote): Handle sifn's truncation
10984 behavior.
10985 (completion--string-equal-p): New function.
10986 (completion--twq-all): Use it to get better assertion failure data.
10987
10988 Only handle ".." and '..' quoting in shell-mode (bug#11466).
10989 * shell.el (shell--unquote&requote-argument, shell--unquote-argument)
10990 (shell--requote-argument): New functions.
10991 (shell-completion-vars): Use them.
10992 (shell--parse-pcomplete-arguments): Rename from
10993 shell-parse-pcomplete-arguments.
10994 * comint.el (comint-word): Obey comint-file-name-quote-list. Simplify.
10995 (comint--unquote&requote-argument): Don't handle ".." and '..' quoting.
10996 Obey comint-file-name-quote-list.
10997
10998 * emacs-lisp/smie.el (smie-indent--bolp-1): New function.
10999 (smie-indent-keyword): Use it.
11000
11001 2012-05-14 Stefan Merten <smerten@oekonux.de>
11002
11003 * textmodes/rst.el (rst-re-alist): Fix loading (bug#11462).
11004
11005 2012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
11006
11007 * net/rlogin.el (rlogin-mode-map): Fix last change.
11008
11009 2012-05-14 Jason L. Wright <jason.wright@inl.gov> (tiny change)
11010
11011 * mail/smtpmail.el (smtpmail-send-command): Send the command and
11012 the following \r\n using a single `process-send-string', since the
11013 Lotus SMTP server refuses to accept any commands if they are sent
11014 with two `process-send-string's (Bug#11444).
11015
11016 2012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
11017
11018 * shell.el (shell-parse-pcomplete-arguments):
11019 Obey pcomplete-arg-quote-list inside double-quoted args (Bug#11348).
11020
11021 2012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
11022
11023 * image-mode.el: Fit to width/height for rotated images (Bug#11431).
11024 (image-transform-scale, image-transform-right-angle-fudge): New vars.
11025 (image-transform-width, image-transform-fit-width): New functions.
11026 (image-transform-properties): Use them.
11027 (image-transform-check-size): New function.
11028 (image-toggle-display-image): Use it (for testing).
11029 (image-transform-set-rotation): Reduce angle mod 360.
11030 Delete obsolete comment.
11031
11032 2012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
11033
11034 * image-mode.el: Fix scaling (bug#11399).
11035 (image-transform-resize): Doc fix.
11036 (image-transform-properties): Default scale is 1 and height should
11037 be an integer.
11038
11039 2012-05-13 Johan Bockgård <bojohan@gnu.org>
11040
11041 * emacs-lisp/smie.el (smie-next-sexp): Use accessor `op-forw' rather
11042 than hard-coding `car', to fix misbehavior when moving forward.
11043
11044 2012-05-13 Chong Yidong <cyd@gnu.org>
11045
11046 * emacs-lisp/tabulated-list.el (tabulated-list-format)
11047 (tabulated-list-entries, tabulated-list-padding)
11048 (tabulated-list-sort-key): Make permanent-local.
11049
11050 * ebuff-menu.el: Adapt to Buffer Menu changes (Bug#11455).
11051 (electric-buffer-list): Put electric buffer menu
11052 command descriptions in this docstring, instead of the docstring
11053 of electric-buffer-menu-mode. Code cleanups.
11054 (electric-buffer-menu-mode): Use define-derived-mode. Rename from
11055 Electric-buffer-menu-mode.
11056 (electric-buffer-update-highlight): Minor code cleanup.
11057
11058 2012-05-13 Michael Albinus <michael.albinus@gmx.de>
11059
11060 * net/dbus.el (dbus-call-method): Restore events not from D-Bus.
11061 (Bug#11447)
11062
11063 2012-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
11064
11065 Move define-obsolete-variable-alias before the var's definition.
11066 * vc/log-edit.el (vc-comment-ring, vc-comment-ring-index):
11067 * tooltip.el (tooltip-hook):
11068 * textmodes/reftex-toc.el (reftex-toc-map):
11069 * textmodes/reftex-sel.el (reftex-select-label-map)
11070 (reftex-select-bib-map):
11071 * textmodes/reftex-index.el (reftex-index-map)
11072 (reftex-index-phrases-map):
11073 * speedbar.el (speedbar-syntax-table, speedbar-key-map):
11074 * progmodes/meta-mode.el (meta-mode-map):
11075 * novice.el (disabled-command-hook):
11076 * loadhist.el (unload-hook-features-list):
11077 * frame.el (blink-cursor):
11078 * files.el (find-file-not-found-hooks, write-file-hooks)
11079 (write-contents-hooks):
11080 * emulation/tpu-edt.el (GOLD-map):
11081 * emacs-lock.el (emacs-lock-from-exiting):
11082 * emacs-lisp/generic.el (generic-font-lock-defaults):
11083 * emacs-lisp/chart.el (chart-map):
11084 * dos-fns.el (register-name-alist):
11085 * dired-x.el (dired-omit-files-p):
11086 * desktop.el (desktop-enable):
11087 * cus-edit.el (custom-mode-hook):
11088 * buff-menu.el (buffer-menu-mode-hook):
11089 * bookmark.el (bookmark-read-annotation-text-func)
11090 (bookmark-exit-hooks):
11091 * allout.el (allout-mode-deactivate-hook)
11092 (allout-exposure-change-hook, allout-structure-added-hook)
11093 (allout-structure-deleted-hook, allout-structure-shifted-hook):
11094 * dirtrack.el (dirtrack-toggle, dirtrackp, dirtrack-debug-toggle)
11095 (dirtrack-debug): Move call to define-obsolete-variable-alias so it
11096 comes before the corresponding variable's definition.
11097
11098 2012-05-12 Chong Yidong <cyd@gnu.org>
11099
11100 * buff-menu.el (Buffer-menu-buffer+size-width): Doc fix (Bug#11454).
11101 (Buffer-menu-mouse-select): Restore function (Bug#11459).
11102 (Buffer-menu-mode-map): Bind it.
11103 (Buffer-menu--pretty-name): Add a mouse-face property.
11104
11105 2012-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
11106
11107 * progmodes/prolog.el: Use SMIE. Cleanup regexp setup.
11108 (prolog-upper-case-string, prolog-lower-case-string)
11109 (prolog-atom-char-regexp, prolog-atom-regexp): Initialize in defconst.
11110 (prolog-use-smie, prolog-smie-grammar): New vars.
11111 (prolog-smie-forward-token, prolog-smie-backward-token)
11112 (prolog-smie-rules): New funs.
11113 (prolog-comment-indent): Remove.
11114 (prolog-mode-variables): Use default comment indentation instead.
11115 Setup SMIE.
11116 (prolog-build-case-strings, prolog-set-atom-regexps): Remove.
11117 (prolog-mode): Don't call them any more.
11118 (prolog-electric-colon, prolog-electric-dash)
11119 (prolog-edit-menu-insert-move): Use indent-according-to-mode.
11120
11121 * dabbrev.el (dabbrev-expand): Make "no expansion found" a user-error.
11122
11123 * minibuffer.el (completion--twq-all): Again, allow case differences.
11124
11125 * term.el: Move keymap initialization code to be more idiomatic.
11126 (term-signals-menu, term-mode-map, term-raw-map, term-raw-escape-map)
11127 (term-terminal-menu): Move initialization into declaration.
11128 (term-escape-char): Let the user set it in her .emacs.
11129
11130 * progmodes/sh-script.el: Use post-self-insert-hook&electric-pair-mode.
11131 Provide SMIE-based indentation (not enabled by default yet).
11132 (sh-mode-map): Don't bind electric keys.
11133 Use electric-pair-mode instead of skeleton-pair.
11134 (sh-assignment-regexp): Fit within 80 columns.
11135 (sh-indent-supported): Specify actual shell name instead of boolean.
11136 (sh--maybe-here-document): New fun, from sh-maybe-here-document.
11137 (sh-maybe-here-document): Use it. Make obsolete.
11138 (sh-electric-here-document-mode) New minor mode.
11139 (sh-mode): Use it. Don't set sh-indent-supported-here here.
11140 (sh-smie-sh-grammar, sh-smie--sh-operators, sh-smie--sh-operators-re)
11141 (sh-smie--sh-operators-back-re, sh-indent-after-continuation)
11142 (sh-smie-rc-grammar, sh-use-smie): New vars.
11143 (sh-smie--keyword-p, sh-smie--newline-semi-p, sh-smie--sh-keyword-p)
11144 (sh-smie-sh-forward-token, sh-smie--looking-back-at-continuation-p)
11145 (sh-smie-sh-backward-token, sh-smie--continuation-start-indent)
11146 (sh-smie-sh-rules, sh-smie-rc-rules, sh-smie--sh-keyword-in-p)
11147 (sh-smie--rc-after-special-arg-p, sh-smie-rc-backward-token)
11148 (sh-smie-sh-rules, sh-smie--rc-newline-semi-p): New functions.
11149 (sh-set-shell): Use smie-setup if requested.
11150
11151 * term.el (term-set-escape-char): Properly set term-escape-char.
11152 See http://stackoverflow.com/questions/10524656.
11153
11154 2012-05-10 Chong Yidong <cyd@gnu.org>
11155
11156 * ffap.el (ffap-url-unwrap-local): Make it work right (Bug#9131).
11157 Use url-generic-parse-url, and handle host names and Windows
11158 filenames properly.
11159 (ffap-url-unwrap-remote): Use url-generic-parse-url.
11160 (ffap-url-unwrap-remote): Accept list values, specifying a list of
11161 URL schemes to work on.
11162 (ffap--toggle-read-only): New function.
11163 (ffap-read-only, ffap-read-only-other-window)
11164 (ffap-read-only-other-frame): Use it.
11165 (ffap-fixup-url): Don't check ffap-ftp-regexp, since it is not
11166 necessary for ffap-url-unwrap-remote.
11167
11168 2012-05-10 Dave Abrahams <dave@boostpro.com>
11169
11170 * cus-start.el (create-lockfiles): Add it.
11171
11172 2012-05-09 Chong Yidong <cyd@gnu.org>
11173
11174 * net/browse-url.el (browse-url-url-encode-chars): Use upper-case.
11175 (browse-url-encode-url): Encode spaces and quotes (Bug#6300).
11176
11177 2012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
11178
11179 * shell.el (shell-completion-vars): Fix last change (bug#11348).
11180
11181 2012-05-09 Chong Yidong <cyd@gnu.org>
11182
11183 * ansi-color.el (ansi-color-process-output): Check for validity of
11184 comint-last-output-start before using it. This avoids a bad
11185 interaction with gdb-mi's input/output buffer.
11186
11187 2012-05-09 Glenn Morris <rgm@gnu.org>
11188
11189 * files.el (dir-locals-read-from-file):
11190 Mention dir-locals in any error message.
11191
11192 2012-05-09 Chong Yidong <cyd@gnu.org>
11193
11194 * emacs-lisp/package.el (package-built-in-p): Handle the `emacs'
11195 package (Bug#11410).
11196
11197 * emacs-lisp/package.el (package-buffer-info): Avoid putting local
11198 variables into description.
11199
11200 2012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
11201
11202 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list like
11203 shell-delimiter-argument-list (bug#11348).
11204 (shell-parse-pcomplete-arguments): Obey pcomplete-arg-quote-list.
11205
11206 2012-05-09 Juanma Barranquero <lekktu@gmail.com>
11207
11208 * textmodes/rst.el: Silence byte-compiler warnings.
11209 (rst-re-alist, rst-reset-section-caches): Move around.
11210 (rst-re): Use `characterp', not `char-valid-p'.
11211 (font-lock-beg, font-lock-end): Declare.
11212
11213 * progmodes/idlw-shell.el (specs): Remove reference to deleted
11214 variable `idlwave-shell-activate-alt-keybindings' and simplify.
11215
11216 * eshell/esh-cmd.el (eshell-debug-command): Fix typo in previous change.
11217
11218 2012-05-08 Glenn Morris <rgm@gnu.org>
11219
11220 * files.el (auto-mode-alist): Treat ".make" like ".mk".
11221
11222 2012-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
11223
11224 * vc/log-edit.el: Add GNU coding standards highlighting.
11225 (log-edit-font-lock-gnu-style)
11226 (log-edit-font-lock-gnu-keywords): New vars.
11227 (log-edit-font-lock-keywords): New fun.
11228 (log-edit-mode): Don't fold case in font-lock.
11229 (log-edit-font-lock-keywords): Do not assume case-folding.
11230
11231 * imenu.el: Misc cleanup. Make docstrings out of comments.
11232 Use lexical-binding.
11233 (imenu--index-alist, imenu--last-menubar-index-alist)
11234 (imenu-menubar-modified-tick): Use defvar-local.
11235 (imenu--split-menu): Remove unused var.
11236 (imenu--cleanup-seen): Declare as global.
11237 (imenu--cleanup): Use dolist.
11238
11239 * subr.el (defvar-local): Add debug spec and doc-string position.
11240
11241 2012-05-08 Glenn Morris <rgm@gnu.org>
11242
11243 * language/burmese.el, language/cham.el, language/czech.el:
11244 * language/english.el, language/georgian.el, language/greek.el:
11245 * language/japanese.el, language/khmer.el, language/korean.el:
11246 * language/lao.el, language/misc-lang.el, language/romanian.el:
11247 * language/sinhala.el, language/slovak.el, language/tai-viet.el:
11248 * language/thai.el, language/utf-8-lang.el:
11249 Remove no-byte-compile setting.
11250
11251 * play/zone.el (zone-pgm-stress): Don't pollute kill-ring. (Bug#11388)
11252
11253 2012-05-08 Aaron S. Hawley <aaron.s.hawley@gmail.com>
11254
11255 * progmodes/make-mode.el (makefile-browse):
11256 Remove unnecessary interactive. (Bug#11324)
11257
11258 2012-05-07 Glenn Morris <rgm@gnu.org>
11259
11260 * forms-d2.el, forms-pass.el: Move to ../etc/forms directory.
11261
11262 * international/mule.el (find-auto-coding): Make "unibyte: t" obsolete.
11263
11264 2012-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
11265
11266 * loadup.el: Preload newcomment.el.
11267 * newcomment.el: Move autoload-only code to toplevel.
11268
11269 * buff-menu.el (list-buffers--refresh): Mark `size' as right-align.
11270 * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
11271 Handle new :right-align column property.
11272 (tabulated-list-print-col): Idem, plus use `display' text-property to
11273 try and preserve alignment for variable pitch fonts.
11274
11275 2012-05-07 Chong Yidong <cyd@gnu.org>
11276
11277 * emacs-lisp/tabulated-list.el: Add no-header-line alternative.
11278 (tabulated-list-use-header-line): New var.
11279 (tabulated-list-init-header): Use it.
11280 (tabulated-list-print-fake-header): New function.
11281 (tabulated-list-print): Use it.
11282 (tabulated-list-sort-button-map): Add non-header-line commands.
11283 (tabulated-list-init-header): Add column name property to basic
11284 labels as well.
11285 (tabulated-list-col-sort): Handle non-header-line button case.
11286 (tabulated-list--sort-by-column-name): Fix a corner case.
11287
11288 * buff-menu.el (list-buffers--refresh):
11289 Handle Buffer-menu-use-header-line.
11290
11291 2012-05-06 Chong Yidong <cyd@gnu.org>
11292
11293 * buff-menu.el: Convert to Tabulated List mode.
11294 (Buffer-menu-buffer+size-width): Make obsolete.
11295 (Buffer-menu-name-width, Buffer-menu-size-width): New variables.
11296 (Buffer-menu-mode-map): Inherit from tabulated-list-mode-map.
11297 (Buffer-menu-mode): Derive from tabulated-list-mode. Move command
11298 documentation into docstring of buffer-menu.
11299 (Buffer-menu-toggle-files-only): Add an informative message.
11300 (Buffer-menu-sort): Convert to alias for tabulated-list-sort.
11301 (Buffer-menu-buffer, Buffer-menu-beginning, Buffer-menu-mark)
11302 (Buffer-menu-unmark, Buffer-menu-backup-unmark)
11303 (Buffer-menu-delete, Buffer-menu-save, Buffer-menu-not-modified)
11304 (Buffer-menu-execute, Buffer-menu-select)
11305 (Buffer-menu-marked-buffers, Buffer-menu-toggle-read-only)
11306 (Buffer-menu-bury): Use Tabulated List machinery.
11307 (Buffer-menu-mouse-select, Buffer-menu-sort-by-column)
11308 (Buffer-menu-sort-button-map, Buffer-menu-make-sort-button):
11309 Delete.
11310 (list-buffers--refresh): New function.
11311 (list-buffers-noselect): Use it.
11312 (tabulated-list-entry-size->, Buffer-menu--pretty-name)
11313 (Buffer-menu--pretty-file-name): New helper functions.
11314
11315 * loadup.el: Preload tabulated-list.
11316
11317 * emacs-lisp/tabulated-list.el (tabulated-list-sort): Rename from
11318 tabulated-list-sort-column.
11319 (tabulated-list-init-header): Add the initial aligning space even
11320 if tabulated-list-padding is zero.
11321
11322 2012-05-06 Christopher Schmidt <christopher@ch.ristopher.com>
11323
11324 * emacs-lisp/cl-macs.el (cl-expr-contains): Handle cons cells
11325 whose cdr is not a cons cell correctly (bug#11038).
11326
11327 2012-05-06 Chong Yidong <cyd@gnu.org>
11328
11329 * emacs-lisp/tabulated-list.el (tabulated-list-format):
11330 Accept additional plist in column descriptors.
11331 (tabulated-list-init-header): Obey it.
11332 (tabulated-list-get-entry): New function.
11333 (tabulated-list-put-tag): Use it. Use string-width instead of
11334 length.
11335 (tabulated-list--column-number): New function.
11336 (tabulated-list-print): Use it.
11337 (tabulated-list-print-col): New function.
11338 Set `tabulated-list-column-name' property on each column's text.
11339 (tabulated-list-print-entry): Use it.
11340 (tabulated-list-delete-entry, tabulated-list-set-col):
11341 New functions.
11342 (tabulated-list-sort-column): New command (Bug#11337).
11343
11344 * buff-menu.el (list-buffers): Move C-x C-b binding from
11345 buff-menu.el to bindings.el.
11346
11347 * ebuff-menu.el (Electric-buffer-menu-undefined): Use the
11348 :advertised-binding feature.
11349
11350 2012-05-06 Troels Nielsen <bn.troels@gmail.com> (tiny change)
11351
11352 * progmodes/compile.el (compilation-internal-error-properties):
11353 Calculate start position correctly when end-col is set but
11354 end-line is not (Bug#11382).
11355
11356 2012-05-06 Wolfgang Jenkner <wjenkner@inode.at>
11357
11358 * man.el (Man-unindent): Use text-property-default-nonsticky to
11359 prevent untabify from inheriting face properties (Bug#11408).
11360
11361 2012-05-05 Stefan Merten <smerten@oekonux.de>
11362
11363 * textmodes/rst.el: Major merge with upstream development up to
11364 Docutils SVN r7399 / rst.el V1.2.1.
11365
11366 Clarify maintainership and authors.
11367
11368 (rst-extract-version, rst-cvs-header, rst-cvs-rev)
11369 (rst-cvs-timestamp, rst-svn-rev, rst-svn-timestamp)
11370 (rst-official-version, rst-official-cvs-rev, rst-version)
11371 (rst-package-emacs-version-alist): New functions and variables
11372 for version information.
11373
11374 (rst-bullets, rst-uri-schemes, rst-adornment-chars)
11375 (rst-max-inline-length, rst-re-alist-def, rst-re-alist)
11376 (rst-mode-syntax-table, rst-mode): New and corrected functions
11377 and variables representing reStructuredText features.
11378
11379 (rst-re): New function for reStructuredText regexes. Use in
11380 many places.
11381
11382 (rst-deprecated-keys, rst-call-deprecated, rst-define-key)
11383 (rst-mode-map): Rebind keys.
11384
11385 (rst-mode-lazy, rst-font-lock-keywords)
11386 (rst-font-lock-extend-region)
11387 (rst-font-lock-extend-region-internal)
11388 (rst-font-lock-extend-region-extend)
11389 (rst-font-lock-find-unindented-line-limit)
11390 (rst-font-lock-find-unindented-line-match)
11391 (rst-adornment-level, rst-font-lock-adornment-level)
11392 (rst-font-lock-adornment-match)
11393 (rst-font-lock-handle-adornment-pre-match-form)
11394 (rst-font-lock-handle-adornment-matcher): Major revision of
11395 font-locking. Integrate with other code. Use `jit-lock-mode'.
11396
11397 (rst-preferred-adornments, rst-adjust-hook)
11398 (rst-new-adornment-down, rst-preferred-bullets)
11399 (rst-preferred-bullets, rst-indent, rst-indent-width)
11400 (rst-indent-field, rst-indent-literal-normal)
11401 (rst-indent-literal-minimized, rst-indent-comment): Change,
11402 extend and improve customization.
11403
11404 (rst-line-homogeneous-p, rst-line-homogeneous-nodent-p)
11405 (rst-normalize-cursor-position, rst-get-decoration)
11406 (rst-straighten-deco-spacing, rst-re-bullets, rst-re-items)
11407 (rst-rstrip, rst-toc-insert-find-delete-contents)
11408 (rst-shift-fill-region, rst-compute-bullet-tabs)
11409 (rst-debug-print-tabs, rst-debug-mark-found)
11410 (rst-shift-region-guts, rst-shift-region-right)
11411 (rst-shift-region-left, rst-use-char-classes)
11412 (rst-font-lock-keywords-function)
11413 (rst-font-lock-indentation-point)
11414 (rst-font-lock-find-unindented-line-begin)
11415 (rst-font-lock-find-unindented-line-end)
11416 (rst-font-lock-find-unindented-line)
11417 (rst-font-lock-adornment-point, rst-font-lock-level)
11418 (rst-adornment-level-alist): Remove functions and variables.
11419
11420 (rst-compare-adornments, rst-get-adornment-match)
11421 (rst-suggest-new-adornment, rst-get-adornments-around)
11422 (rst-adornment-complete-p, rst-get-next-adornment)
11423 (rst-adjust-adornment, rst-display-adornments-hierarchy)
11424 (rst-straighten-adornments): Standardize function names to
11425 use "adornment" instead of "decoration". Correct callers.
11426 Similar standardizing in many places.
11427
11428 (rst-update-section, rst-adjust, rst-promote-region)
11429 (rst-enumerate-region, rst-bullet-list-region)
11430 (rst-repeat-last-character): Correct use of `interactive'.
11431
11432 (rst-classify-adornment, rst-find-all-adornments)
11433 (rst-get-hierarchy, rst-adjust-adornment, rst-toc-update)
11434 (rst-find-leftmost-column, rst-repeat-last-character):
11435 Refactor functions.
11436
11437 (rst-find-title-line, rst-reset-section-caches)
11438 (rst-get-adornments-around, rst-adjust-adornment-work)
11439 (rst-arabic-to-roman, rst-roman-to-arabic)
11440 (rst-insert-list-pos, rst-insert-list-new-item)
11441 (rst-insert-list-continue, rst-insert-list, rst-forward-line):
11442 New functions.
11443
11444 (rst-all-sections, rst-section-hierarchy)
11445 (rst-arabic-to-roman, rst-initial-enums, rst-initial-items):
11446 New variables.
11447
11448 (rst-toc-return-wincfg, rst-toc-quit-window): Use window
11449 configuration instead of only buffer. Change where necessary.
11450
11451 (rst-line-tabs, rst-compute-tabs, rst-indent-line)
11452 (rst-shift-region, rst-adaptive-fill): New functions for
11453 indentation and filling.
11454
11455 (rst-comment-line-break, rst-comment-indent)
11456 (rst-comment-insert-comment, rst-comment-region)
11457 (rst-uncomment-region): New functions for handling comments.
11458
11459 (rst-compile): Quote shell arguments.
11460
11461 (rst-compile-pdf-preview, rst-compile-slides-preview):
11462 Delete temporary files after use.
11463
11464 2012-05-05 Glenn Morris <rgm@gnu.org>
11465
11466 * calendar/cal-html.el: Optionally include holidays in the output.
11467 Suggested by Ed Reingold <reingold@emr.cs.iit.edu>.
11468 (cal-html-holidays): New option.
11469 (cal-html-css-default): Add holiday entry.
11470 (holiday-in-range): Autoload it.
11471 (cal-html-htmlify-entry): Add optional class argument.
11472 (cal-html-htmlify-list): Add optional holidays argument.
11473 (cal-html-insert-agenda-days): Include holidays in the output.
11474 (cal-html-one-month): Maybe include holidays.
11475
11476 * calendar/holidays.el (holiday-in-range):
11477 Move here from cal-tex-list-holidays.
11478 * calendar/cal-tex.el (cal-tex-list-holidays):
11479 Make it an obsolete alias for holiday-in-range. Update all callers.
11480
11481 2012-05-05 Chong Yidong <cyd@gnu.org>
11482
11483 * select.el (xselect--encode-string): Always use utf-8 for TEXT on
11484 Nextstep.
11485
11486 2012-05-05 Ransom Williams <auvergnerw@gmail.com> (tiny change)
11487
11488 * files.el (file-auto-mode-skip): New var.
11489 (set-auto-mode-1): Use it.
11490
11491 2012-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
11492
11493 * repeat.el: Use lexical-binding.
11494 (repeat-last-self-insert, repeat-num-input-keys-at-self-insert)
11495 (repeat-undo-count): Remove.
11496 (repeat):
11497 * progmodes/octave-mod.el (octave-abbrev-start):
11498 * progmodes/f90.el (f90-abbrev-start):
11499 * face-remap.el (text-scale-adjust):
11500 * kmacro.el (kmacro-call-macro): Use set-temporary-overlay-map.
11501
11502 * emacs-lisp/pcase.el (pcase--let*): New function.
11503 (pcase--expand, pcase-codegen, pcase--q1): Use it to reduce nesting
11504 a bit more.
11505 (pcase--split-pred): Be more clever about ruling out overlap between
11506 a predicate and some constant pattern.
11507 (pcase--q1): Use `null' instead of (eq foo nil).
11508
11509 * subr.el (setq-local, defvar-local): New macros.
11510 (kbd): Redefine as an alias.
11511 (with-selected-window): Leave unrelated frames alone.
11512 (set-temporary-overlay-map): New function.
11513
11514 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
11515
11516 * subr.el (user-error): New function.
11517 * window.el (switch-to-buffer):
11518 * vc/smerge-mode.el (smerge-resolve-function, smerge-resolve)
11519 (smerge-match-conflict):
11520 * simple.el (previous-matching-history-element)
11521 (next-matching-history-element, goto-history-element, undo-more)
11522 (undo-start):
11523 * progmodes/etags.el (visit-tags-table-buffer, find-tag-tag)
11524 (find-tag-noselect, find-tag-in-order, etags-goto-tag-location)
11525 (next-file, tags-loop-scan, list-tags, complete-tag):
11526 * progmodes/compile.el (compilation-loop):
11527 * mouse.el (mouse-minibuffer-check):
11528 * man.el (Man-bgproc-sentinel, Man-goto-page):
11529 * info.el (Info-find-node-2, Info-extract-pointer, Info-history-back)
11530 (Info-history-forward, Info-follow-reference, Info-menu)
11531 (Info-extract-menu-item, Info-extract-menu-counting)
11532 (Info-forward-node, Info-backward-node, Info-next-menu-item)
11533 (Info-last-menu-item, Info-next-preorder, Info-last-preorder)
11534 (Info-next-reference, Info-prev-reference, Info-index)
11535 (Info-index-next, Info-follow-nearest-node)
11536 (Info-copy-current-node-name):
11537 * imenu.el (imenu--make-index-alist)
11538 (imenu-default-create-index-function, imenu-add-to-menubar):
11539 * files.el (basic-save-buffer, recover-file):
11540 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
11541 * emacs-lisp/checkdoc.el (checkdoc-continue, checkdoc-comments)
11542 (checkdoc-message-text, checkdoc-defun):
11543 * dabbrev.el (dabbrev-completion, dabbrev--abbrev-at-point):
11544 * cus-edit.el (customize-changed-options, customize-rogue)
11545 (customize-saved, custom-variable-set, custom-variable-mark-to-save)
11546 (custom-variable-mark-to-reset-standard)
11547 (custom-variable-reset-backup, custom-face-mark-to-reset-standard)
11548 (custom-file):
11549 * completion.el (check-completion-length):
11550 * comint.el (comint-search-arg)
11551 (comint-previous-matching-input-string-position)
11552 (comint-previous-matching-input)
11553 (comint-replace-by-expanded-history-before-point, comint-send-input)
11554 (comint-copy-old-input, comint-backward-matching-input)
11555 (comint-goto-process-mark, comint-set-process-mark):
11556 * calendar/calendar.el (calendar-cursor-to-date): Use it.
11557 * bindings.el (debug-ignored-errors): Remove regexps, add `user-error'.
11558
11559 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
11560
11561 * dabbrev.el (dabbrev--ignore-case-p): New function.
11562 (dabbrev-completion, dabbrev-expand, dabbrev--substitute-expansion):
11563 Use it.
11564
11565 * files.el (automount-dir-prefix): Mark as obsolete.
11566
11567 2012-05-04 Glenn Morris <rgm@gnu.org>
11568
11569 * patcomp.el, play/bruce.el: Move to obsolete/.
11570
11571 2012-05-04 Paul Eggert <eggert@cs.ucla.edu>
11572
11573 Fix minor Y10k bugs.
11574 * arc-mode.el (archive-unixdate):
11575 * autoinsert.el (auto-insert-alist):
11576 * calc/calc-forms.el (math-this-year):
11577 * emacs-lisp/copyright.el (copyright-current-year)
11578 (copyright-update-year, copyright):
11579 * tar-mode.el (tar-clip-time-string):
11580 * time.el (display-time-update):
11581 Don't assume years have 4 digits.
11582
11583 2012-05-04 Chong Yidong <cyd@gnu.org>
11584
11585 * dos-w32.el (file-name-buffer-file-type-alist)
11586 (direct-print-region-use-command-dot-com):
11587 * ffap.el (ffap-menu-regexp):
11588 * find-file.el (ff-special-constructs):
11589 * follow.el (follow-debug):
11590 * forms.el (forms--debug):
11591 * iswitchb.el (iswitchb-all-frames):
11592 * ido.el (ido-all-frames):
11593 * emacs-lisp/timer.el (timer-max-repeats):
11594 * mail/feedmail.el (feedmail-mail-send-hook)
11595 (feedmail-mail-send-hook-queued):
11596 * mail/footnote.el (footnote-signature-separator):
11597 * mail/mailabbrev.el (mail-alias-separator-string)
11598 (mail-abbrev-mode-regexp):
11599 * mail/rmail.el (rmail-speedbar-match-folder-regexp):
11600 * progmodes/idlwave.el (idlwave-libinfo-file)
11601 (idlwave-default-completion-case-is-down)
11602 (idlwave-library-routines): Convert defvars to defcustoms.
11603
11604 * mail/rmail.el (rmail-decode-mime-charset):
11605 * progmodes/idlw-shell.el (idlwave-shell-print-expression-function)
11606 (idlwave-shell-fix-inserted-breaks)
11607 (idlwave-shell-activate-alt-keybindings)
11608 (idlwave-shell-use-breakpoint-glyph):
11609 * facemenu.el (facemenu-unlisted-faces): Delete obsolete vars.
11610
11611 2012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
11612
11613 * minibuffer.el (completion--twq-all): Beware completion-ignore-case.
11614
11615 2012-05-03 Wilson Snyder <wsnyder@wsnyder.org>
11616
11617 * progmodes/verilog-mode.el (font-lock-keywords):
11618 Fix mis-highligting auto. Reported by Craig Barner.
11619 (verilog-auto, verilog-auto-undef): Add AUTOUNDEF to remove
11620 defines from global name space. Reported by Dan Dever.
11621 (verilog-auto-reset, verilog-auto-reset-widths)
11622 (verilog-auto-tieoff): Support using unbased numbers for
11623 AUTORESET and AUTOTIEOFF.
11624 (verilog-submit-bug-report): Update variable list.
11625 (verilog-read-auto-params): Fix AUTOINPUT regexps containing
11626 parenthesis from not matching. Reported by Michael Rytting.
11627 (verilog-auto-template-lint): Fix hash error when linting modules
11628 with no used templates.
11629 (verilog-warn, verilog-warn-error)
11630 (verilog-warn-fatal): When non-interactive report multiple
11631 warnings before exiting. Suggested by Brad Dobbie.
11632 (verilog-auto-template-lint, verilog-auto-template-warn-unused)
11633 (verilog-read-auto-template): Add `verilog-auto-template-warn-unused'
11634 to report unused template errors. Reported by Brad Dobbie.
11635 (verilog-read-decls): Fix AUTOWIRE etc on supply0, supply1 type
11636 nets, bug438. Reported by Vns Blore.
11637 (verilog-auto-inout-module, verilog-auto-reg)
11638 (verilog-read-decls, verilog-read-sub-decls-sig)
11639 (verilog-signals-edit-wire-reg, verilog-signals-with):
11640 Fix passing of Verilog data types in ANSI input/output ports
11641 such as "output logic" into the AUTOs. Special case "wire" and
11642 "reg" for backwards compatibility presuming Verilog 2001.
11643 (verilog-auto-ascii-enum): Add "auto enum" as alias.
11644 (verilog-preprocess): Fix replication of preprocess output.
11645 Reported by Brad Dobbie.
11646 (verilog-auto-inst-interfaced-ports):
11647 Create verilog-auto-inst-interfaced-ports, bug429.
11648 Reported by Julian Gorfajn.
11649 (verilog-after-save-font-hook)
11650 (verilog-before-save-font-hook): New variable.
11651 (verilog-modi-cache-results, verilog-save-font-mod-hooked)
11652 (verilog-save-font-mods): Wrap disabling fontification, reported
11653 by David Rogoff.
11654 (verilog-do-indent, verilog-pretty-declarations-auto)
11655 (verilog-sk-def-reg): Fix obeying `verilog-auto-lineup', bug305.
11656 Reported by Pierre-David Pfister.
11657 (verilog-set-auto-endcomments): Fix endtask auto comments outside
11658 of class declarations, bug292. Reported by Kevin Heilman.
11659 (verilog-read-decls): Fix 'parameter type' not appearing in
11660 AUTOINSTPARAM, bug340. Reported by Jonathan Greenlaw.
11661 (verilog-auto-logic): Fix when AUTOLOGIC present to properly do
11662 AUTOINPUTs, bug411. Reported by Jonathan Greenlaw.
11663 (verilog-read-auto-lisp): Avoid syntax-ppss warning on AUTOLISP.
11664 Reported by David Kravitz.
11665
11666 2012-05-03 Michael McNamara <mac@mail.brushroad.com>
11667
11668 * progmodes/verilog-mode.el (verilog-pretty-expr): Don't line up
11669 assignment with tests in ifs and for loops.
11670 (verilog-extended-complete-re, verilog-complete-reg): Change so
11671 that DPI inport functions don't look like fuction declarations.
11672 (verilog-pretty-expr): Don't line up assignment
11673 operations to the test and increment in if and for loops
11674 (verilog-extended-complete-re, verilog-complete-reg): Change so
11675 that DPI inport functions don't look like fuction declarations.
11676
11677 2012-05-03 Kenichi Handa <handa@m17n.org>
11678
11679 * mail/rmailmm.el (rmail-show-mime): Catch an error caused by text
11680 decoding, and show a warning message without signaling an error
11681 (Bug#11282).
11682
11683 2012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
11684
11685 * emacs-lisp/bytecomp.el
11686 (byte-compile-file-form-custom-declare-variable): Compile all elements,
11687 since cconv.el might have introduced :fun-body, internal-make-closure,
11688 and friends for bytecomp to handle (bug#11391).
11689 * custom.el (defcustom): Avoid ((λ ..) ..).
11690
11691 2012-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
11692
11693 * subr.el (read-passwd): Better clean after ourselves (bug#11392).
11694
11695 2012-05-02 Juanma Barranquero <lekktu@gmail.com>
11696
11697 * notifications.el (dbus-debug):
11698 * term/linux.el (gpm-mouse-enable):
11699 * term/screen.el (xterm-register-default-colors): Declare.
11700
11701 2012-05-02 Chong Yidong <cyd@gnu.org>
11702
11703 * cus-start.el (gc-cons-percentage, exec-suffixes)
11704 (dos-display-scancodes, dos-hyper-key, dos-super-key)
11705 (dos-keypad-mode, debug-on-signal, vertical-centering-font-regexp)
11706 (make-cursor-line-fully-visible, void-text-area-pointer)
11707 (font-list-limit): Add customization data.
11708
11709 * allout.el (allout-exposure-change-functions)
11710 (allout-structure-added-functions)
11711 (allout-structure-deleted-functions)
11712 (allout-structure-shifted-functions): Rename abnormal hooks from
11713 *-hook, and convert to defcustoms.
11714 (allout-after-copy-or-kill-hook, allout-post-undo-hook):
11715 Convert to defcustoms.
11716 (allout-mode-hook, allout-mode-deactivate-hook): Doc fix.
11717
11718 * allout-widgets.el: Hook callers changed.
11719
11720 2012-05-02 Eli Zaretskii <eliz@gnu.org>
11721
11722 * mail/rmail.el (rmail-yank-current-message): Use the encoding of
11723 the yanked message in preference to the default value of
11724 buffer-file-coding-system.
11725
11726 2012-05-02 Martin Rudalics <rudalics@gmx.at>
11727
11728 * window.el (display-buffer--action-function-custom-type):
11729 Fix entry.
11730
11731 2012-05-02 Alan Mackenzie <acm@muc.de>
11732
11733 * progmodes/cc-defs.el (c-version): Update to 5.32.3.
11734
11735 2012-05-01 Glenn Morris <rgm@gnu.org>
11736
11737 * cus-start.el (suggest-key-bindings): Remove, now it is in Lisp.
11738
11739 * eshell/esh-cmd.el (eshell-debug-command): Doc fix. Add :set.
11740
11741 * cus-edit.el (custom-variable-documentation): Simplify with format.
11742
11743 2012-05-01 Aaron S. Hawley <aaron.s.hawley@gmail.com>
11744 Stefan Monnier <monnier@iro.umontreal.ca>
11745
11746 * simple.el (suggest-key-bindings, execute-extended-command):
11747 Move from keyboard.c.
11748
11749 2012-05-01 Chong Yidong <cyd@gnu.org>
11750
11751 * follow.el: Eliminate advice.
11752 (set-process-filter, process-filter, sit-for): Advice deleted.
11753 (follow-mode-off-hook): Obsolete hook removed.
11754 (follow-avoid-tail-recenter-p, follow-process-filter-alist):
11755 Vars deleted.
11756 (follow-auto): Use a :set function.
11757 (follow-mode): Rewritten. Don't advise process filters.
11758 (follow-switch-to-current-buffer-all, follow-scroll-up)
11759 (follow-scroll-down): Assume follow-mode is bound.
11760 (follow-comint-scroll-to-bottom)
11761 (follow-align-compilation-windows): New functions.
11762 (follow--window-sorter): New function.
11763 (follow-all-followers): Use it to explicitly sort windows by their
11764 positions; don't make assumptions about next-window order.
11765 (follow-windows-start-end, follow-delete-other-windows-and-split)
11766 (follow-calc-win-start): Doc fix.
11767 (follow-windows-aligned-p, follow-select-if-visible): Don't call
11768 vertical-motion unnecessarily.
11769 (follow-adjust-window): New function.
11770 (follow-post-command-hook): Use it.
11771 (follow-call-set-process-filter, follow-call-process-filter)
11772 (follow-intercept-process-output, follow-tidy-process-filter-alist)
11773 (follow-stop-intercept-process-output, follow-generic-filter):
11774 Functions deleted.
11775 (follow-scroll-bar-toolkit-scroll, follow-scroll-bar-drag)
11776 (follow-scroll-bar-scroll-up, follow-scroll-bar-scroll-down):
11777 New functions, replacing advice on scroll-bar-* commands.
11778 (follow-mwheel-scroll): New function (Bug#4112).
11779
11780 * comint.el (comint-adjust-point): New function.
11781 (comint-postoutput-scroll-to-bottom): Use it.
11782 Call follow-comint-scroll-to-bottom for Follow mode buffers.
11783
11784 2012-05-01 Glenn Morris <rgm@gnu.org>
11785
11786 * term/AT386.el, term/apollo.el, term/bobcat.el, term/cygwin.el:
11787 * term/iris-ansi.el, term/linux.el, term/lk201.el, term/news.el:
11788 * term/screen.el, term/vt102.el, term/vt125.el, term/vt200.el:
11789 * term/vt201.el, term/vt220.el, term/vt240.el, term/vt300.el:
11790 * term/vt320.el, term/vt400.el, term/vt420.el, term/wyse50.el:
11791 Remove no-byte-compile setting.
11792
11793 2012-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
11794
11795 * minibuffer.el (completion-table-with-quoting): Fix compatibility
11796 all-completions code to not return a number in the last cdr.
11797
11798 2012-04-30 Leo Liu <sdl.web@gmail.com>
11799
11800 * ibuf-ext.el (ibuffer-diff-buffer-with-file-1): Avoid buffer
11801 read-only error.
11802
11803 2012-04-29 Chong Yidong <cyd@gnu.org>
11804
11805 * follow.el (follow-calc-win-end): Rewrite to handle partial
11806 screen lines correctly (Bug#8390).
11807 (follow-avoid-tail-recenter): Minor cleanup.
11808
11809 2012-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
11810
11811 Avoid the obsolete `assoc' package.
11812 * speedbar.el (speedbar-refresh): Avoid adelete.
11813 (speedbar-file-lists): Simplify and avoid aput.
11814 * man.el (Man--sections, Man--refpages): New vars, replacing
11815 Man-sections-alist and Man-refpages-alist.
11816 (Man-build-section-alist, Man-build-references-alist):
11817 Use them; avoid aput.
11818 (Man--last-section, Man--last-refpage): New vars.
11819 (Man-follow-manual-reference): Use them.
11820 Use the `default' arg of completing-read.
11821 (Man-goto-section): Idem. Move prompt to the `interactive' spec.
11822
11823 2012-04-27 Chong Yidong <cyd@gnu.org>
11824
11825 * vc/diff.el (diff-sentinel): Go to bob (Bug#10259).
11826
11827 * startup.el (x-apply-session-resources): New function.
11828
11829 * term/ns-win.el (ns-initialize-window-system):
11830 * term/w32-win.el (w32-initialize-window-system):
11831 * term/x-win.el (x-initialize-window-system): Use it to properly
11832 set menu-bar-mode and other vars from X resources, even if the
11833 initial frame is not a window-system frame (Bug#2299).
11834
11835 * subr.el (read-key): Avoid running filter function when setting
11836 up temporary tool bar entries (Bug#9922).
11837
11838 2012-04-27 Andreas Schwab <schwab@linux-m68k.org>
11839
11840 * vc/vc-git.el (vc-git-state): Fix regexp matching diff output.
11841 (Bug#11344)
11842
11843 2012-04-27 Chong Yidong <cyd@gnu.org>
11844
11845 * select.el (xselect--encode-string): New function, split from
11846 xselect-convert-to-string.
11847 (xselect-convert-to-string): Use it.
11848 (xselect-convert-to-filename, xselect-convert-to-os)
11849 (xselect-convert-to-host, xselect-convert-to-user): Ensure that
11850 returned strings are properly encoded (Bug#11315).
11851
11852 2012-04-27 Chong Yidong <cyd@gnu.org>
11853
11854 * simple.el (delete-active-region): Move to killing custom group.
11855
11856 2012-04-27 Andreas Schwab <schwab@linux-m68k.org>
11857
11858 * progmodes/which-func.el (which-func-current): Quote %
11859 characters for mode-line processing.
11860
11861 2012-04-27 Chong Yidong <cyd@gnu.org>
11862
11863 * xml.el (xml-parse-region, xml-parse-tag): Avoid errors due to
11864 reaching eob (Bug#11286).
11865
11866 2012-04-27 Eli Zaretskii <eliz@gnu.org>
11867
11868 * progmodes/gdb-mi.el (gdb-control-level): New variable.
11869 (gdb): Make it buffer-local and init to zero.
11870 (gdb-control-commands-regexp): New variable.
11871 (gdb-send): Don't wrap in "-interpreter-exec console" if
11872 gdb-control-level is positive. Increment gdb-control-level
11873 whenever the command matches gdb-control-commands-regexp, and
11874 decrement it each time the command is "end". (Bug#11279)
11875
11876 2012-04-27 Martin Rudalics <rudalics@gmx.at>
11877
11878 * window.el (adjust-window-trailing-edge, enlarge-window)
11879 (shrink-window, window-resize):
11880 * mouse.el (mouse-drag-line): Fix resizing of minibuffer
11881 windows (Bug#11276).
11882
11883 2012-04-27 Chong Yidong <cyd@gnu.org>
11884
11885 * progmodes/pascal.el (pascal--extra-indent): Rename from ind, to
11886 fix "missing prefix" warning. All callers changed.
11887
11888 2012-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
11889
11890 * emacs-lisp/assoc.el: Move to obsolete/.
11891
11892 2012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
11893
11894 * emacs-lisp/assoc.el (aget): Fix dynamic-scoping issue (bug#11352).
11895
11896 * term/ns-win.el (ns-define-service):
11897 * progmodes/pascal.el (pascal-goto-defun):
11898 * progmodes/js.el (js--read-tab):
11899 * progmodes/etags.el (tags-lazy-completion-table):
11900 * emacs-lisp/syntax.el (syntax-propertize-via-font-lock):
11901 * emacs-lisp/ewoc.el (ewoc--wrap):
11902 * emacs-lisp/assoc.el (aput, adelete, amake):
11903 * doc-view.el (doc-view-convert-current-doc):
11904 * vc/diff.el (diff-no-select): Replace lexical-let by lexical-binding.
11905
11906 2012-04-26 Chong Yidong <cyd@gnu.org>
11907
11908 * image.el (image-type-from-buffer): Only return supported image
11909 type (Bug#9045).
11910
11911 * vc/diff-mode.el (diff-beginning-of-hunk): Return a meaningful
11912 value, for symmetry with diff-end-of-hunk.
11913 (diff-split-hunk, diff-find-source-location)
11914 (diff-ignore-whitespace-hunk, diff-refine-hunk): Use it.
11915 (diff-bounds-of-hunk, diff-bounds-of-file): New functions.
11916 (diff-restrict-view, diff-hunk-kill, diff-file-kill): Use them to
11917 compute the relevant hunk or file properly (Bug#6005).
11918 (diff-file-junk-re): Add bzr's "modified file" tag (Bug#6041).
11919
11920 2012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
11921
11922 * vc/vc-mtn.el:
11923 * vc/vc-hg.el:
11924 * vc/vc-git.el:
11925 * vc/vc-dir.el:
11926 * vc/vc-cvs.el:
11927 * vc/vc-bzr.el:
11928 * vc/vc-arch.el:
11929 * vc/vc.el: Replace lexical-let by lexical-binding.
11930 * minibuffer.el (lazy-completion-table): Avoid ((λ ...) ...).
11931 * emacs-lisp/cl-macs.el (lexical-let): Fix use in lexical-binding.
11932 * emacs-lisp/cconv.el (cconv-analyse-form): Warn use of ((λ ...) ...).
11933
11934 2012-04-26 Chong Yidong <cyd@gnu.org>
11935
11936 * vc/diff-mode.el (diff-undo): New command (Bug#5302).
11937 (diff-mode-shared-map): Bind it to / and [remap undo].
11938
11939 * vc/ediff-wind.el (ediff-setup-windows-default): New function.
11940 (ediff-window-setup-function): Use it as the default, to set up
11941 windows based on whether the current frame is graphical (Bug#2138).
11942 (ediff-choose-window-setup-function-automatically): Make obsolete.
11943
11944 * vc/ediff-init.el: Always define ediff-pixel-width/height.
11945
11946 2012-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
11947
11948 * ffap.el: Remove old code for obsolete package.
11949 (ffap-complete-as-file-p): Remove.
11950
11951 Use completion-table-with-quoting for comint and pcomplete.
11952 * comint.el (comint--unquote&requote-argument)
11953 (comint--unquote-argument, comint--requote-argument): New functions.
11954 (comint--unquote&expand-filename, comint-unquote-filename): Obsolete.
11955 (comint-quote-filename): Use regexp-opt-charset.
11956 (comint--common-suffix, comint--common-quoted-suffix)
11957 (comint--table-subvert): Remove.
11958 (comint-unquote-function, comint-requote-function): New vars.
11959 (comint--complete-file-name-data): Use them with
11960 completion-table-with-quoting.
11961 * pcmpl-unix.el (pcomplete/scp): Use completion-table-subvert.
11962 * pcomplete.el (pcomplete-arg-quote-list)
11963 (pcomplete-quote-arg-hook, pcomplete-quote-argument): Obsolete.
11964 (pcomplete-unquote-argument-function): Default to non-nil.
11965 (pcomplete-unquote-argument): Simplify.
11966 (pcomplete--common-quoted-suffix): Remove.
11967 (pcomplete-requote-argument-function): New var.
11968 (pcomplete--common-suffix): New function.
11969 (pcomplete-completions-at-point): Use completion-table-with-quoting
11970 and completion-table-subvert.
11971
11972 * minibuffer.el: Use completion-table-with-quoting for read-file-name.
11973 (minibuffer--double-dollars): Preserve properties.
11974 (completion--sifn-requote): New function.
11975 (completion--file-name-table): Rewrite using it and c-t-with-quoting.
11976
11977 * minibuffer.el: Add support for completion of quoted/escaped data.
11978 (completion-table-with-quoting, completion-table-subvert): New funs.
11979 (completion--twq-try, completion--twq-all): New functions.
11980 (completion--nth-completion): New function.
11981 (completion-try-completion, completion-all-completions): Use it.
11982
11983 2012-04-25 Leo Liu <sdl.web@gmail.com>
11984
11985 * progmodes/python.el (python-pdbtrack-get-source-buffer):
11986 Use compilation-message if available to find real filename.
11987
11988 2012-04-25 Chong Yidong <cyd@gnu.org>
11989
11990 * vc/diff-mode.el (diff-setup-whitespace): New function.
11991 (diff-mode): Use it.
11992
11993 * vc/diff.el (diff-sentinel):
11994 * vc/vc.el (vc-diff-finish): Call diff-setup-whitespace to assign
11995 Whitespace mode variables based on diff style (Bug#8612).
11996
11997 2012-04-25 Leo Liu <sdl.web@gmail.com>
11998
11999 * progmodes/python.el (python-send-region): Add suffix .py to the
12000 temp file.
12001
12002 * files.el (auto-mode-alist): Use javascript-mode instead.
12003
12004 2012-04-25 Alex Harsanyi <AlexHarsanyi@gmail.com>
12005
12006 Sync with soap-client repository. Support SOAP simpleType (Bug#10331).
12007
12008 * net/soap-client.el (soap-resolve-references-for-sequence-type)
12009 (soap-resolve-references-for-array-type): Hack to prevent self
12010 references, see Bug#9.
12011 (soap-parse-envelope): Report the contents of the 'detail' node
12012 when receiving a fault reply.
12013 (soap-parse-envelope): Report the contents of the entire 'detail' node.
12014
12015 * net/soap-inspect.el (soap-sample-value-for-simple-type)
12016 (soap-inspect-simple-type): New function.
12017
12018 * net/soap-client.el (soap-simple-type): New struct.
12019 (soap-default-xsd-types, soap-default-soapenc-types)
12020 (soap-decode-basic-type, soap-encode-basic-type):
12021 support unsignedInt and double basic types.
12022 (soap-resolve-references-for-simple-type)
12023 (soap-parse-simple-type, soap-encode-simple-type): New function.
12024 (soap-parse-schema): Parse xsd:simpleType declarations.
12025
12026 * net/soap-client.el (soap-default-xsd-types)
12027 (soap-default-soapenc-types): Add integer, byte and anyURI types.
12028 (soap-parse-complex-type-complex-content): Use `soap-wk2l' to find
12029 the local name of "soapenc:Array".
12030 (soap-decode-basic-type, soap-encode-basic-type): Support encoding
12031 decoding integer, byte and anyURI xsd types.
12032
12033 2012-04-25 Chong Yidong <cyd@gnu.org>
12034
12035 * cus-edit.el (custom-buffer-create-internal): Update header text.
12036
12037 2012-04-25 Eli Zaretskii <eliz@gnu.org>
12038
12039 * progmodes/gdb-mi.el (gdb-init-1): Condition Windows-specific
12040 settings on 'system-type', not on 'window-system'. On MS-Windows,
12041 set interactive-mode on in GDB.
12042
12043 2012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
12044
12045 * progmodes/ruby-mode.el: Simplify last change, and cleanup code.
12046 (ruby-syntax-propertize-regexp): Remove.
12047 (ruby-syntax-propertize-function): Split regexp into chunks.
12048 Match following code directly.
12049
12050 2012-04-24 Dmitry Gutov <dgutov@yandex.ru>
12051
12052 * progmodes/ruby-mode.el: Handle Cucumber defs (bug#6286).
12053 (ruby-syntax-propertize-regexp): New function.
12054 (ruby-syntax-propertize-function): Use it to handle regexp not preceded
12055 by a special keyword.
12056
12057 * progmodes/ruby-mode.el: Handle general delimited literals (bug#6286).
12058 (ruby-syntax-general-delimiters-goto-beg)
12059 (ruby-syntax-propertize-general-delimiters): New functions.
12060 (ruby-syntax-propertize-function): Use them to handle GDL.
12061 (ruby-font-lock-keywords): Move old handling of GDL...
12062 (ruby-font-lock-syntactic-keywords): .. to here.
12063 (ruby-calculate-indent): Adjust indentation for GDL.
12064
12065 2012-04-24 Michael Albinus <michael.albinus@gmx.de>
12066
12067 * notifications.el (top): Remove unneeded declarations.
12068 (notifications-specification-version): Change to "1.2".
12069 (notifications-interface, notifications-notify-method)
12070 (notifications-close-notification-method): Fix docstring.
12071 (notifications-get-capabilities-method): New defconst.
12072 (notifications-notify): Add :action-items, :resident and
12073 :transient hints. Change "image_data" to "image-data" and
12074 "image_path" to "image-path".
12075 (notifications-get-capabilities): New defun.
12076
12077 2012-04-24 Leo Liu <sdl.web@gmail.com>
12078
12079 * progmodes/python.el: Move hideshow setup to the end.
12080
12081 2012-04-24 Martin Rudalics <rudalics@gmx.at>
12082
12083 * window.el (handle-select-window): Clear echo area since this is
12084 no more done by read_char (Bug#11304).
12085
12086 2012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
12087
12088 * ibuffer.el (ibuffer-mode-map): Bind `/ m' to filter-used-mode
12089 and `/ M' to filter-derived-mode.
12090 * ibuf-ext.el (ibuffer-list-buffer-modes): Simplify; avoid add-to-list.
12091 (ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
12092 (ibuffer-mark-by-mode): Use default rather than initial-input.
12093 (ibuffer-filter-by-derived-mode): Autoload and require-match.
12094
12095 2012-04-24 Ivan Andrus <darthandrus@gmail.com> (tiny change)
12096
12097 * ibuf-ext.el (ibuffer-list-buffer-modes): Add `include-parents' arg.
12098 (ibuffer-filter-by-derived-mode): New filter.
12099 * ibuffer.el (ibuffer-mode-map): Bind to `/ w'.
12100
12101 2012-04-23 Andreas Politz <politza@fh-trier.de>
12102
12103 * subr.el (accept-change-group): Fix arg usage (Bug#6095).
12104
12105 2012-04-23 Chong Yidong <cyd@gnu.org>
12106
12107 * cus-edit.el (customize-apropos, customize-apropos-options):
12108 Disable matching of non-option variables (Bug#11176).
12109 (customize-option, customize-option-other-window)
12110 (customize-changed-options): Doc fix.
12111 (customize-apropos-options, customize-apropos-faces)
12112 (customize-apropos-groups): Use apropos-read-pattern (Bug#11124).
12113
12114 * apropos.el (apropos-read-pattern): Make prompt less cryptic.
12115 Fix word list splitting (Bug#11132).
12116 (apropos-symbol, apropos-keybinding, apropos-label)
12117 (apropos-property, apropos-function-button)
12118 (apropos-variable-button, apropos-misc-button): New faces.
12119 (apropos-symbol-face, apropos-keybinding-face)
12120 (apropos-label-face, apropos-property-face, apropos-match-face):
12121 Variables removed (Bug#8396).
12122 (apropos-library-button, apropos-format-plist, apropos-print)
12123 (apropos-print-doc, apropos-describe-plist): Callers changed.
12124
12125 2012-04-23 Michael Albinus <michael.albinus@gmx.de>
12126
12127 * net/xesam.el (xesam-mode-map): Use let-bound map in
12128 initialization. (Bug#11292)
12129
12130 2012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
12131
12132 Preserve ispell session localwords when switching back to
12133 original buffer.
12134
12135 * textmodes/ispell.el (ispell-buffer-session-localwords):
12136 New buffer-local variable to hold buffer session localwords.
12137 (ispell-kill-ispell): Add option 'clear to delete session
12138 localwords.
12139 (ispell-command-loop, ispell-change-dictionary)
12140 (ispell-buffer-local-words): Preserve session localwords when
12141 needed.
12142
12143 * textmodes/flyspell.el (flyspell-process-localwords)
12144 (flyspell-do-correct): Preserve session localwords when needed.
12145
12146 2012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
12147
12148 * textmodes/ispell.el (ispell-insert-word) Remove unneeded function
12149 using obsolete `translation-table-for-input'.
12150 (ispell-word, ispell-process-line, ispell-complete-word):
12151 Use plain `insert' instead of removed `ispell-insert-word'.
12152
12153 2012-04-22 Chong Yidong <cyd@gnu.org>
12154
12155 * cus-edit.el (custom-variable-menu)
12156 (custom-variable-reset-saved, custom-face-menu)
12157 (custom-face-reset-saved): If there is no saved value, make the
12158 "reset-saved" operation bring back the default (Bug#9509).
12159 (custom-face-state): Properly detect themed faces.
12160
12161 * faces.el (face-spec-set): Stop supporting deprecated form of
12162 third arg.
12163
12164 2012-04-22 Michael Albinus <michael.albinus@gmx.de>
12165
12166 Move functions from C to Lisp. Make non-blocking method calls
12167 the default. Implement further D-Bus standard interfaces.
12168
12169 * net/dbus.el (dbus-message-internal): Declare function.
12170 Remove unneeded function declarations.
12171 (defvar dbus-message-type-invalid, dbus-message-type-method-call)
12172 (dbus-message-type-method-return, dbus-message-type-error)
12173 (dbus-message-type-signal): Declare variables. Remove local
12174 definitions.
12175 (dbus-interface-dbus, dbus-interface-peer)
12176 (dbus-interface-introspectable, dbus-interface-properties)
12177 (dbus-path-emacs, dbus-interface-emacs, dbus-return-values-table):
12178 Adapt docstring.
12179 (dbus-interface-objectmanager): New defconst.
12180 (dbus-call-method, dbus-call-method-asynchronously)
12181 (dbus-send-signal, dbus-method-return-internal)
12182 (dbus-method-error-internal, dbus-register-service)
12183 (dbus-register-signal, dbus-register-method): New defuns, moved
12184 from dbusbind.c
12185 (dbus-call-method-handler, dbus-setenv)
12186 (dbus-get-all-managed-objects, dbus-managed-objects-handler):
12187 New defuns.
12188 (dbus-call-method-non-blocking): Make it an obsolete function.
12189 (dbus-unregister-object, dbus-unregister-service)
12190 (dbus-handle-event, dbus-register-property)
12191 (dbus-property-handler): Obey the new structure of
12192 `bus-registered-objects'.
12193 (dbus-introspect): Use `dbus-call-method'. Use a timeout.
12194 (dbus-get-property, dbus-set-property, dbus-get-all-properties):
12195 Use `dbus-call-method'.
12196
12197 2012-04-22 Chong Yidong <cyd@gnu.org>
12198
12199 * cus-edit.el (custom-commands, custom-reset-menu)
12200 (Custom-reset-standard): Tweak labels.
12201 (custom-reset-button-menu): Change default to t.
12202 (custom-buffer-create-internal): For the custom-reset-button-menu
12203 case, put the revert button first.
12204 (custom-group-subtitle): New face.
12205 (custom-group-value-create): Align docstring to a specific column.
12206
12207 * wid-edit.el (widget-documentation-link-add): Don't handle
12208 indentation in this function.
12209 (widget-documentation-string-indent-to): New function.
12210 (widget-documentation-string-value-create): Use it.
12211
12212 * autorevert.el (auto-revert):
12213 * epg-config.el (epg):
12214 * ibuffer.el (ibuffer):
12215 * mpc.el (mpc):
12216 * ses.el (ses):
12217 * eshell/eshell.el (eshell):
12218 * net/ange-ftp.el (ange-ftp):
12219 * progmodes/ebnf2ps.el (postscript):
12220 * progmodes/flymake.el (flymake):
12221 * progmodes/prolog.el (prolog):
12222 * progmodes/verilog-mode.el (verilog-mode):
12223 * progmodes/which-func.el (which-func):
12224 * term/xterm.el (xterm):
12225 * textmodes/picture.el (picture):
12226 * textmodes/tildify.el (tildify):
12227 * vc/ediff.el (ediff): Tweak defgroups to improve presentation in
12228 customization buffers.
12229
12230 2012-04-22 Alan Mackenzie <acm@muc.de>
12231
12232 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
12233 Adding a ) can hide the resulting (..) from searches. Fix it.
12234 Bound the backward search to the position of the existing (.
12235
12236 2012-04-21 Juanma Barranquero <lekktu@gmail.com>
12237
12238 * progmodes/verilog-mode.el (verilog-mode): Check whether
12239 which-func-modes is t before adding verilog-mode.
12240 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
12241
12242 2012-04-21 Leo Liu <sdl.web@gmail.com>
12243
12244 * net/rcirc.el (rcirc): Avoid error when process-contact returns t.
12245
12246 2012-04-21 Michael Vehrs <Michael.Burschik@gmx.de>
12247
12248 * woman.el: Add support for "T{ T}" tbl syntax, and fix the
12249 filling of the last column of a table (Bug#5635).
12250 (woman-find-next-control-line): New arg, specifying an additional
12251 regexp component for the control line.
12252 (woman2-roff-buffer): Use it.
12253 (woman-break-table): New function.
12254 (woman2-TS): Use it.
12255
12256 2012-04-21 Chong Yidong <cyd@gnu.org>
12257
12258 * woman.el (woman-set-buffer-display-table, woman-decode-region)
12259 (woman-horizontal-escapes, woman-negative-vertical-space)
12260 (woman-tab-to-tab-stop, woman2-fc, woman2-TS)
12261 (WoMan-warn-ignored): Use ?\s instead of ?\ .
12262
12263 2012-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
12264
12265 * minibuffer.el (completion-file-name-table): Complete user names.
12266
12267 2012-04-20 Leo Liu <sdl.web@gmail.com>
12268
12269 * font-lock.el (lisp-font-lock-keywords-2): Add pcase, pcase-let
12270 and pcase-let*.
12271
12272 2012-04-20 Chong Yidong <cyd@gnu.org>
12273
12274 * server.el (server-execute): Respect initial-buffer-choice if it
12275 is a string and there are no files to open (Bug#2825).
12276 (server-create-window-system-frame, server-create-tty-frame):
12277 Don't switch buffers here.
12278 (server-process-filter): Only try to open a window system frame if
12279 compiled with graphical support (Bug#8314).
12280
12281 2012-04-20 Dan Nicolaescu <dann@gnu.org>
12282
12283 * battery.el (battery-echo-area-format): Display remaining time
12284 for sysfs backend too (Bug#11269).
12285 (battery-linux-sysfs): Fix conditional for the charge.
12286
12287 2012-04-20 Chong Yidong <cyd@gnu.org>
12288
12289 * progmodes/gdb-mi.el (gdb): Revert previous change.
12290 (gdb-inferior-io--init-proc): New function.
12291 (gdb-init-1): Use it.
12292 (gdb-inferior-io-sentinel): New sentinel for the gdb-inferior pty,
12293 responsible for allocating a new pty and hooking it to gdb when
12294 the old pty gets an EIO due to process exit.
12295 (gdb-delchar-or-quit): New command. Bind it in gdb-mi buffers.
12296 (gdb-tooltip-print): Don't use obsolete tooltip-use-echo-area.
12297 (gdb-inferior-io--maybe-delete-pty): Move into gdb-reset.
12298
12299 2012-04-20 Eli Zaretskii <eliz@gnu.org>
12300
12301 * window.el (window-min-size, window-sizable, window-min-delta)
12302 (window-max-delta, window--resizable, window-resizable)
12303 (window-total-size, window-full-height-p, window-full-width-p)
12304 (window-in-direction, window--resize-mini-window, window-resize)
12305 (window--resize-child-windows-normal)
12306 (window--resize-child-windows, window--resize-siblings)
12307 (window--resize-this-window, adjust-window-trailing-edge)
12308 (enlarge-window, shrink-window): Doc fixes.
12309
12310 2012-04-20 Chong Yidong <cyd@gnu.org>
12311
12312 * progmodes/gdb-mi.el (gdb-inferior-io--maybe-delete-pty):
12313 New function to call delete-process on the gdb-inferior buffer's pty.
12314 (gdb-reset): Use it, instead of relying on kill-buffer to kill the
12315 pty process (Bug#11273).
12316 (gdb-update): New arg to suppress talking to the gdb process.
12317 (gdb-done-or-error): Use it.
12318 (gdb-stopped-functions): Rename from gdb-stopped-hooks.
12319 (gdb): Call gdb-inferior-io--maybe-delete-pty as a workaround for
12320 sentinel not being called.
12321
12322 * comint.el (make-comint-in-buffer, comint-exec): Doc fix.
12323
12324 * progmodes/grep.el (grep, rgrep): Doc fix (Bug#11268).
12325
12326 2012-04-20 Glenn Morris <rgm@gnu.org>
12327
12328 * net/network-stream.el (open-network-stream): Doc fix.
12329
12330 2012-04-20 Chong Yidong <cyd@gnu.org>
12331
12332 * emacs-lisp/tabulated-list.el (tabulated-list-print): Fix typos.
12333
12334 2012-04-20 Alan Mackenzie <acm@muc.de>
12335
12336 Ensure searching for keywords is case sensitive.
12337
12338 * progmodes/cc-cmds.el (c-electric-brace, c-electric-lt-gt)
12339 (c-electric-paren, c-beginning-of-defun, c-end-of-defun)
12340 (c-defun-name, c-mark-function, c-cpp-define-name)
12341 (c-comment-indent, c-scan-conditionals, c-indent-defun)
12342 (c-context-line-break): Bind case-fold-search to nil.
12343
12344 * progmodes/cc-mode.el (c-font-lock-fontify-region):
12345 Bind case-fold-search to nil.
12346
12347 2012-04-20 Chong Yidong <cyd@gnu.org>
12348
12349 * mail/sendmail.el (mail-bury): Call return action with the right
12350 Rmail buffer (Bug#11242).
12351
12352 * server.el (server-process-filter): Handle corner case where both
12353 tty and nowait options are present (Bug#11102).
12354
12355 2012-04-20 Eli Zaretskii <eliz@gnu.org>
12356
12357 * version.el (emacs-bzr-version, emacs-bzr-get-version): Doc fixes.
12358 (top level): Put into the executable the ident-style '$Id:' tag on
12359 windows-nt as well.
12360
12361 2012-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
12362
12363 * electric.el (electric-indent-post-self-insert-function): Check that
12364 electric-indent-mode is enabled in current buffer.
12365
12366 2012-04-19 Juanma Barranquero <lekktu@gmail.com>
12367
12368 * imenu.el (imenu-progress-message): Restore; it is "used" in
12369 erc/erc-imenu.el and net/snmp-mode.el.
12370
12371 2012-04-19 Juanma Barranquero <lekktu@gmail.com>
12372
12373 * avoid.el (mouse-avoidance-mode): Mark unused arg.
12374 (mouse-avoidance-nudge-mouse): Remove unused binding.
12375
12376 * bs.el (bs-toggle-readonly): Call `toggle-read-only' interactively.
12377
12378 * descr-text.el (describe-char):
12379 * progmodes/python.el (python-describe-symbol):
12380 Don't call `toggle-read-only', set `buffer-read-only'.
12381
12382 * imenu.el (imenu-default-goto-function): Mark unused args.
12383 (imenu-progress-message): Remove obsolete macro; all callers changed.
12384
12385 * subr.el (keymap-canonicalize): Remove unused binding.
12386 (read-passwd): Mark unused arg.
12387
12388 * tutorial.el (tutorial--display-changes): Remove unused binding.
12389 (tutorial--save-tutorial-to): Remove unused variable.
12390
12391 * emacs-lisp/package.el (define-package, package-menu-mark-delete)
12392 (package-menu-mark-install, package-menu-mark-unmark): Mark unused args.
12393 (package-generate-autoloads, package-menu--generate)
12394 (package-menu--find-upgrades): Remove unused bindings.
12395
12396 * emulation/cua-rect.el (cua-restrict-regexp-rectangle)
12397 (cua-restrict-prefix-rectangle): Doc fixes. Remove unused bindings.
12398 (cua--mouse-ignore, cua--delete-rectangle, cua--extract-rectangle)
12399 (cua--indent-rectangle, cua-open-rectangle, cua-close-rectangle)
12400 (cua-blank-rectangle, cua-string-rectangle, cua-replace-in-rectangle)
12401 (cua-incr-rectangle, cua-sequence-rectangle, cua--convert-rectangle-as)
12402 (cua--rectangle-aux-replace, cua--left-fill-rectangle)
12403 (cua-scroll-rectangle-up, cua-scroll-rectangle-down)
12404 (cua-delete-char-rectangle): Mark unused args.
12405 (cua-align-rectangle): Remove unused binding.
12406
12407 * mail/rmail.el (compilation--message->loc)
12408 (epa--find-coding-system-for-mime-charset): Declare.
12409
12410 * net/dbus.el (dbus-register-service): Declare.
12411 (dbus-name-owner-changed-handler): Remove unused binding.
12412
12413 * nxml/nxml-mode.el (nxml-electric-slash, nxml-in-mixed-content-p)
12414 (nxml-compute-indent-from-matching-start-tag): Remove unused variables.
12415 (nxml-scan-backward-within): Mark unused arg.
12416 (nxml-dynamic-markup-word): Remove unused binding.
12417
12418 * mouse.el (mouse-menu-major-mode-map):
12419 * emacs-lisp/authors.el (authors-scan-change-log)
12420 (authors-add-to-author-list):
12421 * emacs-lisp/avl-tree.el (avl-tree--enter-balance):
12422 * emacs-lisp/smie.el (smie-auto-fill):
12423 * mail/sendmail.el (mail-bury):
12424 * mail/unrmail.el (unrmail):
12425 * net/tls.el (open-tls-stream):
12426 * textmodes/picture.el (picture-mouse-set-point):
12427 Remove unused bindings.
12428
12429 2012-04-19 Michael Albinus <michael.albinus@gmx.de>
12430
12431 * net/tramp.el (tramp-action-password): Let-bind
12432 `enable-recursive-minibuffers' to t.
12433
12434 2012-04-18 Sam Steingold <sds@gnu.org>
12435
12436 * progmodes/gud.el (gud-key-prefix): Use :type 'key-sequence
12437 instead of 'string to accommodate values like [f11].
12438 Always use `vconcat' instead of `concat' on it, like in `gud-def'.
12439 * progmodes/gdb-mi.el: Likewise.
12440
12441 2012-04-18 Leo Liu <sdl.web@gmail.com>
12442
12443 * abbrev.el (edit-abbrevs): Move point to the abbrev table of
12444 current buffer.
12445 (prepare-abbrev-list-buffer): Enter edit-abbrevs-mode only if
12446 LOCAL is nil.
12447
12448 2012-04-18 Chong Yidong <cyd@gnu.org>
12449
12450 * simple.el (line-move): Use forward-line if in batch mode
12451 (Bug#11053).
12452
12453 2012-04-18 Christopher Schmidt <christopher@ch.ristopher.com>
12454
12455 * files.el (after-find-file): Do not try to add a final newline if
12456 the buffer is read-only (Bug#11156).
12457
12458 2012-04-17 Richard Stallman <rms@gnu.org>
12459
12460 * mail/rmail.el (rmail-start-mail):
12461 Pass (rmail-mail-return...) for the return-action.
12462 Pass (rmail-yank-current-message...) for the yank-action.
12463 (rmail-yank-current-message): New function.
12464 (rmail-mail): Pass the Rmail buffer, not view buffer, for replybuffer.
12465 (rmail-reply): Likewise.
12466 (rmail-forward): Pass the Rmail buffer, not nil, for replybuffer.
12467
12468 * mail/sendmail.el (mail-bury): Choose the first rmail-mode
12469 buffer, not the last. Reject temp buffers. Use the rmail-mode
12470 buffer, not newbuf.
12471
12472 2012-04-17 Juanma Barranquero <lekktu@gmail.com>
12473
12474 * server.el (server-ensure-safe-dir): Simplify.
12475
12476 2012-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
12477
12478 * emacs-lisp/smie.el: Provide smarter auto-filling.
12479 (smie-auto-fill): New function.
12480 (smie-setup): Use it.
12481
12482 * newcomment.el (comment-choose-indent): Obey comment-inline-offset.
12483
12484 2012-04-17 Philipp Haselwarter <philipp.haselwarter@gmx.de> (tiny change)
12485
12486 * newcomment.el (comment-inline-offset): New custom var (bug#11090).
12487 (comment-indent): Use it.
12488
12489 2012-04-17 Vincent Belaïche <vincentb1@users.sourceforge.net>
12490
12491 * ses.el: The overall change is to add cell renaming, that is
12492 setting fancy names for cell symbols other than name matching
12493 "\\`[A-Z]+[0-9]+\\'" regexp .
12494 (ses-localvars): Add ses--renamed-cell-symb-list.
12495 (ses-create-cell-variable): New defun.
12496 (ses-destroy-cell-variable-range): Respect ses--numrows, ses--numcols.
12497 (ses-relocate-formula): Relocate formulas only for cells the
12498 symbols of which are not renamed, i.e. symbols whose names do not
12499 match regexp "\\`[A-Z]+[0-9]+\\'".
12500 (ses-relocate-all): Relocate values only for cells the symbols of
12501 which are not renamed.
12502 (ses-load): Create cells variables as the (ses-cell ...) are read,
12503 in order to check row col consistency with cell symbol name only
12504 for cells that are not renamed.
12505 (ses-replace-name-in-formula): New defun.
12506 (ses-rename-cell): New defun.
12507
12508 2012-04-17 Peter Oliver <bzr@mavit.org.uk> (tiny change)
12509
12510 * progmodes/perl-mode.el (perl-indent-parens-as-block):
12511 New option (bug#11118).
12512 (perl-calculate-indent): Respect it.
12513
12514 2012-04-17 Glenn Morris <rgm@gnu.org>
12515
12516 * dired-aux.el (dired-mark-read-string): Doc fix.
12517
12518 2012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
12519
12520 * dired-aux.el (dired-mark-read-string): Offer optional completion.
12521 (dired-do-chxxx): Complete chown, chgrp over users, groups. (Bug#7900)
12522
12523 2012-04-17 Glenn Morris <rgm@gnu.org>
12524
12525 * mouse.el (mouse-drag-track):
12526 * speedbar.el (speedbar-frame-mode):
12527 Use auto-hscroll-mode rather than the alias automatic-hscrolling.
12528
12529 2012-04-16 Leo Liu <sdl.web@gmail.com>
12530
12531 * progmodes/python.el: Trivial cleanup.
12532
12533 2012-04-16 Glenn Morris <rgm@gnu.org>
12534
12535 * vc/vc.el (vc-string-prefix-p):
12536 * vc/pcvs-util.el (cvs-string-prefix-p):
12537 * textmodes/tex-mode.el (latex-string-prefix-p, tex-string-prefix-p):
12538 * mpc.el (mpc-string-prefix-p):
12539 Make all of these into obsolete aliases for string-prefix-p.
12540 Update callers.
12541 * vc/pcvs.el, vc/vc-dispatcher.el, vc/vc-dir.el: Update callers.
12542
12543 * textmodes/two-column.el: Move custom options to the start.
12544 (frame-width): Remove compat definition.
12545 (2C-associate-buffer, 2C-dissociate):
12546 Use with-current-buffer rather than save-excursion.
12547 (2C-dissociate): Force a mode-line update.
12548 (2C-autoscroll): Use ignore-errors.
12549
12550 * emacs-lisp/eieio-opt.el (describe-class, describe-generic):
12551 Autoload trivia.
12552
12553 * emacs-lisp/cl-extra.el (*random-state*):
12554 Remove unnecessary declaration.
12555
12556 * calendar/cal-tex.el (cal-tex-end-document): Trivial clarification.
12557
12558 * play/cookie1.el (cookie-snarf):
12559 Give an explicit error if input file cannot be read.
12560
12561 * play/yow.el (yow-file): Use expand-file-name rather than concat.
12562
12563 * progmodes/perl-mode.el (c-macro-expand):
12564 Remove unnecessary autoload (it is in loaddefs.el).
12565
12566 * textmodes/picture.el (picture-desired-column)
12567 (picture-update-desired-column): Convert comments to doc-strings.
12568 (picture-substitute): Remove function.
12569 (picture-mode-map): Initialize in the defvar.
12570
12571 * woman.el: Remove eval-after-load for tar-mode.
12572 * tar-mode.el (tar-mode-map): Add woman binding and menu entry.
12573 (woman-tar-extract-file): Autoload it.
12574
12575 * frame.el (automatic-hscrolling): Make this alias obsolete.
12576
12577 2012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
12578
12579 * textmodes/ispell.el (ispell-set-spellchecker-params): Post-process
12580 `ispell-dictionary-alist' to use [:alpha:] and utf-8 if possible.
12581 (ispell-dictionary-base-alist): Revert to original XEmacs
12582 friendly version for default. [:alpha:] will be added in
12583 `ispell-set-spellchecker-params' if needed.
12584
12585 2012-04-16 Chong Yidong <cyd@gnu.org>
12586
12587 * image.el (imagemagick--file-regexp): New variable.
12588 (imagemagick-register-types): Use it.
12589 (imagemagick-types-inhibit): Add :set function. Allow new value
12590 of t to inhibit all types.
12591
12592 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Avoid cl macros,
12593 so we can preload it.
12594
12595 * loadup.el (fboundp): Preload regexp-opt, needed by
12596 imagemagick-register-types.
12597
12598 2012-04-15 Chong Yidong <cyd@gnu.org>
12599
12600 * frame.el (scrolling): Remove nearly unused customization group.
12601
12602 * scroll-all.el (scroll-all-mode): Move to windows group.
12603
12604 2012-04-15 Chong Yidong <cyd@gnu.org>
12605
12606 * bindings.el (goto-map): Bind goto-char to M-g c (Bug#11240).
12607
12608 2012-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
12609
12610 Avoid the use of ((lambda ...) ...) in lexical-binding code.
12611 * emacs-lisp/easy-mmode.el (define-minor-mode): Use funcall (bug#11241).
12612
12613 2012-04-15 Glenn Morris <rgm@gnu.org>
12614
12615 * simple.el (process-file-side-effects): Doc fix.
12616
12617 2012-04-15 Glenn Morris <rgm@gnu.org>
12618
12619 * international/mule-cmds.el (set-language-environment): Doc fix.
12620
12621 2012-04-14 Juanma Barranquero <lekktu@gmail.com>
12622
12623 * server.el (server-auth-key, server-generate-key): Doc fixes.
12624 (server-get-auth-key): Doc fix. Use `string-match-p'.
12625 (server-start): Reflow docstring.
12626
12627 2012-04-14 Lars Ingebrigtsen <larsi@gnus.org>
12628
12629 * server.el (server-generate-key): `called-interactively-p'
12630 requires a parameter.
12631
12632 2012-04-14 Michal Nazarewicz <mina86@mina86.com>
12633
12634 * server.el (server-auth-key): New variable.
12635 (server-generate-key, server-get-auth-key): New function.
12636 (server-start): Use the new variable and functions to allow
12637 setting a permanent server key (bug#9423).
12638
12639 2012-04-14 Leo Liu <sdl.web@gmail.com>
12640
12641 * vc/diff-mode.el (diff-file-prev/next): Fix typo.
12642
12643 2012-04-14 Paul Eggert <eggert@cs.ucla.edu>
12644
12645 Spelling fixes.
12646 * hexl.el (hexl-rulerize): Rename from hexl-rulerise, since
12647 Emacs uses American spelling.
12648
12649 2012-04-14 Juanma Barranquero <lekktu@gmail.com>
12650
12651 * emacs-lock.el (emacs-lock-locked-buffer-functions): New hook.
12652 (emacs-lock--exit-locked-buffer): Return the locked buffer. Doc fix.
12653 (emacs-lock--kill-emacs-hook, emacs-lock--kill-emacs-query-functions)
12654 (emacs-lock--kill-buffer-query-functions): Run new hook. (Bug#11017)
12655
12656 2012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
12657
12658 * progmodes/which-func.el (which-func-modes): Change default.
12659
12660 2012-04-14 Kim F. Storm <storm@cua.dk>
12661
12662 * emulation/cua-base.el (cua-exchange-point-and-mark): Just call
12663 exchange-point-and-mark if cua-enable-cua-keys is nil (Bug#11191).
12664
12665 2012-04-14 Chong Yidong <cyd@gnu.org>
12666
12667 * custom.el (custom-theme-set-variables): Doc fix.
12668
12669 2012-04-14 Glenn Morris <rgm@gnu.org>
12670
12671 * international/mule.el (set-auto-coding-for-load): Doc fix.
12672
12673 2012-04-14 Alan Mackenzie <acm@muc.de>
12674
12675 * progmodes/cc-menus.el (cc-imenu-objc-generic-expression): Make
12676 imenu work again for Objective C Mode. Correct the *-index values,
12677 these having been disturbed by a previous change in 2011-08.
12678
12679 * progmodes/cc-engine.el (c-before-change-check-<>-operators):
12680 Correct two search limits.
12681
12682 2012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
12683
12684 * startup.el (command-line-1): Inhibit splash from daemon (bug#10996).
12685
12686 2012-04-14 Andreas Schwab <schwab@linux-m68k.org>
12687
12688 * international/characters.el: Fix sorting.
12689
12690 2012-04-14 Eli Zaretskii <eliz@gnu.org>
12691
12692 * international/characters.el: Add more missing Latin case pairs.
12693
12694 2012-04-14 Glenn Morris <rgm@gnu.org>
12695
12696 * files.el (dir-locals-set-class-variables): Doc fix.
12697
12698 2012-04-14 Eli Zaretskii <eliz@gnu.org>
12699
12700 * international/characters.el: Add set-case-syntax-pair call for
12701 LATIN CAPITAL LETTER Y WITH DIAERESIS RET and its lower-case
12702 counterpart. (Bug#11209)
12703
12704 * simple.el (shell-command-on-region): Doc fix. (Bug#11208)
12705
12706 2012-04-14 Glenn Morris <rgm@gnu.org>
12707
12708 * calendar/holidays.el (calendar-check-holidays): Doc fix.
12709
12710 2012-04-14 Eli Zaretskii <eliz@gnu.org>
12711
12712 * textmodes/ispell.el (ispell-dictionary-base-alist):
12713 Add data for Hebrew.
12714
12715 2012-04-14 Chong Yidong <cyd@gnu.org>
12716
12717 * net/rcirc.el (rcirc-cmd-quit):
12718 Revert 2012-03-18 change (Bug#11192).
12719
12720 2012-04-14 Glenn Morris <rgm@gnu.org>
12721
12722 * pcmpl-rpm.el (pcomplete/rpm): Handle -qf.
12723
12724 2012-04-14 Eli Zaretskii <eliz@gnu.org>
12725
12726 * minibuffer.el (completion-in-region-mode-map):
12727 Bind completion-help-at-point to M-? rather than ?. (Bug#11182)
12728
12729 2012-04-13 Vivek Dasmohapatra <vivek@etla.org>
12730
12731 * hexl.el (hexl-insert-char): Make display sizes other than 16 work.
12732
12733 2012-04-13 Masatake YAMATO <yamato@redhat.com>
12734
12735 * minibuffer.el (minibuffer-local-filename-syntax): New variable
12736 to allow `C-M-f' and `C-M-b' to move to the nearest path
12737 separator (bug#9511).
12738
12739 2012-04-13 Lars Ingebrigtsen <larsi@gnus.org>
12740
12741 * avoid.el: Require cl when compiling. And also move the
12742 `provide' to the end.
12743
12744 2012-04-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
12745
12746 * avoid.el (mouse-avoidance-banish-position): New variable.
12747 (mouse-avoidance-banish-destination): Use it (bug#10165).
12748
12749 2012-04-13 Leo Liu <sdl.web@gmail.com>
12750
12751 * progmodes/which-func.el (which-func-modes): Add objc-mode.
12752
12753 2012-04-13 Ken Brown <kbrown@cornell.edu>
12754
12755 * net/browse-url.el (browse-url-file-url): Remove Cygwin hack;
12756 this is no longer needed now that cygstart understands file:// URLs.
12757 (browse-url-filename-alist): For the same reason, don't modify
12758 file:// URLs on Cygwin.
12759
12760 2012-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
12761
12762 * emulation/cua-base.el (cua--pre-command-handler-1): Don't activate
12763 the region on shift if the binding is already shifted (bug#11221).
12764
12765 2012-04-12 Glenn Morris <rgm@gnu.org>
12766
12767 * mail/mailpost.el: Move to obsolete/.
12768
12769 2012-04-12 Drew Adams <drew.adams@oracle.com>
12770
12771 * imenu.el (imenu--generic-function): Ignore invisible definitions
12772 (bug#10123).
12773
12774 2012-04-12 Vivek Dasmohapatra <vivek@etla.org>
12775
12776 * hexl.el (hexl-bits): New variable.
12777 (hexl-options): Mention the variable in the doc string.
12778 (hexl-rulerise, hexl-line-displen): New functions.
12779 (hexl-mode): Mention the new variable.
12780 (hexl-mode, hexl-current-address, hexl-current-address):
12781 Use the displen.
12782 (hexl-ascii-start-column): New function.
12783 (hexl-address-to-marker, hexl-beginning-of-line, hexl-options)
12784 (hexl-insert-char, hexl-mode-ruler): Use the displen (bug#4941).
12785
12786 2012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
12787
12788 * textmodes/flyspell.el (flyspell-large-region): For hunspell, use
12789 '("-i" ENCODING), in 2 separate command-line arguments, to specify
12790 the encoding, as expected by hunspell.
12791
12792 2012-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
12793
12794 * battery.el (battery--linux-sysfs-regexp): New const.
12795 (battery-status-function): Use it. Remove yeeloong special case.
12796 (battery-yeeloong-sysfs): Remove.
12797 (battery-echo-area-format): Remove yeeloong special case.
12798
12799 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
12800
12801 * imenu.el (imenu-add-to-menubar): `current-local-map' can be nil.
12802 Reported by Noah Friedman.
12803
12804 * subr.el (read-passwd): Use read-string.
12805
12806 2012-04-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
12807
12808 * vcursor.el (vcursor-move): Increase the priority of the overlay
12809 (bug#9663).
12810
12811 2012-04-11 Deniz Dogan <deniz.a.m.dogan@gmail.com>
12812
12813 * net/rcirc.el (rcirc-kill-channel-buffers): New variable.
12814 (rcirc-kill-buffer-hook): Use it to kill channel buffers (bug#5128).
12815
12816 2012-04-11 William Stevenson <yhvh2000@gmail.com>
12817
12818 * textmodes/artist.el (artist-mode): Convert artist-mode to use
12819 define-minor-mode (bug#10760).
12820
12821 2012-04-11 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
12822
12823 * progmodes/grep.el (rgrep): Tweak the find command line so
12824 that directories matching `grep-find-ignored-files' won't be
12825 pruned (bug#10351).
12826
12827 2012-04-11 Chong Yidong <cyd@gnu.org>
12828
12829 * startup.el (command-line): Remove support for long-obsolete
12830 variable font-lock-face-attributes.
12831
12832 2012-04-11 Glenn Morris <rgm@gnu.org>
12833
12834 * vc/vc-bzr.el (vc-bzr-status): Avoid condition-case-unless-debug.
12835
12836 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
12837
12838 * window.el (window--state-get-1): Obey window-point-insertion-type.
12839
12840 2012-04-11 Lennart Borgman <lennart.borgman@gmail.com>
12841
12842 * emacs-lisp/lisp.el (narrow-to-defun): `beginning-of-defun' goes
12843 to previous function when point is on the first character of a
12844 function. Take care of that in `narrow-to-defun' (bug#6157).
12845
12846 2012-04-11 Glenn Morris <rgm@gnu.org>
12847
12848 * vc/vc-bzr.el (vc-bzr-status): Handle all errors,
12849 not just file-errors.
12850
12851 * vc/vc-bzr.el (vc-bzr-sha1-program, sha1-program): Remove.
12852 (vc-bzr-sha1): Use internal sha1.
12853
12854 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
12855
12856 * progmodes/flymake.el (flymake-mode): Beware read-only dirs (bug#8954).
12857
12858 2012-04-10 Sébastien Gross <seb@chezwam.org> (tiny change)
12859
12860 * progmodes/hideshow.el (hs-hide-all): Don't infloop on comments
12861 that start in the middle of the line (bug#10496).
12862
12863 2012-04-10 Dan Nicolaescu <dann@gnu.org>
12864
12865 * battery.el (battery-linux-proc-acpi): Only one battery is
12866 discharged at a time, but that seems to confuse battery.el when
12867 computing `rate-type' for the battery not being discharged
12868 (bug#10332).
12869
12870 2012-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
12871
12872 * emacs-lisp/autoload.el (autoload-make-program): Remove, unused.
12873
12874 * international/quail.el: Use dolist and simplify.
12875 (quail-define-package, quail-update-keyboard-layout)
12876 (quail-define-rules): Use dolist.
12877 (quail-insert-kbd-layout, quail-get-translation): CSE.
12878
12879 * tmm.el: Use dolist, remove left over hook.
12880 (tmm-prompt, tmm-define-keys, tmm-shortcut, tmm-get-keybind):
12881 Use dolist.
12882 (calendar-load-hook): Don't mess with it.
12883
12884 * vc/vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
12885 Use derived-mode-p. Run the diff asynchronously.
12886
12887 2012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
12888
12889 * obsolete/mouse-sel.el: Add an Obsolete-since header.
12890
12891 2012-04-10 Juanma Barranquero <lekktu@gmail.com>
12892
12893 * misc.el: Display absolute path of loaded DLLs (bug#10424).
12894 (list-dynamic-libraries--loaded): New function.
12895 (list-dynamic-libraries--refresh): Use it.
12896
12897 2012-04-10 Nathan Weizenbaum <nweiz@google.com>
12898
12899 * progmodes/python.el (python-fill-paragraph):
12900 Make python-fill-region in a multiline string work when font-lock is
12901 disabled (bug#7018).
12902
12903 2012-04-10 Laimonas Vėbra <laimonas.vebra@gmail.com> (tiny change)
12904
12905 * language/european.el (cp775): Add oem/legacy (en)coding on
12906 DOS/MS Windows for the Baltic languages. There are still plenty
12907 of texts written in this encoding/codepage (bug#6519).
12908
12909 2012-04-10 Glenn Morris <rgm@gnu.org>
12910
12911 * cus-start.el (eol-mnemonic-unix, eol-mnemonic-dos, eol-mnemonic-mac):
12912 Add :standard values, reducing "rogue" customs in emacs -Q a bit more.
12913
12914 2012-04-10 Florian Adamsky <florian@adamsky.it> (tiny change)
12915
12916 * recentf.el (recentf-dialog-mode-map): Add two keybindings for
12917 next-line "n" and previous-line "p" in order to make recentf more
12918 consistent with ibuffer, dired or org-mode (bug#9387).
12919
12920 2012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
12921
12922 * image.el (put-image): Return the overlay created instead of the
12923 optional input string (bug#7834). Note that this may break code
12924 that is (for some reason or other) depending on `put-image'
12925 returning the string.
12926
12927 * mouse-sel.el (mouse-sel-mode): Mark as obsolete (bug#6174).
12928
12929 * simple.el (zap-to-char): Allow zapping using input methods
12930 (bug#1580).
12931
12932 * textmodes/fill.el (fill-region): Leave point and mark where they
12933 were before filling (bug#5399).
12934
12935 2012-04-09 Glenn Morris <rgm@gnu.org>
12936
12937 * version.el (emacs-bzr-get-version):
12938 Handle lightweight checkouts of local branches.
12939
12940 2012-04-09 Andreas Schwab <schwab@linux-m68k.org>
12941
12942 * international/characters.el: Recover lost case pairs. (Bug#11209)
12943
12944 2012-04-09 Chong Yidong <cyd@gnu.org>
12945
12946 * custom.el (custom-variable-p): Return nil for non-symbol
12947 arguments instead of signaling an error.
12948 (user-variable-p): Obsolete alias for custom-variable-p.
12949
12950 * apropos.el (apropos-variable):
12951 * files-x.el (read-file-local-variable):
12952 * simple.el (set-variable):
12953 * woman.el (woman-mini-help):
12954 * emacs-lisp/byte-opt.el (side-effect-free-fns): Callers changed.
12955
12956 2012-04-09 Glenn Morris <rgm@gnu.org>
12957
12958 * startup.el (normal-top-level): Don't look for leim-list.el
12959 in places where it will not be found. (Bug#910)
12960
12961 * international/mule-cmds.el (set-default-coding-systems):
12962 * files.el (normal-mode):
12963 Remove guarded calls to ucs-set-table-for-input. (Bug#9821)
12964 This function was removed with ucs-tables.el in 2008.
12965
12966 2012-04-08 Eli Zaretskii <eliz@gnu.org>
12967
12968 * textmodes/ispell.el (ispell-check-version): For hunspell, set
12969 ispell-encoding8-command to "-i", without a trailing space.
12970 (ispell-start-process): For hunspell, use '("-i" ENCODING), in 2
12971 separate command-line arguments, to specify the encoding, since
12972 that's how hunspell expects it.
12973
12974 2012-04-08 Glenn Morris <rgm@gnu.org>
12975
12976 * loadup.el: Load bindings before cus-start.
12977 This reduces somewhat the number of "rogue" settings in emacs -Q.
12978
12979 2012-04-07 Glenn Morris <rgm@gnu.org>
12980
12981 * version.el (emacs-bzr-get-version): New function.
12982 (emacs-bzr-version): New variable.
12983 * loadup.el (emacs-bzr-version): Set it. (Bug#8054)
12984 * mail/emacsbug.el (report-emacs-bug): Include bzr version.
12985
12986 2012-04-07 Eli Zaretskii <eliz@gnu.org>
12987
12988 * international/uni-bidi.el, international/uni-category.el:
12989 * international/uni-combining.el, international/uni-decimal.el:
12990 * international/uni-decomposition.el, international/uni-digit.el:
12991 * international/uni-lowercase.el, international/uni-mirrored.el:
12992 * international/uni-name.el, international/uni-numeric.el:
12993 * international/uni-titlecase.el, international/uni-uppercase.el:
12994 Update for Unicode 6.1.
12995
12996 2012-04-07 Eli Zaretskii <eliz@gnu.org>
12997
12998 * term/w32-win.el (dynamic-library-alist): Add libxml2 DLLs.
12999
13000 2012-04-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
13001
13002 * window.el (shrink-window): Mention the `window-min-height'
13003 variable in the doc string.
13004
13005 2012-04-05 Bastien Guerry <bzg@altern.org>
13006
13007 * color.el (color-lighten-name): Fix typo.
13008
13009 2012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
13010
13011 * server.el (server--on-display-p): New function.
13012 (server--on-display-p): Use it.
13013
13014 2012-04-04 Gábor Vida <vidagabor@gmail.com> (tiny change)
13015
13016 * ido.el (ido-wide-find-dirs-or-files): Use file-name-absolute-p
13017 (bug#11145).
13018
13019 2012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
13020
13021 * comint.el (comint--common-quoted-suffix): Check string boundary
13022 before comparing (bug#11158).
13023 * pcomplete.el (pcomplete--common-quoted-suffix): Idem.
13024
13025 2012-04-04 Chong Yidong <cyd@gnu.org>
13026
13027 * minibuffer.el (completion-extra-properties): Doc fix.
13028
13029 * subr.el (delayed-warnings-hook): Doc fix.
13030
13031 2012-04-04 Daiki Ueno <ueno@unixuser.org>
13032
13033 * epa.el (epa--select-keys): Bind C-c C-c to finish the key
13034 selection (Bug#11159).
13035 (epa-insert-keys): Inform that the default public key will be
13036 exported if no key is selected.
13037
13038 2012-04-04 Richard Stallman <rms@gnu.org>
13039
13040 * mail/emacsbug.el (report-emacs-bug): Bind inhibit-read-only.
13041
13042 2012-04-03 Chong Yidong <cyd@gnu.org>
13043
13044 * mail/sendmail.el (mail-mode-map): Bind C-c C-i to
13045 mail-insert-file, not its obsolete alias mail-attach-file.
13046
13047 2012-04-03 Michael Albinus <michael.albinus@gmx.de>
13048
13049 * notifications.el (notifications-notify): Fix docstring.
13050
13051 2012-04-02 Glenn Morris <rgm@gnu.org>
13052
13053 * emacs-lisp/authors.el (authors-aliases): Another addition.
13054
13055 2012-04-02 Michael Albinus <michael.albinus@gmx.de>
13056
13057 * net/tramp-gvfs.el (tramp-gvfs-send-command): Apply
13058 `tramp-compat-call-process' instead of `tramp-local-call-process'.
13059 Reported by Magnus Henoch <magnus.henoch@gmail.com>.
13060
13061 2012-04-01 Chong Yidong <cyd@gnu.org>
13062
13063 * files.el (file-in-directory-p): Rename from file-subdir-of-p.
13064 Handle root directory properly.
13065 (copy-directory): Caller changed.
13066
13067 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
13068 * net/tramp.el (tramp-file-name-for-operation): Callers changed.
13069
13070 2012-03-31 Glenn Morris <rgm@gnu.org>
13071
13072 * term/xterm.el (xterm-extra-capabilities): Doc fix.
13073
13074 * language/indian.el ("Devanagari"): Fix typo. (Bug#11103)
13075
13076 * calendar/calendar.el (calendar-window-list)
13077 (calendar-hide-window): Restore. (Bug#11140)
13078 (calendar-exit): Use calendar-window-list, calendar-hide-window again.
13079
13080 * emacs-lisp/edebug.el (edebug-unwrap-results): Doc fix.
13081
13082 2012-03-30 Thierry Volpiatto <thierry.volpiatto@gmail.com>
13083
13084 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
13085 Check if file is a symlink (Bug#10489).
13086
13087 * files.el (copy-directory): Likewise.
13088
13089 2012-03-30 Chong Yidong <cyd@gnu.org>
13090
13091 * image.el (imagemagick-types-inhibit)
13092 (imagemagick-register-types): Doc fix.
13093
13094 2012-03-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
13095
13096 * textmodes/ispell.el (ispell-get-extended-character-mode):
13097 Disable extended-char-mode for hunspell. hunspell does not support it
13098 and treats ~word as ordinary words in pipe mode.
13099
13100 2012-03-30 Glenn Morris <rgm@gnu.org>
13101
13102 * tutorial.el (help-with-tutorial): Ensure local variables don't
13103 happen to make the buffer read-only. (Bug#11127)
13104
13105 2012-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
13106
13107 * progmodes/perl-mode.el (perl-indent-line): Use `noindent' in strings.
13108 (perl-calculate-indent): Return `noindent' in strings.
13109
13110 2012-03-28 Sam Steingold <sds@gnu.org>
13111
13112 * calendar/calendar.el (calendar-exit): Use `quit-windows-on'
13113 instead of the broken adhockery which does not prevent calendar
13114 buffers from being displayed at random after exit.
13115 (calendar-window-list, calendar-hide-window): Remove the broken
13116 adhockery.
13117
13118 2012-03-28 Glenn Morris <rgm@gnu.org>
13119
13120 * replace.el (query-replace-map): Doc fix.
13121
13122 2012-03-28 Andreas Schwab <schwab@linux-m68k.org>
13123
13124 * vc/vc-git.el (vc-git-state): Don't try to match all of the diff
13125 contents. (Bug#11109)
13126
13127 2012-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
13128
13129 * emacs-lisp/avl-tree.el (avl-tree--enter-balance): Fix paren typo
13130 (bug#11077).
13131 (avl-tree--check, avl-tree--check-node): New funs.
13132
13133 2012-03-27 Martin Rudalics <rudalics@gmx.at>
13134
13135 * window.el (switch-to-visible-buffer): New option.
13136 (switch-to-prev-buffer, switch-to-next-buffer):
13137 Observe switch-to-visible-buffer. Make sure that checking for a window
13138 showing a buffer already is done on the same frame.
13139
13140 2012-03-27 Glenn Morris <rgm@gnu.org>
13141
13142 * startup.el (mail-host-address): Doc fix.
13143
13144 2012-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
13145
13146 * emacs-lisp/bytecomp.el (byte-compile-constants-vector): Allow more
13147 than 197 variables.
13148
13149 2012-03-26 Ami Fischman <ami@fischman.org>
13150
13151 * vc/vc-git.el (vc-git-state): Avoid unnecessarily locking.
13152
13153 2012-03-26 Glenn Morris <rgm@gnu.org>
13154
13155 * files.el (save-buffers-kill-emacs): Doc fix.
13156
13157 * startup.el (normal-top-level, command-line, command-line-1):
13158 Give them doc strings.
13159
13160 2012-03-25 Eli Zaretskii <eliz@gnu.org>
13161
13162 * makefile.w32-in (install): Use $(DIRNAME)_same-dir.tst instead
13163 of same-dir.tst, to avoid stepping on other (parallel) Make job's toes.
13164
13165 2012-03-25 Chong Yidong <cyd@gnu.org>
13166
13167 * custom.el (load-theme): Even if NO-ENABLE arg is t, reenable the
13168 theme if it was previously enabled before (Bug#11031).
13169
13170 * cus-theme.el (custom-theme-write-faces): Retrieve current face
13171 spec with custom-face-get-current-spec if its :shown-value is not
13172 determined yet (Bug#9337).
13173 (customize-create-theme, custom-theme-revert): Doc fixes.
13174
13175 * button.el (button-at): Minor addition to docstring.
13176
13177 2012-03-24 Simon Leinen <simon.leinen@gmail.com>
13178
13179 * vc/vc.el (vc-merge): Fix a prompt.
13180
13181 2012-03-24 Chong Yidong <cyd@gnu.org>
13182
13183 * mwheel.el (mwheel-scroll): Call deactivate-mark at the right
13184 point (Bug#9623).
13185
13186 * button.el (button-at): Minor addition to docstring.
13187
13188 2012-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
13189
13190 * newcomment.el (comment-choose-indent): No space after BOL.
13191
13192 2012-03-22 Sam Steingold <sds@gnu.org>
13193
13194 * window.el (switch-to-prev-buffer): Revert last patch because the
13195 bug turned out to be an advertised feature (Elisp manual 28.14).
13196
13197 2012-03-22 Glenn Morris <rgm@gnu.org>
13198
13199 * vc/vc-bzr.el (vc-bzr-status-switches): New option. (Bug#6724)
13200 (vc-bzr-command): If running "status", pass vc-bzr-status-switches.
13201
13202 2012-03-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
13203
13204 * net/network-stream.el (network-stream-open-starttls): Make error
13205 message under Windows be less misleading.
13206
13207 2012-03-22 Liang Wang <netcasper@gmail.com> (tiny change)
13208
13209 * progmodes/etags.el (etags-list-tags): Only use tags which goto-func
13210 understands (bug#9942).
13211
13212 2012-03-22 Chong Yidong <cyd@gnu.org>
13213
13214 * simple.el (end-of-visible-line): Handle return value of
13215 next-single-property-change properly (Bug#9371).
13216
13217 2012-03-22 Kenichi Handa <handa@m17n.org>
13218
13219 * international/quail.el (quail-insert-kbd-layout): Fix previous
13220 change. To avoid unwanted bidi reordering, use
13221 bidi-string-mark-left-to-right instead of inserting LRO and PDF.
13222
13223 2012-03-21 Dmitry Gutov <dgutov@yandex.ru>
13224
13225 * progmodes/ruby-mode.el: Don't confuse "end:" for "end" (bug#10786).
13226 (ruby-block-end-re, ruby-delimiter, ruby-parse-partial)
13227 (ruby-beginning-of-indent): Be more careful with the difference
13228 between word-boundary and symbol boundary.
13229 (ruby-mode-syntax-table): Make : a symbol constituent.
13230
13231 2012-03-21 Andreas Politz <politza@fh-trier.de>
13232
13233 * outline.el (outline-flag-region): Evaporate overlays (bug#10789).
13234
13235 2012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
13236
13237 * progmodes/etags.el (tags-completion-at-point-function):
13238 Improve last fix.
13239
13240 * files.el (move-file-to-trash): Files aren't regexps (bug#11055).
13241
13242 2012-03-21 Sam Steingold <sds@gnu.org>
13243
13244 * progmodes/etags.el (tags-completion-at-point-function):
13245 Avoid the error when point is inside the pattern.
13246
13247 2012-03-21 John Yates <john@yates-sheets.org> (tiny change)
13248
13249 * progmodes/hideshow.el (hs-inside-comment-p): Fix hiding of first
13250 line (Bug#10855).
13251
13252 2012-03-21 Drew Adams <drew.adams@oracle.com>
13253
13254 * info.el (Info-menu): Handle string value of FORK arg (Bug#10858).
13255
13256 2012-03-21 Anmol Khirbat <anmol@khirbat.net> (tiny change)
13257
13258 * ido.el (ido-set-current-directory, ido-read-internal)
13259 (ido-choose-completion-string, ido-completion-help): Handle nil
13260 value of ido-completion-buffer (Bug#11008).
13261
13262 2012-03-21 Sam Steingold <sds@gnu.org>
13263
13264 * window.el (switch-to-prev-buffer): Do not switch to a visible
13265 window previous buffer, just like with the frame previous buffers.
13266
13267 2012-03-21 Chong Yidong <cyd@gnu.org>
13268
13269 * faces.el (make-face, make-empty-face, copy-face):
13270 * face-remap.el (face-remap-add-relative, face-remap-set-base):
13271 Doc fixes.
13272
13273 2012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
13274
13275 * wid-edit.el (widget-complete-field): Remove (bug#11051).
13276 (widget-complete): Remove broken use of it.
13277
13278 2012-03-20 Chong Yidong <cyd@gnu.org>
13279
13280 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
13281 Use string-width and truncate-string-width to handle arbitrary
13282 characters.
13283
13284 2012-03-20 Tassilo Horn <tassilo@member.fsf.org>
13285
13286 * textmodes/artist.el (artist-menu-map): Bind Rectangle menu item
13287 to draw rectangles, not squares. (Regression introduced by revno
13288 2011-03-02T03:48:01Z!cyd@stupidchicken.com)
13289
13290 2012-03-18 Chong Yidong <cyd@gnu.org>
13291
13292 * faces.el (face-spec-reset-face): Don't call display-graphic-p if
13293 it is not yet defined (for temacs).
13294
13295 2012-03-18 Leo Liu <sdl.web@gmail.com>
13296
13297 * net/rcirc.el (rcirc-cmd-quit): Allow quitting all servers with
13298 prefix.
13299
13300 2012-03-17 Eli Zaretskii <eliz@gnu.org>
13301
13302 * textmodes/ispell.el (ispell-skip-tib, ispell-keep-choices-win)
13303 (ispell-choices-win-default-height, ispell-silently-savep)
13304 (ispell-dictionary-alist, ispell-encoding8-command)
13305 (ispell-check-version, ispell-aspell-find-dictionary)
13306 (ispell-valid-dictionary-list, ispell-words-keyword)
13307 (ispell-get-word, ispell-internal-change-dictionary)
13308 (ispell-region, ispell-skip-region-list)
13309 (ispell-begin-skip-region-regexp, ispell-ignore-fcc)
13310 (ispell-process-line, ispell-minor-mode, ispell-minor-check)
13311 (ispell-message-text-end, ispell-message)
13312 (ispell-buffer-local-parsing): Doc fix.
13313
13314 2012-03-13 Jambunathan K <kjambunathan@gmail.com>
13315
13316 * htmlfontify.el: Add support for code block fontification for ODT
13317 export (Bug #9914).
13318 (hfy-optimisations): Define new option
13319 `body-text-only'
13320 (hfy-fontify-buffer): Honor above setting.
13321 (hfy-begin-span, hfy-end-span): New routines factored out form
13322 `hfy-fontify-buffer'.
13323 (hfy-begin-span-handler, hfy-end-span-handler): New variables
13324 that permit insertion of custom tags.
13325 (hfy-fontify-buffer): Use above handlers.
13326 (hfy-face-to-css-default): Same as the earlier `hfy-face-to-css'.
13327 (hfy-face-to-css): Re-defined to be a variable.
13328 (hfy-compile-stylesheet): Modify. Allow stylesheet to be built
13329 over multiple runs. This is made possible by having the caller let
13330 bind a special variable `hfy-user-sheet-assoc'.
13331 (htmlfontify-string): New defun.
13332 (hfy-compile-face-map): Make sure that the last char in the
13333 buffer is correctly fontified.
13334 (hfy-face-resolve-face): Whitespace only change.
13335
13336 2012-03-17 Eli Zaretskii <eliz@gnu.org>
13337
13338 * textmodes/ispell.el (ispell-get-decoded-string): Make the error
13339 message more clear.
13340
13341 2012-03-16 Leo Liu <sdl.web@gmail.com>
13342
13343 * emacs-lisp/copyright.el (copyright-year-ranges): Fix typo.
13344
13345 2012-03-16 Alan Mackenzie <acm@muc.de>
13346
13347 Further optimize the handling of large macros.
13348
13349 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Use a
13350 limit to a call of `c-literal-limits'.
13351 (c-determine-+ve-limit): New function.
13352 (c-at-macro-vsemi-p): Move `c-in-literal' to the bottom of an `and'.
13353 (c-guess-basic-syntax): In macros, restrict a search limit to 2000.
13354 In CASE 5B, restrict a search limit to 500.
13355 (c-just-after-func-arglist-p): Obviouly wrong `or' -> `and'.
13356
13357 * progmodes/cc-mode.el (c-neutralize-syntax-in-and-mark-CPP):
13358 Restrict macro bounds to +-500 from after-change's BEG END.
13359
13360 2012-03-16 Leo Liu <sdl.web@gmail.com>
13361
13362 * font-lock.el (lisp-font-lock-keywords-2): Add letrec.
13363
13364 2012-03-16 Aaron S. Hawley <Aaron.S.Hawley@gmail.com>
13365
13366 * tar-mode.el (tar-mode): Fix saving by conditionally undoing
13367 `special-mode' setting of `buffer-read-only'. (Bug#11010)
13368
13369 2012-03-16 Glenn Morris <rgm@gnu.org>
13370
13371 * view.el (view-buffer, view-buffer-other-window)
13372 (view-buffer-other-frame): Doc fixes re special mode-class.
13373
13374 * subr.el (eval-after-load): If named feature is provided not from
13375 a file, run after-load forms. (Bug#10946)
13376
13377 * calendar/calendar.el (calendar-insert-at-column):
13378 Handle non-unit-width characters a bit better. (Bug#10978)
13379
13380 2012-03-15 Chong Yidong <cyd@gnu.org>
13381
13382 * emacs-lisp/ring.el (ring-extend): New function.
13383 (ring-insert+extend): Extend the ring correctly (Bug#11019).
13384
13385 * comint.el (comint-read-input-ring)
13386 (comint-add-to-input-history): Grow comint-input-ring lazily.
13387
13388 2012-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
13389
13390 * progmodes/perl-mode.el (perl-syntax-propertize-special-constructs):
13391 Fix up parsing of multiline twoarg non-paired elements (bug#11014).
13392
13393 * imenu.el: Fix multiple inheritance breakage (bug#9199).
13394 (imenu-add-to-menubar): Don't add a redundant index.
13395 (imenu-update-menubar): Handle a dynamically composed keymap.
13396
13397 2012-03-13 Katsumi Yamaoka <yamaoka@jpl.org>
13398
13399 * mail/sendmail.el (mail-encode-header):
13400 Bind rfc2047-encode-encoded-words to nil.
13401
13402 2012-03-13 Glenn Morris <rgm@gnu.org>
13403
13404 * calendar/calendar.el (calendar-string-spread):
13405 Handle non-unit-width characters a bit better. (Bug#10978)
13406
13407 2012-03-13 Leo Liu <sdl.web@gmail.com>
13408
13409 * vc/vc-hg.el (vc-hg-working-revision): Rework to work with both
13410 directory and file as argument (Bug#10822).
13411
13412 2012-03-13 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
13413
13414 * progmodes/gdb-mi.el (gdb-invalidate-disassembly):
13415 For dynamically generated code, follow $PC.
13416 (gdb-disassembly-handler-custom): Handle no function name case.
13417
13418 2012-03-13 Tim Landscheidt <tim@tim-landscheidt.de> (tiny change)
13419
13420 * calendar/icalendar.el (icalendar-export-file, icalendar-import-file):
13421 * emulation/ws-mode.el (ws-query-replace):
13422 * sort.el (sort-regexp-fields):
13423 Fix missing trailing whitespace in interactive prompts. (Bug#11002)
13424
13425 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
13426
13427 * dabbrev.el: Fix cycle completion order (bug#10963).
13428 (dabbrev--last-obarray, dabbrev--last-completion-buffer): Remove.
13429 (dabbrev-completion): Don't use an obarray; provide
13430 a cycle-sort-function.
13431
13432 2012-03-12 Leo Liu <sdl.web@gmail.com>
13433
13434 * simple.el (kill-new): Use equal-including-properties for comparison.
13435 (kill-do-not-save-duplicates): Doc fix.
13436
13437 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
13438
13439 * dabbrev.el: Fix cycle completion (bug#10963).
13440 Use lexical binding and wrap to 80 columns.
13441 (dabbrev-completion): Delay computing the list of completions.
13442
13443 2012-03-12 Kenichi Handa <handa@m17n.org>
13444
13445 * international/quail.el (quail-insert-kbd-layout): Surround each
13446 row by LRO and PDF instead of inserting many LRMs. Pad the left
13447 and right of each non-spacing marks. Insert invisible space
13448 between lower and upper characters to prevent composition.
13449
13450 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
13451
13452 * minibuffer.el (minibuffer-complete): Don't get confused when the
13453 function is run twice via different commands (bug#10958).
13454 (complete-with-action): Fix docstring.
13455
13456 2012-03-12 Chong Yidong <cyd@gnu.org>
13457
13458 * nxml/nxml-mode.el (nxml-mode-map): Do not bind C-RET (Bug#6776).
13459 (nxml-completion-at-point-function): New function.
13460 (nxml-mode): Use it.
13461 (nxml-bind-meta-tab-to-complete-flag): Default to t.
13462
13463 * emacs-lisp/package.el (package-unpack, package-unpack-single):
13464 Load generated autoloads file before byte compiling (Bug#10970).
13465 (package--make-autoloads-and-compile): New helper fun.
13466
13467 2012-03-12 Christopher Schmidt <christopher@ch.ristopher.com>
13468
13469 * ibuffer.el (ibuffer-redisplay): Remove another gratuitous error.
13470
13471 2012-03-11 Michael Albinus <michael.albinus@gmx.de>
13472
13473 * autorevert.el (auto-revert-handler): Ensure, that
13474 file-readable-p is applied only for local files or in
13475 auto-revert-tail-mode.
13476
13477 2012-03-11 Andreas Schwab <schwab@linux-m68k.org>
13478
13479 * server.el (server-eval-at): Handle non-tcp connections.
13480 Decode result string.
13481
13482 * server.el (server-msg-size): New constant.
13483 (server-reply-print): New function.
13484 (server-eval-and-print): Use it.
13485 (server-eval-at): Use server-quote-arg and server-unquote-arg.
13486 Handle -print-nonl.
13487
13488 2012-03-11 Christopher Schmidt <christopher@ch.ristopher.com>
13489
13490 * ibuffer.el (ibuffer-redisplay): Remove gratuitous error
13491 (Bug#10987).
13492
13493 2012-03-11 Chong Yidong <cyd@gnu.org>
13494
13495 * simple.el (goto-line): Doc fix (Bug#9938).
13496
13497 * subr.el (save-window-excursion): Doc fix (Bug#9979).
13498
13499 * dabbrev.el (dabbrev--find-expansion): Update progress reporter
13500 when finished (Bug#10963).
13501
13502 2012-03-11 Martin Rudalics <rudalics@gmx.at>
13503
13504 * window.el (split-window-below): Fix bug in case where
13505 split-window-keep-point is nil (Bug#10971).
13506
13507 2012-03-11 Juri Linkov <juri@jurta.org>
13508
13509 * replace.el (replace-highlight): Set isearch-word to nil
13510 unconditionally. (Bug#10887)
13511
13512 2012-03-10 Eli Zaretskii <eliz@gnu.org>
13513
13514 * net/mairix.el (mairix-replace-invalid-chars): Rename from
13515 mairix-replace-illegal-chars; all callers changed. Don't remove
13516 ^, ~, and = characters: they are meaningful in mairix search specs.
13517 (mairix-widget-create-query): Add usage information about mairix
13518 search forms: negating words, searching for substrings, etc.
13519
13520 2012-03-10 Jae-hyeon Park <jae-hyeon.park@desy.de> (tiny change)
13521
13522 * international/fontset.el (font-encoding-alist): Add an entry for
13523 ksx1001 (Bug#5667).
13524
13525 2012-03-10 Richard Stallman <rms@gnu.org>
13526
13527 * mail/sendmail.el (mail-encode-header):
13528 Set rfc2047-encode-encoded-words.
13529
13530 * mail/mail-utils.el (mail-quote-printable): Quote multibyte chars.
13531
13532 * mail/rmail.el (rmail-buffers-swapped-p): Don't assume dead
13533 view buffer means not swapped.
13534 (rmail-view-buffer-kill-buffer-hook): Give buf name in error msg.
13535 (rmail-write-region-annotate): Error if real text has disappeared.
13536
13537 * epa-mail.el (epa-mail-encrypt): Bind inhibit-read-only.
13538
13539 2012-03-10 Chong Yidong <cyd@gnu.org>
13540
13541 * emulation/cua-rect.el (cua--init-rectangles):
13542 * emulation/cua-base.el (cua--init-keymaps):
13543 Add delete-forward-char to remappings (Bug#9666).
13544
13545 2012-03-10 Martin Rudalics <rudalics@gmx.at>
13546
13547 * speedbar.el (speedbar-unhighlight-one-tag-line):
13548 Avoid unhighlighting due to frame switching (Bug#10275).
13549
13550 2012-03-10 Chong Yidong <cyd@gnu.org>
13551
13552 * minibuffer.el (completion-in-region, completion-help-at-point):
13553 Give the completion field overlay a high priority (Bug#6830).
13554
13555 * dired.el (dired-goto-file): Recognize absolute file name
13556 listings (Bug#7126).
13557 (dired-goto-file-1): New helper function.
13558 (dired-toggle-read-only): Inhibit warnings.
13559
13560 2012-03-09 Michael Albinus <michael.albinus@gmx.de>
13561
13562 * net/dbus.el (dbus-property-handler): Return empty array if
13563 there are no properties.
13564
13565 2012-03-09 Leo Liu <sdl.web@gmail.com>
13566
13567 * savehist.el (savehist-printable): Stricter check for string
13568 value (Bug#10937).
13569
13570 2012-03-09 Eli Zaretskii <eliz@gnu.org>
13571
13572 * mail/smtpmail.el (smtpmail-send-it):
13573 Bind coding-system-for-write to *-unix, so that FCC files are kept in
13574 valid mbox format.
13575
13576 2012-03-09 Glenn Morris <rgm@gnu.org>
13577
13578 * files.el (dir-locals-find-file):
13579 Don't check result is regular, readable.
13580 (dir-locals-read-from-file): Demote errors.
13581
13582 2012-03-08 Eli Zaretskii <eliz@gnu.org>
13583
13584 * international/quail.el (quail-insert-kbd-layout):
13585 Insert invisible LRM characters before each character in a keyboard
13586 layout cell, to prevent their reordering by bidi display engine.
13587 For details, see the discussion in
13588 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00085.html.
13589
13590 2012-03-08 Alan Mackenzie <acm@muc.de>
13591
13592 * progmodes/cc-cmds.el (c-mark-function): Make it leave a mark at
13593 the starting position; make it extend the marked region when
13594 invoked repeatedly - all under appropriate circumstances.
13595 Fixes bugs #5525, #10906.
13596
13597 2012-03-08 Glenn Morris <rgm@gnu.org>
13598
13599 * files.el (locate-dominating-file, dir-locals-find-file):
13600 Undo 2012-03-06 change.
13601
13602 2012-03-07 Eli Zaretskii <eliz@gnu.org>
13603
13604 * international/quail.el (quail-help):
13605 Force bidi-paragraph-direction be left-to-right. See discussion in
13606 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00062.html
13607 for the reason.
13608
13609 2012-03-07 Michael Albinus <michael.albinus@gmx.de>
13610
13611 Avoid superfluous registering of signals. (Bug#10807)
13612
13613 * notifications.el (notifications-on-action-object)
13614 (notifications-on-close-object): New defvars.
13615 (notifications-on-action-signal, notifications-on-closed-signal):
13616 Unregister the signal if not needed any longer.
13617 (notifications-notify): Register `notifications-action-signal' or
13618 `notifications-closed-signal', if :on-action or :on-close has been
13619 passed as argument.
13620
13621 2012-03-07 Chong Yidong <cyd@gnu.org>
13622
13623 * cus-start.el: Avoid x-select-enable-clipboard-manager warning on
13624 non-X platforms.
13625
13626 2012-03-06 Glenn Morris <rgm@gnu.org>
13627
13628 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
13629 (x-disown-selection-internal, x-get-selection-internal):
13630 Doc fix (add arglist signatures). (Bug#10783)
13631
13632 2012-03-06 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
13633
13634 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
13635 Handle breakpoints with no "type".
13636
13637 2012-03-06 Glenn Morris <rgm@gnu.org>
13638
13639 * files.el (locate-dominating-file): Add optional predicate argument.
13640 (dir-locals-find-file): Make use of above change.
13641
13642 2012-03-06 Thien-Thi Nguyen <ttn@gnuvola.org>
13643
13644 * info.el (Info-insert-dir): Also try "dir.gz".
13645
13646 2012-03-06 Glenn Morris <rgm@gnu.org>
13647
13648 * files.el (dir-locals-find-file):
13649 Ignore non-readable or non-regular files. (Bug#10928)
13650
13651 * files.el (locate-dominating-file): Doc fix.
13652
13653 2012-03-06 Adam Spiers <emacs@adamspiers.org> (tiny change)
13654
13655 * calendar/calendar.el (calendar-set-mode-line):
13656 `getenv' returns a string. (Bug#10951)
13657
13658 2012-03-05 Leo Liu <sdl.web@gmail.com>
13659
13660 * simple.el (backward-delete-char-untabify): Constrain point to
13661 field (Bug#10939).
13662
13663 * eshell/em-cmpl.el (eshell-cmpl-initialize): Fix shift-tab key.
13664
13665 2012-03-05 Chong Yidong <cyd@gnu.org>
13666
13667 * simple.el (count-words): If called from Lisp, return the word
13668 count, for symmetry with `count-lines'. Arglist changed.
13669 (count-words--message): Args changed. Consolidate counting code
13670 from count-words and count-words-region.
13671 (count-words-region): Caller changed.
13672 (count-lines-region): Make it an obsolete alias.
13673
13674 2012-03-04 Tassilo Horn <tassilo@member.fsf.org>
13675
13676 * saveplace.el (save-place-to-alist)
13677 (save-place-ignore-files-regexp): Allow value nil to disable this
13678 feature.
13679
13680 2012-03-04 Chong Yidong <cyd@gnu.org>
13681
13682 * faces.el (face-spec-reset-face): For the default face, reset the
13683 attributes to default values (Bug#10748).
13684
13685 2012-03-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
13686
13687 * mail/emacsbug.el (report-emacs-bug-hook): Fix up thinko in
13688 previous patch: Check `message-send-mail-function', and not the
13689 default function (bug#10897).
13690
13691 2012-03-04 Michael Albinus <michael.albinus@gmx.de>
13692
13693 * notifications.el (notifications-on-action-signal)
13694 (notifications-on-closed-signal): Check for unique service name of
13695 incoming event. Fix error in removing entry.
13696 (top): Register for signals with wildcard service name.
13697 (notifications-notify): Use daemon unique service name for map entries.
13698
13699 2012-03-04 Chong Yidong <cyd@gnu.org>
13700
13701 * cus-start.el: Make x-select-enable-clipboard-manager customizable.
13702
13703 2012-03-04 Glenn Morris <rgm@gnu.org>
13704
13705 * abbrev.el (copy-abbrev-table, abbrev-table-p)
13706 (abbrev-minor-mode-table-alist, define-abbrev, abbrev-insert)
13707 (expand-abbrev, define-abbrev-table): Doc fixes.
13708
13709 2012-03-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
13710
13711 * mail/emacsbug.el (report-emacs-bug-hook): Look at the value of
13712 `message-default-send-mail-function' and not `send-mail-function'
13713 when doing the prompting for `sendmail-query-once' before sending
13714 in Message buffers (bug#10897).
13715
13716 * net/tls.el (open-tls-stream): Don't set the dont-query-on-exit flag.
13717 This is inconsistent with all the other stream functions, which leave
13718 the setting up to the higher levels (if so wanted) (bug#10931).
13719
13720 2012-03-02 Alan Mackenzie <acm@muc.de>
13721
13722 Depessimize the handling of very large macros.
13723
13724 * progmodes/cc-engine.el (c-macro-cache, c-macro-cache-start-pos):
13725 (c-macro-cache-syntactic): New variables to implement a one
13726 element macro cache.
13727 (c-invalidate-macro-cache): New function.
13728 (c-beginning-of-macro, c-end-of-macro, c-syntactic-end-of-macro):
13729 Adapt to use the new cache.
13730 (c-state-safe-place): Use better the cache of safe positions.
13731 (c-state-semi-nonlit-pos-cache)
13732 (c-state-semi-nonlit-pos-cache-limit):
13733 New variables for...
13734 (c-state-semi-safe-place): New function. Here, in a macro is "safe".
13735 (c-invalidate-state-cache-1): New stuff for c-state-semi-safe-place.
13736 (c-in-literal, c-literal-limits, c-determine-limit-get-base):
13737 Use c-state-semi-safe-place.
13738
13739 * progmodes/cc-langs.el (c-get-state-before-change-functions):
13740 Add c-invalidate-macro-cache to the C, C++, Obj entries.
13741
13742 2012-03-02 Michael Albinus <michael.albinus@gmx.de>
13743
13744 * jka-compr.el (jka-compr-call-process):
13745 Apply `file-accessible-directory-p' only when the default directory is
13746 not remote.
13747
13748 2012-03-01 Michael Albinus <michael.albinus@gmx.de>
13749
13750 * files.el (file-equal-p): Fix docstring. Avoid unnecessary
13751 access of FILE2, if FILE1 does not exist.
13752
13753 * net/tramp-sh.el (tramp-remote-process-environment): Add "PAGER=\"\"".
13754 Reported by Robert Lupton the Good <rhl@astro.princeton.edu>.
13755
13756 * vc/vc-git.el (vc-git--call): Enable `inhibit-null-byte-detection'.
13757 Add "PAGER=" to `process-environment'.
13758
13759 2012-03-01 Michael R. Mauger <mmaug@yahoo.com>
13760
13761 * progmodes/sql.el: Bug fix
13762 (sql-get-login-ext): Save login values in globals.
13763 (sql-get-login): Use new version of `sql-get-login-ext'.
13764 (sql-interactive-mode): Set global `sql-connection' to nil.
13765 (sql-connect): Set global values for connection.
13766 (sql-product-interactive): Save global values as buffer local.
13767
13768 2012-02-29 Leo Liu <sdl.web@gmail.com>
13769
13770 * abbrev.el (define-abbrevs): Reset sys to nil.
13771
13772 2012-02-28 Thierry Volpiatto <thierry.volpiatto@gmail.com>
13773
13774 * files.el (file-equal-p): Rename from `files-equal-p'.
13775 Return nil when one or both files don't exist.
13776 (file-subdir-of-p): Now only top directory must exists,
13777 return nil if it doesn't.
13778 (copy-directory): No need to test with `file-subdir-of-p' after
13779 creating dir.
13780 * net/tramp.el (tramp-file-name-for-operation): Rename `files-equal-p'
13781 to `file-equal-p'.
13782
13783 2012-02-28 Glenn Morris <rgm@gnu.org>
13784
13785 * shell.el (shell-mode):
13786 * progmodes/vhdl-mode.el (wildcard-to-regexp, file-expand-wildcards):
13787 * play/landmark.el (landmark-font-lock-face-O):
13788 * play/handwrite.el (handwrite):
13789 * play/gomoku.el (gomoku-O):
13790 * net/browse-url.el (browse-url-browser-display):
13791 * international/mule.el (define-charset):
13792 * htmlfontify.el (hfy-etags-cmd, hfy-face-attr-for-class):
13793 * filesets.el (filesets-find-file-delay):
13794 * eshell/em-xtra.el (eshell-xtra):
13795 * eshell/em-unix.el (eshell-grep):
13796 * emulation/viper.el (viper-mode):
13797 * emacs-lisp/regexp-opt.el (regexp-opt-group):
13798 * emacs-lisp/easymenu.el (easy-menu-define):
13799 * calendar/timeclock.el (timeclock-use-display-time):
13800 * bs.el (bs-mode):
13801 * bookmark.el (bookmark-save-flag):
13802 Doc fix (standardize possessive apostrophe usage).
13803
13804 2012-02-27 Chong Yidong <cyd@gnu.org>
13805
13806 * emulation/viper-cmd.el (viper-intercept-ESC-key):
13807 Fix key-binding lookup for ESC key (Bug#9146).
13808
13809 * font-lock.el (font-lock-specified-p): Rename from
13810 font-lock-spec-present. Callers changed.
13811
13812 2012-02-27 Daniel Hackney <dan@haxney.org>
13813
13814 * emacs-lisp/package.el (package-compute-transaction):
13815 Handle holding a package version to t in package-load-list.
13816
13817 2012-02-26 Michael Albinus <michael.albinus@gmx.de>
13818
13819 * net/tramp.el (tramp-inodes, tramp-devices): Initialize with 0.
13820 (tramp-get-inode, tramp-get-device): Use cached values.
13821
13822 2012-02-26 Alan Mackenzie <acm@muc.de>
13823
13824 Check there is a font-lock specification before doing initial
13825 fontification.
13826
13827 * font-core.el (font-lock-mode): Move the conditional from
13828 :after-hook to font-lock-initial-fontify.
13829 (font-lock-default-function): Move the check for a specification
13830 to font-lock-spec-present.
13831
13832 * font-lock.el (font-lock-initial-fontify): Call ...
13833 (font-lock-spec-present): New function.
13834
13835 2012-02-26 Jim Blandy <jimb@red-bean.com>
13836
13837 * progmodes/gdb-mi.el (gdb-mi-quote): New function.
13838 (gdb-send): Apply it to the operand of the '-interpreter-exec
13839 console' command, so that we can pass arguments with (say) quotes
13840 in them. Store exact string sent in gdb-debug-log (Bug#10765).
13841
13842 2012-02-26 Chong Yidong <cyd@gnu.org>
13843
13844 * help-fns.el (describe-function-1): Clarify description of
13845 remapping (Bug#10844).
13846
13847 * files.el (files-equal-p): Doc fix.
13848 (file-subdir-of-p): Doc fix. Convert loop macro to plain Lisp,
13849 and quit the loop once a mismatch is found.
13850
13851 2012-02-25 Juanma Barranquero <lekktu@gmail.com>
13852
13853 * bs.el (bs--show-with-configuration): Don't throw an error
13854 if the window cannot be split; otherwise, subsequent calls to
13855 bs-show fail, restoring a stale window config. (Bug#10882)
13856
13857 2012-02-25 Jan Djärv <jan.h.d@swipnet.se>
13858
13859 * term/ns-win.el (global-map): Bind ns-drag-file to
13860 ns-find-file (Bug#5855, Bug#10050).
13861
13862 2012-02-25 Andreas Schwab <schwab@linux-m68k.org>
13863
13864 * calendar/parse-time.el (parse-time-string): Allow extractor to
13865 return nil.
13866
13867 2012-02-25 Michael Albinus <michael.albinus@gmx.de>
13868
13869 * net/tramp.el (tramp-file-name-for-operation):
13870 Add `files-equal-p' and `file-subdir-of-p'.
13871
13872 * net/tramp-sh.el (tramp-sh-handle-copy-directory):
13873 * net/tramp-smb.el (tramp-smb-handle-copy-directory):
13874 Add COPY-CONTENTS argument.
13875
13876 2012-02-25 Chong Yidong <cyd@gnu.org>
13877
13878 Add custom groups for VC backends, for consistency with vc-bzr.
13879
13880 * vc/vc-arch.el (vc-arch):
13881 * vc/vc-cvs.el (vc-cvs):
13882 * vc/vc-git.el (vc-git):
13883 * vc/vc-hg.el (vc-hg):
13884 * vc/vc-mtn.el (vc-mtn):
13885 * vc/vc-rcs.el (vc-rcs):
13886 * vc/vc-sccs.el (vc-sccs):
13887 * vc/vc-svn.el (vc-svn): New customization group (Bug#10871).
13888 All relevant defcustoms reassigned.
13889
13890 2012-02-25 Chong Yidong <cyd@gnu.org>
13891
13892 * newcomment.el (comment-styles): Add autoload (Bug#10868).
13893
13894 * term/x-win.el (x-initialize-window-system): Reduce default for
13895 x-selection-timeout to 5 seconds (Bug#8869).
13896
13897 2012-02-24 Thierry Volpiatto <thierry.volpiatto@gmail.com>
13898
13899 * files.el (files-equal-p, file-subdir-of-p): New functions.
13900 (copy-directory): Error when trying to copy a directory on itself.
13901 Add missing copy-contents arg to tramp handler.
13902 * dired-aux.el (dired-copy-file-recursive): Same.
13903 (dired-create-files): Modify destination when source is equal to
13904 dest when copying files.
13905 Return also when dest is a subdir of source. (Bug#10489)
13906
13907 2012-02-24 Michael Albinus <michael.albinus@gmx.de>
13908
13909 * net/ange-ftp.el (ange-ftp-parse-netrc): Suppress comment lines.
13910 (Bug#10874)
13911
13912 2012-02-23 Alan Mackenzie <acm@muc.de>
13913
13914 * emacs-lisp/easy-mmode.el (define-minor-mode): Add extra
13915 parameter "after-hook:" to allow the expansion to run code after
13916 the execution of the mode hooks.
13917
13918 * font-lock.el (font-lock-initial-fontify): New function extracted
13919 from font-lock-mode-internal.
13920
13921 * font-core.el (font-lock-mode): Call font-lock-initial-fontify in
13922 :after-hook.
13923
13924 2012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
13925
13926 * minibuffer.el: Make sure cycling is reset upon edit with icomplete.el.
13927 (completion--cache-all-sorted-completions): New function.
13928 (completion-all-sorted-completions): Use it.
13929 (completion--do-completion, minibuffer-force-complete):
13930 Use it to re-instate the flush hook.
13931
13932 * icomplete.el (icomplete-completions): Replace last fix with a better
13933 one (bug#10850).
13934
13935 2012-02-23 Dmitry Gutov <dgutov@yandex.ru>
13936
13937 * emacs-lisp/lisp.el (beginning-of-defun-raw): Don't call end-of-defun
13938 when it might call us back infinitely (bug#10797).
13939
13940 2012-02-23 Glenn Morris <rgm@gnu.org>
13941
13942 * minibuffer.el (completion-category-overrides): Doc fix.
13943
13944 2012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
13945
13946 * minibuffer.el (completion-table-with-context): Fix inf-loop.
13947 Reported by Aaron S. Hawley <aaron.s.hawley@gmail.com>.
13948
13949 2012-02-23 Glenn Morris <rgm@gnu.org>
13950
13951 * emacs-lisp/authors.el (authors-aliases, authors-fixed-case)
13952 (authors-obsolete-files-regexps, authors-ignored-files)
13953 (authors-ambiguous-files, authors-renamed-files-alist):
13954 Add more entries.
13955
13956 2012-02-23 Juri Linkov <juri@jurta.org>
13957
13958 * isearch.el (isearch-occur): Sync interactive spec with occur's
13959 new feature in `occur-read-primary-args'. Doc fix. (Bug#10705)
13960
13961 * replace.el (occur-menu-map): Add menu item for `occur-edit-mode'.
13962
13963 2012-02-22 Juri Linkov <juri@jurta.org>
13964
13965 * international/mule-cmds.el (read-char-by-name): Use \` and \'.
13966 (ucs-insert): Doc fix. Check for hex digits in the string.
13967 Don't display `nil' in the error message. (Bug#10857)
13968
13969 2012-02-22 Alan Mackenzie <acm@muc.de>
13970
13971 * progmodes/cc-mode.el: Revert change #2012-02-06T22:08:41Z!larsi@gnus.org from 2012-02-06.
13972
13973 2012-02-22 Glenn Morris <rgm@gnu.org>
13974
13975 * ffap.el (ffap-c-path):
13976 * man.el (Man-header-file-path): Handle multiarch. (Bug#10702)
13977
13978 2012-02-22 Chong Yidong <cyd@gnu.org>
13979
13980 * custom.el (load-theme): Doc fix.
13981
13982 2012-02-22 Glenn Morris <rgm@gnu.org>
13983
13984 * dired-x.el (dired-guess-shell-alist-default):
13985 Remove escape sequences from nroff output. (Bug#172)
13986
13987 2012-02-21 Glenn Morris <rgm@gnu.org>
13988
13989 * vc/emerge.el (emerge-defvar-local):
13990 Set `permanent-local' property rather than unused `preserved'.
13991
13992 * textmodes/picture.el (picture-delete-char): New alias.
13993 (picture-mode-map): Use it. (Bug#10860)
13994 (picture-mode): Doc fix.
13995
13996 2012-02-21 Juanma Barranquero <lekktu@gmail.com>
13997
13998 * newcomment.el (uncomment-region-default): Remove unused binding.
13999
14000 2012-02-21 Glenn Morris <rgm@gnu.org>
14001
14002 * textmodes/picture.el (picture-motion, picture-motion-reverse)
14003 (picture-self-insert, picture-tab-chars): Doc fix.
14004 (picture-mode-map): Fix C-a, C-e.
14005
14006 2012-02-20 Glenn Morris <rgm@gnu.org>
14007
14008 * emacs-lisp/authors.el (authors-aliases): Add another entry.
14009
14010 2012-02-20 Leo Liu <sdl.web@gmail.com>
14011
14012 * icomplete.el (icomplete-completions): Check FROM arg before
14013 passing to substring (Bug#10850).
14014
14015 2012-02-19 Chong Yidong <cyd@gnu.org>
14016
14017 * comint.el: Require ansi-color.
14018 (comint-output-filter-functions): Add ansi-color-process-output.
14019
14020 * ansi-color.el: Don't set comint-output-filter-functions; it is
14021 now in the initial value defined in comint.el.
14022 (ansi-color-apply-face-function): New variable.
14023 (ansi-color-apply-on-region): Use it.
14024 (ansi-color-apply-overlay-face): New function.
14025
14026 * shell.el (shell): No need to require ansi-color.
14027 (shell-mode): Use ansi-color-apply-face-function to highlight
14028 color escapes using font-lock-face property (Bug#10835).
14029
14030 2012-02-19 Chong Yidong <cyd@gnu.org>
14031
14032 * vc/ediff-init.el (ediff-strip-mode-line-format): Handle non-list
14033 mode-line formats (Bug#10839).
14034
14035 2012-02-18 Glenn Morris <rgm@gnu.org>
14036
14037 * mail/rmail.el (rmail-dont-reply-to-names): Mark as obsolete.
14038
14039 * mail/undigest.el (unforward-rmail-message): Doc fix.
14040
14041 * saveplace.el (save-place-ignore-files-regexp): Add :version.
14042
14043 2012-02-18 Eli Zaretskii <eliz@gnu.org>
14044
14045 * international/characters.el (script-list): Sync with the latest
14046 Unicode Character Database.
14047
14048 2012-02-18 Andreas Schwab <schwab@linux-m68k.org>
14049
14050 * international/titdic-cnv.el: Remove duplicate coding tag.
14051 * language/cham.el: Likewise.
14052 * language/tai-viet.el: Likewise.
14053
14054 2012-02-18 Glenn Morris <rgm@gnu.org>
14055
14056 * calendar/cal-menu.el (cal-menu-diary-menu, cal-menu-goto-menu):
14057 * calendar/calendar.el (diary-file, diary-bahai-entry-symbol)
14058 (calendar-bahai-all-holidays-flag, calendar-other-dates):
14059 * calendar/diary-lib.el (diary-abbreviated-year-flag):
14060 * calendar/holidays.el (holiday-bahai-holidays)
14061 (calendar-holidays, list-holidays):
14062 Use utf-8 Bahá'í in doc-strings, menus, etc.
14063
14064 2012-02-17 Tassilo Horn <tassilo@member.fsf.org>
14065
14066 * saveplace.el (save-place-ignore-files-regexp): New variable
14067 allowing for excluding files from saving their location of point.
14068 The default value matches the temporary commit message editing
14069 files from Git, SVN, Bazaar, and Mercurial.
14070 (save-place-to-alist): Use it.
14071
14072 2012-02-17 Lawrence Mitchell <wence@gmx.li>
14073 Stefan Monnier <monnier@iro.umontreal.ca>
14074
14075 * newcomment.el (uncomment-region-default): Don't leave extra space
14076 when an arg is provided (bug#8150).
14077
14078 2012-02-17 Teodor Zlatanov <tzz@lifelogs.com>
14079
14080 * net/gnutls.el (gnutls-trustfiles): Fix Cygwin bundle location.
14081
14082 2012-02-17 Glenn Morris <rgm@gnu.org>
14083
14084 * net/socks.el: Require network-stream. (Bug#10599)
14085
14086 2012-02-17 Kenichi Handa <handa@m17n.org>
14087
14088 * international/charprop.el:
14089 * international/uni-name.el:
14090 * international/uni-old-name.el:
14091 * international/uni-comment.el: Regenerate.
14092
14093 2012-02-16 Glenn Morris <rgm@gnu.org>
14094
14095 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits):
14096 Interactively in calendar buffer, give an error if not on a date.
14097
14098 2012-02-15 Glenn Morris <rgm@gnu.org>
14099
14100 * shell.el (shell-delimiter-argument-list):
14101 Revert 2011-02-17 change. (Bug#8027)
14102
14103 2012-02-15 Chong Yidong <cyd@gnu.org>
14104
14105 * minibuffer.el (completion-at-point-functions): Doc fix.
14106
14107 * custom.el (defcustom): Doc fix; note use of defvar.
14108
14109 2012-02-15 Glenn Morris <rgm@gnu.org>
14110
14111 * mail/smtpmail.el (smtpmail-smtp-user, smtpmail-stream-type):
14112 Doc fixes.
14113
14114 2012-02-14 Glenn Morris <rgm@gnu.org>
14115
14116 * mail/smtpmail.el (smtpmail-query-smtp-server): Give it a doc.
14117
14118 2012-02-14 Lars Ingebrigtsen <larsi@gnus.org>
14119
14120 * mail/smtpmail.el (smtpmail-query-smtp-server): Fix typo in the
14121 way the ports list is computed.
14122 (smtpmail-query-smtp-server): Prompt the user for a port number if
14123 we can't connect to any of the standard ports (bug#10810).
14124
14125 2012-02-14 Teodor Zlatanov <tzz@lifelogs.com>
14126
14127 * net/gnutls.el (gnutls-trustfiles): Add Cygwin location.
14128
14129 2012-02-13 Glenn Morris <rgm@gnu.org>
14130
14131 * minibuffer.el (read-file-name): Doc fix. (Bug#10798)
14132
14133 2012-02-13 Teodor Zlatanov <tzz@lifelogs.com>
14134
14135 * net/gnutls.el (gnutls-trustfiles): New variable.
14136 (gnutls-negotiate): Use it.
14137
14138 2012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
14139
14140 * simple.el (mail-user-agent): Mention that `gnus-user-agent' only
14141 does its stuff if Gnus is running.
14142
14143 2012-02-13 Alan Mackenzie <acm@muc.de>
14144
14145 Fix a loop in c-set-fl-decl-start.
14146
14147 * progmodes/cc-engine.el (c-set-fl-decl-start): Add a check that
14148 c-backward-syntactic-ws actually moves backwards.
14149
14150 2012-02-13 Leo Liu <sdl.web@gmail.com>
14151
14152 * net/rcirc.el (rcirc-markup-attributes): Move point to the
14153 beginning so that all \C-o chars are removed.
14154
14155 2012-02-12 Teodor Zlatanov <tzz@lifelogs.com>
14156
14157 * net/gnutls.el (gnutls-algorithm-priority): Add missing :group tag.
14158
14159 2012-02-12 Alan Mackenzie <acm@muc.de>
14160
14161 Fix infinite loop with long macros.
14162 * progmodes/cc-engine.el (c-state-safe-place): Handle macros properly.
14163
14164 2012-02-12 Chong Yidong <cyd@gnu.org>
14165
14166 * window.el (display-buffer): Doc fix (Bug#10785).
14167
14168 2012-02-12 Glenn Morris <rgm@gnu.org>
14169
14170 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
14171 (x-disown-selection-internal, x-get-selection-internal):
14172 Sync docs with the xselect.c versions.
14173
14174 * allout-widgets.el: Add missing license notice.
14175
14176 2012-02-11 Glenn Morris <rgm@gnu.org>
14177
14178 * select.el (x-get-selection-internal, x-own-selection-internal)
14179 (x-disown-selection-internal):
14180 * x-dnd.el (x-get-selection-internal): Update declarations.
14181
14182 * vc/log-view.el (vc-diff-internal): Remove unneeded declaration.
14183
14184 * window.el (window-sides-slots):
14185 * tool-bar.el (tool-bar-position):
14186 * term/xterm.el (xterm-extra-capabilities):
14187 * ses.el (ses-self-reference-early-detection):
14188 * progmodes/verilog-mode.el (verilog-auto-declare-nettype)
14189 (verilog-auto-wire-type)
14190 (verilog-auto-delete-trailing-whitespace)
14191 (verilog-auto-reset-blocking-in-non, verilog-auto-inst-sort)
14192 (verilog-auto-tieoff-declaration):
14193 * progmodes/sql.el (sql-login-hook, sql-ansi-statement-starters)
14194 (sql-oracle-statement-starters, sql-oracle-scan-on):
14195 * progmodes/prolog.el (prolog-align-comments-flag)
14196 (prolog-indent-mline-comments-flag, prolog-object-end-to-0-flag)
14197 (prolog-left-indent-regexp, prolog-paren-indent-p)
14198 (prolog-paren-indent, prolog-parse-mode, prolog-keywords)
14199 (prolog-types, prolog-mode-specificators)
14200 (prolog-determinism-specificators, prolog-directives)
14201 (prolog-electric-newline-flag, prolog-hungry-delete-key-flag)
14202 (prolog-electric-dot-flag)
14203 (prolog-electric-dot-full-predicate-template)
14204 (prolog-electric-underscore-flag, prolog-electric-tab-flag)
14205 (prolog-electric-if-then-else-flag, prolog-electric-colon-flag)
14206 (prolog-electric-dash-flag, prolog-old-sicstus-keys-flag)
14207 (prolog-program-switches, prolog-prompt-regexp)
14208 (prolog-debug-on-string, prolog-debug-off-string)
14209 (prolog-trace-on-string, prolog-trace-off-string)
14210 (prolog-zip-on-string, prolog-zip-off-string)
14211 (prolog-use-standard-consult-compile-method-flag)
14212 (prolog-use-prolog-tokenizer-flag, prolog-imenu-flag)
14213 (prolog-imenu-max-lines, prolog-info-predicate-index)
14214 (prolog-underscore-wordchar-flag, prolog-use-sicstus-sd)
14215 (prolog-char-quote-workaround):
14216 * progmodes/cc-vars.el (c-defun-tactic):
14217 * net/tramp.el (tramp-encoding-command-interactive)
14218 (tramp-local-end-of-line):
14219 * net/soap-client.el (soap-client):
14220 * net/netrc.el (netrc-file):
14221 * net/gnutls.el (gnutls):
14222 * minibuffer.el (completion-category-overrides)
14223 (completion-cycle-threshold)
14224 (completion-pcm-complete-word-inserts-delimiters):
14225 * man.el (Man-name-local-regexp):
14226 * mail/feedmail.el (feedmail-display-full-frame):
14227 * international/characters.el (glyphless-char-display-control):
14228 * eshell/em-ls.el (eshell-ls-date-format):
14229 * emacs-lisp/cl-indent.el (lisp-lambda-list-keyword-alignment)
14230 (lisp-lambda-list-keyword-parameter-indentation)
14231 (lisp-lambda-list-keyword-parameter-alignment):
14232 * doc-view.el (doc-view-image-width, doc-view-unoconv-program):
14233 * dired-x.el (dired-omit-verbose):
14234 * cus-theme.el (custom-theme-allow-multiple-selections):
14235 * calc/calc.el (calc-highlight-selections-with-faces)
14236 (calc-lu-field-reference, calc-lu-power-reference)
14237 (calc-note-threshold):
14238 * battery.el (battery-mode-line-limit):
14239 * arc-mode.el (archive-7z-extract, archive-7z-expunge)
14240 (archive-7z-update):
14241 * allout.el (allout-prefixed-keybindings)
14242 (allout-unprefixed-keybindings)
14243 (allout-inhibit-auto-fill-on-headline)
14244 (allout-flattened-numbering-abbreviation):
14245 * allout-widgets.el (allout-widgets-auto-activation)
14246 (allout-widgets-icons-dark-subdir)
14247 (allout-widgets-icons-light-subdir, allout-widgets-icon-types)
14248 (allout-widgets-theme-dark-background)
14249 (allout-widgets-theme-light-background)
14250 (allout-widgets-item-image-properties-emacs)
14251 (allout-widgets-item-image-properties-xemacs)
14252 (allout-widgets-run-unit-tests-on-load)
14253 (allout-widgets-time-decoration-activity)
14254 (allout-widgets-hook-error-post-time)
14255 (allout-widgets-track-decoration):
14256 Add missing :version tags to new defcustoms and defgroups.
14257
14258 * progmodes/sql.el (sql-ansi-statement-starters)
14259 (sql-oracle-statement-starters): Add custom type.
14260
14261 * progmodes/prolog.el: Remove leading '*' from defcustom docs.
14262 (prolog-system-version): Give it a type.
14263
14264 2012-02-11 Eli Zaretskii <eliz@gnu.org>
14265
14266 * term/pc-win.el (x-select-text, x-selection-owner-p)
14267 (x-own-selection-internal, x-disown-selection-internal)
14268 (x-get-selection-internal): Sync doc strings and argument lists
14269 with xselect.c, common-win.el and x-win.el. (Bug#10783)
14270
14271 2012-02-11 Leo Liu <sdl.web@gmail.com>
14272
14273 * progmodes/python.el (python-end-of-statement): Fix infinite
14274 loop. (Bug#10788)
14275
14276 2012-02-10 Glenn Morris <rgm@gnu.org>
14277
14278 * international/mule-cmds.el (unify-8859-on-encoding-mode)
14279 (unify-8859-on-decoding-mode): Properly mark as obsolete.
14280
14281 2012-02-10 Lars Ingebrigtsen <larsi@gnus.org>
14282
14283 * mail/emacsbug.el (report-emacs-bug-hook): Query the user first
14284 about SMTP before checking the From header.
14285
14286 * mail/sendmail.el (sendmail-query-user-about-smtp): Refactor out
14287 into own function for reuse by emacsbug.el.
14288
14289 2012-02-10 Leo Liu <sdl.web@gmail.com>
14290
14291 * subr.el (condition-case-unless-debug): Rename from
14292 condition-case-no-debug. All callers changed.
14293 (with-demoted-errors): Fix caller.
14294
14295 * vc/diff-mode.el (diff-auto-refine-mode, diff-hunk):
14296 * nxml/rng-valid.el (rng-do-some-validation):
14297 * emacs-lisp/package.el (package-refresh-contents)
14298 (package-menu-execute):
14299 * desktop.el (desktop-create-buffer):
14300 * font-lock.el (lisp-font-lock-keywords-2): Caller changed.
14301
14302 2012-02-10 Glenn Morris <rgm@gnu.org>
14303
14304 * textmodes/bibtex.el:
14305 Add missing :version tags for new/changed defcustoms.
14306
14307 * files.el (remote-file-name-inhibit-cache): Doc fixes.
14308
14309 2012-02-09 Lars Ingebrigtsen <larsi@rusty>
14310
14311 * mail/smtpmail.el (smtpmail-user-mail-address): New function.
14312 (smtpmail-via-smtp): Use it, or fall back on the From address.
14313 (smtpmail-send-it): Ditto.
14314
14315 2012-02-09 Stefan Monnier <monnier@iro.umontreal.ca>
14316
14317 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
14318 Don't fallback on byte-compile-defvar. Optimize (defvar foo) away.
14319 (byte-compile-tmp-var): New const.
14320 (byte-compile-defvar): Use it to minimize .elc size.
14321 Just use `defvar' rather than simulate it (bug#10761).
14322
14323 2012-02-09 Glenn Morris <rgm@gnu.org>
14324
14325 * files.el (rename-uniquely): Doc fix. (Bug#3806)
14326
14327 * progmodes/cc-guess.el (c-guess-offset-threshold, c-guess-region-max):
14328 Add :version tags.
14329
14330 * progmodes/compile.el (compilation-error-screen-columns)
14331 (compilation-first-column, compilation-filter-start): Doc fixes.
14332
14333 * vc/log-view.el (log-view-toggle-entry-display):
14334 * vc/vc.el (vc-merge, vc-pull): Doc fixes.
14335
14336 * mail/emacsbug.el (report-emacs-bug-can-use-osx-open)
14337 (report-emacs-bug-can-use-xdg-email):
14338 (report-emacs-bug-insert-to-mailer): Doc fixes.
14339 (report-emacs-bug): Message fix.
14340
14341 * net/browse-url.el (browse-url-can-use-xdg-open)
14342 (browse-url-xdg-open): Doc fixes.
14343
14344 * electric.el (electric-indent-mode, electric-pair-mode)
14345 (electric-layout-rules, electric-layout-mode): Doc fixes.
14346 (electric-pair-pairs, electric-pair-skip-self): Add :version tags.
14347
14348 2012-02-08 Martin Rudalics <rudalics@gmx.at>
14349
14350 * server.el (server-unselect-display): Don't inadvertently kill
14351 the current buffer. (Bug#10729)
14352
14353 2012-02-08 Glenn Morris <rgm@gnu.org>
14354
14355 * progmodes/sql.el (sql-port, sql-connection-alist, sql-list-all)
14356 (sql-list-table): Doc fixes.
14357
14358 * image-mode.el (image-transform-minor-mode-map, image-transform-mode):
14359 Comment out (does nothing).
14360
14361 * completion.el (dynamic-completion-mode):
14362 * dirtrack.el (dirtrack-debug-mode):
14363 * electric.el (electric-layout-mode):
14364 * epa-mail.el (epa-mail-mode, epa-global-mail-mode):
14365 * face-remap.el (text-scale-mode, buffer-face-mode):
14366 * iimage.el (iimage-mode):
14367 * image-mode.el (image-transform-mode):
14368 * minibuffer.el (completion-in-region-mode):
14369 * scroll-lock.el (scroll-lock-mode):
14370 * simple.el (next-error-follow-minor-mode):
14371 * tar-mode.el (tar-subfile-mode):
14372 * tooltip.el (tooltip-mode):
14373 * vcursor.el (vcursor-use-vcursor-map):
14374 * wid-browse.el (widget-minor-mode):
14375 * emulation/tpu-edt.el (tpu-edt-mode):
14376 * emulation/tpu-extras.el (tpu-cursor-free-mode):
14377 * international/iso-ascii.el (iso-ascii-mode):
14378 * language/thai-util.el (thai-word-mode):
14379 * mail/supercite.el (sc-minor-mode):
14380 * net/goto-addr.el (goto-address-mode):
14381 * net/rcirc.el (rcirc-multiline-minor-mode, rcirc-track-minor-mode):
14382 * progmodes/cwarn.el (cwarn-mode):
14383 * progmodes/flymake.el (flymake-mode):
14384 * progmodes/glasses.el (glasses-mode):
14385 * progmodes/hideshow.el (hs-minor-mode):
14386 * progmodes/pascal.el (pascal-outline-mode):
14387 * textmodes/enriched.el (enriched-mode):
14388 * vc/smerge-mode.el (smerge-mode):
14389 Doc fixes (minor mode argument).
14390
14391 2012-02-07 Eli Zaretskii <eliz@gnu.org>
14392
14393 * ls-lisp.el (ls-lisp-sanitize): New function.
14394 (ls-lisp-insert-directory): Use it to fix or remove any elements
14395 in file-alist with missing attributes. (Bug#4673)
14396
14397 2012-02-07 Alan Mackenzie <acm@muc.de>
14398
14399 Fix spurious recognition of c-in-knr-argdecl.
14400
14401 * progmodes/cc-engine.el (c-in-knr-argdecl): Check for '=' in a
14402 putative K&R region.
14403
14404 2012-02-07 Alan Mackenzie <acm@muc.de>
14405
14406 * progmodes/cc-engine.el (c-forward-objc-directive):
14407 Prevent looping in "#pragma mark @implementation".
14408
14409 2012-02-07 Michael Albinus <michael.albinus@gmx.de>
14410
14411 * notifications.el (notifications-on-closed-signal): Make `reason'
14412 optional. (Bug#10744)
14413
14414 2012-02-07 Glenn Morris <rgm@gnu.org>
14415
14416 * emacs-lisp/easy-mmode.el (define-minor-mode):
14417 Doc fixes for the macro and the mode it defines.
14418
14419 * image.el (imagemagick-types-inhibit): Doc fix.
14420
14421 * cus-start.el (imagemagick-render-type): Add it.
14422
14423 2012-02-06 Lars Ingebrigtsen <larsi@gnus.org>
14424
14425 * progmodes/cc-mode.el (c-standard-font-lock-fontify-region-function):
14426 Set the default at load time, too, so that `font-lock-fontify-buffer'
14427 can be called without setting up the entire mode first. This fixes
14428 a bug in `mm-inline-text' with C MIME parts.
14429
14430 2012-02-06 Chong Yidong <cyd@gnu.org>
14431
14432 * simple.el (list-processes--refresh): Delete exited processes
14433 (Bug#8094).
14434
14435 * comint.el (comint-next-prompt): next-single-char-property-change
14436 and prev-single-char-property-change never return nil (Bug#8657).
14437
14438 * custom.el (defcustom): Doc fix (Bug#9711).
14439
14440 2012-02-05 Chong Yidong <cyd@gnu.org>
14441
14442 * cus-edit.el (custom-variable-reset-backup): Quote the value
14443 before storing it in the customized-value property (Bug#6712).
14444 (custom-display): Add a customization type tag.
14445 (custom-buffer-create-internal): Improve tooltip message.
14446
14447 * wid-edit.el (widget-field-value-get): New optional arg to
14448 suppress trailing whitespace truncation.
14449 (character): Use it (Bug#2689).
14450
14451 2012-02-05 Andreas Schwab <schwab@linux-m68k.org>
14452
14453 * progmodes/gud.el (gud-pv): Use pv instead of pv1.
14454 * progmodes/gdb-mi.el (gud-pp): Use pp instead of pp1.
14455
14456 2012-02-05 Chong Yidong <cyd@gnu.org>
14457
14458 * cus-edit.el (custom-variable-value-create): For mismatched
14459 types, show the current value (Bug#7600).
14460
14461 * custom.el (defcustom): Doc fix.
14462
14463 2012-02-05 Glenn Morris <rgm@gnu.org>
14464
14465 * font-lock.el (lisp-font-lock-keywords-2): Add with-wrapper-hook.
14466
14467 2012-02-05 Juanma Barranquero <lekktu@gmail.com>
14468
14469 * emacs-lisp/pp.el (pp-to-string): Use `with-temp-buffer'.
14470 (pp-buffer): Use `ignore-errors', `looking-at-p'.
14471 (pp-last-sexp): Use `looking-at-p'.
14472
14473 2012-02-04 Glenn Morris <rgm@gnu.org>
14474
14475 * files.el (revert-buffer):
14476 Doc fix (mention revert-buffer-in-progress-p).
14477
14478 * emacs-lisp/ert-x.el (ert-simulate-command):
14479 Check deferred-action-list (which is obsolete) is bound.
14480
14481 * subr.el (with-wrapper-hook): Doc fixes.
14482
14483 * simple.el (filter-buffer-substring-functions)
14484 (buffer-substring-filters, filter-buffer-substring): Doc fixes.
14485
14486 2012-02-04 Lars Ljung <lars@matholka.se> (tiny change)
14487
14488 * eshell/esh-ext.el (eshell-windows-shell-file): Match "cmdproxy"
14489 anywhere in shell-file-name, not just at the beginning. (Bug#10523)
14490
14491 2012-02-04 Leo Liu <sdl.web@gmail.com>
14492
14493 * emacs-lisp/smie.el: Fix dead link (Bug#10711).
14494
14495 2012-02-04 Glenn Morris <rgm@gnu.org>
14496
14497 * image.el (image-extension-data): Add obsolete alias.
14498
14499 * isearch.el (isearch-update): Doc fix.
14500
14501 * facemenu.el (list-colors-display): Doc fix (minor rephrasing).
14502
14503 * ido.el (ido-find-file): Doc fix (ido-toggle-vc not on any key).
14504
14505 2012-02-03 Glenn Morris <rgm@gnu.org>
14506
14507 * image.el (image-animated-p): Doc fix. Use image-animated-types.
14508 (image-animate-timeout): Doc fix.
14509
14510 * image-mode.el (image-animate-loop, image-toggle-animation): Doc fixes.
14511
14512 2012-02-02 Glenn Morris <rgm@gnu.org>
14513
14514 * server.el (server-auth-dir): Doc fix.
14515 (server-eval-at): Doc fix. Give an explicit error if !server-use-tcp.
14516
14517 * subr.el (run-mode-hooks): Doc fix.
14518
14519 2012-02-02 Juri Linkov <juri@jurta.org>
14520
14521 * image-mode.el (image-toggle-display-image): Remove tautological
14522 `major-mode' from the `derived-mode-p' test.
14523
14524 2012-02-02 Kenichi Handa <handa@m17n.org>
14525
14526 * composite.el (compose-region): Cancel previous change.
14527
14528 2012-02-02 Kenichi Handa <handa@m17n.org>
14529
14530 * composite.el (compose-region, compose-string): Signal error for
14531 a null string component (Bug#6988).
14532
14533 2012-02-01 Chong Yidong <cyd@gnu.org>
14534
14535 * view.el (view-buffer-other-window, view-buffer-other-frame):
14536 Handle special modes like view-buffer (Bug#10650).
14537 (view-buffer): Simplify.
14538
14539 * frame.el (set-frame-font): Tweak meaning of third argument.
14540
14541 * dynamic-setting.el (font-setting-change-default-font):
14542 Use set-frame-font (Bug#9982).
14543
14544 2012-02-01 Glenn Morris <rgm@gnu.org>
14545
14546 * progmodes/compile.el (compilation-internal-error-properties):
14547 Respect compilation-first-column in the "*compilation*" buffer.
14548
14549 * emacs-lisp/easy-mmode.el (define-minor-mode):
14550 Relax :variable's test for a named function.
14551
14552 2012-01-31 Alan Mackenzie <acm@muc.de>
14553
14554 * progmodes/cc-engine.el (c-guess-basic-syntax): CASE 5B.1: Fix an
14555 off by one error.
14556
14557 2012-01-31 Chong Yidong <cyd@gnu.org>
14558
14559 * frame.el (set-frame-font): New arg ALL-FRAMES.
14560
14561 * menu-bar.el (menu-set-font): Use set-frame-font.
14562
14563 * faces.el (face-spec-reset-face): Don't apply unspecified
14564 attribute values to the default face.
14565
14566 2012-01-31 Juanma Barranquero <lekktu@gmail.com>
14567
14568 * progmodes/cwarn.el (cwarn): Remove dead link.
14569 (cwarn-configuration, cwarn-verbose, cwarn-mode-text, cwarn-load-hook):
14570 Remove * from defcustom docstrings.
14571 (turn-on-cwarn-mode): Make obsolete.
14572 (c-at-toplevel-p): Remove compatibility code for Emacs 20.3 and older.
14573 (turn-on-cwarn-mode-if-enabled): Call `cwarn-mode'.
14574
14575 2012-01-31 Glenn Morris <rgm@gnu.org>
14576
14577 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
14578 Fix :variable handling of mode a symbol not equal to modefun.
14579 Allow named functions to be used as the cdr of :variable.
14580
14581 2012-01-30 Glenn Morris <rgm@gnu.org>
14582
14583 * emacs-lisp/authors.el (authors-fixed-entries):
14584 Remove reference to deleted file rnewspost.el.
14585
14586 2012-01-29 Juanma Barranquero <lekktu@gmail.com>
14587
14588 * window.el (window-with-parameter): Remove unused variable `windows'.
14589 (window--side-check): Remove unused variable `code'.
14590 (window--resize-siblings): Remove unused variable `first'.
14591 (adjust-window-trailing-edge): Remove unused variable `failed'.
14592 (window-deletable-p, window--delete): Remove unused variable `buffer'.
14593 Use `let', not `let*'.
14594 (balance-windows-2): Remove unused variable `found'.
14595 (window--state-put-2): Remove unused variable `splits'.
14596 (window-state-put): Remove unused variable `selected'.
14597 (same-window-p): Use `string-match-p'.
14598 (display-buffer-assq-regexp): Remove unused variable `value'.
14599 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
14600 Mark argument ALIST as ignored.
14601 (pop-to-buffer): Remove unused variable `old-window'.
14602
14603 2012-01-29 Eli Zaretskii <eliz@gnu.org>
14604
14605 * jka-cmpr-hook.el (jka-compr-compression-info-list): Support .lz
14606 and .lzma compressed files.
14607
14608 2012-01-29 Chong Yidong <cyd@gnu.org>
14609
14610 * frame.el (window-system-default-frame-alist): Doc fix.
14611
14612 * dynamic-setting.el (font-setting-change-default-font): Don't
14613 change the default face if SET-FONT argument is non-nil (Bug#9982).
14614
14615 2012-01-29 Samuel Bronson <naesten@gmail.com>
14616
14617 * custom.el (defcustom): Add doc link to Lisp manual (Bug#10635).
14618
14619 2012-01-29 Syver Enstad <syver.enstad@cisco.com> (tiny change)
14620
14621 * progmodes/gud.el (pdb): Give pdb full paths, to allow setting
14622 breakpoints in files outside current directory (Bug#6098).
14623
14624 2012-01-29 Chong Yidong <cyd@gnu.org>
14625
14626 * progmodes/python.el: Require ansi-color at top-level.
14627
14628 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-abbrev-table):
14629 Define and use in Emacs Lisp mode (Bug#9360).
14630 (lisp-mode-abbrev-table): Add doc.
14631 (lisp-mode-variables): Don't set local-abbrev-table.
14632 (lisp-interaction-mode): Use emacs-lisp-mode-abbrev-table.
14633
14634 2012-01-28 Roland Winkler <winkler@gnu.org>
14635
14636 * textmodes/bibtex.el (bibtex-vec-incr): Fix docstring.
14637
14638 2012-01-28 Roland Winkler <winkler@gnu.org>
14639
14640 * textmodes/bibtex.el (bibtex-entry-alist): New function.
14641 (bibtex-set-dialect): Use it. Either set global values of
14642 dialect-dependent variables or bind these variables buffer-locally
14643 (Bug#10254).
14644 (bibtex-mode): Call bibtex-set-dialect via
14645 hack-local-variables-hook.
14646 (bibtex-dialect): Update docstring.
14647 Add safe-local-variable predicate.
14648 (bibtex-entry-alist, bibtex-field-alist): Initialize via
14649 bibtex-set-dialect.
14650 (bibtex-mode-map): Define menu for each dialect.
14651 (bibtex-entry): Fix docstring.
14652
14653 2012-01-28 Chong Yidong <cyd@gnu.org>
14654
14655 * eshell/esh-arg.el (eshell-quote-argument): New function.
14656
14657 * eshell/esh-ext.el (eshell-invoke-batch-file):
14658 * eshell/em-unix.el (eshell/cat, eshell/du): Use it to quote the
14659 first arg to eshell-parse-command (Bug#10523).
14660
14661 2012-01-28 Drew Adams <drew.adams@oracle.com>
14662
14663 * net/ange-ftp.el (ange-ftp-canonize-filename): Check, that
14664 `default-directory' is non-nil.
14665
14666 2012-01-28 Eli Zaretskii <eliz@gnu.org>
14667
14668 * mail/emacsbug.el (report-emacs-bug): Fill the potentially long
14669 line that displays system-configuration-options. (Bug#9924)
14670
14671 2012-01-28 Drew Adams <drew.adams@oracle.com>
14672
14673 * descr-text.el (describe-char): Show information about POS, in
14674 addition to information about the character at POS. Improve and
14675 update the doc string. Change "code point" to "code point in
14676 charset", to avoid confusion with the character's Unicode code
14677 point shown above that. (Bug#10129)
14678
14679 2012-01-28 Eli Zaretskii <eliz@gnu.org>
14680
14681 * descr-text.el (describe-char): Show the raw character, not only
14682 its display form at POS. Suggested by Kenichi Handa <handa@m17n.org>.
14683 See http://lists.gnu.org/archive/html/emacs-devel/2012-01/msg00760.html
14684 for the reasons.
14685
14686 2012-01-28 Phil Hagelberg <phil@hagelb.org>
14687
14688 * emacs-lisp/package.el (package-install):
14689 Run package-refresh-contents if there is no archive yet (Bug#9798).
14690
14691 2012-01-28 Chong Yidong <cyd@gnu.org>
14692
14693 * emacs-lisp/package.el (package-maybe-load-descriptor):
14694 New function, split from package-maybe-load-descriptor.
14695 (package-maybe-load-descriptor): Use it.
14696 (package-download-transaction): Fully load required packages
14697 inside the loop, so that `require' calls work (Bug#10593).
14698 (package-install): No need to call package-initialize now.
14699
14700 2012-01-28 Chong Yidong <cyd@gnu.org>
14701
14702 * simple.el (deactivate-mark): Doc fix (Bug#8614).
14703
14704 * tooltip.el (tooltip-mode): Doc fix.
14705 (tooltip-use-echo-area): Mark as obsolete (Bug#6595).
14706
14707 * frame.el (set-cursor-color): Doc fix (Bug#352).
14708
14709 * mail/rmail.el (rmail-start-mail): Add send-action again (Bug#10625).
14710 (rmail-mail-return): Switch to NEWBUF only if it is non-nil.
14711
14712 * cus-edit.el (custom-buffer-create-internal): Fix search button
14713 action (Bug#10542).
14714 (customize-unsaved, customize-saved): Doc fix (Bug#10541).
14715
14716 2012-01-27 Eduard Wiebe <usenet@pusto.de>
14717
14718 * dired.el (dired-mark-files-regexp):
14719 Include any subdirectory components. (Bug#10445)
14720
14721 2012-01-27 Mike Lamb <mrlamb@gmail.com> (tiny change)
14722
14723 * pcmpl-unix.el (pcmpl-ssh-known-hosts):
14724 Handle [host]:port syntax. (Bug#10533)
14725
14726 2012-01-27 Alex Harsanyi <harsanyi@mac.com>
14727
14728 * xml.el (xml-parse-tag): Fix parsing of comments (Bug#10405).
14729
14730 2012-01-26 Glenn Morris <rgm@gnu.org>
14731
14732 * dired-x.el (dired-bind-jump): Use ctl-x-map and ctl-x-4-map.
14733 * term.el (term-raw-escape-map): Use Control-X-prefix.
14734 * vc/vc-hooks.el (vc-prefix-map): Use ctl-x-map. (Bug#10566)
14735
14736 2012-01-25 Martin Rudalics <rudalics@gmx.at>
14737
14738 * window.el (window-state-get, window--state-get-1): Don't deal
14739 with fixed-sizeness of windows. Simplify code.
14740
14741 2012-01-25 Jérémy Compostella <jeremy.compostella@gmail.com>
14742
14743 * window.el (window--state-get-1, window--state-put-2):
14744 Don't save and restore the mark.
14745
14746 2012-01-25 Chong Yidong <cyd@gnu.org>
14747
14748 * custom.el (custom-variable-p): Doc fix.
14749
14750 2012-01-25 Glenn Morris <rgm@gnu.org>
14751
14752 * dired.el (dired-goto-file): Handle some of the more common
14753 characters that `ls -b' escapes. (Bug#10596)
14754
14755 * progmodes/compile.el (compilation-next-error-function):
14756 Respect compilation-first-column in the "*compilation*" buffer.
14757 * progmodes/grep.el (grep-first-column): New variable. (Bug#10594)
14758
14759 * vc/vc.el (vc-modify-change-comment): Scoping fix. (Bug#10513)
14760
14761 2012-01-24 Glenn Morris <rgm@gnu.org>
14762
14763 * pcmpl-gnu.el (pcomplete/tar): Handle " - ". (Bug#10457)
14764
14765 2012-01-24 Julien Danjou <julien@danjou.info>
14766
14767 * color.el (color-rgb-to-hsl): Fix value computing.
14768 (color-hue-to-rgb): New function.
14769 (color-hsl-to-rgb): New function.
14770 (color-clamp, color-saturate-hsl, color-saturate-name)
14771 (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
14772 (color-lighten-name, color-darken-hsl, color-darken-name): New function.
14773
14774 2012-01-24 Glenn Morris <rgm@gnu.org>
14775
14776 * vc/vc-rcs.el (vc-rcs-create-tag):
14777 * vc/vc-sccs.el (vc-sccs-create-tag):
14778 Fix argument spec to be what vc-create-tag expects. (Bug#10515)
14779
14780 2012-01-23 Mike Lamb <mrlamb@gmail.com> (tiny change)
14781
14782 * eshell/esh-util.el (eshell-read-hosts-file):
14783 Skip comment lines. (Bug#10549)
14784
14785 * eshell/em-unix.el (pcomplete/ssh): Remove. (Bug#10548)
14786
14787 2012-01-23 Juanma Barranquero <lekktu@gmail.com>
14788
14789 * subr.el (display-delayed-warnings): Doc fix.
14790 (collapse-delayed-warnings): New function to collapse identical
14791 adjacent warnings.
14792 (delayed-warnings-hook): Add it.
14793
14794 2012-01-22 Michael Albinus <michael.albinus@gmx.de>
14795
14796 * net/tramp.el (tramp-action-login): Set connection property "login-as".
14797
14798 * net/tramp-sh.el (tramp-methods): Add user spec to "pscp" and "psftp".
14799 (tramp-default-user-alist): Don't add "pscp".
14800 (tramp-do-copy-or-rename-file-out-of-band): Use connection
14801 property "login-as", if set. (Bug#10530)
14802
14803 2012-01-21 Michael Albinus <michael.albinus@gmx.de>
14804
14805 * net/tramp-sh.el (tramp-default-user-alist): Don't add "plink",
14806 "plink1" and "psftp". (Bug#10530)
14807
14808 2012-01-21 Kenichi Handa <handa@m17n.org>
14809
14810 * international/mule-cmds.el (prefer-coding-system): Show a
14811 warning message if the default value of file-name-coding-system
14812 was not changed.
14813
14814 2012-01-21 Jérémy Compostella <jeremy.compostella@gmail.com>
14815
14816 * windmove.el (windmove-reference-loc):
14817 Fix windmove-reference-loc miscalculation.
14818
14819 2012-01-21 Jay Belanger <jay.p.belanger@gmail.com>
14820
14821 * calc/calc-units.el (math-put-default-units): Don't use "1" as a
14822 default unit.
14823
14824 2012-01-21 Glenn Morris <rgm@gnu.org>
14825
14826 * international/mule.el (auto-coding-alist): Add .tbz.
14827
14828 * files.el (local-enable-local-variables): Doc fix.
14829 (inhibit-local-variables-regexps): Rename from
14830 inhibit-first-line-modes-regexps. Keep old name as obsolete alias.
14831 Doc fix. Add some extensions from auto-coding-alist.
14832 (inhibit-local-variables-suffixes):
14833 Rename from inhibit-first-line-modes-suffixes. Doc fix.
14834 (inhibit-local-variables-p):
14835 New function, extracted from set-auto-mode-1.
14836 (set-auto-mode): Doc fix. Respect inhibit-local-variables-regexps.
14837 (set-auto-mode-1): Doc fix. Use inhibit-local-variables-p.
14838 (hack-local-variables): Doc fix. Make the mode-only case
14839 respect enable-local-variables and friends.
14840 Respect inhibit-local-variables-regexps for file-locals, but
14841 not for directory-locals.
14842 (set-visited-file-name):
14843 Take account of inhibit-local-variables-regexps.
14844 Whether it applies may change as the file name is changed.
14845 * jka-cmpr-hook.el (jka-compr-install):
14846 * jka-compr.el (jka-compr-uninstall):
14847 Update for inhibit-first-line-modes-suffixes name change.
14848
14849 2012-01-20 Martin Rudalics <rudalics@gmx.at>
14850
14851 * help-macro.el (make-help-screen): Temporarily restore original
14852 binding for minor-mode-map-alist (Bug#10454).
14853
14854 2012-01-19 Julien Danjou <julien@danjou.info>
14855
14856 * color.el (color-name-to-rgb): Use the white color to find the max
14857 color component value and return correctly computed values.
14858 (color-name-to-rgb): Add missing float conversion for max value.
14859
14860 2012-01-19 Martin Rudalics <rudalics@gmx.at>
14861
14862 * window.el (window--state-get-1, window-state-get): Do not use
14863 special state value for window-persistent-parameters.
14864 Rename argument IGNORE to WRITABLE. Rewrite doc-string.
14865 (window--state-put-2): Reset all window parameters to nil before
14866 assigning values of persistent parameters.
14867
14868 2012-01-18 Alan Mackenzie <acm@muc.de>
14869
14870 Eliminate sluggishness and hangs in fontification of "semicolon
14871 deserts".
14872
14873 * progmodes/cc-engine.el (c-state-nonlit-pos-interval):
14874 Change value 10000 -> 3000.
14875 (c-state-safe-place): Reformulate so it doesn't stack up an
14876 infinite number of wrong entries in c-state-nonlit-pos-cache.
14877 (c-determine-limit-get-base, c-determine-limit): New functions to
14878 determine backward search limits disregarding literals.
14879 (c-find-decl-spots): Amend commenting.
14880 (c-cheap-inside-bracelist-p): New function which detects "={".
14881
14882 * progmodes/cc-fonts.el
14883 (c-make-font-lock-BO-decl-search-function): Give a limit to a
14884 backward search.
14885 (c-font-lock-declarations): Fix an occurrence of point being
14886 undefined. Check additionally for point being in a bracelist or
14887 near a macro invocation without a semicolon so as to avoid a
14888 fruitless time consuming search for a declarator. Give a more
14889 precise search limit for declarators using the new
14890 c-determine-limit.
14891
14892 2012-01-18 Glenn Morris <rgm@gnu.org>
14893
14894 * files.el (auto-mode-alist, inhibit-first-line-modes-regexps)
14895 (set-auto-mode): Doc fixes.
14896
14897 2012-01-17 Glenn Morris <rgm@gnu.org>
14898
14899 * isearch.el (search-nonincremental-instead): Fix doc typo.
14900
14901 * dired.el (dired-insert-directory): Handle newlines in directory name.
14902 (dired-build-subdir-alist): Unescape newlines in directory name.
14903
14904 2012-01-17 Michael Albinus <michael.albinus@gmx.de>
14905
14906 * net/tramp.el (tramp-local-end-of-line): New defcustom.
14907 (tramp-action-login, tramp-action-yesno, tramp-action-yn)
14908 (tramp-action-terminal): Use it. (Bug#10530)
14909
14910 2012-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
14911
14912 * minibuffer.el (completion--replace): Strip properties (bug#10062).
14913
14914 2012-01-16 Martin Rudalics <rudalics@gmx.at>
14915
14916 * window.el (window-state-ignored-parameters): Remove variable.
14917 (window--state-get-1): Rename argument MARKERS to IGNORE.
14918 Handle persistent window parameters. Make copy of clone-of
14919 parameter only if requested. (Bug#10348)
14920 (window--state-put-2): Install a window parameter only if it has
14921 a non-nil value or an existing parameter shall be overwritten.
14922
14923 2012-01-15 Michael Albinus <michael.albinus@gmx.de>
14924
14925 * net/tramp-sh.el (tramp-remote-path): Set tramp-autoload cookie.
14926
14927 2012-01-14 Eli Zaretskii <eliz@gnu.org>
14928
14929 * info.el (Info-toc-build): If the Info file has no "Up" pointer,
14930 don't pass the (nil) value of `upnode' to string-match.
14931
14932 2012-01-14 Chong Yidong <cyd@gnu.org>
14933
14934 * startup.el (command-line): Fix X resource class for cursorColor.
14935 Fix values recognized by the cursorBlink resource.
14936
14937 2012-01-14 Paul Eggert <eggert@cs.ucla.edu>
14938
14939 * epg.el (epg--make-temp-file): Avoid permission race condition
14940 when running on old Emacs versions (bug#10403).
14941
14942 2012-01-14 Glenn Morris <rgm@gnu.org>
14943
14944 * dired.el (dired-get-filename): Fix 'verbatim case of previous change.
14945
14946 2012-01-13 Alan Mackenzie <acm@muc.de>
14947
14948 Fix filling for when filladapt mode is enabled.
14949
14950 * progmodes/cc-cmds.el (c-fill-paragraph): In the invocation of
14951 c-mask-paragraph, pass in `fill-paragraph' rather than
14952 `fill-region-as-paragraph'. (This is a reversion of a previous
14953 change.)
14954 * progmodes/cc-mode.el (c-basic-common-init):
14955 Make fill-paragraph-handle-comment buffer local and set it to nil.
14956
14957 2012-01-13 Glenn Morris <rgm@gnu.org>
14958
14959 * dired.el (dired-switches-escape-p): New function.
14960 (dired-insert-directory): Use dired-switches-escape-p.
14961 (dired-get-filename): Undo "\ " quoting if needed. (Bug#10469)
14962
14963 * find-dired.el (find-ls-option): Doc fix. (Bug#10262)
14964
14965 2012-01-12 Glenn Morris <rgm@gnu.org>
14966
14967 * mail/sendmail.el (mail-mode): Update paragraph-separate for
14968 changes in adaptive-fill-regexp. (Bug#10276)
14969
14970 2012-01-11 Alan Mackenzie <acm@muc.de>
14971
14972 Fix Emacs bug #10463 - put `widen's around the critical spots.
14973
14974 * progmodes/cc-engine.el (c-in-literal, c-literal-limits): Put a
14975 widen around each invocation of c-state-pp-to-literal. Remove an
14976 unused let variable.
14977
14978 2012-01-11 Glenn Morris <rgm@gnu.org>
14979
14980 * dired-aux.el (dired-do-shell-command): Fix */? logic. (Bug#6561)
14981 Doc fix.
14982
14983 2012-01-10 Chong Yidong <cyd@gnu.org>
14984
14985 * net/network-stream.el (network-stream-open-starttls):
14986 Avoid emitting a confusing error message when the server gives a bad
14987 response to the capability command.
14988
14989 2012-01-10 Glenn Morris <rgm@gnu.org>
14990
14991 * mail/unrmail.el (unrmail): Tweak previous change.
14992
14993 2012-01-09 Chong Yidong <cyd@gnu.org>
14994
14995 * custom.el (custom-safe-themes): Use SHA-256 for hashing.
14996
14997 2012-01-08 Alan Mackenzie <acm@muc.de>
14998
14999 Optimize font locking in long enum definitions.
15000
15001 * progmodes/cc-fonts.el (c-font-lock-declarations): Add an extra
15002 arm to a cond form to handle enums.
15003 * progmodes/cc-langs.el (c-enums-contain-decls): New lang variable.
15004 * progmodes/cc-mode.el (c-font-lock-fontify-region): Correct a typo.
15005
15006 2012-01-07 Paul Eggert <eggert@cs.ucla.edu>
15007
15008 * files.el (move-file-to-trash): Preserve default file modes on error.
15009 (Bug#10401)
15010
15011 2012-01-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
15012
15013 * faces.el (set-face-attribute): Clarify the meaning of the nil
15014 frame (bug#10294).
15015
15016 * subr.el (with-selected-frame): Mention that the selected frame
15017 is restored (bug#9980).
15018
15019 * ibuffer.el (ibuffer-mode): List the bindings in the corrent map
15020 (bug#9759).
15021
15022 * mail/smtpmail.el (password-cache-add): Remove unused declaration.
15023 (password-read): Don't autoload unused function.
15024
15025 2012-01-07 Juanma Barranquero <lekktu@gmail.com>
15026
15027 * progmodes/which-func.el (which-func-mode): Turn into a
15028 non-interactive function and mark as obsolete (bug#10428).
15029
15030 2012-01-06 Chong Yidong <cyd@gnu.org>
15031
15032 * files.el (hack-dir-local-variables-non-file-buffer): Add doc.
15033 (hack-one-local-variable-eval-safep): Allow 0 arg for minor mode
15034 functions, along with 1 and -1.
15035
15036 2012-01-06 Eli Zaretskii <eliz@gnu.org>
15037
15038 * time.el (display-time-load-average)
15039 (display-time-default-load-average): Doc fixes. See the thread
15040 starting at
15041 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-01/msg00059.html
15042 for the details.
15043
15044 2012-01-06 Glenn Morris <rgm@gnu.org>
15045
15046 * mail/unrmail.el (unrmail): Give an explicit error if the input file
15047 has no messages. (Bug#10377)
15048
15049 * info.el (Info-mode-map): Bind e to end-of-buffer, rather
15050 than Info-edit. (Bug#10385)
15051
15052 * time.el (display-time-load-average, display-time-next-load-average):
15053 Doc fixes.
15054
15055 * emacs-lisp/bytecomp.el (byte-compile-file): Do not propagate a file
15056 local setting of buffer-read-only to the input buffer. (Bug#10419)
15057
15058 * calendar/calendar.el (calendar-mode):
15059 Locally set scroll-margin to 0. (Bug#10379)
15060
15061 2012-01-06 Ulrich Mueller <ulm@gentoo.org>
15062
15063 * play/doctor.el (doctor-death): Escape "," characters. (Bug#10370)
15064
15065 2012-01-05 Glenn Morris <rgm@gnu.org>
15066
15067 * eshell/em-unix.el (diff-no-select): Autoload it.
15068 (eshell/diff): Use diff-no-select. (Bug#10420)
15069
15070 2012-01-05 Chong Yidong <cyd@gnu.org>
15071
15072 * shell.el (shell-dynamic-complete-functions): Revert last change.
15073 (shell-command-completion-function): New function.
15074 (shell-completion-vars): Use it to implement
15075 shell-completion-execonly (Bug#10417).
15076
15077 * custom.el (enable-theme): Don't set custom-safe-themes.
15078
15079 * cus-theme.el (custom-theme-merge-theme):
15080 Ignore custom-enabled-themes and custom-safe-themes.
15081
15082 2012-01-05 Michael R. Mauger <mmaug@yahoo.com>
15083
15084 * progmodes/sql.el (sql-login-hook): Add hook to respond to the
15085 first prompt in `sql-interacive-mode'.
15086 (sql-mode-oracle-font-lock-keywords): Add CONNECT_BY_* builtin
15087 keywords.
15088 (sql-mode-mysql-font-lock-keywords): Add ELSEIF keyword.
15089 (sql-product-interactive): Bug fix: Set `sql-buffer' in
15090 context of original buffer. Invoke `sql-login-hook'.
15091
15092 2012-01-04 Eli Zaretskii <eliz@gnu.org>
15093
15094 * mail/rmail.el (rmail-font-lock-keywords): Accept non-ASCII
15095 letters in cite-prefix.
15096
15097 2012-01-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
15098
15099 * mail/smtpmail.el (smtpmail-stream-type): Mention the `ssl' value.
15100
15101 2012-01-03 Chong Yidong <cyd@gnu.org>
15102
15103 * shell.el (shell-dynamic-complete-functions):
15104 Put pcomplete-completions-at-point, so as to try
15105 comint-filename-completion first (Bug#10417).
15106
15107 2012-01-02 Richard Stallman <rms@gnu.org>
15108
15109 * battery.el (battery-status-function):
15110 Detect when to use battery-yeeloong-sysfs.
15111 (battery-echo-area-format): Add string for Yeeloong.
15112 (battery-linux-proc-apm, battery-linux-proc-acpi): Doc fixes.
15113 (battery-yeeloong-sysfs): New function.
15114
15115 2012-01-02 Chong Yidong <cyd@gnu.org>
15116
15117 * dirtrack.el (dirtrack-list): Eliminate unused third element.
15118 (dirtrack): Merge code for handling relative filenames in prompt
15119 from shell-dir-cookie-watcher.
15120 (dirtrack-debug-message): New arg to avoid excess format calls.
15121
15122 * shell.el (shell-dir-cookie-re): Variable deleted.
15123 (shell-dir-cookie-watcher): Function deleted.
15124 (shell-mode): Don't use shell-dir-cookie-re, since it is redundant
15125 with dirtrack-mode.
15126
15127 2012-01-01 Eli Zaretskii <eliz@gnu.org>
15128
15129 * term/w32-win.el (dynamic-library-alist) <gnutls>:
15130 Load libgnutls-28.dll, from GnuTLS version 3.x, in preference to
15131 libgnutls-26.dll.
15132
15133 2011-12-31 Andreas Schwab <schwab@linux-m68k.org>
15134
15135 * emacs-lisp/bytecomp.el (byte-compile-file): Fix indentation.
15136
15137 2011-12-31 Eli Zaretskii <eliz@gnu.org>
15138
15139 * mail/rmail.el (rmail-show-message-1): Decode any RFC2047 encoded
15140 headers of non-MIME messages, when rmail-enable-mime is non-nil.
15141
15142 2011-12-29 Michael Albinus <michael.albinus@gmx.de>
15143
15144 * net/tramp-sh.el (tramp-find-shell): Set "remote-shell" property
15145 also for alternative shells.
15146 (tramp-open-connection-setup-interactive-shell): Check, whether
15147 the shell is a busybox.
15148 (tramp-send-command): Don't suppress multiple prompts for
15149 busyboxes, it hurts.
15150
15151 2011-12-28 Chong Yidong <cyd@gnu.org>
15152
15153 * progmodes/gdb-mi.el (gdb-get-source-file-list)
15154 (gdb-get-source-file): Move mode line update to
15155 gdb-get-source-file (Bug#10087).
15156
15157 2011-12-25 Chong Yidong <cyd@gnu.org>
15158
15159 * progmodes/gud.el (gud-gdb-fetch-lines-filter): Just use
15160 gud-gdb-marker-filter without taking it as an argument.
15161 (gud-gdb-run-command-fetch-lines): Caller changed.
15162 (gud-gdb-completion-function): New variable.
15163 (gud-gdb-completion-at-point): Use it.
15164 (gud-gdb-completions-1): Split from gud-gdb-completions.
15165
15166 * progmodes/gdb-mi.el (gdb-input): Accept command and handler
15167 function as separate arguments.
15168 (gdb-init-1, gdb-non-stop-handler, gdb-check-target-async)
15169 (gdb-tooltip-print-1, gud-watch, gdb-speedbar-update)
15170 (gdb-var-list-children, gdb-var-set-format, gdb-var-delete-1)
15171 (gdb-var-delete-children, gdb-edit-value, gdb-var-update)
15172 (gdb-stopped, def-gdb-auto-update-trigger)
15173 (gdb-place-breakpoints, gdb-select-thread, gdb-select-frame)
15174 (gdb-get-changed-registers, gdb-get-main-selected-frame):
15175 Callers changed.
15176 (gud-gdbmi-completions): New function.
15177 (gdb): Use it for generating the completion table.
15178
15179 2011-12-24 Alan Mackenzie <acm@muc.de>
15180
15181 Introduce a mechanism to widen the region used in context font
15182 locking. Use this to protect declarations from losing their contexts.
15183
15184 * progmodes/cc-langs.el (c-before-font-lock-functions):
15185 Replace c-set-fl-decl-start with c-change-set-fl-decl-start (Renaming).
15186 (c-before-context-fontification-functions): New defvar, a list of
15187 functions to be run just before context (etc.) font locking.
15188
15189 * progmodes/cc-mode.el (c-extend-font-lock-region-for-macros):
15190 New, functionality extracted from
15191 c-neutralize-syntax-in-and-mark-CPP.
15192 (c-in-after-change-fontification): New variable.
15193 (c-after-change): Set c-in-after-change-fontification.
15194 (c-set-fl-decl-start): Rejig its interface, so it can be called
15195 from both after-change and context fontifying.
15196 (c-change-set-fl-decl-start, c-context-set-fl-decl-start):
15197 New functions.
15198 (c-standard-font-lock-fontify-region-function): New variable.
15199 (c-font-lock-fontify-region): New function.
15200
15201 2011-12-24 Juri Linkov <juri@jurta.org>
15202
15203 * window.el (window--state-get-1): Set `FORCE' arg of `mark' to t.
15204 (Bug#10348)
15205
15206 2011-12-23 Michael Albinus <michael.albinus@gmx.de>
15207
15208 * net/ange-ftp.el (ange-ftp-copy-file-internal): Check for
15209 existence of source file. (Bug#10325)
15210
15211 2011-12-23 Alan Mackenzie <acm@muc.de>
15212
15213 Fix unstable fontification inside templates.
15214
15215 * progmodes/cc-langs.el (c-before-font-lock-functions):
15216 Newly created from the singular version. The (c c++ objc) entry now
15217 additionally has c-set-fl-decl-start. The other languages (apart
15218 from AWK) have that as a single entry.
15219
15220 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
15221 The functionality for "local" declarations has been extracted to
15222 c-set-fl-decl-start.
15223
15224 * progmodes/cc-mode.el (c-common-init, c-after-change):
15225 Changes due to pluralisation of c-before-font-lock-functions.
15226 (c-set-fl-decl-start): New function, extracted from
15227 c-font-lock-enclosing-decls and enhanced.
15228
15229 2011-12-23 Juanma Barranquero <lekktu@gmail.com>
15230
15231 * desktop.el (desktop-internal-v2s): Fix typos in docstring (bug#10353).
15232
15233 2011-12-22 Juri Linkov <juri@jurta.org>
15234
15235 * progmodes/grep.el (rgrep): Fix docstring. (Bug#10185)
15236
15237 2011-12-22 Chong Yidong <cyd@gnu.org>
15238
15239 * vc/vc-hooks.el (vc-keep-workfiles): Doc fix.
15240
15241 2011-12-21 Drew Adams <drew.adams@oracle.com>
15242
15243 * files.el (file-remote-p): Fix docstring. (Bug#10319)
15244
15245 2011-12-21 Jérémy Compostella <jeremy.compostella@gmail.com>
15246
15247 * battery.el (battery-linux-sysfs): Add missing parameters from acpi.
15248
15249 2011-12-21 Teodor Zlatanov <tzz@lifelogs.com>
15250
15251 * progmodes/cfengine.el: Add Version. Improve CFEngine 3.x syntax
15252 highlighting and support. Fix up comments for capitalization.
15253 (cfengine-mode-debug): New var.
15254 (cfengine3-mode): Change the modeline indicator to "CFE3".
15255 (cfengine3-font-lock-keywords): Improve defun highlighting.
15256 (cfengine2-actions): Rename from `cfengine-actions'.
15257 (cfengine2-font-lock-keywords): Rename from
15258 `cfengine-font-lock-keywords'.
15259 (cfengine2-imenu-expression): Rename from
15260 `cfengine-imenu-expression'.
15261 (cfengine2-outline-level): Rename from `cfengine-outline-level'.
15262 (cfengine2-beginning-of-defun): Rename from
15263 `cfengine-beginning-of-defun'.
15264 (cfengine2-end-of-defun): Rename from `cfengine-end-of-defun'.
15265 (cfengine2-indent-line): Rename from `cfengine-indent-line'.
15266 (cfengine2-mode): Rename from `cfengine-mode'. Change the
15267 modeline indicator to "CFE2".
15268 (cfengine-mode): Defalias to `cfengine-auto-mode'.
15269 (cfengine-mode-abbrevs): Mark obsolete.
15270
15271 2011-12-21 Chong Yidong <cyd@gnu.org>
15272
15273 * vc/vc-bzr.el (vc-bzr-rename-file): Don't pass ~ to Bzr in
15274 filename argument.
15275
15276 2011-12-20 Martin Rudalics <rudalics@gmx.at>
15277
15278 * window.el (window-normalize-buffer-to-display): Remove.
15279 (display-buffer): Handle buffer-or-name argument as in Emacs 23.
15280
15281 2011-12-19 Chong Yidong <cyd@gnu.org>
15282
15283 * vc/vc-dir.el (vc-dir-parent-marked-p, vc-dir-children-marked-p):
15284 Don't signal an error in a predicate function; return non-nil.
15285 (vc-dir-mark-file): Move the error here.
15286 (vc-dir-mark-unmark): If acting on the region, keep going if one
15287 of the entries cannot be marked/unmarked.
15288 (vc-dir-mark-all-files): If current entry is a directory, mark
15289 only child files, as documented.
15290
15291 2011-12-19 Vincent Belaïche <vincentb1@users.sourceforge.net>
15292
15293 * ses.el: Ooops... undo changes of 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net, as trunk
15294 branch is feature frozen, and 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net was a feature
15295 addition.
15296
15297 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
15298
15299 * term/ns-win.el (ns-get-selection-internal)
15300 (ns-store-selection-internal): Declare.
15301 (ns-store-cut-buffer-internal, ns-get-cut-buffer-internal):
15302 Declare as obsolete.
15303 (ns-get-pasteboard, ns-paste-secondary):
15304 Use ns-get-selection-internal.
15305 (ns-set-pasteboard, ns-copy-including-secondary):
15306 Use ns-store-selection-internal.
15307
15308 2011-12-17 Chong Yidong <cyd@gnu.org>
15309
15310 * vc/vc.el (vc-next-action): Doc fix; remove CVS-isms.
15311 (vc-deduce-fileset): Doc fix.
15312
15313 2011-12-16 Andreas Schwab <schwab@linux-m68k.org>
15314
15315 * calc/calc-misc.el (calc-help): Avoid wrapping help message.
15316
15317 2011-12-13 Sam Steingold <sds@gnu.org>
15318
15319 * man.el (Man-getpage-in-background): When running under a
15320 window-system, ignore $MANWIDTH and $COLUMNS.
15321
15322 2011-12-15 Kenichi Handa <handa@m17n.org>
15323
15324 * language/ethio-util.el: Change coding tag to utf-8-emacs.
15325 (setup-ethiopic-environment-internal): Comment out key-binding for
15326 ethio-toggle-punctuation.
15327
15328 2011-12-13 Alan Mackenzie <acm@muc.de>
15329
15330 Add the switch statement to AWK Mode.
15331
15332 * progmodes/cc-awk.el (awk-font-lock-keywords): Add "switch", "case",
15333 "default" to the keywords regexp.
15334
15335 * progmodes/cc-langs.el (c-label-kwds): Let AWK take the same
15336 expression as the rest.
15337 (c-nonlabel-token-key): Allow string literals for AWK.
15338 Refactor for the other modes.
15339
15340 Large brace-block initialisation makes CC Mode slow: Fix.
15341 Tidy up and accelerate c-in-literal, etc. by using the c-parse-state
15342 routines. Limit backward searching in c-font-lock-enclosing.decl.
15343
15344 * progmodes/cc-engine.el (c-state-pp-to-literal): Return the
15345 pp-state and literal type in addition to the limits.
15346 (c-state-safe-place): New defun, extracted from c-state-literal-at.
15347 (c-state-literal-at): Use the above new defun.
15348 (c-slow-in-literal, c-fast-in-literal): Remove.
15349 (c-in-literal, c-literal-limits): Amend to use c-state-pp-to-literal.
15350
15351 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Check for
15352 being in a literal. Add a limit for backward searching.
15353
15354 * progmodes/cc-mode.el (awk-mode): Don't alias c-in-literal to
15355 c-slow-in-literal.
15356
15357 2011-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
15358
15359 * progmodes/pascal.el: Declare `ind' as dyn-bound (bug#10264).
15360
15361 2011-12-13 Martin Rudalics <rudalics@gmx.at>
15362
15363 * window.el (delete-other-windows): Use correct frame in call to
15364 window-with-parameter.
15365
15366 2011-12-12 Daniel Pfeiffer <occitan@t-online.de>
15367
15368 * progmodes/make-mode.el: Bring it up to date with makepp V2.0.
15369 (makefile-make-font-lock-keywords): Extend meaning of `keywords'.
15370 (makefile-gmake-statements, makefile-makepp-statements):
15371 Use it and add new makepp keywords.
15372 (makefile-makepp-font-lock-keywords): Add new patterns.
15373 (makefile-match-function-end): Match new [...] and [[...]].
15374
15375 2011-12-11 Juanma Barranquero <lekktu@gmail.com>
15376
15377 * ses.el (ses-call-printer-return, ses-cell-property-get)
15378 (ses-sym-rowcol, ses-printer-validate, ses-formula-record)
15379 (ses-create-cell-variable, ses-reset-header-string)
15380 (ses-cell-set-formula, ses-repair-cell-reference-all)
15381 (ses-self-reference-early-detection, ses-in-print-area, ses-set-curcell)
15382 (ses-check-curcell, ses-call-printer, ses-adjust-print-width)
15383 (ses-print-cell-new-width, ses-formula-references, ses-relocate-formula)
15384 (ses-aset-with-undo, ses-load, ses-truncate-cell)
15385 (ses-read-column-printer, ses-read-default-printer, ses-insert-row)
15386 (ses-delete-row, ses-delete-column, ses-append-row-jump-first-column)
15387 (ses-kill-override, ses-yank-pop, ses-yank-cells, ses-yank-tsf)
15388 (ses-yank-resize, ses-export-tab, ses-mark-row, ses-mark-column)
15389 (ses-renarrow-buffer, ses-insert-range, ses-insert-ses-range)
15390 (ses-safe-printer, ses-safe-formula, ses-warn-unsafe, ses--clean-!)
15391 (ses--clean-_, ses-range, ses-select, ses-center, ses-center-span)
15392 (ses-dashfill, ses-unsafe): Fix typos and reflow docstrings.
15393
15394 2011-12-11 Vincent Belaïche <vincentb1@users.sourceforge.net>
15395
15396 * ses.el: The overall change is to add cell renaming, that is
15397 setting fancy names for cell symbols other than name matching
15398 "\\`[A-Z]+[0-9]+\\'" regexp .
15399 (ses-create-cell-variable): New defun.
15400 (ses-relocate-formula): Relocate formulas only for cells the
15401 symbols of which are not renamed, i.e. symbols whose names do not
15402 match regexp "\\`[A-Z]+[0-9]+\\'".
15403 (ses-relocate-all): Relocate values only for cells the symbols of
15404 which are not renamed.
15405 (ses-load): Create cells variables as the (ses-cell ...) are read,
15406 in order to check row col consistency with cell symbol name only
15407 for cells that are not renamed.
15408 (ses-replace-name-in-formula): New defun.
15409 (ses-rename-cell): New defun.
15410
15411 2011-12-11 Chong Yidong <cyd@gnu.org>
15412
15413 * progmodes/gdb-mi.el (gdb): Set comint-prompt-regexp, required
15414 for completion via gud-gdb-fetch-lines-filter (Bug#10274).
15415
15416 2011-12-11 Eric Hanchrow <eric.hanchrow@gmail.com>
15417
15418 * window.el (other-window): Fix docstring.
15419
15420 2011-12-10 Eli Zaretskii <eliz@gnu.org>
15421
15422 * mail/rmailsum.el (rmail-header-summary): RFC2047 decode the
15423 `from' or `to' address before taking its substring.
15424 Fixes incorrect display in Rmail summary buffer whereby an RFC2047
15425 encoded name is chopped in the middle of the encoded string, and
15426 thus displayed encoded.
15427
15428 2011-12-10 Juanma Barranquero <lekktu@gmail.com>
15429
15430 * makefile.w32-in (update-subdirs-CMD): Use a Local Variables section.
15431
15432 2011-12-10 Eli Zaretskii <eliz@gnu.org>
15433
15434 * textmodes/texnfo-upd.el: Update commentary. Add a warning not
15435 to use texinfo-update-node and commands that call it if the
15436 Texinfo file uses @node lines without next/prev/up pointers.
15437 Correct outdated description about texinfo-master-menu.
15438 (texinfo-all-menus-update, texinfo-master-menu)
15439 (texinfo-update-node, texinfo-every-node-update)
15440 (texinfo-multiple-files-update): Doc fix. Warn against updating
15441 all the @node lines.
15442 (texinfo-master-menu): Only call texinfo-update-node if the prefix
15443 argument is numeric. Explain better in the doc string what the
15444 function really does.
15445 (texinfo-insert-master-menu-list): Improve the error message
15446 displayed if there's no menu in the Top node.
15447 (Bug#2975) See also this thread:
15448 http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00156.html.
15449
15450 2011-12-09 Manuel Gómez <mgrojo@gmail.com> (tiny change)
15451
15452 * speedbar.el (speedbar-supported-extension-expressions):
15453 Add .adb and .ads, commonly used for Ada source code (bug#10256).
15454
15455 2011-12-09 Juanma Barranquero <lekktu@gmail.com>
15456
15457 * printing.el (pr-mode-alist):
15458 * simple.el (filter-buffer-substring-functions)
15459 (completion-list-insert-choice-function):
15460 * window.el (window-with-parameter, window-atom-root)
15461 (window-sides-slots, window-size-fixed, window-min-delta)
15462 (window-max-delta, window--resize-mini-window)
15463 (window--resize-child-windows-normal, window-tree)
15464 (delete-other-windows, quit-window, split-window)
15465 (display-buffer-record-window, special-display-buffer-names)
15466 (special-display-regexps, special-display-popup-frame)
15467 (same-window-p, split-window-sensibly)
15468 (display-buffer-overriding-action, display-buffer-alist)
15469 (display-buffer-base-action, display-buffer, switch-to-buffer)
15470 (switch-to-buffer-other-window, switch-to-buffer-other-frame)
15471 (fit-window-to-buffer, recenter-positions)
15472 (mouse-autoselect-window-state, mouse-autoselect-window-select):
15473 * emacs-lisp/syntax.el (syntax-propertize-function): Fix typos
15474 and remove unneeded backslashes in docstrings.
15475
15476 2011-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
15477
15478 * emacs-lisp/lisp-mode.el (defmethod): Add doc-string-elt (bug#10244).
15479
15480 * pcmpl-gnu.el: Don't fail when there is no Makefile nor -f arg.
15481 (pcmpl-gnu-makefile-regexps): Accept "makefile" as well as files that
15482 end in ".mk".
15483 (pcmpl-gnu-make-rule-names): Check "makefile" and ignore errors
15484 when reading the makefile (bug#10116).
15485
15486 2011-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
15487
15488 * pcmpl-gnu.el (pcomplete/make): Also allow filename arguments
15489 (bug#10116).
15490
15491 2011-12-06 Glenn Morris <rgm@gnu.org>
15492
15493 * emacs-lisp/package.el (package-archives): Doc fix re riskiness.
15494
15495 2011-12-06 Chong Yidong <cyd@gnu.org>
15496
15497 * progmodes/cc-fonts.el (c-annotation-face): Use defface.
15498
15499 2011-12-06 Juanma Barranquero <lekktu@gmail.com>
15500
15501 * textmodes/table.el (table-shorten-cell): Fix typo.
15502
15503 2011-12-05 Christopher Genovese <genovese.cr@gmail.com> (tiny change)
15504
15505 * emacs-lisp/assoc.el (aput): Fix return value (bug#10146)
15506
15507 2011-12-05 Eli Zaretskii <eliz@gnu.org>
15508
15509 * descr-text.el (describe-char): Fix display of strong
15510 right-to-left characters and directional embeddings and overrides.
15511
15512 * simple.el (what-cursor-position): Fix display of codepoints of
15513 strong right-to-left characters.
15514
15515 2011-12-05 Chong Yidong <cyd@gnu.org>
15516
15517 * faces.el (read-color): Doc fix.
15518
15519 2011-12-05 Glenn Morris <rgm@gnu.org>
15520
15521 * align.el (align--set-marker): Add doc-string.
15522 Don't try to move something that is not a marker. (Bug#10216)
15523
15524 2011-12-04 Glenn Morris <rgm@gnu.org>
15525
15526 * calendar/appt.el (appt-add): Rewrite the interactive-spec to avoid
15527 overly zealous deletion of trailing whitespace.
15528
15529 2011-12-04 Juanma Barranquero <lekktu@gmail.com>
15530
15531 * server.el (server-delete-client): On Windows, do not try to delete
15532 the only terminal.
15533 (server-process-filter): On Windows, treat requests for a tty frame as
15534 if they were for a GUI frame if the running server is in GUI mode.
15535
15536 2011-12-03 Glenn Morris <rgm@gnu.org>
15537
15538 * textmodes/texinfmt.el (batch-texinfo-format): Doc fix. (Bug#10207)
15539
15540 2011-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
15541
15542 * electric.el: Streamline electric-indent's hook.
15543 (electric-indent-chars): Revert to simple list.
15544 (electric-indent-functions): New var.
15545 (electric-indent-post-self-insert-function): Use it.
15546
15547 * progmodes/prolog.el (prolog-find-value-by-system): Avoid error when
15548 there's no inferior buffer (bug#10196).
15549 (prolog-consult-compile): Don't use toggle-read-only.
15550
15551 2011-12-02 Michael Albinus <michael.albinus@gmx.de>
15552
15553 * net/tramp-sh.el (tramp-maybe-open-connection): Handle user
15554 interrupt. (Bug#10187)
15555
15556 2011-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
15557
15558 * pcmpl-gnu.el (pcomplete/tar): large-file-warn-threshold can be nil
15559 (bug#9160).
15560
15561 * dired-aux.el (dired-query): Don't assume help-char is modifier-free
15562 (bug#10191).
15563
15564 2011-12-02 Juri Linkov <juri@jurta.org>
15565
15566 * info.el (Info-search): Display "end of manual" when Isearch
15567 reaches the end of single-file Info manual. (Bug#9918)
15568
15569 2011-12-02 Eli Zaretskii <eliz@gnu.org>
15570
15571 * isearch.el (isearch-message-prefix): Run the input method part
15572 of the prompt through bidi-string-mark-left-to-right. (Bug#10183)
15573
15574 2011-12-02 Juri Linkov <juri@jurta.org>
15575
15576 * isearch.el (isearch-occur): Use `word-search-regexp' for
15577 `isearch-word'.
15578 (isearch-search-and-update): Add condition for `isearch-word' and
15579 call `word-search-regexp'. (Bug#10145)
15580
15581 2011-12-01 Glenn Morris <rgm@gnu.org>
15582
15583 * eshell/em-hist.el (eshell-hist-initialize):
15584 Handle eshell-history-size nil and HISTSIZE set or unset.
15585 (eshell-history-file-name, eshell-history-size): Fix custom type.
15586
15587 2011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
15588
15589 * man.el (Man-completion-table): Fix the lambda case (bug#10168).
15590
15591 2011-12-01 Michael McNamara <mac@mail.brushroad.com>
15592
15593 * progmodes/verilog-mode.el (verilog-pretty-expr):
15594 Rework verilog-pretty-expr to handle new assignment operators in system
15595 verilog, such as += *= and the like.
15596 (verilog-assignment-operator-re): Regular expression to find the
15597 assigment operator in a verilog assignment.
15598 (verilog-assignment-operation-re): Regular expression to find an
15599 assignment statement for pretty-expr.
15600 (verilog-in-attribute-p): Query returns true if point is in an
15601 attribute context; used to skip these for expression line up from
15602 pretty-expr.
15603 (verilog-in-parameter-p): Query returns true if point is in an
15604 parameter definition context; used to skip these for expression
15605 line up from pretty-expr.
15606 (verilog-in-parenthesis-p): Query returns true if point is in a
15607 parenthetical expression, specifically ( ) but not [ ] or { };
15608 used by pretty-expr.
15609 (verilog-just-one-space): If there is no space, don't add one.
15610 (verilog-get-lineup-indent-2): Specifically skip just attribute
15611 contexts for expression lineup, rather than skipping all
15612 parenthetical expressions.
15613 (verilog-calculate-indent): Fix comment, and fix indent.
15614 (verilog-do-indent): Indent declarations in lists (suggested by
15615 Joachim Lechner).
15616 (verilog-mode-abbrev-table): Populate abbrev mode with the various
15617 skeleton items.
15618 (verilog-sk-ovm-class): Add skeleton for OVM classes (reported
15619 by Alain Mellan).
15620
15621 2011-12-01 Wilson Snyder <wsnyder@wsnyder.org>
15622
15623 * progmodes/verilog-mode.el (verilog-read-defines): Fix reading
15624 parameters with embedded comments. Reported by Ray Stevens.
15625 (verilog-calc-1, verilog-fork-wait-re) (verilog-forward-sexp,
15626 verilog-wait-fork-re): Fix indentation of "wait fork", bug407.
15627 Reported by Tim Holt.
15628 (verilog-auto): Fix AUTOing a upper module then AUTOing module
15629 instantiated by upper module causing wrong expansion until AUTOed a
15630 second time. Reported by K C Buckenmaier.
15631 (verilog-diff-auto): Fix showing .* as a difference when
15632 `verilog-auto-star-save' off. Reported by Dan Dever.
15633 (verilog-auto-reset, verilog-read-always-signals)
15634 (verilog-auto-reset-blocking-in-non): Fix AUTORESET including
15635 temporary signals in reset list if
15636 verilog-auto-reset-blocking-in-non is nil, and match assignment
15637 style to each signal's assignment type, bug381.
15638 Reported by Thomas Esposito.
15639 (verilog-sk-uvm-class, verilog-uvm-begin-re, verilog-uvm-end-re)
15640 (verilog-uvm-statement-re): Support UVM indentation and
15641 highlighting, with old OVM keywords only.
15642 (verilog-auto-tieoff, verilog-auto-tieoff-declaration):
15643 Support AUTOTIEOFF creating non-wire data types.
15644 Suggested by Jonathan Greenlaw.
15645 (verilog-auto-insert-lisp, verilog-delete-to-paren)
15646 (verilog-forward-sexp-cmt, verilog-forward-sexp-ign-cmt)
15647 (verilog-inject-sense, verilog-read-inst-pins)
15648 (verilog-read-sub-decls, verilog-read-sub-decls-line):
15649 Fix mismatching parenthesis inside commented out code when deleting
15650 AUTOINST, bug383. Reported by Jonathan Greenlaw.
15651 (verilog-auto-ascii-enum): Fix AUTOASCIIENUM one-hot with
15652 non-numeric vector width. Reported by Alex Reed.
15653 (verilog-auto-ascii-enum): Add "onehot" option to work around not
15654 detecting signals with parameter widths. Reported by Alex Reed.
15655 (verilog-auto-delete-trailing-whitespace):
15656 With `verilog-auto-delete-trailing-whitespace' remove trailing
15657 whitespace in auto expansion, bug371. Reported by Brad Dobbie.
15658 (verilog-run-hooks, verilog-scan-cache-flush, verilog-syntax-ppss):
15659 Fix verilog-scan-cache corruption when running user AUTO expansion
15660 hooks that call indentation routines.
15661 (verilog-simplify-range-expression): Fix typo ignoring lower case
15662 identifiers.
15663 (verilog-delete-auto): Fix delete-autos to also remove user created
15664 automatics, as long as they start with AUTO.
15665 (verilog-batch-diff-auto, verilog-diff-auto)
15666 (verilog-diff-function): Add `verilog-diff-auto' and bind to
15667 "C-c?" to report differences in AUTO expansion, ignoring spaces.
15668 (verilog-backward-syntactic-ws-quick, verilog-beg-of-defun-quick)
15669 (verilog-in-paren-quick, verilog-re-search-backward-quick)
15670 (verilog-re-search-forward-quick, verilog-syntax-ppss):
15671 Fix calling `syntax-ppss' when inside auto expansions as the ppss hook
15672 is disabled and its cache will get corrupt, causing AUTOS not to
15673 expand. Instead use only -quick functions.
15674 (verilog-scan-region): Fix scanning over escaped quotes.
15675 (verilog-inside-comment-or-string-p, verilog-inside-comment-p)
15676 (verilog-re-search-backward-quick)
15677 (verilog-re-search-forward-quick, verilog-scan): verilog-scan and
15678 related functions now ignore strings, to fix misparsing of strings
15679 with magic comments embedded in them.
15680 (verilog-read-auto-template):
15681 Fix 'verilog-auto-inst-template-numbers' with extra newline before (.
15682 Reported by Brad Dobbie.
15683 (verilog-read-auto-template):
15684 Fix 'verilog-auto-inst-template-numbers' with comments.
15685 Reported by Brad Dobbie.
15686 (verilog-auto-inst, verilog-auto-inst-param)
15687 (verilog-auto-inst-sort): Add 'verilog-auto-inst-sort' to reduce
15688 merge conflicts with AUTOINST, bug358. Reported by Brad Dobbie.
15689 (verilog-auto-inst-template-numbers): Add 'lhs' policy for
15690 debugging templates without merge conflicts, bug357.
15691 Reported by Brad Dobbie.
15692 (verilog-read-auto-template):
15693 Fix verilog-auto-inst-template-numbers with multiple templates.
15694 Reported by Brad Dobbie.
15695 (verilog-define-abbrev): Fix verilog-mode abbrevs to be system
15696 abbrevs so user won't be asked to save.
15697 (verilog-read-auto-lisp-present): Fix to start at beginning of
15698 buffer in case called outside of verilog-auto.
15699 (verilog-simplify-range-expression): Fix AUTOWIRE expanding "X-1+1"
15700 to "X-2". Reported by Matthew Myers.
15701 (verilog-auto, verilog-auto-inout-in): Add AUTOINOUTIN for creating
15702 all inputs from module templates. Reported by Leith Johnson.
15703 (verilog-module-inside-filename-p): Fix locating programs as with
15704 modules.
15705 (verilog-auto-inst-port): Fix vl-width expressions when using
15706 verilog-auto-inst-param-value, bug331. Reported by Julian Gorfajn.
15707 (verilog-decls-get-regs, verilog-decls-get-signals,
15708 verilog-decls-get-vars, verilog-decls-get-wires, verilog-decls-new,
15709 verilog-modi-cache-add-vars, verilog-modi-cache-add-wires,
15710 verilog-read-decls): Combine reg and wire structures into one var
15711 structure to represent SystemVerilog concepts.
15712 (verilog-auto-ascii-enum, verilog-auto-logic, verilog-auto-reg)
15713 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-wire)
15714 (verilog-auto-wire-type, verilog-insert-definition):
15715 Add verilog-auto-wire-type and AUTOLOGIC to support using
15716 SystemVerilog "logic" keyword instead of "wire"/"reg".
15717 (verilog-auto-reg-input, verilog-decls-get-signals): Fix AUTOWIRE
15718 to declares outputs that also have assignments (presumably in an
15719 ifdef or generate if so there's not a driver conflict).
15720 Reported by Matthew Myers.
15721 (verilog-auto-declare-nettype, verilog-insert-definition):
15722 Add verilog-auto-declare-nettype to fix declarations using
15723 `default_nettype none. Reported by Julian Gorfajn.
15724 (verilog-read-always-signals-recurse, verilog-read-decls)
15725 (verilog-read-sub-decls-gate): Fix infinite loop with (*) and
15726 malformed end statement, bug325. Reported by Joshua Wise and
15727 Andrew Drake.
15728 (verilog-auto-star-safe, verilog-delete-auto-star-implicit)
15729 (verilog-inst-comment-re): Fix not deleting Interfaced comment
15730 when expanding .* in interfaces, bug320.
15731 Reported by Pierre-David Pfister.
15732 (verilog-read-module-name): Fix import statements between module
15733 name and open parenthesis, bug317.
15734 Reported by Pierre-David Pfister.
15735 (verilog-simplify-range-expression): Fix simplification of
15736 multiplications inside AUTOWIRE connections, bug303.
15737 (verilog-auto-inst-port): Support parameter expansion in
15738 multidimensional arrays.
15739 (verilog-read-decls): Fix AUTOREG etc looking for "endproperty"
15740 after "assert property". Reported by Julian Gorfajn.
15741 (verilog-simplify-range-expression): Fix "couldn't merge" errors
15742 with multiplication, bug303.
15743 (verilog-read-decls): Fix parsing of unsigned data types, bug302.
15744 Reported by Jan Frode Lonnum.
15745
15746 2011-11-30 Juanma Barranquero <lekktu@gmail.com>
15747
15748 * htmlfontify.el (hfy-page-header, hfy-post-html-hooks)
15749 (hfy-shell-file-name, hfy-shell):
15750 * international/fontset.el (x-decompose-font-name): Fix typos.
15751
15752 2011-11-29 Ken Brown <kbrown@cornell.edu>
15753
15754 * progmodes/gdb-mi.el: Fix bug#9853, bug#9858, and bug#9878.
15755 (gdb-version): Remove defvar.
15756 (gdb-supports-non-stop): New defvar, replacing `gdb-version'.
15757 (gdb-gud-context-command, gdb-non-stop-handler)
15758 (gdb-current-context-command, gdb-stopped): Use it.
15759 (gdb-init-1): Enable pretty printing here.
15760 (gdb-non-stop-handler): Don't enable pretty-printing here.
15761 Check to see if the target supports non-stop mode; if not, turn off
15762 non-stop mode. Use the following.
15763 (gdb-check-target-async): New defun.
15764 (gud-watch, gdb-stopped): Fix whitespace.
15765 (gdb-get-source-file): Don't try to display the source file if
15766 `gdb-main-file' is nil.
15767
15768 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
15769
15770 * align.el: Try to generate fewer markers (bug#10047).
15771 (align--set-marker): New macro.
15772 (align-region): Use it.
15773
15774 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
15775
15776 * isearch.el (isearch-yank-x-selection): Deactivate mark (bug#10022).
15777
15778 2011-11-29 Chong Yidong <cyd@gnu.org>
15779
15780 * indent.el (indent-for-tab-command, indent-according-to-mode):
15781 Doc fix.
15782 (indent-region): Doc fix. Switch nested ifs to equivalent cond.
15783
15784 2011-11-29 Michael Albinus <michael.albinus@gmx.de>
15785
15786 * vc/diff-mode.el (diff-find-file-name): Make `read-file-name'
15787 aware of remote file names. (Bug#10124)
15788
15789 2011-11-29 Chong Yidong <cyd@gnu.org>
15790
15791 * frame.el (auto-raise-mode, auto-lower-mode): Doc fix.
15792
15793 2011-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
15794
15795 * files.el (find-file): Don't use force-same-window (bug#10144).
15796 * window.el (switch-to-buffer): Better match Emacs-23 behavior and only
15797 use pop-to-buffer if the selected window can't be used.
15798 (pop-to-buffer-same-window): Use display-buffer--same-window-action.
15799
15800 2011-11-28 Eli Zaretskii <eliz@gnu.org>
15801
15802 * vc/diff-mode.el (diff-mode-map): Don't inherit 'z' => 'M-z' from
15803 special-mode-map.
15804
15805 2011-11-28 Chong Yidong <cyd@gnu.org>
15806
15807 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix default doc.
15808
15809 2011-11-27 Nick Roberts <nickrob@snap.net.nz>
15810
15811 * progmodes/gdb-mi.el (gdb-init-1): Condition execution of
15812 gdb-get-source-file-list on gdb-create-source-file-list.
15813
15814 2011-11-26 Eli Zaretskii <eliz@gnu.org>
15815
15816 * whitespace.el (whitespace-newline): Use a different foreground
15817 color for 16-color light-background displays.
15818
15819 2011-11-24 Chong Yidong <cyd@gnu.org>
15820
15821 * window.el (display-buffer--special-action): Doc fix.
15822
15823 2011-11-25 Juanma Barranquero <lekktu@gmail.com>
15824
15825 * emacs-lisp/avl-tree.el (avl-tree--do-copy, avl-tree-create)
15826 (avl-tree-compare-function, avl-tree-empty, avl-tree-enter)
15827 (avl-tree-delete, avl-tree-member, avl-tree-member-p, avl-tree-map)
15828 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar, avl-tree-copy)
15829 (avl-tree-clear, avl-tree-stack, avl-tree-stack-pop)
15830 (avl-tree-stack-first):
15831 * emacs-lisp/cconv.el (cconv--analyse-use):
15832 * net/gnutls.el (gnutls-negotiate): Fix typos.
15833
15834 2011-11-24 Glenn Morris <rgm@gnu.org>
15835
15836 * lpr.el (lpr-windows-system, lpr-lp-system):
15837 * mail/binhex.el (binhex-begin-line):
15838 * progmodes/grep.el (grep-history, grep-find-history):
15839 * textmodes/flyspell.el:
15840 * vc/pcvs-defs.el (cvs-global-menu):
15841 * vc/vc-bzr.el (vc-bzr-admin-checkout-format-file):
15842 * vc/vc-mtn.el (vc-mtn-admin-dir, vc-mtn-admin-format):
15843 * vc/vc-cvs.el (vc-cvs-registered): Give them basic doc-strings.
15844
15845 * net/tls.el: Fix case of "GnuTLS".
15846
15847 * paths.el (rmail-file-name): Format doc-string for make-docfile.
15848
15849 * version.el (emacs-build-system): Give it a doc-string.
15850
15851 2011-11-24 Juri Linkov <juri@jurta.org>
15852
15853 * view.el (view-buffer): Revert 2011-07-19T15:01:49Z!larsi@gnus.org from 2011-07-19 (bug#8615).
15854
15855 2011-11-24 Glenn Morris <rgm@gnu.org>
15856
15857 * mail/rmailmm.el (rmail-mime): When rmail-enable-mime is non-nil,
15858 if called on a non-mime message just toggle the headers. (Bug#8006)
15859
15860 2011-11-24 Juanma Barranquero <lekktu@gmail.com>
15861
15862 * allout.el (allout-setup, allout-auto-save-temporarily-disabled)
15863 (allout-lead-with-comment-string, allout-structure-deleted-hook)
15864 (allout-mode, allout-chart-subtree, allout-hotspot-key-handler)
15865 (allout-rebullet-heading, allout-open-sibtopic)
15866 (allout-toggle-current-subtree-encryption)
15867 (allout-toggle-subtree-encryption, allout-encrypt-string)
15868 (allout-next-topic-pending-encryption, allout-adjust-file-variable)
15869 (allout-distinctive-bullets-string, allout-auto-activation):
15870 * window.el (window-normalize-buffer-to-display):
15871 * progmodes/verilog-mode.el (verilog-batch-indent):
15872 * textmodes/bibtex.el (bibtex-field-braces-opt)
15873 (bibtex-field-strings-opt):
15874 * vc/cvs-status.el (cvs-tree-merge):
15875 Fix typos.
15876
15877 2011-11-23 Michael Albinus <michael.albinus@gmx.de>
15878
15879 * rfn-eshadow.el (rfn-eshadow-update-overlay): Let-bind
15880 `non-essential' to t, in order to avoid remote connections.
15881
15882 2011-11-23 Eli Zaretskii <eliz@gnu.org>
15883
15884 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
15885 On MS-DOS and MS-Windows, compare with loaddefs.el
15886 case-insensitively.
15887
15888 2011-11-23 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
15889
15890 * mail/unrmail.el (unrmail): Always add blank line. (Bug#7743)
15891
15892 2011-11-23 Glenn Morris <rgm@gnu.org>
15893
15894 * paths.el (rmail-file-name): Reformat the doc-string so that it
15895 is picked up.
15896
15897 * mail/rmail.el (rmail-message-filter, rmail-auto-file): Doc fixes.
15898 (rmail-auto-file): Ignore case in the "special" field names,
15899 as mail-fetch-field does for all others.
15900
15901 * mail/rmail.el (rmail-forward):
15902 * mail/rmailkwd.el (rmail-set-label):
15903 * mail/rmailout.el (rmail-output, rmail-output-as-seen)
15904 (rmail-output-body-to-file): Give error if no message. (Bug#10082)
15905
15906 * mail/rmail.el (rmail-current-message): Doc fix.
15907
15908 * mail/rmail.el (rmail-message-filter): Mark as obsolete. (Bug#2624)
15909
15910 2011-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
15911
15912 * server.el (server-eval-and-print): Allow C-g (bug#6585).
15913
15914 2011-11-22 Glenn Morris <rgm@gnu.org>
15915
15916 * mail/rmailmm.el (test-rmail-mime-handler)
15917 (test-rmail-mime-bulk-handler)
15918 (test-rmail-mime-multipart-handler): Move tests to test/ directory.
15919
15920 2011-11-21 Juri Linkov <juri@jurta.org>
15921
15922 * calc/calc.el (calc-read-key-sequence):
15923 Let-bind `input-method-function' to nil. (Bug#10018)
15924
15925 2011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
15926
15927 * emacs-lisp/cl-indent.el (common-lisp-loop-part-indentation):
15928 Tell the caller that the next line needs recomputation, even
15929 though it doesn't start a sexp (bug#10094).
15930
15931 2011-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
15932
15933 * emacs-lisp/autoload.el (autoload-generate-file-autoloads): Simplify.
15934
15935 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
15936
15937 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
15938 Use force-same-window.
15939
15940 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
15941
15942 * descr-text.el (describe-char-unicode-data):
15943 * json.el (json-string-escape):
15944 * mail/footnote.el (footnote-unicode-string, footnote-unicode-regexp)
15945 (Footnote-unicode, Footnote-style-p):
15946 * net/ntlm.el (ntlm-get-password-hashes): Fix typos.
15947
15948 2011-11-20 Chong Yidong <cyd@gnu.org>
15949
15950 * window.el (replace-buffer-in-windows): Restore interactive spec.
15951
15952 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
15953
15954 * electric.el (electric-indent-mode): Fix last change (too optimistic).
15955
15956 * emacs-lisp/bytecomp.el: Silence obsolete warnings more reliably.
15957 (byte-compile-global-not-obsolete-vars): New var.
15958 (byte-compile-check-variable, byte-compile-make-obsolete-variable):
15959 Use it.
15960 (byte-compile-warn-obsolete): Align text with the one in *Help*.
15961
15962 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
15963
15964 * progmodes/cwarn.el (cwarn-is-enabled, cwarn-font-lock-keywords):
15965 * progmodes/pascal.el (electric-pascal-equal):
15966 * textmodes/reftex-dcr.el (reftex-view-crossref-from-bibtex):
15967 * xml.el (xml-substitute-special): Fix typos.
15968
15969 2011-11-20 Glenn Morris <rgm@gnu.org>
15970
15971 * mail/rmail.el (rmail-enable-mime-composing): Make it a defcustom.
15972 (rmail-insert-mime-forwarded-message-function, rmail-mime-feature):
15973 Doc fixes.
15974 (rmail-decode-mime-charset): Mark as obsolete.
15975
15976 * mail/rmailsum.el (rmail-message-regexp-p-1):
15977 * mail/rmail.el (rmail-search-message, rmail-forward, rmail-resend):
15978 Before using mime functions, check they are set. (Bug#10077)
15979
15980 2011-11-19 Juri Linkov <juri@jurta.org>
15981
15982 * info.el (Info-finder-find-node): Use `package--builtins' instead
15983 of `package-alist'. Use node names formed by the pattern "Keyword "
15984 and the keyword name.
15985
15986 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
15987
15988 * progmodes/sh-script.el (sh-assignment-regexp): Add entry for bash.
15989
15990 2011-11-19 Juri Linkov <juri@jurta.org>
15991
15992 * info.el (Info-hide-note-references): Add `:set' tag to `defcustom'
15993 that calls `revert-buffer' on all Info buffers. (Bug#9915)
15994 (Info-revert-find-node): Remove let-bindings `old-buffer-name',
15995 `old-history', `old-history-forward'. Add let-binding
15996 `window-selected'. Remove calls to `kill-buffer',
15997 `switch-to-buffer' and `Info-mode'. Set `Info-current-file' to nil
15998 before calling `Info-find-node', so `Info-find-node-2' will reread
15999 the Info file. Restore window positions only when `window-selected'
16000 is non-nil.
16001
16002 2011-11-19 Juri Linkov <juri@jurta.org>
16003
16004 * isearch.el (isearch-lazy-highlight-new-loop):
16005 Remove condition `(not isearch-error)'. (Bug#9918)
16006
16007 * misearch.el (multi-isearch-search-fun): Add condition
16008 `(not bound)' to ignore lazy-highlighting search.
16009 Add the search-failed message "end of multi" when the end of
16010 multi-sequence is reached. Uncapitalize the search-failed
16011 message "Repeat for next buffer".
16012
16013 * info.el (Info-search): Add the search-failed message
16014 "end of the manual" when the end of the manual is reached
16015 in Isearch mode.
16016
16017 2011-11-19 Juri Linkov <juri@jurta.org>
16018
16019 * info.el (Info-find-node-2, Info-select-node, Info-history-find-node):
16020 Use non-destructive `remove' instead of `delete' because
16021 `Info-history-list' stored to `Info-isearch-initial-history-list' in
16022 `Info-isearch-start' might need to be restored in `Info-isearch-end'.
16023
16024 2011-11-19 Juri Linkov <juri@jurta.org>
16025
16026 * isearch.el (isearch-edit-string): Let-bind `history-add-new-input'
16027 to nil instead of binding `search-ring' and `regexp-search-ring'.
16028 (Bug#9185)
16029
16030 2011-11-19 Eli Zaretskii <eliz@gnu.org>
16031
16032 * simple.el (line-move): Force movement by logical lines for any
16033 hscrolled window, not only when auto-hscroll-mode is on.
16034 (line-move-visual): Update doc string to that effect. (Bug#10076)
16035
16036 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
16037
16038 * language/european.el (macintosh): Define as alias for mac-roman.
16039
16040 2011-11-19 Eli Zaretskii <eliz@gnu.org>
16041
16042 * mail/rmailmm.el (rmail-mime-display-header)
16043 (rmail-mime-display-tagline, rmail-mime-display-body): New defsubsts.
16044 (rmail-mime-entity-segment, rmail-mime-toggle-raw)
16045 (rmail-mime-toggle-hidden, rmail-mime-insert-text)
16046 (rmail-mime-insert-bulk, rmail-mime-insert-multipart)
16047 (rmail-mime-insert, rmail-mime-insert-tagline): Use them instead
16048 of a raw aref.
16049 (rmail-mime-entity-segment): To get past the tagline, move forward
16050 2 more lines, to account for the 2 empty lines that precede and
16051 follow the line with the buttons.
16052 (rmail-mime-update-tagline): Move one more line, to get past the
16053 empty line that follows the buttons in the tagline. (Bug#9520)
16054
16055 2011-11-19 Martin Rudalics <rudalics@gmx.at>
16056
16057 * window.el (window-max-delta-1, window-min-delta-1)
16058 (window-min-size-1, window-state-get-1, window-state-put-1)
16059 (window-state-put-2): Use "window--" prefix.
16060
16061 2011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
16062
16063 * emacs-lisp/smie.el: Improve warnings and conflict detection.
16064 (smie-warning-count): New var.
16065 (smie-set-prec2tab): Use it.
16066 (smie-bnf->prec2): Improve warnings. Add docstring.
16067 (smie-bnf--closer-alist): Rename from smie-bnf-closer-alist.
16068 (smie-bnf--set-class): New function.
16069 (smie-bnf--classify): Rename from smie-bnf-classify. Rewrite to fix
16070 corner case.
16071
16072 * progmodes/compile.el: Obey compilation-first-column in dest buffer.
16073 (compilation-error-properties, compilation-move-to-column):
16074 Handle compilation-first-column while in the target buffer.
16075
16076 * progmodes/cc-engine.el (c-remove-stale-state-cache-backwards):
16077 Don't hardcode point-min==1.
16078
16079 * eshell/esh-cmd.el (eshell-do-eval): Handle `setq' (bug#9907).
16080 (eshell-rewrite-for-command): Remove workaround.
16081 (eshell-do-pipelines, eshell-do-pipelines-synchronously)
16082 (eshell-do-eval, eshell-exec-lisp): Avoid gratuitous setq.
16083 * eshell/esh-util.el (eshell-condition-case, eshell-for): Use declare.
16084
16085 * files-x.el (modify-file-local-variable): Obey commenting conventions.
16086
16087 2011-11-17 Glenn Morris <rgm@gnu.org>
16088
16089 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
16090 Ignore buffer-local generated-autoload-file if it is the same
16091 as the global value. (Bug#10049)
16092
16093 2011-11-17 Juanma Barranquero <lekktu@gmail.com>
16094
16095 * textmodes/reftex-toc.el (reftex-toc-return-marker, reftex-toc-help)
16096 (reftex-toc, reftex-toc, reftex-toc-dframe-p, reftex-toc-next-heading)
16097 (reftex-toc-previous-heading, reftex-toc-max-level)
16098 (reftex-toc-goto-line-and-hide, reftex-toc-show-calling-point)
16099 (reftex-toc-quit, reftex-toc-revert, reftex-toc-jump)
16100 (reftex-toc-do-promote, reftex-toc-promote-prepare)
16101 (reftex-toc-promote-action, reftex-toc-extract-section-number)
16102 (reftex-toc-load-all-files-for-promotion, reftex-toc-rename-label)
16103 (reftex-toc-rename-label, reftex-toc-visit-location)
16104 (reftex-toc-visit-location, reftex-toggle-auto-toc-recenter)
16105 (reftex-toggle-auto-toc-recenter, reftex-toggle-auto-toc-recenter)
16106 (reftex-make-separate-toc-frame): Fix typos, and use TOC consistently,
16107 leaving "*toc*" only for references to the buffer.
16108
16109 2011-11-17 Martin Rudalics <rudalics@gmx.at>
16110
16111 * window.el (window-resize, delete-window, split-window):
16112 Replace window-splits by window-combination-resize.
16113 * cus-start.el (window-splits): Replace by window-combination-resize.
16114
16115 2011-11-17 Glenn Morris <rgm@gnu.org>
16116
16117 * progmodes/sh-script.el (sh-font-lock-keywords-var):
16118 Make bash entry derive from sh entry, not shell entry.
16119
16120 2011-11-16 Michael Albinus <michael.albinus@gmx.de>
16121
16122 * net/tramp-sh.el (tramp-sh-handle-file-truename): Cache only the
16123 local file name.
16124
16125 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
16126
16127 * menu-bar.el (menu-bar-file-menu):
16128 * printing.el (pr-ps-utility):
16129 * calendar/icalendar.el (icalendar, icalendar--convert-tz-offset)
16130 (icalendar--convert-to-ical, icalendar--convert-ordinary-to-ical)
16131 (icalendar--convert-weekly-to-ical, icalendar--convert-yearly-to-ical)
16132 (icalendar--convert-sexp-to-ical, icalendar--convert-block-to-ical)
16133 (icalendar--convert-float-to-ical, icalendar--convert-date-to-ical)
16134 (icalendar--convert-cyclic-to-ical)
16135 (icalendar--convert-anniversary-to-ical, icalendar-import-buffer)
16136 (icalendar--convert-ical-to-diary)
16137 (icalendar--convert-recurring-to-diary)
16138 (icalendar--convert-non-recurring-all-day-to-diary)
16139 (icalendar-import-format-sample):
16140 * progmodes/idlw-shell.el (idlwave-shell-mode):
16141 * progmodes/vhdl-mode.el (vhdl-mode, vhdl-print-two-column)
16142 (vhdl-print-customize-faces, vhdl-mode, vhdl-ps-print-settings)
16143 (vhdl-ps-print-init): Fix typos.
16144
16145 2011-11-16 Ken Manheimer <ken.manheimer@gmail.com>
16146
16147 * allout.el, allout-widgets.el (file metadata): Attribute copyright to
16148 FSF and collapse date sequence, obscure author/maintainer email address
16149 better, remove extra version line, track relocation of author's webpage.
16150
16151 * progmodes/python.el (python-pdbtrack-input-prompt)
16152 (python-pdbtrack-track-stack-file): Adjust to recognize ipdb as well as
16153 regular python pdb prompts. Adjustments shamelessly taken exactly as
16154 suggested in EmacsWiki page (tiny change):
16155 http://www.emacswiki.org/PythonProgrammingInEmacs#toc14
16156
16157 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
16158
16159 * expand.el (expand-pos, expand-index, expand-point):
16160 Remove redundant info from docstring.
16161 (expand-add-abbrevs): Doc fix.
16162 (expand-c-sample-expand-list, expand-sample-lisp-mode-expand-list)
16163 (expand-sample-perl-mode-expand-list): Fix typos.
16164
16165 * net/dbus.el (dbus-event-member-name):
16166 * play/5x5.el (5x5-solve-rotate-left, 5x5-solver-output):
16167 * term/pc-win.el (msdos-create-frame-with-faces):
16168 * textmodes/texinfmt.el (texinfo-format-image): Fix typos.
16169
16170 2011-11-16 Martin Rudalics <rudalics@gmx.at>
16171
16172 * window.el (split-window, window-state-get-1)
16173 (window-state-put-1, window-state-put-2): Rename occurrences of
16174 window-nest to window-combination-limit.
16175 * cus-start.el (window-nest): Rename to window-combination-limit.
16176
16177 2011-11-16 Chong Yidong <cyd@gnu.org>
16178
16179 * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip
16180 regexp (Bug#10033).
16181
16182 2011-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
16183
16184 * tmm.el (tmm-prompt): Use minibuffer-with-setup-hook (bug#10053).
16185 `completing-read' will remove *Completions* and will preserve
16186 current-buffer for us.
16187 (tmm-add-prompt): Users of *Completions* will always (re)set its
16188 major mode.
16189 (tmm-old-comp-map): Remove.
16190
16191 2011-11-16 Glenn Morris <rgm@gnu.org>
16192
16193 * mail/rmailedit.el: Require rmailmm when compiling.
16194 (rmail-old-mime-state): New declaration.
16195 (rmail-edit-current-message): If editing a mime message,
16196 edit the "raw" message from the mbox buffer.
16197 (rmail-cease-edit): Handle mime messages. (Bug#9840)
16198
16199 2011-11-15 Glenn Morris <rgm@gnu.org>
16200
16201 * mail/rmailmm.el (rmail-mime-toggle-raw): Remove entity arg,
16202 which wasn't being used. Add optional arg to force given state.
16203 (rmail-mime): Add optional arg to force given state.
16204
16205 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
16206
16207 * allout.el (allout-encryption-plaintext-sanitization-regexps):
16208 * frame.el (display-mm-dimensions-alist):
16209 * outline.el (outline-mode-menu-bar-map, outline-move-subtree-up)
16210 (outline-move-subtree-down):
16211 * net/newst-treeview.el (newsticker--treeview-do-get-node-of-feed)
16212 (newsticker--treeview-do-get-node):
16213 * net/quickurl.el (quickurl-list-buffer-name):
16214 * progmodes/dcl-mode.el (dcl-mode):
16215 * progmodes/gdb-mi.el (gdb-mapcar*):
16216 * progmodes/sql.el (sql-mode-oracle-font-lock-keywords): Fix typos.
16217
16218 2011-11-15 Glenn Morris <rgm@gnu.org>
16219
16220 * mail/rmail.el (rmail-file-coding-system): It's only ever used
16221 in a boolean sense, so just make it a boolean, and fix the doc.
16222 (rmail-show-mime-function, rmail-mime-feature)
16223 (rmail-require-mime-maybe): Doc fixes.
16224 (rmail-show-message-1): Check rmail-show-mime-function is non-nil.
16225
16226 * mail/rmailmm.el (rmail-show-mime): Doc fix.
16227
16228 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
16229
16230 * epg.el (epg-start-decrypt, epg-start-verify, epg-start-sign)
16231 (epg-start-encrypt, epg-start-export-keys, epg-start-import-keys)
16232 (epg-start-receive-keys, epg-start-delete-keys, epg-start-sign-keys)
16233 (epg-start-generate-key, epg-context-set-progress-callback): Fix typos.
16234
16235 2011-11-15 Glenn Morris <rgm@gnu.org>
16236
16237 * mail/rmailmm.el (rmail-mime-entity, rmail-mime-entity-segment)
16238 (rmail-mime-shown-mode, rmail-mime-hidden-mode, rmail-mime-raw-mode)
16239 (rmail-mime-toggle-hidden, rmail-mime-insert-tagline)
16240 (rmail-mime-insert-header, rmail-mime-handle, rmail-mime-parse)
16241 (rmail-mime, rmail-show-mime): Doc fixes.
16242
16243 * term/ns-win.el (mode-line-frame-identification):
16244 Leave it alone. (Bug#10051)
16245
16246 * simple.el (mark-whole-buffer): Doc fix. (Bug#10023)
16247
16248 * mail/rmailout.el (rmail-output-to-rmail-buffer):
16249 Handle empty buffers. (Bug#9978)
16250
16251 2011-11-14 Juanma Barranquero <lekktu@gmail.com>
16252
16253 * international/mule.el (define-charset):
16254 * mail/rmailmm.el (rmail-mime-find-header-encoding):
16255 * progmodes/prolog.el (prolog-mode-hook, prolog-inferior-mode-hook):
16256 * progmodes/verilog-mode.el (verilog-backward-token):
16257 * textmodes/ispell.el (lookup-words):
16258 * textmodes/sgml-mode.el (sgml-guess-indent): Fix typos.
16259
16260 2011-11-14 Glenn Morris <rgm@gnu.org>
16261
16262 * progmodes/executable.el
16263 (executable-make-buffer-file-executable-if-script-p):
16264 Handle file-modes returning nil.
16265
16266 * mail/rmailsum.el (rmail-summary): Remove movement to beginning of
16267 message - not necessary, and causes problems. (Bug#9831)
16268
16269 * mail/rmailsum.el (rmail-new-summary): Preserve message number.
16270
16271 * mail/rmail.el (rmail-no-mail-p): Remove mode-line N/M indicator.
16272
16273 * mail/rmailsum.el (rmail-summary, rmail-new-summary)
16274 (rmail-new-summary-1): Allow empty summaries. (Bug#9964)
16275 (rmail-new-summary): Remember that rmail-summary-buffer is buffer-local.
16276
16277 2011-11-12 Martin Rudalics <rudalics@gmx.at>
16278
16279 * window.el (window-resize, delete-window): Use window-splits
16280 variable instead of function.
16281 (window-state-get-1, window-state-put-2, window-state-put):
16282 Don't deal with windows' splits status.
16283
16284 2011-11-12 Glenn Morris <rgm@gnu.org>
16285
16286 * apropos.el (apropos-do-all, apropos-library, apropos-value)
16287 (apropos-documentation): Doc fixes.
16288
16289 2011-11-11 Juanma Barranquero <lekktu@gmail.com>
16290
16291 * progmodes/idlw-shell.el (idlwave-shell-make-new-bp-overlay):
16292 * textmodes/sgml-mode.el (html-tag-help): Fix typos.
16293
16294 2011-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
16295
16296 * electric.el (electric-indent-post-self-insert-function): Make it
16297 possible for a char to only indent in some circumstances.
16298 (electric-indent-mode): Simplify.
16299
16300 2011-11-11 Martin Rudalics <rudalics@gmx.at>
16301
16302 * window.el (windows-with-parameter): Remove unused function.
16303 (windows-at-side): Rename to window-at-side-list.
16304 (window-check, window-atom-check, window-atom-check-1)
16305 (window-side-check, window-size-ignore, window-size-fixed-1)
16306 (window-in-direction-2): Prefix with "window--".
16307 (window-tree-1): Rename to window--subtree, fix doc-string.
16308
16309 2011-11-11 Glenn Morris <rgm@gnu.org>
16310
16311 * subr.el (eval-after-load): If FILE is already loaded,
16312 evaluate FORM before it gets wrapped in more stuff. (Bug#10009)
16313
16314 2011-11-10 Glenn Morris <rgm@gnu.org>
16315
16316 * vc/vc-svn.el (vc-svn-create-repo, vc-svn-modify-change-comment):
16317 Call svn via vc-svn-command rather than vc-do-command.
16318 (vc-svn-command): Add --non-interactive. (Bug#9993)
16319 (vc-svn-update, vc-svn-merge-news): No need for --non-interactive.
16320
16321 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
16322 Add toggle-read-only. (Bug#7292)
16323 * files.el (toggle-read-only): Mention that it should only
16324 be used interactively. (Bug#10006)
16325
16326 2011-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
16327
16328 * progmodes/compile.el (compilation-error-regexp-alist-alist):
16329 Adjust regexp for OCaml warnings.
16330
16331 * electric.el (electric-pair-post-self-insert-function): Let user
16332 turn it off buffer-locally (bug#9932).
16333
16334 * progmodes/python.el (python-beginning-of-statement):
16335 Rewrite (bug#2703).
16336
16337 * progmodes/compile.el: Better handle TABs (bug#9749).
16338 (compilation-internal-error-properties)
16339 (compilation-next-error-function): Obey the target buffer's
16340 compilation-error-screen-columns.
16341
16342 2011-11-09 Juanma Barranquero <lekktu@gmail.com>
16343
16344 * progmodes/meta-mode.el: Remove obsolete comments.
16345 (meta-right-comment-regexp, meta-ignore-comment-regexp):
16346 Fix typos in docstrings.
16347
16348 2011-11-09 Martin Rudalics <rudalics@gmx.at>
16349
16350 * window.el (window-size-fixed-p): Rewrite doc-string.
16351 (window-resizable-p): Rename to window--resizable-p. Update callers.
16352 (window--resizable): New function. Make all callers of
16353 window-resizable call window--resizable instead.
16354 (window-resizable): Rewrite in terms of window--resizable.
16355
16356 2011-11-08 Glenn Morris <rgm@gnu.org>
16357
16358 * progmodes/delphi.el (delphi-mode-syntax-table):
16359 Let define-derived-mode define a proper syntax table. (Bug#9994)
16360
16361 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
16362
16363 * window.el: Stay away from defsubst.
16364 (window-list-no-nils): Remove.
16365 (window-state-get-1, window-state-get): Use backquote instead.
16366
16367 2011-11-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
16368
16369 * emacs-lisp/find-func.el (find-function-read):
16370 Fix incorrect use of default argument in `completing-read'.
16371
16372 2011-11-08 Martin Rudalics <rudalics@gmx.at>
16373
16374 * window.el (display-buffer-function, special-display-function):
16375 Mention display-buffer-record-window but do not mention
16376 help-setup parameter in doc-strings.
16377 (window-min-delta): Fix doc-string typo.
16378
16379 2011-11-08 Chong Yidong <cyd@gnu.org>
16380
16381 * window.el (window-total-height, window-total-width): Doc fix.
16382 (window-body-size): Move from C.
16383 (window-body-height, window-body-width): Move to C.
16384
16385 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
16386
16387 * window.el: Make special-display like display-buffer-alist (bug#9532).
16388 (display-buffer--special-action): New function, morphed
16389 from display-buffer--special.
16390 (display-buffer): Use it to handle special-display-buffers at higher
16391 priority (just after display-buffer-alist).
16392 (display-buffer-fallback-action, display-buffer--other-frame-action)
16393 (pop-to-buffer-same-window): Remove display-buffer--special.
16394
16395 2011-11-07 Glenn Morris <rgm@gnu.org>
16396
16397 * calendar/cal-menu.el (cal-menu-set-date-title):
16398 Do nothing if not in a calendar. (Bug#9976)
16399
16400 2011-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
16401
16402 * files.el (find-file): Always use selected-window.
16403
16404 2011-11-07 Martin Rudalics <rudalics@gmx.at>
16405
16406 * window.el (window-combinations): Make WINDOW argument
16407 mandatory. Rewrite doc-string.
16408 (walk-window-subtree, window-atom-check, window-min-delta)
16409 (window-max-delta, window--resize-this-window)
16410 (window--resize-root-window-vertically, window-tree)
16411 (balance-windows, window-state-put): Rewrite doc-strings as to
16412 not mention the term "subwindow".
16413 (window--resize-subwindows-skip-p): Rename to
16414 window--resize-child-windows-skip-p.
16415 (window--resize-subwindows-normal): Rename to
16416 window--resize-child-windows-normal.
16417 (window--resize-subwindows): Rename to
16418 window--resize-child-windows.
16419 (window-or-subwindow-p): Rename to window--in-subtree-p.
16420
16421 2011-11-07 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
16422
16423 * mail/rmail.el (rmail-get-new-mail, rmail-insert-inbox-text):
16424 Ensure that mbox format messages end in two newlines (Bug#9974).
16425
16426 2011-11-06 Chong Yidong <cyd@gnu.org>
16427
16428 * window.el (window-combination-p): Function deleted; its
16429 side-effect is not used in any existing code.
16430 (window-combinations, window-combined-p): Call window-*-child
16431 directly.
16432
16433 2011-11-05 Chong Yidong <cyd@gnu.org>
16434
16435 * window.el (window-valid-p): Rename from window-any-p.
16436 (window-size-ignore, window-state-get): Callers changed.
16437 (window-normalize-window): Rename from window-normalize-any-window.
16438 New arg LIVE-ONLY, replacing window-normalize-live-window.
16439 (window-normalize-live-window): Delete.
16440 (window-combination-p, window-combined-p, window-combinations)
16441 (walk-window-subtree, window-atom-root, window-min-size)
16442 (window-sizable, window-sizable-p, window-size-fixed-p)
16443 (window-min-delta, window-max-delta, window-resizable)
16444 (window-resizable-p, window-full-height-p, window-full-width-p)
16445 (window-current-scroll-bars, window-point-1, set-window-point-1)
16446 (window-at-side-p, window-in-direction, window-resize)
16447 (adjust-window-trailing-edge, maximize-window, minimize-window)
16448 (window-deletable-p, delete-window, delete-other-windows)
16449 (record-window-buffer, unrecord-window-buffer)
16450 (switch-to-prev-buffer, switch-to-next-buffer, window--delete)
16451 (quit-window, split-window, window-state-put)
16452 (set-window-text-height, fit-window-to-buffer)
16453 (shrink-window-if-larger-than-buffer): Callers changed.
16454
16455 2011-11-04 Eli Zaretskii <eliz@gnu.org>
16456
16457 * mail/rmail.el (rmail-simplified-subject): Decode subject with
16458 rfc2047-decode-string.
16459 (rmail-mime-toggle-hidden): Declare to avoid byte-compilation
16460 warnings.
16461
16462 * window.el (window-body-height, window-body-width): Mention in
16463 the doc string that the return values are in frame's canonical
16464 units. (Bug#9949)
16465
16466 2011-11-03 Alan Mackenzie <acm@muc.de>
16467
16468 * progmodes/cc-langs.el (c-nonlabel-token-2-key): New variable for
16469 change in cc-engine.el.
16470
16471 2011-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
16472
16473 * window.el (switch-to-buffer): Use `force-same-window' interactively.
16474
16475 2011-11-02 Martin Rudalics <rudalics@gmx.at>
16476
16477 * window.el (quit-window): Call unrecord-window-buffer after
16478 showing another buffer in the window. (Bug#9937)
16479 (bury-buffer): Call switch-to-prev-buffer with second argument `bury'.
16480
16481 2011-11-02 Juanma Barranquero <lekktu@gmail.com>
16482
16483 * vc/vc-bzr.el (vc-bzr-state, vc-bzr-after-dir-status):
16484 Accept status with more than 9 shelves. (Bug#9935)
16485 Reported by Colin D Bennett <colin@gibibit.com>.
16486
16487 2011-11-01 Martin Rudalics <rudalics@gmx.at>
16488
16489 * help.el (with-help-window): Don't reference
16490 temp-buffer-show-specifiers in doc-string.
16491
16492 2011-10-31 Andreas Schwab <schwab@linux-m68k.org>
16493
16494 * subr.el (keymap--menu-item-with-binding): Ignore item if not a
16495 menu-item.
16496
16497 2011-10-30 Vinicius Jose Latorre <viniciusjl@ig.com.br>
16498
16499 * whitespace.el: New version 13.2.2.
16500 (whitespace-newline-mode): Disable properly. Reported by Sarah
16501 <EmacsWiki>.
16502
16503 2011-10-30 Ulf Jasper <ulf.jasper@web.de>
16504
16505 * net/newst-treeview.el: Remove "Time-stamp".
16506 (newsticker--group-manage-orphan-feeds): Do not call
16507 newsticker--treeview-tree-update.
16508 (newsticker-treeview-update, newsticker-treeview):
16509 Call newsticker--treeview-tree-update if necessary.
16510
16511 2011-10-30 Martin Rudalics <rudalics@gmx.at>
16512
16513 * window.el (window-iso-combination-p, window-iso-combined-p)
16514 (window-iso-combinations): Remove "iso-" infix.
16515 Suggested by Chong Yidong.
16516 (window-min-size-1, window-size-fixed-1, window-min-delta-1)
16517 (window-max-delta-1, window-resize, window--resize-siblings)
16518 (window--resize-this-window, adjust-window-trailing-edge)
16519 (split-window, balance-windows-1)
16520 (shrink-window-if-larger-than-buffer):
16521 * calendar/calendar.el (calendar-generate-window):
16522 * help.el (resize-temp-buffer-window): Adjust callers accordingly.
16523
16524 2011-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
16525
16526 * eshell/esh-cmd.el (eshell-rewrite-for-command): Don't modify the list
16527 in place (bug#9907).
16528 (eshell-subcommand-arg-values, eshell-rewrite-named-command)
16529 (eshell-rewrite-if-command, eshell-rewrite-for-command)
16530 (eshell-structure-basic-command, eshell-rewrite-while-command)
16531 (eshell-invokify-arg, eshell-parse-pipeline, eshell-parse-command)
16532 (eshell-parse-subcommand-argument, eshell-parse-lisp-argument)
16533 (eshell-trap-errors, eshell-do-pipelines, eshell-do-eval)
16534 (eshell-do-pipelines-synchronously, eshell-eval-command):
16535 Use backquotes and prefer setq to set.
16536 (eshell-lookup-function, function-p-func, eshell-functionp): Remove.
16537 (eshell-macrop): Use functionp.
16538 (eshell-do-eval): Handle multiple expressions in `while' body.
16539
16540 2011-10-30 Chong Yidong <cyd@gnu.org>
16541
16542 * emulation/viper-cmd.el (viper-exec-change): Use push-mark
16543 instead of set-mark (Bug#9810).
16544
16545 2011-10-30 Chong Yidong <cyd@gnu.org>
16546
16547 * window.el (split-window-below, split-window-right): Rename from
16548 split-window-above-each-other and split-window-side-by-side
16549 respectively. All callers changed.
16550 (split-window-sensibly, split-window-sensibly): Use them.
16551 (split-window-keep-point): Doc fix.
16552
16553 * isearch.el: Add isearch-scroll property to split-window-below
16554 and split-window-right.
16555
16556 * follow.el (follow-mode):
16557 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
16558 * progmodes/ada-xref.el (ada-gdb-application):
16559 * emulation/vip.el (vip-buffer-in-two-windows):
16560 * image-dired.el (image-dired-dired-with-window-configuration):
16561 * dired-x.el (dired-do-find-marked-files):
16562 * dired.el (dired-pop-to-buffer):
16563 * bs.el (bs--show-with-configuration):
16564 * vc/emerge.el (emerge-setup-windows):
16565 * textmodes/two-column.el (2C-two-columns):
16566 * textmodes/reftex-toc.el (reftex-toc):
16567 * progmodes/gdb-mi.el (gdb-setup-windows):
16568 * progmodes/fortran.el (fortran-window-create):
16569 * net/newst-treeview.el (newsticker--treeview-window-init):
16570 * emulation/ws-mode.el (wordstar-C-o-map, wordstar-mode):
16571 * emulation/tpu-edt.el (tpu-gold-map):
16572 * emulation/crisp.el (crisp-mode-map):
16573 * calendar/calendar.el (calendar-basic-setup): Callers changed.
16574
16575 2011-10-29 Chong Yidong <cyd@gnu.org>
16576
16577 * subr.el (y-or-n-p): Add code for batch mode (Bug#9818).
16578
16579 * mouse.el (mouse-yank-primary): Push the mark (Bug#9894).
16580
16581 * textmodes/flyspell.el (flyspell-word): Fix char offset for
16582 forged Ispell output (Bug#7904).
16583
16584 * emacs-lisp/package.el (package-refresh-contents): Add autoload.
16585
16586 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
16587
16588 * doc-view.el: Avoid ugly errors about not finding nil.
16589 (doc-view-ghostscript-program, doc-view-dvipdfm-program)
16590 (doc-view-dvipdf-program, doc-view-unoconv-program)
16591 (doc-view-ps2pdf-program, doc-view-pdftotext-program):
16592 Avoid nil or absolute file name as default value.
16593 (doc-view-pdf->txt, doc-view-ps->pdf): Use executable-find here.
16594
16595 2011-10-28 Alan Mackenzie <acm@muc.de>
16596
16597 * progmodes/cc-defs.el (c-version): -> 5.32.2.
16598
16599 2011-10-28 Alan Mackenzie <acm@muc.de>
16600
16601 Amend the handling of c-beginning/end-of-defun in nested declaration
16602 scopes.
16603
16604 * progmodes/cc-vars.el (c-defun-tactic): Move here from
16605 cc-langs.el. Change it to a defcustom.
16606
16607 * progmodes/cc-langs.el (c-defun-tactic): Move this variable to
16608 cc-vars.el.
16609
16610 * progmodes/cc-engine.el (c-beginning-of-statement-1):
16611 Prevent "class foo : bar" being spuriously recognized as a label.
16612
16613 * progmodes/cc-cmds.el (c-narrow-to-most-enclosing-decl-block):
16614 Add parameter `inclusive' (to include enclosing braces in the region).
16615 (c-widen-to-enclosing-decl-scope): New function.
16616 (c-while-widening-to-decl-block): New macro.
16617 (c-beginning-of-defun, c-end-of-defun): Change algorithm to keep going
16618 outward for defun boundaries, and correspondingly change symbol
16619 `respect-enclosure' to `go-outward'.
16620 (c-declaration-limits): Change algorithm to report only the "innermost"
16621 defun's boundaries.
16622
16623 2011-10-28 Deniz Dogan <deniz@dogan.se>
16624
16625 * net/rcirc.el (rcirc-mode): Use hard newlines.
16626
16627 2011-10-28 Alan Mackenzie <acm@muc.de>
16628
16629 Amend to indent and fontify macros "which include their own semicolon"
16630 correctly, using the "virtual semicolon" mechanism.
16631
16632 * progmodes/cc-defs.el: Update "virtual semicolon" comments.
16633
16634 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
16635 Recode to scan one line at a time rather than having \n and \r
16636 explicitly in c-stmt-delim-chars (for some modes, e.g. AWK).
16637 (c-forward-label): Amend for virtual semicolons.
16638 (c-at-macro-vsemi-p, c-macro-vsemi-status-unknown-p): New functions.
16639
16640 * progmodes/cc-fonts.el (c-font-lock-declarations): Take account
16641 of the new C macros.
16642
16643 * progmodes/cc-langs.el (c-at-vsemi-p-fn):
16644 (c-vsemi-status-unknown-p-fn): Move to earlier in the file.
16645 (c-opt-cpp-symbol, c-line-comment-start-regexp): New language vars.
16646 (c-opt-cpp-macro-define): Make into a full language variable.
16647 (c-stmt-delim-chars, c-stmt-delim-chars-with-comma): Special value for
16648 AWK Mode (including \n, \r) removed, no longer needed.
16649
16650 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode):
16651 Invoke c-make-macro-with-semi-re.
16652
16653 * progmodes/cc-vars.el (c-macro-with-semi-re):
16654 (c-macro-names-with-semicolon): New variables.
16655 (c-make-macro-with-semi-re): New function.
16656
16657 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
16658
16659 * vc/log-edit.el: Fill empty field rather than adding new one.
16660 (log-edit-add-field): New function.
16661 (log-edit-insert-changelog): Use it.
16662
16663 2011-10-28 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
16664
16665 * mail/rmail.el (rmail-mode-map): Add M-C-f as in rmailsum (bug#9802).
16666
16667 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
16668
16669 * progmodes/gdb-mi.el: Warn the user when -i=mi is missing.
16670 (gdb--check-interpreter): New function.
16671 (gdb): Use it.
16672
16673 2011-10-27 Glenn Morris <rgm@gnu.org>
16674
16675 * emacs-lisp/cl-extra.el (most-positive-float, most-negative-float)
16676 (least-positive-float, least-negative-float)
16677 (least-positive-normalized-float, least-negative-normalized-float)
16678 (float-epsilon, float-negative-epsilon):
16679 Remove unnecessary declarations.
16680
16681 * emacs-lisp/cl-extra.el (cl-float-limits): Add doc string.
16682 * emacs-lisp/cl.el (most-positive-float, most-negative-float)
16683 (least-positive-float, least-negative-float)
16684 (least-positive-normalized-float, least-negative-normalized-float)
16685 (float-epsilon, float-negative-epsilon): Add doc-strings,
16686 based on those in cl.texi.
16687
16688 * files.el (set-visited-file-name): If the major-mode changed,
16689 reload the local variables. (Bug#9796)
16690
16691 2011-10-27 Chong Yidong <cyd@gnu.org>
16692
16693 * subr.el (change-major-mode-after-body-hook): New hook.
16694 (run-mode-hooks): Run it.
16695
16696 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
16697 Use change-major-mode-before-body-hook.
16698
16699 * simple.el (fundamental-mode):
16700 * emacs-lisp/derived.el (define-derived-mode): Revert 2010-04-28
16701 change introducing fundamental-mode-hook.
16702
16703 2011-10-26 Juanma Barranquero <lekktu@gmail.com>
16704
16705 * term/w32-win.el (w32-default-color-map): Declare obsolete (Bug#9785).
16706
16707 2011-10-26 Michael Albinus <michael.albinus@gmx.de>
16708
16709 * ido.el (ido-file-name-all-completions-1): Do not require
16710 tramp.el explicitly. (Bug#7583)
16711
16712 2011-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
16713
16714 * progmodes/octave-mod.el:
16715 * progmodes/octave-inf.el: Update maintainer.
16716
16717 2011-10-26 Chong Yidong <cyd@gnu.org>
16718
16719 * subr.el (with-wrapper-hook): Rewrite doc.
16720
16721 2011-10-25 Michael Albinus <michael.albinus@gmx.de>
16722
16723 * net/tramp-sh.el (tramp-sh-handle-file-directory-p): Return t for
16724 filenames "/method:foo:". (Bug#9793)
16725
16726 2011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
16727
16728 * comint.el (comint-get-old-input-default): Fix use-prompt-regexp case
16729 (bug#9865).
16730
16731 2011-10-24 Glenn Morris <rgm@gnu.org>
16732
16733 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix. (Bug#9819)
16734
16735 2011-10-24 Michael Albinus <michael.albinus@gmx.de>
16736
16737 * notifications.el: Add the requirement of a running D-Bus session
16738 bus to the Commentary.
16739
16740 2011-10-24 Juri Linkov <juri@jurta.org>
16741
16742 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
16743 `search-whitespace-regexp' only when `isearch-regexp' is non-nil.
16744 (Bug#9364)
16745
16746 2011-10-24 Juri Linkov <juri@jurta.org>
16747
16748 * info.el (Info-following-node-name-re): Add newline to the list
16749 of allowed characters for leading space. (Bug#9824)
16750
16751 2011-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
16752
16753 * progmodes/octave-inf.el (inferior-octave-mode-map):
16754 Fix C-c C-h binding.
16755 * progmodes/octave-mod.el (octave-help): Remove.
16756
16757 2011-10-23 Michael Albinus <michael.albinus@gmx.de>
16758
16759 Sync with Tramp 2.2.3.
16760
16761 * net/tramp-cache.el (top): Pacify byte-compiler using
16762 `init-file-user' and `site-run-file'.
16763
16764 * net/trampver.el: Update release number.
16765
16766 2011-10-23 Chong Yidong <cyd@gnu.org>
16767
16768 * files.el (toggle-read-only): Remove obsolete comment about
16769 version control.
16770
16771 * vc/vc-hooks.el (vc-toggle-read-only): Make it an obsolete alias
16772 for toggle-read-only. Note that this hasn't called vc-next-action
16773 since 2008-05-02, though it wasn't documented at the time.
16774
16775 * vc/ediff-init.el (ediff-toggle-read-only-function):
16776 Use toggle-read-only.
16777
16778 2011-10-22 Alan Mackenzie <bug-cc-mode@gnu.org>
16779
16780 Fix bug #9560, sporadic wrong indentation; improve instrumentation
16781 of c-parse-state.
16782
16783 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
16784 correct faulty logical expression.
16785 (c-parse-state-state, c-record-parse-state-state):
16786 (c-replay-parse-state-state): New defvar/defuns.
16787 (c-debug-parse-state): Use new functions.
16788
16789 2011-10-22 Martin Rudalics <rudalics@gmx.at>
16790
16791 * mouse.el (mouse-drag-line): Fix minibuffer resizing broken by
16792 last fix. Use window-in-direction correctly.
16793
16794 2011-10-21 Chong Yidong <cyd@gnu.org>
16795
16796 * progmodes/idlwave.el (idlwave-mode):
16797 * progmodes/vera-mode.el (vera-mode): No need to set
16798 require-final-newline; that's done in prog-mode.
16799 Suggested by Stefan Monnier.
16800
16801 2011-10-21 Martin Rudalics <rudalics@gmx.at>
16802
16803 * mouse.el (mouse-drag-window-above)
16804 (mouse-drag-move-window-bottom, mouse-drag-move-window-top)
16805 (mouse-drag-mode-line-1, mouse-drag-header-line)
16806 (mouse-drag-vertical-line-rightward-window): Remove.
16807 (mouse-drag-line): New function.
16808 (mouse-drag-mode-line, mouse-drag-header-line)
16809 (mouse-drag-vertical-line): Call mouse-drag-line.
16810 * window.el (window-at-side-p, windows-at-side): New functions.
16811
16812 2011-10-21 Ulrich Mueller <ulm@gentoo.org>
16813
16814 * tar-mode.el (tar-grind-file-mode):
16815 Fix handling of setuid/setgid, handle sticky bit. (Bug#9817)
16816
16817 2011-10-21 Chong Yidong <cyd@gnu.org>
16818
16819 * progmodes/idlwave.el (idlwave-mode):
16820 * progmodes/vera-mode.el (vera-mode):
16821 Use mode-require-final-newline.
16822
16823 2011-10-20 Glenn Morris <rgm@gnu.org>
16824
16825 * vc/vc.el (vc-next-action): Handle removed directories. (Bug#9781)
16826
16827 2011-10-20 Christoph Scholtes <cschol2112@googlemail.com>
16828
16829 * emulation/cua-base.el (cua-set-mark): Fix case of string.
16830
16831 2011-10-20 Chong Yidong <cyd@gnu.org>
16832
16833 * emulation/cua-base.el (cua-mode):
16834 * mail/footnote.el (footnote-mode):
16835 * mail/mailabbrev.el (mail-abbrevs-mode):
16836 * net/xesam.el (xesam-minor-mode):
16837 * progmodes/bug-reference.el (bug-reference-mode):
16838 * progmodes/cap-words.el (capitalized-words-mode):
16839 * progmodes/compile.el (compilation-minor-mode)
16840 (compilation-shell-minor-mode):
16841 * progmodes/gud.el (gud-tooltip-mode):
16842 * progmodes/hideif.el (hide-ifdef-mode):
16843 * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
16844 * progmodes/subword.el (subword-mode):
16845 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
16846 * progmodes/which-func.el (which-function-mode):
16847 * term/tvi970.el (tvi970-set-keypad-mode):
16848 * term/vt100.el (vt100-wide-mode):
16849 * textmodes/flyspell.el (flyspell-mode):
16850 * textmodes/ispell.el (ispell-minor-mode):
16851 * textmodes/nroff-mode.el (nroff-electric-mode):
16852 * textmodes/paragraphs.el (use-hard-newlines):
16853 * textmodes/refill.el (refill-mode):
16854 * textmodes/reftex.el (reftex-mode):
16855 * textmodes/rst.el (rst-minor-mode):
16856 * textmodes/sgml-mode.el (html-autoview-mode)
16857 (sgml-electric-tag-pair-mode):
16858 * textmodes/tex-mode.el (latex-electric-env-pair-mode):
16859 * vc/diff-mode.el (diff-auto-refine-mode, diff-minor-mode):
16860 * emulation/crisp.el (crisp-mode):
16861 * emacs-lisp/eldoc.el (eldoc-mode):
16862 * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fixes for new
16863 minor mode behavior.
16864
16865 2011-10-19 Juri Linkov <juri@jurta.org>
16866
16867 * descr-text.el (describe-char): Add #x2010 and #x2011 to
16868 the list of hard-coded chars with escape-glyph face.
16869
16870 2011-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
16871
16872 * vc/log-edit.el (log-edit-empty-buffer-p): Ignore empty headers.
16873
16874 2011-10-19 Michael Albinus <michael.albinus@gmx.de>
16875
16876 * net/tramp.el (tramp-connectable-p): Make a stronger check on a
16877 running process.
16878
16879 2011-10-19 Glenn Morris <rgm@gnu.org>
16880
16881 * vc/vc-bzr.el (vc-bzr-after-dir-status):
16882 Ignore ignored files. (Bug#9726)
16883
16884 2011-10-19 Chong Yidong <cyd@gnu.org>
16885
16886 Doc fix for minor modes, stating that an omitted argument enables
16887 the mode unconditionally when called from Lisp.
16888
16889 * abbrev.el (abbrev-mode):
16890 * allout.el (allout-mode):
16891 * autoinsert.el (auto-insert-mode):
16892 * autoarg.el (autoarg-mode, autoarg-kp-mode):
16893 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
16894 (global-auto-revert-mode):
16895 * battery.el (display-battery-mode):
16896 * composite.el (global-auto-composition-mode)
16897 (auto-composition-mode):
16898 * delsel.el (delete-selection-mode):
16899 * desktop.el (desktop-save-mode):
16900 * dired-x.el (dired-omit-mode):
16901 * dirtrack.el (dirtrack-mode):
16902 * doc-view.el (doc-view-minor-mode):
16903 * double.el (double-mode):
16904 * electric.el (electric-indent-mode, electric-pair-mode):
16905 * emacs-lock.el (emacs-lock-mode):
16906 * epa-hook.el (auto-encryption-mode):
16907 * follow.el (follow-mode):
16908 * font-core.el (font-lock-mode):
16909 * frame.el (auto-raise-mode, auto-lower-mode, blink-cursor-mode):
16910 * help.el (temp-buffer-resize-mode):
16911 * hilit-chg.el (highlight-changes-mode)
16912 (highlight-changes-visible-mode):
16913 * hi-lock.el (hi-lock-mode):
16914 * hl-line.el (hl-line-mode, global-hl-line-mode):
16915 * icomplete.el (icomplete-mode):
16916 * ido.el (ido-everywhere):
16917 * image-file.el (auto-image-file-mode):
16918 * image-mode.el (image-minor-mode):
16919 * iswitchb.el (iswitchb-mode):
16920 * jka-cmpr-hook.el (auto-compression-mode):
16921 * linum.el (linum-mode):
16922 * longlines.el (longlines-mode):
16923 * master.el (master-mode):
16924 * mb-depth.el (minibuffer-depth-indicate-mode):
16925 * menu-bar.el (menu-bar-mode):
16926 * minibuf-eldef.el (minibuffer-electric-default-mode):
16927 * mouse-sel.el (mouse-sel-mode):
16928 * msb.el (msb-mode):
16929 * mwheel.el (mouse-wheel-mode):
16930 * outline.el (outline-minor-mode):
16931 * paren.el (show-paren-mode):
16932 * recentf.el (recentf-mode):
16933 * reveal.el (reveal-mode, global-reveal-mode):
16934 * rfn-eshadow.el (file-name-shadow-mode):
16935 * ruler-mode.el (ruler-mode):
16936 * savehist.el (savehist-mode):
16937 * scroll-all.el (scroll-all-mode):
16938 * scroll-bar.el (scroll-bar-mode):
16939 * server.el (server-mode):
16940 * shell.el (shell-dirtrack-mode):
16941 * simple.el (auto-fill-mode, transient-mark-mode)
16942 (visual-line-mode, overwrite-mode, binary-overwrite-mode)
16943 (line-number-mode, column-number-mode, size-indication-mode)
16944 (auto-save-mode, normal-erase-is-backspace-mode, visible-mode):
16945 * strokes.el (strokes-mode):
16946 * time.el (display-time-mode):
16947 * t-mouse.el (gpm-mouse-mode):
16948 * tool-bar.el (tool-bar-mode):
16949 * tooltip.el (tooltip-mode):
16950 * type-break.el (type-break-mode-line-message-mode)
16951 (type-break-query-mode):
16952 * view.el (view-mode):
16953 * whitespace.el (whitespace-mode, whitespace-newline-mode)
16954 (global-whitespace-mode, global-whitespace-newline-mode):
16955 * xt-mouse.el (xterm-mouse-mode): Doc fix.
16956
16957 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
16958 Fix autogenerated docstring.
16959
16960 2011-10-19 Juri Linkov <juri@jurta.org>
16961
16962 * net/browse-url.el (browse-url-can-use-xdg-open): Support LXDE
16963 by checking environment variables "DESKTOP_SESSION" and
16964 "XDG_CURRENT_DESKTOP". (Bug#9779)
16965
16966 2011-10-19 Juri Linkov <juri@jurta.org>
16967
16968 * net/browse-url.el (browse-url-browser-function): Add "Chromium".
16969 (browse-url-chromium-program, browse-url-chromium-arguments):
16970 New defcustoms.
16971 (browse-url-default-browser): Check for `browse-url-chromium' and
16972 call `browse-url-chromium-program'.
16973 (browse-url-chromium): New command. (Bug#9779)
16974
16975 2011-10-18 Juanma Barranquero <lekktu@gmail.com>
16976
16977 * facemenu.el (list-colors-duplicates): On Windows, detect more
16978 duplicates by assuming that only colors matching "^System" are
16979 special "system colors". (Bug#9722)
16980
16981 2011-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
16982
16983 * vc/log-edit.el (log-edit): Add "Author:" header to encourage people
16984 to distinguish the author from the committer.
16985
16986 2011-10-18 Michael Albinus <michael.albinus@gmx.de>
16987
16988 * net/tramp.el (tramp-file-name-handler): Load Tramp packages silently.
16989
16990 2011-10-18 Jirka Kosek <jirka@kosek.cz> (tiny change)
16991
16992 * international/mule.el (sgml-html-meta-auto-coding-function):
16993 Add support for detecting encoding in HTML5 specified only as
16994 <meta charset="UTF-8">. Implementation just makes http-equiv and
16995 content-type parts from HTML4 encoding string optional. (Bug#9716)
16996
16997 2011-10-18 Glenn Morris <rgm@gnu.org>
16998
16999 * vc/vc.el (vc-initial-comment): Mark as obsolete. (Bug#9745)
17000
17001 2011-10-18 Chong Yidong <cyd@gnu.org>
17002
17003 * faces.el (cursor): Doc fix.
17004
17005 2011-10-17 Chong Yidong <cyd@gnu.org>
17006
17007 * font-lock.el (font-lock-maximum-size): Mark as obsolete.
17008
17009 2011-10-17 Ryan Barrett <emacs@ryanb.org> (tiny change)
17010
17011 * dirtrack.el (dirtrack): Support shell buffers with path
17012 prefixes, e.g. tramp-based remote shells. (Bug#9647)
17013
17014 2011-10-17 Teodor Zlatanov <tzz@lifelogs.com>
17015
17016 * json.el: Bump version to 1.3 and note change in History.
17017 (json-alist-p, json-plist-p): Rewrite to avoid recursion.
17018
17019 2011-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
17020
17021 * comint.el (comint-insert-input, comint-send-input)
17022 (comint-get-old-input-default, comint-backward-matching-input)
17023 (comint-next-prompt): Use nil instead of `input' for field property of
17024 past user input (bug#114).
17025
17026 * minibuffer.el (completion--replace): Inherit surrounding properties
17027 (bug#114).
17028 (minibuffer-complete-and-exit): Use it.
17029
17030 * comint.el (comint--table-subvert): Quote the all-completions output
17031 (bug#9160).
17032
17033 2011-10-17 Martin Rudalics <rudalics@gmx.at>
17034
17035 * ido.el (ido-default-buffer-method): Remove redundant :type entry.
17036
17037 * menu-bar.el (menu-bar-file-menu): Add entry for making new
17038 window on right of selected. (Bug#9350) Reword other window
17039 entries and separate them from frame entries.
17040
17041 2011-10-15 Glenn Morris <rgm@gnu.org>
17042
17043 * emacs-lisp/ert.el (ert--explain-equal-rec, ert-select-tests):
17044 Doc fixes.
17045
17046 2011-10-15 Chong Yidong <cyd@stupidchicken.com>
17047
17048 * net/network-stream.el (network-stream-open-starttls):
17049 Improve detection of failure due to lack of TLS support.
17050
17051 * mail/sendmail.el (sendmail-query-once): Tweak prompt message,
17052 putting the input text in front and in bold.
17053
17054 2011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
17055
17056 * pcmpl-unix.el (pcomplete/ssh): SSH does allow ganging.
17057
17058 * mpc.el (mpc-songs-jump-to): Don't burp if the user clicks in an
17059 empty buffer.
17060
17061 * mouse.el (mouse-drag-mode-line-1): Modify the end-event we pushed on
17062 unread-command-events rather than pushing yet-another event.
17063
17064 2011-10-14 Eli Zaretskii <eliz@gnu.org>
17065
17066 * mail/sendmail.el (sendmail-query-once): Improve the wording of
17067 the explanation of the possible choices. Make the options passed
17068 to completing-read shorter.
17069
17070 2011-10-13 Agustín Martín Domingo <agustin.martin@hispalinux.es>
17071
17072 * textmodes/flyspell.el (flyspell-large-region): Make sure
17073 extended character mode is used if defined (Bug#1339).
17074
17075 2011-10-13 Eli Zaretskii <eliz@gnu.org>
17076
17077 * simple.el (what-cursor-position): Fix the display of the
17078 character info for LRE, LRO, RLE, and RLO characters by appending
17079 an invisible PDF.
17080
17081 2011-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
17082
17083 * emacs-lisp/timer.el (with-timeout): Make sure we cancel the timer
17084 even in case of error; add debug spec; simplify data flow.
17085 (with-timeout-handler): Remove.
17086
17087 2011-10-12 Michael Albinus <michael.albinus@gmx.de>
17088
17089 Fix Bug#6019, Bug#9315.
17090
17091 * files.el (set-auto-mode): Call `file-name-sans-versions' for the
17092 complete `buffer-file-name', the local file name part could look
17093 remotely (for example on VMS).
17094
17095 * net/ange-ftp.el (ange-ftp-run-real-handler): Make it an alias of
17096 `tramp-run-real-handler'.
17097 (ange-ftp-fix-name-for-vms): Handle the case, where `name' is
17098 already quoted by '"'.
17099
17100 * net/tramp.el (tramp-rfn-eshadow-update-overlay): Ignore errors.
17101 Let `file-name-handler-alist' be nil, the local file name part
17102 could look remotely (for example on VMS).
17103
17104 2011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
17105
17106 * textmodes/flyspell.el (flyspell-word): Move with-local-quit
17107 from here...
17108 (flyspell-post-command-hook): ...to here.
17109
17110 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
17111
17112 * mail/sendmail.el (send-mail-function): Don't use sendmail-query-once
17113 if not needed.
17114 (sendmail-query-once): Remove OS dependencies. Make it a 3-way choice
17115 using completion. Protect against "slow" callers.
17116 Remove the "message hack".
17117
17118 2011-10-11 Juri Linkov <juri@jurta.org>
17119
17120 * isearch.el (isearch-lazy-highlight-word): New variable.
17121 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
17122 Use it. (Bug#9727)
17123
17124 2011-10-11 Glenn Morris <rgm@gnu.org>
17125
17126 * progmodes/f90.el (f90-next-statement): Ignore preprocessor lines,
17127 like f90-previous-statement does.
17128
17129 2011-10-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
17130
17131 * eshell/eshell.el (eshell-command): History should be saved
17132 only in interactive use, to avoid error.
17133
17134 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
17135
17136 * minibuffer.el (completion-file-name-table): Fix last change,
17137 i.e. ignore normal errors but not the other ones.
17138
17139 2011-10-10 Martin Rudalics <rudalics@gmx.at>
17140
17141 * window.el (special-display-buffer-names)
17142 (special-display-regexps): Remove some remnants of earlier
17143 changes from doc-strings.
17144 (quit-windows-on): New function.
17145
17146 * vc/vc.el (vc-revert, vc-rollback):
17147 * vc/vc-dispatcher.el (vc-finish-logentry): Call quit-windows-on
17148 instead of deleting windows. (Bug#4557) (Bug#5310) (Bug#5556)
17149 (Bug#6183) (Bug#7074) (Bug#7447)
17150
17151 2011-10-09 Martin Rudalics <rudalics@gmx.at>
17152
17153 * window.el (frame-auto-hide-function): Add version tag.
17154 (Bug#9699)
17155
17156 2011-10-09 Michael Albinus <michael.albinus@gmx.de>
17157
17158 * net/tramp.el (tramp-file-name-handler): Add 'debug to the error
17159 condition.
17160
17161 2011-10-09 Leo Liu <sdl.web@gmail.com>
17162
17163 * mail/smtpmail.el (smtpmail-send-data): Add a missing space.
17164 (Bug#9701)
17165
17166 2011-10-08 Glenn Morris <rgm@gnu.org>
17167
17168 * progmodes/f90.el (f90-calculate-indent): Give preprocessor lines
17169 before the first code statement zero indent. (Bug#9690)
17170
17171 2011-10-08 Chong Yidong <cyd@stupidchicken.com>
17172
17173 * simple.el (count-words-region): Always count in the region.
17174 Report the number of lines and characters too.
17175 (count-words): New command, which counts in the buffer if the
17176 region is inactive, as count-words-region used to.
17177 (count-words--message): New function. Handle plurals.
17178 (count-lines-region): Make it an alias for count-words-region.
17179
17180 * bindings.el (esc-map): Replace count-lines-region with
17181 count-words-region.
17182
17183 2011-10-08 Martin Rudalics <rudalics@gmx.at>
17184
17185 * window.el (window--delete): Delete dedicated frame
17186 unconditionally when argument KILL is non-nil. (Bug#9699)
17187 (switch-to-buffer): Fix doc-string typo.
17188
17189 2011-10-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
17190
17191 * eshell/eshell.el (eshell-command): Avoid using hooks.
17192
17193 2011-10-07 Chong Yidong <cyd@stupidchicken.com>
17194
17195 * bindings.el ([M-left],[M-right]): Bind to left-word and
17196 right-word respectively.
17197
17198 2011-10-07 Glenn Morris <rgm@gnu.org>
17199
17200 * cus-start.el (debug-on-quit): Fix custom type.
17201
17202 2011-10-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
17203
17204 * subr.el (define-key-after): Clarify that the function is not
17205 useful for non-menu keymaps.
17206
17207 * progmodes/gdb-mi.el (gdb): Fix typo in doc string.
17208
17209 2011-10-06 Thierry Volpiatto <thierry.volpiatto@gmail.com>
17210
17211 * eshell/eshell.el (eshell-command): Enable `eshell-mode' only
17212 in current minibuffer (Fix bug with recursive minibuffers).
17213
17214 2011-10-06 Chong Yidong <cyd@stupidchicken.com>
17215
17216 * progmodes/gdb-mi.el (gdb): Doc fix.
17217
17218 2011-10-05 Martin Rudalics <rudalics@gmx.at>
17219
17220 * window.el (frame-auto-hide-function): New option replacing
17221 frame-auto-delete. Suggested by Stefan Monnier.
17222 (window--delete): Call frame-auto-hide-function instead of
17223 investigating frame-auto-delete.
17224 (window-point-1, set-window-point-1): New functions.
17225 (window-in-direction, record-window-buffer, window-state-get-1)
17226 (display-buffer-record-window): Use window-point-1 instead of
17227 window-point.
17228 (set-window-buffer-start-and-point): Use set-window-point-1.
17229
17230 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
17231
17232 * emacs-lisp/edebug.el: Heed checkdoc recommendations.
17233
17234 2011-10-05 Glenn Morris <rgm@gnu.org>
17235
17236 * progmodes/perl-mode.el (perl-electric-terminator): Doc fix.
17237 (perl-calculate-indent): Suppress scan errors. (Bug#2205)
17238
17239 2011-10-05 Leo Liu <sdl.web@gmail.com>
17240
17241 * subr.el (read-char-choice): Fix argument to buffer-live-p which
17242 works with buffer object.
17243
17244 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
17245
17246 * mpc.el (mpc-tool-bar-map): Add labels.
17247
17248 2011-10-04 Glenn Morris <rgm@gnu.org>
17249
17250 * calendar/holidays.el (calendar-check-holidays): Doc fix.
17251
17252 2011-10-04 Martin Rudalics <rudalics@gmx.at>
17253
17254 * window.el (window--delete): New function.
17255 (frame-auto-delete): Resuscitate option.
17256 (bury-buffer, replace-buffer-in-windows)
17257 (quit-window): Rewrite using window--delete.
17258 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
17259 Pass display-buffer-mark-dedicated to window--display-buffer-2
17260 (Bug#9639).
17261
17262 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
17263
17264 * pcmpl-unix.el (pcomplete/scp): Don't assume pcomplete-all-entries
17265 returns a list (bug#9554). Add remote file name completion.
17266 * comint.el (comint--table-subvert): Curry and get quote&unquote
17267 functions as arguments.
17268 (comint--complete-file-name-data): Adjust call accordingly.
17269 * pcomplete.el (pcomplete--table-subvert): Remove.
17270 (pcomplete-completions-at-point): Use comint--table-subvert instead.
17271
17272 * minibuffer.el (completion-table-case-fold): Use currying.
17273 (completion--styles-type, completion--cycling-threshold-type):
17274 New constants.
17275 (completion-styles, completion-category-overrides)
17276 (completion-cycle-threshold): Use them.
17277 * pcomplete.el (pcomplete-completions-at-point): Adjust call to
17278 completion-table-case-fold.
17279
17280 2011-10-03 Stephen Berman <stephen.berman@gmx.net>
17281
17282 * minibuffer.el (completion-category-overrides): Fix type of styles
17283 and add more user friendly tags (bug#9660).
17284
17285 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
17286
17287 * international/mule-cmds.el: Fix abuses of apply-partially (bug#9661).
17288 (mule-input-method-string): New widget.
17289 (default-input-method, language-info-custom-alist): Use it.
17290
17291 2011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
17292
17293 * pcomplete.el: Require comint.
17294 (pcomplete--common-suffix): Remove.
17295 (pcomplete--common-quoted-suffix): Use comint--common-suffix instead.
17296 (pcomplete--table-subvert): Sync with comint--table-subvert.
17297 (pcomplete--entries): Use comint-completion-file-name-table.
17298 * comint.el (comint-unquote-filename): Simplify.
17299 (comint-completion-file-name-table): New function (bug#9616).
17300 (comint--complete-file-name-data): Use it.
17301
17302 * pcmpl-gnu.el (pcmpl-gnu-with-file-buffer): New macro (bug#9643).
17303 (pcmpl-gnu-tar-buffer): Remove.
17304 (pcmpl-gnu-with-file-buffer): Use it to avoid leaving the tar's buffer
17305 around. Make sure pcomplete-suffix-list is only changed temporarily.
17306 Don't look inside the tar's file if it's too large.
17307
17308 2011-10-01 Chong Yidong <cyd@stupidchicken.com>
17309
17310 * cus-edit.el (custom-mode-map):
17311 * epa.el (epa-key-list-mode-map):
17312 * man.el (Man-mode-map):
17313 * startup.el (splash-screen-keymap):
17314 * simple.el (special-mode-map): Use scroll-up-command and
17315 scroll-down-command.
17316
17317 * progmodes/idlw-help.el (idlwave-help-mode-map):
17318 * progmodes/ebrowse.el (ebrowse-electric-position-mode-map):
17319 * net/newst-plainview.el (newsticker-mode-map):
17320 * emulation/ws-mode.el (wordstar-mode-map):
17321 * emulation/vi.el (vi-com-map):
17322 * calc/calc-graph.el (calc-graph-show-dumb):
17323 * term/sun.el (terminal-init-sun):
17324 * term/ns-win.el (global-map):
17325 * progmodes/grep.el (grep-mode-map):
17326 * progmodes/ebrowse.el (ebrowse-electric-list-mode-map):
17327 * mail/rmail.el (rmail-mode-map):
17328 * progmodes/cpp.el (cpp-edit-mode-map): Likewise.
17329
17330 * custom.el (custom-safe-themes, load-theme): Treat value of t for
17331 custom-safe-themes as special.
17332
17333 2011-10-01 Julien Danjou <julien@danjou.info>
17334
17335 * notifications.el (notifications-notify): Fix docstring.
17336
17337 2011-10-01 Per Starbäck <per@starback.se>
17338
17339 * pcmpl-gnu.el (pcomplete/tar): Fix tar-header-name call. (Bug#9643)
17340
17341 2011-09-30 Martin Rudalics <rudalics@gmx.at>
17342
17343 * startup.el (command-line-1): Fix last fix by inserting
17344 initial-scratch-message into *scratch* before displaying it.
17345 (Bug#9605) and (Bug#9636)
17346
17347 2011-09-29 Eli Zaretskii <eliz@gnu.org>
17348
17349 * simple.el (line-move): If auto-hscroll-mode is disabled and the
17350 window is hscrolled, move by logical lines. (Bug#9607)
17351 (line-move-visual): Update the doc string to the above effect.
17352
17353 2011-09-29 Martin Rudalics <rudalics@gmx.at>
17354
17355 * window.el (display-buffer-record-window): When WINDOW is the
17356 selected window use `point' instead of `window-point'. (Bug#9626)
17357
17358 * startup.el (command-line-1): Use insert-before-markers when
17359 inserting initial-scratch-message. (Bug#9605)
17360
17361 * help.el (help-window): Remove variable.
17362
17363 2011-09-29 Glenn Morris <rgm@gnu.org>
17364
17365 * pcmpl-cvs.el (pcomplete/cvs): Add "status" handler.
17366
17367 2011-09-29 Juanma Barranquero <lekktu@gmail.com>
17368
17369 * descr-text.el (describe-char-categories): Accept category
17370 descriptions more than one line long.
17371
17372 2011-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
17373
17374 * simple.el (delete-trailing-whitespace): Fix last change.
17375
17376 * progmodes/perl-mode.el (perl-syntax-propertize-function):
17377 Don't confuse "y => 3" as the beginning of a `y' operation.
17378
17379 * emacs-lisp/debug.el (debug-convert-byte-code): Don't assume the
17380 object has more than 4 slots (bug#9613).
17381
17382 2011-09-28 Juanma Barranquero <lekktu@gmail.com>
17383
17384 * subr.el (with-output-to-temp-buffer):
17385 * net/quickurl.el (quickurl, quickurl-browse-url):
17386 Fix typos in docstrings.
17387
17388 2011-09-27 Eli Zaretskii <eliz@gnu.org>
17389
17390 * minibuffer.el (completion-styles)
17391 (completion-category-overrides): Cross reference each other in doc
17392 strings.
17393
17394 2011-09-27 Glenn Morris <rgm@gnu.org>
17395
17396 * pcmpl-cvs.el (pcmpl-cvs-entries): Update for Emacs 22.1 changes
17397 to split-string. (Bug#9606)
17398
17399 2011-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
17400
17401 * mail/smtpmail.el (smtpmail-via-smtp): Fix STARTTLS detection
17402 (bug#9615).
17403
17404 2011-09-27 Chong Yidong <cyd@stupidchicken.com>
17405
17406 * emacs-lisp/package.el (list-packages): Fix echo area message.
17407
17408 2011-09-27 Leo Liu <sdl.web@gmail.com>
17409
17410 * ido.el (ido-read-internal): Accept cons cell HIST arg.
17411
17412 2011-09-25 Michael Albinus <michael.albinus@gmx.de>
17413
17414 * net/dbus.el (dbus-unregister-object): Don't release services for
17415 registered signals. (Bug#9581)
17416
17417 2011-09-25 Teodor Zlatanov <tzz@lifelogs.com>
17418
17419 * progmodes/cfengine.el (cfengine-auto-mode): Add convenience
17420 function that picks between cfengine 2 and 3 support
17421 automatically. Update docs accordingly.
17422
17423 2011-09-22 Kenichi Handa <handa@m17n.org>
17424
17425 * language/ind-util.el (indian-tml-base-table): Add TAMIL DIGIT
17426 ZERO.
17427 (indian-itrans-v5-table-for-tamil): New variable.
17428 (indian-tml-itrans-v5-hash): Use the above variable (Bug#9336).
17429
17430 2011-09-22 Ken Manheimer <ken.manheimer@gmail.com>
17431
17432 * allout.el (allout-this-command-hid-stuff): Buffer-local variable
17433 that's true if the current command involved collapsing of text.
17434 It's reset to false at the beginning of the next command.
17435 (allout-post-command-business): Move the cursor to the beginning
17436 of entry if the cursor is hidden and collapsing activity just
17437 happened.
17438
17439 2011-09-24 Chong Yidong <cyd@stupidchicken.com>
17440
17441 * mouse.el (mouse-drag-track): Set scroll-margin to 0 while
17442 tracking (Bug#9541).
17443
17444 2011-09-24 Ulf Jasper <ulf.jasper@web.de>
17445
17446 * net/newst-reader.el (newsticker-html-renderer)
17447 (newsticker-show-news): Automatically load html rendering package
17448 if newsticker-html-renderer is set. Fixes "Warning: defvar ignored
17449 because w3m-fill-column is let-bound" and the error "Symbol's value
17450 as variable is void: w3m-fill-column".
17451
17452 2011-09-24 Michael Albinus <michael.albinus@gmx.de>
17453
17454 * net/dbus.el (dbus-unregister-object): Remove match rule of signals.
17455 Release services only if they are defined. (Bug#9581)
17456
17457 2011-09-23 Richard Stallman <rms@gnu.org>
17458
17459 * textmodes/paragraphs.el (forward-sentence): For backwards case,
17460 distinguish start of paragraph from start of its text.
17461
17462 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs): Autoload.
17463
17464 * mail/rmail.el (rmail-view-buffer-kill-buffer-hook): New function.
17465 (rmail-generate-viewer-buffer): Put that hook on view buffer.
17466 (rmail-mode-kill-buffer-hook): Override that hook, to kill view buffer.
17467
17468 2011-09-23 Andreas Schwab <schwab@linux-m68k.org>
17469
17470 * international/mule-diag.el (mule-diag): Insert a newline after
17471 each fontset description.
17472
17473 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
17474
17475 * simple.el (delete-trailing-whitespace):
17476 Document last change; simplify.
17477
17478 2011-09-23 Peter J. Weisberg <pj@irregularexpressions.net>
17479
17480 * simple.el (delete-trailing-whitespace): Also delete
17481 extra newlines at the end of the buffer.
17482
17483 * textmodes/picture.el: Make motion commands obey shift-select-mode.
17484 (picture-newline): Use forward-line so as to ignore fields.
17485
17486 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
17487
17488 * subr.el (with-wrapper-hook): Fix edebug spec.
17489
17490 2011-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
17491
17492 * simple.el (kill-line): Note effect of `show-trailing-whitespace'
17493 (bug#4538).
17494
17495 2011-09-23 Michael Albinus <michael.albinus@gmx.de>
17496
17497 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
17498 Fix nasty bug using wrong cached values.
17499
17500 2011-09-23 Alan Mackenzie <acm@muc.de>
17501
17502 * progmodes/cc-defs.el (c-version): Increase to 5.31.9.
17503
17504 2011-09-23 Chong Yidong <cyd@stupidchicken.com>
17505
17506 * window.el (pop-to-buffer): Ensure right window is selected if we
17507 chose another frame.
17508
17509 2011-09-22 Eli Zaretskii <eliz@gnu.org>
17510
17511 * simple.el (what-cursor-position): Use get-char-property-change
17512 and next-single-char-property-change, to be able to show display
17513 properties that come from overlays as well as text properties.
17514
17515 2011-09-22 Chong Yidong <cyd@stupidchicken.com>
17516
17517 * window.el (pop-to-buffer-same-window): New (reinstated) fun.
17518
17519 * cmuscheme.el (run-scheme, switch-to-scheme):
17520 * cus-edit.el (customize-group, custom-buffer-create)
17521 (customize-browse):
17522 * info.el (info):
17523 * shell.el (shell):
17524 * mail/sendmail.el (mail):
17525 * progmodes/inf-lisp.el (inferior-lisp): Use it (Bug#9532).
17526
17527 2011-09-22 Richard Stallman <rms@gnu.org>
17528
17529 * textmodes/paragraphs.el (forward-sentence): When setting PAR-BEG,
17530 move back only to line beg, don't move back over blank lines.
17531
17532 2011-09-22 Michael Albinus <michael.albinus@gmx.de>
17533
17534 * files.el (copy-directory): Set directory attributes only in case
17535 they could be retrieved from the source directory. (Bug#9565)
17536
17537 2011-09-22 Dima Kogan <dkogan@secretsauce.net> (tiny change)
17538
17539 * progmodes/hideshow.el (hs-looking-at-block-start-p)
17540 (hs-find-block-beginning, hs-hide-level-recursive):
17541 Ignore strings as well as comments. (Bug#9502)
17542
17543 2011-09-22 Andrew Schein <andrew@andrewschein.com> (tiny change)
17544
17545 * progmodes/sql.el (sql-comint-postgres):
17546 Convert port number to a string. (Bug#9566)
17547
17548 2011-09-22 Martin Rudalics <rudalics@gmx.at>
17549
17550 * window.el (quit-window): Undedicate window when switching to
17551 previous buffer. Reported by Thierry Volpiatto
17552 <thierry.volpiatto@gmail.com>.
17553 (special-display-popup-frame): When popping up a new frame reset
17554 its previous buffers to nil. Simplify code.
17555
17556 2011-09-21 Michael Albinus <michael.albinus@gmx.de>
17557
17558 * net/tramp.el (tramp-handle-shell-command): Set process sentinel
17559 and process filter, as done also in `shell-command'.
17560
17561 2011-09-21 Martin Rudalics <rudalics@gmx.at>
17562
17563 * window.el (set-window-buffer-start-and-point):
17564 Call set-window-start with NOFORCE argument t.
17565 Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
17566 (quit-window): Reword doc-string. Handle new format of
17567 quit-restore parameter. Don't delete window if it has a
17568 previous buffer we can show instead of the present one.
17569 (display-buffer-record-window): Rewrite using a new format for
17570 the quit-restore window parameter
17571 (special-display-popup-frame, display-buffer-same-window)
17572 (display-buffer-reuse-window, display-buffer-pop-up-frame)
17573 (display-buffer-pop-up-window, display-buffer-use-some-window):
17574 Adapt symbol passed to display-buffer-record-window.
17575 * help.el (help-window-setup): Handle new format of quit-restore
17576 parameter.
17577
17578 2011-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
17579
17580 * faces.el (face-list): Fix docstring (bug#9564).
17581
17582 * window.el (display-buffer--action-function-custom-type):
17583 Don't include internal functions in the Custom interface.
17584
17585 2011-09-20 Juri Linkov <juri@jurta.org>
17586
17587 * info.el (Info-history-skip-intermediate-nodes): New defcustom.
17588 (Info-forward-node, Info-backward-node, Info-next-preorder)
17589 (Info-last-preorder): Use it. (Bug#9528)
17590
17591 2011-09-20 Juri Linkov <juri@jurta.org>
17592
17593 * info.el (Info-last-preorder): Visit last menu item only when
17594 `Info-scroll-prefer-subnodes' is non-nil (third test-case of bug#9528).
17595
17596 2011-09-20 Julien Danjou <julien@danjou.info>
17597
17598 * password-cache.el (password-cache-remove): Remove entries even if the
17599 value is nil, so that password with a nil value (negative caching) is
17600 possible to invalidate.
17601
17602 2011-09-20 Lawrence Mitchell <wence@gmx.li>
17603
17604 * progmodes/f90.el (f90-break-line): If breaking inside comment delete
17605 all whitespace around breakpoint. (Bug#9553)
17606 (f90-find-breakpoint): Only break at whitespace inside a comment.
17607
17608 2011-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
17609
17610 * minibuffer.el (completion-file-name-table): Keep track of errors.
17611 (completion-table-with-predicate): Handle the case where pred1 is nil.
17612 * pcomplete.el (pcomplete-completions-at-point): Simplify.
17613
17614 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
17615
17616 * emacs-lisp/debug.el (debugger-args): Give it a docstring.
17617 (debugger-return-value): Signal an error if the debugging context does
17618 not await any return value.
17619
17620 * ps-mule.el (ps-mule-plot-string): Don't inf-loop (bug#5108).
17621 * image-mode.el (image-toggle-display-text)
17622 (image-toggle-display-image): Stay away from evil `intangible'.
17623
17624 2011-09-19 Leo Liu <sdl.web@gmail.com>
17625
17626 * replace.el (occur-revert-arguments): Make it permanent-local.
17627 (occur-mode): Don't call font-lock-defontify.
17628
17629 2011-09-19 Chong Yidong <cyd@stupidchicken.com>
17630
17631 * net/ldap.el (ldap-search-internal): Don't push empty search
17632 result (Bug#9508).
17633
17634 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
17635
17636 * whitespace.el (whitespace-newline-mode): Disable it right (bug#9550).
17637
17638 2011-09-19 Michael Albinus <michael.albinus@gmx.de>
17639
17640 * net/tramp-sh.el (tramp-inline-compress-commands): Add "xz".
17641 Suggested by Liam Stitt <stittl@cuug.ab.ca>.
17642
17643 2011-09-18 Juri Linkov <juri@jurta.org>
17644
17645 * buff-menu.el (Buffer-menu-mode-map):
17646 * dired.el (dired-mode-map):
17647 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map)
17648 (lisp-interaction-mode-map):
17649 * emacs-lisp/package.el (package-menu-mode-map):
17650 * epa.el (epa-key-list-mode-map):
17651 * menu-bar.el (menu-bar-showhide-tool-bar-menu)
17652 (menu-bar-options-menu):
17653 * outline.el (outline-mode-menu-bar-map):
17654 * vc/vc-bzr.el (vc-bzr-shelve-menu-map, vc-bzr-extra-menu-map):
17655 * vc/vc-dir.el (vc-dir-menu-map):
17656 * vc/vc-git.el (vc-git-stash-menu-map, vc-git-extra-menu-map):
17657 Capitalize non-function content words in menu item strings.
17658
17659 * dired.el (dired-mode-map): Add menu item for
17660 `image-dired-dired-toggle-marked-thumbs'.
17661
17662 2011-09-18 Juri Linkov <juri@jurta.org>
17663
17664 * isearch.el (isearch-edit-string): Bind `isearch-new-case-fold'
17665 to `isearch-case-fold-search' and restore its original value
17666 after the `isearch-mode' call.
17667
17668 2011-09-18 Juri Linkov <juri@jurta.org>
17669
17670 * progmodes/grep.el (grep-process-setup): Don't check code for 1
17671 because `zgrep' returns 1 for successful matches (bug#9226).
17672
17673 2011-09-18 Juri Linkov <juri@jurta.org>
17674
17675 * info.el (Info-extract-menu-node-name): Check the second match
17676 for empty string (second test-case of bug#9528).
17677 (Info-last-preorder): Let-bind `Info-history' to nil to not add
17678 intermediate nodes to the history (first test-case of bug#9528).
17679
17680 2011-09-18 Juri Linkov <juri@jurta.org>
17681
17682 * info.el (Info-mode-syntax-table): New variable.
17683 (Info-mode): Set `:syntax-table' to `Info-mode-syntax-table' (bug#3312).
17684
17685 2011-09-18 Juri Linkov <juri@jurta.org>
17686
17687 * info.el (Info-file-supports-index-cookies):
17688 Increment line-beginning-position's arg from 3 to 4 because makeinfo
17689 outputs one more line for long file names (bug#4142).
17690
17691 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
17692
17693 * newcomment.el (comment-normalize-vars): If prompting for
17694 comment-start, set comment-start-skip too (Bug#8424).
17695
17696 2011-09-18 Johan Bockgård <bojohan@gnu.org>
17697
17698 * icomplete.el: Fix previous fix of Bug#5849.
17699 (icomplete-mode): Don't set completion-show-inline-help.
17700 (icomplete-minibuffer-setup): Set completion-show-inline-help
17701 locally during icompletion.
17702
17703 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
17704
17705 * woman.el (woman2-process-escapes): Don't delete unrecognized
17706 escapes (Bug#7843).
17707
17708 * files.el (inhibit-first-line-modes-regexps): Add image files.
17709 (hack-local-variables-prop-line): Return nil for malformed
17710 prop-lines (Bug#9044).
17711
17712 2011-09-18 Michael Albinus <michael.albinus@gmx.de>
17713
17714 * net/tramp.el (top): Don't require 'shell.
17715 (tramp-methods): Fix docstring.
17716 (tramp-get-remote-tmpdir): New defun, moved from tramp-sh.el.
17717 Return complete remote file name. Handle "smb" case.
17718 Use `tramp-tmpdir', if defined for the respective method.
17719 (tramp-make-tramp-temp-file): Adapt call of `tramp-get-remote-tmpdir'.
17720
17721 * net/tramp-compat.el (top): Require 'shell.
17722
17723 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
17724 (tramp-maybe-open-connection): Use `tramp-file-name-real-host' for
17725 `tramp-current-host'.
17726 (tramp-get-remote-tmpdir): Remove.
17727
17728 * net/tramp-smb.el (tramp-methods): Add `tramp-remote-shell' and
17729 `tramp-tmpdir' entries.
17730 (tramp-smb-errors): Add "NT_STATUS_IMAGE_ALREADY_LOADED".
17731 (tramp-smb-handle-file-attributes): Ignore errors.
17732 (tramp-smb-wait-for-output): Check also for process end.
17733
17734 2011-09-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
17735
17736 * mail/smtpmail.el (smtpmail-via-smtp): Ignore errors that arise
17737 when sending QUIT (bug#9312).
17738
17739 2011-09-17 Chong Yidong <cyd@stupidchicken.com>
17740
17741 * replace.el (occur-mode-map): Rebind occur-edit-mode to "e" (Bug#8463).
17742 (occur-edit-mode-map): Bind C-c C-c to occur-cease-edit and C-o to
17743 occur-mode-display-occurrence.
17744 (occur-edit-mode): Add usage message.
17745 (occur-cease-edit): New command.
17746 (occur-after-change-function): Use text properties to find the
17747 position of the prefix text.
17748 (occur-engine): Set stickiness of prefix text properties.
17749
17750 2011-09-17 Glenn Morris <rgm@gnu.org>
17751
17752 * progmodes/etags.el (complete-tag):
17753 Fix call to completion-in-region. (Bug#9526)
17754
17755 2011-09-17 Juri Linkov <juri@jurta.org>
17756
17757 * textmodes/ispell.el (ispell-word): Add to the error message
17758 the word, ispell program name and current dictionary (bug#9121).
17759 (ispell-tex-arg-end): Capitalize "error" in the error message.
17760
17761 2011-09-17 Andreas Schwab <schwab@linux-m68k.org>
17762
17763 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix overflow
17764 check. (Bug#4251)
17765
17766 2011-09-17 Juri Linkov <juri@jurta.org>
17767
17768 * window.el (window-safe-min-height, window-safe-min-width):
17769 Fix typos (followup to bug#9522).
17770
17771 2011-09-17 Sven Joachim <svenjoac@gmx.de>
17772
17773 * window.el (window-min-width, window-state-put): Fix typos (bug#9522).
17774
17775 2011-09-16 Eli Zaretskii <eliz@gnu.org>
17776
17777 * simple.el (line-move): If goal-column is set, move by logical
17778 lines, not by display lines. (Bug#971)
17779 (next-line, previous-line, goal-column, line-move-visual): Doc fix
17780 to reflect the above change.
17781
17782 2011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
17783
17784 * image.el (imagemagick-register-types): Use regexp-opt.
17785
17786 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
17787
17788 * window.el (display-buffer-base-action): Rename from
17789 display-buffer-default-action. Make default value empty.
17790 (display-buffer-overriding-action): Convert to defvar.
17791 (display-buffer-fallback-action): New var.
17792
17793 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
17794
17795 * emacs-lisp/package.el (package-alist): Fix risky-local-variable
17796 declaration.
17797 (package--add-to-archive-contents): If there is a duplicate entry
17798 with an older version, remove it.
17799 (package-menu-mark-delete, package-menu-mark-install)
17800 (package-menu-mark-unmark): Make unused args optional.
17801 (package-menu-mark-obsolete-for-deletion):
17802 Use package-menu-get-status instead of a regexp search.
17803 (package-menu-get-status): Use tabulated-list-entry.
17804 (package-menu-mark-upgrades): New command.
17805 (package-menu-mode-map): Bind it to U. Add it to menu bar.
17806 (package-menu-execute): Do installation before deletion.
17807 (package-menu-refresh, package-menu-execute): Use derived-mode-p
17808 instead of checking major-mode.
17809 (package-menu--find-upgrades): New function.
17810
17811 2011-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
17812
17813 * mail/smtpmail.el (smtpmail-send-command): Don't include AUTH
17814 passwords in the log buffer.
17815 (smtpmail-process-filter): Update the process marker so that the
17816 "broken by peer" status message is inserted in the right place.
17817
17818 2011-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
17819
17820 * textmodes/bibtex.el (bibtex-complete-string-cleanup)
17821 (bibtex-complete-crossref-cleanup): Adjust to accommodate needs of
17822 bibtex-completion-at-point-function.
17823 (bibtex-completion-at-point-function): Use them.
17824
17825 * newcomment.el (comment-add, comment-valid-prefix-p): Docfix.
17826
17827 * mpc.el (mpc-constraints-tag-lookup): New function.
17828 (mpc-constraints-restore): Use it to make jumping to "album=Foo" apply
17829 also to browser "album|playlist".
17830
17831 2011-09-14 Juri Linkov <juri@jurta.org>
17832
17833 * isearch.el (isearch-fail-pos): Add new arg `msg'. Doc fix.
17834 (isearch-edit-string): Use length of `isearch-string' when
17835 `isearch-fail-pos' returns nil.
17836 (isearch-message): Remove duplicate code and call
17837 `isearch-fail-pos' with arg `t'.
17838
17839 2011-09-14 Chong Yidong <cyd@stupidchicken.com>
17840
17841 * replace.el (occur-mode-goto-occurrence): Don't force using other
17842 window (Bug#9499).
17843
17844 * dired-aux.el (dired-do-chmod): Don't provide initial input.
17845
17846 2011-09-14 Martin Rudalics <rudalics@gmx.at>
17847
17848 * window.el (display-buffer-window): Remove.
17849 (display-buffer-record-window): Use help-setup window parameter
17850 instead of variable display-buffer-window.
17851 (display-buffer-function, special-display-buffer-names)
17852 (special-display-function): Mention help-setup parameter instead
17853 of display-buffer-window in doc-string.
17854 * help.el (help-window-setup): New argument help-window.
17855 Use help-window-setup parameter instead of display-buffer-window.
17856 Reword some messages.
17857 (with-help-window): Pass window used for displaying the buffer
17858 to help-window-setup. Don't set display-buffer-window.
17859
17860 2011-09-13 Glenn Morris <rgm@gnu.org>
17861
17862 * emacs-lisp/debug.el (debugger-make-xrefs):
17863 Preserve point. (Bug#9462)
17864
17865 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
17866
17867 * window.el (window-deletable-p): Use next-frame.
17868
17869 2011-09-13 Martin Rudalics <rudalics@gmx.at>
17870
17871 * window.el (window-auto-delete): Remove.
17872 (window-deletable-p): Remove argument FORCE. Don't deal with
17873 dedication and previous buffers.
17874 (switch-to-prev-buffer): Don't delete window.
17875 (delete-windows-on): Delete a window's frame if and only if the
17876 window is dedicated.
17877 (replace-buffer-in-windows): Delete buffer's window or frame if
17878 and only if window is dedicated.
17879 (quit-window): Handle quit-restore as before last change.
17880 (bury-buffer): Delete window only if window-deletable-p returns t.
17881
17882 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
17883
17884 * window.el (window-deletable-p): Never delete the last frame on a
17885 given terminal.
17886
17887 2011-09-13 Glenn Morris <rgm@gnu.org>
17888
17889 * help.el (describe-key-briefly): Copy previous standard-output change.
17890
17891 2011-09-13 PJ Weisberg <pj@irregularexpressions.net>
17892
17893 * help.el (where-is): Respect non-standard standard-output. (Bug#9030)
17894
17895 2011-09-13 Glenn Morris <rgm@gnu.org>
17896
17897 * emacs-lisp/lisp-mode.el (lisp-indent-function):
17898 * progmodes/scheme.el (scheme-indent-function): Doc fixes.
17899
17900 2011-09-12 Chong Yidong <cyd@stupidchicken.com>
17901
17902 * dired-aux.el (dired-mark-read-string): Don't return default
17903 value on empty input (Bug#9361).
17904 (dired-do-chxxx): Treat empty input for "touch" as no -t option.
17905 Omit initial minibuffer contents.
17906 (dired-do-chmod): Signal an error on empty input.
17907 (dired-mark-read-string): Don't return default on empty input.
17908
17909 * files.el (file-modes-symbolic-to-number): Doc fix.
17910
17911 2011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
17912
17913 * international/mule-cmds.el (ucs-completions): Remove.
17914 (read-char-by-name): Use complete-with-action instead; add metadata.
17915
17916 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
17917
17918 * window.el (display-buffer--action-function-custom-type)
17919 (display-buffer--action-custom-type): New vars.
17920 (display-buffer-alist, display-buffer-default-action)
17921 (display-buffer-overriding-action): Add defcustom types.
17922
17923 * frame.el (delete-other-frames): Doc fix (Bug#276).
17924
17925 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
17926
17927 * play/doctor.el (make-doctor-variables): Define `doctor-sent'.
17928
17929 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
17930
17931 Change modes that used same-window-* vars to use switch-to-buffer.
17932
17933 * progmodes/gdb-mi.el (gdb-restore-windows, gdb-setup-windows):
17934 Use switch-to-buffer.
17935
17936 * cus-edit.el (customize-group, custom-buffer-create)
17937 (customize-browse, custom-buffer-create-other-window):
17938 Use switch-to-buffer or switch-to-buffer-other-window.
17939
17940 * info.el (info, Info-find-node, Info-revert-find-node, Info-next)
17941 (Info-prev, Info-up, Info-speedbar-goto-node)
17942 (info-display-manual): Use switch-to-buffer.
17943 (Info-speedbar-goto-node): Use switch-to-buffer-other-frame.
17944
17945 * mail/sendmail.el (mail): Use switch-to-buffer.
17946 (mail-recover): Use switch-to-buffer-other-window.
17947
17948 * cmuscheme.el (run-scheme, switch-to-scheme):
17949 * ielm.el (ielm):
17950 * shell.el (shell):
17951 * net/rlogin.el (rlogin):
17952 * net/telnet.el (telnet, rsh):
17953 * progmodes/inf-lisp.el (inferior-lisp): Use switch-to-buffer.
17954
17955 2011-09-11 Andreas Schwab <schwab@linux-m68k.org>
17956
17957 * dired.el (dired-sort-toggle-or-edit): Revert last changes.
17958
17959 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
17960
17961 * dired.el (dired-sort-toggle-or-edit): -o doesn't exist on *BSD,
17962 so don't mention it (bug#9301).
17963 (dired-sort-toggle-or-edit): Clarify string further.
17964
17965 * faces.el (face-spec-set-match-display): Make `(type graphic)'
17966 match `x', `w32' and `ns', like the manual says (bug#9029).
17967
17968 * subr.el (eval-after-load): Doc string clarification (bug#9125).
17969 (process-kill-buffer-query-function): Mention the buffer name in
17970 the query.
17971
17972 * image-mode.el (image-next-line): The line parameter is mandatory
17973 (bug#9258).
17974
17975 * dired.el (dired-sort-toggle-or-edit): Mention -o and -g, too,
17976 which can be useful (bug#9301).
17977
17978 * textmodes/flyspell.el: Remove obsolete comment (bug#9368).
17979
17980 * subr.el (match-string): Mention that the current buffer should
17981 be the same as the search was done in (bug#9282).
17982
17983 * facemenu.el: Disable the remove-* commands if the mark isn't
17984 active (bug#9162).
17985
17986 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
17987
17988 * buff-menu.el (Buffer-menu-switch-other-window): Use second arg
17989 of display-buffer.
17990 (Buffer-menu-2-window): Use switch-to-buffer-other-window.
17991
17992 * replace.el (occur-mode-goto-occurrence)
17993 (occur-mode-display-occurrence) Use second arg of pop-to-buffer
17994 and display-buffer.
17995
17996 * mail/reporter.el (reporter-submit-bug-report): Use second arg of
17997 display-buffer.
17998
17999 * mail/sendmail.el (sendmail-user-agent-compose): Don't bind the
18000 special-display and same-window variables.
18001 (mail-other-window): Use switch-to-buffer-other-window.
18002 (mail-other-frame): USe switch-to-buffer-other-frame.
18003
18004 * progmodes/gdb-mi.el (gdb-frame-gdb-buffer):
18005 Use display-buffer-other-frame.
18006 (gdb-display-gdb-buffer): Use pop-to-buffer.
18007
18008 * progmodes/gud.el (gud-goto-info): Use info-other-window.
18009
18010 * progmodes/python.el: Don't set same-window-buffer-names.
18011
18012 * textmodes/bibtex.el (bibtex-search-entry): Use switch-to-buffer.
18013
18014 * window.el (display-buffer-alist): Add *Python*.
18015
18016 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
18017
18018 * window.el (display-buffer-alist): Add entry for buffers
18019 previously handled same-window-*.
18020 (display-buffer-alist, display-buffer-default-action)
18021 (display-buffer-overriding-action): Mark as risky.
18022 (display-buffer-alist): Document action function changes.
18023 (display-buffer--same-window-action)
18024 (display-buffer--other-frame-action): New variables.
18025 (switch-to-buffer, display-buffer-other-frame): Use them.
18026 (display-buffer): Rename reuse-frame entry to reusable-frames.
18027 (display-buffer-reuse-selected-window): Function deleted.
18028 (display-buffer-reuse-window): Handle reusable-frames alist entry.
18029 If it's omitted, check pop-up-frames/display-buffer-reuse-frames.
18030 (display-buffer-special): New function.
18031 (display-buffer--maybe-pop-up-frame-or-window): Rename from
18032 display-buffer-reuse-or-pop-window. Split off special-display
18033 part into display-buffer-special.
18034 (display-buffer-use-some-window): Don't perform any special
18035 pop-up-frames handling.
18036 (pop-to-buffer): Use window-normalize-buffer-to-switch-to.
18037 (display-buffer--maybe-same-window): Rename from
18038 display-buffer-maybe-same-window.
18039
18040 * info.el: Don't set same-window-regexps.
18041 (info-setup): New function.
18042 (info-other-window, info): Call it.
18043
18044 * cus-edit.el: Don't set same-window-regexps.
18045 (customize-group): New argument.
18046 (customize-group-other-window): Use it.
18047 (customize-face, customize-face-other-window): Likewise.
18048 (custom-buffer-create-other-window): Use pop-to-buffer directly.
18049
18050 * net/rlogin.el:
18051 * net/telnet.el:
18052 * progmodes/gud.el: Don't set same-window-regexps.
18053
18054 * cmuscheme.el:
18055 * ielm.el:
18056 * shell.el:
18057 * mail/sendmail.el:
18058 * progmodes/inf-lisp.el: Don't set same-window-buffer-names.
18059
18060 2011-09-10 Juri Linkov <juri@jurta.org>
18061
18062 * isearch.el (isearch-edit-string): Remove obsolete mention of
18063 `C-w' (`isearch-yank-word-or-char') from docstring.
18064 (isearch-query-replace): Fix typo in docstring (bug#9466).
18065
18066 2011-09-10 Juri Linkov <juri@jurta.org>
18067
18068 * paren.el (show-paren-function): Don't show escaped parens.
18069 Let-bind `unescaped' to `t' when paren is not escaped. (Bug#9461)
18070
18071 2011-09-10 Eli Zaretskii <eliz@gnu.org>
18072
18073 * mail/sendmail.el (mml-to-mime, mml-attach-file)
18074 (mm-default-file-encoding): Remove autoload forms, they are
18075 replaced with autoload cookies in mml.el and mm-encode.el.
18076 (mail-add-attachment): New command.
18077 (mail-mode-map): Add a menu-bar item for mail-add-attachment.
18078 (mail-mode): Mention mail-insert-file and mail-add-attachment in
18079 the doc string.
18080 (mml-to-mime, mml-attach-file, mm-default-file-encoding): Declare.
18081
18082 2011-09-10 Reuben Thomas <rrt@sc3d.org>
18083
18084 * simple.el (count-words-region): Use buffer if there's no region
18085 (bug#9429).
18086
18087 2011-09-09 Juri Linkov <juri@jurta.org>
18088
18089 * wdired.el (wdired-change-to-wdired-mode): Set buffer-local
18090 `isearch-filter-predicate' to `wdired-isearch-filter-read-only'.
18091 (wdired-isearch-filter-read-only): New function. (Bug#6362)
18092
18093 2011-09-09 Alan Mackenzie <acm@muc.de>
18094
18095 * progmodes/cc-mode.el (awk-mode): Prevent `define-derived-mode'
18096 spuriously generating `awk-mode-syntax-table'. (Bug #9448).
18097
18098 2011-09-09 Eli Zaretskii <eliz@gnu.org>
18099
18100 Fix for Savannah bug#9392.
18101 * simple.el (mail-encode-mml): New defvar.
18102
18103 * mail/rmail.el (mail-encode-mml): Add a defvar.
18104 (rmail-enable-mime-composing): Default to t.
18105 (rmail-forward): Use MIME method of forwarding only if both
18106 rmail-enable-mime-composing and rmail-enable-mime are non-nil.
18107 Set mail-encode-mml non-nil if the MIME method was used.
18108
18109 * mail/sendmail.el (mml-to-mime): Add autoload form.
18110 (mail-encode-mml): Add a defvar.
18111 (mail-mode): Make mail-encode-mml buffer-local and initialize it
18112 to nil.
18113 (mail-send): If mail-encode-mml is non-nil, run the outgoing
18114 message through mml-to-mime, and reset mail-encode-mml to nil.
18115
18116 2011-09-09 Glenn Morris <rgm@gnu.org>
18117
18118 * woman.el (woman-if-body): When processing an .el block,
18119 do not delete the next .el block as well. (Bug#9447)
18120 (woman-special-characters): Add oq, cq, and hy characters.
18121
18122 2011-09-08 Martin Rudalics <rudalics@gmx.at>
18123
18124 * window.el (window-deletable-p): Make sure window is live before
18125 invoking window-prev-buffers.
18126
18127 2011-09-08 Leo Liu <sdl.web@gmail.com>
18128
18129 * net/rcirc.el (rcirc-cmd-invite): New rcirc command. (Bug#9453)
18130
18131 2011-09-08 Juri Linkov <juri@jurta.org>
18132
18133 * progmodes/compile.el (compilation-environment): Make it
18134 a defcustom (bug#8340).
18135
18136 2011-09-08 Martin Rudalics <rudalics@gmx.at>
18137
18138 * window.el (frame-auto-delete): Rename to window-auto-delete.
18139 Make it control auto-deletion of windows and/or frames.
18140 (window-deletable-p): New argument FORCE. Rewrite conditions
18141 for deleting window/frame. (Bug#9419)
18142 (switch-to-prev-buffer, replace-buffer-in-windows, quit-window):
18143 Rewrite handling of case when window/frame can be deleted.
18144 (delete-windows-on): Call window-deletable-p with new FORCE
18145 argument t. (Bug#9456)
18146
18147 2011-09-07 Chong Yidong <cyd@stupidchicken.com>
18148
18149 * help-mode.el (help-mode): Restore autoload.
18150
18151 2011-09-07 Juri Linkov <juri@jurta.org>
18152
18153 * progmodes/compile.el (compilation-start): Let-bind `thisenv' to
18154 `compilation-environment'. Set buffer-local
18155 `compilation-environment' to `thisenv' later after (funcall mode).
18156 (Bug#8340)
18157
18158 * vc/vc-git.el (vc-git-grep): Remove --no-color. (Bug#9408)
18159 (vc-git-grep): Prepend "PAGER=" to `compilation-environment'
18160 instead of replacing its value. (Bug#8340)
18161
18162 2011-09-07 Juri Linkov <juri@jurta.org>
18163
18164 * progmodes/grep.el (grep-regexp-alist): Calculate column positions
18165 based on text properties put by `grep-filter' instead of matching
18166 escape sequences.
18167 (grep-mode): Set buffer-local `compilation-error-screen-columns'
18168 to the value of `grep-error-screen-columns' (bug#9438).
18169
18170 2011-09-07 Juri Linkov <juri@jurta.org>
18171
18172 * simple.el (next-error-highlight, next-error-highlight-no-select):
18173 Doc fix (bug#9432).
18174
18175 2011-09-07 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
18176
18177 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
18178 Check for null c-opt-block-decls-with-vars-key. (Bug#9443)
18179
18180 2011-09-07 Leo Liu <sdl.web@gmail.com>
18181
18182 * net/rcirc.el (rcirc-mode): Conditionally initialize
18183 rcirc-input-ring.
18184
18185 2011-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
18186
18187 * emacs-lisp/find-func.el (find-function-C-source): Only set
18188 find-function-C-source-directory after checking that we found a source
18189 file there (bug#9440).
18190
18191 2011-09-06 Alan Mackenzie <acm@muc.de>
18192
18193 * isearch.el (isearch-other-meta-char): Wherever a key list is
18194 unread, "unread" the prefix arg, too. This fixes bug #8901.
18195
18196 2011-09-05 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
18197
18198 * progmodes/grep.el (rgrep): Add "-type d" (bug#9414).
18199
18200 2011-09-05 Juri Linkov <juri@jurta.org>
18201
18202 * progmodes/grep.el (grep-process-setup): Fix comments (bug#8084).
18203
18204 2011-09-05 Juri Linkov <juri@jurta.org>
18205
18206 * progmodes/grep.el (grep-filter): Avoid incomplete processing by
18207 keeping point where processing of grep matches begins, and
18208 continue to delete remaining escape sequences from the same point.
18209 (grep-filter): Make leading zero optional in "0?1;31m" because
18210 git-grep emits "\033[1;31m" escape sequences unlike expected
18211 "\033[01;31m" as GNU Grep does (bug#9408).
18212 (grep-process-setup): Replace obsolete "ml=" with newer "sl=".
18213
18214 2011-09-05 Juri Linkov <juri@jurta.org>
18215
18216 * subr.el (y-or-n-p): Capitalize "yes".
18217
18218 2011-09-04 Michael Albinus <michael.albinus@gmx.de>
18219
18220 * net/tramp.el (top): Require 'shell. Use `tramp-unload-hook' but
18221 `tramp-cache-unload-hook' where appropriate.
18222 (tramp-methods): Rename `tramp-remote-sh' to
18223 `tramp-remote-shell'. Add `tramp-remote-shell-args'.
18224 (tramp-handle-shell-command): New defun, moved from tramp-sh.el.
18225
18226 * net/tramp-sh.el (top): Don't require 'shell.
18227 (tramp-methods): Add `tramp-remote-shell' and
18228 `tramp-remote-shell-args' entries.
18229 (tramp-sh-file-name-handler-alist): Use `tramp-handle-shell-command'.
18230 (tramp-sh-handle-shell-command): Remove.
18231 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
18232 Use `tramp-remote-shell'.
18233
18234 2011-09-03 Chong Yidong <cyd@stupidchicken.com>
18235
18236 * mail/sendmail.el (sendmail-query-once-function): Delete.
18237 (sendmail-query-once): Save directly to send-mail-function.
18238 Update message-send-mail-function too.
18239
18240 * mail/smtpmail.el (smtpmail-try-auth-methods): Clarify prompt.
18241
18242 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
18243
18244 * progmodes/python.el (python-mode-map): Use correct function to
18245 start python interpreter from menu-bar (as reported by Geert
18246 Kloosterman).
18247 (inferior-python-mode-map): Fix typo.
18248 (python-shell-map): Remove.
18249
18250 2011-09-03 Deniz Dogan <deniz@dogan.se>
18251
18252 * net/rcirc.el (rcirc-print): Simplify code for
18253 rcirc-scroll-show-maximum-output. There is no need to walk
18254 through all windows to find the right one.
18255
18256 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
18257
18258 * help.el (help-return-method): Doc fix.
18259
18260 2011-09-03 Martin Rudalics <rudalics@gmx.at>
18261
18262 * window.el (window-deletable-p): Don't return a non-nil value
18263 when there's a buffer that was shown in the window before.
18264 (Bug#9419)
18265 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
18266 Set window's previous buffers to nil.
18267
18268 2011-09-03 Eli Zaretskii <eliz@gnu.org>
18269
18270 * mail/rmailmm.el (rmail-mime-insert-tagline): Insert an extra
18271 newline before and after the tag line, so it doesn't interfere
18272 with determining the paragraph direction of bidirectional text.
18273
18274 2011-09-03 Leo Liu <sdl.web@gmail.com>
18275
18276 * files.el (find-file-not-true-dirname-list): Remove. (Bug#9422)
18277
18278 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
18279
18280 * window.el (pop-to-buffer-1, pop-to-buffer-same-window): Delete.
18281 (pop-to-buffer): Change interactive spec. Pass second argument
18282 directly to display-buffer.
18283 (display-buffer): Fix interactive spec. Use functionp to
18284 distinguish between a function and a list of functions.
18285
18286 * abbrev.el (edit-abbrevs):
18287 * arc-mode.el (archive-extract):
18288 * autoinsert.el (auto-insert):
18289 * bookmark.el (bookmark-bmenu-list):
18290 * files.el (find-file):
18291 * view.el (view-buffer):
18292 * progmodes/compile.el (compilation-goto-locus):
18293 * textmodes/bibtex.el (bibtex-initialize): Use switch-to-buffer.
18294
18295 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
18296
18297 * window.el (display-buffer-alist): Doc fix.
18298 (display-buffer): Add docstring. Don't treat
18299 display-buffer-default specially.
18300 (display-buffer-reuse-selected-window)
18301 (display-buffer-same-window, display-buffer-maybe-same-window)
18302 (display-buffer-reuse-window, display-buffer-pop-up-frame)
18303 (display-buffer-pop-up-window)
18304 (display-buffer-reuse-or-pop-window)
18305 (display-buffer-use-some-window): New functions.
18306 (display-buffer-default-action): Use them.
18307 (display-buffer-default): Delete.
18308 (pop-to-buffer-1): Fix choice of actions.
18309
18310 2011-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
18311
18312 * minibuffer.el (completion--insert-strings): Don't get confused by
18313 completion entries that end with an LF char.
18314
18315 2011-09-01 Eli Zaretskii <eliz@gnu.org>
18316
18317 * window.el (frame-auto-delete, window-deletable-p): Doc fix.
18318
18319 2011-09-01 Chong Yidong <cyd@stupidchicken.com>
18320
18321 * window.el (display-buffer): Restore interactive spec.
18322 (display-buffer-same-window, display-buffer-other-window):
18323 New functions.
18324 (pop-to-buffer-1): New function. Use the above.
18325 (pop-to-buffer, pop-to-buffer-same-window): Use it.
18326 (pop-to-buffer-other-window, pop-to-buffer-other-frame): Delete.
18327
18328 * view.el (view-buffer-other-window, view-buffer-other-frame):
18329 Just use pop-to-buffer.
18330
18331 2011-09-01 Thierry Volpiatto <thierry.volpiatto@gmail.com>
18332
18333 * vc/vc-rcs.el (vc-rcs-responsible-p): Handle directories. (Bug#9391)
18334
18335 2011-09-01 Wilfred Hughes <wilfred@potatolondon.com> (tiny change)
18336
18337 * vc/vc-git.el (vc-git-grep): Use --no-color. (Bug#9408)
18338
18339 2011-08-31 Richard Stallman <rms@gnu.org>
18340
18341 * mail/rmail.el (rmail-epa-decrypt): Rewrite to take account
18342 of the separation of rmail-view-buffer from rmail-buffer.
18343 If you say no to "replace original", the decrypt is in the
18344 view buffer. If you say yes, the decrypt goes into the
18345 rmail buffer also.
18346
18347 2011-08-31 Martin Rudalics <rudalics@gmx.at>
18348
18349 * window.el (display-buffer-window): Rewrite doc-string.
18350 (display-buffer-record-window): New function.
18351 (display-buffer-macro-specifiers)
18352 (display-buffer-even-window-sizes, display-buffer-set-height)
18353 (display-buffer-set-width, display-buffer-in-window)
18354 (display-buffer-reuse-window, display-buffer-split-specifiers)
18355 (display-buffer-side-specifiers, display-buffer-split-window-1)
18356 (display-buffer-split-window, display-buffer-split-atom-window)
18357 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
18358 (display-buffer-pop-up-side-window, display-buffer-in-side-window)
18359 (display-buffer-other-window-means-other-frame)
18360 (display-buffer-normalize-special)
18361 (display-buffer-normalize-default)
18362 (display-buffer-normalize-argument)
18363 (display-buffer-normalize-alist-1, display-buffer-normalize-alist)
18364 (display-buffer-normalize-specifiers, display-buffer-frame)
18365 (display-buffer-same-window, display-buffer-same-frame)
18366 (display-buffer-other-window)
18367 (display-buffer-same-frame-other-window)
18368 (display-buffer-other-frame, pop-to-buffer-same-window)
18369 (pop-to-buffer-same-frame, pop-to-buffer-other-window)
18370 (pop-to-buffer-same-frame-other-window, pop-to-buffer-other-frame)
18371 (switch-to-buffer-same-frame)
18372 (switch-to-buffer-other-window-same-frame)
18373 (display-buffer-alist-of-strings-p, display-buffer-alist-add)
18374 (display-buffer-alist-set-1, display-buffer-alist-set-2)
18375 (display-buffer-alist-set): Remove.
18376 (display-buffer-function, special-display-buffer-names)
18377 (special-display-regexps, special-display-function):
18378 In doc-string refer to display-buffer-window and quit-restore
18379 parameter.
18380 (pop-up-frame-alist, pop-up-frame-function, special-display-p)
18381 (special-display-frame-alist, special-display-popup-frame)
18382 (same-window-buffer-names, same-window-regexps, same-window-p)
18383 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
18384 (split-window-preferred-function, split-height-threshold)
18385 (split-width-threshold, window-splittable-p)
18386 (split-window-sensibly, window--try-to-split-window)
18387 (window--frame-usable-p, even-window-heights)
18388 (window--even-window-heights, window--display-buffer-1)
18389 (window--display-buffer-2, display-buffer-other-frame):
18390 Restore old Emacs 23 code, order and doc-strings where applicable.
18391 (display-buffer-default, display-buffer-assq-regexp): New functions.
18392 (display-buffer-alist): Rewrite doc-string.
18393 (display-buffer-default-action)
18394 (display-buffer-overriding-action): New variables.
18395 (display-buffer, switch-to-buffer): Rewrite.
18396 (pop-to-buffer): Restore Emacs 23 behavior but use
18397 window-normalize-buffer-to-display.
18398 (switch-to-buffer-other-window, switch-to-buffer-other-frame):
18399 Restore Emacs 23 behavior but use
18400 window-normalize-buffer-to-switch-to.
18401 (pop-to-buffer-same-window): Rewrite.
18402 (pop-to-buffer-other-window, pop-to-buffer-other-frame):
18403 Rewrite using Emacs 23 options.
18404
18405 2011-08-31 Michael Albinus <michael.albinus@gmx.de>
18406
18407 * net/tramp.el (tramp-root-regexp): Remove.
18408 (tramp-completion-file-name-regexp-unified)
18409 (tramp-completion-file-name-regexp-separate)
18410 (tramp-completion-file-name-regexp-url): Don't use leading volume
18411 letter on w32 systems. (Bug#5303, Bug#9311)
18412 (tramp-drop-volume-letter): Simplify definition.
18413 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
18414
18415 2011-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
18416
18417 * subr.el (event-modifiers): Fix "missing modifier" part of docstring
18418 (bug#9356).
18419
18420 2011-08-30 Reuben Thomas <rrt@sc3d.org> (tiny change)
18421
18422 * vc/pcvs-defs.el (cvs-find-file-and-jump): Docstring typo (bug#9369).
18423
18424 2011-08-29 Juri Linkov <juri@jurta.org>
18425
18426 * isearch.el (isearch-done): Don't display message "Mark saved"
18427 when arg `edit' is non-nil to prevent its flicker in the echo area.
18428
18429 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
18430
18431 * emacs-lisp/package.el (package-menu-mark-delete): Allow marking
18432 obsolete packages for deletion.
18433
18434 2011-08-28 Christoph Scholtes <cschol2112@googlemail.com>
18435
18436 * help-mode.el (help-mode-map): Add special-mode-map to parent.
18437 (help-mode): Derive help-mode from special-mode. Don't invoke
18438 view-mode from help-mode.
18439 (help-xref-override-view-map): Remove.
18440 (help-make-xrefs): Remove minor-mode-overriding-map-alist since
18441 view-mode is not used anymore.
18442
18443 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
18444
18445 * server.el (server-port): Doc fix.
18446
18447 * cus-theme.el (custom-theme-choose-mode): Inherit from
18448 special-mode (Bug#9124).
18449 (custom-theme-choose-mode-map): Add special-mode to parent.
18450
18451 2011-08-28 Alan Mackenzie <acm@muc.de>
18452
18453 * progmodes/cc-fonts.el
18454 (c-make-font-lock-BO-decl-search-function): New function.
18455 (c-basic-matchers-after - "Fontify the clauses after various
18456 keywords"): Extract the three keyword lists for the 3 erroneous
18457 constructs from the list of four, and use the new function above
18458 in place of an old one.
18459
18460 2011-08-28 Deniz Dogan <deniz@dogan.se>
18461
18462 * net/rcirc.el (rcirc-insert-prev-input)
18463 (rcirc-insert-next-input): Remove unused argument.
18464
18465 2011-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
18466
18467 * shell.el (shell-parse-pcomplete-arguments): Unquote args (bug#9160).
18468
18469 2011-08-27 Alan Mackenzie <acm@muc.de>
18470
18471 * progmodes/cc-menus.el (cc-imenu-c++-generic-expression): Make it
18472 handle function pointer parameters properly.
18473
18474 2011-08-27 Martin Rudalics <rudalics@gmx.at>
18475
18476 * window.el (display-buffer-reuse-window): Fix case where
18477 selected window was reused with non-nil OTHER-WINDOW argument.
18478 (Bug#9381)
18479
18480 2011-08-27 Deniz Dogan <deniz@dogan.se>
18481
18482 * net/rcirc.el (rcirc-check-auth-status): Adding support for
18483 oftc's NickServ messages.
18484
18485 2011-08-27 Glenn Morris <rgm@gnu.org>
18486
18487 * saveplace.el (save-place-limit): Make it finite. (Bug#9352)
18488
18489 2011-08-26 Chong Yidong <cyd@stupidchicken.com>
18490
18491 * emacs-lisp/package.el (package-install): Call package-initialize
18492 if called interactively.
18493
18494 2011-08-26 Leo Liu <sdl.web@gmail.com>
18495
18496 * emacs-lisp/cl-macs.el (defstruct): Fix format. (Bug#9357)
18497
18498 2011-08-25 Juri Linkov <juri@jurta.org>
18499
18500 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
18501 `search-whitespace-regexp' (bug#9364).
18502
18503 2011-08-25 Juri Linkov <juri@jurta.org>
18504
18505 * isearch.el (isearch-edit-string): Let-bind `search-ring' and
18506 `regexp-search-ring' to their global values to protect from
18507 updating by `read-from-minibuffer' (bug#9185).
18508
18509 2011-08-25 Juri Linkov <juri@jurta.org>
18510
18511 * textmodes/ispell.el (ispell-command-loop): Add newline
18512 at the end of the "Use option `i'..." line.
18513
18514 2011-08-25 Juri Linkov <juri@jurta.org>
18515
18516 * battery.el (display-battery-mode): If `battery-status-function'
18517 or `battery-mode-line-format' is nil, display the message and set
18518 `display-battery-mode' to nil (bug#9363).
18519
18520 2011-08-25 Eli Zaretskii <eliz@gnu.org>
18521
18522 * buff-menu.el (Buffer-menu-buffer+size): Remove calls to
18523 bidi-string-mark-left-to-right; they are unnecessary now.
18524
18525 2011-08-25 Deniz Dogan <deniz@dogan.se>
18526
18527 * net/quickurl.el: Documentation typo fixes.
18528
18529 2011-08-25 Chong Yidong <cyd@stupidchicken.com>
18530
18531 * window.el (bury-buffer, quit-window): Use bury-buffer-internal.
18532
18533 2011-08-25 Glenn Morris <rgm@gnu.org>
18534
18535 * emacs-lisp/derived.el (define-derived-mode): Doc fix.
18536
18537 * mail/smtpmail.el (smtpmail-smtp-user): Add version: tag.
18538 (smtpmail-via-smtp): Handle nil response from smtp.
18539
18540 2011-08-24 Juri Linkov <juri@jurta.org>
18541
18542 * proced.el (proced-marked): Inherit from `error' instead of
18543 `font-lock-warning-face'.
18544
18545 * ibuffer.el (ibuffer-marked-face): Change default face from
18546 `font-lock-warning-face' to `warning'.
18547 (ibuffer-deletion-face): Change default face from
18548 `font-lock-type-face' to `error'.
18549
18550 * battery.el (battery-update): Use the face `error' instead of
18551 `font-lock-warning-face' (bug#6117).
18552
18553 2011-08-24 Juri Linkov <juri@jurta.org>
18554
18555 * faces.el (success): Change face color from "Green3" to
18556 "ForestGreen" on light background (bug#9353).
18557
18558 2011-08-24 Chong Yidong <cyd@stupidchicken.com>
18559
18560 * window.el (quit-window): Rename from quit-restore-window.
18561 Use same arglist as old quit-window.
18562 (frame-auto-delete): Doc fix.
18563
18564 * view.el (view-mode-exit): Use quit-window.
18565
18566 2011-08-24 Juri Linkov <juri@jurta.org>
18567
18568 * isearch.el (isearch-ring-adjust1): Start visiting previous
18569 search strings from the index 0 (-1 + 1) instead of 1 (0 + 1).
18570 (isearch-repeat, isearch-edit-string): Call `isearch-ring-adjust1'
18571 for empty search string (when the last search string is reused
18572 automatically) to adjust the isearch ring to the last element and
18573 prepare the correct index for further M-p commands (bug#9185).
18574
18575 2011-08-24 Kenichi Handa <handa@m17n.org>
18576
18577 * international/ucs-normalize.el: If decomposition property of
18578 CHAR is the default one (i.e. a list of CHAR itself), treat it as
18579 nil.
18580 (nfd, nfkd): Likewise.
18581
18582 2011-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
18583
18584 * mpc.el (mpc--proc-filter): Don't signal mpc-proc-error since signals
18585 from process filters aren't reliably transmitted to the surrounding
18586 accept-process-output.
18587 (mpc-proc-check): New function.
18588 (mpc-proc-sync): Use it (bug#8293)
18589
18590 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
18591
18592 * emacs-lisp/eieio.el (eieio-defmethod, eieio-defgeneric):
18593 Add compatibility functions (bug#9313).
18594
18595 2011-08-23 Eli Zaretskii <eliz@gnu.org>
18596
18597 * cus-start.el (all): Add entry for bidi-paragraph-direction.
18598
18599 * international/uni-bidi.el: Regenerate.
18600
18601 2011-08-23 Kenichi Handa <handa@m17n.org>
18602
18603 * international/charprop.el:
18604 * international/uni-bidi.el:
18605 * international/uni-category.el:
18606 * international/uni-combining.el:
18607 * international/uni-comment.el:
18608 * international/uni-decimal.el:
18609 * international/uni-decomposition.el:
18610 * international/uni-digit.el:
18611 * international/uni-lowercase.el:
18612 * international/uni-mirrored.el:
18613 * international/uni-name.el:
18614 * international/uni-numeric.el:
18615 * international/uni-old-name.el:
18616 * international/uni-titlecase.el:
18617 * international/uni-uppercase.el: Regenerate.
18618
18619 2011-08-23 Martin Rudalics <rudalics@gmx.at>
18620
18621 * help.el (help-window-setup): Fix message displayed when other
18622 window is reused. (Bug#9341)
18623
18624 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
18625
18626 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list.
18627 * pcomplete.el (pcomplete-quote-argument): Fix thinko (bug#9161).
18628
18629 * pcomplete.el (pcomplete-parse-comint-arguments): Fix inf-loop.
18630 Mark obsolete.
18631 * shell.el (shell-parse-pcomplete-arguments): New function.
18632 (shell-completion-vars): Use it instead (bug#9160).
18633
18634 2011-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
18635
18636 * progmodes/sh-script.el (sh-maybe-here-document): Disable magic in
18637 strings and comments (bug#9333).
18638
18639 * emacs-lisp/debug.el (debug-arglist): New function.
18640 (debug-convert-byte-code): Use it. Handle lexical byte-codes.
18641 (debug-on-entry-1): Handle interpreted closures (bug#9120).
18642
18643 2011-08-22 Juri Linkov <juri@jurta.org>
18644
18645 * progmodes/compile.el (compilation-mode-font-lock-keywords):
18646 Revert regexp that highlights output switches to its old
18647 pre-2010-10-28 value and remove one `?' from it (bug#9319).
18648
18649 * progmodes/grep.el (grep-process-setup): Use `buffer-modified-p'
18650 to check for empty output (bug#9226).
18651
18652 2011-08-22 Chong Yidong <cyd@stupidchicken.com>
18653
18654 * progmodes/scheme.el (scheme-mode-syntax-table): Don't use
18655 symbol-constituent as the default, as that stops font-lock from
18656 working properly (Bug#8843).
18657
18658 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
18659
18660 * mail/smtpmail.el (smtpmail-via-smtp): Only bind
18661 `coding-system-for-*' around the process open call to avoid
18662 auth-source side effects.
18663 (smtpmail-try-auth-methods): Expand the secret password.
18664 (smtpmail-query-smtp-server): Allow `quit'-ing out in case the
18665 probe hangs.
18666
18667 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
18668
18669 * term.el (term-mouse-paste): Yank primary selection (Bug#6845).
18670
18671 * emacs-lisp/find-func.el (find-function-noselect): New arg
18672 lisp-only.
18673
18674 * emacs-lisp/edebug.el (edebug-instrument-function): Use it to
18675 signal an error for built-in functions (Bug#6664).
18676
18677 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
18678
18679 * mail/smtpmail.el (smtpmail-smtp-user): New variable.
18680 (smtpmail-try-auth-methods): Use it.
18681
18682 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
18683
18684 * font-lock.el (font-lock-fontify-region)
18685 (font-lock-unfontify-region, font-lock-default-fontify-buffer)
18686 (font-lock-default-unfontify-buffer)
18687 (font-lock-default-fontify-region)
18688 (font-lock-default-unfontify-region): Add docstrings (Bug#8624).
18689
18690 * progmodes/compile.el (compilation-error-properties):
18691 Fix confusion between file struct and message struct (Bug#9319).
18692 (compilation-error-regexp-alist-alist): Fix 2011-05-09 change to
18693 `ant' regexp.
18694
18695 * net/browse-url.el (browse-url-firefox): Don't call
18696 browse-url-firefox-sentinel unless using -remote (Bug#9328).
18697
18698 2011-08-20 Glenn Morris <rgm@gnu.org>
18699
18700 * tutorial.el (help-with-tutorial): Avoid an error on short screens.
18701
18702 * tutorial.el (tutorial--default-keys): Update some default bindings.
18703
18704 * files.el (hack-local-variables): Fully ignore case for "mode:".
18705
18706 2011-08-20 Alan Mackenzie <acm@muc.de>
18707
18708 Resolve invalid use of a regexp in regexp-opt.
18709
18710 * progmodes/cc-fonts.el (c-complex-decl-matchers): Add in special
18711 detection for a java annotation.
18712
18713 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Add in special
18714 detection for a java annotation.
18715
18716 * progmodes/cc-langs.el (c-prefix-spec-kwds-re): Remove the special
18717 handling for java.
18718 (c-modifier-kwds): Remove the regexp "@[A-za-z0-9]+".
18719
18720 2011-08-20 Chong Yidong <cyd@stupidchicken.com>
18721
18722 * startup.el (normal-top-level-add-subdirs-to-load-path): Doc fix
18723 (Bug#9274).
18724
18725 2011-08-20 Alan Mackenzie <acm@muc.de>
18726
18727 Fontify CPP expressions correctly when starting in the middle of
18728 such a construct. Mainly for when jit-lock etc. starts a chunk
18729 here.
18730
18731 * progmodes/cc-fonts.el (c-font-lock-context): New buffer local
18732 variable.
18733 (c-make-font-lock-search-form): New function, extracted from
18734 c-make-font-lock-search-function.
18735 (c-make-font-lock-search-function): Use the above function.
18736 (c-make-font-lock-context-search-function): New function.
18737 (c-cpp-matchers): Enhance the preprocessor expression case with
18738 the above function
18739 (c-font-lock-complex-decl-prepare): Test for being in a CPP form
18740 which takes an expression.
18741
18742 * progmodes/cc-langs.el (c-cpp-expr-intro-re): New lang-variable.
18743
18744 2011-08-20 Martin Rudalics <rudalics@gmx.at>
18745
18746 * window.el (display-buffer-reuse-window)
18747 (display-buffer-pop-up-window): Don't reuse or split a side
18748 window.
18749
18750 2011-08-19 Glenn Morris <rgm@gnu.org>
18751
18752 * files.el (hack-local-variables-prop-line, hack-local-variables):
18753 Downcase "Mode:". (Bug#9331)
18754
18755 2011-08-18 Chong Yidong <cyd@stupidchicken.com>
18756
18757 * international/characters.el: Add L and R categories.
18758
18759 * subr.el (bidi-string-mark-left-to-right): Rename from
18760 string-mark-left-to-right. Use category search.
18761
18762 * buff-menu.el (Buffer-menu-buffer+size): Callers changed.
18763
18764 2011-08-18 Juri Linkov <juri@jurta.org>
18765
18766 * faces.el (error, warning, success): New faces with definitions
18767 copied from old default values of `font-lock-warning-face',
18768 `compilation-warning', `compilation-info' (bug#6117).
18769
18770 * font-lock.el (font-lock-warning-face): Inherit from `error'.
18771
18772 * progmodes/compile.el (compilation-error): Inherit from `error'.
18773 (compilation-warning): Inherit from `warning'.
18774 (compilation-info): Inherit from `success'.
18775
18776 * dired.el (dired-marked): Inherit from `warning'.
18777 (dired-flagged): Inherit from `error'.
18778
18779 2011-08-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
18780
18781 * mail/smtpmail.el (auth-source): Require to avoid problems with
18782 binding variables (bug#9298). Also clean up some unused
18783 autoloads.
18784
18785 * net/network-stream.el (network-stream-open-starttls):
18786 Support using starttls.el without using gnutls-cli.
18787
18788 2011-08-17 Juri Linkov <juri@jurta.org>
18789
18790 * progmodes/grep.el (rgrep): Handle the case when
18791 `grep-find-command' is a cons cell (bug#9278).
18792
18793 2011-08-17 Martin Rudalics <rudalics@gmx.at>
18794
18795 * window.el (display-buffer-pop-up-frame): Run frame creation
18796 function with BUFFER current (as special-display-popup-frame
18797 does). Reported by Drew Adams.
18798
18799 2011-08-17 Daiki Ueno <ueno@unixuser.org>
18800
18801 * epa-mail.el: Simplify GnuPG group expansion using
18802 epg-expand-group.
18803 (epa-mail-group-alist, epa-mail-group-modtime)
18804 (epa-mail-gnupg-conf-file, epa-mail-parse-groups)
18805 (epa-mail-sync-groups, epa-mail-expand-recipient-1)
18806 (epa-mail-expand-recipients-2, epa-mail-expand-recipients):
18807 Remove.
18808
18809 2011-08-16 Feng Li <fengli@gmail.com> (tiny change)
18810
18811 * calc/calc-ext.el (math-defintegral-2): Remove nested backquote.
18812
18813 2011-08-16 Alan Mackenzie <acm@muc.de>
18814
18815 * progmodes/cc-engine.el (c-state-cache-non-literal-place):
18816 Correct, to avoid the inside of macros.
18817
18818 2011-08-16 Richard Stallman <rms@gnu.org>
18819
18820 * epa-mail.el: Handle GnuPG group definitions.
18821 (epa-mail-group-alist, epa-mail-group-modtime)
18822 (epa-mail-gnupg-conf-file): New variables.
18823 (epa-mail-parse-groups, epa-mail-sync-groups)
18824 (epa-mail-expand-recipient-1, epa-mail-expand-recipients-2)
18825 (epa-mail-expand-recipients): New functions.
18826 (epa-mail-encrypt): Call epa-mail-expand-recipients.
18827
18828 * mail/rmail.el (rmail-epa-decrypt): New command.
18829
18830 * epa.el (epa-decrypt-region): New arg MAKE-BUFFER-FUNCTION.
18831 Don't bind buffer-read-only, just inhibit-read-only.
18832 (epa--find-coding-system-for-mime-charset): Fix the non-xemacs case.
18833 (epa-decrypt-armor-in-region): Make error message clearer.
18834
18835 2011-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
18836
18837 * minibuffer.el (completion-pcm--merge-completions): Don't merge "a1b"
18838 and "a2b" to "ab" for `prefix'.
18839
18840 2011-08-14 Chong Yidong <cyd@stupidchicken.com>
18841
18842 * ibuf-ext.el (ibuffer-filter-disable): New arg for deleting
18843 filter groups.
18844 (ibuffer-included-in-filter-p-1): Use it. Suggested by Rafaël
18845 Fourquet (Bug#8804).
18846
18847 2011-08-12 Juanma Barranquero <lekktu@gmail.com>
18848
18849 * startup.el (argi): Declare as global variable (bug#9275).
18850
18851 2011-08-12 Chong Yidong <cyd@stupidchicken.com>
18852
18853 * subr.el (string-mark-left-to-right): Search the entire string
18854 for RTL script, not just the terminating character. Doc fix.
18855
18856 2011-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
18857
18858 * progmodes/js.el (js-syntax-propertize, js-syntax-propertize-regexp):
18859 New function.
18860 (js--regexp-literal, js-syntax-propertize-function): Remove.
18861 (js-mode): Use js-syntax-propertize to handle multilines (bug#9183).
18862 (js-mode-map): Don't rebind electric keys.
18863 (js-insert-and-indent): Remove.
18864 (js-mode): Setup electric-layout and electric-indent instead.
18865
18866 * epa-file.el (epa-file-select-keys): Revert to nil default (bug#9280).
18867
18868 2011-08-12 Daiki Ueno <ueno@unixuser.org>
18869
18870 * epa.el (epa-progress-callback-function): Fix the logic of
18871 displaying progress.
18872 * epa-file.el (epa-file-insert-file-contents): Make progress
18873 display more user-friendly.
18874 (epa-file-write-region): Ditto.
18875
18876 2011-08-10 Chong Yidong <cyd@stupidchicken.com>
18877
18878 * subr.el (string-mark-left-to-right): New function.
18879
18880 * buff-menu.el (Buffer-menu-buffer+size): Remove LRM argument.
18881 Use string-mark-left-to-right.
18882 (list-buffers-noselect): Caller changed.
18883
18884 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
18885 Use string-mark-left-to-right.
18886 (tabulated-list-print): Recenter after moving point.
18887
18888 2011-08-10 Juri Linkov <juri@jurta.org>
18889
18890 * progmodes/grep.el (rgrep): Don't bind `process-connection-type'.
18891 This finishes incomplete reversion of 2011-06-30T01:09:13Z!larsi@gnus.org
18892 intended by 2011-07-06T15:49:19Z!larsi@gnus.org.
18893
18894 2011-08-09 Chong Yidong <cyd@stupidchicken.com>
18895
18896 * hi-lock.el (hi-lock-unface-buffer): Fix interactive spec
18897 (Bug#7554).
18898
18899 2011-08-09 Andreas Schwab <schwab@linux-m68k.org>
18900
18901 * xt-mouse.el (xterm-mouse-event-read): Try to recover the raw
18902 character. (Bug#6594)
18903
18904 2011-08-08 Chong Yidong <cyd@stupidchicken.com>
18905
18906 * image-dired.el: Don't use find-file for temporary work (Bug#7895).
18907 (image-dired--with-db-file): New macro.
18908 (image-dired-write-tags, image-dired-remove-tag)
18909 (image-dired-create-gallery-lists, image-dired-write-comments)
18910 (image-dired-get-comment, image-dired-mark-tagged-files)
18911 (image-dired-list-tags, image-dired-gallery-generate): Use it.
18912 (image-dired-gallery-generate): Use insert-file-contents.
18913
18914 * time.el (display-time-world-list, display-time-world-display):
18915 * time-stamp.el (time-stamp-string):
18916 * vc/add-log.el (add-change-log-entry): Use setenv instead of
18917 set-time-zone-rule (Bug#7337).
18918
18919 2011-08-08 Daiki Ueno <ueno@unixuser.org>
18920
18921 * epg.el (epg--status-KEYEXPIRED, epg--status-KEYREVOKED): Fix typo.
18922 (epg-error-to-string, epg-errors-to-string): New function.
18923 (epg-wait-for-completion): Reverse errors list.
18924 (epg--check-error-for-decrypt, epg-sign-file, epg-sign-string)
18925 (epg-encrypt-file, epg-encrypt-string, epg-export-keys-to-file)
18926 (epg--import-keys-1, epg-receive-keys, epg-delete-keys)
18927 (epg-sign-keys, epg-generate-key-from-file)
18928 (epg-generate-key-from-string): Format errors by using
18929 epg-errors-to-string (bug#9255).
18930 (epg--status-INV_SGNR, epg--status-NO_SGNR): New status handler.
18931
18932 2011-08-07 Juri Linkov <juri@jurta.org>
18933
18934 * faces.el (list-faces-display): Remove extra angle bracket
18935 from `help-mode-map'.
18936
18937 * info.el (Info-history-toc-nodes): Doc fix.
18938
18939 * longlines.el (longlines-mode): Doc fix.
18940
18941 2011-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
18942
18943 * progmodes/js.el (js--regexp-literal): Accept regexps at the beginning
18944 of statements and in a few more cases (bug#9183).
18945
18946 * emacs-lisp/cl-macs.el (cl--make-usage-var, cl--make-usage-args):
18947 New functions.
18948 (cl-transform-lambda): Use them (bug#9239).
18949
18950 2011-08-05 Martin Rudalics <rudalics@gmx.at>
18951
18952 * window.el (display-buffer-same-window)
18953 (display-buffer-same-frame, display-buffer-other-window)
18954 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
18955 (pop-to-buffer-other-window)
18956 (pop-to-buffer-same-frame-other-window)
18957 (pop-to-buffer-other-frame): Make them defuns.
18958 (switch-to-buffer): Don't set LABEL argument of pop-to-buffer.
18959
18960 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
18961
18962 * subr.el (make-composed-keymap): Move from C. Change calling
18963 convention, and improve docstring to bring attention to a subtle point.
18964 * minibuffer.el (completing-read-default): Adjust accordingly.
18965
18966 2011-08-03 Michael Albinus <michael.albinus@gmx.de>
18967
18968 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
18969 (tramp-open-shell): Use `tramp-shell-quote-argument'.
18970
18971 * net/trampver.el: Update release number.
18972
18973 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
18974
18975 * progmodes/sh-script.el (sh-font-lock-paren): Don't mistake "main" for
18976 "in" (bug#9190).
18977
18978 2011-08-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
18979
18980 * mail/sendmail.el (sendmail-query-once): Restore the current
18981 buffer after querying (bug#9074).
18982
18983 * dired.el (dired-flagged): Use different faces for marked and
18984 flagged files (bug#6117).
18985
18986 * emacs-lisp/cl-macs.el (dolist): Mention that there's a nil block
18987 (bug#4433).
18988
18989 * ido.el (ido-mode): Switch off the message if called
18990 non-interactively.
18991
18992 * mail/smtpmail.el (smtpmail-query-smtp-server): Try port 25
18993 before 587, since it appears that that's more likely to work for
18994 more people.
18995
18996 * cus-edit.el (custom-file): When running under emacs -q, always
18997 refuse to save the customizations, even if the .emacs file doesn't
18998 exist.
18999
19000 * info.el: Remove the `Info-beginning-of-buffer' function
19001 (bug#8325).
19002
19003 * net/network-stream.el (network-stream-open-starttls):
19004 Use `starttls-available-p' to see whether starttls.el can be used.
19005
19006 2011-08-01 Martin Rudalics <rudalics@gmx.at>
19007
19008 * window.el (display-buffer-in-window): Don't set dedicated status
19009 of window here (Bug#9215).
19010 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
19011 (display-buffer-pop-up-side-window)
19012 (display-buffer-in-side-window): Set dedicated status of window here.
19013
19014 2011-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
19015
19016 * emacs-lisp/package.el (package-generate-autoloads): Load autoloads
19017 before binding generated-autoload-file.
19018
19019 2011-08-01 Deniz Dogan <deniz@dogan.se>
19020
19021 * net/rcirc.el (rcirc-handler-333): Clarify docstring.
19022
19023 2011-07-30 Michael Albinus <michael.albinus@gmx.de>
19024
19025 Sync with Tramp 2.2.2.
19026
19027 * net/trampver.el: Update release number.
19028
19029 2011-07-30 Juri Linkov <juri@jurta.org>
19030
19031 * dired-aux.el (dired-touch-initial): Remove function.
19032 (dired-do-chxxx): For op-symbol `touch', set `initial' to the
19033 current time, and `default' to the last modification time of the
19034 current marked file (bug#6887).
19035
19036 2011-07-28 Jose E. Marchesi <jemarch@gnu.org>
19037
19038 * simple.el (goto-line): Use string-to-number to provide a
19039 numeric argument to read-number (bug#9163).
19040
19041 2011-07-27 Michael Albinus <michael.albinus@gmx.de>
19042
19043 * net/tramp-sh.el (tramp-maybe-send-script): Don't let-bind the
19044 connection process, it could be nil.
19045
19046 2011-07-27 Leo Liu <sdl.web@gmail.com>
19047
19048 Simplify url handling in rcirc-mode.
19049
19050 * net/rcirc.el (rcirc-browse-url-map, rcirc-browse-url-at-point)
19051 (rcirc-browse-url-at-mouse): Remove.
19052 * net/rcirc.el (rcirc-markup-urls): Use `make-button'.
19053
19054 2011-07-26 Alan Mackenzie <acm@muc.de>
19055
19056 Fontify bitfield declarations properly.
19057
19058 * progmodes/cc-langs.el (c-has-bitfields): New lang variable.
19059 (c-symbol-chars): Now exported as a lang variable.
19060 (c-not-primitive-type-keywords): New lang variable.
19061
19062 * progmodes/cc-fonts.el (c-font-lock-declarations): Jump over the
19063 QT keyword "more" to prevent "more slots: ...." being spuriously
19064 parsed as a bitfield declaration.
19065
19066 * progmodes/cc-engine.el (c-beginning-of-statement-1):
19067 Refactor and enhance to handle bitfield declarations.
19068 (c-punctuation-in): New function.
19069 (c-forward-decl-or-cast-1): Enhance CASE 3 to handle bitfield
19070 declarations properly.
19071
19072 2011-07-26 Ulf Jasper <ulf.jasper@web.de>
19073
19074 * calendar/icalendar.el (icalendar--all-events): Take care of
19075 multiple vcalendars in a single file.
19076 (icalendar--convert-float-to-ical): Checkdoc fixes.
19077
19078 2011-07-25 Deniz Dogan <deniz@dogan.se>
19079
19080 * image.el (insert-image): Clarifying docstring.
19081
19082 2011-07-24 Michael Albinus <michael.albinus@gmx.de>
19083
19084 * net/tramp-sh.el (tramp-barf-unless-okay): Return the value of
19085 `tramp-send-command-and-check' if there is no error.
19086 (tramp-send-command-and-read): Suppress *all* errors if NOERROR.
19087
19088 2011-07-22 Alan Mackenzie <acm@muc.de>
19089
19090 Prevent cc-langs.elc being loaded at run time.
19091
19092 * progmodes/cc-mode.el: Remove two autoload forms which loaded
19093 cc-langs.
19094
19095 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Don't emit
19096 "(require 'cc-langs)". Quote a form so it will evaluate at
19097 (cc-mode's) compilation time.
19098
19099 2011-07-22 Michael Albinus <michael.albinus@gmx.de>
19100
19101 * net/tramp.el (tramp-file-name-handler): Avoid recursive
19102 loading. (Bug#9114)
19103
19104 2011-07-21 Martin Rudalics <rudalics@gmx.at>
19105
19106 * window.el (display-buffer-pop-up-window)
19107 (display-buffer-pop-up-side-window)
19108 (display-buffer-in-side-window): Call display-buffer-set-height
19109 and display-buffer-set-width after setting the new window's
19110 buffer so `fit-window-to-buffer' and friends work on the right buffer.
19111
19112 2011-07-20 Sam Steingold <sds@gnu.org>
19113
19114 * progmodes/etags.el (etags-file-of-tag, etags-tags-table-files)
19115 (etags-tags-included-tables): Call `convert-standard-filename' on
19116 the file names contained in TAGS so that windows Emacs can handle
19117 TAGS files created by cygwin ctags.
19118
19119 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
19120
19121 * proced.el (proced-update): Revert yesterday's bug#1779 patch,
19122 which apparently didn't work.
19123
19124 2011-07-19 Roland Winkler <winkler@gnu.org>
19125
19126 * proced.el (proced-send-signal): For *Marked Processes* buffer
19127 put point at beginning of buffer.
19128
19129 2011-07-19 Stephen Berman <stephen.berman@gmx.net>
19130
19131 * proced.el (proced-format): Make header lines align with the text
19132 (bug#1779).
19133
19134 2011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
19135
19136 * view.el (view-buffer): Allow running in `special' modes if we're
19137 visiting a file (bug#8615).
19138
19139 2011-07-19 Martin Rudalics <rudalics@gmx.at>
19140
19141 * window.el (display-buffer-alist-of-strings-p)
19142 (display-buffer-alist-set-1, display-buffer-alist-set-2):
19143 New functions.
19144 (display-buffer-alist-set): Rewrite to handle Emacs 23 options
19145 more accurately.
19146
19147 2011-07-18 Alan Mackenzie <acm@muc.de>
19148
19149 Fontify declarators properly when, e.g., a jit-lock chunk begins
19150 inside a declaration.
19151
19152 * progmodes/cc-langs.el (c-symbol-chars): Correct a typo.
19153
19154 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
19155 New function.
19156 (c-complex-decl-matchers): Insert reference to
19157 c-font-lock-enclosing-decls.
19158
19159 * progmodes/cc-engine.el (c-backward-single-comment):
19160 (c-backward-comments): Bind open-paren-in-column-0-is-defun-start
19161 to nil around calls to (forward-comment -1).
19162
19163 2011-07-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
19164
19165 * image.el (put-image): Doc typo fix.
19166
19167 * progmodes/etags.el (tags-search): Doc typo fix.
19168
19169 * mail/smtpmail.el (smtpmail-via-smtp): Query the user for
19170 password if we get errors 550 to 554.
19171
19172 2011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
19173
19174 * net/gnutls.el (gnutls-log-level): Remove.
19175
19176 * textmodes/fill.el (adaptive-fill-regexp): Include EN DASH as an
19177 indentation character (bug#6380).
19178
19179 * files.el (buffer-offer-save): Made permanently local (bug#6241).
19180
19181 * doc-view.el (doc-view-make-safe-dir): Rewrite the error message
19182 to clarify what the problem is (bug#4291).
19183
19184 * simple.el (current-kill): Clarify what
19185 `interprogram-paste-function' does (bug#7500).
19186 (auto-fill-mode): Document `auto-fill-function' in relation to
19187 `auto-fill-mode' (bug#2470).
19188
19189 2011-07-16 Lawrence Mitchell <wence@gmx.li>
19190
19191 * emacs-lisp/cl-macs.el (defstruct): Ignore argument to setf
19192 method if slot is read-only (bug#9035).
19193
19194 2011-07-16 Martin Rudalics <rudalics@gmx.at>
19195
19196 * frame.el (select-frame-set-input-focus): New argument NORECORD.
19197 * window.el (pop-to-buffer): Select window used even if it was
19198 selected before, see discussion of (Bug#8615), (Bug#6954).
19199 Pass argument NORECORD on to select-frame-set-input-focus.
19200
19201 2011-07-15 Glenn Morris <rgm@gnu.org>
19202
19203 * subr.el (read-char-choice): Allow quitting. (Bug#9001)
19204 Respect help-form.
19205
19206 2011-07-09 Lawrence Mitchell <wence@gmx.li>
19207
19208 * net/gnutls.el (gnutls-min-prime-bits): New variable.
19209 (gnutls-negotiate): Use it.
19210
19211 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
19212
19213 * net/gnutls.el (gnutls-negotiate):
19214 Upcase `gnutls-algorithm-priority'.
19215
19216 2011-07-15 Glenn Morris <rgm@gnu.org>
19217
19218 * jka-compr.el (jka-compr-verbose): Move from here...
19219 * jka-cmpr-hook.el (jka-compr-verbose): ... to here. (Bug#9090)
19220 Add missing :version tag.
19221 * info.el: No need to require jka-compr when compiling.
19222
19223 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
19224
19225 * net/gnutls.el (gnutls-algorithm-priority): New variable.
19226 (gnutls-negotiate): Use it.
19227
19228 * emacs-lisp/cl-macs.el (declare): Link to the "Declarations" node.
19229
19230 * info.el (Info-beginning-of-buffer): New command.
19231 (Info-mode-map): Use it instead of `beginning-of-buffer' to allow
19232 announcing `b' as the key (bug#8325).
19233 (Info-mode-menu): Use `Info-beginning-of-buffer' for consistency.
19234
19235 * emacs-lisp/cl-macs.el (declare): Doc string fix-up.
19236
19237 * international/mule-cmds.el
19238 (describe-specified-language-support): Make the error message
19239 clearer (bug#8905).
19240
19241 * emacs-lisp/cl-macs.el (declare): Add a doc string (bug#8690).
19242
19243 * isearch.el (isearch-barrier): Add a doc string, since it's
19244 mentioned in a function doc string (bug#8678).
19245
19246 2011-07-15 Martin Rudalics <rudalics@gmx.at>
19247
19248 * window.el (switch-to-buffer): Call pop-to-buffer with normalized
19249 buffer argument (Bug#9083) and self-identifying label argument.
19250
19251 2011-07-15 Glenn Morris <rgm@gnu.org>
19252
19253 * emacs-lisp/debug.el (debug): Doc fix. (Bug#8273)
19254
19255 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
19256
19257 * man.el (Man-fontify-manpage): Fix message when formatting the
19258 man page (bug#7929).
19259
19260 2011-07-14 Eli Zaretskii <eliz@gnu.org>
19261
19262 * buff-menu.el (Buffer-menu-buffer+size): Accept an additional
19263 argument LRM; if non-nil, append an invisible LRM character to the
19264 buffer name.
19265 (list-buffers-noselect): Call Buffer-menu-buffer+size with the
19266 last argument non-nil, when formatting buffer names.
19267 (Buffer-menu-mode, list-buffers-noselect): Force left-to-right
19268 paragraph direction.
19269
19270 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
19271
19272 * man.el (Man-bgproc-sentinel): Skip any arguments and only output
19273 the man page name (bug#7929).
19274
19275 * image.el (put-image): Mention the `put-image' overlay property
19276 (bug#7834).
19277
19278 * scroll-bar.el (set-scroll-bar-mode): Mention that
19279 `scroll-bar-mode' lists the values (bug#7772).
19280
19281 * image-mode.el (image-mode-fit-frame): Mention that it's a toggle
19282 command (bug#7729).
19283
19284 * rect.el (apply-on-rectangle): Return the point after the last
19285 operation.
19286 (string-rectangle): Go to the point after the last operation
19287 (bug#7522).
19288
19289 * printing.el (pr-toggle-region): Clarify the documentation
19290 slightly (bug#7493).
19291
19292 * time.el (display-time-update):
19293 Allow `display-time-mail-function' to return nil (bug#7158).
19294 Fix suggested by Detlev Zundel.
19295
19296 * vc/diff.el (diff): Clarify the order the file names are read
19297 (bug#7111).
19298
19299 * mouse.el (mouse-set-region): Link to `mouse-drag-copy-region' in
19300 the doc string (bug#7015).
19301
19302 * font-lock.el (font-lock-maximum-decoration): Mention what
19303 numeric levels mean (bug#6935).
19304
19305 * startup.el (initial-buffer-choice): Don't mention the `none'
19306 selection, which is against policy.
19307
19308 2011-07-14 Martin Rudalics <rudalics@gmx.at>
19309
19310 * window.el (display-buffer-normalize-special):
19311 Replace `dedicated' by `dedicate' to dedicate window (Bug#9072).
19312
19313 2011-07-14 Eli Zaretskii <eliz@gnu.org>
19314
19315 * subr.el (version<, version<=, version=): Mention "-CVS" and
19316 "-12345" alpha version numbers.
19317
19318 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
19319
19320 * bindings.el: Add advertised binding for set-mark-command
19321 (Bug#5772).
19322
19323 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
19324
19325 * bindings.el (mode-line-other-buffer):
19326 * bookmark.el (bookmark-bmenu-2-window):
19327 * bs.el (bs-cycle-next, bs-cycle-previous):
19328 * net/tramp-cmds.el (tramp-append-tramp-buffers): Revert to using
19329 switch-to-buffer.
19330
19331 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
19332 Delete.
19333
19334 2011-07-14 Juanma Barranquero <lekktu@gmail.com>
19335
19336 * follow.el (follow-debug-message, follow-redisplay):
19337 * jka-cmpr-hook.el (with-auto-compression-mode):
19338 Fix typos in docstrings.
19339
19340 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
19341
19342 * subr.el (with-silent-modifications): Clarify somewhat what the
19343 macro inhibits (bug#6525).
19344
19345 * simple.el (eval-expression): Note what it does if called
19346 interactively (bug#6495).
19347
19348 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
19349
19350 * window.el (switch-to-buffer): New arg FORCE-SAME-WINDOW.
19351 Use pop-to-buffer buffer-or-name if it is nil.
19352
19353 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
19354 Remove switch-to-buffer.
19355
19356 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
19357
19358 * files.el (make-directory): Clarify that an error will be raised
19359 if there's an error (bug#6397).
19360
19361 * startup.el (initial-buffer-choice): Add `none' as a choice
19362 (bug#6234).
19363
19364 * subr.el (add-hook): Clarify section about buffer-local hooks
19365 (bug#6218).
19366
19367 * dired.el (dired-flagged): Clarify doc string (bug#6117).
19368
19369 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
19370
19371 * tabify.el (untabify): Preserve the current column so that point
19372 doesn't move (bug#6032).
19373
19374 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
19375
19376 * progmodes/cperl-mode.el (cperl-syntaxify-by-font-lock):
19377 Rewrite to avoid awkward possessive "s" (bug#5986).
19378
19379 2011-07-13 Glenn Morris <rgm@gnu.org>
19380
19381 * dired.el (dired-use-ls-dired): Doc fix. (Bug#9039).
19382 (dired-insert-directory): Give a message the first time
19383 if ls is found not to support --dired.
19384
19385 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
19386
19387 * simple.el (toggle-truncate-lines): Clarify what is toggled
19388 (bug#5580). Text by Drew Adams.
19389
19390 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
19391
19392 * simple.el (blink-matching-open): Make the error message from the
19393 last change less verbose.
19394
19395 2011-07-13 Dan Nicolaescu <dann@ics.uci.edu>
19396
19397 * font-lock.el (font-lock-comment-face): Use the high contrast
19398 "yellow" color for font-lock-comment-face on low color terminals
19399 using a dark background color (bug#4221).
19400
19401 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
19402
19403 * dired.el (dired-insert-set-properties): Make the doc string
19404 reflect what it does now (bug#5325).
19405
19406 * simple.el (blink-matching-open): Say that we were unable to find
19407 the match within the limit, if we're limited (bug#5122).
19408
19409 * international/mule-cmds.el (prefer-coding-system): Add an
19410 example (bug#4869).
19411
19412 * progmodes/etags.el (tags-search): Document `file-list-form'
19413 (bug#4731).
19414
19415 2011-07-13 Lawrence Mitchell <wence@gmx.li>
19416
19417 * net/browse-url.el (browse-url-default-browser)
19418 (browse-url-browser-function): Make the default browser choice a
19419 bit more logical (bug#4300). Also clean up the doc string.
19420
19421 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
19422
19423 * bindings.el (completion-ignored-extensions): Add OpenMCL/Clozure
19424 binary endings (bug#4440).
19425
19426 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
19427
19428 * info.el (info-insert-file-contents): Inhibit jka-compr messages,
19429 which can be pretty annoying (bug#8971).
19430
19431 * jka-compr.el (jka-compr-verbose): New variable, and use
19432 throughout (bug#8971).
19433
19434 * info.el (Info-find-file): Fall back on the installation
19435 directory if we can't find the info node anywhere else.
19436
19437 2011-07-13 Sergei Organov <osv@javad.com> (tiny change)
19438
19439 * vc/vc.el (vc-revert-file):
19440 Don't set file time-stamp in the past. (Bug#5181)
19441
19442 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
19443
19444 * files.el (after-find-file): Give a better error message when
19445 trying to find a symlink that points to a file that doesn't exist
19446 (bug#4398).
19447
19448 * progmodes/cc-vars.el: Remove (probably) misleading comment
19449 (bug#4396).
19450
19451 2011-07-12 Johan Bockgård <bojohan@gnu.org>
19452
19453 * mouse-sel.el (mouse-sel-primary-overlay): Use the `region' face.
19454
19455 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
19456
19457 * mouse-sel.el: Hack restoring functionality, while keeping
19458 compatibility with 2010-07-03 changes to mouse selection.
19459 (mouse-sel-primary-overlay): New var.
19460 (mouse-sel-selection-alist): Use it.
19461 (mouse-sel-mode): Doc fix; remove points that are default features
19462 of mouse.el.
19463
19464 2011-07-12 Johan Bockgård <bojohan@gnu.org>
19465
19466 * progmodes/compile.el (compilation-error-regexp-alist-alist):
19467 Fix previous fix (bug#2490).
19468
19469 2011-07-12 Roland Winkler <winkler@gnu.org>
19470
19471 * textmodes/bibtex.el (bibtex-initialize):
19472 Use pop-to-buffer-same-window.
19473 (bibtex-search-entries): Fix interactive call.
19474
19475 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
19476
19477 * progmodes/compile.el (compilation-error-regexp-alist-alist):
19478 Fontise bytecomp Error lines more correctly (bug#2490).
19479 Fix suggested by Johan Bockgård.
19480
19481 * subr.el (remove-duplicates): Remove; `delete-dups' is sufficient.
19482
19483 * dired-x.el (dired-guess-default): Use `delete-dups'.
19484
19485 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
19486
19487 * dired.el (dired-mark-prompt):
19488 * dired-aux.el (dired-read-shell-command): Doc fix.
19489
19490 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
19491
19492 * mail/sendmail.el (sendmail-query-once):
19493 Use `customize-save-variable' unconditionally, now that it works under
19494 emacs -Q.
19495
19496 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
19497
19498 * cus-edit.el (custom-file): Take an optional no-error variable.
19499 (customize-save-variable): Set the variable, and give a warning if
19500 running under "emacs -q".
19501
19502 2011-07-11 Juanma Barranquero <lekktu@gmail.com>
19503
19504 * loadhist.el (unload-feature-special-hooks):
19505 Add `auto-coding-functions', `fill-nobreak-predicate' and
19506 `find-directory-functions' (bug#5327).
19507
19508 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
19509
19510 * vc/ediff.el (ediff-patch-file): Clarify doc string (bug#3138).
19511
19512 * cus-edit.el (custom-guess-name-alist): -alist variables should
19513 use the `alist' type (bug#3120). Suggested by Drew Adams.
19514
19515 * printing.el: Add documentation to all the `pr-toggle-' commands.
19516
19517 2011-07-11 Leo Liu <sdl.web@gmail.com>
19518
19519 * files.el (toggle-read-only): Only do the `C-x C-q' warning on VC
19520 backends where it makes sense (bug#2623).
19521
19522 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
19523
19524 * dired-x.el (dired-guess-default): Remove duplicate shell command
19525 entries (bug#2028).
19526 (dired-guess-default): Fix grammar in doc string (bug#2028).
19527 (dired-guess-shell-alist-user): Clarify the example a bit (bug#2030).
19528
19529 * subr.el (remove-duplicates): New conveniency function.
19530
19531 2011-07-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
19532
19533 * tool-bar.el (tool-bar-mode): Clarify positive/negative arguments
19534 (bug#1526).
19535
19536 2011-07-10 Martin Rudalics <rudalics@gmx.at>
19537
19538 * window.el (display-buffer-normalize-default): Don't invert
19539 meaning of even-window-heights. Reported by Eli Zaretskii
19540 <eliz@gnu.org>.
19541
19542 2011-07-10 Bob Rogers <rogers@rgrjr.dyndns.org>
19543
19544 * vc/vc.el (vc-diff-internal): Fix race condition (Bug#1256).
19545
19546 2011-07-10 Chong Yidong <cyd@stupidchicken.com>
19547
19548 * window.el (display-buffer): Fix arguments to
19549 display-buffer-reuse-window in last change.
19550
19551 * faces.el (link): Use a less saturated blue on light backgrounds.
19552
19553 * startup.el (fancy-startup-text, fancy-about-text)
19554 (fancy-startup-tail): Use font-lock faces, for background safety.
19555
19556 2011-07-09 Bob Nnamtrop <bobnnamtrop@gmail.com> (tiny change)
19557
19558 * emulation/viper-cmd.el (viper-change-state-to-vi):
19559 Limit triggering of abbrev expansion (Bug#9038).
19560
19561 2011-07-09 Martin Rudalics <rudalics@gmx.at>
19562
19563 * window.el (display-buffer-default-specifiers): Remove.
19564 (display-buffer-macro-specifiers): Remove default specifiers.
19565 (display-buffer-alist): Default to nil.
19566 (display-buffer-reuse-window): New optional argument other-window.
19567 (display-buffer-pop-up-window): Allow splitting internal
19568 windows. Check whether a live window was created.
19569 (display-buffer-other-window-means-other-frame)
19570 (display-buffer-normalize-arguments): Rename to
19571 display-buffer-normalize-argument and rewrite. Set the
19572 other-window specifier.
19573 (display-buffer-normalize-special): New function.
19574 (display-buffer-normalize-options): Rename to
19575 display-buffer-normalize-default and rewrite.
19576 (display-buffer-normalize-options-inhibit): Remove.
19577 (display-buffer-normalize-specifiers): Rewrite.
19578 (display-buffer): Process other-window specifier and call
19579 display-buffer-reuse-window with it. Emulate Emacs 23 behavior
19580 more faithfully.
19581 (pop-up-windows, even-window-heights): Restore Emacs 23 default values.
19582 (display-buffer-alist-set): Don't handle 'unset default values.
19583 (display-buffer-in-window, display-buffer-alist-set):
19584 Replace symbol "dedicated" by "dedicate". Reported by Tassilo Horn
19585 <tassilo@member.fsf.org>.
19586
19587 2011-07-09 Leo Liu <sdl.web@gmail.com>
19588
19589 * register.el (insert-register): Restore accidental change on
19590 2011-06-26. (Bug#9028)
19591
19592 2011-07-09 Glenn Morris <rgm@gnu.org>
19593
19594 * subr.el (remq): Handle the empty list. (Bug#9024)
19595
19596 2011-07-08 Andreas Schwab <schwab@linux-m68k.org>
19597
19598 * mail/sendmail.el (send-mail-function): No longer delay custom
19599 initialization.
19600 * custom.el (custom-initialize-delay): Doc fix.
19601
19602 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
19603
19604 * abbrev.el (expand-abbrev): Try to preserve point (bug#5805).
19605
19606 2011-07-08 Michael Albinus <michael.albinus@gmx.de>
19607
19608 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use a
19609 human-friendly prompt.
19610
19611 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
19612
19613 * vc/vc-bzr.el (vc-bzr-revision-keywords): Remove svn, it's only
19614 provided by a particular plugin.
19615
19616 2011-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
19617
19618 * mail/sendmail.el (sendmail-query-once): If we aren't allowed to
19619 save customizations (with "emacs -Q"), just set the variable
19620 instead of erroring out.
19621
19622 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
19623
19624 2011-07-08 Juri Linkov <juri@jurta.org>
19625
19626 * arc-mode.el (archive-zip-expunge, archive-zip-update)
19627 (archive-zip-update-case): Use 7z if found by `executable-find'.
19628 The order of searching the available programs is the same as in
19629 `archive-zip-extract' (bug#8968).
19630
19631 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
19632
19633 * menu-bar.el (menu-bar-line-wrapping-menu): Revert last change.
19634 (menu-bar-options-menu): Tweak descriptions.
19635
19636 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
19637
19638 * menu-bar.el (menu-bar-line-wrapping-menu): Make all the Options
19639 menu items into verb phrases (bug#1421). Also refill to fit under
19640 80 columns.
19641
19642 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
19643
19644 * info.el (info, Info-read-node-name-2, Info-read-node-name-1)
19645 (Info-read-node-name): Doc fix (Bug#1084).
19646
19647 * thingatpt.el (forward-thing, bounds-of-thing-at-point)
19648 (thing-at-point, beginning-of-thing, end-of-thing, in-string-p)
19649 (end-of-sexp, beginning-of-sexp)
19650 (thing-at-point-bounds-of-list-at-point, forward-whitespace)
19651 (forward-symbol, forward-same-syntax, word-at-point)
19652 (sentence-at-point): Doc fix (Bug#1144).
19653
19654 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
19655
19656 * info.el (Info-mode-map): Remove S-TAB binding, since [backtab]
19657 should cover it (bug#1281).
19658
19659 * cus-edit.el (custom-show): Mark as obsolete.
19660
19661 * net/network-stream.el (network-stream-open-starttls): If GnuTLS
19662 negotiation fails, then possibly try again with a non-encrypted
19663 connection (bug#9017).
19664
19665 * mail/smtpmail.el (smtpmail-stream-type): Note that `plain' can
19666 be used.
19667
19668 2011-07-07 Richard Stallman <rms@gnu.org>
19669
19670 * mail/rmail.el (rmail-next-error-move): Use `compilation-message'
19671 property, and handle its changed format.
19672 Look for the correct line number.
19673 Use file's line contents (but not past first =) to find
19674 correct line in message.
19675
19676 2011-07-07 Kenichi Handa <handa@m17n.org>
19677
19678 * international/characters.el (build-unicode-category-table):
19679 Delete it.
19680 (unicode-category-table): Set it by unicode-property-table-internal.
19681
19682 * international/mule-cmds.el (char-code-property-alist): Move to
19683 to src/chartab.c.
19684 (get-char-code-property): Call unicode-property-table-internal to
19685 load a file. Call get-unicode-property-internal where necessary.
19686 (put-char-code-property): Call unicode-property-table-internal to
19687 load a file. Call put-unicode-property-internal where necessary.
19688 put-unicode-property-internal where necessary.
19689 (char-code-property-description):
19690 Call unicode-property-table-internal to load a file.
19691
19692 * international/charprop.el:
19693 * international/uni-bidi.el:
19694 * international/uni-category.el:
19695 * international/uni-combining.el:
19696 * international/uni-comment.el:
19697 * international/uni-decimal.el:
19698 * international/uni-decomposition.el:
19699 * international/uni-digit.el:
19700 * international/uni-lowercase.el:
19701 * international/uni-mirrored.el:
19702 * international/uni-name.el:
19703 * international/uni-numeric.el:
19704 * international/uni-old-name.el:
19705 * international/uni-titlecase.el:
19706 * international/uni-uppercase.el: Regenerate.
19707
19708 * loadup.el: Load international/charprop.el before
19709 international/characters.
19710
19711 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
19712
19713 * window.el (next-buffer, previous-buffer): Signal an error if
19714 called from a minibuffer window.
19715
19716 * bindings.el: Revert 2011-07-04 change.
19717
19718 2011-07-06 Richard Stallman <rms@gnu.org>
19719
19720 * mail/rmailmm.el (rmail-mime-process): Use markers for buf positions.
19721 (rmail-mime-insert-bulk, rmail-mime-insert-text):
19722 Treat markers like ints.
19723 (rmail-mime-entity): Doc fix.
19724
19725 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
19726
19727 * mail/smtpmail.el (smtpmail-default-smtp-server): Made into a
19728 defcustom again for backwards compatibility.
19729
19730 * simple.el (shell-command-on-region): Fill.
19731
19732 * dired-aux.el (dired-kill-line): Add a doc string.
19733
19734 * dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults
19735 to "\\sw\\|\\s_" (bug#358).
19736
19737 * dired.el (dired-mode): Clarify "unmark or unflag" (bug#8770).
19738 (dired-unmark-backward): Ditto.
19739 (dired-flag-backup-files): Ditto.
19740
19741 * dired-x.el (dired-mark-sexp): Ditto.
19742
19743 2011-07-06 Richard Stallman <rms@gnu.org>
19744
19745 * mail/rmailmm.el: Give entity a new slot, TRUNCATED.
19746 (rmail-mime-entity): New arg TRUNCATED.
19747 (rmail-mime-entity-truncated, rmail-mime-entity-set-truncated):
19748 New functions.
19749 (rmail-mime-save): Warn if entity is truncated.
19750 (rmail-mime-toggle-hidden): Likewise, for showing.
19751 (rmail-mime-process-multipart): Record when an entity is truncated.
19752
19753 * mail/rmailmm.el (rmail-search-mime-message): Don't get confused
19754 if ENTITY is a string.
19755
19756 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
19757
19758 * emacs-lisp/lisp-mode.el (eval-defun-1): Update the documentation
19759 of faces when `M-C-x'-ing their definitions (bug#8378).
19760 Also clean up the code slightly.
19761
19762 * progmodes/grep.el (rgrep): Don't bind `process-connection-type',
19763 because that makes the colors go away.
19764
19765 * mail/sendmail.el (send-mail-function): Change the default to
19766 `sendmail-query-once'.
19767 (sendmail-query-once): Add an autoload cookie.
19768
19769 * net/network-stream.el (network-stream-open-starttls): Try using
19770 a plain connection even if the server offered STARTTLS, and we
19771 kinda wanted to use it, if Emacs doesn't have any STARTTLS
19772 capability. This should make smtpmail.el work in slightly more
19773 configurations.
19774
19775 2011-07-06 Michael Albinus <michael.albinus@gmx.de>
19776
19777 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
19778 New defun.
19779 * net/tramp-cmds.el (tramp-append-tramp-buffers): Use it.
19780
19781 2011-07-06 Michael R. Mauger <mmaug@yahoo.com>
19782
19783 * progmodes/sql.el: Version 3.0
19784 (sql-product-alist): Add product :completion-object,
19785 :completion-column, and :statement attributes.
19786 (sql-mode-menu, sql-interactive-mode-map): Fix List entries.
19787 (sql-mode-syntax-table): Mark all punctuation.
19788 (sql-font-lock-keywords-builder): Temporarily remove fallback on
19789 ansi keywords.
19790 (sql-regexp-abbrev, sql-regexp-abbrev-list): New functions.
19791 (sql-mode-oracle-font-lock-keywords): Improve.
19792 (sql-oracle-show-reserved-words): New function for development.
19793 (sql-product-font-lock): Simplify for source code buffers.
19794 (sql-product-syntax-table, sql-product-font-lock-syntax-alist):
19795 New functions.
19796 (sql-highlight-product): Set product specific syntax table.
19797 (sql-mode-map): Add statement movement functions.
19798 (sql-ansi-statement-starters, sql-oracle-statement-starters):
19799 New variable.
19800 (sql-statement-regexp, sql-beginning-of-statement)
19801 (sql-end-of-statement, sql-signum): New functions.
19802 (sql-buffer-live-p, sql=find-sqli-buffer): Add CONNECTION parameter.
19803 (sql-show-sqli-buffer): Bug fix.
19804 (sql-interactive-mode): Store connection data as buffer local.
19805 (sql-connect): Add NEW-NAME parameter. Redesign interaction
19806 with sql-interactive-mode.
19807 (sql-save-connection): Save buffer local settings.
19808 (sql-connection-menu-filter): Change menu entry name.
19809 (sql-product-interactive): Bug fix.
19810 (sql-preoutput-hold): New variable.
19811 (sql-interactive-remove-continuation-prompt): Bug fixes.
19812 (sql-debug-redirect): New variable.
19813 (sql-str-literal): New function.
19814 (sql-redirect, sql-redirect-one, sql-redirect-value, sql-execute):
19815 Redesign.
19816 (sql-oracle-save-settings, sql-oracle-restore-settings)
19817 (sql-oracle-list-all, sql-oracle-list-table): New functions.
19818 (sql-completion-object, sql-completion-column)
19819 (sql-completion-sqlbuf): New variables.
19820 (sql-build-completions-1, sql-build-completions)
19821 (sql-try-completion): New functions.
19822 (sql-read-table-name): Use them.
19823 (sql-contains-names): New buffer local variable.
19824 (sql-list-all, sql-list-table): Use it.
19825 (sql-oracle-completion-types): New variable.
19826 (sql-oracle-completion-object, sql-sqlite-completion-object)
19827 (sql-postgres-completion-object): New functions.
19828
19829 2011-07-06 Glenn Morris <rgm@gnu.org>
19830
19831 * window.el (pop-to-buffer): Doc fix.
19832
19833 2011-07-06 Markus Heiser <markus.heiser@darmarit.de> (tiny change)
19834
19835 * progmodes/gud.el (gud-pdb-marker-regexp): Accept \r char (Bug#5653).
19836
19837 2011-07-06 Chong Yidong <cyd@stupidchicken.com>
19838
19839 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
19840
19841 * info.el (Info-directory-toc-nodes): Minor doc fix (Bug#8833).
19842
19843 2011-07-05 Chong Yidong <cyd@stupidchicken.com>
19844
19845 * button.el (button): Inherit from link face. Suggested by Dan
19846 Nicolaescu.
19847
19848 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
19849
19850 * progmodes/gdb-mi.el: Fit in 80 columns.
19851 (gdb-setup-windows, gdb-restore-windows): Avoid other-window and
19852 switch-to-buffer.
19853
19854 * progmodes/which-func.el (which-func-ff-hook): Don't output a message
19855 if imenu is simply not configured (bug#8941).
19856
19857 2011-07-05 Ken Manheimer <ken.manheimer@gmail.com>
19858
19859 * allout.el (allout-post-undo-hook): New allout outline-change
19860 event hook to signal undo activity.
19861 (allout-post-command-business): Run allout-post-undo-hook if an
19862 undo just occurred.
19863 (allout-after-copy-or-kill-hook, allout-mode): Minor docstring changes.
19864 * allout-widgets.el (allout-widgets-after-undo-function):
19865 Ensure the integrity of the current item's decoration after it has been
19866 in the vicinity of an undo.
19867 (allout-widgets-mode): Include allout-widgets-after-undo-function
19868 on the new allout-post-undo-hook.
19869
19870 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
19871
19872 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-abbrev-table):
19873 Let define-derived-mode define it.
19874 * emacs-lisp/derived.el (define-derived-mode): Try to avoid creating
19875 cycles of abbrev-table inheritance (bug#8998).
19876
19877 2011-07-05 Roland Winkler <winkler@gnu.org>
19878
19879 * textmodes/bibtex.el: Add support for biblatex.
19880 (bibtex-BibTeX-entry-alist, bibtex-biblatex-entry-alist)
19881 (bibtex-BibTeX-field-alist, bibtex-biblatex-field-alist)
19882 (bibtex-dialect-list, bibtex-dialect, bibtex-no-opt-remove-re)
19883 (bibtex-entry-alist, bibtex-field-alist): New variables.
19884 (bibtex-entry-field-alist): Obsolete alias for
19885 bibtex-BibTeX-entry-alist.
19886 (bibtex-entry-alist, bibtex-field-alist): New widgets.
19887 (bibtex-set-dialect): New command.
19888 (bibtex-entry-type, bibtex-entry-head)
19889 (bibtex-entry-maybe-empty-head, bibtex-any-valid-entry-type):
19890 Bind via bibtex-set-dialect.
19891 (bibtex-Article, bibtex-Book, bibtex-Booklet, bibtex-InBook)
19892 (bibtex-InCollection, bibtex-InProceedings, bibtex-Manual)
19893 (bibtex-MastersThesis, bibtex-Misc, bibtex-PhdThesis)
19894 (bibtex-Proceedings, bibtex-TechReport, bibtex-Unpublished):
19895 Define via bibtex-set-dialect.
19896 (bibtex-name-in-field, bibtex-remove-OPT-or-ALT):
19897 Obey bibtex-no-opt-remove-re.
19898 (bibtex-vec-push, bibtex-vec-incr): New functions.
19899 (bibtex-format-entry, bibtex-field-list)
19900 (bibtex-print-help-message, bibtex-validate)
19901 (bibtex-search-entries): Use new format of bibtex-entry-alist.
19902
19903 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
19904
19905 * progmodes/compile.el (compilation-goto-locus):
19906 * net/tramp-cmds.el (tramp-append-tramp-buffers):
19907 * bs.el (bs-cycle-next, bs-cycle-previous):
19908 * bookmark.el (bookmark-bmenu-list, bookmark-bmenu-2-window):
19909 * bindings.el (mode-line-other-buffer):
19910 * autoinsert.el (auto-insert):
19911 * arc-mode.el (archive-extract):
19912 * abbrev.el (edit-abbrevs): Fix some uses of switch-to-buffer.
19913
19914 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
19915
19916 * emacs-lock.el (emacs-lock-mode): Fix typo in variable name.
19917 Fix check of `emacs-lock-unlockable-modes'.
19918 Coerce true values of `emacs-lock--try-unlocking' to t.
19919
19920 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
19921
19922 * obsolete/old-emacs-lock.el: Rename from emacs-lock.el.
19923 * emacs-lock.el: New file.
19924
19925 2011-07-05 Julien Danjou <julien@danjou.info>
19926
19927 * textmodes/rst.el (rst-define-level-faces): Use `facep' rather
19928 than `boundp' to check if face is set.
19929
19930 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
19931
19932 * register.el (registerv-make):
19933 * window.el (window-min-height): Fix typos in docstrings.
19934
19935 2011-07-05 Jan Djärv <jan.h.d@swipnet.se>
19936
19937 * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
19938 Update doc string.
19939
19940 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
19941
19942 * server.el (server-execute): Catch quit and call
19943 `server-return-error' to pass the error back to emacsclient and
19944 close the connection (bug#8942).
19945
19946 2011-07-04 Ken Manheimer <ken.manheimer@gmail.com>
19947
19948 * allout.el (allout-encrypt-unencrypted-on-saves): Do not provide
19949 insecure exception for current topic. Also note that auto-saves
19950 are handled differently.
19951
19952 (allout-auto-save-temporarily-disabled, allout-just-did-undo):
19953 State variables for tracking auto-save inhibition situation.
19954
19955 (allout-write-contents-hook-handler): Rename from
19956 'allout-write-file-hook-handler', and describe how it depends on
19957 write-contents-functions sensitivity to non-nil value to prevent
19958 file write.
19959
19960 (allout-auto-save-hook-handler): Remove. auto-save does not check
19961 this in individual buffers, only in the starting buffer, so this
19962 is not the right way for us to inhibit auto-save in a buffer
19963 according to its condition.
19964
19965 (allout-mode): Use new allout-write-contents-hook-handler, and
19966 only with write-contents-functions. Remove auto-save provisions -
19967 they're implemented elsewhere.
19968
19969 (allout-before-change-handler): If undo is in progress, note that
19970 for attention of allout-post-command-business.
19971
19972 (allout-post-command-business): If the command we're following was
19973 an undo, check for change in the status of encrypted items and
19974 adjust auto-save inhibitions accordingly.
19975
19976 (allout-toggle-subtree-encryption): Adjust auto-save inhibition
19977 according to whether there are or aren't any plain-text topics
19978 pending encryption.
19979
19980 (allout-inhibit-auto-save-info-for-decryption):
19981 Adjust buffer-saved-size and some allout state to inhibit auto-saves
19982 if there are plain-text topics pending encryption.
19983
19984 (allout-maybe-resume-auto-save-info-after-encryption): Adjust
19985 buffer-saved-size and some allout state to not inhibit auto-saves
19986 if there are no longer any plain-text topics pending encryption.
19987
19988 (allout-next-topic-pending-encryption, allout-encrypt-decrypted):
19989 No longer provide for exemption of the current topic.
19990
19991 2011-07-04 Juri Linkov <juri@jurta.org>
19992
19993 Add 7z operations to delete and save changed members (bug#8968).
19994 * arc-mode.el (archive-7z-expunge, archive-7z-update):
19995 New defcustoms.
19996 (archive-7z-write-file-member): New function.
19997 (archive-7z-summarize): Fix the number of dashes in the
19998 listing output.
19999
20000 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
20001
20002 * pcmpl-linux.el (pcomplete-pare-list): Re-add, from pcomplete.el
20003 (bug#8958).
20004
20005 2011-07-04 Chong Yidong <cyd@stupidchicken.com>
20006
20007 * bindings.el: Ignore next-buffer and previous-buffer in
20008 minibuffer-local-map.
20009
20010 * font-lock.el (font-lock-builtin-face): Change light background
20011 color to dark slate blue (Bug#6693).
20012
20013 2011-07-04 Wang Diancheng <dcwang@kingbase.com.cn> (tiny change)
20014
20015 * progmodes/gdb-mi.el (gdb): Use completion-at-point.
20016
20017 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
20018
20019 * files.el (find-file): Use pop-to-buffer-same-window (bug#8911).
20020 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
20021 Add switch-to-buffer.
20022
20023 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
20024
20025 * isearch.el (isearch-search-fun-function): Clarify further the
20026 meaning of the function returned.
20027
20028 2011-07-04 Michael Albinus <michael.albinus@gmx.de>
20029
20030 * net/tramp-cmds.el (tramp-cleanup-this-connection): New command.
20031
20032 * net/tramp-sh.el (tramp-color-escape-sequence-regexp): New defconst.
20033 (tramp-sh-handle-insert-directory, tramp-convert-file-attributes):
20034 Use it.
20035 (tramp-remote-path): Add "/bin" and "/usr/bin". On busyboxes,
20036 `tramp-default-remote-path' does not exist.
20037 (tramp-send-command-and-read): New optional argument NOERROR.
20038 (tramp-open-connection-setup-interactive-shell)
20039 (tramp-get-remote-path, tramp-get-remote-stat): Use it.
20040 (tramp-get-remote-readlink): Do not mask with `ignore-errors'.
20041 (tramp-process-sentinel): Flush also process' connection property.
20042 (tramp-sh-handle-start-file-process): Do not set process
20043 sentinel. It is done now ...
20044 (tramp-maybe-open-connection): ... here. (Bug#8929)
20045
20046 2011-07-04 MON KEY <monkey@sandpframing.com>
20047
20048 * play/animate.el (animate-string): Doc fixes and allow changing
20049 the buffer name (bug#5417).
20050
20051 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
20052
20053 * play/animate.el (animation-buffer-name): Rename from *animate*.
20054
20055 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
20056
20057 * emacs-lisp/timer.el: Use time-date fns rather than rolling our own.
20058 This is simpler and helps future-proof the code.
20059 (timer-until): Use time-subtract and float-time.
20060 (timer--time-less-p): Use time-less-p.
20061
20062 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
20063
20064 * type-break.el (timep): Use the value of `float-time' to avoid a
20065 byte-compiler warning.
20066
20067 * server.el (server-eval-and-print): Return any result, even nil.
20068
20069 2011-07-03 Paul Eggert <eggert@cs.ucla.edu>
20070
20071 * type-break.el: Accept time formats that the builtins accept.
20072 (timep, type-break-time-difference): Accept any format that
20073 float-time accepts, rather than insisting on (HIGH LOW USECS) format.
20074 This is simpler and helps future-proof the code.
20075 (type-break-time-difference): Round rather than ignoring
20076 subseconds components.
20077
20078 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
20079
20080 * info.el (Info-apropos-matches): Make non-interactive, since it
20081 doesn't seem to do anything useful as a command (bug#8829).
20082
20083 2011-07-03 Chong Yidong <cyd@stupidchicken.com>
20084
20085 * frame.el (frame-background-mode, frame-set-background-mode):
20086 Move from faces.el.
20087 (frame-default-terminal-background): New function.
20088
20089 * custom.el (custom-push-theme): Don't record faces in `changed'
20090 theme; this doesn't work correctly for per-frame face settings.
20091 (disable-theme): Use face-set-after-frame-default to reset faces.
20092 (custom--frame-color-default): New function.
20093
20094 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
20095
20096 * dired.el (dired-flagging-regexp): Remove unused variable
20097 (bug#8769).
20098
20099 2011-03-29 Kevin Ryde <user42@zip.com.au>
20100
20101 * progmodes/compile.el (compilation-error-regexp-alist-alist):
20102 `perl-Test2' extend to match possible "fail #N" rep count
20103 (bug#8377).
20104
20105 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
20106
20107 * mail/feedmail.el (feedmail-buffer-to-smtpmail):
20108 `smtpmail-via-smtp' now returns the error instead of nil.
20109
20110 * isearch.el (isearch-search-fun-function): Clarify the doc string
20111 (bug#8101).
20112
20113 2011-07-03 Richard Kim <emacs18@gmail.com> (tiny change)
20114
20115 * textmodes/texnfo-upd.el (texinfo-insert-menu): Don't insert
20116 unnecessary spaces (bug#8987).
20117
20118 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
20119
20120 * net/network-stream.el (open-network-stream): Use the
20121 :end-of-capability command thoughout.
20122
20123 2011-07-03 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
20124
20125 * net/network-stream.el (open-network-stream): Add the
20126 :end-of-capability command parameter, used by pop3.el.
20127
20128 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
20129
20130 * dired.el (dired-map-over-marks): Refill the doc string (bug#6814).
20131
20132 * fringe.el (fringe-query-style): Remove redundant text " (type ?
20133 for list)" (bug#6475).
20134
20135 * files.el (file-expand-wildcards): Ignore non-readable
20136 sub-directories while trying to find matches instead of signaling
20137 an error (bug#6297).
20138
20139 * man.el (Man-reference-regexp): Allow matching possible
20140 word-wrapped references (bug#6289).
20141
20142 * vc/vc.el (vc-modify-change-comment): Change *VC-log* to *vc-log*
20143 for consistency with the other vc buffers (bug#6197).
20144 (vc-checkin): Ditto.
20145
20146 * vc/vc-arch.el: Fix comments to match the *VC-log* name change.
20147
20148 * longlines.el (longlines-mode): Document what ARG does (bug#6150).
20149
20150 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
20151
20152 * custom.el (defcustom): Clarify that :set is only used in the
20153 Customize user interface (bug#6089).
20154
20155 * progmodes/flymake.el (flymake-mode): If the buffer isn't
20156 associated with a file, refuse to run instead of erroring out
20157 (bug#6084).
20158
20159 * textmodes/fill.el (fill-region): Remove the "Ordinarily" from
20160 the doc string, since it appears that using `fill-column' always
20161 controls the width (bug#7845).
20162
20163 * simple.el (shell-command-on-region): Say where the error output
20164 went if `shell-command-default-error-buffer' is set (bug#6857).
20165
20166 2011-07-02 Ken Manheimer <ken.manheimer@gmail.com>
20167
20168 * allout.el (allout-yank-processing): Adjust cursor position for
20169 backwards-deleted space.
20170
20171 (allout-rebullet-heading): Register changes with
20172 allout-exposure-changed-hook, so the modified topic is properly
20173 decorated.
20174
20175 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
20176
20177 * minibuffer.el (completion-in-region): Document PREDICATE
20178 (bug#7136).
20179
20180 * info-look.el (info-lookup-add-help): Clarify that ARGS is a list
20181 of keyword/argument pairs (bug#6904).
20182
20183 * replace.el (multi-occur):
20184 Mention `multi-occur-in-matching-buffers' in the doc string (bug#7566).
20185
20186 2011-07-02 Drew Adams <drew.adams@oracle.com>
20187
20188 * dired.el (dired-mark-if): Make the message about whether it's
20189 marking or unmarking clearer (bug#8523).
20190
20191 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
20192
20193 * disp-table.el (display-table-print-array): New function.
20194 (describe-display-table): Use it to print the vectors more pretty
20195 (Bug#8859).
20196
20197 2011-07-02 Martin Rudalics <rudalics@gmx.at>
20198
20199 * window.el (window-state-get-1): Don't assign clone numbers.
20200 Add clone-of item to list of window parameters.
20201 (window-state-put-2): Don't process clone numbers.
20202 (display-buffer-alist): Fix doc-string.
20203
20204 2011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
20205
20206 * subr.el (remq): Don't allocate if it's not needed.
20207 (keymap--menu-item-binding, keymap--menu-item-with-binding)
20208 (keymap--merge-bindings): New functions.
20209 (keymap-canonicalize): Use them to refine the canonicalization.
20210 * minibuffer.el (minibuffer-local-completion-map)
20211 (minibuffer-local-must-match-map): Move initialization from C.
20212 (minibuffer-local-filename-completion-map): Move initialization from C;
20213 don't inherit from anything here.
20214 (minibuffer-local-filename-must-match-map): Make obsolete.
20215 (completing-read-default): Use make-composed-keymap to combine
20216 minibuffer-local-filename-completion-map with either
20217 minibuffer-local-must-match-map or
20218 minibuffer-local-filename-completion-map.
20219
20220 2011-07-01 Glenn Morris <rgm@gnu.org>
20221
20222 * type-break.el (type-break-time-sum): Use dolist.
20223
20224 * textmodes/flyspell.el (flyspell-word-search-backward):
20225 Replace CL function.
20226
20227 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
20228
20229 * mouse.el (mouse--strip-first-event): New function.
20230 (function-key-map): Use it to map fringe clicks to normal clicks
20231 by default.
20232
20233 * vc/vc-bzr.el (vc-bzr-revision-keywords): Update.
20234 (vc-bzr-revision-completion-table): Add support for annotate and date.
20235
20236 * emacs-lisp/derived.el (define-derived-mode): Make abbrev-table
20237 inherit from parent.
20238
20239 2011-07-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
20240
20241 * dired-aux.el (dired-diff): Doc fixup (bug#8816).
20242 (dired-show-file-type): Doc fixup (bug#8818).
20243
20244 * dired.el (dired-mode): Fix up the doc string as suggested by
20245 Drew Adams (bug#8817).
20246
20247 * progmodes/flymake.el (flymake-find-file-hook): Add an `autoload'
20248 cookie, since the manual says that it should be possible to add
20249 this function to `find-file-hook' (bug#8709).
20250
20251 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
20252
20253 * progmodes/cfengine.el: Moved all cfengine3.el functionality
20254 here. Noted Ted Zlatanov as the maintainer.
20255 (cfengine-common-settings, cfengine-common-syntax): New functions
20256 to set up common things between `cfengine-mode' and
20257 `cfengine3-mode'.
20258 (cfengine3-mode): New mode.
20259 (cfengine3-defuns cfengine3-defuns-regex
20260 (cfengine3-class-selector-regex cfengine3-category-regex)
20261 (cfengine3-vartypes cfengine3-font-lock-keywords)
20262 (cfengine3-beginning-of-defun, cfengine3-end-of-defun)
20263 (cfengine3-indent-line): Add from cfengine3.el.
20264
20265 2011-07-01 Michael Albinus <michael.albinus@gmx.de>
20266
20267 * net/tramp.el (tramp-encoding-command-interactive): New defcustom.
20268
20269 * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
20270
20271 2011-07-01 Martin Rudalics <rudalics@gmx.at>
20272
20273 * window.el (same-window-buffer-names, same-window-regexps)
20274 (same-window-p, special-display-frame-alist)
20275 (special-display-popup-frame, special-display-function)
20276 (special-display-buffer-names, special-display-regexps)
20277 (special-display-p, pop-up-frame-alist, pop-up-frame-function)
20278 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
20279 (split-window-preferred-function, split-height-threshold)
20280 (split-width-threshold, even-window-heights)
20281 (display-buffer-mark-dedicated, window-splittable-p)
20282 (split-window-sensibly, window-safely-shrinkable-p):
20283 Un-obsolete.
20284 (display-buffer): Don't spread args with function specifier
20285 because special-display-popup-frame won't like it.
20286
20287 2011-07-01 Paul Eggert <eggert@cs.ucla.edu>
20288
20289 Time-stamp simplifications and fixes.
20290 These improve accuracy slightly, and future-proof the code
20291 against some potential changes to current-time format.
20292
20293 * woman.el (woman-decode-buffer, WoMan-log-end): Log fractional secs
20294 by using time-since and float-time.
20295
20296 * vc/ediff-util.el (ediff-calc-command-time): Use time-since
20297 and float-time. Say "NNN.NNN seconds" rather than "NNN seconds
20298 + NNN microseconds".
20299
20300 * type-break.el (type-break-time-sum): Rewrite using time-add.
20301
20302 * play/hanoi.el (hanoi-current-time-float): Remove.
20303 All uses replaced by float-time.
20304
20305 * nxml/rng-maint.el (rng-time-function): Rewrite using time-subtract.
20306 This yields a more-accurate answer.
20307 (rng-time-to-float): Remove; no longer needed.
20308
20309 * emacs-lisp/timer.el (timer-relative-time): Use time-add.
20310
20311 * calendar/timeclock.el (timeclock-seconds-to-time):
20312 Defalias to seconds-to-time, since they're the same thing.
20313
20314 * emacs-lisp/elp.el (elp-elapsed-time):
20315 * emacs-lisp/benchmark.el (benchmark-elapse):
20316 * allout-widgets.el (allout-elapsed-time-seconds): Use float-time.
20317
20318 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
20319
20320 * window.el (bury-buffer): Don't iconify the only frame.
20321 (switch-to-buffer): Revert to Emacs<23 behavior, i.e. do not fallback
20322 to pop-to-buffer. Use pop-to-buffer-same-frame if you don't like that.
20323
20324 2011-07-01 Chong Yidong <cyd@stupidchicken.com>
20325
20326 * eshell/em-smart.el (eshell-smart-display-navigate-list):
20327 Add mouse-yank-primary.
20328
20329 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
20330
20331 * progmodes/cfengine3.el: New file to support CFEngine 3.x.
20332
20333 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
20334
20335 * emacs-lisp/find-func.el (find-library--load-name): New fun.
20336 (find-library-name): Use it to find relative load names when provided
20337 absolute file name (bug#8803).
20338
20339 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
20340
20341 * textmodes/flyspell.el (flyspell-word): Consider words that
20342 differ only in case as potential doublons (bug#5687).
20343
20344 * net/soap-client.el (soap-invoke, soap-wsdl-resolve-references):
20345 Remove two rather uninteresting debugging-like messages to make
20346 debbugs.el more silent.
20347
20348 * comint.el (comint-password-prompt-regexp): Accept "Response" as
20349 a password-like phrase.
20350
20351 2011-06-30 Masatake YAMATO <yamato@redhat.com>
20352
20353 * progmodes/cc-guess.el: New file.
20354
20355 * progmodes/cc-langs.el (c-mode-menu): Add "Style..." submenu.
20356
20357 * progmodes/cc-styles.el (cc-choose-style-for-mode): New function
20358 derived from `c-basic-common-init'.
20359
20360 * progmodes/cc-mode.el (top-level): Require cc-guess.
20361 (c-basic-common-init): Use `cc-choose-style-for-mode'.
20362
20363 2011-06-30 Lawrence Mitchell <wence@gmx.li>
20364
20365 * progmodes/js.el (js-mode): Don't stomp on global settings (bug#8933).
20366
20367 2011-06-30 Alan Mackenzie <acm@muc.de>
20368
20369 * progmodes/cc-engine.el (c-guess-continued-construct):
20370 Correct the handling of template-args-cont, particularly for when font
20371 lock is disabled. Name this case as "CASE G".
20372
20373 2011-06-30 Ken Manheimer <ken.manheimer@gmail.com>
20374
20375 * allout.el (allout-yank-processing): Fix injection of extra space
20376 between bullet and non-whitespace character in first topic when
20377 pasting, ensuring that the actual spacing in the pasted topic
20378 following the bullet char is preserved. This extra space was
20379 causing pasted encrypted topics to get a decrypted status even
20380 when the content was actually still encrypted. Now the decryption
20381 status from before the paste is preserved.
20382
20383 (allout-flag-region): Set all allout overlays so they evaporate
20384 when reduced to zero length (evanescent), to prevent overlay
20385 leakage.
20386
20387 2011-06-30 Glenn Morris <rgm@gnu.org>
20388
20389 * w32-fns.el (w32-charset-info-alist): Declare.
20390
20391 * find-dired.el (find-grep-options): Simplify.
20392
20393 * term/ns-win.el (ns-set-resource): Declare.
20394
20395 * ses.el (row, col): Declare dynamic variables honestly.
20396
20397 * textmodes/reftex-parse.el (index-tags): Declare.
20398
20399 2011-06-30 Chong Yidong <cyd@stupidchicken.com>
20400
20401 * cus-edit.el (customize-push-and-save): New function.
20402
20403 * files.el (hack-local-variables-confirm): Use it.
20404
20405 * custom.el (load-theme): New arg NO-CONFIRM.
20406 Use customize-push-and-save (Bug#8720).
20407 (custom-enabled-themes): Doc fix.
20408
20409 * cus-theme.el (customize-create-theme)
20410 (custom-theme-merge-theme): Callers to load-theme changed.
20411
20412 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
20413
20414 * thingatpt.el (thing-at-point-short-url-regexp): Require that
20415 short URLs have at least one dot in them (bug #7614).
20416
20417 * progmodes/grep.el (rgrep): Bind `process-connection-type' to
20418 nil, because using a pty is apparently too slow (bug #895).
20419
20420 2011-06-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
20421
20422 * mail/sendmail.el (sendmail-query-once): New function.
20423 (sendmail-query-once-function): New variable.
20424
20425 2011-06-29 Glenn Morris <rgm@gnu.org>
20426
20427 * files.el (auto-mode-alist): Add .f03, .f08 for f90-mode.
20428
20429 * ses.el (top-level): Require cl when compiling.
20430 (ses-set-localvars): Fix error statement.
20431 Call it at compile time to silence a storm of warnings.
20432
20433 2011-06-29 Martin Rudalics <rudalics@gmx.at>
20434
20435 * window.el (normalize-live-buffer): Rename to
20436 window-normalize-buffer.
20437 (normalize-live-frame): Rename to window-normalize-frame.
20438 (normalize-any-window): Rename to window-normalize-any-window.
20439 (normalize-live-window): Rename to window-normalize-live-window.
20440 (make-window-atom): Rename to window-make-atom.
20441 (window-resize-reset): Rename to window--resize-reset.
20442 (window-resize-reset-1): Rename to window--resize-reset-1.
20443 (resize-mini-window): Rename to window--resize-mini-window.
20444 (resize-subwindows-skip-p): Rename to
20445 window--resize-subwindows-skip-p.
20446 (resize-subwindows-normal): Rename to
20447 window--resize-subwindows-normal.
20448 (resize-subwindows): Rename to window--resize-subwindows.
20449 (resize-other-windows): Rename to window--resize-siblings.
20450 (resize-this-window): Rename to window--resize-this-window.
20451 (resize-root-window): Rename to window--resize-root-window.
20452 (resize-root-window-vertically): Rename to
20453 window--resize-root-window-vertically.
20454 (normalize-buffer-to-display): Rename to
20455 window-normalize-buffer-to-display.
20456 (normalize-buffer-to-switch-to): Rename to
20457 window-normalize-buffer-to-switch-to.
20458 Correspondingly update all callers of the functions listed
20459 above.
20460 (display-buffer-alist, display-buffer-normalize-arguments)
20461 (display-buffer-normalize-options, display-buffer)
20462 (display-buffer-alist-set): Use "function" instead of
20463 "fun-with-args".
20464
20465 2011-06-28 Chong Yidong <cyd@stupidchicken.com>
20466
20467 * mail/emacsbug.el (report-emacs-bug): Handle non-gnu bug
20468 addresses more clearly. Add hyperlinks for bug-gnu-emacs and
20469 debbugs.gnu.org. Mention acknowledgment email.
20470
20471 2011-06-28 Lars Magne Ingebrigtsen <larsi@gnus.org>
20472
20473 * mail/smtpmail.el (smtpmail-send-it): Leave off changing the
20474 buffer multibyteness, since it shouldn't matter.
20475
20476 2011-06-28 Martin Rudalics <rudalics@gmx.at>
20477
20478 * window.el (display-buffer-in-side-window): Handle dedicated
20479 windows as in display-buffer-reuse-window.
20480 (display-buffer-normalize-alist): Use value of override
20481 specifier.
20482 (display-buffer-normalize-specifiers): Use value of
20483 other-window-means-other-frame specifier.
20484 (display-buffer-alist): Rewrite some texts in widgets.
20485 (display-buffer): Spread arguments when calling function
20486 specified by fun-with-args.
20487
20488 2011-06-28 Deniz Dogan <deniz@dogan.se>
20489
20490 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
20491 Unnest `let'.
20492
20493 * textmodes/css-mode.el (css-font-lock-keywords): Fix grouped
20494 selectors (Bug#5732).
20495 (css-proprietary-nmstart-re): Use `regexp-opt'.
20496
20497 2011-06-27 Jari Aalto <jari.aalto@cante.net>
20498
20499 * eshell/em-ls.el: Display `ls -l' dates in ISO format (Bug#8440).
20500 (eshell-ls-date-format): New defcustom.
20501 (eshell-ls-file): Use it.
20502
20503 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
20504
20505 * help-fns.el (describe-variable): Fix message for terminal-local vars.
20506
20507 2011-06-27 Katsumi Yamaoka <yamaoka@jpl.org>
20508
20509 * net/ange-ftp.el: Allow loading .gz files (Bug#6923).
20510 (ange-ftp-make-tmp-name): New arg.
20511 (ange-ftp-file-local-copy): Use it.
20512
20513 2011-06-27 Jambunathan K <kjambunathan@gmail.com>
20514
20515 * tar-mode.el (tar-untar-buffer): Set coding-system-for-write to
20516 no-conversion (Bug#8870).
20517
20518 2011-06-27 Martin Rudalics <rudalics@gmx.at>
20519
20520 * window.el (window-right, window-left, window-child)
20521 (window-child-count, window-last-child)
20522 (window-iso-combination-p, walk-window-tree-1)
20523 (window-atom-check-1, window-tree-1, delete-window)
20524 (window-state-get-1, display-buffer-even-window-sizes): Adapt to
20525 new naming conventions - window-vchild, window-hchild,
20526 window-next and window-prev are now called window-top-child,
20527 window-left-child, window-next-sibling and window-prev-sibling
20528 respectively.
20529 (resize-window-reset): Rename to window-resize-reset.
20530 (resize-window-reset-1): Rename to window-resize-reset-1.
20531 (resize-window): Rename to window-resize.
20532 (window-min-height, window-min-width)
20533 (resize-mini-window, resize-this-window, resize-root-window)
20534 (resize-root-window-vertically, adjust-window-trailing-edge)
20535 (enlarge-window, shrink-window, maximize-window)
20536 (minimize-window, delete-window, quit-restore-window)
20537 (split-window, balance-windows, balance-windows-area-adjust)
20538 (balance-windows-area, window-state-put-2)
20539 (display-buffer-even-window-sizes, display-buffer-set-height)
20540 (display-buffer-set-width, set-window-text-height)
20541 (fit-window-to-buffer): Rename all "resize-window" prefixed
20542 calls to use the "window-resize" prefix convention.
20543 (display-buffer-alist): Fix symbol for label specifier.
20544 (display-buffer-reuse-window): Set reuse-dedicated to cdr of
20545 corresponding specifier.
20546 Reported by Juanma Barranquero <lekktu@gmail.com>.
20547
20548 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
20549
20550 * ses.el (ses-destroy-cell-variable-range): Fix heading comment
20551 convention.
20552 (ses-call-printer): Does not pass an empty string to formatter when the
20553 cell is empty to keep from barking printer Calc math-format-value.
20554
20555 2011-06-27 Richard Stallman <rms@gnu.org>
20556
20557 * battery.el (battery-mode-line-limit): New variable.
20558 (battery-update): Handle it.
20559
20560 * mail/rmailmm.el (rmail-mime-process-multipart):
20561 Handle truncated messages.
20562
20563 2011-06-27 Glenn Morris <rgm@gnu.org>
20564
20565 * progmodes/flymake.el (flymake-err-line-patterns):
20566 Allow for column numbers in the ant/javac pattern. (Bug#8866)
20567
20568 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
20569
20570 * ses.el (ses-relocate-range): Keep rest of arguments for ses-range.
20571 (ses--clean-!, ses--clean-_): New functions.
20572 (ses-range): Add configurability of readout order, and conversion
20573 to Calc vector.
20574
20575 * ses.el (ses-repair-cell-reference-all): New function.
20576 (ses-cell-symbol): Set macro as safe, so that it can be used in
20577 formulas.
20578
20579 * ses.el: Update cycle detection algorithm.
20580 (ses-localvars): Add ses--Dijkstra-attempt-nb and
20581 ses--Dijkstra-weight-bound, and initial values thereof when applicable.
20582 (ses-set-localvars): New function.
20583 (ses-make-cell): Add property-list as a cell element.
20584 (ses-cell-property-get-fun, ses-cell-property-get)
20585 (ses-cell-property-delq-fun, ses-cell-property-set-fun)
20586 (ses-cell-property-pop-fun, ses-cell-property-get-handle-fun):
20587 New functions.
20588 (ses-cell-property-set, ses-cell-property-pop)
20589 (ses-cell-property-get-handle): New macro.
20590 (ses-cell-property-handle-car, ses-cell-property-handle-setcar):
20591 New aliases, used for code readability.
20592 (ses-calculate-cell, ses-update-cells): Use Dijkstra algorithm for
20593 cycle detection.
20594 (ses-self-reference-early-detection): New defcustom.
20595 (ses-formula-references): Robustify against self-referring cells.
20596 (ses-mode): Use ses-set-localvars.
20597 (ses-command-hook): Add call to ses-initialize-Dijkstra-attempt
20598 before lauching the update processing.
20599 (ses-initialize-Dijkstra-attempt): New function.
20600 (ses-recalculate-cell): Update for cycle detection based on
20601 Dijkstra algorithm.
20602
20603 * ses.el: Fix commenting and indenting convention.
20604
20605 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
20606
20607 * bs.el (bs-cycle-next): Complete last change.
20608
20609 2011-06-27 Drew Adams <drew.adams@oracle.com>
20610
20611 * faces.el (list-faces-display): Add help-mode-map to output (bug#8939).
20612
20613 2011-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
20614
20615 * net/network-stream.el (network-stream-open-starttls):
20616 Don't re-get capabilities unless we've reestablished connection.
20617 (network-stream-open-starttls): Fix stupid typo with gnutls-clii.
20618
20619 * mail/smtpmail.el (smtpmail-via-smtp): Bind coding-system-for-*
20620 to binary to possibly avoid line encoding issues on Windows (among
20621 other things).
20622
20623 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
20624
20625 * net/network-stream.el (open-network-stream): Return an :error
20626 saying what the problem was, if possible.
20627
20628 * mail/smtpmail.el (smtpmail-via-smtp): Report the error from the
20629 server.
20630
20631 * net/network-stream.el (network-stream-open-starttls): If we
20632 wanted to use STARTTLS, and the server offered it, but we weren't
20633 able to because we had no STARTTLS support, then close the connection.
20634 (open-network-stream): Return an :error element, if present.
20635
20636 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
20637
20638 * hl-line.el (hl-line-sticky-flag): Doc fix.
20639 (global-hl-line-sticky-flag): New option (Bug#8323).
20640 (global-hl-line-highlight): Obey it.
20641
20642 * vc/vc.el (vc-revert-show-diff): Default to t.
20643
20644 2011-06-26 Ken Manheimer <ken.manheimer@gmail.com>
20645
20646 * allout-widgets.el (allout-widgets-post-command-business):
20647 Stop decorating intermediate isearch matches. They're not being
20648 undecorated when an isearch is continued past, and isearch
20649 automatically collapses them. This leads to "widget leaks", where
20650 decorated items accumulate in collapsed areas. Lines with lots of
20651 hidden widgets can slow down cursor travel, substantially.
20652 Too much complicated machinery would be needed to ensure undecoration,
20653 so we're doing without this nicety.
20654
20655 (allout-widgets-tally-string): Don't try to do a hash-table-count
20656 of allout-widgets-tally when it's nil. This eliminates spurious "Error
20657 during redisplay: (wrong-type-argument hash-table-p nil)" warnings in
20658 *Messages* when allout-widgets-maintain-tally is t.
20659
20660 2011-06-26 Martin Rudalics <rudalics@gmx.at>
20661
20662 * window.el (display-buffer-normalize-argument): Rename to
20663 display-buffer-normalize-arguments. Handle special meaning of
20664 LABEL argument. Respect special-display-function when popping up
20665 a new frame. Fix code searching for a window showing the buffer
20666 on another frame.
20667 (display-buffer-normalize-specifiers):
20668 Call display-buffer-normalize-arguments.
20669 (display-buffer-in-window): Don't undedicate the window if its
20670 buffer remains the same.
20671 Reported by Drew Adams <drew.adams@oracle.com>.
20672 (display-buffer-alist): Add choice for same-window macro
20673 specfier.
20674 (display-buffer): Mention special meaning of LABEL argument in
20675 doc-string. Fix quoting. Don't pop up a new frame even as
20676 fallback.
20677
20678 2011-06-26 Juanma Barranquero <lekktu@gmail.com>
20679
20680 * bs.el (bs-cycle-next): Pass current buffer to `bury-buffer' to
20681 avoid deleting the current window in some cases (bug#8911).
20682
20683 2011-06-26 Andreas Schwab <schwab@linux-m68k.org>
20684
20685 * emacs-lisp/smie.el (smie-bnf->prec2): Fix last change.
20686 (Bug#8934)
20687
20688 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
20689
20690 * net/network-stream.el (network-stream-open-starttls):
20691 Use built-in TLS support if `gnutls-available-p' is true.
20692 (network-stream-open-tls): Ditto.
20693
20694 2011-06-26 Leo Liu <sdl.web@gmail.com>
20695
20696 * register.el (registerv): New struct.
20697 (registerv-make): New function.
20698 (jump-to-register, describe-register-1, insert-register):
20699 Support the jump-func, print-func and insert-func slot of a registerv
20700 struct. (Bug#8415)
20701
20702 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
20703
20704 * vc/vc.el (vc-revert-show-diff): New defcustom.
20705 (vc-diff-internal): New arg specifying diff buffer.
20706 (vc-revert): Obey vc-revert-show-diff. If we show a diff, don't
20707 reuse an existing *vc-diff* buffer (Bug#8927).
20708
20709 * progmodes/cperl-mode.el (cperl-mode): Derive from prog-mode.
20710
20711 2011-06-26 Glenn Morris <rgm@gnu.org>
20712
20713 * progmodes/f90.el (f90-critical-indent): New option.
20714 (f90-font-lock-keywords-2, f90-blocks-re, f90-end-block-re)
20715 (f90-start-block-re, f90-mode-abbrev-table): Add block, critical.
20716 (f90-mode): Doc fix.
20717 (f90-looking-at-critical, f90-looking-at-end-critical): New funcs.
20718 (f90-no-block-limit, f90-calculate-indent, f90-end-of-block)
20719 (f90-beginning-of-block, f90-next-block, f90-indent-region)
20720 (f90-match-end): Handle block, critical.
20721
20722 2011-06-25 Glenn Morris <rgm@gnu.org>
20723
20724 * calendar/diary-lib.el (diary-included-files): Doc fix.
20725 (diary-include-files): New function, extracted from
20726 diary-include-other-diary-files and diary-mark-included-diary-files.
20727 (diary-include-other-diary-files, diary-mark-included-diary-files):
20728 Just call diary-include-files.
20729 (diary-mark-entries): Reset diary-included-files on first call.
20730
20731 * calendar/diary-lib.el (diary-mark-entries)
20732 (diary-mark-included-diary-files):
20733 Visit included diary-files in temp buffers.
20734
20735 * progmodes/f90.el (f90-keywords-re, f90-font-lock-keywords-1)
20736 (f90-blocks-re, f90-program-block-re, f90-end-block-re)
20737 (f90-start-block-re, f90-imenu-generic-expression)
20738 (f90-looking-at-program-block-start, f90-no-block-limit):
20739 Add support for submodules.
20740
20741 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
20742 (f90-procedures-re, f90-constants-re): Add some F2008 stuff.
20743
20744 2011-06-25 Eli Zaretskii <eliz@gnu.org>
20745
20746 * net/ange-ftp.el (ange-ftp-insert-file-contents): Let-bind
20747 buffer-file-type before setting its value, to avoid disastrous
20748 global effects on decoding files for DOS/Windows systems. (Bug#8780)
20749
20750 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
20751
20752 * allout.el (allout-unload-function): Pass -1 to `allout-mode'.
20753
20754 * ses.el (ses-unload-function):
20755 * emacs-lisp/re-builder.el (re-builder-unload-function): Simplify.
20756
20757 * proced.el (proced-unload-function):
20758 * progmodes/cperl-mode.el (cperl-mode-unload-function): Remove.
20759
20760 2011-06-25 Andreas Rottmann <a.rottmann@gmx.at>
20761
20762 * server.el (server-create-window-system-frame): Add parameters arg.
20763 (server-process-filter): Doc fix. Handle frame-parameters.
20764
20765 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
20766
20767 Fix bug#8730, bug#8781.
20768
20769 * loadhist.el (unload--set-major-mode): New function.
20770 (unload-feature): Use it.
20771
20772 * progmodes/python.el (python-after-info-look): Add autoload cookie.
20773 (python-unload-function): New function.
20774
20775 2011-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
20776
20777 * mail/rmail.el (rmail-show-message-1): Use restore-buffer-modified-p.
20778
20779 2011-06-25 Giuseppe Scrivano <gscrivano@gnu.org>
20780
20781 * net/browse-url.el (browse-url-firefox-program): Add icecat to
20782 the candidates list.
20783
20784 2011-06-24 Juanma Barranquero <lekktu@gmail.com>
20785
20786 * progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
20787
20788 2011-06-23 Richard Stallman <rms@gnu.org>
20789
20790 * mail/rmail.el: Going to grep hit in Rmail buffer finds the message.
20791 (rmail-variables): Set next-error-move-function.
20792 (rmail-what-message): Take argument POS.
20793 (rmail-next-error-move): New function.
20794
20795 2011-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
20796
20797 * emacs-lisp/smie.el (smie-bnf->prec2): Give more understandable error
20798 messages for adjacent non-terminals.
20799
20800 2011-06-23 Richard Stallman <rms@gnu.org>
20801
20802 * mail/rmail.el (rmail-retry-ignored-headers): Add message-id.
20803 (rmail-show-message-1): Preserve buffer modified flag.
20804 (rmail-start-mail): Don't specify use of rmail-mail-return;
20805 that's done by mail-bury now.
20806 (rmail-mail-return): Handle arg NEWBUF.
20807
20808 2011-06-23 Michael Albinus <michael.albinus@gmx.de>
20809
20810 * net/tramp-sh.el (tramp-method-out-of-band-p): Check, whether
20811 SIZE is a number.
20812
20813 2011-06-23 Martin Rudalics <rudalics@gmx.at>
20814
20815 * window.el (get-lru-window, get-mru-window)
20816 (get-largest-window): Never return a minibuffer window.
20817 (display-buffer-pop-up-window): Fix a bug that could lead to
20818 reusing the minibuffer window.
20819 (display-buffer): Pass original specifier argument to
20820 display-buffer-function instead of the normalized one.
20821 Reported by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
20822
20823 2011-06-22 Leo Liu <sdl.web@gmail.com>
20824
20825 * minibuffer.el (completing-read-function)
20826 (completing-read-default): Move from minibuf.c.
20827
20828 2011-06-22 Richard Stallman <rms@gnu.org>
20829
20830 * mail/sendmail.el (mail-bury): If Rmail is in use, return nicely
20831 to Rmail even if not started by a special Rmail command.
20832
20833 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
20834 Copy the buffer currently showing just one message.
20835
20836 2011-06-22 Roland Winkler <winkler@gnu.org>
20837
20838 * textmodes/bibtex.el (bibtex-entry-update): Use mapc.
20839 (bibtex-clean-entry): First delete the old key so that a
20840 customized algorithm for generating the new key does not get
20841 confused by the old key.
20842 (bibtex-url): Obey regexp of first step.
20843 (bibtex-search-entries): Do not use add-to-list with local
20844 list-var.
20845
20846 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
20847
20848 * mail/smtpmail.el (smtpmail-try-auth-methods): If the user has
20849 stored a user name, then query for the password first, instead of
20850 waiting for SMTP to give an error message and the trying again.
20851
20852 2011-06-22 Lawrence Mitchell <wence@gmx.li>
20853
20854 * net/browse-url.el (browse-url-xdg-open): Use 0, rather than nil
20855 BUFFER in call-process.
20856
20857 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
20858
20859 * mail/smtpmail.el (smtpmail-via-smtp): Make sure we don't send
20860 QUIT twice.
20861 (smtpmail-try-auth-methods): Require user name and password from
20862 auth-source.
20863
20864 2011-06-22 Martin Rudalics <rudalics@gmx.at>
20865
20866 * window.el (display-buffer-default-specifiers)
20867 (display-buffer-alist): Remove entries for pop-up-frame-alist.
20868 Suggested by Katsumi Yamaoka <yamaoka@jpl.org>.
20869 (split-window): Normalize SIDE argument (Bug#8916).
20870
20871 * frame.el (pop-up-frame-alist, pop-up-frame-function)
20872 (special-display-frame-alist, special-display-popup-frame):
20873 Remove duplicate declarations. These are now in window.el.
20874
20875 2011-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
20876
20877 * mail/smtpmail.el (smtpmail-via-smtp):
20878 Set :use-starttls-if-possible so that we always use STARTTLS if the
20879 server supports it. SMTP servers that support STARTTLS commonly
20880 require it.
20881
20882 * net/network-stream.el (network-stream-open-starttls): Support
20883 upgrading to STARTTLS always, even if we don't have built-in support.
20884 (open-network-stream): Add the :always-query-capabilities keyword.
20885
20886 * mail/smtpmail.el: Rewritten to do opportunistic STARTTLS
20887 upgrades with `open-network-stream', and rely solely on
20888 auth-source for all credentials. Big changes throughout the file,
20889 but in particular:
20890 (smtpmail-auth-credentials): Remove.
20891 (smtpmail-starttls-credentials): Remove.
20892 (smtpmail-via-smtp): Check for servers saying they want AUTH after
20893 MAIL FROM, too.
20894
20895 * net/network-stream.el (network-stream-open-starttls):
20896 Provide support for client certificates both for external and built-in
20897 STARTTLS.
20898 (auth-source): Require.
20899 (open-network-stream): Document the :client-certificate keyword.
20900 (network-stream-certificate): Change cert-cert to cert and
20901 cert-key to key.
20902
20903 2011-06-21 Michael Albinus <michael.albinus@gmx.de>
20904
20905 * net/tramp-cache.el (top): Don't load the persistency file when
20906 "emacs -Q" has been called.
20907
20908 2011-06-21 Tim Harper <timcharper@gmail.com>
20909
20910 * term/ns-win.el (ns-initialize-window-system):
20911 Set application-specific `ApplePressAndHoldEnabled' system
20912 resource to NO as it is not yet supported by the NS port.
20913
20914 2011-06-21 Juanma Barranquero <lekktu@gmail.com>
20915
20916 * misc.el (list-dynamic-libraries--refresh): Compute header here...
20917 (list-dynamic-libraries): ...not here.
20918
20919 2011-06-21 Leo Liu <sdl.web@gmail.com>
20920
20921 * subr.el (sha1): Implement sha1 using secure-hash.
20922
20923 2011-06-21 Martin Rudalics <rudalics@gmx.at>
20924
20925 * window.el (display-buffer-alist): In default value do not
20926 enforce searching a window on any but the selected frame.
20927 Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
20928 (display-buffer-select-window): Remove function.
20929 (display-buffer-in-window): When a window on another frame gets
20930 reused, do not select it any more but just raise its frame if
20931 necessary (Bug#8851) and (Bug#8856).
20932 (display-buffer-normalize-options): Handle pop-up-frames related
20933 options more faithfully.
20934 (pop-to-buffer): Don't rely on `display-buffer' selecting the
20935 window if it is on another frame.
20936 (display-buffer-alist, display-buffer-default-specifiers):
20937 Don't make new frame unsplittable by default.
20938 (display-buffer-normalize-argument): Fix doc-string typo and use
20939 'same-frame-other-window instead of 'other-window when associating
20940 with display-buffer-macro-specifiers.
20941
20942 2011-06-21 Vincent Belaïche <vincent.b.1@hotmail.fr>
20943
20944 * play/5x5.el (5x5-solve-rotate-left, 5x5-solve-rotate-right):
20945 New functions.
20946 (5x5-mode-map, 5x5-mode-menu): Bind them.
20947 (5x5-draw-grid): Tweak the solver's rendering.
20948
20949 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
20950
20951 * progmodes/compile.el (compilation-error-regexp-alist-alist): Rename
20952 `caml' to `python-tracebacks-and-caml'; allow leading tabs (bug#8585).
20953
20954 2011-06-21 Drew Adams <drew.adams@oracle.com>
20955
20956 * menu-bar.el: Use function variable instead of switch-to-buffer.
20957 (menu-bar-select-buffer-function): New variable.
20958 (menu-bar-update-buffers): Use it (bug#8876).
20959
20960 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
20961
20962 * emacs-lisp/bytecomp.el (add-to-list): Add handler to check the
20963 variable's status.
20964
20965 2011-06-20 Jan Djärv <jan.h.d@swipnet.se>
20966
20967 * x-dnd.el (x-dnd-version-from-flags)
20968 (x-dnd-more-than-3-from-flags): New functions that handle long-as-cons
20969 and long as number (Bug#8899).
20970 (x-dnd-handle-xdnd): Call functions above (Bug#8899).
20971
20972 2011-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
20973
20974 * minibuffer.el (completion-metadata): Add `metadata' to the alist.
20975 (completion-try-completion, completion-all-completions): Compute the
20976 metadata argument if it's missing; make it optional (bug#8795).
20977
20978 * wid-edit.el: Use lex-bind and move towards completion-at-point.
20979 (widget-complete): Use new :completion-function property.
20980 (widget-completions-at-point): New function.
20981 (default): Use :completion-function instead of :complete.
20982 (widget-default-completions): Rename from widget-default-complete;
20983 Rewrite.
20984 (widget-string-complete, widget-file-complete, widget-color-complete):
20985 Remove functions.
20986 (file, symbol, function, variable, coding-system, color):
20987 * international/mule-cmds.el (default-input-method, charset)
20988 (language-info-custom-alist):
20989 * cus-edit.el (face): Use new property :completions.
20990
20991 * progmodes/pascal.el (pascal-completions-at-point): New function.
20992 (pascal-mode): Use it.
20993 (pascal-mode-map): Use completion-at-point.
20994 (pascal-toggle-completions): Make obsolete.
20995 (pascal-complete-word, pascal-show-completions):
20996 * progmodes/octave-mod.el (octave-complete-symbol):
20997 Redefine as obsolete alias.
20998 * progmodes/octave-inf.el (inferior-octave-completion-at-point):
20999 Signal absence of completion info for old Octave,
21000 (inferior-octave-complete): Redefine as obsolete alias.
21001 * progmodes/meta-mode.el: Use lexical-binding and completion-at-point.
21002 (meta-completions-at-point): Rename from meta-complete-symbol and
21003 adapt it for use on completion-at-point-functions.
21004 (meta-common-mode): Use it.
21005 (meta-looking-at-backward, meta-match-buffer): Remove.
21006 (meta-complete-symbol): Redefine as obsolete alias.
21007 (meta-common-mode-map): Use completion-at-point.
21008 * progmodes/make-mode.el: Use lexical-binding and completion-at-point.
21009 (makefile-mode-map): Use completion-at-point.
21010 (makefile-completions-at-point): Rename from makefile-complete and
21011 adapt it for use on completion-at-point-functions.
21012 (makefile-mode): Use it.
21013 (makefile-complete): Redefine as obsolete alias.
21014
21015 2011-06-20 Deniz Dogan <deniz@dogan.se>
21016
21017 * net/rcirc.el: Delete trailing whitespaces once and for all.
21018
21019 2011-06-20 Daniel Colascione <dan.colascione@gmail.com>
21020
21021 * emacs-lisp/syntax.el (syntax-ppss): Further improve docstring.
21022
21023 2011-06-19 Chong Yidong <cyd@stupidchicken.com>
21024
21025 * files.el (auto-mode-alist): Entry for m2-mode (Bug#8852).
21026
21027 * info.el (Info-apropos-toc-nodes): Minor doc fix (Bug#8833).
21028
21029 2011-06-19 Martin Rudalics <rudalics@gmx.at>
21030
21031 * window.el (display-buffer-other-window-means-other-frame):
21032 Call display-buffer-normalize-alist.
21033 (display-buffer-normalize-specifiers-1): Rename to
21034 display-buffer-normalize-argument. New argument other-frame.
21035 Rewrite.
21036 (display-buffer-normalize-specifiers-2): Rename to
21037 display-buffer-normalize-options.
21038 (display-buffer-normalize-alist-1): New function.
21039 (display-buffer-normalize-specifiers-3): Rename to
21040 display-buffer-normalize-alist.
21041 Call display-buffer-normalize-alist-1.
21042 (display-buffer-normalize-options-inhibit): New variable.
21043 (display-buffer-normalize-specifiers): Rewrite calling
21044 display-buffer-normalize-alist,
21045 display-buffer-normalize-argument, and
21046 display-buffer-normalize-options. Don't call the latter if
21047 display-buffer-normalize-options-inhibit is non-nil.
21048 (frame-auto-delete): New option.
21049 (window-deletable-p): Use frame-auto-delete.
21050 (window-list-no-nils, window-state-ignored-parameters)
21051 (window-state-get-1, window-state-get, window-state-put-list)
21052 (window-state-put-1, window-state-put-2, window-state-put):
21053 New functions.
21054 (display-buffer-normalize-options): Move special-display-p group
21055 after pop-up-frame group (Bug#8851) and (Bug#8856).
21056
21057 2011-06-18 Chong Yidong <cyd@stupidchicken.com>
21058
21059 * emacs-lisp/rx.el (rx-constituents): Add support for numbered
21060 groups (Bug#8776).
21061 (rx-submatch-n): New function.
21062 (rx): Document it.
21063
21064 * dired-x.el (dired-mark-unmarked-files): Fix interactive spec
21065 (Bug#8768).
21066
21067 * replace.el (occur-mode-map): Set occur-edit-mode binding to "e".
21068
21069 * textmodes/fill.el (default-justification): Add :safe (Bug#8879).
21070
21071 * cus-face.el (custom-declare-face): Call custom-theme-recalc face
21072 anytime existing face settings are present (Bug#8889).
21073
21074 * progmodes/delphi.el (delphi-mode-syntax-table): Use defvar.
21075 (delphi-mode): Use define-derived-mode to inherit from prog-mode.
21076 Remove unused argument.
21077
21078 2011-06-18 Martin Rudalics <rudalics@gmx.at>
21079
21080 * window.el (display-buffer-default-specifiers):
21081 Remove pop-up-frame. Add pop-up-window-min-height,
21082 pop-up-window-min-width, and another reuse-window specifier
21083 (Bug#8882). Reported by Dan Nicolaescu <dann@gnu.org>.
21084 (display-buffer-normalize-specifiers-2):
21085 Handle split-height-threshold and split-width-threshold also when
21086 pop-up-windows is unset. Add a reuse-window specifier for the
21087 case popping up a new window fails.
21088 (special-display-popup-frame): Remove double quoting.
21089 (display-buffer-normalize-specifiers-1): Fix thinko.
21090
21091 2011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
21092
21093 * shell.el (shell-completion-vars): Set pcomplete-termination-string
21094 according to comint-completion-addsuffix.
21095
21096 * pcomplete.el: Convert to lexical binding and fix bug#8819.
21097 (pcomplete-suffix-list): Mark as obsolete.
21098 (pcomplete-completions-at-point): Capture pcomplete-norm-func and
21099 pcomplete-seen in the closure.
21100 (pcomplete-comint-setup): Setup completion-at-point as well.
21101 (pcomplete--entries): New function.
21102 (pcomplete--env-regexp): New var.
21103 (pcomplete-entries): Rewrite to work with partial-completion and
21104 without relying on pcomplete-suffix-list.
21105 (pcomplete-pare-list): Remove, unused.
21106
21107 2011-06-17 Martin Rudalics <rudalics@gmx.at>
21108
21109 * window.el (display-buffer-alist): Set pop-up-window-min-height
21110 and pop-up-window-min-width in default value. Reported by
21111 Thierry Volpiatto <thierry.volpiatto@gmail.com>. New specifier
21112 other-window-means-other-frame.
21113 (display-buffer-macro-specifiers): Comment out entry for
21114 other-window specifier.
21115 (display-buffer-other-window-means-other-frame): New function.
21116 (display-buffer-normalize-specifiers-1): New arguments
21117 buffer-name and label. Treat other-window case specially.
21118 (display-buffer-normalize-specifiers-2): Treat other-window case
21119 specially.
21120 (display-buffer-normalize-specifiers-3): New function.
21121 (display-buffer-normalize-specifiers):
21122 Call display-buffer-normalize-specifiers-3.
21123
21124 2011-06-17 Martin Rudalics <rudalics@gmx.at>
21125
21126 * window.el (same-window-p): Fix two typos introduced when
21127 adding with-no-warnings.
21128 (display-buffer-normalize-specifiers-1): Don't check
21129 pop-up-frames for 'unset initialization.
21130 (display-buffer-normalize-specifiers-2): Major rewrite using
21131 special-display-p and same-window-p (Bug#8851) and (Bug#8856).
21132 (pop-up-frames, display-buffer-reuse-frames)
21133 (display-buffer-mark-dedicated): Don't initialize to 'unset.
21134 Suggested by David Engster <deng@randomsample.de>.
21135 (even-window-heights): Initialize to 'unset.
21136 (display-buffer-alist-set): Handle new 'unset initializations.
21137 (display-buffer-macro-specifiers): Don't pop up a new frame in the
21138 other window case.
21139
21140 2011-06-16 Martin Rudalics <rudalics@gmx.at>
21141
21142 * window.el (display-buffer-normalize-specifiers-1):
21143 Respect current value of pop-up-frames for most reasonable values of
21144 second argument of display-buffer (Bug#8865).
21145 (switch-to-buffer-same-frame, switch-to-buffer-other-window)
21146 (switch-to-buffer-other-window-same-frame)
21147 (switch-to-buffer-other-frame): Fix doc-strings. Reported by Drew
21148 Adams (Bug#8875).
21149 (display-buffer): Don't check noninteractive when calling
21150 display-buffer-pop-up-frame.
21151 (display-buffer-pop-up-frame): Never pop up a frame in
21152 noninteractive mode (Bug#8857).
21153 (enlarge-window, shrink-window): Don't report an error when the
21154 window can't be resized as requested (Bug#8862).
21155
21156 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
21157
21158 * pcmpl-rpm.el (pcomplete/rpm): Minor simplification.
21159
21160 * emacs-lisp/debug.el (debug): Don't leave the buffer in Debugger.
21161
21162 * abbrev.el (define-abbrev-table): Don't add a table multiple times.
21163
21164 2011-06-15 Alan Mackenzie <acm@muc.de>
21165
21166 * progmodes/cc-fonts.el (c-font-lock-declarations): 1: Whilst checking
21167 for declarators, disable knr checking to speed up for normal files.
21168 2: Refactor, replacing a sequence of nested if forms by a cond form.
21169
21170 2011-06-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
21171
21172 * net/network-stream.el (open-network-stream): Add the keyword
21173 :always-query-capabilities for the case where you want to force a
21174 `plain' network connection, but the protocol still requires the
21175 capabilitiy command (i.e., SMTP and EHLO).
21176
21177 * subr.el (process-live-p): Rename from `process-alive-p' for
21178 consistency with other `-live-p' functions.
21179
21180 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
21181
21182 * window.el (same-window-buffer-names, same-window-regexps)
21183 (special-display-frame-alist, special-display-popup-frame)
21184 (special-display-function, special-display-buffer-names)
21185 (special-display-regexps, pop-up-frame-alist)
21186 (pop-up-frame-function, pop-up-frames, display-buffer-reuse-frames)
21187 (pop-up-windows, split-window-preferred-function)
21188 (split-height-threshold, split-width-threshold, even-window-heights)
21189 (display-buffer-mark-dedicated): Don't encourage the use of
21190 display-buffer-alist from Elisp code.
21191
21192 2011-06-15 Dan Nicolaescu <dann@ics.uci.edu>
21193
21194 * progmodes/python.el (python-mode): Derive from prog-mode.
21195 * progmodes/ps-mode.el (ps-mode):
21196 * progmodes/mixal-mode.el (mixal-mode):
21197 * progmodes/cfengine.el (cfengine-mode):
21198 * progmodes/ld-script.el (ld-script-mode): Likewise.
21199
21200 2011-06-15 Martin Rudalics <rudalics@gmx.at>
21201
21202 * window.el (display-buffer-alist): Trim default value to avoid
21203 popping up a new frame (Bug#8857) or reusing an arbitrary window
21204 on another frame.
21205 (display-buffer): Do not fall back on popping up a new frame in
21206 batch mode (Bug#8857).
21207
21208 2011-06-14 Chong Yidong <cyd@stupidchicken.com>
21209
21210 * cus-theme.el (describe-theme-1): Use custom-theme-p.
21211 (custom-theme-summary): New function.
21212 (customize-themes): Use it.
21213
21214 2011-06-13 Glenn Morris <rgm@gnu.org>
21215
21216 * cus-dep.el (custom-make-dependencies): Use up command-line-args-left.
21217
21218 2011-06-13 Martin Rudalics <rudalics@gmx.at>
21219
21220 * help.el (help-window): Remove variable.
21221 (help-window-point-marker, temp-buffer-max-height)
21222 (temp-buffer-resize-mode, help-window-select): Rewrite doc-strings.
21223 (help-print-return-message): Don't set help-window.
21224 (resize-temp-buffer-window): Rewrite cod eand doc-string.
21225 (help-window-setup-finish): Remove.
21226 (help-window-display-message, help-window-setup)
21227 (with-help-window): Major rewrite based on new
21228 display-buffer-window variable.
21229
21230 * help-mode.el (help-mode-finish): Remove help-window related
21231 code.
21232
21233 * view.el (view-exits-all-viewing-windows): Remove reference to
21234 view-return-to-alist in doc-string.
21235 (view-return-to-alist): Make obsolete.
21236 (view-buffer): Call pop-to-buffer-same-window and remove
21237 undo-window code.
21238 (view-buffer-other-window): Call pop-to-buffer-other-window and
21239 simplify code. Ignore second argument.
21240 (view-buffer-other-frame): Call pop-to-buffer-other-frame and
21241 simplify code. Ignore second argument.
21242 (view-return-to-alist-update): Make obsolete.
21243 (view-mode-enter): Rename second argument to QUIT-RESTORE.
21244 Rewrite using quit-restore window parameters.
21245 (view-mode-exit): Rename second argument to EXIT-ONLY.
21246 Rewrite using quit-restore-window.
21247 (View-exit, View-exit-and-edit, View-leave, View-quit)
21248 (View-quit-all, View-kill-and-leave): Call view-mode-exit with
21249 appropriate arguments.
21250 (view-end-message): Use quit-restore window parameter.
21251
21252 * window.el (display-buffer-function): Rewrite doc-string.
21253 (display-buffer-window, display-buffer-alist): New variables.
21254 (display-buffer-split-specifiers)
21255 (display-buffer-side-specifiers)
21256 (display-buffer-macro-specifiers): New constants.
21257 (display-buffer-even-window-sizes, display-buffer-set-height)
21258 (display-buffer-set-width, display-buffer-select-window)
21259 (display-buffer-in-window, display-buffer-reuse-window)
21260 (display-buffer-split-window-1, display-buffer-split-window)
21261 (display-buffer-split-atom-window, display-buffer-pop-up-window)
21262 (display-buffer-pop-up-frame, display-buffer-pop-up-side-window)
21263 (display-buffer-in-side-window, normalize-buffer-to-display)
21264 (display-buffer-normalize-specifiers-1)
21265 (display-buffer-normalize-specifiers-2)
21266 (display-buffer-normalize-specifiers, display-buffer-frame):
21267 New functions.
21268 (display-buffer): Major rewrite.
21269 (display-buffer-other-window, display-buffer-other-frame)
21270 (pop-to-buffer, switch-to-buffer-other-window)
21271 (switch-to-buffer-other-frame): Rewrite.
21272 (display-buffer-same-window, display-buffer-same-frame)
21273 (display-buffer-same-frame-other-window)
21274 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
21275 (pop-to-buffer-other-window)
21276 (pop-to-buffer-same-frame-other-window)
21277 (pop-to-buffer-other-frame, switch-to-buffer-same-frame)
21278 (switch-to-buffer-other-window-same-frame): New functions.
21279 (same-window-p, special-display-p): Rewrite disabling warnings.
21280 Make obsolete.
21281 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
21282 (display-buffer-mark-dedicated): Initialize to symbol 'unset.
21283 Make obsolete
21284 (same-window-buffer-names, same-window-regexps)
21285 (special-display-frame-alist, special-display-popup-frame)
21286 (special-display-function, special-display-buffer-names)
21287 (special-display-regexps, pop-up-frame-alist)
21288 (pop-up-frame-function, split-window-preferred-function)
21289 (split-height-threshold, split-width-threshold)
21290 (even-window-heights): Make obsolete.
21291
21292 2011-06-12 Glenn Morris <rgm@gnu.org>
21293
21294 * term/xterm.el (terminal-init-xterm): `version' may be nil. (Bug#8838)
21295 Misc simplifications.
21296
21297 2011-06-12 Martin Rudalics <rudalics@gmx.at>
21298
21299 * window.el (window-safely-shrinkable-p): Restore function which
21300 was inadvertently removed in change from 2011-06-11. Declare as
21301 obsolete.
21302
21303 * calendar/calendar.el (calendar-generate-window):
21304 Use window-iso-combined-p instead of combination of one-window-p and
21305 window-safely-shrinkable-p.
21306
21307 2011-06-12 Glenn Morris <rgm@gnu.org>
21308
21309 * progmodes/fortran.el (fortran-mode-syntax-table):
21310 * progmodes/f90.el (f90-mode-syntax-table):
21311 Set % to punctuation. (Bug#8820)
21312 (f90-find-tag-default): Remove, no longer needed.
21313
21314 2011-06-12 Daniel Colascione <dan.colascione@gmail.com>
21315
21316 * emacs-lisp/syntax.el (syntax-ppss): Clarify which items are invalid.
21317
21318 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
21319
21320 * image.el (image-animated-p): Return animation delay in seconds.
21321 Avoid bit manipulation in Lisp; use `delay' entry in the metadata.
21322 (image-animate-timeout): Remove DELAY argument. Don't assume
21323 every subimage has the same delay; get it from image-animated-p.
21324 (image-animate): Caller changed.
21325
21326 2011-06-11 Michael Albinus <michael.albinus@gmx.de>
21327
21328 * net/tramp.el (tramp-debug-message): Add `tramp-with-progress-reporter'
21329 to ignored backtrace functions.
21330
21331 2011-06-11 Glenn Morris <rgm@gnu.org>
21332
21333 * calendar/appt.el (appt-disp-window-function): Doc fix.
21334 (appt-check): Handle overlapping appointments. (Bug#8337)
21335
21336 2011-06-11 Martin Rudalics <rudalics@gmx.at>
21337
21338 * window.el (window-tree-1, window-tree): New functions, moving
21339 the latter to window.el.
21340 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
21341 (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
21342 (bw-refresh-edges): Remove.
21343 (balance-windows-1, balance-windows-2): New functions.
21344 (balance-windows): Rewrite in terms of window tree functions,
21345 balance-windows-1 and balance-windows-2.
21346 (bw-adjust-window): Remove.
21347 (balance-windows-area-adjust): New function with functionality of
21348 bw-adjust-window but using resize-window.
21349 (set-window-text-height): Rewrite doc-string.
21350 Use normalize-live-window and resize-window.
21351 (enlarge-window-horizontally, shrink-window-horizontally):
21352 Rename argument to DELTA.
21353 (window-buffer-height): New function.
21354 (fit-window-to-buffer, shrink-window-if-larger-than-buffer):
21355 Rewrite using new window resize routines.
21356 (kill-buffer-and-window, mouse-autoselect-window-select):
21357 Use ignore-errors instead of condition-case.
21358 (quit-window): Call delete-frame instead of delete-windows-on
21359 for the only buffer on frame.
21360
21361 2011-06-10 Martin Rudalics <rudalics@gmx.at>
21362
21363 * loadup.el (top-level): Load window before files for the sake
21364 of replace-buffer-in-windows.
21365
21366 * files.el (read-buffer-to-switch)
21367 (switch-to-buffer-other-window)
21368 (switch-to-buffer-other-frame, display-buffer-other-frame):
21369 Move to window.el.
21370
21371 * simple.el (get-next-valid-buffer, last-buffer, next-buffer)
21372 (previous-buffer): Move to window.el.
21373
21374 * bindings.el (unbury-buffer): Move to window.el.
21375
21376 * window.el (delete-other-windows-vertically): Move after
21377 definition of delete-other-windows.
21378 (other-window, delete-windows-on, replace-buffer-in-windows):
21379 Move here from window.c.
21380 (record-window-buffer, unrecord-window-buffer)
21381 (set-window-buffer-start-and-point, switch-to-prev-buffer)
21382 (switch-to-next-buffer): New functions.
21383 (get-next-valid-buffer, last-buffer, next-buffer): Move here
21384 from simple.el. Call switch-to-next-buffer.
21385 (previous-buffer): Move here from simple.el.
21386 Call switch-to-prev-buffer.
21387 (bury-buffer): Move here from buffer.c. Switch to previous
21388 buffer when window cannot be deleted.
21389 (unbury-buffer): Move here from bindings.el.
21390 (ctl-x-map): Move binding for other-window from window.c to
21391 here.
21392 (read-buffer-to-switch, switch-to-buffer-other-window)
21393 (switch-to-buffer-other-frame): Move here from files.el.
21394 (normalize-buffer-to-switch-to): New functions.
21395 (switch-to-buffer): Move here from buffer.c.
21396 Use read-buffer-to-switch and normalize-buffer-to-switch-to.
21397
21398 2011-06-10 Martin Rudalics <rudalics@gmx.at>
21399
21400 * window.el (window-min-height, window-min-width): Move here
21401 from window.c. Add defcustoms and rewrite doc-strings.
21402 (resize-mini-window, resize-window): New functions.
21403 (adjust-window-trailing-edge, enlarge-window, shrink-window):
21404 Move here from window.c.
21405 (maximize-window, minimize-window): New functions.
21406 (delete-window, delete-other-windows, split-window): Move here
21407 from window.c.
21408 (window-split-min-size): New function.
21409 (split-window-keep-point): Mention split-window-above-each-other
21410 instead of split-window-vertically.
21411 (split-window-above-each-other, split-window-vertically):
21412 Rename split-window-vertically to split-window-above-each-other
21413 and provide defalias for old definition.
21414 (split-window-side-by-side, split-window-horizontally):
21415 Rename split-window-horizontally to split-window-side-by-side
21416 and provide defalias for the old definition.
21417 (ctl-x-map): Move bindings for delete-window,
21418 delete-other-windows and enlarge-window here from window.c.
21419 Replace bindings for split-window-vertically and
21420 split-window-horizontally by bindings for
21421 split-window-above-each-other and split-window-side-by-side.
21422
21423 * cus-start.el (all): Remove entries for window-min-height and
21424 window-min-width. Add entries for window-splits and
21425 window-nest.
21426
21427 2011-06-09 Glenn Morris <rgm@gnu.org>
21428
21429 * calendar/appt.el (appt-mode-line): New function.
21430 (appt-check, appt-disp-window): Use it.
21431
21432 * files.el (hack-one-local-variable-eval-safep):
21433 Allow minor-modes with explicit +/-1 arguments.
21434
21435 2011-06-09 Teodor Zlatanov <tzz@lifelogs.com>
21436
21437 * term/xterm.el (xterm): Add defgroup.
21438 (xterm-extra-capabilities): Add defcustom to supply known xterm
21439 capabilities, skip querying them, or query them (default).
21440 (terminal-init-xterm): Use it.
21441 (terminal-init-xterm-modify-other-keys): New function to set up
21442 modifyOtherKeys support to simplify `terminal-init-xterm'.
21443
21444 2011-06-09 Martin Rudalics <rudalics@gmx.at>
21445
21446 * window.el (resize-window-reset, resize-window-reset-1)
21447 (resize-subwindows-skip-p, resize-subwindows-normal)
21448 (resize-subwindows, resize-other-windows, resize-this-window)
21449 (resize-root-window, resize-root-window-vertically)
21450 (window-deletable-p, window-or-subwindow-p)
21451 (frame-root-window-p): New functions.
21452
21453 2011-06-09 Glenn Morris <rgm@gnu.org>
21454
21455 * net/ange-ftp.el (ange-ftp-switches-ok): New function.
21456 (ange-ftp-get-files): Use it.
21457
21458 2011-06-09 Alexander Klimov <alserkli@inbox.ru> (tiny change)
21459
21460 * mail/sendmail.el (mail-recover-1, mail-recover):
21461 * files.el (recover-file, recover-session):
21462 Handle dired-listing-switches not being just a single short option.
21463
21464 2011-06-09 Glenn Morris <rgm@gnu.org>
21465
21466 * calendar/appt.el (appt-display-message, appt-disp-window):
21467 Handle lists of appointments.
21468
21469 2011-06-08 Martin Rudalics <rudalics@gmx.at>
21470
21471 * window.el (one-window-p): Move down in code.
21472 Rewrite doc-string.
21473 (window-current-scroll-bars): Rewrite doc-string.
21474 Normalize live window argument.
21475 (walk-windows, get-window-with-predicate, count-windows):
21476 Rewrite doc-string. Use window-list-1.
21477 (window-in-direction-2, window-in-direction, get-mru-window):
21478 New functions.
21479
21480 2011-06-08 Reuben Thomas <rrt@sc3d.org>
21481
21482 * progmodes/flymake.el (flymake-compilation-prevents-syntax-check):
21483 Doc fix (Bug#8713).
21484
21485 2011-06-08 Chong Yidong <cyd@stupidchicken.com>
21486
21487 * repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
21488
21489 2011-06-08 Juanma Barranquero <lekktu@gmail.com>
21490
21491 * loadhist.el (unload-feature-special-hooks):
21492 Add `comint-output-filter-functions'.
21493
21494 2011-06-08 Ivan Kanis <gnu@kanis.fr>
21495
21496 * calendar/appt.el (appt-check): Move some initializations into the let.
21497
21498 2011-06-08 Martin Rudalics <rudalics@gmx.at>
21499
21500 * window.el (window-height): Defalias to window-total-height.
21501 (window-width): Defalias to window-body-width.
21502
21503 2011-06-07 Chong Yidong <cyd@stupidchicken.com>
21504
21505 * image-mode.el (image-toggle-animation): New command.
21506 (image-mode-map): Bind it to RET.
21507 (image-mode): Update message.
21508 (image-toggle-display-image): Avoid a spurious cache flush.
21509 (image-transform-rotation): Doc fix.
21510 (image-transform-properties): Return quickly in the normal case.
21511 (image-animate-loop): Rename from image-animate-max-time.
21512
21513 * image.el (image-animate-max-time): Move to image-mode.el.
21514 (create-animated-image): Remove unnecessary function.
21515 (image-animate): Rename from image-animate-start. New arg.
21516 (image-animate-stop): Remove; just use image-animate-timer.
21517 (image-animate-timer): Use car-safe.
21518 (image-animate-timeout): Rename argument.
21519
21520 2011-06-07 Martin Rudalics <rudalics@gmx.at>
21521
21522 * window.el (get-lru-window, get-largest-window): Move here from
21523 window.c. Rename first argument to ALL-FRAMES.
21524 Rephrase doc-strings.
21525 (get-buffer-window-list): Rewrite using window-list-1.
21526 Rephrase doc-string.
21527 (window-safe-min-height, window-safe-min-width): New constants.
21528 (window-size-ignore, window-min-size, window-min-size-1)
21529 (window-sizable, window-sizable-p, window-size-fixed-1)
21530 (window-size-fixed-p, window-min-delta-1, window-min-delta)
21531 (window-max-delta-1, window-max-delta, window-resizable)
21532 (window-resizable-p, window-total-height, window-total-width)
21533 (window-body-width): New functions.
21534 (window-full-height-p, window-full-width-p): Rewrite using
21535 window-total-size.
21536 (window-body-height): Rewrite using window-body-size.
21537
21538 2011-06-06 Martin Rudalics <rudalics@gmx.at>
21539
21540 * window.el (window-right, window-left, window-child)
21541 (window-child-count, window-last-child, window-any-p)
21542 (normalize-live-buffer, normalize-live-frame)
21543 (normalize-any-window, normalize-live-window)
21544 (window-iso-combination-p, window-iso-combined-p)
21545 (window-iso-combinations)
21546 (walk-window-tree-1, walk-window-tree, walk-window-subtree)
21547 (windows-with-parameter, window-with-parameter)
21548 (window-atom-root, make-window-atom, window-atom-check-1)
21549 (window-atom-check, window-side-check, window-check):
21550 New functions.
21551 (ignore-window-parameters, window-sides, window-sides-vertical)
21552 (window-sides-slots): New variables.
21553 (window-size-fixed): Move down in code. Minor doc-string fix.
21554
21555 2011-06-05 Andreas Schwab <schwab@linux-m68k.org>
21556
21557 * comint.el (comint-dynamic-complete-as-filename)
21558 (comint-dynamic-complete-filename): Correctly call
21559 completion-in-region.
21560
21561 2011-06-05 Deniz Dogan <deniz@dogan.se>
21562
21563 * net/rcirc.el (rcirc-prompt-for-encryption): Fix bug introduced
21564 in last change.
21565
21566 2011-06-05 Deniz Dogan <deniz@dogan.se>
21567
21568 * net/rcirc.el (rcirc-prompt-for-encryption): New function.
21569 (rcirc): Use it to prompt for encryption.
21570
21571 2011-06-05 Roland Winkler <winkler@gnu.org>
21572
21573 * textmodes/bibtex.el (bibtex-search-buffer): New variable.
21574 (bibtex-search-entries): New command bound to C-c C-a.
21575 (bibtex-display-entries): New function.
21576
21577 2011-06-05 Roland Winkler <winkler@gnu.org>
21578
21579 * textmodes/bibtex.el (bibtex-generate-url-list): Fix docstring.
21580 (bibtex-insert-kill): After yanking insert newline if necessary.
21581 (bibtex-initialize): Call bibtex-string-files-init only once.
21582 (bibtex-mode): Do not call easy-menu-add.
21583 (bibtex-validate-globally): Use save-excursion in bibtex buffers.
21584 (bibtex-yank): Set arg properly if nil.
21585
21586 2011-06-05 Roland Winkler <winkler@gnu.org>
21587
21588 * textmodes/bibtex.el (bibtex-search-entry-globally):
21589 New variable.
21590 (bibtex-search-entry): Use it.
21591
21592 2011-06-05 Roland Winkler <winkler@gnu.org>
21593
21594 * textmodes/bibtex.el (bibtex-entry-format): New option
21595 sort-fields.
21596 (bibtex-format-entry, bibtex-reformat): Honor this option.
21597 (bibtex-parse-entry): Return fields in proper order.
21598
21599 2011-06-05 Juanma Barranquero <lekktu@gmail.com>
21600
21601 * doc-view.el (doc-view-remove-if): Move computation of result out
21602 of `dolist' to silence misleading lexical-binding warning.
21603
21604 2011-06-04 Chong Yidong <cyd@stupidchicken.com>
21605
21606 * emacs-lisp/timer.el (timer-activate): Remove unused arg.
21607 (timer-activate, timer-activate-when-idle): Doc fix (Bug#8793).
21608
21609 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
21610
21611 * net/tramp-sh.el (tramp-find-shell): Apply workaround also for
21612 "SunOS 5.10".
21613
21614 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
21615
21616 * net/tramp.el (tramp-set-completion-function, tramp-parse-rhosts)
21617 (tramp-parse-shosts, tramp-parse-sconfig, tramp-parse-shostkeys)
21618 (tramp-parse-hosts, tramp-parse-passwd, tramp-parse-netrc)
21619 (tramp-parse-putty):
21620 * net/tramp-sh.el (tramp-completion-function-alist-rsh)
21621 (tramp-completion-function-alist-ssh)
21622 (tramp-completion-function-alist-telnet)
21623 (tramp-completion-function-alist-su)
21624 (tramp-completion-function-alist-putty): Set `tramp-autoload'
21625 cookie.
21626
21627 * net/tramp-ftp.el:
21628 * net/tramp-sh.el:
21629 * net/tramp-smb.el: Set `tramp-autoload' cookie, and eval after
21630 load "tramp.el" `tramp-set-completion-function'.
21631
21632 2011-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
21633
21634 * shell.el: Require and use pcomplete.
21635 (shell-dynamic-complete-functions): Add pcomplete-completions-at-point.
21636 (shell-completion-vars): Set pcomplete-default-completion-function.
21637
21638 2011-06-04 Deniz Dogan <deniz@dogan.se>
21639
21640 * iswitchb.el (iswitchb-window-buffer-p): Use `member' instead of
21641 `memq' (Bug#8799).
21642
21643 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
21644
21645 * subr.el (make-progress-reporter): Add "..." by default (bug#8785).
21646
21647 2011-06-02 Juanma Barranquero <lekktu@gmail.com>
21648
21649 * bs.el (bs--mark-unmark, bs--nth-wrapper):
21650 * mpc.el (mpc-select-extend, mpc-songpointer-context):
21651 * vc/log-view.el (log-view-beginning-of-defun):
21652 * vc/smerge-mode.el (smerge-apply-resolution-patch)
21653 (smerge-refine-forward, smerge-refine-chopup-region):
21654 Silence warning for unused `dotimes' counter variables.
21655
21656 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
21657
21658 * net/tramp.el (tramp-with-progress-reporter): Rename from
21659 with-progress-reporter. Use `declare'.
21660 * net/tramp-smb.el:
21661 * net/tramp-sh.el:
21662 * net/tramp-gvfs.el: Update all uses.
21663
21664 2011-06-02 Jay Belanger <jay.p.belanger@gmail.com>
21665
21666 * calc/calc.el (calc-kill-stack-buffer): Make sure that the trail
21667 buffer isn't killed before making it current.
21668
21669 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
21670
21671 Silence various byte-compiler warnings.
21672 * emacs-lisp/byte-run.el (make-obsolete-variable): New argument
21673 `access-type' and new obsolescence format.
21674 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): Adjust to
21675 new format.
21676 (byte-compile-check-variable): New `access-type' argument.
21677 Only warn if the access-type is obsolete.
21678 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
21679 (byte-compile-variable-set): Adjust callers.
21680 * help-fns.el (describe-variable): Adjust to new obsolescence format.
21681 * mail/sendmail.el (mail-mailer-swallows-blank-line): Only mark
21682 setting it as obsolete.
21683 * simple.el (minibuffer-completing-symbol):
21684 * font-lock.el (font-lock-beginning-of-syntax-function): Only mark read
21685 access as obsolete.
21686 * minibuffer.el (minibuffer-completing-file-name): Don't make it
21687 obsolete yet.
21688 * international/quail.el (quail-mouse-choose-completion): Remove unused
21689 code referring to obsolete var.
21690 (quail-choose-completion-string): Remove.
21691 * server.el (server-clients-with, server-kill-buffer-query-function)
21692 (server-kill-emacs-query-function): Silence "unused `proc'" warnings.
21693 * proced.el (proced-send-signal):
21694 * emacs-lisp/lisp.el (lisp-complete-symbol):
21695 Replace completion-annotate-function with completion-extra-properties.
21696
21697 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
21698
21699 * simple.el (goto-line): Use read-number.
21700 (overriding-map-is-bound): Remove.
21701 (saved-overriding-map): Change default.
21702 (save&set-overriding-map): Rename from ensure-overriding-map-is-bound;
21703 Take the map as argument.
21704 (universal-argument, negative-argument, digit-argument): Use it.
21705 (restore-overriding-map): Adjust.
21706 (do-auto-fill): Use fill-forward-paragraph.
21707 (keyboard-quit): Don't signal an error when debug-on-quit is non-nil.
21708
21709 * minibuffer.el (minibuffer-inactive-mode-map): New var.
21710 (minibuffer-inactive-mode): New major mode.
21711 * mouse.el (mouse-drag-region): Remove the "mouse-1 pops up
21712 the *Messages* buffer" hack.
21713 (mouse-popup-menubar): Don't burp if the event is a normal key.
21714
21715 Miscellaneous tweaks.
21716 * emacs-lisp/cl-macs.el (dolist, dotimes): Use the same strategy for
21717 lexical scoping as in subr.el's dolist and dotimes.
21718 * emacs-lisp/bytecomp.el (byte-compile-unfold-bcf):
21719 Silence compiler warning.
21720 * thingatpt.el (forward-whitespace): Trivial coding style fix.
21721 * subr.el (with-output-to-temp-buffer): Provide an edebug spec.
21722 * international/ccl.el (ccl-compile): Trivial simplification.
21723 * help-fns.el (help-do-arg-highlight): Silence compiler warning.
21724 * emacs-lisp/testcover.el (testcover-end): Remove spurious
21725 `printflag' argument.
21726 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
21727 Purecopy the whole obsolescence data.
21728
21729 2011-06-01 Leo Liu <sdl.web@gmail.com>
21730
21731 * net/rcirc.el (rcirc-decode-coding-system): Revert last change;
21732 improve doc-string as suggested by Marco Pessotto
21733 <melmothx@gmail.com>.
21734 (rcirc-print): Fix last change.
21735
21736 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
21737
21738 * minibuffer.el (complete-with-action): Return nil for the metadata and
21739 boundaries of non-functional tables.
21740 (completion-table-dynamic): Return nil for the metadata.
21741 (completion-table-with-terminator): Add default case, using
21742 complete-with-action.
21743 (completion--metadata): New function.
21744 (completion-all-sorted-completions, minibuffer-completion-help): Use it
21745 to try and avoid pathological performance problems.
21746 (completion--embedded-envvar-table): Return `category' metadata.
21747
21748 2011-05-31 Lars Magne Ingebrigtsen <larsi@gnus.org>
21749
21750 * subr.el (process-alive-p): New tiny convenience function.
21751
21752 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
21753
21754 * emacs-lisp/debug.el (debug): Save&restore not just the buffer's
21755 content but also its previous major mode.
21756
21757 2011-05-31 Helmut Eller <eller.helmut@gmail.com>
21758
21759 * emacs-lisp/debug.el (debug): Restore the previous content of the
21760 *Backtrace* buffer when we exit with C-M-c.
21761
21762 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
21763
21764 * minibuffer.el: Add metadata method to completion tables.
21765 (completion-category-overrides): New defcustom.
21766 (completion-metadata, completion--field-metadata)
21767 (completion-metadata-get, completion--styles)
21768 (completion--cycle-threshold): New functions.
21769 (completion-try-completion, completion-all-completions):
21770 Add `metadata' argument to choose completion-styles.
21771 (completion--do-completion): Use metadata to choose cycling.
21772 (completion-all-sorted-completions): Use metadata for sorting.
21773 Remove :completion-cycle-penalty which is not needed any more.
21774 (completion--try-word-completion): Add `metadata' argument.
21775 (minibuffer-completion-help): Check metadata for annotation function
21776 and sorting.
21777 (completion-file-name-table): Return `category' metadata.
21778 (minibuffer-completing-file-name): Make obsolete.
21779 * simple.el (minibuffer-completing-symbol): Make obsolete.
21780 * icomplete.el (icomplete-completions): Pass new `metadata' param to
21781 completion-try-completion.
21782
21783 2011-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
21784
21785 * mail/smtpmail.el (smtpmail-send-data): Add progress reporter.
21786
21787 2011-05-30 Leo Liu <sdl.web@gmail.com>
21788
21789 * net/rcirc.el (rcirc-debug-buffer): Use visible buffer name.
21790 (rcirc-print): Decode all incoming messages (bug#8744).
21791 (rcirc-decode-coding-system): Allow value nil for automatic coding
21792 system detection.
21793
21794 2011-06-01 Glenn Morris <rgm@gnu.org>
21795
21796 * mail/emacsbug.el (report-emacs-bug-hook): Mailclient ignores From.
21797
21798 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
21799
21800 * image.el (image-animate-max-time): Allow nil and t values.
21801 Default to nil.
21802 (create-animated-image): Doc fix.
21803 (image-animate-start): Remove second arg; just use
21804 image-animate-max-time.
21805 (image-animate-timeout): Doc fix. Args changed.
21806
21807 * image-mode.el (image-toggle-display-image): Ensure that the
21808 image spec passed to the animate timer is the same object as in
21809 the buffer's display property (Bug#6981).
21810 (image-transform-properties): Doc fix.
21811
21812 * image.el (image-animate-max-time): Default to nil.
21813
21814 2011-05-29 Martin Rudalics <rudalics@gmx.at>
21815
21816 * menu-bar.el (kill-this-buffer-enabled-p): Avoid looping over
21817 entire buffer list (Bug#8184).
21818
21819 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
21820
21821 * image.el (imagemagick-types-inhibit)
21822 (imagemagick-register-types): Doc fix.
21823
21824 2011-05-29 Deniz Dogan <deniz@dogan.se>
21825
21826 * net/rcirc.el (rcirc): Use the user's stored encryption method by
21827 default.
21828
21829 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
21830
21831 * select.el: Don't perform clipboard-manager saving in hooks;
21832 leave the hooks empty.
21833
21834 2011-05-28 Leo Liu <sdl.web@gmail.com>
21835
21836 * replace.el (occur-menu-map, occur-edit-mode-map): New vars.
21837 (occur-mode-map): Bind occur-edit-mode. Use occur-menu-map.
21838 (occur-edit-mode): New major mode (Bug#8463).
21839 (occur-after-change-function): New function.
21840 (occur-engine): Give Occur tags a read-only property.
21841
21842 2011-05-28 Kevin Ryde <user42@zip.com.au>
21843
21844 * subr.el (def-edebug-spec): Doc fix (Bug#8430).
21845
21846 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
21847
21848 * bindings.el (help-echo): Make the initial non-indicator dash
21849 empty on graphical terminals (Bug#7295).
21850
21851 * files.el (auto-mode-alist): Move config rule after the
21852 in-stripping one (Bug#8547).
21853
21854 * newcomment.el (comment-end-skip): Doc fix (Bug#8659).
21855
21856 * startup.el (normal-splash-screen): Remove gratuitous mode-line
21857 setting (Bug#8740).
21858
21859 2011-05-28 Alp Aker <aker@pitt.edu> (tiny change)
21860
21861 * buff-menu.el (Buffer-menu-revert-function, Buffer-menu-sort)
21862 (Buffer-menu-buffer+size): Use Buffer-menu-buffer-column
21863 (Bug#8539).
21864
21865 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
21866
21867 * emacs-lisp/re-builder.el (re-builder): Improve doc (Bug#8286).
21868
21869 2011-05-28 Dima Kogan <dkogan@cds.caltech.edu> (tiny change)
21870
21871 * progmodes/hideshow.el (hs-looking-at-block-start-p): New fun.
21872 (hs-hide-block-at-point, hs-find-block-beginning)
21873 (hs-already-hidden-p, hs-hide-block, hs-show-block): Use it
21874 (Bug#8279).
21875
21876 2011-05-28 Glenn Morris <rgm@gnu.org>
21877
21878 * startup.el (fancy-about-screen): Use standard mode line. (Bug#8740)
21879
21880 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
21881
21882 * help-fns.el (describe-function-1): If the function is a derived
21883 major mode, print the parent mode.
21884
21885 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode, java-mode)
21886 (idl-mode, pike-mode, awk-mode): Inherit from prog-mode.
21887
21888 2011-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
21889
21890 * minibuffer.el (completion--capf-wrapper): Check applicability before
21891 returning non-nil for non-exclusive completion data.
21892 * progmodes/etags.el (tags-completion-at-point-function):
21893 * info-look.el (info-lookup-completions-at-point): Mark as
21894 non-exclusive.
21895 (info-complete): Adjust accordingly.
21896
21897 * info-look.el: Convert to lexical-binding and completion-at-point.
21898 (info-lookup-completions-at-point): New function.
21899 (info-complete): Use it and completion-in-region.
21900
21901 2011-05-28 Drew Adams <drew.adams@oracle.com>
21902
21903 * isearch.el: Let M-e start with point at the first mismatched char.
21904 (isearch-fail-pos): New function.
21905 (isearch-edit-string): Use it.
21906
21907 2011-05-28 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
21908
21909 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
21910
21911 2011-05-27 Toby Cubitt <toby-predictive@dr-qubit.org>
21912
21913 * emacs-lisp/avl-tree.el: New avl-tree-stack datatype. Add new
21914 traversal functions for avl-trees.
21915 (avl-tree--stack): New struct.
21916 (avl-tree-stack-p, avl-tree--stack-repopulate): New funs.
21917 (avl-tree-enter): Add optional `updatefun' arg.
21918 (avl-tree--do-enter): Add optional `updatefun' arg.
21919 Change return value.
21920 (avl-tree-delete): Add optional `test' and `nilflag' args.
21921 (avl-tree--do-delete): Add `test' and `nilflag' args.
21922 Change return value.
21923 (avl-tree-member): Add optional `nilflag'
21924 (avl-tree-member-p): New function.
21925 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar): New functions.
21926 (avl-tree-stack, avl-tree-stack-pop, avl-tree-stack-first)
21927 (avl-tree-stack-empty-p): New functions.
21928
21929 * emacs-lisp/avl-tree.el (avl-tree--del-balance): Rename from
21930 avl-tree--del-balance1 and make it work both ways.
21931 (avl-tree--del-balance2): Remove.
21932 (avl-tree--enter-balance): Rename from avl-tree--enter-balance1 and
21933 make it work both ways.
21934 (avl-tree--enter-balance2): Remove.
21935 (avl-tree--switch-dir, avl-tree--dir-to-sign, avl-tree--sign-to-dir):
21936 New macros.
21937 (avl-tree--mapc, avl-tree-map): Add direction argument.
21938
21939 2011-05-27 David Michael <fedora.dm0@gmail.com> (tiny change)
21940
21941 * files.el (interpreter-mode-alist): Add rbash (bug#8745).
21942
21943 2011-05-27 Chong Yidong <cyd@stupidchicken.com>
21944
21945 * select.el: Support clipboard managers with built-in function
21946 x-clipboard-manager-save, via delete-frame-functions and
21947 kill-emacs-hook.
21948 (xselect-convert-to-targets): Add MULTIPLE target to list.
21949 (xselect-convert-to-save-targets): New function.
21950
21951 2011-05-27 Kenichi Handa <handa@m17n.org>
21952
21953 * mail/sendmail.el (mail-encode-header): Avoid double encoding by
21954 let-binding rfc2047-encode-encoded-words to nil.
21955
21956 2011-05-27 Glenn Morris <rgm@gnu.org>
21957
21958 * mail/emacsbug.el: Don't require url-util.
21959
21960 * shell.el (shell-directory-tracker): Case matters. (Bug#8735)
21961
21962 * files.el (set-auto-mode):
21963 Also respect mode: entries at the end of the file. (Bug#8586)
21964
21965 2011-05-26 Glenn Morris <rgm@gnu.org>
21966
21967 * files.el (hack-local-variables-prop-line, hack-local-variables):
21968 Downcase mode names, as seems to be traditional.
21969 (hack-local-variables, hack-local-variables-apply): Doc fixes.
21970
21971 * mail/emacsbug.el (report-emacs-bug): Mention checking From address.
21972 (report-emacs-bug-hook): Try to validate the From address. (Bug#8038)
21973
21974 2011-05-25 Julien Danjou <julien@danjou.info>
21975
21976 * textmodes/rst.el (rst-define-level-faces): Do not define face
21977 symbol if it is already defined.
21978
21979 2011-05-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
21980
21981 * play/5x5.el (5x5-new-game, 5x5-randomize):
21982 Reset 5x5-solver-output to nil when a new grid is cast.
21983 (5x5-log-init, 5x5-log): Use defsubst instead of defmacro to shunt
21984 these debugging traces, as defmacro breaks the compiled code.
21985
21986 2011-05-24 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
21987
21988 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
21989
21990 2011-05-24 Leo Liu <sdl.web@gmail.com>
21991
21992 * vc/vc-bzr.el (vc-bzr-sha1-program): Rename from sha1-program.
21993 (vc-bzr-sha1): Adapt.
21994
21995 * sha1.el: Remove. Function `sha1' is now builtin.
21996
21997 * bindings.el: Provide sha1 feature.
21998
21999 2011-05-24 Kenichi Handa <handa@m17n.org>
22000
22001 * mail/sendmail.el: Require `rfc2047'.
22002 (mail-insert-from-field): Do not perform RFC2047 encoding.
22003 (mail-encode-header): New function.
22004 (sendmail-send-it): Set buffer-file-coding-system of the work
22005 buffer to the return value of select-message-coding-system.
22006 Call mail-encode-header.
22007
22008 * mail/smtpmail.el (smtpmail-send-it): Call mail-encode-header.
22009
22010 2011-05-24 Sean Neakums <sneakums@zork.net> (tiny change)
22011
22012 * mail/supercite.el (sc-default-cite-frame):
22013 Handle sc-nested-citation-p when sc-cite-blank-lines-p is non-nil.
22014
22015 2011-05-24 Glenn Morris <rgm@gnu.org>
22016
22017 * progmodes/python.el (brm-menu): Declare.
22018
22019 * emulation/viper.el (viper-set-hooks): Declare.
22020
22021 * play/5x5.el (5x5-log-init, 5x5-log): Evaluate when compiling.
22022 (5x5-log-init, 5x5-log, 5x5-solver): Doc fixes.
22023 (math-map-vec, math-sub, math-mul, math-make-intv, math-reduce-vec)
22024 (math-format-number, math-pow, calcFunc-arrange, calcFunc-cvec)
22025 (calcFunc-diag, calcFunc-trn, calcFunc-inv, calcFunc-mrow)
22026 (calcFunc-mcol, calcFunc-vconcat, calcFunc-index): Declare.
22027
22028 2011-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
22029
22030 Add an :exit-function for completion-at-point.
22031
22032 * minibuffer.el (completion--done): New fun.
22033 (completion--do-completion): Use it. New arg `expect-exact'.
22034 (minibuffer-complete, minibuffer-complete-word): Don't output message,
22035 since completion--do-completion does it for us now.
22036 (minibuffer-force-complete): Use completion--done and
22037 completion--replace. Handle sole-completion case with more care.
22038 (minibuffer-complete-and-exit): Use new `expect-exact' arg.
22039 (completion-extra-properties): New var.
22040 (completion-annotate-function): Make obsolete.
22041 (minibuffer-completion-help): Adjust accordingly.
22042 Use completion-list-insert-choice-function.
22043 (completion-at-point, completion-help-at-point):
22044 Bind completion-extra-properties.
22045 (completion-pcm-word-delimiters): Add | (for uniquify, for example).
22046 * simple.el (completion-list-insert-choice-function): New var.
22047 (completion-setup-function): Preserve it.
22048 (choose-completion): Pay attention to it, shuffle the code a bit.
22049 (choose-completion-string): New arg `insert-function'.
22050
22051 * textmodes/bibtex.el: Convert to lexical binding.
22052 (bibtex-mode-map): Use completion-at-point.
22053 (bibtex-mode): Use define-derived-mode&completion-at-point-functions.
22054 (bibtex-completion-at-point-function): New fun, from bibtex-complete.
22055 (bibtex-complete): Define as obsolete alias.
22056 (bibtex-complete-internal): Remove.
22057 (bibtex-format-entry): Remove unused sub-group in regexp.
22058 * shell.el (shell--command-completion-data)
22059 (shell-environment-variable-completion):
22060 * pcomplete.el (pcomplete-completions-at-point):
22061 * comint.el (comint--complete-file-name-data): Use :exit-function
22062 instead of completion-table-with-terminator so it also works for
22063 choose-completion.
22064
22065 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
22066
22067 * <lots-of-files>.el: Don't quote lambda expressions with `quote'.
22068
22069 * vc/smerge-mode.el (smerge-refine-subst): Don't deactivate the mark
22070 (bug#8710).
22071
22072 * emacs-lisp/lisp.el (up-list): Fix forward movement (bug#8708).
22073
22074 2011-05-23 Ken Manheimer <ken.manheimer@gmail.com>
22075
22076 * allout.el (allout-inhibit-auto-fill-on-headline): Create new
22077 customization variable and implement: If non-nil, auto-fill will
22078 be inhibited while on topic's header line.
22079
22080 2011-05-23 Vincent Belaïche <vincentb1@users.sourceforge.net>
22081
22082 * play/5x5.el: I/ Add an arithmetic solver to suggest positions to
22083 click on. II/ Make 5x5 multisession. III/ Ensure that random grids
22084 always have a solution in grid size = 5 cases.
22085 (5x5-mode-map): Add keybinding to function `5x5-solve-suggest'.
22086 (5x5-solver-output, 5x5-log-buffer): New vars.
22087 (5x5-grid, 5x5-x-pos, 5x5-y-pos, 5x5-moves, 5x5-cracking):
22088 Make these variables buffer local to achieve 5x5 multi-session-ness.
22089 (5x5): Set 5x5-grid-size only if SIZE is non-negative.
22090 (5x5-grid-to-vec, 5x5-vec-to-grid, 5x5-log-init, 5x5-log, 5x5-solver)
22091 (5x5-solve-suggest): New funs.
22092 (5x5-randomize): Use 5x5-make-move instead of 5x5-flip-cell to
22093 randomize a grid so that we ensure that there is always a solution.
22094 (5x5-make-random-grid): Allow other movement than flipping.
22095
22096 2011-05-23 Kevin Ryde <user42@zip.com.au>
22097
22098 * emacs-lisp/advice.el (ad-read-advised-function):
22099 Use `function-called-at-point' as the default, if it has
22100 advice and passes PREDICATE.
22101
22102 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
22103
22104 * emacs-lisp/bytecomp.el (byte-compile-function-form): Only call
22105 byte-compile-lambda if it's actually a lambda.
22106
22107 * emacs-lisp/eieio.el (eieio-defgeneric-form-primary-only-one):
22108 Fix function quoting. Use backquote better.
22109
22110 2011-05-22 Yuanle Song <sylecn@gmail.com>
22111
22112 * nxml/rng-xsd.el (rng-xsd-check-pattern): Use case-sensitive
22113 matching (Bug#8516).
22114
22115 2011-05-22 Jari Aalto <jari.aalto@cante.net>
22116
22117 * vc/vc-dir.el (vc-default-dir-printer): Give edited tag a
22118 different face (Bug#8178).
22119
22120 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
22121
22122 * vc/diff-mode.el (diff-changed): Don't use terminal specs for
22123 defface (Bug#8144).
22124
22125 2011-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
22126
22127 * emacs-lisp/macroexp.el (macroexpand-all-1): Convert ' to #' for
22128 funcall as well (bug#8712). Warn when performing those conversions.
22129 * emacs-lisp/bytecomp.el (byte-compile-form): Fix error report.
22130
22131 * progmodes/grep.el (grep-mode): Fix it for good (bug#8684)!
22132
22133 2011-05-22 Glenn Morris <rgm@gnu.org>
22134
22135 * files.el (hack-local-variables-prop-line): Small simplifications.
22136 (hack-local-variables, hack-local-variables-prop-line):
22137 If MODE-ONLY, return the mode, rather than just `t'.
22138
22139 2011-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
22140
22141 * progmodes/grep.el (grep-mode): Fix last change (bug#8684).
22142
22143 2011-05-21 Glenn Morris <rgm@gnu.org>
22144
22145 * files.el (hack-local-variables-prop-line, hack-local-variables):
22146 If only interested in the mode, don't bother doing the other stuff.
22147
22148 * image-mode.el (image-after-revert-hook):
22149 Redraw all frames on which the image is visible. (Bug#8567)
22150
22151 * dired-aux.el (dired-touch-initial): Just use current-time. (Bug#6887)
22152
22153 * wid-edit.el (widget-checklist-match-inline):
22154 Fix 2011-04-19 change. (Bug#8649)
22155
22156 2011-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
22157
22158 * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
22159 Also allow singlespace after single-letter capitals followed by a dot.
22160
22161 * nxml/nxml-mode.el (nxml-electric-slash): Reindent when completion is
22162 enabled. Suggested by James Ahlborn <jahlborn@gmail.com> (bug#8704).
22163
22164 2011-05-20 Nix <nix@esperi.org.uk>
22165
22166 * files.el (basic-save-buffer-2):
22167 Fix handling of break-hardlink-on-save with non-existent files.
22168
22169 2011-05-19 Deniz Dogan <deniz@dogan.se>
22170
22171 * net/rcirc.el (rcirc-mode): Initialize rcirc-urls to nil.
22172 (rcirc-markup-urls): Check if rcirc-url-regexp is nil.
22173
22174 2011-05-19 Glenn Morris <rgm@gnu.org>
22175
22176 * progmodes/f90.el (f90-type-def-re):
22177 Handle "type, bind(c)". (Bug#8691)
22178
22179 * emacs-lisp/autoload.el (batch-update-autoloads):
22180 Set autoload-excludes by parsing loadup.el rather than Makefiles.
22181
22182 2011-05-18 Michael Albinus <michael.albinus@gmx.de>
22183
22184 * net/tramp.el (tramp-process-actions): Set "first-password-request"
22185 property for the correct connection in case of multihops.
22186
22187 2011-05-18 Glenn Morris <rgm@gnu.org>
22188
22189 * emacs-lisp/authors.el (authors-fixed-entries): Remove fakemail.c.
22190 * mail/sendmail.el (sendmail-program): Fall back to just "sendmail".
22191
22192 Rationalize calendar handling of day and month abbrev-arrays.
22193 * calendar/calendar.el (calendar-customized-p): New function.
22194 (calendar-abbrev-construct, calendar-make-alist): Change what it does.
22195 (calendar-day-name-array, calendar-month-name-array): Doc fix.
22196 Add :set function.
22197 (calendar-abbrev-length, calendar-day-abbrev-array)
22198 (calendar-month-abbrev-array): Make defcustoms, with appropriate :set.
22199 (calendar-day-abbrev-array, calendar-month-abbrev-array):
22200 Elements may no longer be nil.
22201 (calendar-day-name, calendar-month-name):
22202 Update for changed nature of abbrev arrays.
22203 * calendar/diary-lib.el (diary-name-pattern):
22204 Update for changed nature of abbrev arrays.
22205 (diary-mark-entries-1): Update calendar-make-alist calls.
22206 (diary-font-lock-date-forms): Doc fix for changed abbrev arrays.
22207 * calendar/cal-html.el (cal-html-day-abbrev-array):
22208 Simply inherit from calendar-day-abbrev-array.
22209
22210 2011-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
22211
22212 * progmodes/grep.el (grep-mode): Disable default
22213 compilation-directory-matcher setting (bug#8684).
22214
22215 2011-05-17 Michael Albinus <michael.albinus@gmx.de>
22216
22217 * net/tramp.el (tramp-handle-insert-file-contents): Use "dd"
22218 instead of "head" and "tail". There were problems with SunOS 5.9,
22219 and it performs better.
22220
22221 2011-05-17 Glenn Morris <rgm@gnu.org>
22222
22223 * mail/mail-utils.el (mail-dont-reply-to): Silence compiler.
22224
22225 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
22226 Replace obsolete function.
22227
22228 * shell.el (pcomplete-parse-arguments-function): Declare.
22229
22230 * calendar/appt.el (appt-message-warning-time, appt-display-mode-line)
22231 (appt-display-diary, appt-display-interval, appt-prev-comp-time)
22232 (appt-check): Doc fixes.
22233 (appt-disp-window-function, appt-delete-window-function):
22234 Remove needless special case in custom :type.
22235 (appt-display-count): Default to 0, not nil.
22236 (appt-check): Reset appt-display-count to 0, not nil.
22237
22238 2011-05-17 Juanma Barranquero <lekktu@gmail.com>
22239
22240 * progmodes/python.el (python-font-lock-keywords):
22241 Add the Python 3.X keyword "nonlocal" (bug#8639).
22242
22243 2011-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
22244
22245 * emacs-lisp/eieio.el (defmethod): Fix quoting of code (bug#8677).
22246
22247 2011-05-16 Kevin Ryde <user42@zip.com.au>
22248
22249 * info-look.el (makefile-automake-mode): New setups, looking in
22250 automake manual, then makefile-mode.
22251 (makefile-mode): Remove automake manual, have it just in
22252 makefile-automake-mode since there's various things different or
22253 not relevant to plain make.
22254 (makefile-mode): Remove "other-modes" non-existent automake-mode,
22255 believe a hypothetical automake-mode would go to makefile-mode,
22256 not the other way around.
22257
22258 2011-05-15 Chong Yidong <cyd@stupidchicken.com>
22259
22260 * vc/diff-mode.el (diff-fixup-modifs): Locate correct position for
22261 hunk-end tags (Bug#8672).
22262
22263 * vc/vc-annotate.el (vc-annotate-mode-map): Bind = to
22264 vc-annotate-show-diff-revision-at-line (Bug#8671).
22265
22266 2011-05-14 Glenn Morris <rgm@gnu.org>
22267
22268 * vc/add-log.el (add-change-log-entry): Don't start adding a new entry
22269 in the middle of an existing one with multiple authors. (Bug#8645)
22270 (change-log-font-lock-keywords): Also handle multiple author lines
22271 with leading tabs. (Bug#8644)
22272
22273 * calendar/appt.el (appt-check): Rename some local variables.
22274 Some simplification/reordering.
22275
22276 * mail/feedmail.el (feedmail-confirm-outgoing-timeout)
22277 (feedmail-sendmail-f-doesnt-sell-me-out)
22278 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
22279 (feedmail-debug-sit-for, feedmail-queue-express-hook)
22280 (feedmail-queue-runner-message-sender): Set :version.
22281 (bbdb-search, bbdb-records, smtp-via-smtp, smtp-server)
22282 (bbdb-dwim-net-address, vm-mail): Declare.
22283 (feedmail-binmail-gnulinuxish-template):
22284 Rename from feedmail-binmail-linuxish-template.
22285 (feedmail-buffer-to-smtp, feedmail-vm-mail-mode):
22286 Use insert-buffer-substring.
22287
22288 2011-05-14 Bill Carpenter <bill@carpenter.org>
22289
22290 * mail/feedmail.el (feedmail-patch-level): Increase.
22291 (feedmail-debug): New custom group.
22292 (feedmail-confirm-outgoing-timeout)
22293 (feedmail-sendmail-f-doesnt-sell-me-out)
22294 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
22295 (feedmail-debug-sit-for, feedmail-queue-express-hook): New options.
22296 (feedmail-sender-line, feedmail-from-line)
22297 (feedmail-fiddle-headers-upwardly, feedmail-enable-spray)
22298 (feedmail-spray-this-address)
22299 (feedmail-spray-address-fiddle-plex-list)
22300 (feedmail-queue-use-send-time-for-date)
22301 (feedmail-queue-use-send-time-for-message-id)
22302 (feedmail-last-chance-hook, feedmail-queue-runner-mode-setter)
22303 (feedmail-buffer-eating-function):
22304 Doc fixes.
22305 (feedmail-spray-via-bbdb, feedmail-buffer-to-smtp)
22306 (feedmail-vm-mail-mode, feedmail-message-action-scroll-up)
22307 (feedmail-message-action-scroll-down): New functions.
22308 (feedmail-queue-directory, feedmail-queue-draft-directory):
22309 Use expand-file-name.
22310 (feedmail-prompt-before-queue-standard-alist): Add scroll entries.
22311 Remove C-v help entry.
22312 (feedmail-queue-buffer-file-name): New variable.
22313 (feedmail-mail-send-hook-splitter, feedmail-buffer-to-binmail)
22314 (feedmail-buffer-to-smtpmail, feedmail-queue-express-to-draft)
22315 (feedmail-message-action-send-strong, feedmail-message-action-edit)
22316 (feedmail-message-action-draft, feedmail-message-action-draft-strong)
22317 (feedmail-message-action-queue, feedmail-message-action-queue-strong)
22318 (feedmail-message-action-toggle-spray)
22319 (feedmail-run-the-queue-no-prompts)
22320 (feedmail-run-the-queue-global-prompt, feedmail-queue-reminder)
22321 (feedmail-look-at-queue-directory, feedmail-queue-subject-slug-maker)
22322 (feedmail-create-queue-filename, feedmail-rfc822-time-zone):
22323 (feedmail-fiddle-header, feedmail-give-it-to-buffer-eater)
22324 (feedmail-envelope-deducer, feedmail-fiddle-from)
22325 (feedmail-fiddle-sender, feedmail-default-date-generator)
22326 (feedmail-fiddle-date, feedmail-fiddle-message-id)
22327 (feedmail-fiddle-spray-address)
22328 (feedmail-fiddle-list-of-spray-fiddle-plexes)
22329 (feedmail-fiddle-list-of-fiddle-plexes)
22330 (feedmail-fill-to-cc-function, feedmail-fill-this-one)
22331 (feedmail-one-last-look, feedmail-fqm-p): Add debug calls.
22332 (feedmail-queue-runner-message-sender, feedmail-binmail-template):
22333 Change default. Doc fix.
22334 (feedmail-queue-runner-cleaner-upper): Use feedmail-say-chatter.
22335 (feedmail-binmail-linuxish-template): New constant.
22336 (feedmail-buffer-to-sendmail): Doc fix. Add debug call.
22337 Respect feedmail-sendmail-f-doesnt-sell-me-out.
22338 (feedmail-send-it): Add debug call.
22339 Use feedmail-queue-buffer-file-name, and
22340 feedmail-send-it-immediately-wrapper.
22341 (feedmail-message-action-send): Add debug call.
22342 Use feedmail-send-it-immediately-wrapper.
22343 (feedmail-queue-express-to-queue): Add debug call.
22344 Run feedmail-queue-express-hook.
22345 (feedmail-message-action-help): Add debug call. Use feedmail-p-h-b-n.
22346 (feedmail-message-action-help-blat):
22347 Rename from feedmail-queue-send-edit-prompt-help-first.
22348 (feedmail-run-the-queue): Add debug call. Set buffer-file-type.
22349 Check line-endings. Handle errors better.
22350 (feedmail-queue-reminder-brief, feedmail-queue-reminder-medium):
22351 Doc fix. Add debug call.
22352 (feedmail-queue-send-edit-prompt): Doc fix. Add debug call.
22353 Use feedmail-queue-send-edit-prompt-inner.
22354 (feedmail-queue-runner-prompt, feedmail-scroll-buffer): New functions.
22355 (feedmail-queue-send-edit-prompt-inner): New function, extracted
22356 from feedmail-queue-send-edit-prompt.
22357 (feedmail-queue-send-edit-prompt-help)
22358 (feedmail-queue-send-edit-prompt-help-later): Remove functions.
22359 (feedmail-tidy-up-slug): Add debug call.
22360 Respect feedmail-queue-slug-suspect-regexp.
22361 (feedmail-queue-subject-slug-maker): Use buffer-substring-no-properties.
22362 (feedmail-dump-message-to-queue): Add debug call.
22363 Expand queue-directory.
22364 (feedmail-dump-message-to-queue): Change message slightly.
22365 Use feedmail-say-chatter.
22366 (feedmail-rfc822-date): Add debug call. Bind system-time-locale.
22367 (feedmail-send-it-immediately-wrapper): New function.
22368 (feedmail-send-it-immediately): Add debug calls. Use let not let*.
22369 Insert empty string rather than newline. Handle full-frame case.
22370 Use catch/throw. Use feedmail-say-chatter.
22371 (feedmail-fiddle-from): Try mail-host-address.
22372 (feedmail-default-message-id-generator): Doc fix.
22373 Bind system-time-locale. Handle missing end.
22374 (feedmail-fiddle-x-mailer): Add debug call.
22375 Handle feedmail-x-mailer-line being nil.
22376 (feedmail-accume-n-nuke-header, feedmail-deduce-address-list):
22377 Add debug call. Use buffer-substring-no-properties.
22378 (feedmail-say-debug, feedmail-say-chatter): New functions.
22379 (feedmail-find-eoh): Give an explicit error.
22380
22381 2011-05-13 Ulf Jasper <ulf.jasper@web.de>
22382
22383 * net/newst-treeview.el (newsticker-treeview-face): Change default
22384 family from helvetica to sans.
22385 (newsticker-treeview-tool-bar-map): Move tool-bar icons to
22386 etc/images/newsticker.
22387
22388 * net/newst-reader.el (newsticker-feed-face): Change default
22389 family from helvetica to sans.
22390
22391 * net/newst-plainview.el (newsticker-new-item-face)
22392 (newsticker-old-item-face, newsticker-immortal-item-face)
22393 (newsticker-obsolete-item-face, newsticker-date-face)
22394 (newsticker-statistics-face): Change default family from
22395 helvetica to sans.
22396 (newsticker--plainview-tool-bar-map): Move tool-bar icons to
22397 etc/images/newsticker.
22398
22399 * net/newst-backend.el (newsticker--do-run-auto-mark-filter)
22400 (newsticker--process-auto-mark-filter-match): Tell user about
22401 auto-marking.
22402
22403 2011-05-13 Didier Verna <didier@xemacs.org>
22404
22405 Common Lisp indentation improvements on defmethod and lambda-lists.
22406 * emacs-lisp/cl-indent.el: Advertise the changes and remove obsolete
22407 TODO entries.
22408 (lisp-lambda-list-keyword-parameter-indentation)
22409 (lisp-lambda-list-keyword-parameter-alignment)
22410 (lisp-lambda-list-keyword-alignment): New customizable user options.
22411 (lisp-indent-defun-method): Improve docstring.
22412 (extended-loop-p): Fix comment.
22413 (lisp-indent-lambda-list-keywords-regexp): New variable.
22414 (lisp-indent-lambda-list): New function.
22415 (lisp-indent-259): Use it.
22416 (lisp-indent-defmethod): Support for more than one
22417 method qualifier and properly indent methods lambda-lists.
22418 (defgeneric): Provide a missing common-lisp-indent-function property.
22419
22420 2011-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
22421
22422 * thingatpt.el (bounds-of-thing-at-point): Return nil rather than
22423 bounds for the empty string (bug#8667).
22424
22425 2011-05-13 Glenn Morris <rgm@gnu.org>
22426
22427 * mail/feedmail.el (feedmail-buffer-to-sendmail): Require sendmail.
22428
22429 * mail/sendmail.el (sendmail-program): Try executable-find first.
22430 (sendmail-send-it): `sendmail-program' cannot be unbound.
22431
22432 * calendar/appt.el (appt-make-list): Simplify.
22433 (appt-time-msg-list): Doc fix.
22434 (appt-check): Change mode-line message at the time of the appointment.
22435
22436 2011-05-12 Andreas Schwab <schwab@linux-m68k.org>
22437
22438 * progmodes/ld-script.el (ld-script-keywords)
22439 (ld-script-builtins): Update keywords list.
22440
22441 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
22442
22443 * progmodes/grep.el (grep-filter): Don't trip on partial lines.
22444
22445 * shell.el (shell-completion-vars): New function.
22446 (shell-mode):
22447 * simple.el (read-shell-command): Use it.
22448 (blink-matching-open): No need for " [...]" in minibuffer-message.
22449
22450 2011-05-12 Glenn Morris <rgm@gnu.org>
22451
22452 * calendar/appt.el (appt-now-displayed): Remove pointless variable.
22453 (appt-check): Simplify.
22454
22455 2011-05-12 Eli Zaretskii <eliz@gnu.org>
22456
22457 * vc/smerge-mode.el (smerge-resolve): Use null-device rather than a
22458 literal "/dev/null".
22459
22460 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
22461
22462 * emacs-lisp/lisp.el (lisp-complete-symbol, lisp-completion-at-point):
22463 Fix typo.
22464
22465 2011-05-12 Ralph Schleicher <rs@ralph-schleicher.de>
22466
22467 * progmodes/which-func.el (which-function):
22468 Use add-log-current-defun instead of add-log-current-defun-function,
22469 which might not be defined (Bug#8260).
22470
22471 2011-05-12 Glenn Morris <rgm@gnu.org>
22472
22473 * emacs-lisp/bytecomp.el (byte-compile-file-form-defmumble):
22474 Let byte-compile-initial-macro-environment always take precedence.
22475
22476 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
22477
22478 * net/rcirc.el: Add support for SSL/TLS connections.
22479 (rcirc-server-alist): New field `encryption'.
22480 (rcirc): Check `encryption' settings.
22481 (rcirc-connect): New arg `encryption'. Use open-network-stream.
22482 Merge make-local-variable into `set'.
22483 (rcirc--connection-open-p): New function.
22484 (rcirc-send-string, rcirc-clean-up-buffer): Use it to handle case where
22485 the process is not a network process (e.g. running gnutls-cli).
22486 (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
22487 Make rcirc-(en|de)code-coding-system local here.
22488 (rcirc-mode): Merge make-local-variable into `set'.
22489 (rcirc-parent-buffer): Make permanent buffer-local.
22490 (rcirc-multiline-minor-mode): Don't do it here.
22491 (rcirc-switch-to-server-buffer): Don't switch to a random buffer if
22492 there's no server buffer.
22493
22494 2011-05-11 Glenn Morris <rgm@gnu.org>
22495
22496 * newcomment.el (comment-kill): Prefix "unused" local.
22497
22498 * term/w32console.el (get-screen-color): Declare.
22499
22500 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
22501 Handle symbol elements of byte-compile-initial-macro-environment.
22502
22503 2011-05-10 Leo Liu <sdl.web@gmail.com>
22504
22505 * bookmark.el (bookmark-bmenu-mode-map):
22506 Bind bookmark-bmenu-search to `/'.
22507
22508 * mail/footnote.el: Convert to utf-8 encoding.
22509 (footnote-unicode-string, footnote-unicode-regexp): New variable.
22510 (Footnote-unicode): New function.
22511 (footnote-style-alist): Add unicode style to the list.
22512 (footnote-style): Doc fix.
22513
22514 2011-05-10 Jim Meyering <meyering@redhat.com>
22515
22516 Fix doubled-word typos.
22517 * international/quail.el (quail-insert-kbd-layout): and and -> and
22518 * kermit.el: and and -> and
22519 * net/ldap.el (ldap-search-internal): to to -> to
22520 * progmodes/vhdl-mode.el (vhdl-offsets-alist): Likewise.
22521 * progmodes/js.el (js-mode): and and -> and
22522 * textmodes/artist.el (artist-move-to-xy): at at -> at
22523 (artist-draw-region-trim-line-endings): if if -> if
22524 And Safetyc -> Safety.
22525 * textmodes/reftex-dcr.el (reftex-view-crossref): at at -> at a
22526
22527 2011-05-10 Glenn Morris <rgm@gnu.org>
22528 Stefan Monnier <monnier@iro.umontreal.ca>
22529
22530 * files.el (hack-one-local-variable-eval-safep):
22531 Consider "eval: (foo-mode)" to be safe. (Bug#8613)
22532
22533 2011-05-10 Glenn Morris <rgm@gnu.org>
22534
22535 * calendar/diary-lib.el (diary-list-entries-hook)
22536 (diary-mark-entries-hook, diary-nongregorian-listing-hook)
22537 (diary-nongregorian-marking-hook, diary-list-entries)
22538 (diary-include-other-diary-files, diary-mark-entries)
22539 (diary-mark-included-diary-files): Doc fixes.
22540
22541 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
22542
22543 * misc.el: Require tabulated-list.el during compilation.
22544
22545 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
22546
22547 * progmodes/compile.el (compilation-start):
22548 Run compilation-filter-hook for the async case too.
22549 (compilation-filter-hook): Doc fix.
22550
22551 2011-05-09 Deniz Dogan <deniz@dogan.se>
22552
22553 * wdired.el: Remove outdated installation comment. Fix usage
22554 comment.
22555
22556 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
22557
22558 * misc.el: Implement new command `list-dynamic-libraries'.
22559 (list-dynamic-libraries--loaded-only-p): New variable.
22560 (list-dynamic-libraries--refresh): New function.
22561 (list-dynamic-libraries): New command.
22562
22563 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
22564
22565 * progmodes/compile.el (compilation-error-regexp-alist-alist):
22566 Fix the ant regexp to handle end-line and end-column info from jikes.
22567 Re-introduce maven regexp. Give the ruby-Test::Unit regexp a
22568 higher priority to avoid clobbering by gnu.
22569
22570 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
22571
22572 * cus-face.el (custom-declare-face): Call custom-theme-recalc-face
22573 if the face has existing theme settings (Bug#8454).
22574
22575 2011-05-08 Ralph Schleicher <rs@ralph-schleicher.de>
22576
22577 * progmodes/perl-mode.el (perl-imenu-generic-expression):
22578 Only match variables declared via `my' or `our' (Bug#8261).
22579
22580 * net/browse-url.el (browse-url-of-dired-file): Allow browsing of
22581 special file names `.' and `..' (Bug#8259).
22582
22583 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
22584
22585 * progmodes/grep.el (grep-mode-font-lock-keywords):
22586 Remove buffer-changing entries.
22587 (grep-filter): New function.
22588 (grep-mode): Add it to compilation-filter-hook.
22589
22590 * progmodes/compile.el (compilation-filter-hook)
22591 (compilation-filter-start): New defvars.
22592 (compilation-filter): Call compilation-filter-hook prior to
22593 updating the process mark.
22594
22595 2011-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
22596
22597 * emacs-lisp/eieio.el (defmethod): Fix typo in last change.
22598
22599 2011-05-07 Eli Zaretskii <eliz@gnu.org>
22600
22601 * mail/sendmail.el (send-mail-function): On MS-Windows, default to
22602 mailclient-send-it even if window-system is nil. (Bug#8595)
22603
22604 * term/w32console.el (terminal-init-w32console):
22605 Call get-screen-color and use its output to set the frame
22606 background-mode. (Bug#8597)
22607
22608 2011-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
22609
22610 Make bytecomp.el understand that defmethod defines funs (bug#8631).
22611 * emacs-lisp/eieio.el (eieio--defalias, eieio--defgeneric-init-form):
22612 New functions.
22613 (defgeneric, eieio--defmethod): Use them.
22614 (eieio-defgeneric): Remove.
22615 (defmethod): Call defgeneric in a way visible to the byte-compiler.
22616
22617 2011-05-07 Glenn Morris <rgm@gnu.org>
22618
22619 * calendar/timeclock.el (timeclock-log-data): Remove unused local.
22620 Use let rather than let*.
22621 (timeclock-find-discrep): Remove unused local.
22622
22623 * calendar/diary-lib.el (diary-comment-start): Doc fix.
22624
22625 * calendar/appt.el (appt-time-msg-list): Doc fix.
22626
22627 2011-05-06 Noah Friedman <friedman@splode.com>
22628
22629 * apropos.el (apropos-print-doc): Only use
22630 emacs-lisp-docstring-fill-column when it is bound to an integer,
22631 per that variable's documentation.
22632
22633 2011-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
22634
22635 * lpr.el (print-region-1): Echo lpr-program's output, so error messages
22636 and warnings are not silently discarded (e.g. use -d instead of -P).
22637
22638 2011-05-06 Glenn Morris <rgm@gnu.org>
22639
22640 * calendar/appt.el (appt-message-warning-time): Doc fix.
22641 (appt-warning-time-regexp): New option.
22642 (appt-make-list): Respect appt-message-warning-time.
22643
22644 * calendar/diary-lib.el (diary-comment-start, diary-comment-end):
22645 New options.
22646 (diary-add-to-list): Strip comments from the displayed string.
22647 (diary-mode): Set comment-start and comment-end.
22648
22649 * vc/diff-mode.el (smerge-refine-subst): Declare.
22650 (diff-refine-hunk): Don't require smerge-mode when compiling.
22651
22652 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
22653
22654 * simple.el (list-processes): Return nil as the docstring says.
22655
22656 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
22657
22658 * net/ange-ftp.el (ange-ftp-binary-file-name-regexp): Set default
22659 to "".
22660 (ange-ftp-write-region, ange-ftp-insert-file-contents)
22661 (ange-ftp-copy-file-internal): Use only `ange-ftp-binary-file' for
22662 determining of binary transfer. (Bug#7383)
22663
22664 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
22665
22666 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
22667 Fix port computation bug. (Bug#8618)
22668
22669 2011-05-05 Glenn Morris <rgm@gnu.org>
22670
22671 * allout-widgets.el (allout-widgets-mode-inhibit): Declare before use.
22672
22673 * simple.el (shell-dynamic-complete-functions)
22674 (comint-dynamic-complete-functions): Declare.
22675
22676 * net/network-stream.el (gnutls-negotiate):
22677 * simple.el (tabulated-list-print): Fix declarations.
22678
22679 * progmodes/gud.el (syntax-symbol, syntax-point):
22680 Remove unnecessary and incorrect declarations.
22681
22682 * emacs-lisp/check-declare.el (check-declare-scan):
22683 Handle byte-compile-initial-macro-environment in bytecomp.el.
22684
22685 2011-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
22686
22687 Fix earlier half-done eieio-defmethod change (bug#8338).
22688 * emacs-lisp/eieio.el (eieio--defmethod): Rename from eieio-defmethod.
22689 Streamline and change calling convention.
22690 (defmethod): Adjust accordingly and simplify.
22691 (eieio-defclass): Fix broken calls to eieio-defmethod and redirect to
22692 new eieio--defmethod.
22693 (slot-boundp): Minor CSE simplification.
22694
22695 2011-05-05 Milan Zamazal <pdm@zamazal.org>
22696
22697 * progmodes/glasses.el (glasses-separate-capital-groups): New option.
22698 (glasses-make-readable): Use glasses-separate-capital-groups.
22699
22700 2011-05-05 Juanma Barranquero <lekktu@gmail.com>
22701
22702 * emacs-lisp/warnings.el (warning-level-aliases): Reflow docstring.
22703 (warning-series): Doc fix.
22704 (display-warning): Don't try to create the buffer if we just found it.
22705
22706 2011-05-04 Chong Yidong <cyd@stupidchicken.com>
22707
22708 * emacs-lisp/autoload.el (generated-autoload-file): Set to nil.
22709 (autoload-find-generated-file): New function.
22710 (generate-file-autoloads): Bind generated-autoload-file to
22711 buffer-file-name.
22712 (update-file-autoloads, update-directory-autoloads):
22713 Use autoload-find-generated-file. If called interactively, prompt for
22714 output file (Bug#7989).
22715 (batch-update-autoloads): Doc fix.
22716
22717 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
22718
22719 * term/w32-win.el (dynamic-library-alist): Add `gnutls'.
22720
22721 2011-05-04 Glenn Morris <rgm@gnu.org>
22722
22723 * calendar/diary-lib.el (diary-fancy-date-pattern): Turn it into a
22724 function, so it follows changes in calendar-date-style.
22725 (diary-fancy-date-matcher): New function.
22726 (diary-fancy-font-lock-keywords): Use diary-fancy-date-matcher.
22727 (diary-fancy-font-lock-fontify-region-function):
22728 Use diary-fancy-date-pattern as a function.
22729
22730 * calendar/diary-lib.el (diary-fancy-date-pattern): Do not use
22731 non-numbers for `year' etc pseudo-variables. (Bug#8583)
22732
22733 2011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
22734
22735 * net/gnutls.el (gnutls-negotiate): Use CL-style keyword arguments
22736 instead of positional arguments. Allow :keylist and :crlfiles
22737 arguments.
22738 (open-gnutls-stream): Call it.
22739
22740 * net/network-stream.el (network-stream-open-starttls): Adjust to
22741 call `gnutls-negotiate' with :process and :hostname arguments.
22742
22743 2011-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
22744
22745 * minibuffer.el (completion--message): New function.
22746 (completion--do-completion, minibuffer-complete)
22747 (minibuffer-force-complete, minibuffer-complete-word): Use it.
22748 (completion--do-completion): Don't ignore completion-auto-help when in
22749 icomplete-mode.
22750
22751 * whitespace.el (whitespace-trailing-regexp): Don't rely on the
22752 internal encoding (e.g. tibetan zero is not whitespace).
22753 (global-whitespace-mode): Prefer save-current-buffer.
22754 (whitespace-trailing-regexp): Remove useless save-match-data.
22755 (whitespace-empty-at-bob-regexp): Minor simplification.
22756
22757 2011-05-03 Chong Yidong <cyd@stupidchicken.com>
22758
22759 * emacs-lisp/autoload.el (generated-autoload-file): Doc fix (Bug#7989).
22760
22761 2011-05-03 Agustín Martín Domingo <agustin.martin@hispalinux.es>
22762
22763 * textmodes/ispell.el (ispell-add-per-file-word-list):
22764 Use `concat' to create string for insertion.
22765
22766 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
22767
22768 * textmodes/bibtex.el (bibtex-fill-field-bounds, bibtex-fill-entry):
22769 Avoid open-line which runs post-self-insert-hook.
22770 (bibtex-fill-entry): Remove unused `end' var.
22771
22772 2011-05-03 Dirk Ullrich <dirk.ullrich@googlemail.com> (tiny change)
22773
22774 * textmodes/ispell.el (ispell-add-per-file-word-list):
22775 Protect against `nil' value of `comment-start' (Bug#8579).
22776
22777 2011-05-03 Leo Liu <sdl.web@gmail.com>
22778
22779 * isearch.el (isearch-yank-pop): New command.
22780 (isearch-mode-map): Bind it to `M-y'.
22781 (isearch-forward): Mention it.
22782
22783 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
22784
22785 * simple.el (minibuffer-complete-shell-command): Remove.
22786 (minibuffer-local-shell-command-map): Use completion-at-point.
22787 (read-shell-command): Setup completion vars here instead.
22788 (read-expression-map): Bind TAB to symbol completion.
22789
22790 * textmodes/ispell.el (lookup-words): Use with-temp-buffer; signal
22791 error directly rather via storing it into `results'.
22792
22793 2011-05-02 Leo Liu <sdl.web@gmail.com>
22794
22795 * vc/diff.el: Fix description.
22796
22797 2011-05-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
22798
22799 * server.el (server-eval-at): New function.
22800
22801 2011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
22802
22803 * net/network-stream.el (open-network-stream): Take a :nowait
22804 parameter and pass it on to `make-network-process'.
22805 (network-stream-open-plain): Ditto.
22806
22807 2011-04-30 Andreas Schwab <schwab@linux-m68k.org>
22808
22809 * faces.el (face-spec-set-match-display): Don't match toolkit
22810 options on terminal frames.
22811
22812 2011-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
22813
22814 * progmodes/pascal.el: Use lexical binding.
22815 (pascal-mode-map): Remove author preferences.
22816
22817 * pcomplete.el (pcomplete-std-complete): Don't abuse
22818 completion-at-point.
22819
22820 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
22821
22822 * calc/calccomp.el (math-comp-to-string-flat-term): Simplify by
22823 removing code that has been dead since 1991 or so.
22824
22825 * startup.el (command-line): When warning about "_emacs", use a
22826 delayed warning to allow the user to filter it out.
22827
22828 2011-04-28 Deniz Dogan <deniz@dogan.se>
22829
22830 * net/rcirc.el (rcirc-handler-353): Fix bug for channels which the
22831 user has not joined.
22832
22833 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
22834
22835 * pcomplete.el (pcomplete-completions-at-point): Return nil if there
22836 aren't any completions at point.
22837
22838 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
22839
22840 * subr.el (display-delayed-warnings): New function.
22841 (delayed-warnings-hook): New variable.
22842
22843 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
22844
22845 * minibuffer.el (completion-at-point, completion-help-at-point):
22846 Don't presume that a given completion-at-point-function will always
22847 use the same calling convention.
22848
22849 * pcomplete.el (pcomplete-completions-at-point):
22850 Obey pcomplete-ignore-case. Don't call pcomplete-norm-func unless
22851 pcomplete-seen is non-nil.
22852 (pcomplete-comint-setup): Also recognize the new comint/shell
22853 completion functions.
22854 (pcomplete-do-complete): Don't call pcomplete-norm-func unless
22855 pcomplete-seen is non-nil.
22856
22857 2011-04-27 Niels Giesen <niels.giesen@gmail.com>
22858
22859 * calendar/icalendar.el (diary-lib): Add require statement.
22860 (icalendar--create-uid): Read out a uid from a text-property on
22861 the first character in the entry. This allows for code to add its
22862 own uid to the entry.
22863 (icalendar--convert-float-to-ical): Add export of
22864 `diary-float'-entries save for those with the optional DAY
22865 argument.
22866
22867 2011-04-27 Daniel Colascione <dan.colascione@gmail.com>
22868
22869 * subr.el (shell-quote-argument): Use alternate escaping strategy
22870 when we spot a variable reference in a string.
22871
22872 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
22873
22874 * cus-start.el (all): Define customization for debug-on-event.
22875
22876 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
22877
22878 * subr.el (shell-quote-argument): Escape correctly under Windows.
22879
22880 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
22881
22882 * emulation/cua-base.el (cua-selection-mode): Make it toggle again.
22883
22884 2011-04-25 Michael Albinus <michael.albinus@gmx.de>
22885
22886 * net/tramp.el (tramp-process-actions): Add POS argument.
22887 Delete region between POS and (pos).
22888
22889 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
22890 Use `nil' position in `tramp-process-actions' call.
22891 (tramp-maybe-open-connection): Call `tramp-process-actions' with pos.
22892
22893 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Use `nil'
22894 position in `tramp-process-actions' call.
22895
22896 * net/trampver.el: Update release number.
22897
22898 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
22899
22900 * custom.el (defcustom): Obey lexical-binding.
22901
22902 Fix octave-inf completion problems reported by Alexander Klimov.
22903 * progmodes/octave-inf.el (inferior-octave-mode-syntax-table):
22904 Inherit from octave-mode-syntax-table.
22905 (inferior-octave-mode): Set info-lookup-mode.
22906 (inferior-octave-completion-at-point): New function.
22907 (inferior-octave-complete): Use it and completion-in-region.
22908 (inferior-octave-dynamic-complete-functions): Use it as well, and use
22909 comint-filename-completion.
22910 * progmodes/octave-mod.el (octave-mode-syntax-table): Use _ syntax for
22911 symbol elements which shouldn't be word elements.
22912 (octave-font-lock-keywords, octave-beginning-of-defun)
22913 (octave-function-header-regexp): Adjust regexps accordingly.
22914 (octave-mode-map): Also use info-lookup-symbol for C-c C-h.
22915
22916 2011-04-25 Juanma Barranquero <lekktu@gmail.com>
22917
22918 * net/gnutls.el (gnutls-errorp): Declare before first use.
22919
22920 2011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
22921
22922 * net/gnutls.el (gnutls-negotiate): Add hostname, verify-flags,
22923 verify-error, and verify-hostname-error parameters. Check whether
22924 default trustfile exists before going to use it. Add missing
22925 argument to gnutls-message-maybe call. Return value.
22926 Reported by Claudio Bley <claudio.bley@gmail.com>.
22927 (open-gnutls-stream): Add usage example.
22928
22929 * net/network-stream.el (network-stream-open-starttls): Give host
22930 parameter to `gnutls-negotiate'.
22931 (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
22932 * subr.el (shell-quote-argument): Escape correctly under Windows.
22933
22934 2011-04-24 Daniel Colascione <dan.colascione@gmail.com>
22935
22936 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
22937 Use correct match group (bug#8438).
22938
22939 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
22940
22941 * emacs-lisp/package.el (package-built-in-p): Fix typo.
22942 (package-menu--generate): New arg specifying packages to show.
22943 (package-menu-refresh, package-menu-execute, list-packages):
22944 Callers changed.
22945 (package-show-package-list): New function, replacing deleted
22946 package--list-packages (renamed because it is non-internal).
22947
22948 * finder.el (finder-list-matches): Use package-show-package-list
22949 instead of deleted package--list-packages.
22950
22951 * vc/vc-annotate.el (vc-annotate-goto-line): New command.
22952 Based on a previous implementation by Juanma Barranquero (Bug#8366).
22953 (vc-annotate-mode-map): Bind it to RET.
22954
22955 2011-04-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
22956
22957 * progmodes/etags.el (next-file): Don't use set-buffer to change
22958 buffers (Bug#8478).
22959
22960 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
22961
22962 * files.el (auto-mode-alist): Use js-mode for .json (Bug#8529).
22963
22964 * apropos.el (apropos-label-face): Avoid variable-pitch face.
22965 (apropos-accumulator): Doc fix.
22966 (apropos-function, apropos-macro, apropos-command)
22967 (apropos-variable, apropos-face, apropos-group, apropos-widget)
22968 (apropos-plist): Add face property.
22969 (apropos-symbols-internal): Fix indentation.
22970 (apropos-print): Simplify help, and recognize apropos-multi-type.
22971 (apropos-print-doc): Use button-type-get to extract the button's
22972 face property. Fill docstring (Bug#8352).
22973
22974 2011-04-23 Juanma Barranquero <lekktu@gmail.com>
22975
22976 * buff-menu.el (Buffer-menu--buffers): Fix typo in docstring (bug#8535).
22977
22978 * play/mpuz.el (mpuz-silent): Doc fix.
22979 (mpuz-mode-map): Use mapc.
22980 (mpuz-put-number-on-board): Rename parameter L to COLUMNS.
22981 (mpuz-letter-to-digit, mpuz-check-all-solved, mpuz-create-buffer):
22982 Fix typos in docstrings.
22983
22984 * play/doctor.el (doc$, doctor-$, doctor-read-print, doctor-read-token)
22985 (doctor-nounp, doctor-pronounp): Fix typos in docstrings.
22986
22987 * mouse-drag.el (mouse-drag-throw): Fix typo in docstring.
22988
22989 2011-04-23 Chong Yidong <cyd@stupidchicken.com>
22990
22991 * minibuffer.el (completion--do-completion): Avoid the "Next char
22992 not unique" prompt if icomplete-mode is enabled (Bug#5849).
22993
22994 * mouse.el (mouse-drag-mode-line-1): Make sure that if we push
22995 mouse-2 into unread-command-events, it is interpreted correctly.
22996
22997 * image-mode.el (image-type, image-mode-map, image-minor-mode-map)
22998 (image-toggle-display): Doc fix.
22999
23000 2011-04-23 Stephen Berman <stephen.berman@gmx.net>
23001
23002 * textmodes/page.el (what-page): Use line-number-at-pos to
23003 calculate line number (Bug#6825).
23004
23005 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
23006
23007 * eshell/esh-mode.el (find-tag-interactive): Declare function.
23008 (eshell-find-tag): Remove `with-no-warnings', unneeded now.
23009 Pass argument NO-DEFAULT to `find-tag-interactive'.
23010
23011 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
23012
23013 Lexical-binding cleanup.
23014
23015 * progmodes/ada-mode.el (ada-after-change-function, ada-loose-case-word)
23016 (ada-no-auto-case, ada-capitalize-word, ada-untab, ada-narrow-to-defun):
23017 * progmodes/ada-prj.el (ada-prj-initialize-values)
23018 (ada-prj-display-page, ada-prj-field-modified, ada-prj-display-help)
23019 (ada-prj-show-value):
23020 * progmodes/ada-xref.el (ada-find-any-references, ada-gdb-application):
23021 * progmodes/antlr-mode.el (antlr-with-displaying-help-buffer)
23022 (antlr-invalidate-context-cache, antlr-options-menu-filter)
23023 (antlr-language-option-extra, antlr-c++-mode-extra, antlr-run-tool):
23024 * progmodes/bug-reference.el (bug-reference-push-button):
23025 * progmodes/fortran.el (fortran-line-length):
23026 * progmodes/glasses.el (glasses-change):
23027 * progmodes/octave-mod.el (octave-fill-paragraph):
23028 * progmodes/python.el (python-mode, python-pdbtrack-track-stack-file)
23029 (python-pdbtrack-grub-for-buffer, python-sentinel):
23030 * progmodes/sql.el (sql-save-connection):
23031 * progmodes/tcl.el (tcl-indent-command, tcl-popup-menu):
23032 * progmodes/xscheme.el (xscheme-enter-debugger-mode):
23033 Mark unused parameters.
23034
23035 * progmodes/compile.el (compilation--flush-directory-cache)
23036 (compilation--flush-parse, compile-internal): Mark unused parameters.
23037 (compilation-buffer-name): Rename parameter MODE-NAME to NAME-OF-MODE.
23038 (compilation-next-error-function): Remove unused variable `timestamp'.
23039
23040 * progmodes/cpp.el (cpp-parse-close): Remove unused variable `begin'.
23041 (cpp-signal-read-only, cpp-grow-overlay): Mark unused parameters.
23042
23043 * progmodes/dcl-mode.el (dcl-end-of-command):
23044 Remove unused variable `start'.
23045 (dcl-calc-command-indent-multiple, dcl-calc-cont-indent-relative)
23046 (dcl-option-value-basic, dcl-option-value-offset)
23047 (dcl-option-value-margin-offset, dcl-option-value-comment-line):
23048 Mark unused parameters.
23049 (dcl-save-local-variable): Remove unused variable `val'.
23050 (mode): Declare.
23051
23052 * progmodes/delphi.el (delphi-save-state, delphi-after-change):
23053 Mark unused parameters.
23054 (delphi-ignore-changes): Move before first use.
23055 (delphi-charset-token-at): Remove unused variable `start'.
23056 (delphi-else-start): Remove unused variable `if-count'.
23057 (delphi-comment-block-start, delphi-comment-block-end):
23058 Remove unused variable `kind'.
23059 (delphi-indent-line): Remove unused variable `new-point'.
23060
23061 * progmodes/ebrowse.el (ebrowse-files-list)
23062 (ebrowse-list-of-matching-members, ebrowse-tags-list-members-in-file):
23063 Mark unused parameters. Don't quote `lambda'.
23064 (ebrowse-sort-tree-list, ebrowse-same-tree-member-buffer-list):
23065 Don't quote `lambda'.
23066 (ebrowse-revert-tree-buffer-from-file, ebrowse-tags-choose-class)
23067 (ebrowse-goto-visible-member/all-member-lists): Mark unused parameters.
23068 (ebrowse-create-tree-buffer): Rename parameter OBARRAY to CLASSES.
23069 (ebrowse-toggle-mark-at-point): Remove unused variable `pnt'.
23070 Use `ignore-errors'.
23071 (ebrowse-frozen-tree-buffer-name, ebrowse-find-source-file)
23072 (ebrowse-view/find-file-and-search-pattern)
23073 (ebrowse-view/find-member-declaration/definition):
23074 Rename parameter TAGS-FILE-NAME to TAGS-FILE.
23075 (ebrowse-find-class-declaration, ebrowse-view-class-declaration):
23076 Rename parameter PREFIX-ARG to PREFIX.
23077 (ebrowse-tags-read-name): Remove unused variables `start' and
23078 `member-info'.
23079 (ebrowse-display-member-buffer): Rename variable `tags-file-name'
23080 to `tags-file'.
23081
23082 * progmodes/etags.el (local-find-tag-hook): Declare.
23083 (tag-partial-file-name-match-p, tag-any-match-p, list-tags):
23084 Mark unused parameters.
23085
23086 * progmodes/executable.el (compilation-error-regexp-alist): Declare.
23087 (executable-interpret): Mark unused parameter.
23088
23089 * progmodes/flymake.el (flymake-process-sentinel)
23090 (flymake-after-change-function)
23091 (flymake-create-temp-with-folder-structure)
23092 (flymake-get-include-dirs-dot): Mark unused parameters.
23093 (flymake-safe-delete-directory): Remove unused variable `err'.
23094
23095 * progmodes/gdb-mi.el (speedbar-change-initial-expansion-list)
23096 (speedbar-timer-fn, speedbar-line-text)
23097 (speedbar-change-expand-button-char, speedbar-delete-subblock)
23098 (speedbar-center-buffer-smartly): Declare functions.
23099 (gdb-find-watch-expression): Remove unused variable `array'.
23100 (gdb-edit-value, gdb-gdb, gdb-ignored-notification, gdb-thread-created)
23101 (gdb-starting): Mark unused parameters.
23102 (gud-gdbmi-marker-filter): Remove unused variable `output-record'.
23103 (gdb-table-string): Remove unused variable `res'.
23104 (gdb-place-breakpoints): Remove unused variables `flag' and `bptno'.
23105 (gdb-disassembly-handler-custom): Remove unused variable `pos'.
23106 (gdb-display-buffer): Remove unused variable `cur-size'.
23107
23108 * progmodes/gud.el (gud-def): Use `defalias' instead of `defun' to
23109 allow lexical-binding compilation.
23110 (gud-expansion-speedbar-buttons, gud-gdb-goto-stackframe)
23111 (gud-dbx-massage-args, gud-xdb-massage-args, gud-perldb-massage-args)
23112 (gud-jdb-massage-args, gud-jdb-find-source, gud-find-class):
23113 Mark unused parameters.
23114 (gud-gdb-marker-filter): Remove unused variable `match'.
23115 (gud-find-class): Bind `syntax-symbol' and `syntax-point' to suitable
23116 lambda expressions and funcall them, instead of using `fset'.
23117
23118 * progmodes/hideif.el (hif-parse-if-exp): Rename parameter
23119 HIF-TOKEN-LIST to TOKEN-LIST and let-bind `hif-token-list'.
23120
23121 * progmodes/hideshow.el (hs-hide-block-at-point): Remove unused
23122 variable `header-beg'; use `let'.
23123
23124 * progmodes/icon.el (indent-icon-exp): Remove unused variables
23125 `restart', `last-sexp' and `at-do'.
23126
23127 * progmodes/js.el (js--debug): Mark unused parameter.
23128 (js--parse-state-at-point): Remove unused variable `bound'; use `let'.
23129 (js--splice-into-items): Remove unused variable `item'.
23130 (js--read-symbol, js--read-tab): Pass 1/-1 to `ido-mode', not t/nil.
23131
23132 * progmodes/make-mode.el (makefile-make-font-lock-keywords):
23133 Rename parameter FONT-LOCK-KEYWORDS to FL-KEYWORDS.
23134 (makefile-complete): Remove unused variable `try'.
23135 (makefile-fill-paragraph, makefile-match-function-end):
23136 Mark unused parameters.
23137
23138 * progmodes/octave-inf.el (inferior-octave-complete):
23139 Remove unused variable `proc'.
23140 (inferior-octave-output-digest): Mark unused parameter.
23141
23142 * progmodes/perl-mode.el (perl-calculate-indent):
23143 Remove unused variable `err'.
23144
23145 * progmodes/prolog.el (prolog-mode-keybindings-inferior)
23146 (prolog-indent-line): Mark unused parameters.
23147 (prolog-indent-line): Remove unused variable `beg'.
23148
23149 * progmodes/ps-mode.el (reporter-prompt-for-summary-p)
23150 (reporter-dont-compact-list): Declare.
23151
23152 * progmodes/sh-script.el (sh-font-lock-quoted-subshell):
23153 Remove unused variable `char'.
23154 (sh-debug): Mark unused parameter.
23155 (sh-get-indent-info): Remove unused variable `start'.
23156 (sh-calculate-indent): Remove unused variable `var'.
23157
23158 * progmodes/simula.el (simula-popup-menu): Mark unused parameter.
23159 (simula-electric-keyword): Remove unused variable `null'.
23160 (simula-search-backward, simula-search-forward): Remove unused
23161 variables `begin' and `end'.
23162
23163 * progmodes/vera-mode.el (vera-guess-basic-syntax):
23164 Remove unused variable `pos'.
23165 (vera-electric-tab, vera-comment-uncomment-region):
23166 Mark unused parameters.
23167 (vera-electric-tab): Rename parameter PREFIX-ARG to PREFIX.
23168
23169 2011-04-22 Chong Yidong <cyd@stupidchicken.com>
23170
23171 * emacs-lisp/package.el (package--builtins, package-alist)
23172 (package-load-descriptor, package-built-in-p, package-activate)
23173 (define-package, package-installed-p)
23174 (package-compute-transaction, package-buffer-info)
23175 (package--push): Doc fix. Distinguish more clearly between
23176 version strings and version lists.
23177
23178 2011-04-21 Juanma Barranquero <lekktu@gmail.com>
23179
23180 Lexical-binding cleanup.
23181
23182 * play/5x5.el (5x5-make-random-solution, 5x5-make-mutate-current)
23183 (5x5-make-mutate-best):
23184 * play/fortune.el (fortune-in-buffer):
23185 * play/gomoku.el (gomoku-init-display):
23186 * play/solitaire.el (solitaire, solitaire-do-check):
23187 * play/tetris.el (tetris-default-update-speed-function):
23188 Mark unused parameters.
23189
23190 * play/bubbles.el (bubbles-mode): Set `show-trailing-whitespace'.
23191 (bubbles--shift): Remove unused variable `char-org'.
23192 (bubbles--set-faces): Remove unused variable `fg-col'. Simplify.
23193 (bubbles--show-images): Remove unused variable `char'.
23194
23195 * play/decipher.el (decipher-keypress, decipher-alphabet-keypress)
23196 (decipher-get-undo, decipher-set-map, decipher-complete-alphabet)
23197 (decipher-resync, decipher-loop-with-breaks, decipher--analyze)
23198 (decipher-analyze-buffer): Use ?\s.
23199 (decipher-make-checkpoint): Remove unused variable `mapping'.
23200
23201 * play/doctor.el (doctor-doc): Rename parameter DOCTOR-SENT to SENT.
23202
23203 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
23204 Remove unused variable `result'; use `let'.
23205
23206 * play/gametree.el (gametree-current-layout, gametree-apply-layout):
23207 Rename parameter TOP-LEVEL to FROM-TOP-LEVEL; use `ignore-errors'.
23208 (gametree-children-shown-p, gametree-compute-reduced-score):
23209 Use `ignore-errors'.
23210
23211 * play/handwrite.el (ps-lpr-switches): Declare.
23212 (handwrite): Remove unused variables `pmin' and `lastp'.
23213
23214 * play/hanoi.el (hanoi-move-ring): Remove unused variable `total-steps'.
23215
23216 * play/landmark.el (landmark-init-display)
23217 (landmark-update-naught-weights): Mark unused parameters.
23218 (landmark-y): Remove unused variable `noise'. Simplify.
23219 (landmark-human-plays): Remove unused variable `score'.
23220
23221 * play/mpuz.el (mpuz-try-letter): Remove unused variable `message'.
23222 (mpuz-try-proposal): Remove unused variable `game'.
23223
23224 * play/zone.el (life-patterns): Declare.
23225
23226 2011-04-20 Juanma Barranquero <lekktu@gmail.com>
23227
23228 * vc/vc.el (ediff-vc-internal): Declare function.
23229
23230 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
23231
23232 * shell.el: Use lexical-binding and std completion UI.
23233 (shell-filter-ctrl-a-ctrl-b): Work as a preoutput filter.
23234 (shell-mode): Put shell-filter-ctrl-a-ctrl-b on
23235 comint-preoutput-filter-functions rather than on
23236 comint-output-filter-functions.
23237 (shell-command-completion, shell--command-completion-data)
23238 (shell-filename-completion, shell-environment-variable-completion)
23239 (shell-c-a-p-replace-by-expanded-directory): New functions.
23240 (shell-dynamic-complete-functions, shell-dynamic-complete-command)
23241 (shell-dynamic-complete-filename, shell-replace-by-expanded-directory)
23242 (shell-dynamic-complete-environment-variable): Use them.
23243 (shell-dynamic-complete-as-environment-variable)
23244 (shell-dynamic-complete-as-command): Remove.
23245 (shell-match-partial-variable): Match past point.
23246 * comint.el: Clean up use of completion-at-point-functions.
23247 (comint-completion-at-point): New function.
23248 (comint-mode): Use it completion-at-point-functions.
23249 (comint-dynamic-complete): Make it obsolete.
23250 (comint-replace-by-expanded-history-before-point): Add dry-run arg.
23251 (comint-c-a-p-replace-by-expanded-history): New function.
23252 (comint-dynamic-complete-functions)
23253 (comint-replace-by-expanded-history): Use it.
23254 * minibuffer.el (completion-table-with-terminator): Allow dynamic
23255 termination strings. Try harder to avoid second try-completion.
23256 (completion-in-region-mode-map): Disable bindings that don't work yet.
23257
23258 * comint.el: Use lexical-binding. Require CL.
23259 (comint-dynamic-complete-functions): Use comint-filename-completion.
23260 (comint-completion-addsuffix): Tweak custom type.
23261 (comint-filename-completion, comint--common-suffix)
23262 (comint--common-quoted-suffix, comint--table-subvert)
23263 (comint--complete-file-name-data): New functions.
23264 (comint-dynamic-complete-as-filename, comint-dynamic-complete-filename)
23265 (comint-dynamic-list-filename-completions): Use them.
23266 (comint-dynamic-simple-complete): Make obsolete.
23267
23268 * minibuffer.el (completion-in-region-mode):
23269 Keep completion-in-region-mode--predicate global.
23270 (completion-in-region--postch):
23271 Assume completion-in-region-mode--predicate is not null.
23272
23273 * progmodes/flymake.el (flymake-start-syntax-check-process):
23274 Obey `dir'. Simplify.
23275
23276 * vc/vc.el (vc-version-ediff): Call ediff-vc-internal directly, since
23277 we're in VC after all.
23278
23279 2011-04-20 Christoph Scholtes <cschol2112@googlemail.com>
23280
23281 * vc/vc.el (vc-diff-build-argument-list-internal)
23282 (vc-version-ediff, vc-ediff): New commands.
23283 (vc-version-diff): Use vc-diff-build-argument-list-internal.
23284
23285 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
23286
23287 * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Remove dead code,
23288 add sanity check.
23289
23290 * obsolete/erc-hecomplete.el: Make obsolete.
23291 * obsolete/: Standardize obsolescence info in the header.
23292
23293 2011-04-20 Glenn Morris <rgm@gnu.org>
23294
23295 * calendar/solar.el (solar-horizontal-coordinates):
23296 Use the longitude argument rather than `calendar-longitude'.
23297 (solar-date-next-longitude): Remove unused locals.
23298
23299 2011-04-20 Vinicius Jose Latorre <viniciusjl@ig.com.br>
23300
23301 * whitespace.el: New version 13.2.1.
23302
23303 2011-04-20 felix <EmacsWiki> (tiny change)
23304
23305 * whitespace.el (global-whitespace-mode): Keep highlight when
23306 switching between major modes on a file.
23307
23308 2011-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
23309
23310 * progmodes/octave-mod.el (octave-in-comment-p, octave-in-string-p)
23311 (octave-not-in-string-or-comment-p): Use syntax-ppss so it works with
23312 multi-line comments as well.
23313
23314 2011-04-19 Juanma Barranquero <lekktu@gmail.com>
23315
23316 Lexical-binding cleanup.
23317
23318 * arc-mode.el (archive-mode-revert):
23319 * cmuscheme.el (scheme-interactively-start-process):
23320 * custom.el (custom-initialize-delay):
23321 * dnd.el (dnd-open-local-file, dnd-open-remote-url):
23322 * dos-w32.el (direct-print-region-helper, direct-print-region-function):
23323 * emacs-lock.el (emacs-lock-clear-sentinel):
23324 * ezimage.el (defezimage):
23325 * follow.el (follow-avoid-tail-recenter):
23326 * fringe.el (set-fringe-mode-1):
23327 * generic-x.el (bat-generic-mode-compile):
23328 * help-mode.el (help-info-variable, help-do-xref)
23329 (help-mode-revert-buffer):
23330 * help.el (view-emacs-todo):
23331 * iswitchb.el (iswitchb-completion-help):
23332 * jka-compr.el (jka-compr-make-temp-name, jka-compr-load):
23333 * kmacro.el (kmacro-cycle-ring-next, kmacro-cycle-ring-previous)
23334 (kmacro-delete-ring-head, kmacro-bind-to-key, kmacro-view-macro):
23335 * locate.el (locate-update):
23336 * longlines.el (longlines-encode-region)
23337 (longlines-after-change-function):
23338 * outline.el (outline-isearch-open-invisible):
23339 * ps-def.el (declare-function, charset-dimension, char-width)
23340 (encode-char):
23341 * ps-mule.el (ps-mule-plot-string):
23342 * recentf.el (recentf-make-menu-items, recentf-cancel-dialog)
23343 (recentf-edit-list-select, recentf-edit-list-validate)
23344 (recentf-open-files-action):
23345 * rect.el (delete-whitespace-rectangle-line)
23346 (rectangle-number-line-callback):
23347 * register.el (window-configuration-to-register)
23348 (frame-configuration-to-register):
23349 * scroll-bar.el (scroll-bar-mode, toggle-horizontal-scroll-bar):
23350 * select.el (xselect-convert-to-string, xselect-convert-to-length)
23351 (xselect-convert-to-targets, xselect-convert-to-delete)
23352 (xselect-convert-to-filename, xselect-convert-to-charpos)
23353 (xselect-convert-to-lineno, xselect-convert-to-colno)
23354 (xselect-convert-to-os, xselect-convert-to-host)
23355 (xselect-convert-to-user, xselect-convert-to-class)
23356 (xselect-convert-to-name, xselect-convert-to-integer)
23357 (xselect-convert-to-atom, xselect-convert-to-identity):
23358 * subr.el (declare, ignore, process-kill-without-query)
23359 (text-clone-maintain):
23360 * terminal.el (te-get-char, te-tic-sentinel):
23361 * tool-bar.el (tool-bar-make-keymap):
23362 * tooltip.el (tooltip-timeout, tooltip-hide, tooltip-help-tips):
23363 * type-break.el (type-break-mode, type-break-noninteractive-query):
23364 * view.el (View-back-to-mark):
23365 * wid-browse.el (widget-browse-action, widget-browse-widget)
23366 (widget-browse-widgets, widget-browse-sexp):
23367 * widget.el (define-widget-keywords):
23368 * xt-mouse.el (xterm-mouse-translate, turn-off-xterm-mouse-tracking):
23369 Mark unused parameters.
23370
23371 * align.el (align-adjust-col-for-rule): Mark unused parameter.
23372 (align-areas): Remove unused variable `look'.
23373 (align-region): Remove unused variables `real-end' and `pos-list'.
23374
23375 * apropos.el (apropos-score-doc): Remove unused variable `i'.
23376
23377 * bindings.el (mode-line-modified, mode-line-remote):
23378 Mark unused parameters.
23379 (mode-line-mule-info): Mark unused parameter; don't quote `lambda'.
23380
23381 * buff-menu.el (Buffer-menu-revert-function): Mark unused parameters.
23382 (Buffer-menu-mode): Mark unused parameter; don't quote `lambda'.
23383
23384 * comint.el (comint-history-isearch-pop-state)
23385 (comint-postoutput-scroll-to-bottom, comint-truncate-buffer)
23386 (comint-strip-ctrl-m, comint-read-noecho): Mark unused parameters.
23387 (comint-substitute-in-file-name): Doc fix.
23388
23389 * completion.el (cmpl-statistics-block): Mark unused parameter.
23390 (add-completions-from-tags-table, add-completions-from-lisp-buffer)
23391 (save-completions-to-file, load-completions-from-file):
23392 Remove unused local variable `e'.
23393
23394 * composite.el (compose-chars): Remove unused variable `len'.
23395 (lgstring-insert-glyph): Remove unused variable `g'.
23396 (compose-glyph-string): Remove unused variables `ascent',
23397 `descent', `lbearing' and `rbearing'.
23398 (compose-glyph-string-relative): Remove unused variables
23399 `lbearing', `rbearing' and `wadjust'.
23400 (compose-gstring-for-graphic): Remove unused variables `header',
23401 `wadjust', `xoff' and `yoff'. Use `let', not `let*'.
23402 (compose-gstring-for-terminal): Remove unused variables `header'
23403 and `nchars'. Use `let', not `let*'.
23404
23405 * cus-edit.el (Custom-set, Custom-save, custom-reset)
23406 (Custom-reset-current, Custom-reset-saved, Custom-reset-standard)
23407 (Custom-buffer-done, custom-buffer-create-internal)
23408 (custom-browse-visibility-action, custom-browse-group-tag-action)
23409 (custom-browse-variable-tag-action, custom-browse-face-tag-action)
23410 (widget-magic-mouse-down-action, custom-toggle-parent)
23411 (custom-add-parent-links, custom-toggle-hide-variable)
23412 (custom-face-edit-value-visibility-action, custom-face-edit-fix-value)
23413 (custom-toggle-hide-face, face, hook, custom-group-link-action)
23414 (custom-face-menu-create, custom-variable-menu-create, get)
23415 (custom-group-menu-create, Custom-no-edit): Mark unused parameters.
23416 (custom-reset-standard-save-and-update): Remove unused variable `value'.
23417 (customize-apropos): Remove unused variable `tests'.
23418 (custom-group-value-create): Remove unused variable `hidden-p'.
23419 (sort-fold-case): Declare.
23420
23421 * cus-theme.el (custom-reset-standard-faces-list)
23422 (custom-reset-standard-variables-list): Declare.
23423 (customize-create-theme, custom-theme-revert, custom-theme-write)
23424 (custom-theme-choose-mode, customize-themes, custom-theme-save):
23425 Mark unused parameters.
23426
23427 * dabbrev.el (dabbrev-completion): Remove unused variable `init'.
23428
23429 * delim-col.el (delimit-columns-max): Move defvar before first use.
23430
23431 * descr-text.el (describe-char-categories): Don't quote `lambda'.
23432 (describe-char): Don't quote `lambda'. Mark unused parameter.
23433
23434 * desktop.el (desktop-save-buffer-p): Mark unused parameter.
23435 (auto-insert): Declare.
23436 (desktop-restore-file-buffer): Rename desktop-* parameters;
23437 mark unused ones.
23438 (desktop-create-buffer): Rename desktop-* parameters and bind them.
23439 (desktop-buffer): Rename desktop-* parameters.
23440
23441 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
23442 (dframe-reposition-frame-xemacs, dframe-help-echo)
23443 (dframe-hack-buffer-menu, dframe-set-timer, dframe-set-timer-internal):
23444 Mark unused parameters.
23445
23446 * dired-aux.el (backup-extract-version-start, overwrite-query)
23447 (overwrite-backup-query, rename-regexp-query)
23448 (rename-non-directory-query): Declare.
23449 (dired-shell-stuff-it, dired-do-create-files): Mark unused parameters.
23450 (dired-add-entry): Remove unused variable `orig-file-name'.
23451 (dired-copy-file-recursive): Remove unused variable `dirfailed'.
23452 Use parameter PRESERVE-TIME instead of accessing dynamic variable
23453 `dired-copy-preserve-time' directly.
23454 (dired-do-create-files-regexp): Remove unused variable `fn-count'.
23455 (dired-insert-subdir-newpos): Rename unused variable `pos'.
23456
23457 * dired-x.el (dired-omit-size-limit): Move defcustom before first use.
23458 (dired-virtual-revert, dired-make-relative-symlink):
23459 Mark unused parameters.
23460 (manual-program): Declare.
23461 (dired-x-hands-off-my-keys): Rename parameters of lambda expression.
23462 (inode, s, mode, nlink, uid, gid, size, time, name, sym): Declare them,
23463 wrapped in `with-no-warnings' to avoid replacing one warning by another.
23464
23465 * dirtrack.el (dirtrack): Remove unused variable `multi-line'.
23466
23467 * dos-fns.el (dos-8+3-filename): Remove unused variable `i'.
23468
23469 * echistory.el (electric-history-in-progress, Helper-return-blurb):
23470 Declare.
23471
23472 * edmacro.el (edmacro-finish-edit): Remove unused variable `kmacro'.
23473
23474 * electric.el (Electric-command-loop): Rename parameter
23475 INHIBIT-QUIT to INHIBIT-QUITTING and bind `inhibit-quit'.
23476
23477 * expand.el (expand-in-literal): Remove unused variable `here'.
23478
23479 * facemenu.el (facemenu-add-new-color):
23480 Remove unused variable `docstring'.
23481
23482 * faces.el (face-id, make-face-bold, make-face-unbold, make-face-italic)
23483 (make-face-unitalic, make-face-bold-italic): Mark unused parameters.
23484 (face-attr-construct): Mark unused parameter. Doc fix.
23485 (read-color): Remove unused variable `hex-string'.
23486
23487 * files.el (parse-colon-path): Rename argument CD-PATH to SEARCH-PATH.
23488 (locate-dominating-file): Remove unused vars `prev-file' and `user'.
23489 (remote-file-name-inhibit-cache, revert-buffer): Clean up docstrings.
23490 (display-buffer-other-frame): Remove unused variable `old-window'.
23491 (kill-buffer-hook): Declare.
23492 (insert-file-contents-literally, set-auto-mode, risky-local-variable-p):
23493 Mark unused parameters.
23494 (after-find-file): Pass 1 to `auto-save-mode', not t.
23495
23496 * files-x.el (auto-insert): Declare.
23497 (modify-file-local-variable-prop-line): Remove unused variable `val'.
23498
23499 * find-lisp.el (find-lisp-find-dired-internal): Remove unused
23500 variable `buf'. Mark unused parameter.
23501 (find-lisp-insert-directory): Mark unused parameter.
23502
23503 * format.el (format-decode-run-method): Mark unused parameter; doc fix.
23504 (format-encode-region): Remove unused variables `cur-buf' and `result'.
23505 (format-common-tail): Remove, unused.
23506 (format-deannotate-region): Remove unused variable `loc'.
23507 (format-annotate-region): Remove unused variable `p'.
23508 (format-annotate-single-property-change): Remove unused variables
23509 `default' and `tail'.
23510
23511 * forms.el (read-file-filter): Declare.
23512 (forms--iif-hook, forms--revert-buffer): Mark unused parameters.
23513
23514 * frame.el (frame-creation-function-alist): Mark unused parameter.
23515 (frame-geom-spec-cons): Pass FRAME to `frame-geom-value-cons'.
23516
23517 * hilit-chg.el (hilit-chg-cust-fix-changes-face-list, hilit-chg-clear):
23518 Remove unused parameters.
23519 (hilit-chg-set-face-on-change): Remove unused variable `beg-decr'.
23520 (highlight-compare-with-file): Remove unused variable `buf-b-read-only'.
23521
23522 * htmlfontify.el (hfy-default-footer, hfy-decor, hfy-invisible)
23523 (hfy-parse-tags-buffer, hfy-prepare-index-i, hfy-prepare-index)
23524 (hfy-prepare-tag-map): Mark unused parameters.
23525 (htmlfontify-buffer): Use `called-interactively-p'.
23526
23527 * ibuf-ext.el (ibuffer-do-kill-lines, ibuffer-jump-to-buffer)
23528 (ibuffer-copy-filename-as-kill, ibuffer-mark-on-buffer)
23529 (ibuffer-do-occur): Mark unused parameters.
23530 (ibuffer-forward-next-marked): Remove unused variable `curmark'.
23531 (ibuffer-diff-buffer-with-file-1): Remove unused variable `proc'.
23532
23533 * ibuffer.el: Don't quote `lambda'.
23534 (ibuffer-count-marked-lines, ibuffer-count-deletion-lines)
23535 (ibuffer-unmark-all, ibuffer-toggle-marks, ibuffer-redisplay-engine):
23536 Mark unused parameters.
23537
23538 * ido.el (ido-mode, ido-wide-find-dir-or-delete-dir)
23539 (ido-completing-read): Mark unused parameters.
23540 (ido-copy-current-word): Mark unused parameters;
23541 remove unused variable `name'.
23542 (ido-sort-merged-list): Remove unused parameter `dirs'.
23543
23544 * ielm.el (ielm-input-sender): Mark unused parameter.
23545 (ielm-string, ielm-form, ielm-pos, ielm-result, ielm-error-type)
23546 (ielm-output, ielm-wbuf, ielm-pmark): Declare.
23547 (ielm-eval-input): Rename argument IELM-STRING to INPUT-STRING to keep
23548 `ielm-string' as a dynamic variable accessible from the IELM prompt.
23549 Bind `ielm-string' to INPUT-STRING. Remove unused variable `err'.
23550
23551 * image-dired.el (image-dired-display-thumbs): Remove unused
23552 variables `curr-file' and `count'.
23553 (image-dired-remove-tag): Remove unused variable `start'.
23554 (image-dired-tag-files, image-dired-create-thumbs): Remove unused
23555 variable `curr-file'
23556 (image-dired-rotate-original): Remove unused variable `temp-file'.
23557 (image-dired-mouse-select-thumbnail, image-dired-mouse-toggle-mark):
23558 Remove unused variable `file'.
23559 (image-dired-gallery-generate): Remove unused variable `curr'.
23560 (image-dired-dired-edit-comment-and-tags): Mark unused parameters.
23561
23562 * indent.el (tab-to-tab-stop): Remove unused variable `opoint'.
23563
23564 * info-xref.el (info-xref-goto-node-p): Remove unused variable `err'.
23565
23566 * informat.el (texinfo-command-start, texinfo-command-end): Declare.
23567
23568 * isearch.el (minibuffer-history-symbol): Declare.
23569 (isearch-edit-string): Remove unused variable `err'.
23570 (isearch-message-prefix, isearch-message-suffix):
23571 Mark unused parameters.
23572
23573 * ls-lisp.el (ls-lisp-insert-directory): Remove unused variable `fil'.
23574
23575 * macros.el (insert-kbd-macro): Remove unused variable `mods'.
23576
23577 * makesum.el (double-column): Remove unused variable `cnt'.
23578
23579 * misearch.el (multi-isearch-pop-state): Mark unused parameter.
23580 (ido-ignore-item-temp-list): Declare.
23581
23582 * mouse-drag.el (mouse-drag-throw): Remove unused variables
23583 `mouse-delta', `window-last-row', `mouse-col-delta', `window-last-col',
23584 `adjusted-mouse-col-delta' and `adjusted-mouse-delta'.
23585 (mouse-drag-drag): Remove unused variables `mouse-delta' and
23586 `mouse-col-delta'.
23587
23588 * mouse-sel.el (mouse-extend-internal):
23589 Remove unused variable `orig-window-frame'.
23590
23591 * pcomplete.el (pcomplete-args, pcomplete-begins, pcomplete-last)
23592 (pcomplete-index, pcomplete-stub, pcomplete-seen, pcomplete-norm-func):
23593 Move declarations before first use.
23594 (pcomplete-opt): Mark unused parameters; doc fix.
23595
23596 * proced.el (proced-revert): Mark unused parameter.
23597 (proced-send-signal): Remove unused variable `err'.
23598
23599 * ps-print.el (ps-print-preprint-region, ps-print-preprint):
23600 Rename parameter PREFIX-ARG to ARG.
23601 (ps-basic-plot-string, ps-basic-plot-whitespace):
23602 Mark unused parameters.
23603
23604 * replace.el (replace-count): Define.
23605 (occur-revert-function): Mark unused parameters.
23606 (ido-ignore-item-temp-list, isearch-error, isearch-forward)
23607 (isearch-case-fold-search, isearch-string): Declare.
23608 (occur-engine): Rename parameter CASE-FOLD-SEARCH to CASE-FOLD and
23609 bind `case-fold-search'. Remove unused variables `beg' and `end',
23610 and simplify.
23611 (replace-eval-replacement): Rename parameter REPLACE-COUNT to
23612 COUNT and bind `replace-count'.
23613 (replace-loop-through-replacements): Rename parameter REPLACE-COUNT
23614 to COUNT.
23615
23616 * savehist.el (print-readably, print-string-length): Declare.
23617
23618 * shadowfile.el (shadow-expand-cluster-in-file-name):
23619 Remove unused variable `cluster'.
23620 (shadow-copy-file): Remove unused variable `i'.
23621 (shadow-noquery, shadow-clusters, shadow-site-cluster)
23622 (shadow-parse-fullname, shadow-parse-name, shadow-define-cluster)
23623 (shadow-define-literal-group, shadow-define-regexp-group)
23624 (shadow-make-group, shadow-shadows-of): Clean up docstrings.
23625
23626 * shell.el (shell-filter-ctrl-a-ctrl-b): Mark unused parameter.
23627 (shell): Use `called-interactively-p'.
23628 (shell-directory-tracker): Remove unused variable `chdir-failure'.
23629
23630 * simple.el (compilation-context-lines, comint-file-name-quote-list)
23631 (comint-file-name-chars, comint-delimiter-argument-list): Declare.
23632 (delete-backward-char): Remove unused variable `ocol'.
23633 (minibuffer-avoid-prompt, minibuffer-history-isearch-pop-state)
23634 (line-move-1, event-apply-alt-modifier, event-apply-super-modifier)
23635 (event-apply-hyper-modifier, event-apply-shift-modifier)
23636 (event-apply-control-modifier, event-apply-meta-modifier):
23637 Mark unused parameters.
23638 (undo-make-selective-list): Remove duplicate variable `undo-elt'.
23639 (normal-erase-is-backspace-mode): Remove unused variable `old-state'.
23640
23641 * speedbar.el (speedbar-ignored-directory-expressions)
23642 (speedbar-supported-extension-expressions, speedbar-directory-buttons)
23643 (speedbar-find-file, speedbar-dir-follow)
23644 (speedbar-directory-buttons-follow, speedbar-tag-find)
23645 (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
23646 (speedbar-buffers-line-directory, speedbar-buffer-click):
23647 Mark unused parameters.
23648 (speedbar-tag-file): Remove unused variable `mode'.
23649 (speedbar-buffers-tail-notes): Remove unused variable `mod'; simplify.
23650
23651 * strokes.el (strokes-decode-buffer): Remove unused variable `ext'.
23652
23653 * talk.el (talk): Remove unused variable `display'.
23654
23655 * tar-mode.el (tar-subfile-save-buffer): Remove unused variable `name'.
23656 (tar-write-region-annotate): Mark unused parameter.
23657
23658 * time.el (now, time, load, mail, 24-hours, hour, 12-hours, am-pm)
23659 (minutes, seconds, time-zone, day, year, monthname, month, dayname):
23660 Declare them, wrapped in `with-no-warnings' to avoid replacing one
23661 warning by another.
23662
23663 * time-stamp.el (time-stamp-string-preprocess):
23664 Remove unused variable `require-padding'.
23665
23666 * tree-widget.el (widget-glyph-enable): Declare.
23667 (tree-widget-action): Mark unused parameter.
23668
23669 * w32-fns.el (x-get-selection): Mark unused parameter.
23670 (autoload-make-program, generated-autoload-file): Declare.
23671
23672 * wdired.el (wdired-revert): Mark unused parameters.
23673 (wdired-xcase-word): Remove unused variable `err'.
23674
23675 * whitespace.el (whitespace-buffer-changed): Mark unused parameters.
23676 (whitespace-help-scroll): Remove unused variable `data-help'.
23677
23678 * wid-edit.el (widget-mouse-help, widget-overlay-inactive)
23679 (widget-image-insert, widget-after-change, default)
23680 (widget-default-format-handler, widget-default-notify)
23681 (widget-default-prompt-value, widget-info-link-action)
23682 (widget-url-link-action, widget-function-link-action)
23683 (widget-variable-link-action, widget-file-link-action)
23684 (widget-emacs-library-link-action, widget-emacs-commentary-link-action)
23685 (widget-field-prompt-internal, widget-field-action, widget-field-match)
23686 (widget-choice-mouse-down-action, toggle, widget-radio-button-notify)
23687 (widget-insert-button-action, widget-delete-button-action, visibility)
23688 (widget-documentation-link-action, widget-documentation-string-action)
23689 (widget-const-prompt-value, widget-regexp-match, symbol)
23690 (widget-coding-system-prompt-value)
23691 (widget-key-sequence-value-to-external, sexp)
23692 (widget-sexp-value-to-internal, character, vector, cons)
23693 (widget-choice-prompt-value, widget-boolean-prompt-value)
23694 (widget-color--choose-action): Mark unused parameters.
23695 (widget-item-match-inline, widget-choice-match-inline)
23696 (widget-checklist-match, widget-checklist-match-inline)
23697 (widget-group-match): Rename parameter VALUES to VALS.
23698 (widget-field-value-set): Remove unused variable `size'.
23699 (widget-color-action): Remove unused variables `value' and `start'.
23700
23701 * windmove.el (windmove-wrap-loc-for-movement): Remove unused
23702 variable `dir'. Doc fix.
23703 (windmove-find-other-window): Don't pass it.
23704
23705 * window.el (count-windows): Mark unused parameter.
23706 (bw-adjust-window): Remove unused variable `err'.
23707
23708 * woman.el (woman-file-name): Remove unused variable `default'.
23709 (woman-expand-directory-path): Rename parameters WOMAN-MANPATH and
23710 WOMAN-PATH to PATH-DIRS and PATH-REGEXPS, respectively.
23711 (global-font-lock-mode): Declare.
23712 (woman-decode-region): Mark unused parameter.
23713 (woman-get-tab-stop): Rename parameter TAB-STOP-LIST to TAB-STOPS.
23714
23715 * x-dnd.el (x-dnd-default-test-function, x-dnd-handle-old-kde)
23716 (x-dnd-handle-xdnd, x-dnd-handle-motif): Mark unused parameters.
23717 (x-dnd-handle-moz-url): Remove unused variable `title'.
23718 (x-dnd-handle-xdnd): Remove unused variables `x', `y' and `ret-action'.
23719
23720 * xml.el (xml-parse-tag, xml-parse-attlist):
23721 Remove unused variable `pos'.
23722
23723 2011-04-19 Glenn Morris <rgm@gnu.org>
23724
23725 * calendar/cal-tex.el (cal-tex-list-holidays, cal-tex-cursor-month)
23726 (cal-tex-cursor-week, cal-tex-cursor-week2, cal-tex-cursor-week-iso)
23727 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
23728 (cal-tex-cursor-filofax-daily, cal-tex-mini-calendar)
23729 * calendar/cal-html.el (cal-html-insert-minical):
23730 * calendar/diary-lib.el (diary-list-entries-1, diary-list-entries)
23731 (calendar-mark-date-pattern):
23732 Prefix "unused" locals.
23733
23734 * calendar/cal-dst.el (dst-adjust-time): Remove never-implemented
23735 optional argument `style'.
23736
23737 * calendar/appt.el (appt-make-list):
23738 * calendar/cal-china.el (calendar-chinese-date-string):
23739 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits)
23740 (diary-hebrew-yahrzeit):
23741 * calendar/cal-tex.el (cal-tex-last-blank-p, cal-tex-cursor-week2):
23742 * calendar/calendar.el (calendar-generate-window):
23743 * calendar/time-date.el (time-to-days):
23744 Remove unused local variables.
23745
23746 2011-04-18 Chong Yidong <cyd@stupidchicken.com>
23747
23748 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Use a custom
23749 glyphless-char-display table.
23750 (tabulated-list-glyphless-char-display): New var.
23751
23752 2011-04-18 Sam Steingold <sds@gnu.org>
23753
23754 * vc/add-log.el (change-log-font-lock-keywords): Add "Thanks to"
23755 to acknowledgments.
23756
23757 2011-04-17 Glenn Morris <rgm@gnu.org>
23758
23759 * calendar/diary-lib.el (diary-sexp-entry):
23760 * calendar/holidays.el (holiday-sexp):
23761 Set debug-on-error rather than the removed stack-trace-on-error.
23762
23763 2011-04-16 Glenn Morris <rgm@gnu.org>
23764
23765 * progmodes/f90.el: Use lexical-binding.
23766 (f90-get-correct-indent): Remove unnecessary local variable `cont'.
23767
23768 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
23769
23770 * mail/sendmail.el (mail-mode-map): Use completion-at-point.
23771 (mail-mode): Setup mailalias completion here instead.
23772 * mail/mailalias.el: Use lexical-binding.
23773 (pattern, mailalias-done): Declare dynamic.
23774 (mail-completion-at-point-function): New function, from mail-complete.
23775 (mail-complete): Use it.
23776 (mail-completion-expand): New function.
23777 (mail-get-names): Use it.
23778 (mail-directory, mail-directory-process, mail-directory-stream):
23779 Don't use `pattern' for lexically bound arg.
23780
23781 * emacs-lisp/lisp-mode.el (eval-defun-2): Use eval-sexp-add-defvars.
23782
23783 * htmlfontify.el (hfy-etags-cmd): Remove inoperant eval-and-compile.
23784 (hfy-e2x-etags-cmd, hfy-etags-cmd-alist-default)
23785 (hfy-etags-cmd-alist): Don't eval-and-compile any more.
23786
23787 * emacs-lisp/bytecomp.el (byte-temp-output-buffer-show)
23788 (byte-save-window-excursion, byte-temp-output-buffer-setup)
23789 (byte-interactive-p): Define them again, for use when inlining
23790 old code.
23791
23792 2011-04-15 Juanma Barranquero <lekktu@gmail.com>
23793
23794 * loadup.el: Use `string-to-number', not `string-to-int'.
23795
23796 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
23797
23798 * progmodes/gud.el (gud-gdb): Use completion-at-point instead of
23799 gud-gdb-complete-command.
23800 (gud-gdb-completions): New function, from gud-gdb-complete-command.
23801 (gud-gdb-completion-at-point): New function.
23802 (gud-gdb-completions): Remove.
23803
23804 2011-04-14 Michael Albinus <michael.albinus@gmx.de>
23805
23806 * net/tramp-sh.el (tramp-sh-handle-file-attributes): Handle the case
23807 when the scripts fail. Use `tramp-do-file-attributes-with-ls' then.
23808 (tramp-do-copy-or-rename-file-out-of-band): Do not check any longer
23809 whether `executable-find' is bound.
23810
23811 * net/tramp-smb.el (tramp-smb-handle-copy-file): Fix docstring.
23812
23813 2011-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
23814
23815 * minibuffer.el (completion-in-region-mode-predicate)
23816 (completion-in-region-mode--predicate): New vars.
23817 (completion-in-region, completion-in-region--postch)
23818 (completion-in-region-mode): Use them.
23819 (completion--capf-wrapper): Also return the hook function.
23820 (completion-at-point, completion-help-at-point):
23821 Adjust and provide a predicate.
23822
23823 Preserve arg names for advice of subr and lexical functions (bug#8457).
23824 * help-fns.el (help-function-arglist): Consolidate the subr and
23825 new-byte-code cases. Add argument `preserve-names' to extract names
23826 from the docstring when needed.
23827 * emacs-lisp/advice.el (ad-define-subr-args, ad-undefine-subr-args)
23828 (ad-subr-args-defined-p, ad-get-subr-args, ad-subr-arglist): Remove.
23829 (ad-arglist): Use help-function-arglist's new arg.
23830 (ad-definition-type): Use cond.
23831
23832 2011-04-13 Juanma Barranquero <lekktu@gmail.com>
23833
23834 * autorevert.el (auto-revert-handler):
23835 Bind `remote-file-name-inhibit-cache', not `tramp-cache-inhibit-cache',
23836 which was removed in 2010-10-02T13:21:43Z!michael.albinus@gmx.de.
23837 Don't quote lambda.
23838
23839 * image-mode.el (image-transform-set-scale):
23840 Fix change in 2011-04-09T20:28:01Z!cyd@stupidchicken.com.
23841
23842 2011-04-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
23843
23844 * net/network-stream.el (network-stream-open-starttls): Only do
23845 opportunistic STARTTLS upgrades if we have built-in GnuTLS support.
23846 Upgrades via gnutls-cli are too slow to be done opportunistically.
23847
23848 2011-04-12 Juanma Barranquero <lekktu@gmail.com>
23849
23850 * dframe.el (dframe-current-frame): Remove spurious quote.
23851
23852 2011-04-12 Glenn Morris <rgm@gnu.org>
23853
23854 * calendar/cal-tex.el (cal-tex-end-document):
23855 Try to automatically use latin1 input if needed.
23856
23857 * calendar/cal-hebrew.el (diary-hebrew-rosh-hodesh):
23858 Don't try to cons a mark onto an empty element.
23859
23860 2011-04-11 Leo Liu <sdl.web@gmail.com>
23861
23862 * ido.el (ido-buffer-internal): Allow method 'kill for virtual
23863 buffers.
23864 (ido-kill-buffer-at-head): Support killing virtual buffers.
23865
23866 2011-04-10 Chong Yidong <cyd@stupidchicken.com>
23867
23868 * minibuffer.el (completion-show-inline-help): New var.
23869 (completion--do-completion, minibuffer-complete)
23870 (minibuffer-force-complete, minibuffer-complete-word):
23871 Inhibit minibuffer messages if completion-show-inline-help is nil.
23872
23873 * icomplete.el (icomplete-mode): Bind completion-show-inline-help
23874 to avoid interference from inline help (Bug#5849).
23875
23876 2011-04-10 Leo Liu <sdl.web@gmail.com>
23877
23878 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
23879 Fix typo.
23880
23881 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
23882
23883 * image-mode.el (image-toggle-display-image): Signal an error if
23884 not in Image mode.
23885 (image-transform-mode, image-transform-resize)
23886 (image-transform-set-rotation): Doc fix.
23887 (image-transform-set-resize): Delete.
23888 (image-transform-set-scale, image-transform-fit-to-height)
23889 (image-transform-fit-to-width): Handle image-toggle-display-image
23890 and image-transform-resize directly.
23891
23892 2011-04-08 Sho Nakatani <lay.sakura@gmail.com>
23893
23894 * doc-view.el (doc-view-fit-width-to-window)
23895 (doc-view-fit-height-to-window, doc-view-fit-page-to-window):
23896 New functions for fitting the shown image to the Emacs window size.
23897 (doc-view-mode-map): Add bindings for the new functions.
23898
23899 2011-04-08 Juanma Barranquero <lekktu@gmail.com>
23900
23901 * vc/vc-annotate.el (vc-annotate-show-log-revision-at-line):
23902 Fix typo in docstring.
23903
23904 2011-04-08 Eli Zaretskii <eliz@gnu.org>
23905
23906 * files.el (file-size-human-readable): Produce one digit after
23907 decimal, like "ls -lh" does.
23908
23909 * ls-lisp.el (ls-lisp-format-file-size): Allow for 7 characters in
23910 the file size representation.
23911
23912 * simple.el (list-processes): If async subprocesses are not
23913 available, error out with a clear error message.
23914
23915 2011-04-08 Chong Yidong <cyd@stupidchicken.com>
23916
23917 * help.el (help-form-show): New function, to be called from C.
23918 Put help-form output in a buffer named differently than *Help*.
23919
23920 2011-04-08 Eli Zaretskii <eliz@gnu.org>
23921
23922 * files.el (file-size-human-readable): New function.
23923
23924 * ls-lisp.el (ls-lisp-format-file-size): Use it, instead of
23925 computing the representation inline. Don't require `cl'.
23926
23927 2011-04-08 Glenn Morris <rgm@gnu.org>
23928
23929 * man.el (Man-page-header-regexp): Solaris < 2.6 no longer supported.
23930
23931 * net/browse-url.el (browse-url-firefox):
23932 Test system-type, not system-configuration.
23933
23934 * vc/log-edit.el (log-edit-empty-buffer-p): New function.
23935 (log-edit-insert-cvs-template, log-edit-insert-cvs-rcstemplate):
23936 Use log-edit-empty-buffer-p. (Bug#7598)
23937
23938 * net/rlogin.el (rlogin-process-connection-type): Simplify.
23939 (rlogin-mode-map): Initialize in the defvar.
23940 (rlogin): Use ignore-errors.
23941
23942 * replace.el (occur-mode-map): Some fixes for menu items.
23943
23944 2011-04-07 Aaron S. Hawley <aaron.s.hawley@gmail.com>
23945
23946 * play/morse.el (denato-region): Handle varying case. (Bug#8386)
23947
23948 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
23949
23950 * emacs-lisp/cconv.el (cconv--analyse-use): Ignore "ignored" when
23951 issuing unused warnings.
23952
23953 * emacs-lisp/tabulated-list.el (tabulated-list-print): Use lambda
23954 macro directly.
23955
23956 * simple.el: Lisp reimplement of list-processes. Based on an
23957 earlier reimplementation by Leo Liu, but using tabulated-list.el.
23958 (process-menu-mode): New major mode.
23959 (list-processes--refresh, list-processes):
23960 (process-menu-visit-buffer): New functions.
23961
23962 * files.el (save-buffers-kill-emacs): Don't assume any return
23963 value of list-processes, which is undocumented anyway.
23964
23965 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
23966
23967 * emacs-lisp/tabulated-list.el: New file.
23968
23969 * emacs-lisp/package.el: Use Tabulated List mode.
23970 (package-menu-mode-map): Inherit from tabulated-list-mode-map.
23971 (package-menu-mode): Derive from tabulated-list-mode. Set up the
23972 table format using Tabulated List mode variables.
23973 (package--push): New macro, replacing package-list-maybe-add.
23974 (package-menu--generate): Use package--push. Renamed from
23975 package--generate-package-list.
23976 (package-menu-refresh, list-packages): Use it.
23977 (package-menu--print-info): Rename from package-print-package.
23978 Return insertion data instead of inserting it directly.
23979 (package-menu-describe-package, package-menu-execute):
23980 Use tabulated-list-get-id.
23981 (package-menu-mark-delete, package-menu-mark-install)
23982 (package-menu-mark-unmark, package-menu-backup-unmark)
23983 (package-menu-mark-obsolete-for-deletion):
23984 Use tabulated-list-put-tag.
23985 (package--list-packages, package-menu-revert)
23986 (package-menu-get-package, package-menu-get-version)
23987 (package-menu-sort-by-column): Functions deleted.
23988 (package-menu-package-list, package-menu-sort-key): Vars deleted.
23989 (package-menu--status-predicate, package-menu--version-predicate)
23990 (package-menu--name-predicate)
23991 (package-menu--description-predicate): Handle arguments in the
23992 Tabulated List format.
23993 (package-list-packages-no-fetch): Call list-packages.
23994
23995 2011-04-06 Juanma Barranquero <lekktu@gmail.com>
23996
23997 * files.el (after-find-file-from-revert-buffer): Remove variable.
23998 (after-find-file): Don't bind it.
23999 (revert-buffer-in-progress-p): New variable.
24000 (revert-buffer): Bind it.
24001 Pass nil for `after-find-file-from-revert-buffer'.
24002
24003 * saveplace.el (save-place-find-file-hook): Use new variable
24004 `rever-buffer-in-progress-p', not `after-find-file-from-revert-buffer'.
24005
24006 2011-04-06 Glenn Morris <rgm@gnu.org>
24007
24008 * Makefile.in (AUTOGEN_VCS): New variable.
24009 (autoloads): Use $AUTOGEN_VCS.
24010
24011 * calendar/cal-move.el (calendar-scroll-toolkit-scroll): New function.
24012 * calendar/calendar.el (calendar-mode-map):
24013 Check for toolkit scroll bars. (Bug#8305)
24014
24015 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
24016
24017 * minibuffer.el (completion-in-region--postch)
24018 (completion-in-region-mode): Remove unnecessary messages.
24019
24020 2011-04-05 Juanma Barranquero <lekktu@gmail.com>
24021
24022 * font-lock.el (font-lock-refresh-defaults):
24023 Don't bind `hi-lock--inhibit-font-lock-hook', removed in
24024 2010-10-09T04:09:19Z!cyd@stupidchicken.com and 2010-10-11T23:57:49Z!lekktu@gmail.com (2010-10-12).
24025
24026 * info.el (Info-directory-list, Info-read-node-name-2)
24027 (Info-split-parameter-string): Doc fixes.
24028 (Info-virtual-nodes): Reflow docstring.
24029 (Info-find-file, Info-directory-toc-nodes, Info-history-toc-nodes)
24030 (Info-apropos-toc-nodes, info-finder, Info-get-token)
24031 (Info-find-emacs-command-nodes, Info-speedbar-key-map):
24032 Fix typos in docstrings.
24033 (Info-revert-buffer-function, Info-search, Info-isearch-pop-state)
24034 (Info-speedbar-hierarchy-buttons, Info-speedbar-goto-node)
24035 (Info-speedbar-buttons, Info-desktop-buffer-misc-data)
24036 (Info-restore-desktop-buffer): Mark unused parameters.
24037 (Info-directory-find-file, Info-directory-find-node)
24038 (Info-history-find-file, Info-history-find-node, Info-toc-find-node)
24039 (Info-virtual-index-find-node, Info-apropos-find-file)
24040 (Info-apropos-find-node, Info-finder-find-file, Info-finder-find-node):
24041 Mark unused parameters; fix typos in docstrings.
24042 (Info-virtual-index): Remove unused local variable `nodename'.
24043
24044 2011-04-05 Deniz Dogan <deniz@dogan.se>
24045
24046 * net/rcirc.el: Update my e-mail address.
24047 (rcirc-mode-map): Remove M-o binding.
24048
24049 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
24050
24051 * startup.el (command-line): Save the cursor's theme-face
24052 directly, instead of using face-override-spec.
24053
24054 * custom.el (load-theme): Minor optimization in assigning faces.
24055
24056 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
24057
24058 * help-fns.el (describe-variable): Complete all variables having
24059 documentation, including keywords.
24060 http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00112.html
24061
24062 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
24063
24064 Convert to lexical-binding.
24065
24066 * bs.el (bs-refresh, bs-sort-buffer-interns-are-last)
24067 (bs--get-marked-string, bs--get-modified-string)
24068 (bs--get-readonly-string, bs--get-size-string, bs--get-name)
24069 (bs--get-mode-name, bs--get-file-name): Mark unused arguments.
24070 (bs--configuration-name-for-prefix-arg): Rename argument PREFIX-ARG.
24071
24072 * ehelp.el (electric-help-execute-extended)
24073 (electric-help-ctrl-x-prefix):
24074 * hexl.el (hexl-revert-buffer-function):
24075 * linum.el (linum-after-change, linum-after-scroll):
24076 * emacs-lisp/re-builder.el (reb-auto-update): Mark unused arguments.
24077
24078 * help-fns.el (help-describe-category-set): Remove unused ERR variable.
24079
24080 2011-04-04 Daiki Ueno <ueno@unixuser.org>
24081
24082 * epa-dired.el:
24083 * epa-mail.el:
24084 * epa-hook.el:
24085 * epa-file.el:
24086 * epa.el:
24087 * epg.el: Use lexical binding.
24088
24089 2011-04-03 Chong Yidong <cyd@stupidchicken.com>
24090
24091 * dired-aux.el (dired-create-files): Add docstring (Bug#7970).
24092
24093 * textmodes/flyspell.el (flyspell-word): Recognize default
24094 dictionary case for flyspell-mark-duplications-exceptions.
24095 Use regexp matching for languages.
24096 (flyspell-mark-duplications-exceptions): Add "that" and "had" for
24097 default dictionary (Bug#7926).
24098
24099 2011-04-02 Chong Yidong <cyd@stupidchicken.com>
24100
24101 * emacs-lisp/package.el (package--with-work-buffer):
24102 Recognize https URLs.
24103
24104 * net/network-stream.el: Move from gnus/proto-stream.el.
24105 Change prefix to network-stream throughout.
24106 (open-protocol-stream): Merge into open-network-stream, leaving
24107 open-protocol-stream as an alias. Handle nil BUFFER args.
24108
24109 * subr.el (open-network-stream): Move to net/network-stream.el.
24110
24111 2011-04-02 Glenn Morris <rgm@gnu.org>
24112
24113 * find-dired.el (find-exec-terminator): New option.
24114 (find-ls-option): Test for -ls support.
24115 (find-ls-subdir-switches): Test for -b in find-ls-option.
24116 (find-dired, find-grep-dired): Doc fixes.
24117 (find-dired): Use find-exec-terminator.
24118
24119 * find-dired.el (find-ls-option, find-ls-subdir-switches)
24120 (find-grep-options): Do not autoload these defcustoms, remove purecopy.
24121 (find-name-arg): Remove purecopy.
24122
24123 * progmodes/grep.el (grep-find-use-xargs): Doc fix.
24124 (grep-compute-defaults): Check for `-exec COMMAND +' support.
24125 Set grep-find-use-xargs, grep-find-command, and grep-find-template
24126 accordingly. Don't add the null-device if not needed.
24127
24128 * files.el (save-some-buffers): Doc fix.
24129
24130 2011-04-02 Eli Zaretskii <eliz@gnu.org>
24131
24132 * makefile.w32-in (EMACS): Default to ../src/$(BLD)/emacs.exe.
24133
24134 2011-04-01 Juanma Barranquero <lekktu@gmail.com>
24135
24136 * progmodes/idlwave.el (idlwave-one-key-select, idlwave-list-abbrevs):
24137 Use `dolist' rather than `mapcar'.
24138
24139 2011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
24140
24141 Add lexical binding.
24142
24143 * subr.el (apply-partially): Use new closures rather than CL.
24144 (--dolist-tail--, --dotimes-limit--): Don't declare dynamic.
24145 (dolist, dotimes): Use slightly different expansion for lexical code.
24146 (functionp): Move to C.
24147 (letrec): New macro.
24148 (with-wrapper-hook): Use it and apply-partially instead of CL.
24149 (eval-after-load): Preserve lexical-binding.
24150 (save-window-excursion, with-output-to-temp-buffer): Turn them
24151 into macros.
24152
24153 * simple.el (with-wrapper-hook, apply-partially): Move to subr.el.
24154
24155 * help-fns.el (help-split-fundoc): Return nil if there's nothing else
24156 than the arglist.
24157 (help-add-fundoc-usage): Don't add `Not documented'.
24158 (help-function-arglist): Handle closures, subroutines, and new
24159 byte-code-functions.
24160 (help-make-usage): Remove leading underscores.
24161 (describe-function-1): Handle closures.
24162 (describe-variable): Use special-variable-p for completion.
24163
24164 * files.el (lexical-binding): Declare safe.
24165
24166 * emacs-lisp/pcase.el: Don't use destructuring-bind.
24167 (pcase--memoize): Rename from pcase-memoize. Change weakness.
24168 (pcase): Add `let' pattern.
24169 Change memoization so it actually works.
24170 (pcase-mutually-exclusive-predicates): Add byte-code-function-p.
24171 (pcase--u1) <guard, pred>: Fix possible shadowing problem.
24172 <let>: New case.
24173
24174 * emacs-lisp/macroexp.el: Use lexical binding.
24175 (macroexpand-all-1): Check obsolete macros. Expand compiler-macros.
24176 Don't convert ' to #' without checking that it's indeed quoting
24177 a lambda.
24178
24179 * emacs-lisp/lisp-mode.el (eval-last-sexp-1):
24180 Use eval-sexp-add-defvars.
24181 (eval-sexp-add-defvars): New fun.
24182
24183 * emacs-lisp/float-sup.el (pi): Don't declare as dynamically bound.
24184
24185 * emacs-lisp/eieio.el (byte-compile-file-form-defmethod):
24186 Don't autoload.
24187 (eieio-defgeneric-form-primary-only-one): Use `byte-compile' rather
24188 than the internal `byte-compile-lambda'.
24189 (defmethod): Don't hide code under quotes.
24190 (eieio-defmethod): New `code' argument.
24191
24192 * emacs-lisp/eieio-comp.el: Remove.
24193
24194 * emacs-lisp/edebug.el (edebug-eval-defun)
24195 (edebug-eval-top-level-form): Use eval-sexp-add-defvars.
24196 (edebug-toggle): Avoid `eval'.
24197
24198 * emacs-lisp/disass.el (disassemble-internal): Handle new
24199 `closure' objects.
24200 (disassemble-1): Handle new byte codes.
24201
24202 * emacs-lisp/cl.el (pushnew): Silence warning.
24203
24204 * emacs-lisp/cl-macs.el (cl-byte-compile-block)
24205 (cl-byte-compile-throw): Remove.
24206 (cl-block-wrapper, cl-block-throw): Use compiler-macros instead.
24207
24208 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Properly quote CL
24209 closures.
24210
24211 * emacs-lisp/cconv.el: New file.
24212
24213 * emacs-lisp/bytecomp.el: Use lexical binding instead of
24214 a "bytecomp-" prefix. Macroexpand everything as a separate phase.
24215 (byte-compile-initial-macro-environment):
24216 Handle declare-function here.
24217 (byte-compile--lexical-environment): New var.
24218 (byte-stack-ref, byte-stack-set, byte-discardN)
24219 (byte-discardN-preserve-tos): New lap codes.
24220 (byte-interactive-p): Don't use any more.
24221 (byte-compile-push-bytecodes, byte-compile-push-bytecode-const2):
24222 New macros.
24223 (byte-compile-lapcode): Use them and handle new lap codes.
24224 (byte-compile-obsolete): Remove.
24225 (byte-compile-arglist-signature): Handle new byte-code arg"lists".
24226 (byte-compile-arglist-warn): Check late def of inlinable funs.
24227 (byte-compile-cl-warn): Don't silence warnings for compiler-macros
24228 since they should have been expanded by now.
24229 (byte-compile--outbuffer): Rename from bytecomp-outbuffer.
24230 (byte-compile-from-buffer): Remove unused second arg.
24231 (byte-compile-preprocess): New function.
24232 (byte-compile-toplevel-file-form): New function to distinguish
24233 file-form calls from outside from file-form calls from hunk-handlers.
24234 (byte-compile-file-form): Simplify.
24235 (byte-compile-file-form-defsubst): Remove.
24236 (byte-compile-file-form-defmumble): Simplify now that
24237 byte-compile-lambda always returns a byte-code-function.
24238 (byte-compile): Preprocess.
24239 (byte-compile-byte-code-maker, byte-compile-byte-code-unmake):
24240 Remove, not used any more.
24241 (byte-compile-arglist-vars, byte-compile-make-lambda-lexenv)
24242 (byte-compile-make-args-desc): New funs.
24243 (byte-compile-lambda): Handle lexical functions. Always return
24244 a byte-code-function.
24245 (byte-compile-reserved-constants): New var, to make up room for
24246 closed-over variables.
24247 (byte-compile-constants-vector): Obey it.
24248 (byte-compile-top-level): New args `lexenv' and `reserved-csts'.
24249 (byte-compile-macroexpand-declare-function): New function.
24250 (byte-compile-form): Call byte-compile-unfold-bcf to inline immediate
24251 byte-code-functions.
24252 (byte-compile-form): Check obsolescence here.
24253 (byte-compile-inline-lapcode, byte-compile-unfold-bcf): New functions.
24254 (byte-compile-variable-ref): Remove.
24255 (byte-compile-dynamic-variable-op): New fun.
24256 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
24257 (byte-compile-variable-set): New funs.
24258 (byte-compile-discard): Add 2 args.
24259 (byte-compile-stack-ref, byte-compile-stack-set)
24260 (byte-compile-make-closure, byte-compile-get-closed-var): New funs.
24261 (byte-compile-funarg, byte-compile-funarg-2): Remove, handled in
24262 macroexpand-all instead.
24263 (byte-compile-quote-form): Remove.
24264 (byte-compile-push-binding-init, byte-compile-not-lexical-var-p)
24265 (byte-compile-bind, byte-compile-unbind): New funs.
24266 (byte-compile-let): Handle let* and lexical binding.
24267 (byte-compile-let*): Remove.
24268 (byte-compile-catch, byte-compile-unwind-protect)
24269 (byte-compile-track-mouse, byte-compile-condition-case):
24270 Handle a new :fun-body form, used for lexical scoping.
24271 (byte-compile-save-window-excursion)
24272 (byte-compile-with-output-to-temp-buffer): Remove.
24273 (byte-compile-defun): Simplify.
24274 (byte-compile-stack-adjustment): New fun.
24275 (byte-compile-out): Use it.
24276 (byte-compile-refresh-preloaded): Don't reload byte-compiler files.
24277
24278 * emacs-lisp/byte-run.el (make-obsolete): Don't set the `byte-compile'
24279 handler any more.
24280
24281 * emacs-lisp/byte-opt.el: Use lexical binding.
24282 (byte-inline-lapcode): Remove (to bytecomp).
24283 (byte-compile-inline-expand): Pay attention to inlining to/from
24284 lexically bound code.
24285 (byte-compile-unfold-lambda): Don't handle byte-code-functions
24286 any more.
24287 (byte-optimize-form-code-walker): Don't handle save-window-excursion
24288 any more and don't call compiler-macros.
24289 (byte-compile-splice-in-already-compiled-code): Remove.
24290 (byte-code): Don't inline any more.
24291 (disassemble-offset): Receive `bytes' as argument rather than via
24292 dynamic scoping.
24293 (byte-compile-tag-number): Declare before first use.
24294 (byte-decompile-bytecode-1): Handle new byte-codes, don't change
24295 `return' even if make-spliceable.
24296 (byte-compile-side-effect-and-error-free-ops): Add stack-ref, remove
24297 obsolete interactive-p.
24298 (byte-optimize-lapcode): Optimize new lap-codes.
24299 Don't trip up on new form of `byte-constant' lap code.
24300
24301 * emacs-lisp/autoload.el (make-autoload): Don't burp on trivial macros.
24302
24303 * emacs-lisp/advice.el (ad-arglist): Use help-function-arglist.
24304
24305 * custom.el (custom-initialize-default, custom-declare-variable):
24306 Use `defvar'.
24307
24308 * Makefile.in (BIG_STACK_DEPTH, BIG_STACK_OPTS, BYTE_COMPILE_FLAGS):
24309 New variables.
24310 (compile-onefile, .el.elc, compile-calc, recompile): Use them.
24311 (COMPILE_FIRST): Add macroexp and cconv.
24312 * makefile.w32-in: Mirror changes in Makefile.in.
24313
24314 * vc/cvs-status.el:
24315 * vc/diff-mode.el:
24316 * vc/log-edit.el:
24317 * vc/log-view.el:
24318 * vc/smerge-mode.el:
24319 * textmodes/bibtex-style.el:
24320 * textmodes/css-mode.el:
24321 * startup.el:
24322 * uniquify.el:
24323 * minibuffer.el:
24324 * newcomment.el:
24325 * reveal.el:
24326 * server.el:
24327 * mpc.el:
24328 * emacs-lisp/smie.el:
24329 * doc-view.el:
24330 * dired.el:
24331 * abbrev.el: Use lexical binding.
24332
24333 2011-04-01 Eli Zaretskii <eliz@gnu.org>
24334
24335 * info.el (info-display-manual): New function.
24336
24337 2011-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
24338
24339 * loadup.el: Load minibuffer after loaddefs, to use define-minor-mode.
24340
24341 2011-03-31 Tassilo Horn <tassilo@member.fsf.org>
24342
24343 * net/rcirc.el (rcirc-handler-001): Only authenticate, if there's
24344 an entry for that server in rcirc-authinfo. (Bug#8385)
24345
24346 2011-03-31 Glenn Morris <rgm@gnu.org>
24347
24348 * progmodes/f90.el (f90-find-tag-default): Handle multiple `%'.
24349
24350 * generic-x.el (etc-fstab-generic-mode): Add ext4, sysfs keywords.
24351
24352 2011-03-30 Christoph Scholtes <cschol2112@googlemail.com>
24353
24354 * progmodes/python.el (python-default-interpreter)
24355 (python-python-command-args, python-jython-command-args)
24356 (python-which-shell, python-which-args, python-which-bufname)
24357 (python-file-queue, python-comint-output-filter-function)
24358 (python-toggle-shells, python-shell): Remove obsolete defcustoms,
24359 variables and functions.
24360
24361 2011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
24362
24363 * minibuffer.el (completion-table-dynamic): Optimize `boundaries'.
24364 (completion-in-region-mode): New minor mode.
24365 (completion-in-region): Use it.
24366 (completion-in-region--data, completion-in-region-mode-map): New vars.
24367 (completion-in-region--postch): New function.
24368 (completion--capf-misbehave-funs, completion--capf-safe-funs):
24369 New vars.
24370 (completion--capf-wrapper): New function.
24371 (completion-at-point): Use it to track well-behavedness of
24372 hook functions.
24373 (completion-help-at-point): New command.
24374
24375 2011-03-30 Jason Merrill <jason@redhat.com> (tiny change)
24376
24377 * vc/add-log.el (add-change-log-entry): Don't use whitespace
24378 syntax class to search for whitespace on a single line
24379 (Message-ID: <4D938140.4030905@redhat.com>).
24380
24381 2011-03-30 Leo Liu <sdl.web@gmail.com>
24382
24383 * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
24384 New commands.
24385 (edit-abbrevs-map): Bind them here.
24386 (write-abbrev-file): New optinal arg VERBOSE. (Bug#5937)
24387
24388 2011-03-29 Ken Manheimer <ken.manheimer@gmail.com>
24389
24390 * allout.el (allout-hide-by-annotation, allout-flag-region):
24391 Reduce possibility of overlay leakage by making them volatile.
24392
24393 * allout-widgets.el (allout-widgets-tally): Define as nil so the
24394 hash is not shared between buffers. Mode initialization is
24395 responsible for giving it a useful starting value.
24396 (allout-item-span): Reduce possibility of overlay leakage by
24397 making them volatile.
24398 (allout-widgets-count-buttons-in-region): Add diagnostic function
24399 for tracking down button overlay leaks.
24400
24401 2011-03-29 Leo Liu <sdl.web@gmail.com>
24402
24403 * ido.el (ido-read-internal): Use the default history var
24404 minibuffer-history if no HISTORY is specified.
24405
24406 2011-03-28 Brian T. Sniffen <bsniffen@akamai.com> (tiny change)
24407
24408 * net/imap.el (imap-shell-open, imap-process-connection-type):
24409 Use imap-process-connection-type for 'shell' streams as well as
24410 Kerberos, SSL, other subprocesses.
24411
24412 2011-03-28 Leo Liu <sdl.web@gmail.com>
24413
24414 * abbrev.el (abbrev-table-empty-p): New function.
24415 (prepare-abbrev-list-buffer): Place empty abbrev tables after
24416 nonempty ones. (Bug#5937)
24417
24418 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
24419
24420 * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
24421
24422 2011-03-27 Leo Liu <sdl.web@gmail.com>
24423
24424 * ansi-color.el (ansi-color-names-vector): Allow cons cell value
24425 for foreground and background colors.
24426 (ansi-color-make-color-map): Adapt.
24427
24428 2011-03-25 Leo Liu <sdl.web@gmail.com>
24429
24430 * midnight.el (midnight-time-float): Remove. Note it calculates
24431 the microsecond component incorrectly and seconds-to-time does the
24432 same job.
24433 Remove redundant (require 'timer).
24434
24435 * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
24436 (ido-completions): Remove unused arguments. (Bug#8329)
24437
24438 2011-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
24439
24440 * minibuffer.el (completion--flush-all-sorted-completions):
24441 Remove itself from hook.
24442 (completion-at-point): Let the functions perform the completion
24443 immediately and return nil or t.
24444 * comint.el (comint-dynamic-complete-functions): Now identical to
24445 completion-at-point-functions.
24446 (comint-dynamic-list-input-ring): Remove unused var `index'.
24447 (comint--match-partial-filename, comint--unquote&expand-filename):
24448 New funs, split from comint-match-partial-filename.
24449 (comint-dynamic-complete): Use completion-at-point.
24450 (comint-dynamic-complete-filename): Use comint--match-partial-filename.
24451
24452 2011-03-24 Drew Adams <drew.adams@oracle.com>
24453
24454 * thingatpt.el: Support `defun'.
24455
24456 2011-03-23 Leo Liu <sdl.web@gmail.com>
24457
24458 * abbrevlist.el: Move to obsolete/abbrevlist.el.
24459
24460 * help-mode.el (help-mode-finish): Tweak regexp.
24461
24462 2011-03-23 Glenn Morris <rgm@gnu.org>
24463
24464 * eshell/esh-opt.el (eshell-eval-using-options):
24465 Do not bind unused local variable `eshell-option-stub'.
24466
24467 * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
24468
24469 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
24470
24471 * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
24472 keymap variable in `with-no-warnings' to avoid a warning when the
24473 keymap has been already `defconst'ed.
24474
24475 2011-03-22 Leo Liu <sdl.web@gmail.com>
24476
24477 * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
24478 encode all chars in abbrevs; otherwise use emacs-mule or
24479 utf-8-emacs. (Bug#8308)
24480
24481 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
24482
24483 * simple.el (backward-delete-char-untabify):
24484 Avoid warning about using `delete-backward-char'.
24485
24486 * image.el (image-type-file-name-regexps): Make it variable.
24487 `imagemagick-register-types' modifies it, and the user may want
24488 to add new extensions for known image types.
24489 (imagemagick-register-types): Throw error if not using ImageMagick.
24490
24491 2011-03-22 Leo Liu <sdl.web@gmail.com>
24492
24493 * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
24494 located before rcirc-prompt-end-marker.
24495 (rcirc-complete): Error if point is not after rcirc prompt.
24496 Handle the case when table is nil.
24497 (rcirc-user-authenticated): Define to fix compiler warning.
24498
24499 2011-03-22 Chong Yidong <cyd@stupidchicken.com>
24500
24501 * custom.el (custom--inhibit-theme-enable): Make it affect only
24502 custom-theme-set-variables and custom-theme-set-faces.
24503 (provide-theme): Ignore custom--inhibit-theme-enable.
24504 (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
24505 (custom-enabling-themes): Delete variable.
24506 (enable-theme): Accept only loaded themes as arguments.
24507 Ignore the special custom-enabled-themes variable.
24508 (custom-enabled-themes): Forbid themes from setting this.
24509 Eliminate use of custom-enabling-themes.
24510 (custom-push-theme): Quote "changed" custom var entry.
24511
24512 2011-03-21 Leo Liu <sdl.web@gmail.com>
24513
24514 * ido.el (ido-read-internal): Add ido-selected to history instead
24515 of user input.
24516
24517 2011-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
24518
24519 * subr.el (deferred-action-list, deferred-action-function):
24520 Mark obsolete.
24521
24522 2011-03-21 Leo Liu <sdl.web@gmail.com>
24523
24524 * vc/log-view.el: Remove (require 'wid-edit), not needed after the
24525 change on 2011-02-13 (bug#8309).
24526
24527 * minibuffer.el (read-file-name-function): Change default value.
24528 (read-file-name--defaults): Rename from read-file-name-defaults.
24529 (read-file-name-default): Rename from read-file-name.
24530 (read-file-name): Call read-file-name-function.
24531
24532 2011-03-21 Glenn Morris <rgm@gnu.org>
24533
24534 * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
24535 Doc fixes.
24536
24537 2011-03-21 Chong Yidong <cyd@stupidchicken.com>
24538
24539 * cus-theme.el: Add missing provide statement.
24540 (customize-create-theme): Extract theme value correctly.
24541 (custom-theme-visit-theme): Autoload.
24542 (customize-create-theme): Prompt before inserting default faces.
24543
24544 2011-03-20 Jay Belanger <jay.p.belanger@gmail.com>
24545
24546 * calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
24547 units and musical notes.
24548
24549 2011-03-20 Leo Liu <sdl.web@gmail.com>
24550
24551 * ido.el (ido-read-internal): Use completing-read-default.
24552 (ido-completing-read): Fix compatibility with completing-read.
24553
24554 2011-03-20 Christian Ohler <ohler@gnu.org>
24555
24556 * emacs-lisp/ert.el (ert-run-tests-batch): Remove unused variable.
24557 (ert-delete-all-tests): Use `called-interactively-p' rather than
24558 `interactive-p'.
24559 (ert--make-xrefs-region): Respect END.
24560
24561 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
24562
24563 * dired-aux.el (dired-create-directory): Signal an error if the
24564 directory already exists (Bug#8246).
24565
24566 * facemenu.el (list-colors-display): Call list-faces-display
24567 inside with-help-window.
24568 (list-colors-print): Use display property to align the final
24569 column, instead of checking window-width.
24570
24571 2011-03-19 Eli Zaretskii <eliz@gnu.org>
24572
24573 * vc/emerge.el (emerge-metachars): Separate value for ms-dos and
24574 windows-nt systems.
24575 (emerge-protect-metachars): Quote correctly for ms-dos and
24576 windows-nt systems.
24577
24578 2011-03-19 Ralph Schleicher <rs@ralph-schleicher.de>
24579
24580 * info.el (info-initialize): Replace all uses of `:' with
24581 path-separator for compatibility with non-Unix systems.
24582 Cache quoting of path-separator. (Bug#8258)
24583
24584 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
24585
24586 * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
24587 (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
24588 (mouse-avoidance-mode): Fix typos in docstrings.
24589
24590 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
24591
24592 * startup.el (package-subdirectory-regexp): Move from package.el.
24593 Omit \\` and \\', and let callers add them.
24594
24595 * emacs-lisp/package.el (package-strip-version)
24596 (package-load-all-descriptors): Add \\` and \\' to
24597 package-subdirectory-regexp before using it.
24598 (package-untar-buffer): New arg DIR; ensure that file untars only
24599 into this expected directory. Remove superfluous delete-region.
24600 (package-unpack): Caller changed.
24601 (package-tar-file-info): Use package-subdirectory-regexp.
24602
24603 2011-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
24604
24605 * vc/diff-mode.el (diff-mode-map): Shadow problematic bindings from
24606 diff-mode-shared-map (bug#8284).
24607 (diff-mode-shared-map): Re-introduce some bindings that were problematic.
24608
24609 2011-03-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
24610
24611 * calendar/time-date.el (format-seconds): Use assoc instead of
24612 assoc-string, since assoc-string doesn't exist in XEmacs.
24613
24614 2011-03-17 Juanma Barranquero <lekktu@gmail.com>
24615
24616 * custom.el (custom-known-themes): Reflow docstring.
24617 (custom-theme-load-path): Fix typo in docstring.
24618 (load-theme): Fix typo in error message.
24619 (custom-available-themes, custom-variable-theme-value):
24620 Use `let', not `let*'.
24621
24622 2011-03-17 Jay Belanger <jay.p.belanger@gmail.com>
24623
24624 * calc/README: Mention inclusion of musical notes.
24625
24626 * calc/calc-units.el (calc-lu-quant): Rename from
24627 `calc-logunits-quantity'.
24628 (calcFunc-lupquant): Rename from `calcFunc-powerquant'.
24629 (calcFunc-lufquant): Rename from `calcFunc-fieldquant'.
24630 (calc-db): Rename from `calc-dblevel'.
24631 (calcFunc-dbpower): Rename from `calcFunc-dbpowerlevel'.
24632 (calcFunc-dbfield): Rename from `calcFunc-dbfieldlevel'.
24633 (calc-np): Rename from `calc-nplevel'.
24634 (calcFunc-nppower): Rename from `calcFunc-nppowerlevel'.
24635 (calcFunc-npfield): Rename from `calcFunc-npfieldlevel'.
24636 (calc-lu-plus): Rename from `calc-logunits-add'.
24637 (calcFunc-lupadd): Rename from `calcFunc-lupoweradd'.
24638 (calcFunc-lufadd): Rename from `calcFunc-lufieldadd'.
24639 (calc-lu-minus): Rename from `calc-logunits-sub'.
24640 (calcFunc-lupsub): Rename from `calcFunc-lupowersub'.
24641 (calcFunc-lufsub): Rename from `calcFunc-lufieldsub'.
24642 (calc-lu-times): Rename from `calc-logunits-mul'.
24643 (calcFunc-lupmul): Rename from `calcFunc-lupowermul'.
24644 (calcFunc-lufmul): Rename from `calcFunc-lufieldmul'.
24645 (calc-lu-divide): Rename from `calc-logunits-div'.
24646 (calcFunc-lupdiv): Rename from `calcFunc-lupowerdiv'.
24647 (calcFunc-lufdiv): Rename from `calcFunc-lufielddiv'.
24648
24649 * calc/calc-ext.el (calc-init-extensions): Update the names of the
24650 functions being autoloaded.
24651
24652 * calc/calc.el (calc-lu-power-reference): Rename from
24653 `calc-logunits-power-reference'.
24654 (calc-lu-field-reference): Rename from
24655 `calc-logunits-field-reference'.
24656
24657 * calc/calc-help.el (calc-l-prefix-help):
24658 Mention musical note functions.
24659
24660 2011-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
24661
24662 * minibuffer.el (completion-all-sorted-completions):
24663 Use :completion-cycle-penalty text property if present.
24664
24665 2011-03-16 Ken Manheimer <ken.manheimer@gmail.com>
24666
24667 * allout.el (allout-yank-processing): Adjust for new rebulleting
24668 regime so bullet being yanked is used without prompting the user
24669 for a choice.
24670
24671 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
24672
24673 * startup.el (command-line): Warn the user that _emacs is deprecated.
24674
24675 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
24676
24677 * progmodes/delphi.el (delphi-search-path, delphi-indent-level)
24678 (delphi-verbose, delphi-comment-face, delphi-string-face)
24679 (delphi-keyword-face, delphi-ignore-changes, delphi-indent-line)
24680 (delphi-mode-abbrev-table, delphi-debug-buffer, delphi-tab)
24681 (delphi-find-unit, delphi-find-current-xdef, delphi-fill-comment)
24682 (delphi-new-comment-line, delphi-font-lock-defaults)
24683 (delphi-debug-mode-map, delphi-mode-syntax-table, delphi-mode):
24684 Fix typos in docstrings.
24685
24686 2011-03-15 Ken Manheimer <ken.manheimer@gmail.com>
24687
24688 * allout.el (allout-make-topic-prefix, allout-rebullet-heading):
24689 Invert the roles of character and string values for INSTEAD, so a
24690 string is used for the more common case of a defaulting prompt.
24691
24692 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
24693
24694 * progmodes/ruby-mode.el (ruby-backward-sexp):
24695 * progmodes/ebrowse.el (ebrowse-draw-file-member-info):
24696 * play/gamegrid.el (gamegrid-make-face):
24697 * play/bubbles.el (bubbles--grid-width, bubbles--grid-height)
24698 (bubbles--colors, bubbles--shift-mode, bubbles--initialize-images):
24699 * notifications.el (notifications-notify):
24700 * net/xesam.el (xesam-search-engines):
24701 * net/quickurl.el (quickurl-list-insert):
24702 * vc/vc-hg.el (vc-hg-dir-printer): Fix use of case.
24703
24704 2011-03-15 Chong Yidong <cyd@stupidchicken.com>
24705
24706 * startup.el (command-line): Update package subdirectory regexp.
24707
24708 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
24709
24710 * allout.el (allout-abbreviate-flattened-numbering)
24711 (allout-mode-deactivate-hook): Fix up obsolescence "date".
24712
24713 * subr.el (read-char-choice): Only show the cursor after the prompt,
24714 not after the answer.
24715
24716 2011-03-15 Kevin Ryde <user42@zip.com.au>
24717
24718 * help-fns.el (variable-at-point): Skip leading quotes, if any
24719 (bug#8253).
24720
24721 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
24722
24723 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
24724 warning message.
24725
24726 2011-03-14 Michael Albinus <michael.albinus@gmx.de>
24727
24728 * shell.el (shell): When called interactively, offer to change the
24729 shell file name on remote hosts.
24730
24731 2011-03-13 Teodor Zlatanov <tzz@lifelogs.com>
24732
24733 * net/ldap.el (ldap-search-internal): Add `auth-source-search'
24734 integration for LDAP parameters. The host, base, user or binddn,
24735 and secret tokens can be specified in a netrc file, for instance.
24736 This is optional because an `auth-source' parameter must be
24737 specified in the search attributes.
24738
24739 2011-03-13 Juanma Barranquero <lekktu@gmail.com>
24740
24741 * help.el (describe-mode): Link to the mode's definition (bug#8185).
24742
24743 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
24744
24745 * ebuff-menu.el (electric-buffer-menu-mode-map): Move initialization
24746 into declaration. Remove redundant and harmful binding.
24747
24748 2011-03-12 Eli Zaretskii <eliz@gnu.org>
24749
24750 * files.el (file-ownership-preserved-p): Pass `integer' as an
24751 explicit 2nd argument to `file-attributes'. If the file's owner
24752 is the Administrators group on Windows, and the current user is
24753 Administrator, consider that a match.
24754
24755 * server.el (server-ensure-safe-dir): Consider server directory
24756 safe on MS-Windows if its owner is the Administrators group while
24757 the current Emacs user is Administrator. Use `=' to compare
24758 numerical UIDs, since they could be integers or floats.
24759
24760 2011-03-12 Juanma Barranquero <lekktu@gmail.com>
24761
24762 * vc/vc-bzr.el (vc-bzr-state): Handle bzr 2.3.0 (follow-up to bug#8170).
24763
24764 2011-03-12 Michael Albinus <michael.albinus@gmx.de>
24765
24766 Sync with Tramp 2.2.1.
24767
24768 * net/tramp-sh.el (tramp-methods): Exchange "%k" marker with options.
24769
24770 * net/trampver.el: Update release number.
24771
24772 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
24773
24774 * progmodes/compile.el (compilation--previous-directory): Fix up
24775 various nil/dead-marker mismatches (bug#8014).
24776 (compilation-directory-properties, compilation-error-properties):
24777 Don't call it at a position past the one we're about to change.
24778
24779 * emacs-lisp/bytecomp.el (byte-compile-make-obsolete-variable):
24780 Disable obsolescence warnings in the file that declares it.
24781
24782 2011-03-11 Ken Manheimer <ken.manheimer@gmail.com>
24783
24784 * allout-widgets.el (allout-widgets-tally):
24785 Initialize allout-widgets-tally as a hash table rather than nil to
24786 prevent mode-line redisplay warnings. Also, clarify the module
24787 description and fix a comment typo.
24788
24789 2011-03-11 Juanma Barranquero <lekktu@gmail.com>
24790
24791 * help-fns.el (describe-variable): Don't complete keywords.
24792 Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
24793
24794 2011-03-10 Chong Yidong <cyd@stupidchicken.com>
24795
24796 * emacs-lisp/package.el (package-version-join): Impose a standard
24797 string representation for pre/alpha/beta version lists.
24798 (package-unpack-single): Standardize the directory name by passing
24799 it through package-version-join.
24800 (package-strip-rcs-id): Accept any version string that does not
24801 signal an error in version-to-list.
24802
24803 2011-03-10 Michael Albinus <michael.albinus@gmx.de>
24804
24805 * simple.el (delete-trailing-whitespace): Return nil for the
24806 benefit of `write-file-functions'.
24807
24808 2011-03-10 Glenn Morris <rgm@gnu.org>
24809
24810 * vc/vc-hg.el (vc-hg-pull, vc-hg-merge-branch): Use vc-hg-program.
24811
24812 * vc/vc-git.el (vc-git-program): New option.
24813 (vc-git-branches, vc-git-pull, vc-git-merge-branch, vc-git-command)
24814 (vc-git--call): Use it.
24815
24816 * eshell/esh-util.el (eshell-condition-case): Doc fix.
24817
24818 * cus-edit.el (Custom-newline): If no button at point, look
24819 for a subgroup button at start-of-line. (Bug#2298)
24820
24821 * mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
24822
24823 2011-03-10 Julien Danjou <julien@danjou.info>
24824
24825 * avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if
24826 `cursor-type' is nil.
24827
24828 2011-03-09 Jay Belanger <jay.p.belanger@gmail.com>
24829
24830 * calc/calc.el (calc-mode-map): Don't bind "C-_" to `calc-missing-key'.
24831
24832 2011-03-09 Ken Manheimer <ken.manheimer@gmail.com>
24833
24834 * allout.el: Change so yank of distinctive-bullet items
24835 preserves the existing header prefix, rebulleting it if necessary,
24836 rather than replacing it. This is necessary for proper operation
24837 of cooperative addons like allout-widgets.
24838 (allout-make-topic-prefix, allout-rebullet-heading):
24839 Change SOLICIT arg to INSTEAD, and interpret additionally a string
24840 value as alternate bullet to be used, instead of prompting the user
24841 for a bullet character.
24842
24843 2011-03-09 Michael Albinus <michael.albinus@gmx.de>
24844
24845 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
24846 Do not use `tramp-file-name-port', because this returns also
24847 `tramp-default-port'.
24848
24849 2011-03-09 Deniz Dogan <deniz.a.m.dogan@gmail.com>
24850
24851 * net/rcirc.el (rcirc-handler-001): Remove useless
24852 with-rcirc-process-buffer.
24853 (rcirc-check-auth-status): Swap arguments to string-match.
24854
24855 2011-03-09 Glenn Morris <rgm@gnu.org>
24856
24857 * shell.el (shell-mode):
24858 Set comint-input-ring-size from HISTSIZE. (Bug#7889)
24859
24860 * progmodes/gdb-mi.el (gdb): Improve 2010-12-08 change.
24861 Check for GDBHISTFILE, HISTSIZE, etc. (Bug#7889)
24862
24863 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
24864
24865 * emacs-lisp/package.el (package-refresh-contents)
24866 (package-menu-execute): Use condition-case-no-debug.
24867
24868 2011-03-08 Michael Albinus <michael.albinus@gmx.de>
24869
24870 * simple.el (shell-command-to-string): Use `process-file'.
24871
24872 * emacs-lisp/package.el (package-tar-file-info): Handle also
24873 remote files.
24874
24875 * emacs-lisp/package-x.el (package-upload-buffer-internal):
24876 Use `equal' for upload base check.
24877
24878 2011-03-08 Arni Magnusson <arnima@hafro.is> (tiny change)
24879
24880 * textmodes/texinfo.el (texinfo-environments):
24881 Add deftypecv, deftypeivar, deftypemethod, deftypeop, html. (Bug#2783)
24882
24883 2011-03-08 Glenn Morris <rgm@gnu.org>
24884
24885 * cus-start.el (cursor-in-non-selected-windows):
24886 Fix :set quoting oddness. (Bug#8192)
24887
24888 * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
24889 in some setf expressions. (Bug#2159)
24890
24891 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
24892
24893 * custom.el (custom-available-themes): Return themes in
24894 alphabetical order.
24895
24896 See ChangeLog.15 for earlier changes.
24897
24898 ;; Local Variables:
24899 ;; coding: utf-8
24900 ;; End:
24901
24902 Copyright (C) 2011-2013 Free Software Foundation, Inc.
24903
24904 This file is part of GNU Emacs.
24905
24906 GNU Emacs is free software: you can redistribute it and/or modify
24907 it under the terms of the GNU General Public License as published by
24908 the Free Software Foundation, either version 3 of the License, or
24909 (at your option) any later version.
24910
24911 GNU Emacs is distributed in the hope that it will be useful,
24912 but WITHOUT ANY WARRANTY; without even the implied warranty of
24913 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24914 GNU General Public License for more details.
24915
24916 You should have received a copy of the GNU General Public License
24917 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.