lisp/textmodes/bibtex.el (bibtex-url): Doc fix
[bpt/emacs.git] / lisp / ChangeLog
1 2013-04-13 Roland Winkler <winkler@gnu.org>
2
3 * textmodes/bibtex.el (bibtex-url): Doc fix.
4
5 2013-04-13 Roland Winkler <winkler@gnu.org>
6
7 * textmodes/bibtex.el (bibtex-initialize): If the current buffer
8 does not visit a BibTeX file, exclude it from the list of buffers
9 returned by bibtex-initialize.
10
11 2013-04-13 Stephen Berman <stephen.berman@gmx.net>
12
13 * window.el (split-window): Remove interactive form, since as a
14 command this function is a special case of split-window-below.
15 Correct doc string.
16
17 2013-04-12 Roland Winkler <winkler@gnu.org>
18
19 * faces.el (read-face-name): Do not override value of arg default.
20 Allow single faces and strings as default values. Remove those
21 elements from return value that are not faces.
22 (describe-face): Simplify.
23 (face-at-point): New optional args thing and multiple so that this
24 function can provide the same functionality previously provided by
25 read-face-name.
26 (make-face-bold, make-face-unbold, make-face-italic)
27 (make-face-unitalic, make-face-bold-italic, invert-face)
28 (modify-face, read-face-and-attribute): Use face-at-point.
29
30 * cus-edit.el (customize-face, customize-face-other-window)
31 * cus-theme.el (custom-theme-add-face)
32 * face-remap.el (buffer-face-set)
33 * facemenu.el (facemenu-set-face): Use face-at-point.
34
35 2013-04-12 Michael Albinus <michael.albinus@gmx.de>
36
37 * info.el (Info-file-list-for-emacs): Add "tramp" and "dbus".
38
39 2013-04-10 Tassilo Horn <tsdh@gnu.org>
40
41 * textmodes/reftex-cite.el (reftex-parse-bibtex-entry): Don't cut
42 off leading { and trailing } from field values.
43
44 2013-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
45
46 * emacs-lisp/timer.el (timer--check): New function.
47 (timer--time, timer-set-function, timer-event-handler): Use it.
48 (timer-set-idle-time): Simplify.
49 (timer--activate): CSE.
50 (timer-event-handler): Give more info in error message.
51 (internal-timer-start-idle): New function, moved from C.
52
53 * mpc.el (mpc-proc): Add `restart' argument.
54 (mpc-proc-cmd): Use it.
55 (mpc--status-timer-run): Also catch signals from `mpc-proc'.
56 (mpc-status-buffer-show, mpc-tagbrowser-dir-toggle): Call `mpc-proc'
57 less often.
58
59 2013-04-10 Masatake YAMATO <yamato@redhat.com>
60
61 * progmodes/sh-script.el: Implement `sh-mode' own
62 `add-log-current-defun-function' (bug#14112).
63 (sh-current-defun-name): New function.
64 (sh-mode): Use the function.
65
66 2013-04-09 Bastien Guerry <bzg@gnu.org>
67
68 * simple.el (choose-completion-string): Fix docstring (bug#14163).
69
70 2013-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
71
72 * emacs-lisp/edebug.el (edebug-mode): Fix typo (bug#14144).
73
74 * emacs-lisp/timer.el (timer-event-handler): Don't retrigger a canceled
75 timer (bug#14156).
76
77 2013-04-07 Nic Ferrier <nferrier@ferrier.me.uk>
78
79 * emacs-lisp/ert.el (should, should-not, should-error): Add edebug
80 declaration.
81
82 2013-04-07 Leo Liu <sdl.web@gmail.com>
83
84 * pcmpl-x.el: New file.
85
86 2013-04-06 Dmitry Antipov <dmantipov@yandex.ru>
87
88 Do not set x-display-name until X connection is established.
89 This is needed to prevent from weird situation described at
90 <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00212.html>.
91 * frame.el (make-frame): Set x-display-name after call to
92 window system initialization function, not before.
93 * term/x-win.el (x-initialize-window-system): Add optional
94 display argument and use it.
95 * term/w32-win.el (w32-initialize-window-system):
96 * term/ns-win.el (ns-initialize-window-system):
97 * term/pc-win.el (msdos-initialize-window-system):
98 Add compatible optional display argument.
99
100 2013-04-06 Eli Zaretskii <eliz@gnu.org>
101
102 * files.el (normal-backup-enable-predicate): On MS-Windows and
103 MS-DOS compare truenames of temporary-file-directory and of the
104 file, so that 8+3 aliases (usually found in $TEMP on Windows)
105 don't fail comparison by compare-strings. Also, compare file
106 names case-insensitively on MS-Windows and MS-DOS.
107
108 2013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
109
110 * emacs-lisp/package.el (package-compute-transaction): Fix last fix.
111 Suggested by Donald Curtis <dcurtis@coe.edu> (bug#14082).
112
113 2013-04-05 Dmitry Gutov <dgutov@yandex.ru>
114
115 * whitespace.el (whitespace-color-on, whitespace-color-off):
116 Only call `font-lock-fontify-buffer' when `font-lock-mode' is on.
117
118 2013-04-05 Jacek Chrząszcz <chrzaszcz@mimuw.edu.pl> (tiny change)
119
120 * ispell.el (ispell-set-spellchecker-params):
121 Really set `ispell-args' for all equivs.
122
123 2013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
124
125 * ido.el (ido-completions): Use extra elements of ido-decorations
126 (bug#14143).
127 (ido-decorations): Update docstring.
128
129 2013-04-05 Michael Albinus <michael.albinus@gmx.de>
130
131 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
132 (global-auto-revert-mode): Let-bind `auto-revert-use-notify' to
133 nil during initialization, in order not to miss changes since the
134 file was opened. (Bug#14140)
135
136 2013-04-05 Leo Liu <sdl.web@gmail.com>
137
138 * kmacro.el (kmacro-call-macro): Fix bug#14135.
139
140 2013-04-05 Jay Belanger <jay.p.belanger@gmail.com>
141
142 * calc/calc-units.el (calc-convert-units): Rewrite conditional.
143
144 2013-04-04 Glenn Morris <rgm@gnu.org>
145
146 * electric.el (electric-pair-inhibit-predicate): Add :version.
147
148 2013-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
149
150 * emacs-lisp/package.el (package-compute-transaction): Fix ordering
151 when a package is required several times (bug#14082).
152
153 2013-04-04 Roland Winkler <winkler@gnu.org>
154
155 * faces.el (read-face-name): Behave as promised by the docstring.
156 Assume that arg default is a list of faces.
157 (describe-face): Call read-face-name with list of default faces.
158
159 2013-04-04 Thierry Volpiatto <thierry.volpiatto@gmail.com>
160
161 * bookmark.el: Fix deletion of bookmarks (bug#13972).
162 (bookmark-bmenu-list): Don't toggle filenames if alist is empty.
163 (bookmark-bmenu-execute-deletions): Only skip first line if it's
164 the header.
165 (bookmark-exit-hook-internal): Save even if list is empty.
166
167 2013-04-04 Yann Hodique <yann.hodique@gmail.com> (tiny change)
168
169 * emacs-lisp/package.el (package-pinned-packages): New var.
170 (package--add-to-archive-contents): Obey it (bug#14118).
171
172 2013-04-03 Alan Mackenzie <acm@muc.de>
173
174 Handle `parse-partial-sexp' landing inside a comment opener
175 (Bug#13244). Also adapt to the new values of element 7 of a parse
176 state.
177
178 * progmodes/cc-engine.el (c-state-pp-to-literal): New optional
179 parameter `not-in-delimiter'. Handle being inside comment opener.
180 (c-invalidate-state-cache-1): Reckon with an extra "invalid"
181 character in case we're typing a '*' after a '/'.
182 (c-literal-limits): Handle the awkward "not-in-delimiter" cond arm
183 instead by passing the parameter to c-state-pp-to-literal.
184
185 * progmodes/cc-fonts.el (c-font-lock-doc-comments): New handling
186 for elt. 7 of a parse state.
187
188 2013-04-01 Paul Eggert <eggert@cs.ucla.edu>
189
190 Use UTF-8 for most files with non-ASCII characters (Bug#13936).
191 * international/latin1-disp.el, international/mule-util.el:
192 * language/cyril-util.el, language/european.el, language/ind-util.el:
193 * language/lao-util.el, language/thai.el, language/tibet-util.el:
194 * language/tibetan.el, language/viet-util.el:
195 Switch from iso-2022-7bit to utf-8 or (if needed) utf-8-emacs.
196
197 2013-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
198
199 * electric.el (electric-pair-inhibit-predicate): New var (bug#14000).
200 (electric-pair-post-self-insert-function): Use it.
201 (electric-pair-default-inhibit): New function, extracted from
202 electric-pair-post-self-insert-function.
203
204 2013-03-31 Roland Winkler <winkler@gnu.org>
205
206 * emacs-lisp/crm.el (completing-read-multiple): Doc fix.
207
208 2013-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
209
210 * hi-lock.el (hi-lock-mode): Cleanup after revert-buffer (bug#13891).
211
212 2013-03-30 Fabián Ezequiel Gallina <fabian@anue.biz>
213
214 Un-indent after "pass" and "return" statements (Bug#13888)
215 * progmodes/python.el (python-indent-block-enders): New var.
216 (python-indent-calculate-indentation): Use it.
217
218 2013-03-30 Michael Albinus <michael.albinus@gmx.de>
219
220 * net/tramp.el (tramp-drop-volume-letter): Make it an ordinary
221 defun. Defining it as defalias could introduce too eager
222 byte-compiler optimization. (Bug#14030)
223
224 2013-03-30 Chong Yidong <cyd@gnu.org>
225
226 * iswitchb.el (iswitchb-read-buffer): Fix typo.
227
228 2013-03-30 Leo Liu <sdl.web@gmail.com>
229
230 * kmacro.el (kmacro-call-macro): Add optional arg MACRO.
231 (kmacro-execute-from-register): Pass the keyboard macro to
232 kmacro-call-macro or repeating won't work correctly.
233
234 2013-03-30 Teodor Zlatanov <tzz@lifelogs.com>
235
236 * progmodes/subword.el: Back to using `forward-symbol'.
237
238 * subr.el (forward-whitespace, forward-symbol)
239 (forward-same-syntax): Move from thingatpt.el.
240
241 2013-03-29 Leo Liu <sdl.web@gmail.com>
242
243 * kmacro.el (kmacro-to-register): New command.
244 (kmacro-execute-from-register): New function.
245 (kmacro-keymap): Bind to 'x'. (Bug#14071)
246
247 2013-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
248
249 * mpc.el: Use defvar-local and setq-local.
250 (mpc--proc-connect): Connection failures are not bugs.
251 (mpc-mode-map): `follow-link' only applies to the buffer's content.
252 (mpc-volume-map): Bind to the up-events.
253
254 2013-03-29 Teodor Zlatanov <tzz@lifelogs.com>
255
256 * progmodes/subword.el (superword-mode): Use `forward-sexp'
257 instead of `forward-symbol'.
258
259 2013-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
260
261 * emacs-lisp/edebug.el (edebug-mode): Make it a minor mode.
262 (edebug--recursive-edit): Use it.
263 (edebug-kill-buffer): Don't let-bind kill-buffer-hook.
264 (edebug-temp-display-freq-count): Don't let-bind buffer-read-only.
265
266 2013-03-28 Leo Liu <sdl.web@gmail.com>
267
268 * vc/vc-bzr.el (vc-bzr-revert): Don't backup. (Bug#14066)
269
270 2013-03-27 Eli Zaretskii <eliz@gnu.org>
271
272 * facemenu.el (list-colors-callback): New defvar.
273 (list-colors-redisplay): New function.
274 (list-colors-display): Install list-colors-redisplay as the
275 revert-buffer-function. (Bug#14063)
276
277 2013-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
278
279 * minibuffer.el (completion-pcm--merge-completions): Make sure prefixes
280 and suffixes don't overlap (bug#14061).
281
282 * case-table.el: Use lexical-binding.
283 (case-table-get-table): New function.
284 (get-upcase-table): Use it. Mark as obsolete. Adjust callers.
285
286 2013-03-27 Teodor Zlatanov <tzz@lifelogs.com>
287
288 * progmodes/subword.el: Add `superword-mode' to do word motion
289 over symbol_words (parallels and leverages `subword-mode' which
290 does word motion inside MixedCaseWords).
291
292 2013-03-27 Aidan Gauland <aidalgol@no8wireless.co.nz>
293
294 * eshell/em-unix.el: Move su and sudo to...
295 * eshell/em-tramp.el: ...Eshell tramp module
296
297 2013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
298
299 * desktop.el (desktop--v2s): Rename from desktop-internal-v2s.
300 Change return value to be a sexp. Delay `get-buffer' to after
301 restoring the desktop (bug#13951).
302
303 2013-03-26 Leo Liu <sdl.web@gmail.com>
304
305 * register.el: Move semantic tag handling back to
306 cedet/semantic/senator.el. (Bug#14052)
307
308 2013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
309
310 * eshell/em-prompt.el (eshell-emit-prompt): Make sure we can't insert
311 into the prompt either (bug#13963).
312
313 2013-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
314
315 * font-lock.el (lisp-font-lock-keywords-2): Don't highlight the "error"
316 part of "(error-foo)".
317
318 2013-03-24 Juri Linkov <juri@jurta.org>
319
320 * replace.el (list-matching-lines-prefix-face): New defcustom.
321 (occur-1): Pass `list-matching-lines-prefix-face' to the function
322 `occur-engine' if `face-differs-from-default-p' returns t.
323 (occur-engine): Add `,' inside backquote construct to evaluate
324 `prefix-face'. Propertize the prefix with the `prefix-face' face.
325 Pass `prefix-face' to the functions `occur-context-lines' and
326 `occur-engine-add-prefix'.
327 (occur-engine-add-prefix, occur-context-lines): Add optional arg
328 `prefix-face' and propertize the prefix with `prefix-face'.
329 (Bug#14017)
330
331 2013-03-24 Leo Liu <sdl.web@gmail.com>
332
333 * nxml/rng-valid.el (rng-validate-while-idle)
334 (rng-validate-quick-while-idle): Guard against deleted buffer.
335 (Bug#13999)
336
337 * emacs-lisp/edebug.el (edebug-mode): Make sure edebug-kill-buffer
338 is the last entry in kill-buffer-hook.
339
340 * files.el (kill-buffer-hook): Doc fix.
341
342 2013-03-23 Dmitry Gutov <dgutov@yandex.ru>
343
344 * emacs-lisp/lisp-mode.el (emacs-lisp-docstring-fill-column):
345 Make it safe-local.
346
347 * vc/diff-mode.el (diff-mode-shared-map): Unbind "/" (Bug#14034).
348
349 2013-03-23 Leo Liu <sdl.web@gmail.com>
350
351 * nxml/nxml-util.el (nxml-with-unmodifying-text-property-changes):
352 Remove.
353
354 * nxml/rng-valid.el (rng-validate-mode)
355 (rng-after-change-function, rng-do-some-validation):
356 * nxml/rng-maint.el (rng-validate-buffer):
357 * nxml/nxml-rap.el (nxml-tokenize-forward, nxml-ensure-scan-up-to-date):
358 * nxml/nxml-outln.el (nxml-show-all, nxml-set-outline-state):
359 * nxml/nxml-mode.el (nxml-mode, nxml-degrade, nxml-after-change)
360 (nxml-extend-after-change-region): Use with-silent-modifications.
361
362 * nxml/rng-nxml.el (rng-set-state-after): Do not let-bind
363 timer-idle-list.
364
365 * nxml/rng-valid.el (rng-validate-while-idle-continue-p)
366 (rng-next-error-1, rng-previous-error-1): Do not let-bind
367 timer-idle-list. (Bug#13999)
368
369 2013-03-23 Juri Linkov <juri@jurta.org>
370
371 * info.el (info-index-match): New face.
372 (Info-index, Info-apropos-matches): Add a nested subgroup to the
373 main pattern and add text properties with the new face to matches
374 in index entries relative to the beginning of the index entry.
375 (Bug#14015)
376
377 2013-03-21 Eric Ludlam <zappo@gnu.org>
378
379 * eieio/eieio-datadebug.el (data-debug/eieio-insert-slots):
380 Inhibit read only while inserting objects.
381
382 2013-03-22 Teodor Zlatanov <tzz@lifelogs.com>
383
384 * progmodes/cfengine.el: Update docs to mention
385 `cfengine-auto-mode'. Use \_> and \_< instead of \> and \< for
386 symbol motion. Remove "_" from the word syntax.
387
388 2013-03-21 Teodor Zlatanov <tzz@lifelogs.com>
389
390 * progmodes/cfengine.el (cfengine-common-syntax): Add "_" to word
391 syntax for both `cfengine2-mode' and `cfengine3-mode'.
392
393 2013-03-20 Juri Linkov <juri@jurta.org>
394
395 * info.el (Info-next-reference-or-link)
396 (Info-prev-reference-or-link): New functions.
397 (Info-next-reference, Info-prev-reference): Use them.
398 (Info-try-follow-nearest-node): Handle footnote navigation.
399 (Info-fontify-node): Fontify footnotes. (Bug#13989)
400
401 2013-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
402
403 * subr.el (posn-point, posn-string): Fix it here instead (bug#13979).
404 * mouse.el (mouse-on-link-p): Undo scroll-bar fix.
405
406 2013-03-20 Paul Eggert <eggert@cs.ucla.edu>
407
408 Suppress unnecessary non-ASCII chatter during build process.
409 * international/ja-dic-cnv.el (skkdic-collect-okuri-nasi)
410 (batch-skkdic-convert): Suppress most of the chatter.
411 It's not needed so much now that machines are faster,
412 and its non-ASCII component was confusing; see Dmitry Gutov in
413 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00508.html>.
414
415 2013-03-20 Leo Liu <sdl.web@gmail.com>
416
417 * ido.el (ido-chop): Fix bug#10994.
418
419 2013-03-19 Dmitry Gutov <dgutov@yandex.ru>
420
421 * whitespace.el (whitespace-font-lock, whitespace-font-lock-mode):
422 Remove vars.
423 (whitespace-color-on, whitespace-color-off):
424 Use `font-lock-fontify-buffer' (Bug#13817).
425
426 2013-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
427
428 * mouse.el (mouse--down-1-maybe-follows-link): Fix follow-link
429 remapping in mode-line.
430 (mouse-on-link-p): Also check [mode-line follow-link] bindings.
431
432 2013-03-19 Dmitry Gutov <dgutov@yandex.ru>
433
434 * whitespace.el (whitespace-color-on): Use `prepend' OVERRIDE
435 value for `whitespace-line' face (Bug#13875).
436 (whitespace-font-lock-keywords): Change description.
437 (whitespace-color-on): Don't save `font-lock-keywords' value, save
438 the constructed keywords instead.
439 (whitespace-color-off): Use `font-lock-remove-keywords' (Bug#13817).
440
441 2013-03-19 Leo Liu <sdl.web@gmail.com>
442
443 * progmodes/compile.el (compilation-display-error): New command.
444 (compilation-mode-map, compilation-minor-mode-map): Bind it to
445 C-o. (Bug#13992)
446
447 2013-03-18 Paul Eggert <eggert@cs.ucla.edu>
448
449 * term/x-win.el (x-keysym-pair): Add a Fixme (Bug#13936).
450
451 2013-03-18 Jan Djärv <jan.h.d@swipnet.se>
452
453 * mouse.el (mouse-on-link-p): Check for scroll bar (Bug#13979).
454
455 2013-03-18 Michael Albinus <michael.albinus@gmx.de>
456
457 * net/tramp-compat.el (tramp-compat-user-error): New defun.
458
459 * net/tramp-adb.el (tramp-adb-handle-shell-command):
460 * net/tramp-gvfs.el (top):
461 * net/tramp.el (tramp-find-method, tramp-dissect-file-name)
462 (tramp-handle-shell-command): Use it.
463 (tramp-dissect-file-name): Raise an error when hostname is a
464 method name, and neither method nor user is specified.
465
466 * net/trampver.el: Update release number.
467
468 2013-03-18 Leo Liu <sdl.web@gmail.com>
469
470 Make sure eldoc can be turned off properly.
471 * emacs-lisp/eldoc.el (eldoc-schedule-timer): Conditionalize on
472 eldoc-mode.
473 (eldoc-display-message-p): Revert last change.
474 (eldoc-display-message-no-interference-p)
475 (eldoc-print-current-symbol-info): Tweak.
476
477 2013-03-18 Tassilo Horn <tsdh@gnu.org>
478
479 * doc-view.el (doc-view-new-window-function): Check the new window
480 overlay's display property instead the char property of the
481 buffer's first char. Use `with-selected-window' instead of
482 `save-window-excursion' with `select-window'.
483 (doc-view-document->bitmap): Check the current doc-view overlay's
484 display property instead the char property of the buffer's first char.
485
486 2013-03-18 Paul Eggert <eggert@cs.ucla.edu>
487
488 Automate the build of ja-dic.el (Bug#13984).
489 * international/ja-dic-cnv.el (skkdic-convert): Remove the annotations
490 from the input, rather than assume that it's been done for us by the
491 SKK script unannotate.awk. Switch ja-dic.el to UTF-8. Don't put
492 the current date into a ja-dic.el comment, as that complicates
493 regression testing.
494
495 2013-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
496
497 * whitespace.el: Fix double evaluation.
498 (whitespace-space, whitespace-hspace, whitespace-tab)
499 (whitespace-newline, whitespace-trailing, whitespace-line)
500 (whitespace-space-before-tab, whitespace-indentation)
501 (whitespace-empty, whitespace-space-after-tab): Turn defcustoms into
502 obsolete defvars.
503 (whitespace-hspace-regexp): Fix regexp for emacs-unicode.
504 (whitespace-color-on): Use a single font-lock-add-keywords call.
505 Fix double-evaluation of face variables.
506
507 2013-03-17 Michael Albinus <michael.albinus@gmx.de>
508
509 * net/tramp-adb.el (tramp-adb-parse-device-names):
510 Use `start-process' instead of `call-process'. Otherwise, the
511 function might be blocked under MS Windows. (Bug#13299)
512
513 2013-03-17 Leo Liu <sdl.web@gmail.com>
514
515 Extend eldoc to display info in the mode-line. (Bug#13978)
516 * emacs-lisp/eldoc.el (eldoc-post-insert-mode): New minor mode.
517 (eldoc-mode-line-string): New variable.
518 (eldoc-minibuffer-message): New function.
519 (eldoc-message-function): New variable.
520 (eldoc-message): Use it.
521 (eldoc-display-message-p)
522 (eldoc-display-message-no-interference-p):
523 Support eldoc-post-insert-mode.
524
525 * simple.el (eval-expression-minibuffer-setup-hook): New hook.
526 (eval-expression): Run it.
527
528 2013-03-17 Roland Winkler <winkler@gnu.org>
529
530 * emacs-lisp/crm.el (completing-read-multiple): Ignore empty
531 strings in the list of return values.
532
533 2013-03-17 Jay Belanger <jay.p.belanger@gmail.com>
534
535 * calc/calc-ext.el (math-read-number-fancy): Check for an explicit
536 radix before checking for HMS forms.
537
538 2013-03-16 Leo Liu <sdl.web@gmail.com>
539
540 * progmodes/scheme.el: Add indentation and font-locking for λ.
541 (Bug#13975)
542
543 2013-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
544
545 * emacs-lisp/smie.el (smie-auto-fill): Don't inf-loop if there's no
546 token before point (bug#13942).
547
548 2013-03-16 Leo Liu <sdl.web@gmail.com>
549
550 * thingatpt.el (end-of-sexp): Fix bug#13952. Use syntax-after.
551
552 2013-03-16 Eli Zaretskii <eliz@gnu.org>
553
554 * startup.el (command-line-normalize-file-name): Fix handling of
555 backslashes in DOS and Windows file names. Reported by Xue Fuqiao
556 <xfq.free@gmail.com> in
557 http://lists.gnu.org/archive/html/help-gnu-emacs/2013-03/msg00245.html.
558
559 2013-03-15 Michael Albinus <michael.albinus@gmx.de>
560
561 Sync with Tramp 2.2.7.
562
563 * net/trampver.el: Update release number.
564
565 2013-03-14 Tassilo Horn <tsdh@gnu.org>
566
567 * doc-view.el Fix bug#13887.
568 (doc-view-insert-image): Don't modify overlay associated to
569 non-live windows, and implement horizontal centering of image in
570 case it's smaller than the window.
571 (doc-view-new-window-function): Force redisplay of new windows on
572 doc-view buffers.
573
574 2013-03-13 Karl Fogel <kfogel@red-bean.com>
575
576 * saveplace.el (save-place-alist-to-file): Don't sort
577 `save-place-alist', just pretty-print it (bug#13882).
578
579 2013-03-13 Michael Albinus <michael.albinus@gmx.de>
580
581 * net/tramp-sh.el (tramp-sh-handle-insert-directory): Check,
582 whether `default-file-name-coding-system' is bound. It isn't in
583 XEmacs.
584
585 2013-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
586
587 * emacs-lisp/byte-run.el (defun-declarations-alist): Don't use
588 backquotes for `obsolete' (bug#13929).
589
590 * international/mule.el (find-auto-coding): Include file name in
591 obsolescence warning (bug#13922).
592
593 2013-03-12 Teodor Zlatanov <tzz@lifelogs.com>
594
595 * progmodes/cfengine.el (cfengine-parameters-indent): New variable
596 for CFEngine 3-specific indentation.
597 (cfengine3-indent-line): Use it. Fix up category regex.
598 (cfengine3-font-lock-keywords): Add bundle and namespace characters.
599
600 2013-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
601
602 * type-break.el (type-break-file-name):
603 * textmodes/remember.el (remember-data-file):
604 * strokes.el (strokes-file):
605 * shadowfile.el (shadow-initialize):
606 * saveplace.el (save-place-file):
607 * ps-bdf.el (bdf-cache-file):
608 * progmodes/idlwave.el (idlwave-config-directory):
609 * net/quickurl.el (quickurl-url-file):
610 * international/kkc.el (kkc-init-file-name):
611 * ido.el (ido-save-directory-list-file):
612 * emulation/viper.el (viper-custom-file-name):
613 * emulation/vip.el (vip-startup-file):
614 * calendar/todo-mode.el (todo-file-do, todo-file-done, todo-file-top):
615 * calendar/timeclock.el (timeclock-file): Use locate-user-emacs-file.
616
617 2013-03-12 Paul Eggert <eggert@cs.ucla.edu>
618
619 Switch encodings of tutorials, thai-word to UTF-8 (Bug#13880).
620 * language/thai-word.el: Switch to UTF-8.
621
622 2013-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
623
624 * recentf.el (recentf-save-file): Use locate-user-emacs-file (bug#13870).
625
626 2013-03-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
627
628 * net/net-utils.el (net-utils-remove-ctrl-m-filter):
629 Use with-current-buffer and don't move point.
630 (net-utils-run-simple): Remove useless code.
631 (net-utils-remove-ctl-m): Remove unused custom.
632
633 2013-03-11 Per Starbäck <starback@stp.lingfil.uu.se>
634
635 * international/characters.el (glyphless-set-char-table-range): New fun.
636 (update-glyphless-char-display): Use it (bug#13744).
637
638 2013-03-11 Teodor Zlatanov <tzz@lifelogs.com>
639
640 * progmodes/cfengine.el: Update for CFEngine 3.4.2 and higher:
641 namespaces in the syntax, indent closer for hanging brace
642 correctly, allow single-quote delimited 'strings', and make
643 `cfengine3-mode' the default.
644
645 2013-03-11 Jean-Philippe Gravel <jpgravel@gmail.com>
646
647 * progmodes/gdb-mi.el: Speed up initialization (bug#10580).
648 Use lexical-binding. Fix up docstring according to conventions.
649 (gdbmi-debug-mode): New var.
650 (gdbmi-start-with, gdbmi-same-start, gdbmi-is-number, gdbmi-bnf-init)
651 (gdbmi-bnf-output, gdbmi-bnf-skip-unrecognized, gdbmi-bnf-gdb-prompt)
652 (gdbmi-bnf-result-record, gdbmi-bnf-out-of-band-record)
653 (gdbmi-bnf-async-record, gdbmi-bnf-stream-record)
654 (gdbmi-bnf-console-stream-output, gdbmi-bnf-target-stream-output)
655 (gdbmi-bnf-log-stream-output, gdbmi-bnf-result-and-async-record-impl)
656 (gdbmi-bnf-incomplete-record-result): New functions.
657 (gdb-car<): Remove function.
658 (gdbmi-record-list): Remove variable.
659 (gdbmi-bnf-state, gdbmi-bnf-offset): New vars.
660 (gdbmi-bnf-result-state-configs): New const.
661 (gud-gdbmi-marker-filter): Rewrite.
662 (gdb-ignored-notification, gdb-thread-created, gdb-thread-exited)
663 (gdb-thread-selected, gdb-running, gdb-starting, gdb-stopped):
664 Add `token' argument.
665 (gdb-done, gdb-error): New functions.
666 (gdb-done-or-error): Add `is-complete' argument. Change arg order.
667
668 2013-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
669
670 * term/xterm.el (xterm--report-background-handler): Don't burp
671 upon timeout.
672 (xterm--version-handler): Extract from terminal-init-xterm.
673 (xterm--query): Don't mishandle timeout. Remove debugging messages.
674 Allow multiple handlers.
675 (terminal-init-xterm): Handle OSX's Terminal.app's incorrect answer.
676
677 * term/xterm.el: Don't discard input (bug#6758). Use lexical-binding.
678 (xterm--report-background-handler, xterm--query): New functions.
679 (terminal-init-xterm): Use them.
680
681 2013-03-11 Michael R. Mauger <michael@mauger.com>
682
683 * progmodes/sql.el Version 3.2
684 Please note that my address changed to <michael@mauger.com>;
685 the <mmaug@yahoo.com> address remains active.
686 (sql-connection-alist): Updates documentation to fix bug#13715.
687 (sql-connect): Handle missing `sql-connection-alist' correctly.
688 (sql-mode-oracle-font-lock-keywords): Add missing keywords.
689 (sql-magic-go, sql-magic-semicolon): Mark with `delete-selection'
690 property.
691 (sql-default-value): New function.
692 (sql-get-login-ext, sql-get-login): Fixes bug where buffer-local
693 values were not used.
694 (sql-rename-buffer): Make sure alternate buffer name has no text
695 properties.
696 (sql-input-sender, sql-execute-feature): Fetch variable with
697 `buffer-local-value' rather than `with-current-buffer'.
698 (sql-*): Use #' function syntax consistently.
699 (sql-*): Use message/error/user-error consistently.
700
701 2013-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
702
703 * xt-mouse.el (xterm-mouse-event-read): Remove.
704 (xterm-mouse--read-event-sequence-1000)
705 (xterm-mouse--read-event-sequence-1006): Use read-event instead.
706
707 2013-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
708
709 * term/xterm.el (xterm-function-map): Support format used with
710 formatOtherKeys=1 (bug#13839).
711
712 * emacs-lisp/byte-run.el (dont-compile): Declare obsolete.
713 (with-no-warnings): Use `declare'.
714
715 * whitespace.el (whitespace-enable-predicate): New variable.
716 (whitespace-enable-predicate): Use it.
717
718 * comint.el (comint-send-input, comint-snapshot-last-prompt)
719 (comint-output-filter, comint-update-fence):
720 Use with-silent-modifications.
721
722 2013-03-10 Jambunathan K <kjambunathan@gmail.com>
723
724 * replace.el (occur-read-regexp-defaults-function): New var.
725 (occur-read-regexp-defaults): New defun.
726 (occur-read-primary-args): Propagate above change (bug#13892).
727
728 2013-03-09 Stefan Monnier <monnier@iro.umontreal.ca>
729
730 * mouse.el (mouse-drag-track): Remove left-over debugging code.
731
732 2013-03-09 Michael Albinus <michael.albinus@gmx.de>
733
734 Major rewrite due to changed D-Bus interface of GVFS 1.14.
735
736 * net/tramp-gvfs.el (top): Extend check for gvfs availability.
737 (tramp-gvfs-methods-mounttracker, tramp-gvfs-listmounts)
738 (tramp-gvfs-mountlocation, tramp-gvfs-mountlocation-signature):
739 New defconst.
740 (tramp-gvfs-file-name-handler-alist) [directory-files]
741 [directory-files-and-attributes, file-exists-p, file-modes]:
742 Use Tramp default handler.
743 [file-acl, file-selinux-context, process-file, set-file-acl]:
744 [set-file-modes, set-file-selinux-context, shell-command]:
745 [start-file-process]: Remove handler.
746 [verify-visited-file-modtime]: New handler.
747 (tramp-gvfs-dbus-string-to-byte-array)
748 (tramp-gvfs-dbus-byte-array-to-string): New defuns. Replace all
749 calls of `dbus-string-to-byte-array' and
750 `tramp-gvfs-dbus-byte-array-to-string'.
751 (tramp-gvfs-handle-copy-file)
752 (tramp-gvfs-handle-delete-directory)
753 (tramp-gvfs-handle-delete-file, tramp-gvfs-handle-file-attributes)
754 (tramp-gvfs-handle-file-directory-p)
755 (tramp-gvfs-handle-file-executable-p)
756 (tramp-gvfs-handle-file-name-all-completions)
757 (tramp-gvfs-handle-file-readable-p)
758 (tramp-gvfs-handle-file-writable-p)
759 (tramp-gvfs-handle-insert-directory)
760 (tramp-gvfs-handle-insert-file-contents)
761 (tramp-gvfs-handle-make-directory, tramp-gvfs-handle-rename-file)
762 (tramp-gvfs-handle-set-visited-file-modtime)
763 (tramp-gvfs-handle-write-region): Rewrite.
764 (tramp-gvfs-handle-file-acl)
765 (tramp-gvfs-handle-file-selinux-context)
766 (tramp-gvfs-handle-process-file, tramp-gvfs-handle-set-file-acl)
767 (tramp-gvfs-handle-set-file-modes)
768 (tramp-gvfs-handle-set-file-selinux-context)
769 (tramp-gvfs-handle-shell-command)
770 (tramp-gvfs-handle-start-file-process)
771 (tramp-gvfs-handle-verify-visited-file-modtime): Remove defuns.
772 (tramp-gvfs-url-file-name): Do not use `file-truename', we work
773 over the symlinks. Fix user handling.
774 (top, tramp-gvfs-handler-mounted-unmounted): Handle different names
775 of the D-Bus signals.
776 (tramp-gvfs-connection-mounted-p): Handle different names of the
777 D-Bus methods.
778 (tramp-gvfs-mount-spec-entry): New defun.
779 (tramp-gvfs-mount-spec): Use it.
780 (tramp-gvfs-maybe-open-connection): Check, that in case of "smb"
781 there is a share name. Handle different names of the D-Bus
782 signals and methods. Set connection properties needed for
783 `tramp-check-cached-permissions'.
784 (tramp-gvfs-send-command): Apply `tramp-gvfs-maybe-open-connection'.
785 Return t or nil.
786
787 * net/tramp.el (tramp-backtrace): Move up.
788 (tramp-error): Dump a backtrace into the debug buffer when
789 `tramp-verbose > 9.
790 (tramp-file-mode-type-map, tramp-file-mode-from-int)
791 (tramp-file-mode-permissions, tramp-get-local-uid)
792 (tramp-get-local-gid, tramp-check-cached-permissions): Move from
793 tramp-sh.el.
794
795 * net/tramp-sh.el (tramp-file-mode-type-map)
796 (tramp-check-cached-permissions, tramp-file-mode-from-int)
797 (tramp-file-mode-permissions, tramp-get-local-uid)
798 (tramp-get-local-gid): Move to tramp.el.
799
800 2013-03-09 Stefan Monnier <monnier@iro.umontreal.ca>
801
802 Separate mouse-1-click-follows-link from mouse-drag-region.
803 * mouse.el (mouse--down-1-maybe-follows-link): New function.
804 (key-translation-map): Use it to implement mouse-1-click-follows-link.
805 (mouse-drag-line, mouse-drag-track):
806 Remove mouse-1-click-follows-link code.
807 (mouse--remap-link-click-p): Remove.
808
809 2013-03-08 Jambunathan K <kjambunathan@gmail.com>
810
811 * hi-lock.el (hi-lock-read-regexp-defaults-function): New var.
812 (hi-lock-read-regexp-defaults): New defun.
813 (hi-lock-line-face-buffer, hi-lock-face-buffer)
814 (hi-lock-face-phrase-buffer): Propagate above change.
815 Update docstring (bug#13892).
816
817 * subr.el (find-tag-default-as-regexp): New defun.
818 * replace.el (read-regexp): Propagate above change.
819
820 2013-03-08 Jay Belanger <jay.p.belanger@gmail.com>
821
822 * calc/calc-units.el (calc-convert-units): Fix the way that default
823 new units are stored.
824
825 2013-03-07 Matthias Meulien <orontee@gmail.com>
826
827 * bookmark.el: Define a face to highlight bookmark names in
828 bookmark menu buffers, where the default is a bold face similarly
829 to buffer names in buffer menu buffers.
830 (bookmark-menu-bookmark): New face to highlight bookmark names.
831 (bookmark-insert-location): Remove duplicated text property to
832 conform to buffer list (see `list-buffers').
833 (bookmark-bmenu-list, bookmark-bmenu-hide-filenames): Apply face
834 `bookmark-menu-bookmark' to bookmark names.
835
836 2013-03-07 Matthias Meulien <orontee@gmail.com>
837 Karl Fogel <kfogel@red-bean.com>
838
839 * bookmark.el: Display the bookmark list header similarly to the
840 buffer list header (see `list-buffers'), where the default is now
841 an immovable/immutable header line.
842 (bookmark-bmenu-use-header-line): New variable.
843 (bookmark-bmenu-inline-header-height): New name for
844 `bookmark-bmenu-header-height', to avoid confusion with the code
845 for the new immovable header. All references changed.
846 (bookmark-bmenu-set-header): New function.
847 (bookmark-bmenu-list, bookmark-bmenu-toggle-filenames):
848 Conditionalize header construction accordingly.
849 (bookmark-bmenu-ensure-position): Conditionalize the skipping of
850 the inline header height.
851 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames):
852 Conditionalize the skipping of the inline header height.
853
854 2013-03-07 Dmitry Gutov <dgutov@yandex.ru>
855
856 * progmodes/js.el (js--multi-line-declaration-indentation):
857 Merge from js2-mode (https://github.com/mooz/js2-mode/issues/89).
858
859 2013-03-06 Dmitry Gutov <dgutov@yandex.ru>
860
861 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
862 Only propertize regexp when not inside a string (Bug#13885).
863
864 2013-03-06 Alan Mackenzie <acm@muc.de>
865
866 Correct the position of point in some line-up functions.
867 * progmodes/cc-align.el (c-lineup-whitesmith-in-block)
868 (c-lineup-assignments, c-lineup-gcc-asm-reg ): take position of
869 point at column 0 rather than at a random place in the line.
870
871 2013-03-05 Michael Albinus <michael.albinus@gmx.de>
872
873 * net/tramp-compat.el (tramp-compat-delete-directory):
874 Implement TRASH argument.
875
876 2013-03-05 Dmitry Gutov <dgutov@yandex.ru>
877
878 Keep pre-existing highlighting in completion candidates (Bug#13250).
879 * minibuffer.el (completions-first-difference): State that the
880 face is "added" in the docstring.
881 (completions-common-part): Same. And don't inherit from default.
882 (completion-hilit-commonality): Prepend 'completions-common-part
883 and 'completion-first-difference faces to the 'face property,
884 instead of replacing the value(s).
885 (completion--insert-strings): Same with 'completions-annotations face.
886 (completion-hilit-commonality): Use 'face instead of
887 'font-lock-face, because it gets priority if the completion
888 strings already have 'face set.
889
890 2013-03-04 Alan Mackenzie <acm@muc.de>
891
892 Replace `last-command-event' by `last-command-char' in XEmacs.
893 * progmodes/cc-defs.el (c-last-command-char): New macro.
894 * progmodes/cc-align.el (c-semi&comma-inside-parenlist)
895 (c-semi&comma-no-newlines-before-nonblanks)
896 (c-semi&comma-no-newlines-for-oneline-inliners): Use the new macro
897 in place of `last-command-event'.
898 * progmodes/cc-cmds.el (c-electric-pound, c-electric-brace)
899 (c-electric-slash, c-electric-semi&comma, c-electric-lt-gt)
900 (c-electric-paren, c-electric-continued-statement): Use the new
901 macro in place of `last-command-event'.
902
903 2013-03-04 Glenn Morris <rgm@gnu.org>
904
905 * files.el (inhibit-local-variables-regexps):
906 Add .diff and .patch. (Bug#13862)
907
908 2013-03-03 Michael Albinus <michael.albinus@gmx.de>
909
910 * net/tramp-adb.el (tramp-adb-maybe-open-connection): Cache,
911 whether the "su" command is available on the device.
912
913 2013-03-01 Michael Albinus <michael.albinus@gmx.de>
914
915 * net/tramp-adb.el (tramp-adb-prompt): Extend regexp.
916 (tramp-adb-handle-process-file): Remove superfluous setting.
917 (tramp-adb-command-exit-status): Handle case that COMMAND is nil.
918 (tramp-adb-barf-unless-okay): Use `tramp-adb-command-exit-status'.
919 (tramp-adb-maybe-open-connection): Apply "su" if user is defined.
920
921 2013-03-01 Stefan Monnier <monnier@iro.umontreal.ca>
922
923 * textmodes/ispell.el: Fix nitpicks and byte-compiler warnings.
924 (ispell-print-if-debug): Build `format' in. Avoid end-of-buffer.
925 (ispell-parse-hunspell-affix-file): Avoid beginning-of-buffer.
926 Use dict-key rather than dict-name for the error message.
927
928 2013-03-01 Thierry Volpiatto <thierry.volpiatto@gmail.com>
929
930 * net/net-utils.el (net-utils-run-simple): Don't display-buffer
931 when reverting (bug#13831).
932
933 2013-03-01 Agustín Martín Domingo <agustin.martin@hispalinux.es>
934
935 * textmodes/ispell.el (ispell-find-hunspell-dictionaries):
936 Always expand affix-file before storing to protect against changed
937 `default-directory'.
938 (ispell-print-if-debug): Make sure message is printed at the end
939 of the debug buffer.
940
941 2013-03-01 Michael Albinus <michael.albinus@gmx.de>
942
943 * net/tramp.el (tramp-obsolete-methods): New defconst.
944 (tramp-warned-obsolete-methods): New defvar.
945 (tramp-find-method): Check for obsolete methods. Map them to a
946 replacement method if appropriate.
947
948 * net/tramp-sh.el (tramp-methods) [scp1, scp2, ssh1, ssh2, plink1]:
949 Remove methods.
950 (top): Remove completion functions for "scp1", "scp2", "ssh1",
951 "ssh2" and "plink1".
952
953 2013-02-28 Dale Sedivec <dale@codefu.org>
954
955 * textmodes/sgml-mode.el (sgml-syntax-propertize-function):
956 Return valid syntax-table property value when converting
957 quotes within text from string syntax to punctuation syntax (bug#13844).
958
959 2013-02-28 Juri Linkov <juri@jurta.org>
960
961 * dired-aux.el (dired-diff): If file at point is a backup file,
962 use its original as the default value, and reverse the order
963 of arguments to the `diff' call. Doc fix. (Bug#13772)
964
965 2013-02-28 Michael Albinus <michael.albinus@gmx.de>
966
967 * net/tramp-adb.el (tramp-adb-sdk-dir): Remove. Replaced by ...
968 (tramp-adb-program): New defcustom. Remove function. Adapt calls.
969
970 2013-02-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
971
972 Initial support for hunspell dictionaries auto-detection (Bug#13639)
973
974 * textmodes/ispell.el (ispell-find-hunspell-dictionaries):
975 Ask hunspell about available and default dictionaries.
976 (ispell-parse-hunspell-affix-file): Extract relevant info from
977 hunspell affix file.
978 (ispell-hunspell-fill-dictionary-entry): Fill non-initialized
979 `ispell-dictionary-alist' entry for given dictionary after info
980 provided by `ispell-parse-hunspell-affix-file'.
981 (ispell-hunspell-dict-paths-alist): New defvar to contain an alist
982 of parsed hunspell dicts and associated affix files.
983 (ispell-hunspell-dictionary-alist): New defvar to contain an alist
984 of parsed hunspell dicts and associated parameters.
985 (ispell-set-spellchecker-params):
986 Call `ispell-find-hunspell-dictionaries' if hunspell and not
987 previously done.
988 (ispell-start-process):
989 Call `ispell-hunspell-fill-dictionary-entry' for current
990 dictionary if it is not initialized.
991
992 2013-02-28 Stefan Monnier <monnier@iro.umontreal.ca>
993
994 * imenu.el: Comment nitpicks.
995
996 2013-02-28 Sam Steingold <sds@gnu.org>
997
998 * vc/diff-mode.el (diff-hunk-file-names): Handle filenames with spaces.
999 See <http://stackoverflow.com/questions/14720205>.
1000
1001 2013-02-28 Thierry Volpiatto <thierry.volpiatto@gmail.com>
1002
1003 * net/net-utils.el (net-utils--revert-function): New fun (bug#13831).
1004 (net-utils-mode): Use it.
1005 (net-utils--revert-cmd): New var.
1006 (net-utils-run-simple): Set it, and remove bogus interactive spec.
1007 (traceroute): Use net-utils-run-simple.
1008
1009 2013-02-28 Glenn Morris <rgm@gnu.org>
1010
1011 * textmodes/paragraphs.el (mark-paragraph): Doc fix.
1012
1013 2013-02-28 Stefan Monnier <monnier@iro.umontreal.ca>
1014
1015 * doc-view.el: Preserve h&v scroll across C-c C-c C-c C-c.
1016 (doc-view-fallback-mode): Remove overlays here.
1017 (doc-view-toggle-display): Instead of here. Don't throw away
1018 image-mode-winprops-alist.
1019 (doc-view-goto-page): Don't mess with hscroll.
1020
1021 2013-02-27 Thierry Volpiatto <thierry.volpiatto@gmail.com>
1022
1023 * font-lock.el (lisp-font-lock-keywords-2): Fix highlighting of
1024 &optional (bug#13819).
1025
1026 2013-02-27 Michael Albinus <michael.albinus@gmx.de>
1027
1028 * net/tramp-adb.el (tramp-adb-parse-device-names)
1029 (tramp-adb-maybe-open-connection): Add timeouts. (Bug#13299)
1030
1031 2013-02-26 Michael Albinus <michael.albinus@gmx.de>
1032
1033 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
1034 Add "2>/dev/null" to the ls command, in case "en_US.utf8" is not
1035 defined. POSIX environments fall back to the "C" locale then and
1036 emit a warning, which shall be suppressed.
1037
1038 2013-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
1039
1040 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode): Tweak logic.
1041 (easy-mmode-set-keymap-parents): Use make-composed-keymap.
1042
1043 2013-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
1044
1045 * emacs-lisp/bytecomp.el (byte-compile-file): Use let.
1046
1047 2013-02-25 Juri Linkov <juri@jurta.org>
1048
1049 * replace.el (read-regexp): Let-bind `default' to the first
1050 element of `defaults' if it's a list, otherwise it should be
1051 a string or nil. Let-bind `suggestions' to `defaults' if it's
1052 a list, otherwise make a list with the string value. Doc fix.
1053 (Bug#13805)
1054
1055 2013-02-25 Eli Zaretskii <eliz@gnu.org>
1056
1057 * emacs-lisp/bytecomp.el (byte-recompile-directory): Reject files
1058 that match "\`\.#", to avoid compiling lock files, even if they
1059 are readable (as they are on MS-Windows).
1060
1061 2013-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
1062
1063 * files.el (basic-save-buffer): Remove redundant directory-creation.
1064
1065 2013-02-24 Jay Belanger <jay.p.belanger@gmail.com>
1066
1067 * calc/calc-ext.el (math-to-radians-2, math-from-radians-2):
1068 Add option to force `pi' to remain symbolic.
1069 * calc/calcalg2.el (calcFunc-sin, calcFunc-cos, calcFunc-tan)
1070 (calcFunc-cot, calcFunc-csc, calcFunc-sec, calcFunc-arcsin)
1071 (calcFunc-arccos, calcFunc-arctan): Use symbolic `pi' in the
1072 derivatives, when necessary.
1073
1074 2013-02-23 Peter Kleiweg <p.c.j.kleiweg@rug.nl>
1075
1076 * progmodes/ps-mode.el (ps-mode-version): Bump to 1.1i.
1077 (ps-mode-octal-region): Use string-make-unibyte.
1078
1079 2013-02-23 Glenn Morris <rgm@gnu.org>
1080
1081 * emulation/viper-cmd.el (viper-submit-report):
1082 * progmodes/ps-mode.el (ps-mode-maintainer-address):
1083 * progmodes/vera-mode.el (vera-mode-help-address):
1084 * textmodes/artist.el (artist-maintainer-address):
1085 * textmodes/reftex.el (reftex-report-bug):
1086 * vc/ediff-util.el (ediff-submit-report):
1087 Add bug-gnu-emacs to bug report address.
1088
1089 * progmodes/simula.el (simula-mode-menu, simula-mode-map):
1090 Remove bug report entries.
1091 (simula-mode-help-address, simula-submit-bug-report): Make obsolete.
1092
1093 * emacs-lisp/bytecomp.el (byte-compile-level): New.
1094 (byte-compile-file, byte-compile-from-buffer):
1095 Use separate input/output buffers for each level of recursive
1096 byte-compile-file calls. (Bug#13787)
1097
1098 2013-02-23 Michael Albinus <michael.albinus@gmx.de>
1099
1100 * net/tramp.el (tramp-methods): Fix docstring.
1101 (tramp-ssh-controlmaster-options): Rename it from
1102 `tramp-ssh-controlmaster-template'. Return a string.
1103 (tramp-default-method): Adapt check for
1104 `tramp-ssh-controlmaster-options'.
1105
1106 * net/tramp-sh.el (tramp-methods):
1107 Replace `tramp-ssh-controlmaster-template' by "%c".
1108 (tramp-do-copy-or-rename-file-out-of-band)
1109 (tramp-maybe-open-connection): Use it in format spec. Ensure,
1110 that it is applied for the first hop only.
1111
1112 2013-02-22 Juri Linkov <juri@jurta.org>
1113
1114 * isearch.el (isearch-lazy-highlight-new-loop):
1115 Set `isearch-lazy-highlight-start' and `isearch-lazy-highlight-end'
1116 to `isearch-other-end' if it is not nil. (Bug#13402)
1117
1118 * replace.el (replace-highlight): Let-bind `isearch-other-end'
1119 to `match-beg'.
1120
1121 * textmodes/ispell.el (ispell-highlight-spelling-error-overlay):
1122 Let-bind `isearch-other-end' to `start', `isearch-forward' to t
1123 and `isearch-error' to nil.
1124
1125 2013-03-16 Fabián Ezequiel Gallina <fgallina@cuca>
1126
1127 * progmodes/python.el (python-info-current-defun):
1128 Enhance match-data cluttering prevention.
1129
1130 2013-02-22 Michael Albinus <michael.albinus@gmx.de>
1131
1132 * net/tramp.el (tramp-tramp-file-p): Fix docstring.
1133
1134 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
1135 Handle multibyte file names.
1136
1137 2013-02-22 Glenn Morris <rgm@gnu.org>
1138
1139 * textmodes/sgml-mode.el (sgml-xml-mode): Move before use.
1140 (sgml-transformation-function): Give it a :set function.
1141 (sgml-tag): Doc fix.
1142
1143 * cmuscheme.el (scheme-buffer):
1144 * progmodes/inf-lisp.el (inferior-lisp-buffer):
1145 * progmodes/tcl.el (inferior-tcl-buffer):
1146 * textmodes/tex-mode.el (tex-command): Doc fixes.
1147
1148 * image-mode.el (image-mode): Add mouse bindings for mode-line-process.
1149
1150 * htmlfontify.el (hfy-default-header): Encode title string. (Bug#7457)
1151
1152 2013-02-21 Bastien Guerry <bzg@gnu.org>
1153
1154 * cmuscheme.el (scheme-buffer): Fix docstring. (Bug#13778)
1155
1156 2013-02-21 Fabián Ezequiel Gallina <fgallina@cuca>
1157
1158 * progmodes/python.el (python-info-current-defun):
1159 Enhance match-data cluttering prevention.
1160
1161 2013-02-21 Glenn Morris <rgm@gnu.org>
1162
1163 * net/tramp.el (tramp-get-debug-buffer): Ensure outline.el is not
1164 loaded while outline-regexp is let bound. (Bug#9584)
1165
1166 2013-02-21 Fabián Ezequiel Gallina <fgallina@cuca>
1167
1168 * progmodes/python.el (python-info-current-defun): Fix failed
1169 defun name retrieval because of unwanted match-data cluttering.
1170
1171 2013-02-21 Michael Albinus <michael.albinus@gmx.de>
1172
1173 * net/tramp.el (tramp-ssh-controlmaster-template): Make it a
1174 defconst. Apply independent check for ControlPersist.
1175
1176 * net/tramp-sh.el (tramp-sh-handle-set-file-times): Set $UTC only
1177 temporarily, via "env".
1178
1179 2013-02-21 Glenn Morris <rgm@gnu.org>
1180
1181 * info.el (Info-enable-edit): Remove.
1182 (Info-edit): Disable it rather than using Info-enable.
1183 (Info-edit-mode-hook, Info-edit-map, Info-edit-mode, Info-edit)
1184 (Info-cease-edit): Make editing of Info files obsolete.
1185
1186 * informat.el (Info-tagify):
1187 Handle buffers not visiting files. (Bug#13763)
1188
1189 2013-02-21 Juanma Barranquero <lekktu@gmail.com>
1190
1191 * calc/calc-graph.el (calc-graph-show-dumb): Fix typo.
1192
1193 2013-02-21 Glenn Morris <rgm@gnu.org>
1194
1195 * files.el (basic-save-buffer): Move check for existing parent
1196 directory after hooks. (Bug#13773)
1197
1198 2013-02-20 Stefan Monnier <monnier@iro.umontreal.ca>
1199
1200 * simple.el (command-execute): Move from C. Add obsolete check.
1201 (extended-command-history): Move from C.
1202
1203 2013-02-20 Ulrich Müller <ulm@gentoo.org>
1204
1205 * jka-cmpr-hook.el (jka-compr-compression-info-list)
1206 (jka-compr-mode-alist-additions): Handle .txz suffix for
1207 XZ-compressed tar archives (bug#13770).
1208
1209 2013-02-20 Bastien Guerry <bzg@gnu.org>
1210
1211 * outline.el (outline-regexp, outline-heading-end-regexp):
1212 Make variables, not options (bug#13731).
1213
1214 2013-02-20 Glenn Morris <rgm@gnu.org>
1215
1216 * image.el (image-current-frame): Change from variable to function.
1217 (image-show-frame): Rename from image-nth-frame. Update callers.
1218 * image-mode.el (image-multi-frame): New variable.
1219 (image-mode-map, image-mode, image-goto-frame):
1220 Use image-multi-frame rather than image-current-frame.
1221 (image-mode, image-goto-frame): Use image-current-frame as
1222 function rather than as variable.
1223
1224 * emacs-lisp/cl-lib.el (cl-floatp-safe): Make it an alias for floatp.
1225 * emacs-lisp/cl-macs.el (cl--make-type-test)
1226 (cl--compiler-macro-assoc): Use floatp rather than cl-floatp-safe.
1227
1228 2013-02-19 Michael Albinus <michael.albinus@gmx.de>
1229
1230 * net/tramp-cache.el (tramp-get-hash-table): New defun.
1231 (tramp-get-file-property, tramp-set-file-property)
1232 (tramp-get-connection-property, tramp-set-connection-property): Use it.
1233 (tramp-flush-file-property, tramp-flush-directory-property):
1234 Rename argument to KEY.
1235 (tramp-flush-connection-property): Simplify a little bit.
1236 (tramp-connection-property-p): New defun.
1237 (top): Reapply saved values only if there isn't a corresponding
1238 entry in `tramp-connection-properties'.
1239
1240 2013-02-19 Fabián Ezequiel Gallina <fgallina@cuca>
1241
1242 * progmodes/python.el (python-indent-context):
1243 Fix python-info-line-ends-backslash-p call.
1244 (python-info-line-ends-backslash-p)
1245 (python-info-beginning-of-backslash): Respect line-number argument.
1246 (python-info-current-line-comment-p):
1247 Fix behavior when not at beginning-of-line.
1248 (python-util-position): Remove function.
1249 (python-util-goto-line): New function.
1250
1251 2013-02-19 Michael Albinus <michael.albinus@gmx.de>
1252
1253 * eshell/em-unix.el (eshell/su): Require tramp.
1254 (eshell/sudo): Require tramp. Remove now unnecessary check.
1255
1256 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Let-bind
1257 `tramp-current-connection' in order to avoid an error when several
1258 commands are invoked in a short time in eshell and friends.
1259
1260 2013-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
1261
1262 Cleanup some of EIEIO's namespace.
1263 * emacs-lisp/eieio.el (eieio--define-field-accessors): New macro.
1264 Use it to define all the class-* and object-* field accessors (renamed
1265 to eieio--class-* and eieio--object-*). Update all uses.
1266 (eieio--class-num-slots, eieio--object-num-slots): Rename from
1267 class-num-slots and object-num-slots.
1268 (eieio--check-type): New macro.
1269 (eieio-defclass, eieio-oref, eieio-oref-default, same-class-p)
1270 (object-of-class-p, child-of-class-p, object-slots, class-slot-initarg)
1271 (eieio-oset, eieio-oset-default, object-assoc, object-assoc-list)
1272 (object-assoc-list-safe): Use it.
1273 (eieio-defclass): Tighten regexp.
1274 (eieio--defmethod): Use `memq'. Signal an error for unknown method kind.
1275 Remove unreachable code.
1276 (object-class-fast): Declare obsolete.
1277 (eieio-class-name, eieio-object-name, eieio-object-set-name-string)
1278 (eieio-object-class, eieio-object-class-name, eieio-class-parents)
1279 (eieio-class-children, eieio-class-precedence-list, eieio-class-parent):
1280 Rename from class-name, object-name, object-set-name-string,
1281 object-class, object-class-name, class-parents, class-children,
1282 class-precedence-list, class-parent; with obsolete alias.
1283 (class-of, class-direct-superclasses, class-direct-subclasses):
1284 Declare obsolete.
1285 (eieio-defmethod): Use `memq'; remove unreachable code.
1286 * emacs-lisp/eieio-base.el (eieio-persistent-read):
1287 * emacs-lisp/eieio-opt.el (eieio-class-button, eieio-describe-generic)
1288 (eieio-browse-tree, eieio-browse): Use eieio--check-type.
1289
1290
1291 2013-02-18 Aidan Gauland <aidalgol@no8wireless.co.nz>
1292
1293 * eshell/em-cmpl.el: Correct "context-related help" keybinding in
1294 commentary.
1295
1296 2013-02-18 Michael Heerdegen <michael_heerdegen@web.de>
1297
1298 * emacs-lisp/eldoc.el (eldoc-highlight-function-argument):
1299 Use font-lock-keyword-face for macros and special forms (bug#8345).
1300
1301 2013-02-17 Didier Verna <didier@didierverna.net>
1302
1303 * net/network-stream.el (network-stream-open-starttls):
1304 Check that response to the starttls-command is non-nil. (Bug#13706)
1305
1306 2013-02-17 Stefan Monnier <monnier@iro.umontreal.ca>
1307
1308 * font-lock.el (lisp-font-lock-keywords-1, lisp-font-lock-keywords-2):
1309 Don't assume all identifier chars have syntax word.
1310 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
1311 Remove bar-not-symbol. Adjust callers.
1312 (lisp-mode-variables): Don't set a font-lock-syntax-table.
1313
1314 2013-02-17 Leo Liu <sdl.web@gmail.com>
1315
1316 * net/rcirc.el (rcirc-keepalive): Fix invalid timer error.
1317
1318 2013-02-17 Glenn Morris <rgm@gnu.org>
1319
1320 * menu-bar.el (menu-bar-tools-menu): Fix case of EDE entry.
1321
1322 * image-mode.el (image-mode-map): Add image-dired menu entry.
1323
1324 * image-dired.el (tumme): Make this alias obsolete.
1325
1326 2013-02-16 Glenn Morris <rgm@gnu.org>
1327
1328 * image.el (image-animated-types): Remove.
1329 (image-multi-frame-p): Rename from image-animated-p, and generalize.
1330 (image-animated-p): Make obsolete alias.
1331 (image-animate, image-nth-frame, image-animate-timeout):
1332 Use image-multi-frame-p.
1333 (image-animate-timeout): If no delay, use image-default-frame-delay.
1334 * image-mode.el (image-mode, image-toggle-animation):
1335 Use image-multi-frame-p. (Bug#763, bug#10739)
1336 (image-mode): Adjust startup message for a multi-frame image.
1337
1338 * image-mode.el (image-mode-map): Give it a menu.
1339
1340 2013-02-16 Michael Albinus <michael.albinus@gmx.de>
1341
1342 * net/tramp-cache.el (tramp-connection-properties): New customer
1343 option.
1344 (tramp-get-connection-property): Use it.
1345
1346 * net/tramp-compat.el (top): Require 'trampver.
1347
1348 * net/tramp-sh.el (tramp-remote-process-environment):
1349 Set tramp-autoload cookie.
1350
1351 2013-02-16 Kevin Ryde <user42@zip.com.au>
1352
1353 * info-look.el (info-lookup-select-mode): If major-mode has no
1354 info-lookup-alist entry then search up derived-mode-parent (bug#8660).
1355
1356 2013-02-16 Jambunathan K <kjambunathan@gmail.com>
1357
1358 * replace.el (read-regexp): Tighten the regexp that matches tag.
1359 When tag is retrieved with `find-tag-default', use regexp that
1360 matches tag at point. Also update docstring (Bug#13687).
1361
1362 2013-02-16 Eli Zaretskii <eliz@gnu.org>
1363
1364 * autorevert.el (auto-revert-notify-add-watch): With 'w32notify',
1365 add watch for the file, not its parent directory, since w32notify
1366 sets up the watch for the directory internally. (Bug#13725)
1367
1368 2013-02-16 Glenn Morris <rgm@gnu.org>
1369
1370 * image.el (image-default-frame-delay): New variable.
1371 (image-animated-p): Use image-default-frame-delay.
1372 (image-minimum-frame-delay): New constant.
1373 (image-animate-timeout): Use image-minimum-frame-delay.
1374
1375 * image.el (image-nth-frame): New, split from image-animate-timeout.
1376 (image-animate-timeout): Use image-nth-frame.
1377 * image-mode.el (image-goto-frame, image-next-frame)
1378 (image-previous-frame): New commands.
1379 (image-mode-map): Add new frame commands.
1380
1381 2013-02-16 Jonas Bernoulli <jonas@bernoul.li>
1382
1383 * emacs-lisp/tabulated-list.el (tabulated-list-print-col):
1384 If col-desc already has help-echo, use it. (Bug#13563)
1385
1386 2013-02-16 Glenn Morris <rgm@gnu.org>
1387
1388 * image.el (image-current-frame): New variable.
1389 (image-animate-timeout): Set image-current-frame.
1390 * image-mode.el (image-mode): For animated images,
1391 display a frame counter via mode-line-process.
1392
1393 * font-lock.el (lisp-font-lock-keywords-1): Add defvar-local.
1394
1395 2013-02-15 Stefan Monnier <monnier@iro.umontreal.ca>
1396
1397 * simple.el (eval-expression): Let `exp' set the mark (bug#13724).
1398
1399 2013-02-15 Alan Mackenzie <acm@muc.de>
1400
1401 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode): When a
1402 global minor mode has been enabled, call the minor mode function
1403 for a new buffer once only, after the major mode hook, whilst
1404 allowing that hook explicitly to disable the minor mode.
1405 (MODE-disable-in-buffer): New (generated) function.
1406 (disable-MODE): New (generated) buffer local variable.
1407
1408 2013-02-15 Jambunathan K <kjambunathan@gmail.com>
1409
1410 * iswitchb.el (iswitchb-read-buffer): Bind `C-.' and `C-,' to
1411 `iswitchb-next-match' and `iswitchb-prev-match' resply.
1412 * ido.el (ido-init-completion-maps): Bind `C-.' and `C-,' to
1413 `ido-next-match' and `ido-prev-match' resply.
1414 * icomplete.el (icomplete-minibuffer-map): Unbind `C-s' and `C-r'.
1415 Bind `C-.' and `C-,' to `icomplete-forward-completions' and
1416 `icomplete-backward-completions' (Bug#13708).
1417
1418 2013-02-15 Glenn Morris <rgm@gnu.org>
1419
1420 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
1421
1422 2013-02-15 Stefan Monnier <monnier@iro.umontreal.ca>
1423
1424 * net/goto-addr.el (goto-address-fontify): Add start and end args.
1425 (goto-address-fontify-region): Use them instead of narrowing, so
1426 syntax-ppss has access to the whole buffer.
1427
1428 2013-02-15 Fabián Ezequiel Gallina <fgallina@cuca>
1429
1430 * progmodes/python.el: Explain how to restore "cc-mode"-like
1431 forward-sexp movement in header documentation (Bug#13642).
1432 (python-nav--forward-sexp): Behave like emacs-lisp-mode in
1433 comments and strings (GH bug 114).
1434
1435 2013-02-15 Fabián Ezequiel Gallina <fgallina@cuca>
1436
1437 * progmodes/python.el (python-info-current-defun): Fix current
1438 defun detection (Bug#13618).
1439
1440 2013-02-15 Chong Yidong <cyd@gnu.org>
1441
1442 * xml.el (xml-parse-string): Fix typo in handling of bad character
1443 references.
1444
1445 2013-02-15 Glenn Morris <rgm@gnu.org>
1446
1447 * play/fortune.el (fortune-compile): Simplify and fix previous change.
1448
1449 2013-02-14 Michael Albinus <michael.albinus@gmx.de>
1450
1451 * net/tramp.el (tramp-debug-message):
1452 Add `tramp-condition-case-unless-debug'.
1453 (tramp-debug-on-error): New defvar.
1454 (tramp-condition-case-unless-debug): New defun.
1455 (tramp-file-name-handler): Use it.
1456
1457 2013-02-14 Juri Linkov <juri@jurta.org>
1458
1459 * info.el (Info-isearch-filter): Treat non-nil values of
1460 `search-invisible' including its default value `open'
1461 like the value `t' to match hidden text. (Bug#13402)
1462
1463 2013-02-14 Glenn Morris <rgm@gnu.org>
1464
1465 * help-fns.el (find-lisp-object-file-name): Give special treatment
1466 to all ~/.foo.elc files, not just ~/.emacs. (Bug#9007)
1467
1468 2013-02-14 David Biesack <sasdjb@d72933.na.sas.com> (tiny change)
1469
1470 * net/quickurl.el (quickurl-save-urls):
1471 Ensure quickurl-urls is not truncated on printing. (Bug#9276)
1472
1473 2013-02-14 Dmitry Gutov <dgutov@yandex.ru>
1474
1475 * progmodes/ruby-mode.el (ruby-parse-partial): Don't increase
1476 depth for unfinished percent literal. Not using it in the caller.
1477 (ruby-move-to-block): Jump over multiline literals of all types,
1478 ignoring code-looking contents inside them.
1479 (ruby-add-log-current-method): Improve performance at the expense
1480 of accuracy. `ruby-block-contains-point' is relatively slow, so
1481 only use it for method and singleton class blocks.
1482
1483 2013-02-13 Michael Albinus <michael.albinus@gmx.de>
1484
1485 Use ControlMaster where applicable. (Bug#13677)
1486
1487 * net/tramp.el (tramp-ssh-controlmaster-template): New defvar,
1488 replacing `tramp-detect-ssh-controlmaster'.
1489 (tramp-default-method): Use it.
1490
1491 * net/tramp-sh.el (tramp-methods) [scp, scp1, scp2, scpx, sftp]:
1492 [rsync, ssh, ssh1, ssh2, sshx]: Add ControlPath and ControlMaster
1493 arguments.
1494 [scpc, rsyncc]: Remove methods.
1495 (top): Remove completion functions for "scpc", "rsyncc", "ssh1_old"
1496 and "ssh2_old".
1497 (tramp-do-copy-or-rename-file-out-of-band): Change trace level.
1498 (tramp-maybe-open-connection): Reuse tmpfile for ControlPath.
1499
1500 2013-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
1501
1502 * emacs-lisp/package.el (package--initialized): Move before first use.
1503
1504 2013-02-13 Jambunathan K <kjambunathan@gmail.com>
1505
1506 * icomplete.el (icomplete-hide-common-prefix): New user option.
1507 (icomplete-first-match): New face.
1508 (icomplete-completions): Correct handling of "complete but not
1509 unique" (Bug#12638).
1510
1511 2013-02-13 YE Qianchuan <stool.ye@gmail.com> (tiny change)
1512
1513 * descr-text.el (describe-char): Display the script (bug#13698).
1514
1515 2013-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
1516
1517 * tmm.el: Use lexical-binding and current-active-maps.
1518 (tmm-menubar): Use map-keymap and pcase.
1519 (tmm--completion-table): New function.
1520 (tmm-prompt): Use it to fix the menu order.
1521 (tmm-get-keybind): Use current-active-maps.
1522
1523 2013-02-12 Christopher Schmidt <christopher@ch.ristopher.com>
1524
1525 Add dired-hide-details-mode. (Bug#6799)
1526
1527 * locate.el (locate-mode): Set parent mode property to dired-mode.
1528
1529 * find-dired.el (find-dired): Call dired-insert-set-properties on
1530 initial information line. Set process mark on end of buffer.
1531 (find-dired-sentinel):
1532 Call dired-insert-set-properties on summary.
1533
1534 * dired.el (dired-hide-details-hide-symlink-targets)
1535 (dired-hide-details-hide-information-lines): New options.
1536 (dired-insert-directory):
1537 Set properties after final treatment of output.
1538 (dired-insert-set-properties):
1539 Set dired-hide-details-* properties.
1540 (dired-mode-map): Bind dired-hide-details-mode.
1541 (dired-mode): Set buffer-invisibility-spec to a list.
1542 (dired-next-line): Skip hidden lines.
1543 (dired-previous-line): Use dired-next-line.
1544 (dired-hide-details-mode): New minor mode.
1545 (dired-hide-details-update-invisibility-spec): New function.
1546
1547 2013-02-13 Glenn Morris <rgm@gnu.org>
1548
1549 * play/yow.el: Move to obsolete/. (Bug#9384)
1550
1551 2013-02-13 Juri Linkov <juri@jurta.org>
1552
1553 * vc/ediff-util.el (ediff-recenter): Use `select-frame-set-input-focus'
1554 to select `ediff-control-frame' and set input focus correctly on Xfce.
1555 (Bug#12218)
1556
1557 2013-02-13 Juri Linkov <juri@jurta.org>
1558
1559 * image-mode.el (image-mode-map):
1560 * doc-view.el (doc-view-mode-map):
1561 * vc/ediff-util.el (ediff-setup-keymap):
1562 Make S-SPC scroll in the opposite sense to SPC. (Bug#2145)
1563
1564 2013-02-13 Dmitry Gutov <dgutov@yandex.ru>
1565
1566 * progmodes/ruby-mode.el (ruby-move-to-block): Improve
1567 performance. Instead of recalculating indentation fully for each
1568 line, sum up indentation depth based only on visited lines.
1569 (ruby-parse-partial): Increase the depth after "do" even when END
1570 is right after it.
1571 (ruby-parse-partial): When END is in the middle of a percent
1572 literal, increase the depth if the delimiter chars belong to the
1573 paren syntax class.
1574
1575 2013-02-13 Kirill A. Korinskiy <catap@catap.ru>
1576
1577 * play/fortune.el (fortune-compile): Also make the compiled file
1578 if it does not exist at all, not just if it is old. (Bug#5338)
1579
1580 2013-02-13 Glenn Morris <rgm@gnu.org>
1581
1582 * emacs-lisp/package.el (package-menu-execute): Doc fix.
1583
1584 2013-02-13 Yves Baumes <ybaumes@gmail.com> (tiny change)
1585
1586 * lisp/emacs-lisp/package.el (package-menu-execute):
1587 Add optional noquery argument. (Bug#13625)
1588
1589 2013-02-13 Michael Albinus <michael.albinus@gmx.de>
1590
1591 * net/ange-ftp.el (ange-ftp-make-directory): Don't raise an error,
1592 if DIR exists and PARENTS is non-nil.
1593
1594 2013-02-13 Juanma Barranquero <lekktu@gmail.com>
1595
1596 * progmodes/js.el (js--multi-line-declaration-indentation):
1597 Silence byte-compiler warning.
1598
1599 2013-02-12 Michael Albinus <michael.albinus@gmx.de>
1600
1601 * net/tramp-adb.el (tramp-adb-handle-start-file-process): Rewrite.
1602
1603 * net/tramp-compat.el (top): Declare `remote-file-name-inhibit-cache'
1604 only if it doesn't exist.
1605
1606 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
1607 Set process marker.
1608
1609 2013-02-12 Tassilo Horn <tsdh@gnu.org>
1610
1611 * doc-view.el (doc-view-odf->pdf-converter-soffice): Use separate
1612 UserInstallation when calling soffice to work around LibreOffice
1613 bug 37531.
1614
1615 2013-02-12 Glenn Morris <rgm@gnu.org>
1616
1617 * files.el (basic-save-buffer):
1618 Offer to create a non-existing directory. (Bug#3016)
1619
1620 * calc/calc-graph.el (calc-graph-show-dumb):
1621 * calendar/calendar.el (calendar-mode-map):
1622 * cus-edit.el (custom-mode-map):
1623 * ehelp.el (electric-help-map):
1624 * emulation/vip.el (vip-mode-map):
1625 * epa.el (epa-key-list-mode-map):
1626 * info.el (Info-mode-map):
1627 * mail/rmail.el (rmail-mode-map):
1628 * mail/rmailsum.el (rmail-summary-mode-map):
1629 * man.el (Man-mode-map):
1630 * net/newst-plainview.el (newsticker-mode-map):
1631 * progmodes/cpp.el (cpp-edit-mode-map):
1632 * progmodes/grep.el (grep-mode-map):
1633 * progmodes/idlw-help.el (idlwave-help-mode-map):
1634 * simple.el (special-mode-map):
1635 * startup.el (splash-screen-keymap):
1636 * view.el (view-mode-map):
1637 Make S-SPC scroll in the opposite sense to SPC. (Bug#2145)
1638
1639 2013-02-11 Elias Pipping <pipping@lavabit.com>
1640
1641 * doc-view.el (doc-view-current-cache-dir): Beware % escapes
1642 (bug#13679).
1643
1644 2013-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
1645
1646 * cus-start.el (all): Remove inhibit-local-menu-bar-menus.
1647
1648 2013-02-11 Glenn Morris <rgm@gnu.org>
1649
1650 * vc/diff.el (diff-use-labels): New variable.
1651 (diff-no-select): Use --label rather than -L, and first
1652 check that it is supported. (Bug#11067)
1653
1654 * files.el (enable-dir-local-variables): New variable.
1655 (hack-dir-local-variables): Respect enable-dir-local-variables.
1656 * tutorial.el (help-with-tutorial):
1657 Ignore directory-local variables. (Bug#11127)
1658
1659 * vc/vc-svn.el (vc-svn-command): Move --non-interactive from here...
1660 (vc-svn-global-switches): ... to here. (Bug#13513)
1661
1662 2013-02-10 Christopher Schmidt <christopher@ch.ristopher.com>
1663
1664 * minibuf-eldef.el (minibuffer-default--in-prompt-regexps):
1665 Handle "foo (bar, default: xxx): " prompts.
1666
1667 2013-02-10 Chong Yidong <cyd@gnu.org>
1668
1669 * files.el (basic-save-buffer-1): Do not set
1670 buffer-file-coding-system-explicit (Bug#4533).
1671
1672 * mail/emacsbug.el (report-emacs-bug): Change binding of
1673 report-emacs-bug-insert-to-mailer to C-c M-i (Bug#13510).
1674
1675 2013-02-09 Jay Belanger <jay.p.belanger@gmail.com>
1676
1677 * calc/calc.el (calc-allow-units-as-numbers): New variable.
1678 * calc/calc-units.el (calc-convert-units): Use new variable.
1679
1680 2013-02-09 Eli Zaretskii <eliz@gnu.org>
1681
1682 * subr.el (buffer-file-type, default-buffer-file-type): Remove.
1683
1684 * net/ange-ftp.el (ange-ftp-insert-file-contents): Don't reference
1685 buffer-file-type.
1686
1687 * mail/feedmail.el (feedmail-force-binary-write): Doc fix.
1688 (feedmail-run-the-queue, feedmail-dump-message-to-queue)
1689 (feedmail-send-it-immediately): Don't bind buffer-file-type, bind
1690 coding-system-for-write instead.
1691
1692 * jka-compr.el (jka-compr-write-region): Don't bind
1693 buffer-file-type.
1694
1695 * emacs-lisp/bytecomp.el (byte-compile-file): Don't bind
1696 buffer-file-type.
1697
1698 * files.el (file-name-buffer-file-type-alist): Remove defvar.
1699 (insert-file-contents-literally): Remove reference to
1700 file-name-buffer-file-type-alist.
1701
1702 * dos-w32.el (file-name-buffer-file-type-alist): Deprecate and
1703 make-obsolete.
1704 (find-buffer-file-type-match, find-buffer-file-type): Remove.
1705 (find-buffer-file-type-coding-system): Remove references to
1706 find-buffer-file-type-match, find-buffer-file-type, and
1707 buffer-file-type.
1708 Don't put find-buffer-file-type-coding-system into
1709 file-coding-system-alist.
1710 (find-file-binary, find-file-text): Bind coding-system-for-read
1711 instead of file-name-buffer-file-type-alist.
1712
1713 2013-02-09 Jambunathan K <kjambunathan@gmail.com>
1714
1715 * doc-view.el: Use (and prefer) soffice as default ODF->PDF
1716 converter (Bug#13622).
1717 (doc-view-unoconv-program): Make obsolete alias.
1718 (doc-view-odf->pdf-converter-program): New variable.
1719 (doc-view-odf->pdf-converter-function): New variable.
1720 (doc-view-mode-p): Use it.
1721 (doc-view-odf->pdf-converter-unoconv):
1722 Rename from `doc-view-odf->pdf-converter-unoconv'.
1723 (doc-view-odf->pdf-converter-soffice): New function.
1724 (doc-view-convert-current-doc):
1725 Use `doc-view-odf->pdf-converter-function'.
1726
1727 2013-02-09 Chong Yidong <cyd@gnu.org>
1728
1729 * minibuffer.el (minibuffer-inactive-mode-map): Bind mouse-1 to
1730 view-echo-area-messages (Bug#13340).
1731
1732 * help.el (view-echo-area-messages): Use display-buffer.
1733
1734 * dired-x.el (dired-do-run-mail): Prompt for confirmation
1735 (Bug#13561).
1736
1737 2013-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
1738
1739 * emacs-lisp/byte-run.el (eval-when-compile, eval-and-compile):
1740 Eval body right away, now that we do eager macroexpansion (bug#13605).
1741
1742 * simple.el (end-of-buffer): Don't touch unrelated windows (bug#13466).
1743 (fundamental-mode): Use run-mode-hooks.
1744
1745 * eshell/esh-proc.el (eshell/kill): Fix last change.
1746 * eshell/em-ls.el (eshell-ls-dir): Fix use of CL in last change.
1747
1748 2013-02-08 Aidan Gauland <aidalgol@no8wireless.co.nz>
1749
1750 * eshell/esh-proc.el (eshell/kill): Rewrite.
1751
1752 * eshell/em-ls.el (show-almost-all): Declare.
1753 (eshell-do-ls): Add support for -A argument.
1754
1755 2013-02-08 Jambunathan K <kjambunathan@gmail.com>
1756
1757 * icomplete.el (icomplete-forward-completions)
1758 (icomplete-backward-completions): Handle corner case (bug#13602).
1759
1760 2013-02-07 Michael Albinus <michael.albinus@gmx.de>
1761
1762 * vc/vc-hooks.el (vc-find-file-hook): `buffer-file-truename' can
1763 be nil. Handle this. (Bug#13636)
1764
1765 2013-02-07 Richard Stallman <rms@gnu.org>
1766
1767 * mail/rmail.el (rmail-variables): Specify `no-conversion' for
1768 `save-buffer-coding-system'.
1769
1770 2013-02-07 Alan Mackenzie <acm@muc.de>
1771
1772 Fix bug in state cache mechanism. Remove 'BOD "strategy". Refactor.
1773 * progmodes/cc-engine.el (c-get-fallback-scan-pos): Remove.
1774 (c-parse-state-get-strategy): Don't return 'BOD any more.
1775 (c-append-lower-brace-pair-to-state-cache):
1776 Extra parameter HERE instead of narrowing.
1777 Widen to top of buffer before searching backwards for a brace pair.
1778 (c-state-push-any-brace-pair): Add HERE parameter to function call.
1779 (c-append-to-state-cache): Extra parameter HERE in place of narrowing.
1780 Narrow to parameter HERE, in place of being called narrowed.
1781 (c-remove-stale-state-cache): Extra parameter HERE in place of
1782 narrowing. Check there's an open brace in the cache before
1783 searching for its match.
1784 (c-invalidate-state-cache-1): Add HERE parameter to function call.
1785 (c-parse-state-1): Don't narrow here for 'forward strategy,
1786 instead passing extra parameter HERE to several functions.
1787 Remove 'BOD strategy.
1788
1789 2013-02-06 Nicolas Richard <theonewiththeevillook@yahoo.fr> (tiny change)
1790
1791 * emacs-lisp/package.el (describe-package-1): Tell what archive is
1792 used to install the package.
1793
1794 2013-02-06 Glenn Morris <rgm@gnu.org>
1795
1796 * vc/vc-hooks.el (vc-find-file-hook): Don't ask about following links
1797 if we can't get user input. (Bug#6567)
1798
1799 * startup.el (command-line): If simple.el is missing,
1800 test and warn about for some possible causes.
1801
1802 2013-02-05 Jan Djärv <jan.h.d@swipnet.se>
1803
1804 * cus-start.el (all): Add ns-use-native-fullscreen.
1805
1806 2013-02-05 Glenn Morris <rgm@gnu.org>
1807
1808 * profiler.el (profiler-report-mode-map): Add a restart menu entry.
1809
1810 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
1811 Fix directory creation in fallback case.
1812
1813 2013-02-04 Thierry Volpiatto <thierry.volpiatto@gmail.com>
1814
1815 * vc/vc.el (vc-next-action): Fix inf-loop (bug#13610).
1816 (vc-update-change-log): Use dolist.
1817
1818 2013-02-04 Chong Yidong <cyd@gnu.org>
1819
1820 * thingatpt.el: Rewrite the URL detection routines, absorbing some
1821 code from ffap.el.
1822 (thing-at-point-beginning-of-url-regexp): New var.
1823 (thing-at-point-uri-schemes): Update list of URI schemes.
1824 (thing-at-point-url-regexp): Variable deleted.
1825 (thing-at-point-markedup-url-regexp): Disallow newlines.
1826 (thing-at-point-newsgroup-regexp)
1827 (thing-at-point-newsgroup-heads)
1828 (thing-at-point-default-mail-uri-scheme): New variables.
1829 (thing-at-point-bounds-of-url-at-point): Rewrite. Use ffap's
1830 method to find the possible bounds of the URI at point.
1831 New optional argument to find ill-formed URIs.
1832 (thing-at-point-url-at-point): Rewrite. New arguments for finding
1833 ill-formed URIs. Use thing-at-point-bounds-of-url-at-point, and
1834 the scheme-adding heuristics from ffap-url-at-point.
1835 (thing-at-point--bounds-of-well-formed-url): New function.
1836 Do parens matching to decide whether to include parens in the URI
1837 (Bug#9153).
1838
1839 * ffap.el: Require thingatpt.
1840 (ffap-url-at-point): Delegate URI detection to thing-at-point.
1841 All URI-valid characters are now recognized (Bug#5673).
1842 (ffap-string-at-point): Use use-region-p.
1843 (ffap-url-regexp): Extra character is handled by thing-at-point.
1844 (ffap-string-at-point-mode-alist): Allow parentheses.
1845 (ffap-newsgroup-regexp, ffap-newsgroup-heads, ffap-newsgroup-p):
1846 Convert to aliases; code moved to thingatpt.el.
1847 (ffap-gnus-hook): Use setq-local.
1848
1849 2013-02-04 Glenn Morris <rgm@gnu.org>
1850
1851 * emacs-lisp/ert.el (ert--explain-format-atom):
1852 Don't try to print non-characters as characters. (Bug#13543)
1853
1854 2013-02-03 Michael Albinus <michael.albinus@gmx.de>
1855
1856 * net/tramp.el (tramp-debug-message): Extend function exclude list.
1857 (tramp-backtrace): New defun.
1858 (tramp-handle-insert-file-contents): Use `visit' when inserting
1859 the local copy.
1860
1861 * net/tramp-sh.el (tramp-sh-handle-set-visited-file-modtime):
1862 Use `remote-file-name-inhibit-cache'.
1863
1864 2013-02-03 Stefan Monnier <monnier@iro.umontreal.ca>
1865
1866 * progmodes/cperl-mode.el (cperl-mode): Avoid byte-compile warning
1867 (bug#13614).
1868
1869 * subr.el (internal--called-interactively-p--get-frame): Avoid filling
1870 current-load-list (bug#13366).
1871
1872 2013-02-02 Christopher Schmidt <christopher@ch.ristopher.com>
1873
1874 * progmodes/compile.el (compilation-error-regexp-alist-alist):
1875 Identify g++ template instantiation trace. (Bug#12287)
1876 (compilation-mode-hook, compilation-start-hook)
1877 (compilation-window-height): Simplify docstrings. (Bug#13379)
1878
1879 2013-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
1880
1881 * mouse.el (mouse-drag-track): Always deactivate the mark before
1882 running the final event's command since that command is in charge of
1883 activating the mark if needed (bug#13523).
1884
1885 2013-02-02 Juri Linkov <juri@jurta.org>
1886
1887 * replace.el (perform-replace): Move let-bindings of isearch-*
1888 variables deeper to the loop that searches for the next match.
1889 Add bindings for `isearch-nonincremental' and `isearch-adjusted'.
1890 Use `isearch-search-fun-default' instead of `isearch-search-fun'.
1891 (Bug#13579)
1892
1893 * isearch.el (isearch-search-fun-default): Check for null
1894 first element of isearch-cmds as a precaution when it's used
1895 with inactive isearch.
1896
1897 2013-02-02 Andrew W. Nosenko <andrew.w.nosenko@gmail.com> (tiny change)
1898
1899 * net/tramp.el (tramp-check-for-regexp): Avoid "Args out of range"
1900 error when buffer in question is narrowed so position 1 is out of
1901 visible part.
1902
1903 2013-02-02 Glenn Morris <rgm@gnu.org>
1904
1905 * textmodes/remember.el (remember-clipboard): Doc fix.
1906
1907 2013-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
1908
1909 * progmodes/make-mode.el (makefile-fill-paragraph): Reset syntax-table
1910 properties (bug#13179).
1911
1912 2013-02-02 Juri Linkov <juri@jurta.org>
1913
1914 * progmodes/grep.el (grep-regexp-alist): Use variable grep-match-face
1915 instead of hard-coded default face `match'. (Bug#9438)
1916
1917 2012-02-01 Christopher Schmidt <christopher@ch.ristopher.com>
1918
1919 * vc/vc-arch.el (vc-arch-registered):
1920 * vc/vc-bzr.el (vc-bzr-registered):
1921 * vc/vc-cvs.el (vc-cvs-registered):
1922 * vc/vc-git.el (vc-git-registered):
1923 * vc/vc-hg.el (vc-hg-registered):
1924 * vc/vc-mtn.el (vc-mtn-registered):
1925 * vc/vc-svn.el (vc-svn-registered): Suppress load messages.
1926 (Bug#13139)
1927
1928 * info.el (Info-next-reference, Info-prev-reference): Add numeric
1929 prefix argument. (Bug#11656)
1930
1931 2013-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
1932
1933 * help-fns.el (help-split-fundoc): Don't insert byte-compiled body.
1934
1935 2013-02-01 Glenn Morris <rgm@gnu.org>
1936
1937 * vc/vc-hooks.el (vc-menu-map): Disable vc-rollback menu item
1938 if the backend is known not to support it.
1939
1940 * imenu.el (imenu-default-create-index-function):
1941 Tweak infinite loop test to check for forward motion as well as none.
1942
1943 2013-02-01 Alex Harsanyi <AlexHarsanyi@gmail.com>
1944
1945 * net/soap-client.el (soap-invoke): Encode the string for
1946 `url-request-data' as UTF-8.
1947 Fixes <http://code.google.com/p/emacs-soap-client/issues/detail?id=16>.
1948
1949 2013-02-01 Glenn Morris <rgm@gnu.org>
1950
1951 * calc/calc-help.el (calc-view-news): Use view-emacs-news.
1952
1953 * calc/README, calc/README.prev: Rename/merge to etc/CALC-NEWS.
1954
1955 2013-01-31 Michael Albinus <michael.albinus@gmx.de>
1956
1957 * net/tramp.el (tramp-tramp-file-p): Comment check for
1958 `string-as-unibyte'. The function does not exist on XEmacs, and
1959 likely we need another approach.
1960
1961 * net/tramp-sh.el (tramp-compute-multi-hops): Check, whether
1962 `tramp-gw-*' variables are bound.
1963
1964 2013-01-31 Glenn Morris <rgm@gnu.org>
1965
1966 * files.el (basic-save-buffer-2): Choose coding system for
1967 writing the file before backing it up, to reduce delay between
1968 backing up and writing the new version. (Bug#13522)
1969
1970 2013-01-31 Michal Nazarewicz <mina86@mina86.com>
1971
1972 * simple.el (cycle-spacing): New command.
1973 (just-one-space): Use it.
1974
1975 2013-01-31 Stefan Monnier <monnier@iro.umontreal.ca>
1976
1977 * progmodes/opascal.el: Rename from delphi.el. Use lexical-binding.
1978 (opascal-newline-always-indents): Remove custom.
1979 (opascal-tab, opascal-newline): Remove commands.
1980 (opascal-new-comment-line): Insert "\n" instead of calling newline.
1981 (opascal-mode-map): Keep default bindings for RET and TAB and DEL.
1982 (opascal-save-match-data): Remove, use save-match-data instead.
1983 (opascal-save-state): Use with-silent-modifications.
1984
1985 * progmodes/pascal.el (pascal-mode-syntax-table): Accept //..\n comments
1986 (bug#13585).
1987
1988 2013-01-30 Juri Linkov <juri@jurta.org>
1989
1990 * frame.el (toggle-frame-maximized, toggle-frame-fullscreen):
1991 Use fullboth as an alias for fullscreen. Suggested by Jan Djärv in
1992 <http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00203.html>.
1993
1994 2013-01-30 Stefan Monnier <monnier@iro.umontreal.ca>
1995
1996 * progmodes/make-mode.el (makefile-backslash-region): Don't compute
1997 column if we're just deleting the backslashes.
1998 (makefile-fill-paragraph): Use eolp.
1999
2000 2013-01-30 Michael Albinus <michael.albinus@gmx.de>
2001
2002 * autorevert.el (auto-revert-use-notify): Fix docstring.
2003
2004 2013-01-30 Leo Liu <sdl.web@gmail.com>
2005
2006 * imenu.el (imenu--truncate-items): Fix subalist checking (bug#13576).
2007
2008 2013-01-30 Glenn Morris <rgm@gnu.org>
2009
2010 * mouse.el (mouse-drag-line): Avoid pushing same event onto
2011 unread-command-events twice in some cases. This tries to implement
2012 the 2012-07-26 changes in a different way. (Bug#13560)
2013
2014 2013-01-30 Fabián Ezequiel Gallina <fgallina@cuca>
2015
2016 * progmodes/python.el
2017 (python-pdbtrack-comint-output-filter-function): Enhancements on
2018 stacktrace detection. (thanks @gnovak)
2019
2020 2013-01-30 Stefan Monnier <monnier@iro.umontreal.ca>
2021
2022 * jit-lock.el (jit-lock-stealth-chunk-start): Don't widen (bug#13542).
2023 (jit-lock-mode, jit-lock-functions, jit-lock-context-unfontify-pos):
2024 Use defvar-local.
2025 (jit-lock-register): Use setq-local.
2026
2027 2013-01-30 Jay Belanger <jay.p.belanger@gmail.com>
2028
2029 * calc-units.el (math-default-units-table): Remove initial value.
2030 (calc-convert-units): Treat expressions where all the units cancel as
2031 if they didn't have units.
2032
2033 2013-01-30 Michael Albinus <michael.albinus@gmx.de>
2034
2035 * net/tramp.el (tramp-process-connection-type): Fix docstring.
2036 (tramp-completion-reread-directory-timeout): Fix type.
2037 (tramp-connection-min-time-diff): New defcustom.
2038
2039 * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
2040
2041 2013-01-30 Glenn Morris <rgm@gnu.org>
2042
2043 * imenu.el (imenu-default-create-index-function):
2044 Put back a version of the infinite loop test removed 2013-01-23.
2045
2046 2013-01-30 Fabián Ezequiel Gallina <fgallina@cuca>
2047
2048 * progmodes/python.el (python-shell-parse-command):
2049 Find python-shell-interpreter with modified environment.
2050
2051 2013-01-30 Stefan Monnier <monnier@iro.umontreal.ca>
2052
2053 * emacs-lisp/cl.el (cl-set-getf): Add compatibility alias.
2054
2055 2013-01-29 Alan Mackenzie <acm@muc.de>
2056
2057 Amend to fontify /regexp/s in actions correctly.
2058 * cc-awk.el (c-awk-harmless-char-re, c-awk-harmless-string*-re):
2059 (c-awk-harmless-string*-here-re): Braces, parens and semicolons
2060 are no longer included.
2061 (c-awk-harmless-line-char-re, c-awk-harmless-line-string*-re):
2062 What used to be these variables without "-line" in the name.
2063 (c-awk-neutral-re): { is no longer neutral. Escaped newlines now are.
2064 (c-awk-non-arith-op-bra-re): Now also matches {.
2065 (c-awk-pre-exp-alphanum-kwd-re): New regexp to match "print",
2066 "return", and "case".
2067 (c-awk-kwd-regexp-sign-re): New, to match "print", etc., followed
2068 by /.
2069 (c-awk-syntax-tablify-/): Check special cases "print /re/", etc.
2070 (c-awk-set-syntax-table-properties): Extend FSM to handle {,},(,),;.
2071
2072 2013-01-29 Michael Albinus <michael.albinus@gmx.de>
2073
2074 * autorevert.el (auto-revert-use-notify):
2075 Use `custom-initialize-default' for initialization. (Bug#13583)
2076
2077 * net/ange-ftp.el (ange-ftp-skip-msgs): Add another message.
2078
2079 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
2080 Catch `suppress'. Otherwise, `tramp-run-real-handler' might be called
2081 in `tramp-file-name-handler'.
2082 (tramp-gw-tunnel-method, tramp-gw-socks-method): Declare for
2083 compatibility.
2084 (tramp-compute-multi-hops): Check, whether
2085 `tramp-gw-tunnel-method' and `tramp-gw-socks-method' are non-nil.
2086
2087 2013-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
2088
2089 * hi-lock.el (hi-lock-unface-buffer): Don't assume `face' is a symbol
2090 (bug#13297).
2091
2092 2013-01-27 Dmitry Gutov <dgutov@yandex.ru>
2093
2094 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Remove some
2095 checks made superfluous by the \_< operator.
2096 * progmodes/ruby-mode.el (ruby-move-to-block): Work with (maybe
2097 temporarily) broken indentation.
2098 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
2099 Highlight nested constants, too. \_< broke that.
2100
2101 2013-01-27 Nobuyoshi Nakada <nobu@ruby-lang.org>
2102
2103 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Use "\\_<"
2104 instead of "\\b".
2105
2106 2013-01-27 Michael Albinus <michael.albinus@gmx.de>
2107
2108 * autorevert.el (auto-revert-handler): Notifications which result
2109 from a saved file shall not be taken into account. (Bug#13557)
2110
2111 2013-01-26 Andreas Schwab <schwab@linux-m68k.org>
2112
2113 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Add optional
2114 parameter BAR-NOT-SYMBOL to control syntax of | for font-lock.
2115 (lisp-mode): Pass t for it. (Bug#13556)
2116
2117 2013-01-25 Alan Mackenzie <acm@muc.de>
2118
2119 AWK Mode: Fix indentation bug at top level. Bug #12274.
2120
2121 * progmodes/cc-engine.el (c-guess-basic-syntax): Move CASE 5P to
2122 just before CASE 5D.
2123
2124 2013-01-25 Dmitry Antipov <dmantipov@yandex.ru>
2125
2126 * net/socks.el (socks-nslookup-host): Use string-to-number.
2127
2128 2013-01-25 Michael Albinus <michael.albinus@gmx.de>
2129
2130 * autorevert.el (auto-revert-remote-files)
2131 (auto-revert-notify-exclude-dir-regexp): New defcustoms.
2132 (auto-revert-notify-enabled, auto-revert-use-notify)
2133 (auto-revert-notify-watch-descriptor-hash-list)
2134 (auto-revert-notify-modified-p, auto-revert-notify-event-p)
2135 (auto-revert-notify-event-descriptor)
2136 (auto-revert-notify-event-action)
2137 (auto-revert-notify-event-file-name): Doc fix.
2138 (global-auto-revert-mode): Reorder checks.
2139 (auto-revert-notify-rm-watch): Respect changed values of
2140 `auto-revert-notify-watch-descriptor-hash-list'.
2141 (auto-revert-notify-add-watch): Check for
2142 `auto-revert-notify-exclude-dir-regexp'. Adapt filters for
2143 `inotify-add-watch'. Watch `default-directory' instead of
2144 `buffer-file-name'. `auto-revert-notify-watch-descriptor-hash-list'
2145 has a changed meaning now. (Bug#13540)
2146 (auto-revert-notify-handler): Change implementation wrt events
2147 returning from a directory.
2148 (auto-revert-handler): Reorder implementation for checks of remote
2149 files.
2150 (auto-revert-buffers): Fix parentheses error.
2151
2152 2013-01-25 Fabián Ezequiel Gallina <fgallina@cuca>
2153
2154 * progmodes/python.el: Enhancements to header documentation about
2155 skeletons. (Bug#5716)
2156
2157 * imenu.el (imenu-default-create-index-function): Remove useless
2158 infinite loop check. (Bug#13438)
2159
2160 2013-01-25 Alan Mackenzie <acm@muc.de>
2161
2162 Fix a bug in the state cache mechanism. Refactor this a bit.
2163
2164 * progmodes/cc-engine.el (c-parse-state-get-strategy): Remove the
2165 `cache-pos' element from the return value.
2166 (c-append-lower-brace-pair-to-state-cache): "Narrow" to end of
2167 buffer to enable proper searching from beyond HERE. Amend the
2168 test for detecting the sought brace pair. Amend the value written
2169 to the "brace desert cache" when the brace isn't found.
2170 (c-remove-stale-state-cache): Rename `good-pos' to `start-point',
2171 and several other variables analogously.
2172 (c-remove-stale-state-cache-backwards): Change `cache-pos' from a
2173 parameter to a locally calculated variable.
2174 (c-parse-state-1): Change the calling conventions to the two
2175 defuns involving `cache-pos'.
2176
2177 2013-01-25 Chong Yidong <cyd@gnu.org>
2178
2179 * xml.el (xml-entity-or-char-ref-re): Fix regexp.
2180
2181 2013-01-24 Aaron Ecay <aaronecay@gmail.com> (tiny change)
2182
2183 * paren.el (show-paren-function): Make sure to set 'priority and
2184 'face only if the overlay does exist.
2185
2186 2013-01-24 Michael Albinus <michael.albinus@gmx.de>
2187
2188 * net/tramp.el (tramp-tramp-file-p): Check, whether NAME is unibyte.
2189
2190 * net/tramp-sh.el (tramp-sh-handle-set-file-acl): Do not suppress
2191 basic attributes.
2192 (tramp-sh-handle-set-file-acl): Improve error checking.
2193
2194 2013-01-24 Dmitry Antipov <dmantipov@yandex.ru>
2195
2196 * doc-view.el (doc-view-display): Force mode line update until all
2197 document is converted. Suggested by Stefan Monnier (Bug#13164).
2198
2199 2013-01-23 Bastien Guerry <bzg@gnu.org>
2200
2201 * paren.el (show-paren-function): Make sure an overlay exists
2202 before trying to delete it. Also use `pos' as a position only
2203 when it is an integer.
2204
2205 2013-01-23 Dmitry Antipov <dmantipov@yandex.ru>
2206
2207 * play/gametree.el (gametree-break-line-here): Use point-marker.
2208
2209 2013-01-22 Michael Albinus <michael.albinus@gmx.de>
2210
2211 * net/tramp-cmds.el (tramp-bug, tramp-append-tramp-buffers):
2212 Mark descriptive parts with `display' property.
2213
2214 2013-01-21 Agustín Martín Domingo <agustin.martin@hispalinux.es>
2215
2216 * textmodes/ispell.el (ispell-hunspell-dictionary-equivs-alist):
2217 New variable to map standard dict names to hunspell ones.
2218 (ispell-set-spellchecker-params): Make sure specific dict names
2219 are used for standard dicts with hunspell.
2220
2221 2013-01-21 Tassilo Horn <tsdh@gnu.org>
2222
2223 * textmodes/reftex-cite.el (reftex-format-citation): Add format
2224 chars for note (%N) and url (%U).
2225 * textmodes/reftex-vars.el (reftex-cite-format): Document them.
2226
2227 2013-01-21 Juri Linkov <juri@jurta.org>
2228
2229 * frame.el: Bind `f10' in `esc-map' to `toggle-frame-maximized'
2230 in addition to existing separate binding `meta f10' in `global-map'.
2231 (Bug#13484)
2232
2233 2013-01-21 Michael Albinus <michael.albinus@gmx.de>
2234
2235 Improve XEmacs compatibility.
2236
2237 * net/tramp.el (tramp-replace-environment-variables): Make it a defun.
2238
2239 * net/tramp-adb.el (top): Require `time-date'.
2240 (tramp-adb-ls-output-time-less-p): Use `tramp-time-less-p'.
2241 (tramp-adb-handle-copy-file, tramp-adb-handle-rename-file):
2242 Use `tramp-file-name-handler'.
2243 (tramp-adb-maybe-open-connection):
2244 Use `tramp-compat-set-process-query-on-exit-flag'.
2245
2246 * net/tramp-sh.el (tramp-sh-handle-file-acl):
2247 Use `tramp-compat-funcall'.
2248
2249 * net/tramp-smb.el (tramp-smb-handle-file-acl): Use `looking-at' and
2250 `tramp-compat-funcall'.
2251
2252 2013-01-21 Jürgen Hötzel <juergen@archlinux.org>
2253
2254 * net/tramp-adb.el (tramp-adb-handle-start-file-process): Complete
2255 reimplementation using "adb shell command ..." instead of running
2256 remote shell interactively.
2257
2258 2013-01-20 Glenn Morris <rgm@gnu.org>
2259
2260 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
2261 Add native profiler menu entries.
2262
2263 * profiler.el (profiler-running-p): New function.
2264 (profiler-cpu-profile): Use profiler-running-p.
2265 (profiler-report-mode-map): Add some more menu entries.
2266
2267 2013-01-19 Glenn Morris <rgm@gnu.org>
2268
2269 * mail/unrmail.el (unrmail): Do not mangle the mbox From line;
2270 fixes 2012-12-07 change. (Bug#13499)
2271
2272 2013-01-19 Leo Liu <sdl.web@gmail.com>
2273
2274 * dired.el (dired-get-marked-files): Prune erroneous values due to
2275 last change. (Bug#13152)
2276
2277 2013-01-19 Glenn Morris <rgm@gnu.org>
2278
2279 * progmodes/etags.el (tags-table-check-computed-list):
2280 Preserve point in tags buffer. (Bug#13412)
2281
2282 * emacs-lisp/lisp-mode.el (lisp-indent-function): Doc fix.
2283
2284 2013-01-19 Christian Wittern <cwittern@gmail.com> (tiny change)
2285 Chong Yidong <cyd@gnu.org>
2286
2287 * image-mode.el (image-next-file, image-previous-file):
2288 New commands (Bug#8453).
2289 (image-mode-map): Bind them to n and p.
2290 (image-mode--images-in-directory): New helper function.
2291
2292 2013-01-19 Chong Yidong <cyd@gnu.org>
2293
2294 * image-mode.el (image-mode-fit-frame): Add a frame argument.
2295 Suggested by Drew Adams (Bug#7730). Handle window decorations;
2296 save and restore the old window configuration.
2297
2298 2013-01-18 Leo Liu <sdl.web@gmail.com>
2299
2300 * progmodes/js.el: Tweak autoload cookie for alias.
2301
2302 2013-01-17 Michael Albinus <michael.albinus@gmx.de>
2303
2304 * autorevert.el (auto-revert-notify-watch-descriptor): Make it
2305 buffer local, again. This was lost with the fix on 2013-01-12.
2306
2307 2013-01-17 Jürgen Hötzel <juergen@archlinux.org>
2308
2309 * eshell/esh-util.el (eshell-path-env): Make it buffer local, in
2310 order to support several eshell buffers in parallel.
2311
2312 2013-01-17 Michael Albinus <michael.albinus@gmx.de>
2313
2314 * autorevert.el (auto-revert-use-notify): In the :set function, do
2315 not modify `kill-buffer-hook'.
2316 (auto-revert-notify-rm-watch):
2317 Remove `auto-revert-notify-rm-watch' from `kill-buffer-hook'.
2318 (auto-revert-notify-add-watch): Do not call
2319 `auto-revert-notify-rm-watch', but add it to a buffer local
2320 `kill-buffer-hook'.
2321
2322 2013-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
2323
2324 * emacs-lisp/trace.el (trace--read-args): Use a closure and an honest
2325 call to `eval' rather than a backquoted lambda.
2326
2327 2013-01-15 Stefan Monnier <monnier@iro.umontreal.ca>
2328
2329 * emacs-lisp/nadvice.el (advice--tweak): Make it possible for `tweak'
2330 to return an explicit nil.
2331 (advice--remove-function): Change accordingly.
2332
2333 * emacs-lisp/advice.el (ad-preactivate-advice): Adjust the cleanup to
2334 the use of nadvice.el.
2335
2336 * progmodes/which-func.el (which-function): Silence imenu errors
2337 (bug#13433).
2338
2339 2013-01-15 Michael R. Mauger <mmaug@yahoo.com>
2340
2341 * progmodes/sql.el: (sql-imenu-generic-expression):
2342 (sql-mode-font-lock-object-name): Match schema qualified names.
2343 (sql-connect): Use string keys.
2344 (sql-product-interactive): Wait for interpreter prompt.
2345 (sql-comint-oracle): Set process coding based on NLS_LANG.
2346
2347 2013-01-15 Michael R. Mauger <mmaug@yahoo.com>
2348
2349 * progmodes/sql.el (sql-output-to-send): Remove, unused.
2350 (sql-interactive-remove-continuation-prompt):
2351 (sql-send-magic-terminator, sql-interactive-mode): Remove references.
2352
2353 2013-01-14 Leo Liu <sdl.web@gmail.com>
2354
2355 * calendar/calendar.el (calendar-redraw): Sync window-point and point.
2356 (Bug#13420)
2357
2358 2013-01-14 Glenn Morris <rgm@gnu.org>
2359
2360 * progmodes/compile.el (compilation-error-regexp-alist-alist):
2361 Fix interpretation of gnu line.col1-col2 format. (Bug#13335)
2362
2363 2013-01-13 Fabián Ezequiel Gallina <fgallina@cuca>
2364
2365 * progmodes/python.el (python-nav-end-of-statement):
2366 Fix cornercase when handling multiline strings.
2367
2368 2013-01-13 Richard Stallman <rms@gnu.org>
2369
2370 * mail/sendmail.el (mail-position-on-field): Add doc string.
2371
2372 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
2373 Get current message boundaries and pass them to
2374 message-forward-make-body-mime. Minor style changes.
2375
2376 2013-01-13 Eli Zaretskii <eliz@gnu.org>
2377
2378 * cus-start.el (all): Avoid warnings about
2379 scroll-bar-adjust-thumb-portion on platforms where it is not defined.
2380
2381 2013-01-11 Jan Djärv <jan.h.d@swipnet.se>
2382
2383 * cus-start.el (all): Add scroll-bar-adjust-thumb-portion.
2384
2385 2013-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
2386
2387 * jit-lock.el (jit-lock-debug-mode): New minor mode.
2388 (jit-lock--debug-fontifying): New var.
2389 (jit-lock--debug-fontify): New function.
2390 * subr.el (condition-case-unless-debug): Don't prevent catching the
2391 error, just let the debbugger run.
2392 * emacs-lisp/timer.el (timer-event-handler): Don't prevent debugging
2393 timer code and don't drop errors silently.
2394
2395 2013-01-12 Michael Albinus <michael.albinus@gmx.de>
2396
2397 * autorevert.el (auto-revert-notify-watch-descriptor): Give it
2398 `permanent-local' property.
2399 (auto-revert-notify-handler): Use `file-equal-p'.
2400
2401 2013-01-12 Eli Zaretskii <eliz@gnu.org>
2402
2403 * autorevert.el (auto-revert-notify-handler): Fix filtering of
2404 file notification by ACTION. For filtering by file name, compare
2405 only the non-directory part of the file name.
2406
2407 2013-01-12 Stefan Monnier <monnier@iro.umontreal.ca>
2408
2409 * autorevert.el: Use cl-lib instead of cl.
2410
2411 * vc/vc-bzr.el (vc-bzr--sanitize-header): New function (bug#13307).
2412 (vc-bzr-checkin): Use it.
2413 * vc/log-edit.el (log-edit-extract-headers): Don't presume FUNCTION
2414 will preserve match-data.
2415
2416 2013-01-11 Felix H. Dahlke <fhd@ubercode.de>
2417
2418 * progmodes/js.el: Fix multiline declarations's indentation (bug#8576).
2419 (js--declaration-keyword-re): New var.
2420 (js--multi-line-declaration-indentation): New function.
2421 (js--proper-indentation): Use it.
2422
2423 2013-01-11 Aaron S. Hawley <Aaron.Hawley@vtinfo.com>
2424
2425 * calc/calc.el (calc-highlight-selections-with-faces)
2426 (calc-dispatch):
2427 * comint.el (comint-history-isearch-message):
2428 * emacs-lisp/edebug.el (edebug-read, edebug-eval-defun):
2429 * ffap.el (ffap-string-at-point-region, ffap-next)
2430 (ffap-string-at-point, ffap-string-around)
2431 (ffap-copy-string-as-kill, ffap-highlight-overlay)
2432 (ffap-literally):
2433 * font-lock.el (font-lock-keywords-alist)
2434 (font-lock-removed-keywords-alist):
2435 * help-mode.el (help-xref-symbol-regexp):
2436 * info.el (Info-find-emacs-command-nodes):
2437 * international/mule.el (add-to-coding-system-list):
2438 * isearch.el (isearch-message-function, isearch-fail-pos):
2439 * misearch.el (multi-isearch-next-buffer-function):
2440 * newcomment.el (comment-box):
2441 * printing.el (pr-txt-printer-alist, pr-ps-printer-alist)
2442 (pr-setting-database):
2443 * progmodes/cc-fonts.el (c-font-lock-keywords-3)
2444 (c++-font-lock-keywords-3, objc-font-lock-keywords-3)
2445 (java-font-lock-keywords-3, idl-font-lock-keywords-3)
2446 (pike-font-lock-keywords-3):
2447 * progmodes/compile.el (compile):
2448 * progmodes/etags.el (tags-table-files)
2449 (tags-table-files-function, tags-included-tables-function):
2450 * progmodes/gdb-mi.el (gdb, gdb-setup-windows)
2451 (gdb-restore-windows):
2452 * ps-print.el (ps-even-or-odd-pages, ps-spool-buffer-with-faces)
2453 (ps-n-up-filling-database):
2454 * server.el (server-buffer, server-log):
2455 * simple.el (newline, delete-backward-char, delete-forward-char)
2456 (minibuffer-history-isearch-message, kill-line, track-eol)
2457 (temporary-goal-column):
2458 * textmodes/flyspell.el (flyspell-mark-duplications-flag)
2459 (flyspell-default-deplacement-commands):
2460 * textmodes/ispell.el (ispell-accept-output):
2461 * textmodes/sgml-mode.el (html-tag-help):
2462 * vc/compare-w.el (compare-ignore-whitespace)
2463 (compare-ignore-case, compare-windows-dehighlight):
2464 * vc/diff.el (diff):
2465 * whitespace.el (whitespace-point)
2466 (whitespace-font-lock-refontify, whitespace-bob-marker)
2467 (whitespace-eob-marker): Fix ambiguous doc string cross-reference(s).
2468
2469 2013-01-11 Michael Albinus <michael.albinus@gmx.de>
2470
2471 * autorevert.el (top): Require 'cl in order to pacify byte compiler.
2472 (auto-revert-notify-rm-watch): Ignore errors.
2473 (auto-revert-notify-add-watch): Ignore errors. Use '(modify) for
2474 inotify, and '(size last-write-time) for w32notify.
2475 Set buffer-local `auto-revert-use-notify' to nil when adding a file
2476 watch fails - this is a fallback to the file modification check.
2477 (auto-revert-notify-event-p, auto-revert-notify-event-descriptor)
2478 (auto-revert-notify-event-action)
2479 (auto-revert-notify-event-file-name): New defuns.
2480 (auto-revert-notify-handler): Use them. Implement first
2481 plausibility checks.
2482 (auto-revert-handler): Handle also `auto-revert-tail-mode'.
2483
2484 2013-01-11 Julien Danjou <julien@danjou.info>
2485
2486 * color.el (color-rgb-to-hsv): Fix conversion computing in case min and
2487 max are almost equal. Also return the correct value for V which is
2488 already between 0 and 1.
2489
2490 2013-01-11 Dmitry Antipov <dmantipov@yandex.ru>
2491
2492 * emacs-lisp/ert.el (ert-run-test): Use point-max-marker.
2493
2494 2013-01-11 Eli Zaretskii <eliz@gnu.org>
2495
2496 * autorevert.el (auto-revert-notify-rm-watch)
2497 (auto-revert-notify-add-watch): Fix typos in w32notify function
2498 names.
2499
2500 2013-01-10 Michael Albinus <michael.albinus@gmx.de>
2501
2502 * autorevert.el (auto-revert-notify-enabled): Move up.
2503 (auto-revert-use-notify): New defcustom.
2504 (auto-revert-mode, global-auto-revert-mode)
2505 (auto-revert-notify-add-watch, auto-revert-handler)
2506 (auto-revert-buffers): Use `auto-revert-use-notify' instead of
2507 `auto-revert-notify-enabled'.
2508
2509 2013-01-10 Elias Pipping <pipping@exherbo.org>
2510
2511 * files.el (auto-mode-alist): Use doc-view for djvu files (bug#13164).
2512 * doc-view.el (doc-view-document->bitmap):
2513 Use doc-view-single-page-converter-function instead of
2514 single-page-converter arg; adjust callers.
2515
2516 2013-01-10 Feng Li <fengli@gmail.com> (tiny change)
2517
2518 * progmodes/which-func.el (which-function): Understand Semantic's use
2519 of overlays in imenu--index-alist.
2520
2521 2013-01-10 Wolfgang Jenkner <wjenkner@inode.at>
2522
2523 * man.el: Handle different "man -k" behaviors (bug#13160). Use utf-8.
2524 (Man-man-k-use-anchor): New var.
2525 (Man-parse-man-k): New function.
2526 (Man-completion-table): Use it.
2527 (man): Flush the completion cache between uses.
2528
2529 2013-01-10 Michael Albinus <michael.albinus@gmx.de>
2530
2531 * autorevert.el: Add file watch support.
2532 (auto-revert-notify-enabled): New defconst.
2533 (auto-revert-notify-watch-descriptor-hash-list)
2534 (auto-revert-notify-watch-descriptor)
2535 (auto-revert-notify-modified-p): New defvars.
2536 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
2537 (auto-revert-notify-handler): New defuns.
2538 (auto-revert-mode, global-auto-revert-mode): Remove file watches
2539 when mode is disabled.
2540 (auto-revert-handler): Check for `auto-revert-notify-modified-p'.
2541 (auto-revert-buffers): Add file watches for active buffers.
2542
2543 2013-01-10 Dmitry Antipov <dmantipov@yandex.ru>
2544
2545 * cus-start.el (toplevel): Only allow float values for
2546 scroll-up-aggressively and scroll-down-aggressively.
2547 Allow any number for line-spacing.
2548
2549 2013-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
2550
2551 * doc-view.el (doc-view-pdfdraw-program): Allow "pdfdraw" name.
2552 (doc-view-pdf->png-converter-function): Use mupdf if available.
2553 (doc-view-djvu->png-converter-function)
2554 (doc-view-ps->png-converter-function): Remove.
2555 (doc-view--image-file-pattern): Replace doc-view--image-file-extension.
2556 (doc-view-goto-page, doc-view-convert-current-doc, doc-view-display)
2557 (doc-view-already-converted-p): Adjust accordingly.
2558 (doc-view-mode-p): Simplify.
2559 (doc-view-enlarge): Use setq-local.
2560 (doc-view-pdf->png-converter-ghostscript)
2561 (doc-view-djvu->png-converter-ddjvu)
2562 (doc-view-pdf->png-converter-mupdf): Rework to call
2563 doc-view-start-process directly.
2564 (doc-view-pdf/ps->png): Simplify accordingly.
2565 (doc-view-pdf->png-1, doc-view-djvu->png-1): Remove.
2566 (doc-view-document->bitmap): Rename from doc-view-document->png.
2567 (doc-view-convert-current-doc): Merge pdf and djvu cases.
2568 (doc-view-set-slice-from-bounding-box): Fix completion table.
2569 (doc-view-mode): Use add-hook for after-revert-hook.
2570
2571 2013-01-10 Glenn Morris <rgm@gnu.org>
2572
2573 * emacs-lisp/authors.el (authors-ignored-files)
2574 (authors-valid-file-names, authors-renamed-files-alist):
2575 Add some more entries.
2576
2577 2013-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
2578
2579 * image-mode.el (image-mode-winprops): Don't throw away the fallback
2580 `t' pseudo-window entry.
2581
2582 2013-01-10 Alan Mackenzie <acm@muc.de>
2583
2584 Fix bugs in the c-parse-state mechanism. Reuse some markers
2585 instead of continually generating new ones.
2586
2587 * progmodes/cc-engine.el (c-state-old-cpp-beg-marker)
2588 (c-state-old-cpp-end-marker): New variables.
2589 (c-append-lower-brace-pair-to-state-cache): Start a backward
2590 search for "}" definitively outside CPP constructs.
2591 (c-remove-stale-state-cache): Inform the caller of a need to
2592 search back for a brace pair in certain circumstances.
2593 (c-state-maybe-marker): New macro.
2594 (c-parse-state): Reuse markers when appropriate.
2595
2596 2013-01-10 Glenn Morris <rgm@gnu.org>
2597
2598 * simple.el (execute-extended-command): Doc fix.
2599 Bind prefix-arg around read-extended-command, for prompt. (Bug#13395)
2600
2601 2013-01-10 Chong Yidong <cyd@gnu.org>
2602
2603 * faces.el (read-face-name): Doc fix.
2604
2605 2013-01-10 Roland Winkler <winkler@gnu.org>
2606
2607 * emacs-lisp/crm.el: Allow any regexp for separators.
2608 (crm-default-separator): All spaces around the default comma separator.
2609 (crm--completion-command): New macro.
2610 (crm-completion-help, crm-complete, crm-complete-word): Use it.
2611 (crm-complete-and-exit): Handle non-single-char separators.
2612
2613 2013-01-09 Elias Pipping <pipping@lavabit.com>
2614
2615 * doc-view.el: Add support for DjVu (bug#13164).
2616 (doc-view-djvu->png-converter-function): New config var.
2617 (doc-view-single-page-converter-function, doc-view--image-type)
2618 (doc-view--image-file-extension): New vars.
2619 (doc-view-mode): Initialize them.
2620 (doc-view-goto-page): Use them.
2621 (doc-view-mode-p): Add support for ddjvu.
2622 (doc-view-djvu->png-converter-ddjvu, doc-view-djvu->png-1)
2623 (doc-view-set-up-single-converter): New funs.
2624 (doc-view-pdf/ps->png): Extend for djvu.
2625 (doc-view-document->png): Rename from doc-view-pdf->png.
2626 (doc-view-convert-current-doc): Handle djvu.
2627 (doc-view-insert-image, doc-view-display)
2628 (doc-view-already-converted-p): Don't hardcode png.
2629 (doc-view-set-doc-type): Recognize djvu docs.
2630
2631 2013-01-09 Elias Pipping <pipping@lavabit.com>
2632
2633 * doc-view.el: Add support for mupdf converter (bug#13164).
2634 (doc-view-pdfdraw-program, doc-view-pdf->png-converter-function)
2635 (doc-view-ps->png-converter-function): New config vars.
2636 (doc-view-pdf->png-converter-ghostscript)
2637 (doc-view-ps->png-converter-ghostscript)
2638 (doc-view-pdf->png-converter-mupdf): New functions.
2639 (doc-view-pdf/ps->png, doc-view-pdf->png-1): Use them.
2640
2641 2013-01-09 Jürgen Hötzel <juergen@archlinux.org>
2642
2643 * net/tramp.el (tramp-eshell-directory-change): Check remote-path
2644 first in session cache: When `tramp-own-remote-path' is in
2645 `tramp-remote-path', the remote path is only set in the session
2646 cache.
2647
2648 2013-01-09 Glenn Morris <rgm@gnu.org>
2649
2650 * emacs-lisp/trace.el (trace-function-foreground)
2651 (trace-function-background): Doc fix.
2652
2653 2013-01-09 Juri Linkov <juri@jurta.org>
2654
2655 * international/mule-cmds.el (read-char-by-name): Move let-binding
2656 of completion-ignore-case around completing-read to fix regression
2657 exhibited by the test case `C-x 8 RET *acc TAB' and caused by
2658 `string-match-p' using the nil value of `case-fold-search' and
2659 `completion-ignore-case' in `completion-pcm--all-completions'.
2660 (Bug#12615).
2661
2662 2013-01-09 Glenn Morris <rgm@gnu.org>
2663
2664 * progmodes/compile.el (compilation-parse-errors):
2665 Fix typo. (Bug#13369)
2666
2667 2013-01-09 Vitalie Spinu <spinuvit@gmail.com> (tiny change)
2668
2669 * comint.el (comint-send-input): Check size of buffer before
2670 waiting for process output, in case already accepted. (Bug#13290)
2671
2672 2013-01-09 Paul Eggert <eggert@cs.ucla.edu>
2673
2674 Spelling fixes.
2675 * net/tramp-adb.el (tramp-adb-get-toolbox):
2676 Fix misspelling of 'unknown'.
2677
2678 2013-01-08 Juri Linkov <juri@jurta.org>
2679
2680 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
2681 * progmodes/flymake.el (flymake-errline, flymake-warnline):
2682 Use underline style wave on terminals that support it. (Bug#13000)
2683
2684 2013-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
2685
2686 * emacs-lisp/pcase.el (pcase--split-equal): Also take advantage if
2687 the predicate returns nil.
2688
2689 * simple.el: Use lexical-binding.
2690 (primitive-undo): Use pcase.
2691 (minibuffer-history-isearch-push-state): Use a closure.
2692
2693 2013-01-08 Aaron S. Hawley <aaron.s.hawley@gmail.com>
2694
2695 * simple.el (primitive-undo): Move from undo.c.
2696
2697 2013-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
2698
2699 * vc/pcvs.el (cvs-cleanup-collection): Extend meaning of `rm-handled'.
2700 (cvs-mode-remove-handled): Use it (bug#13380).
2701
2702 * emacs-lisp/nadvice.el (advice--tweak): New function.
2703 (advice--remove-function, advice--subst-main): Use it.
2704
2705 * emacs-lisp/advice.el: Update commentary.
2706
2707 2013-01-08 Michael Albinus <michael.albinus@gmx.de>
2708
2709 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
2710 Remove spurious entry.
2711
2712 2013-01-08 Glenn Morris <rgm@gnu.org>
2713
2714 * net/tramp.el (tramp-default-host-alist): Add :version.
2715
2716 2013-01-08 Juri Linkov <juri@jurta.org>
2717
2718 * info.el (Info-read-node-name-2): Don't duplicate suffixes for
2719 single completion. (Bug#12456)
2720 (info--manual-names): Expand node completions into an explicit list
2721 before appending it to another list. Filter out internal buffers
2722 with the leading space in the buffer name. (Bug#10771)
2723
2724 2013-01-08 Juri Linkov <juri@jurta.org>
2725
2726 * info.el (Info-read-node-name-1): Allow empty node name in (FILENAME)
2727 that defaults to the Top node.
2728 (Info-goto-node, Info-read-node-name): Doc fix to mention that
2729 the short format (FILENAME) goes to the Top node.
2730 (Info-build-node-completions): Rename arg `file' to `filename'.
2731 (Bug#13365)
2732
2733 2013-01-07 Bastien Guerry <bzg@gnu.org>
2734
2735 * menu-bar.el (menu-bar-search-documentation-menu):
2736 Use `apropos-user-option' and fix the help message.
2737
2738 2013-01-07 Bastien Guerry <bzg@gnu.org>
2739
2740 * apropos.el (apropos-do-all): Update docstring.
2741 (apropos-user-option-button): New face.
2742 (apropos-user-option): Rename from `apropos-variable' and update
2743 docstring.
2744 (apropos-variable): Rewrite, now show all variables by default.
2745 (apropos-print): Mention "User option" instead of "Variable" when
2746 printing doc for user options. (Bug#13276)
2747
2748 2013-01-07 Jürgen Hötzel <juergen@archlinux.org>
2749
2750 * net/tramp-adb.el (tramp-do-parse-file-attributes-with-ls):
2751 Handle filename correctly, when parsing "source -> target" symlink
2752 output.
2753 (tramp-adb-handle-set-file-times): New defun.
2754
2755 2013-01-07 Stefan Monnier <monnier@iro.umontreal.ca>
2756
2757 * emacs-lisp/advice.el (ad-activate-advised-definition): Refresh the
2758 advice list when the interactive-spec of ad-Advice-* changes.
2759
2760 2013-01-07 Katsumi Yamaoka <yamaoka@jpl.org>
2761
2762 * wid-edit.el (widget-default-get): Work for inlined elements.
2763 (Bug#12670)
2764
2765 2013-01-07 Michael Albinus <michael.albinus@gmx.de>
2766
2767 * net/tramp.el (tramp-default-host-alist): New defcustom.
2768 (tramp-find-host): Use it.
2769 (tramp-eshell-directory-change): Move from tramp-sh.el. Add to
2770 `eshell-directory-change-hook'.
2771
2772 * net/tramp-adb.el (top): Add adb specific entry in
2773 `tramp-default-host-alist'.
2774 (tramp-adb-file-name-host): Remove function.
2775 (tramp-adb-execute-adb-command, tramp-adb-maybe-open-connection):
2776 Use `tramp-file-name-host' instead of `tramp-adb-file-name-host'.
2777
2778 * net/tramp-sh.el: Move eshell integration code to tramp.el.
2779
2780 2013-01-06 Jürgen Hötzel <juergen@archlinux.org>
2781
2782 * net/tramp-adb.el (tramp-methods): Add `tramp-tmpdir' entry.
2783
2784 2013-01-06 Michael Albinus <michael.albinus@gmx.de>
2785
2786 * net/tramp-adb.el (tramp-adb-ls-toolbox-regexp): The file size can
2787 consist of more than one digit.
2788 (tramp-adb-file-name-handler-alist):
2789 Use `tramp-handle-file-exists-p' consistently.
2790 (tramp-adb-file-name-handler): Don't tweak `tramp-default-host'.
2791 (tramp-adb-handle-file-exists-p): Remove function.
2792 (tramp-adb-file-name-host): New defun.
2793 (tramp-adb-execute-adb-command, tramp-adb-maybe-open-connection):
2794 Use it.
2795 (tramp-adb-maybe-open-connection): Set "remote-path" property.
2796
2797 2013-01-06 Chong Yidong <cyd@gnu.org>
2798
2799 * vc/vc.el (vc-next-action): Detect buffer modifications
2800 conflicting with locking VCS operation (Bug#11490).
2801
2802 * vc/vc-hooks.el (vc-after-save): DTRT for locking VCSes.
2803
2804 2013-01-05 Michael Albinus <michael.albinus@gmx.de>
2805
2806 * net/tramp-adb.el (tramp-do-parse-file-attributes-with-ls):
2807 (tramp-adb-handle-directory-files-and-attributes): Fix typos.
2808
2809 2013-01-05 Jürgen Hötzel <juergen@archlinux.org>
2810
2811 * net/tramp-adb.el (tramp-adb-handle-file-attributes): More robust
2812 parsing of ls output using regular expression (handle filenames
2813 with spaces). Use virtual device number.
2814 (tramp-do-parse-file-attributes-with-ls): New defun (Code
2815 cleanup).
2816
2817 2013-01-04 Daiki Ueno <ueno@gnu.org>
2818
2819 * epg.el: Silence byte-compiler warnings.
2820 (epg--start): Use delete-char instead of delete-backward-char.
2821 (epg-wait-for-completion): Pass FRAME arg to redraw-frame.
2822
2823 2013-01-04 Daiki Ueno <ueno@gnu.org>
2824
2825 * epg.el (epg--start): Don't call "tty" program on W32 platforms.
2826 Suggested by Eli Zaretskii <eliz@gnu.org>.
2827
2828 2013-01-04 Michael Albinus <michael.albinus@gmx.de>
2829
2830 * net/tramp-sh.el (tramp-set-file-uid-gid): UID and GID must be
2831 non-negative integers. Otherwise, the default values are used.
2832 (tramp-convert-file-attributes): Convert uid and gid to integers.
2833
2834 2013-01-04 Glenn Morris <rgm@gnu.org>
2835
2836 * term.el (term-handle-colors-array): Ensure face attributes
2837 are fully specified, not nil. (Bug#13337)
2838
2839 * term.el (term-default-fg-color, term-default-bg-color):
2840 Fix custom type.
2841
2842 * progmodes/etags.el (tags-compression-info-list): Doc fix.
2843 (tag-find-file-of-tag-noselect): Check auto-compression-mode
2844 rather than 'jka-compr being loaded. (Bug#13338)
2845
2846 2013-01-04 Wesley Dawson <whd@lavabit.com> (tiny change)
2847
2848 * icomplete.el (icomplete-completions):
2849 Honor icomplete-prospects-height once more following
2850 2012-11-29 changes. (Bug#13224)
2851
2852 2013-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
2853
2854 * subr.el (internal--called-interactively-p--get-frame): Find aliases
2855 of called-interactively-p as well (bug#13237).
2856
2857 * view.el (view--enable, view--disable): Rename from view-mode-enable
2858 and view-mode-disable and assume it's called from view-mode.
2859 (view-mode-enable, view-mode-disable): Redefine as obsolete
2860 compatibility layer above view-mode.
2861 (view-mode-enter): Call `view-mode'.
2862
2863 * files.el (after-find-file): Call `view-mode'.
2864
2865 * doc-view.el (doc-view-scale-internally): New var.
2866 (doc-view-enlarge, doc-view-insert-image): Obey it.
2867
2868 2013-01-03 Daiki Ueno <ueno@gnu.org>
2869
2870 * epg.el (epg--start): Ignore errors when /dev/fd/0 does not
2871 exist. (Bug#13344)
2872
2873 2013-01-03 Glenn Morris <rgm@gnu.org>
2874
2875 * mail/rmail.el (rmail-set-header-1): Ignore case.
2876 Handle multi-line headers. (Bug#13330)
2877
2878 * progmodes/make-mode.el (makefile-fill-paragraph): Add doc.
2879 Handle paragraph starting at beginning of buffer.
2880
2881 * subr.el (eval-after-load): Don't purecopy the form, so that it
2882 can be nconc'd later on; reverts 2009-11-11 change. (Bug#13331)
2883
2884 * emacs-lisp/byte-run.el (defun): Place cl declarations
2885 after any interactive spec. (Bug#13265)
2886
2887 2013-01-02 Andreas Schwab <schwab@linux-m68k.org>
2888
2889 * emacs-lisp/byte-run.el (defmacro): Use same argument parsing as
2890 defun. Don't check for DECL if DOCSTRING isn't a string.
2891 (defun): Likewise.
2892
2893 2013-01-02 Glenn Morris <rgm@gnu.org>
2894
2895 * eshell/em-cmpl.el (eshell-pcomplete):
2896 More thoroughly imitate pcomplete. (Bug#13293)
2897
2898 * files.el (parse-colon-path): Doc fix. (Bug#12351)
2899 Return nil for empty path elements. (Bug#13296)
2900
2901 2013-01-02 Fabián Ezequiel Gallina <fgallina@cuca>
2902
2903 * progmodes/python.el (python-nav-end-of-statement): Rewrite in
2904 order to improve efficiency (Based on Daniel Colascione's
2905 <dancol@dancol.org> patch). (Bug#13182)
2906
2907 2013-01-02 Glenn Morris <rgm@gnu.org>
2908
2909 * vc/log-edit.el (log-edit-header-contents-regexp): Add doc string.
2910
2911 2013-01-02 Andreas Schwab <schwab@linux-m68k.org>
2912
2913 * emacs-lisp/byte-run.el (defmacro): Don't lose final nil if
2914 neither DOCSTRING nor DECL was given. (Bug#13316)
2915
2916 2013-01-02 Michael Albinus <michael.albinus@gmx.de>
2917
2918 * net/tramp-sh.el (tramp-sh-handle-set-file-acl): Add argument to
2919 `error' call.
2920 (tramp-do-copy-or-rename-file): Ignore errors when calling
2921 `set-file-extended-attributes'.
2922
2923 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
2924 Add handler for `file-acl'.
2925 (tramp-smb-handle-file-acl): New defun.
2926
2927 2013-01-02 Jay Belanger <jay.p.belanger@gmail.com>
2928
2929 * calc/README: Mention ISO 8601 week-numbering dates.
2930
2931 2013-01-01 Martin Rudalics <rudalics@gmx.at>
2932
2933 * view.el (view-mode-enable): New argument run-view-mode-hook.
2934 Run view-mode-hook only when it's non-nil (Bug#13315).
2935 (view-mode-enter): Call view-mode-enable with run-view-mode-hook
2936 argument t.
2937
2938 2012-12-31 Jürgen Hötzel <juergen@archlinux.org>
2939
2940 * net/tramp-adb.el (tramp-adb-maybe-open-connection): Handle errors
2941 (No device connected, invalid device name). (Bug #13299)
2942
2943 2012-12-31 Martin Rudalics <rudalics@gmx.at>
2944
2945 * window.el (window-resizable--p): Rename to window-resizable-p.
2946 (window-resize-no-error): New function.
2947
2948 * mail/rmail.el (rmail-maybe-display-summary): Restore behavior
2949 broken in fix from 2012-12-28.
2950
2951 2012-12-31 Stefan Monnier <monnier@iro.umontreal.ca>
2952
2953 * subr.el (special-form-p): Don't signal errors on undef aliases.
2954
2955 2012-12-31 Jay Belanger <jay.p.belanger@gmail.com>
2956
2957 * calc/calc-forms.el (math-parse-date): Try using
2958 `math-parse-iso-date' when it looks like it might be needed.
2959 Allow times of 24:00.
2960 (math-parse-date-validate, math-parse-iso-date-validate): Allow times
2961 of 24:00.
2962
2963 2012-12-30 Glenn Morris <rgm@gnu.org>
2964
2965 * net/mairix.el (rmail, rmail-summary-displayed, rmail-summary):
2966 Remove unnecessary/buggy autoloads (missing interactive). (Bug#13294)
2967 (rmail-summary-displayed, rmail-summary): Declare.
2968 (mairix-rmail-display): Just require rmail.
2969
2970 2012-12-30 Chong Yidong <cyd@gnu.org>
2971
2972 * emacs-lisp/package.el (package-untar-buffer): Improve integrity
2973 check for the tarball contents.
2974
2975 2012-12-30 Matt Fidler <matt.fidler@alcon.com> (tiny change)
2976
2977 * emacs-lisp/package.el (package-untar-buffer): Handle problematic
2978 tarfile content listings (Bug#13136).
2979
2980 2012-12-30 Mark Lillibridge <mark.lillibridge@hp.com>
2981
2982 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
2983 Insert the undecoded text of the message being forwarded. (Bug#9521)
2984
2985 2012-12-30 Michael Albinus <michael.albinus@gmx.de>
2986
2987 * net/tramp-sh.el (tramp-set-file-uid-gid): Convert UID and GID to
2988 integers, if they are real numbers. (Bug#13282)
2989
2990 * net/tramp-sh.el (tramp-sh-handle-set-file-selinux-context):
2991 Return `t' on success.
2992
2993 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
2994 Add handler for `set-file-selinux-context'.
2995
2996 2012-12-29 Michael Albinus <michael.albinus@gmx.de>
2997
2998 * net/tramp-sh.el (tramp-sh-handle-file-acl): Suppress basic attributes.
2999 (tramp-sh-handle-set-file-acl): Return `t' on success.
3000
3001 2012-12-29 Eli Zaretskii <eliz@gnu.org>
3002
3003 * files.el (backup-buffer-copy, basic-save-buffer-2):
3004 If set-file-extended-attributes fails, fall back on set-file-modes
3005 instead of signaling an error. (Bug#13298)
3006 (basic-save-buffer): Likewise.
3007
3008 2012-12-29 Fabián Ezequiel Gallina <fgallina@cuca>
3009
3010 * progmodes/python.el: Support other commands triggering
3011 python-indent-line so indentation cycling continues to work.
3012 (python-indent-trigger-commands): New defcustom.
3013 (python-indent-line): Use it.
3014
3015 2012-12-29 Fabián Ezequiel Gallina <fgallina@cuca>
3016
3017 * progmodes/python.el (python-shell-send-region): Add blank lines
3018 for non sent code so backtraces remain correct.
3019
3020 2012-12-29 Fabián Ezequiel Gallina <fgallina@cuca>
3021
3022 * progmodes/python.el: Remove cl dependency.
3023 (python-syntax-count-quotes): Replace incf call.
3024 (python-fill-string): Replace setf call.
3025
3026 2012-12-29 Damien Cassou <damien.cassou@gmail.com>
3027
3028 * info.el (info-other-window): New arg, for consistency with info.
3029
3030 2012-12-28 Martin Rudalics <rudalics@gmx.at>
3031
3032 * mail/rmail.el (rmail-maybe-display-summary):
3033 Rewrite (Bug#13066).
3034
3035 2012-12-28 Andreas Schwab <schwab@linux-m68k.org>
3036
3037 * epg.el (epg--start): Modify process-environment locally.
3038
3039 2012-12-28 Daiki Ueno <ueno@gnu.org>
3040
3041 * epg.el: Support pinentry-curses.
3042 Suggested by Werner Koch in
3043 <http://lists.gnu.org/archive/html/emacs-devel/2007-02/msg00755.html>.
3044 (epg-agent-file, epg-agent-mtime): New variable.
3045 (epg--start): Record the modified time of gpg-agent socket file,
3046 to restore Emacs frame after pinentry-curses termination.
3047 (epg-wait-for-completion): Restore Emacs frame here.
3048
3049 2012-12-27 Juri Linkov <juri@jurta.org>
3050
3051 * info.el (Info-file-completions): New variable.
3052 (Info-read-node-name-1): Complete node names in the Info file
3053 when a file name is given. Call `Info-build-node-completions'
3054 with a file name.
3055 (Info-build-node-completions): Add new arg `file'. When it is
3056 non-nil, visit it in a temporary buffer and cache its completions in
3057 `Info-current-file-completions'. Move most of the function body to
3058 `Info-build-node-completions-1'.
3059 (Info-build-node-completions-1): New function with the body from
3060 `Info-build-node-completions'. (Bug#12456)
3061
3062 2012-12-27 Juri Linkov <juri@jurta.org>
3063
3064 * frame.el (frame-maximization-style): Remove user option.
3065 (cycle-frame-maximized): Remove function.
3066 (toggle-frame-maximized): Rewrite and bind to M-<f10>.
3067 (toggle-frame-fullscreen): New command bound to <f11> instead of
3068 `toggle-frame-maximized'.
3069 http://lists.gnu.org/archive/html/emacs-devel/2012-12/msg00703.html
3070
3071 2012-12-27 Michael Albinus <michael.albinus@gmx.de>
3072
3073 * net/tramp.el (tramp-handle-file-accessible-directory-p): New defun.
3074
3075 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
3076 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
3077 * net/tramp-sh.el (tramp-sh-file-name-handler-alist): Add handler
3078 for `file-accessible-directory-p'. (Bug#13275)
3079
3080 2012-12-27 Sam Steingold <sds@gnu.org>
3081
3082 * progmodes/cperl-mode.el (cperl-calculate-indent): Do not stagger
3083 continuations, see <http://stackoverflow.com/questions/3582436>.
3084
3085 2012-12-27 Dmitry Gutov <dgutov@yandex.ru>
3086
3087 * progmodes/ruby-mode.el (ruby-indent-beg-re): Only allow "class",
3088 "module" and "def" to have indentation before them.
3089 Regression from 2012-09-07T04:15:56Z!dgutov@yandex.ru (see the new test).
3090
3091 * progmodes/ruby-mode.el: Bump the version to 1.2 (Bug#13200).
3092
3093 2012-12-27 Alan Mackenzie <acm@muc.de>
3094
3095 Speed up fontification where there's large brace blocks.
3096 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Add a limit
3097 to a call of c-beginning-of-decl-1.
3098
3099 2012-12-27 Vitalie Spinu <spinuvit@gmail.com> (tiny change)
3100
3101 * comint.el (comint-adjust-window-point): New function.
3102 (comint-postoutput-scroll-to-bottom):
3103 Call comint-adjust-window-point (Bug#13248).
3104
3105 2012-12-26 Dmitry Gutov <dgutov@yandex.ru>
3106
3107 * progmodes/ruby-mode.el (auto-mode-alist): `purecopy' the
3108 Rakefile regexp.
3109 (auto-mode-alist): Associate .gemspec files with ruby-mode
3110 (https://bugs.ruby-lang.org/issues/5453).
3111
3112 2012-12-26 Jürgen Hötzel <juergen@archlinux.org>
3113
3114 * net/tramp-adb.el (tramp-adb-get-ls-command): New defun.
3115 Suppress coloring, if possible (required for BusyBox based systems like
3116 CyanogenMod).
3117 (tramp-adb-handle-file-attributes)
3118 (tramp-adb-handle-insert-directory)
3119 (tramp-adb-handle-file-name-all-completions): Use it.
3120 (tramp-adb-get-toolbox): New defun. Check for remote shell
3121 implementation (BusyBox or Toolbox).
3122
3123 2012-12-24 Constantin Kulikov <zxnotdead@gmail.com> (tiny change)
3124
3125 * startup.el (initial-buffer-choice): Allow function as value
3126 (Bug#13251).
3127 (command-line-1): Handle case where initial-buffer-choice
3128 specifies a function.
3129 * server.el (server-execute): Handle case where
3130 initial-buffer-choice specifies a function.
3131
3132 2012-12-24 Lars Ingebrigtsen <larsi@gnus.org>
3133
3134 * mail/smtpmail.el (smtpmail-try-auth-method): Refactored out into
3135 its own function.
3136 (smtpmail-try-auth-methods): Forget the user name/password if the
3137 login is unsuccessful (bug#12424).
3138
3139 2012-12-22 Michael Albinus <michael.albinus@gmx.de>
3140
3141 * notifications.el (notifications-notify): Protect body with
3142 `with-demoted-errors'.
3143
3144 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
3145 Check properties of remote device. Restart connection, if there is a
3146 change.
3147
3148 2012-12-21 Chong Yidong <cyd@gnu.org>
3149
3150 * sort.el (sort-subr): Doc fix (Bug#13056).
3151
3152 2012-12-21 Bastien Guerry <bzg@gnu.org>
3153
3154 * progmodes/etags.el (tags-search): Fix typo. Bug #13232.
3155
3156 2012-12-21 Michael Albinus <michael.albinus@gmx.de>
3157
3158 * simple.el (process-file): Overwrite stderr file, if exists.
3159
3160 2012-12-21 Daiki Ueno <ueno@gnu.org>
3161
3162 * epg.el (epg--start): Print GPG_AGENT_INFO in the debug buffer.
3163 (epg-error): Set `error-message' property.
3164
3165 2012-12-21 Chong Yidong <cyd@gnu.org>
3166
3167 * international/mule-cmds.el (read-char-by-name): Signal an error
3168 if the user does not supply a valid character (Bug#13177).
3169
3170 * simple.el (transpose-subr-1): Preserve marker positions by
3171 changing the insertion sequence (Bug#13122).
3172
3173 2012-12-21 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
3174
3175 * simple.el (kill-region): Deactivate mark even for empty regions
3176 (Bug#13169).
3177
3178 2012-12-21 Chong Yidong <cyd@gnu.org>
3179
3180 * help-fns.el (describe-variable): Make sure we get the right
3181 buffer name (Bug#13105). Suggested by Kelly Dean.
3182
3183 2012-12-20 Michael R. Mauger <mmaug@yahoo.com>
3184
3185 * comint.el (comint-redirect-previous-input-string): New variable.
3186 (comint-redirect-setup, comint-redirect-cleanup)
3187 (comint-redirect-preoutput-filter): Use it. Fixes redirection bug.
3188 (comint-redirect-preoutput-filter): Fix verbose message.
3189
3190 2012-12-20 Michael Albinus <michael.albinus@gmx.de>
3191
3192 * progmodes/grep.el (rgrep): Escape command line. Sometimes, it
3193 is too long for Tramp. See discussion in
3194 <http://thread.gmane.org/gmane.emacs.tramp/8233/focus=8244>.
3195
3196 * progmodes/compile.el (compilation-start): Remove line escape
3197 template.
3198
3199 2012-12-20 Dmitry Antipov <dmantipov@yandex.ru>
3200
3201 * vc/ediff-ptch.el (ediff-map-patch-buffer): Use `point-min-marker'.
3202 Adjust comment.
3203
3204 2012-12-19 Jonas Bernoulli <jonas@bernoul.li>
3205
3206 * emacs-lisp/lisp-mnt.el (lm-section-end): Always end before the
3207 following non-comment text (bug#13207).
3208 (lm-header-multiline): Continuation lines need to be indented more than
3209 the first line.
3210 (lm-homepage): New function.
3211 (lm-with-file): Don't be confused if narrowing is in effect.
3212
3213 2012-12-19 Stefan Monnier <monnier@iro.umontreal.ca>
3214
3215 * vc/diff-mode.el (diff-post-command-hook): Don't ignore changes at the
3216 very beginning of a hunk (e.g. killing the first line).
3217
3218 2012-12-19 Michael Albinus <michael.albinus@gmx.de>
3219
3220 * net/tramp-sh.el (tramp-sh-handle-file-acl): Delete empty lines
3221 and text properties from returned ACL string.
3222 (tramp-sh-handle-set-file-acl): Do not use additional parentheses
3223 for "setfacl" command.
3224
3225 2012-12-18 Michael Albinus <michael.albinus@gmx.de>
3226
3227 * net/tramp.el (tramp-error-with-buffer): Give a hint to use
3228 `tramp-cleanup-this-connection', when the process has died.
3229 (Bug#13151)
3230
3231 2012-12-17 Stefan Monnier <monnier@iro.umontreal.ca>
3232
3233 * icomplete.el (icomplete-completions): Also use … to truncate prefix.
3234
3235 2012-12-17 Kevin Ryde <user42@zip.com.au>
3236
3237 * files.el (auto-save-file-name-p): Use \` and \' (bug#13186).
3238
3239 2012-12-17 Michael Albinus <michael.albinus@gmx.de>
3240
3241 Add support for preserving ACL entries of files.
3242
3243 * net/tramp.el (tramp-file-name-for-operation): Add `file-acl' and
3244 `set-file-acl' handlers.
3245
3246 * net/tramp-adb.el (tramp-adb-handle-copy-file):
3247 Handle PRESERVE-EXTENDED-ATTRIBUTES.
3248
3249 * net/tramp-compat.el (tramp-compat-copy-file):
3250 Handle PRESERVE-EXTENDED-ATTRIBUTES.
3251
3252 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
3253 Add `file-acl' and `set-file-acl' handlers.
3254 (tramp-gvfs-handle-copy-file):
3255 Handle PRESERVE-EXTENDED-ATTRIBUTES.
3256 (tramp-gvfs-handle-file-acl, tramp-gvfs-handle-set-file-acl):
3257 New defuns.
3258
3259 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
3260 Add `file-acl' and `set-file-acl' handlers.
3261 (tramp-remote-acl-p, tramp-sh-handle-file-acl)
3262 (tramp-sh-handle-set-file-acl): New defuns.
3263 (tramp-sh-handle-copy-file, tramp-do-copy-or-rename-file):
3264 Handle PRESERVE-EXTENDED-ATTRIBUTES.
3265
3266 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
3267 Add `file-acl' and `set-file-acl' handlers.
3268 (tramp-smb-handle-copy-file): Handle PRESERVE-EXTENDED-ATTRIBUTES.
3269
3270 2012-12-17 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
3271
3272 * help-macro.el (make-help-screen): Instead of switch-to-buffer
3273 use pop-to-buffer with NORECORD argument t. As buffer name, use
3274 *Metahelp* with a leading space (Bug#13190).
3275
3276 2012-12-16 Romain Francoise <romain@orebokech.com>
3277
3278 * files.el (file-extended-attributes)
3279 (set-file-extended-attributes): New functions.
3280 (backup-buffer): Use them to handle both SELinux context and ACL
3281 entries.
3282 (backup-buffer-copy): Work with an alist of extended attributes,
3283 rather than an SELinux context.
3284 (basic-save-buffer-2): Ditto.
3285
3286 2012-12-16 Timo Myyrä <timo.myyra@gmail.com>
3287
3288 * battery.el (battery-bsd-apm): New function.
3289
3290 2012-12-16 Jay Belanger <jay.p.belanger@gmail.com>
3291
3292 * calc/calc.el (calc-standard-date-formats): Adjust one of the
3293 standard date formats.
3294
3295 2012-12-15 Juri Linkov <juri@jurta.org>
3296
3297 * isearch.el (isearch-mode-map): Bind `C-x 8 RET' to
3298 `isearch-insert-char-by-name'.
3299 (with-isearch-suspended): New defmacro with body mostly from
3300 `isearch-edit-string' except the part that sets
3301 `isearch-new-string' and `isearch-new-message'.
3302 (isearch-edit-string): Use new macro `with-isearch-suspended' with
3303 body that sets `isearch-new-string' and `isearch-new-message'.
3304 (isearch-insert-char-by-name): New command.
3305 * international/mule-cmds.el (read-char-by-name): Let-bind
3306 `enable-recursive-minibuffers' to t.
3307 http://lists.gnu.org/archive/html/emacs-devel/2012-12/msg00234.html
3308
3309 2012-12-15 Juri Linkov <juri@jurta.org>
3310
3311 * isearch.el (isearch-delete-char, isearch-del-char): Doc fix.
3312 (Bug#13175)
3313
3314 2012-12-15 Christopher Schmidt <christopher@ch.ristopher.com>
3315
3316 * dired-x.el (dired-guess-shell-command): Put colon at the end of
3317 the prompt. (Bug#13045)
3318
3319 2012-12-14 Glenn Morris <rgm@gnu.org>
3320
3321 * emacs-lisp/macroexp.el (macroexp--warn-and-return):
3322 Try to include filename in non-bytecomp warning. (Bug#13132)
3323
3324 2012-12-14 Paul Eggert <eggert@cs.ucla.edu>
3325
3326 Fix permissions bugs with setgid directories etc. (Bug#13125)
3327 * files.el (backup-buffer): Don't rely on 9th output of
3328 file-attributes, as it's now a placeholder. Instead, use the new
3329 optional arg of file-ownership-preserved-p.
3330 (file-ownership-preserved-p): New optional arg GROUP.
3331 Fix mishandling of setuid directories that would cause this
3332 function to return t when it should have returned nil.
3333 Document what happens if the file does not exist, and when
3334 it's not known whether the ownership will be preserved.
3335 * net/tramp-sh.el (tramp-sh-handle-file-ownership-preserved-p):
3336 Likewise.
3337 (tramp-get-local-gid): Use group-gid for integer, as that's
3338 faster and more reliable.
3339
3340 2012-12-14 Julien Danjou <julien@danjou.info>
3341
3342 * progmodes/sql.el (sql-mode-postgres-font-lock-keywords):
3343 Update keywords list, data type and PL/pgSQL.
3344
3345 2012-12-14 Dave Abrahams <dave@boostpro.com>
3346
3347 * vc/ediff-util.el (ediff-buffer-type): New function.
3348 (ediff-clone-buffer-for-current-diff-comparison): Compute the buf-type
3349 rather than taking it as as argument.
3350 (ediff-inferior-compare-regions): Adjust calls accordingly (bug#11319).
3351
3352 2012-12-14 Ryan Crum <ryan.crum@eleostech.com>
3353
3354 * json.el: Add pretty-print option (bug#12634).
3355 (json-encoding-separator, json-encoding-default-indentation)
3356 (json--encoding-current-indentation, json-encoding-pretty-print)
3357 (json-encoding-lisp-style-closings): New vars.
3358 (json--with-indentation): New macro.
3359 (json-encode-hash-table, json-encode-alist, json-encode-plist)
3360 (json-encode-array): Use it to obey json-encoding-pretty-print.
3361 (json-pretty-print-buffer, json-pretty-print): New commands.
3362
3363 2012-12-14 Dmitry Gutov <dgutov@yandex.ru>
3364
3365 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
3366 Extract `ruby-syntax-propertize-expansions'.
3367 (ruby-syntax-propertize-expansions): Only change syntax on
3368 certain string delimiters, to punctuation. This way the common
3369 functions like forward-word and thing-at-point still work.
3370 (ruby-match-expression-expansion): Improve readability.
3371 (ruby-block-contains-point): New function.
3372 (ruby-add-log-current-method): Handle several edge cases.
3373
3374 2012-12-13 Juanma Barranquero <lekktu@gmail.com>
3375
3376 * emacs-lisp/edebug.el (edebug-unload-function): Make sure that
3377 unload-feature finishes even when aborting an ongoing edebug session.
3378 Also, do not worry about edebug-mode, unload-feature takes care of it.
3379
3380 2012-12-13 Andreas Schwab <schwab@suse.de>
3381
3382 * net/tls.el (tls-program): Update customize type.
3383
3384 2012-12-13 Juanma Barranquero <lekktu@gmail.com>
3385
3386 * emacs-lisp/edebug.el (edebug--require-cl-read): New function.
3387 (edebug-setup-hook, cl-read-load-hooks): Use it.
3388 (edebug-unload-function): New function. (Bug#13163)
3389
3390 2012-12-13 Michael Albinus <michael.albinus@gmx.de>
3391
3392 * net/tramp-adb.el (tramp-adb-file-name-p): Make it a defsubst.
3393 Otherwise, there could be errors in autoloading. (Bug#13151)
3394
3395 2012-12-13 Jürgen Hötzel <juergen@archlinux.org>
3396
3397 * net/tramp-adb.el (tramp-adb-wait-for-output): Remove spurious " ^H"
3398 sequences.
3399
3400 2012-12-13 Alan Mackenzie <acm@muc.de>
3401
3402 Make CC Mode not hang when _some_ lines end in CRLF. Bug #11841.
3403 * progmodes/cc-engine.el (c-backward-comments): Add code to work
3404 around `forward-comment' not recognizing ^M as whitespace.
3405
3406 2012-12-13 Fabián Ezequiel Gallina <fgallina@cuca>
3407
3408 * progmodes/python.el (python-skeleton-class)
3409 (python-skeleton-def): Do not add space after defun name.
3410
3411 2012-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
3412
3413 * emacs-lisp/cl.el (letf): Make it an alias of cl-letf.
3414 (cl--symbol-function): Remove (now that funbound is like nil).
3415
3416 2012-12-12 Glenn Morris <rgm@gnu.org>
3417
3418 * button.el (button--area-button-p): Fix typo.
3419
3420 2012-12-12 Sam Steingold <sds@gnu.org>
3421
3422 * frame.el (frame-maximization-style): New user option.
3423 (toggle-frame-maximized): Toggle frame maximization according to
3424 `frame-maximization-style', bound to <f11>.
3425 (cycle-frame-maximized): Cycle between all maximization styles and
3426 non-maximized frame, bound to shift-<f11>.
3427
3428 2012-12-12 David Cadé <codename68@gmail.com>
3429
3430 * mpc.el (mpc-format): Use truncate-string-to-width (bug#13143).
3431
3432 2012-12-12 Jonas Bernoulli <jonas@bernoul.li>
3433
3434 * lisp/emacs-lisp/eieio.el: Prettier object pretty-printing (bug#13115).
3435 (eieio-override-prin1): Don't quote kewords and booleans.
3436 (object-write) <eieio-default-superclass>: Don't put closing parens
3437 on new line, avoid needless empty lines, align values that are objects
3438 with the slot keyword (instead of beginning on the same line).
3439 (eieio-list-prin1): Align value with slot keyword; increase
3440 eieio-print-depth before printing members of the list.
3441
3442 2012-12-11 Stefan Monnier <monnier@iro.umontreal.ca>
3443
3444 * mail/emacsbug.el (report-emacs-bug): Move the intangible text to
3445 a display text-property.
3446 (report-emacs-bug-hook): Don't bother deleting it any more.
3447
3448 * hilit-chg.el (highlight-save-buffer-state): Delete.
3449 Use with-silent-modifications instead.
3450 (hilit-chg-set-face-on-change): Only fixup the text that's modified.
3451
3452 * button.el: Handle buttons in display text-properties.
3453 (button--area-button-p, button--area-button-string):
3454 Use (STRING . STRING-POS) representation instead of just STRING.
3455
3456 2012-12-11 Eli Zaretskii <eliz@gnu.org>
3457
3458 * makefile.w32-in (compile4-SH): Fix a typo that caused term
3459 subdirectory be skipped.
3460
3461 2012-12-11 Glenn Morris <rgm@gnu.org>
3462
3463 * net/rcirc.el (rcirc-urls, rcirc-condition-filter): Doc fixes.
3464
3465 * progmodes/f90.el (f90-line-continued, f90-indent-region):
3466 Treat preprocessor lines embedded in continuations like comments.
3467 (f90-indent-line): Special-case preprocessor lines. (Bug#13138)
3468
3469 2012-12-11 Jay Belanger <jay.p.belanger@gmail.com>
3470
3471 * calc/calc.el (calc-standard-date-formats): Add more date
3472 formats.
3473 * calc/calc-forms.el (math-parse-iso-date): New function.
3474 (math-parse-date): Use `math-parse-iso-date' when appropriate.
3475 (math-parse-iso-date-validate): Add extra error checking.
3476 (calc-date-notation): Add ability to access new date formats.
3477
3478 2012-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
3479
3480 * hi-lock.el (hi-lock--regexps-at-point): Fix boundary case for
3481 font-lock as well as when there's no text-property.
3482
3483 2012-12-10 Jambunathan K <kjambunathan@gmail.com>
3484
3485 * hi-lock.el: Refine the choice of default face.
3486 (hi-lock-keyword->face): New function. Use it wherever we used
3487 cadadadr instead.
3488 (hi-lock--regexps-at-point): Ignore faces that can't come from hi-lock.
3489 (hi-lock--last-face): Remove var.
3490 (hi-lock--unused-faces): New var to replace it.
3491 (hi-lock-read-face-name): Use/maintain it.
3492 (hi-lock-unface-buffer): Maintain it. Fix error for the C-u case.
3493 (hi-lock-set-pattern): Ignore new rule if it has the same regexp even
3494 if it has another face.
3495
3496 2012-12-10 Eli Zaretskii <eliz@gnu.org>
3497
3498 * subr.el (w32notify-handle-event): New function.
3499 (inotify-handle-event): Doc fix.
3500
3501 2012-12-10 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
3502
3503 * subr.el (inotify-event-p, inotify-handle-event): New functions.
3504
3505 2012-12-10 Dani Moncayo <dmoncayo@gmail.com>
3506
3507 * simple.el (just-one-space): Doc fix.
3508
3509 2012-12-10 Eli Zaretskii <eliz@gnu.org>
3510
3511 * textmodes/texinfo.el (texinfo-enable-quote-envs): Add "smallexample".
3512
3513 2012-12-10 Le Wang <l26wang@gmail.com>
3514
3515 * hilit-chg.el (hilit-chg-set-face-on-change): Don't burp in
3516 narrowed buffer (bug#12361).
3517
3518 2012-12-10 Juanma Barranquero <lekktu@gmail.com>
3519
3520 * vc/vc-hooks.el (vc-state): Doc fix.
3521
3522 2012-12-10 Glenn Morris <rgm@gnu.org>
3523
3524 * mail/rmail.el (rmail-maybe-display-summary):
3525 Preserve buffer, in case select-window changes it. (Bug#13066)
3526
3527 2012-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
3528
3529 * emacs-lisp/cl.el, emacs-lisp/cl-lib.el: Move cl-unload-function and
3530 cl-load-hook where they belong.
3531
3532 2012-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
3533
3534 * emacs-lisp/cl-lib.el (cl-declaim): Paren typo.
3535
3536 2012-12-09 Eli Zaretskii <eliz@gnu.org>
3537
3538 Parallelize byte compilation on MS-Windows.
3539 * makefile.w32-in (WINS_BASIC1, WINS_BASIC2, WINS_BASIC3)
3540 (WINS_BASIC4): New variables, subdivide subdirectories into 4 parts.
3541 (WINS_BASIC): Define as concatenation of the above.
3542 (compile): Subdivide into 4 separate and independent jobs that can
3543 be run in parallel.
3544 (compile0-CMD, compile0-SH): New targets for compiling
3545 COMPILE_FIRST files, which are prerequisites for the rest of the
3546 byte-compilation.
3547 (compile1-CMD, compile2-CMD, compile3-CMD, compile4-CMD):
3548 New targets for parallel compilation with cmd.exe.
3549 (compile1-SH, compile2-SH, compile3-SH, compile4-SH): Ditto for
3550 compiling under a Unixy shell.
3551
3552 2012-12-09 Chong Yidong <cyd@gnu.org>
3553
3554 * simple.el (set-mark-default-inactive): Delete this
3555 accidentally-introduced option.
3556 (set-mark-command, exchange-point-and-mark): Remove calls.
3557
3558 2012-12-09 Glenn Morris <rgm@gnu.org>
3559
3560 * emacs-lisp/lisp-mode.el (eval-defun-1): Doc fix.
3561 Respect a defcustom's :set function, if appropriate. (Bug#109)
3562 (eval-defun): Doc fix.
3563
3564 2012-12-08 Juri Linkov <juri@jurta.org>
3565
3566 * info.el (Info-copy-current-node-name, Info-breadcrumbs)
3567 (Info-fontify-node, Info-bookmark-make-record): Remove the
3568 file extension from Info-current-file (Bug#13016).
3569
3570 2012-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
3571
3572 * hi-lock.el (hi-lock-unface-buffer): If there's no matching regexp at
3573 point, still provide some default.
3574 (hi-lock--regexps-at-point): Don't enforce a "hi-lock-" prefix on face
3575 names, since we don't use it right now. Actually return the list.
3576 (hi-lock-file-patterns, hi-lock-interactive-patterns): Use defvar-local.
3577
3578 2012-12-07 Chong Yidong <cyd@gnu.org>
3579
3580 * novice.el (disabled-command-function): Remove a spurious help
3581 xref (Bug#13043). Suggested by Kelly Dean.
3582
3583 * subr.el (text-clone-maintain): Fix clone overlay deletion when a
3584 syntax is specified (Bug#13025).
3585
3586 * info.el (Info-set-mode-line): Remove the file extension from
3587 Info-current-file if there is one (Bug#13016).
3588
3589 2012-12-07 Glenn Morris <rgm@gnu.org>
3590
3591 * mail/rmail.el (rmail-mime-decoded): New permanent local.
3592 (rmail-show-message-1): Set rmail-mime-decoded when appropriate.
3593 * mail/rmailedit.el (rmail-cease-edit): Respect rmail-mbox-format
3594 and rmail-mime-decoded. (Bug#9841)
3595
3596 * mail/unrmail.el (unrmail-mbox-format): New option. (Bug#6574)
3597 (batch-unrmail, unrmail): Doc fixes.
3598 (unrmail): Respect unrmail-mbox-format.
3599 * mail/rmail.el (rmail-mbox-format): New option.
3600 (rmail-show-message-1): Respect rmail-mbox-format.
3601
3602 2012-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
3603
3604 * emacs-lisp/cl-macs.el (cl-tagbody): New macro.
3605
3606 2012-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
3607
3608 Further cleanup of the "cl-" namespace. Fit CL in 80 columns.
3609 * emacs-lisp/cl-macs.el (cl--pop2, cl--optimize-safety)
3610 (cl--optimize-speed, cl--not-toplevel, cl--parse-loop-clause)
3611 (cl--expand-do-loop, cl--proclaim-history, cl--declare-stack)
3612 (cl--do-proclaim, cl--proclaims-deferred): Rename from the "cl-" prefix.
3613 (cl-progv): Don't rely on dynamic scoping to find the body.
3614 * emacs-lisp/cl-lib.el (cl--optimize-speed, cl--optimize-safety)
3615 (cl--proclaims-deferred): Rename from the "cl-" prefix.
3616 (cl-declaim): Use backquotes.
3617 * emacs-lisp/cl-extra.el (cl-make-random-state, cl-random-state-p):
3618 Use "cl--" prefix for the object's tag.
3619
3620 * ses.el: Use advice-add/remove.
3621 (ses--advice-copy-region-as-kill, ses--advice-yank): New functions.
3622 (copy-region-as-kill, yank): Use advice-add.
3623 (ses-unload-function): Use advice-remove.
3624
3625 2012-12-06 Jonas Bernoulli <jonas@bernoul.li>
3626
3627 * button.el: Make them work in header-lines (bug#12817).
3628 (button-map): Add bindings for header-line and mode-line use.
3629 (button-get, button-put, button-label): `button' may now be a string.
3630 (button-activate): Don't make it a defsubst.
3631 (button--area-button-p, button--area-button-string): New functions.
3632 (make-text-button): Fix the return value when `beg' was a string.
3633 (push-button): Handle the mode-line case.
3634
3635 2012-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
3636
3637 * progmodes/sql.el: Use cl-lib and lexical-binding; various cleanup.
3638 (sql-signum): Remove. Use `cl-signum' instead.
3639 (sql-read-passwd): Remove; use read-passwd instread.
3640 (sql-get-login-ext): Use read-string.
3641 (sql-get-login): Use dolist and pcase.
3642 (sql--completion-table): Rename from sql-try-completion.
3643 Use complete-with-action.
3644 (sql-mode): Don't change abbrev-all-caps globally.
3645 (sql-connect): Don't rely on dynamic scoping for `new-name'.
3646 (sql-postgres-completion-object): Initialize vars in their `let'.
3647 (sql-comint-sybase, sql-comint-sqlite, sql-comint-mysql)
3648 (sql-comint-solid, sql-comint-ms, sql-comint-postgres)
3649 (sql-comint-interbase): Use a single append, without setq.
3650 (sql-comint-linter): Same, and unwind-protect the LINTER_MBX var.
3651
3652 * hi-lock.el: Rework the default face and the serialize regexp code.
3653 (hi-lock--auto-select-face-defaults): Remove.
3654 (hi-lock-string-serialize-serial): Remove.
3655 (hi-lock--hashcons-hash): Rename from hi-lock-string-serialize-hash;
3656 make weak.
3657 (hi-lock--hashcons): Rename from hi-lock-string-serialize, return an
3658 equal string.
3659 (hi-lock-set-pattern): Adjust accordingly.
3660 (hi-lock--regexps-at-point): Simplify accordingly.
3661 (hi-lock--auto-select-face-defaults): Remove.
3662 (hi-lock--last-face): New var to replace it.
3663 (hi-lock-read-face-name): Rewrite (bug#11095).
3664 (hi-lock-unface-buffer): Arrange for the face to be the next default.
3665
3666 2012-12-06 Michael Albinus <michael.albinus@gmx.de>
3667
3668 * net/tramp.el (tramp-replace-environment-variables):
3669 Hide compiler warning.
3670 (tramp-file-name-for-operation): Remove `executable-find',
3671 `start-process', `call-process' and `call-process-region'.
3672
3673 * net/tramp-compat.el (top): Don't require 'tramp-util and 'tramp-vc.
3674
3675 * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error): Ensure backward
3676 compatibility.
3677
3678 * net/tramp-sh.el (top): Remove `tramp-sh-handle-call-process-region'.
3679
3680 2012-12-06 Chong Yidong <cyd@gnu.org>
3681
3682 * ffap.el (ffap-replace-file-component): Fix typo.
3683
3684 2012-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
3685
3686 * progmodes/octave-mod.el (octave-mark-block): Move out of tokens and
3687 fix open-paren-like token test (bug#12785).
3688
3689 2012-12-06 Glenn Morris <rgm@gnu.org>
3690
3691 * mail/rmailsum.el (rmail-new-summary): Tweak for
3692 rmail-maybe-display-summary changing buffer. (Bug#13066)
3693
3694 2012-12-06 Juri Linkov <juri@jurta.org>
3695
3696 * info.el (Info-fontify-node): Don't hide the last newline.
3697 (Bug#12272)
3698
3699 2012-12-06 Katsumi Yamaoka <yamaoka@jpl.org>
3700
3701 * mail/mailabbrev.el (mail-abbrev-expand-wrapper): Work in minibuffer
3702 so as to enable message-read-from-minibuffer to expand mail aliases.
3703
3704 2012-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
3705
3706 * minibuf-eldef.el (minibuf-eldef-update-minibuffer): Don't mess with
3707 the `intangible' property.
3708 Suggested by Christopher Schmidt <christopher@ch.ristopher.com>
3709
3710 2012-12-05 Deniz Dogan <deniz@dogan.se>
3711
3712 * net/rcirc.el (rcirc-urls): Update documentation.
3713 (rcirc-condition-filter): New function.
3714 (rcirc-browse-url, rcirc-markup-urls): Use only URLs before point
3715 and exclude consecutive duplicate URLs (Bug#6082).
3716
3717 2012-12-05 Michael Albinus <michael.albinus@gmx.de>
3718
3719 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
3720 Check return code of copy command.
3721
3722 * net/tramp-adb.el (tramp-adb-sdk-dir, tramp-adb-prompt):
3723 Use group `tramp'. Add version.
3724
3725 2012-12-05 Chong Yidong <cyd@gnu.org>
3726
3727 * ffap.el (ffap-url-regexp): Don't require matching at front of
3728 string (Bug#4952).
3729 (ffap-url-p): If only a substring matches, return that.
3730 (ffap-url-at-point): Use the return value of ffap-url-p.
3731 (ffap-read-file-or-url, ffap-read-file-or-url-internal)
3732 (find-file-at-point, dired-at-point, dired-at-point-prompter)
3733 (ffap-guess-file-name-at-point): Likewise.
3734 (ffap-replace-file-component): Fix typo.
3735
3736 * info.el (info-display-manual): Add existing Info buffers, whose
3737 files may not be in Info-directory-list, to the completion.
3738 (info--manual-names): New helper function.
3739
3740 2012-12-05 Glenn Morris <rgm@gnu.org>
3741
3742 * vc/vc-hg.el (vc-hg-resolve-when-done, vc-hg-find-file-hook):
3743 New functions, for detecting and resolving conflicts. (Bug#10709)
3744
3745 2012-12-04 Jambunathan K <kjambunathan@gmail.com>
3746
3747 * hi-lock.el (hi-lock-auto-select-face): New user variable.
3748 (hi-lock-auto-select-face-defaults): New buffer local variable.
3749 (hi-lock-read-face-name): Honor `hi-lock-auto-select-face'.
3750 (hi-lock-unface-buffer): Prompt user with useful defaults.
3751 With prefix arg, unhighlight all hi-lock patterns in buffer.
3752
3753 2012-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
3754
3755 * obsolete/terminal.el, obsolete/longlines.el: Add obsolecence info.
3756
3757 2012-12-04 Michael Albinus <michael.albinus@gmx.de>
3758
3759 * Makefile.in (TRAMP_SRC):
3760 * makefile.w32-in (TRAMP_SRC): Add tramp-adb.el.
3761
3762 2012-12-04 Juergen Hoetzel <juergen@archlinux.org>
3763
3764 * net/tramp-adb.el: New package.
3765
3766 2012-12-04 Chong Yidong <cyd@gnu.org>
3767
3768 * terminal.el: Move to obsolete/.
3769
3770 * longlines.el: Move to obsolete/.
3771
3772 * vc/ediff-diff.el (ediff-extract-diffs, ediff-extract-diffs3):
3773 Remove code referring to longlines mode.
3774
3775 2012-12-03 Juri Linkov <juri@jurta.org>
3776
3777 * sort.el (delete-duplicate-lines): New command. (Bug#13032)
3778
3779 2012-12-03 Agustín Martín Domingo <agustin.martin@hispalinux.es>
3780
3781 * textmodes/ispell.el (ispell-init-process)
3782 (ispell-start-process, ispell-internal-change-dictionary):
3783 Make sure personal dictionary name is expanded after initial
3784 `default-directory' value. Use expanded strings for
3785 keep/restart checks and for value (Bug#13019).
3786
3787 2012-12-03 Jay Belanger <jay.p.belanger@gmail.com>
3788
3789 * calc/calc-forms.el (math-date-to-iso-dt): Fix weekday number.
3790
3791 2012-12-03 Leo Liu <sdl.web@gmail.com>
3792
3793 * files.el (dir-locals-read-from-file): Check file non-empty
3794 before reading. (Bug#13038)
3795
3796 2012-12-03 Glenn Morris <rgm@gnu.org>
3797
3798 * jka-cmpr-hook.el (jka-compr-get-compression-info):
3799 Remove any version extension before checking filename. (Bug#13006)
3800 (jka-compr-compression-info-list): Belated :version bump.
3801
3802 2012-12-03 Chong Yidong <cyd@gnu.org>
3803
3804 * simple.el (transient-mark-mode): Doc fix (Bug#11523).
3805
3806 * buff-menu.el (Buffer-menu-delete-backwards, Buffer-menu-mode)
3807 (buffer-menu): Doc fix (Bug#12294).
3808
3809 2012-12-03 Roland Winkler <winkler@gnu.org>
3810
3811 * calendar/diary-lib.el (diary-header-line-format): Use keybinding
3812 of diary-show-all-entries in the diary buffer (Bug#12994).
3813
3814 2012-12-03 Michael Albinus <michael.albinus@gmx.de>
3815
3816 * net/tramp-sh.el (tramp-perl-encode): Use "read STDIN" instead of
3817 "<STDIN>". This is binary safe.
3818
3819 2012-12-03 Jay Belanger <jay.p.belanger@gmail.com>
3820
3821 * calc/calc-forms.el (math-absolute-from-iso-dt)
3822 (math-date-to-iso-dt, math-parse-iso-date-validate)
3823 (math-iso-dt-to-date): New functions.
3824 (math-fd-iso-dt, math-fd-isoyear, math-fd-isoweek)
3825 (math-fd-isoweekday): New variables.
3826 (calc-date-notation, math-parse-standard-date, math-format-date)
3827 (math-format-date-part): Add support for more formatting codes.
3828
3829 2012-12-02 Dmitry Gutov <dgutov@yandex.ru>
3830
3831 * vc/vc.el (vc-delete-file, vc-rename-file): Default to the
3832 current buffer's file name when called interactively (Bug#12488).
3833
3834 2012-12-02 Juri Linkov <juri@jurta.org>
3835
3836 * info.el (info-display-manual): Don't clobber an existing Info
3837 buffer (Bug#10770). Add completion (Bug#10771).
3838
3839 2012-12-01 Yuya Nishihara <yuya@tcha.org> (tiny change)
3840
3841 * vc/vc-hooks.el (vc-find-file-hook): Expand buffer-file-truename
3842 before using it for comparison (Bug#5297).
3843
3844 2012-12-01 Jari Aalto <jari.aalto@cante.net>
3845
3846 * textmodes/css-mode.el (css-current-defun-name): New function.
3847 (css-mode): Use it.
3848
3849 * textmodes/sgml-mode.el (html-current-defun-name): New function.
3850 (html-mode): Use it.
3851
3852 2012-12-01 Chong Yidong <cyd@gnu.org>
3853
3854 Modularize add-log-current-defun (Bug#2224).
3855 Suggested by Jari Aalto.
3856
3857 * vc/add-log.el (add-log-current-defun-function): Doc fix.
3858 (add-log-current-defun): Move mode-specific code to other files.
3859 (add-log-lisp-like-modes, add-log-c-like-modes)
3860 (add-log-tex-like-modes): Variables deleted.
3861
3862 * emacs-lisp/lisp-mode.el (lisp-current-defun-name): New.
3863 (lisp-mode-variables): Use it.
3864
3865 * progmodes/cc-mode.el (c-common-init):
3866 * progmodes/cperl-mode.el (cperl-mode): Set a value for
3867 add-log-current-defun-function.
3868
3869 * progmodes/m4-mode.el (m4-current-defun-name): New function.
3870 (m4-mode): Use it.
3871
3872 * progmodes/perl-mode.el (perl-current-defun-name): New.
3873 (perl-mode): Use it.
3874
3875 * progmodes/scheme.el (scheme-mode-variables, dsssl-mode):
3876 Use lisp-current-defun-name.
3877
3878 * textmodes/tex-mode.el (tex-current-defun-name): New.
3879 (tex-common-initialization): Use it.
3880
3881 * textmodes/texinfo.el (texinfo-current-defun-name): New.
3882 (texinfo-mode): Use it.
3883
3884 2012-12-01 Chong Yidong <cyd@gnu.org>
3885
3886 * emacs-lisp/lisp-mode.el (lisp-mode-variables, lisp-mode):
3887 * progmodes/autoconf.el (autoconf-mode):
3888 * progmodes/js.el (js-mode):
3889 * progmodes/make-mode.el (makefile-mode, makefile-makepp-mode)
3890 (makefile-bsdmake-mode, makefile-imake-mode, makefile-browse):
3891 * progmodes/perl-mode.el (perl-mode):
3892 * progmodes/sh-script.el (sh-mode, sh-set-shell):
3893 * textmodes/css-mode.el (css-mode):
3894 * textmodes/sgml-mode.el (html-mode, sgml-mode)
3895 (sgml-tags-invisible, sgml-guess-indent):
3896 * textmodes/tex-mode.el (tex-common-initialization)
3897 (latex-complete-bibtex-keys, tex-shell, tex-main-file)
3898 (doctex-mode, plain-tex-mode, latex-mode):
3899 * textmodes/texinfo.el (texinfo-mode): Use setq-local.
3900
3901 2012-12-01 Kirk Kelsey <kirk.kelsey@0x4b.net>
3902
3903 * vc/vc-hg.el (vc-hg-next-revision):
3904 Ensure use of default "tip" output format. (Bug#6968)
3905
3906 2012-12-01 Kim F. Storm <storm@cua.dk>
3907
3908 * startup.el (fancy-startup-tail): Add a clickable link
3909 (Bug#2176).
3910
3911 2012-12-01 Chong Yidong <cyd@gnu.org>
3912
3913 * startup.el (fancy-startup-tail): Improve the message about
3914 auto-save files (Bug#2176).
3915
3916 * files.el (recover-session): Improve the descriptive message, and
3917 use substitute-command-keys.
3918
3919 2012-12-01 Glenn Morris <rgm@gnu.org>
3920
3921 * ido.el (ido-file-internal):
3922 Handle other-window, other-frame for dired. (Bug#13036)
3923
3924 2012-11-30 Glenn Morris <rgm@gnu.org>
3925
3926 * icomplete.el (icomplete-separator): Fix :version.
3927
3928 2012-11-30 Chong Yidong <cyd@gnu.org>
3929
3930 * shell.el (shell): For C-u M-x shell, use an inactive shell
3931 buffer as the default (Bug#1975).
3932 (shell-apply-ansi-color, shell-reapply-ansi-color): New functions.
3933 (shell-mode): Use them to reapply ansi colorization if Shell mode
3934 is re-enabled.
3935
3936 2012-11-30 Yuriy Vostrikov <delamonpansie@gmail.com> (tiny change)
3937
3938 * vc/vc-git.el (vc-git-command): Disable the pager (Bug#6137).
3939
3940 2012-11-30 Samuel Bronson <naesten@gmail.com>
3941
3942 * progmodes/grep.el (grep-compute-defaults): Do not pass the -e
3943 flag to xargs, for compatibility with BSD xargs (Bug#11703).
3944
3945 2012-11-30 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
3946
3947 * textmodes/fill.el (fill-region-as-paragraph): Handle overshoot
3948 by move-to-column (Bug#3234).
3949
3950 2012-11-30 Chong Yidong <cyd@gnu.org>
3951
3952 * longlines.el (longlines-wrap-line, longlines-encode-region):
3953 Preserve text properties (Bug#1425).
3954
3955 2012-11-30 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
3956
3957 * vc/vc.el (vc-register): Allow registering a file which is
3958 already registered with a different backend (Bug#10589).
3959
3960 2012-11-29 Jambunathan K <kjambunathan@gmail.com>
3961 Stefan Monnier <monnier@iro.umontreal.ca>
3962
3963 * icomplete.el: Change separator; add ido-style commands.
3964 (icomplete-show-key-bindings): Remove custom var.
3965 (icomplete-get-keys): Remove function.
3966 (icomplete-forward-completions, icomplete-backward-completions):
3967 New commands.
3968 (icomplete-minibuffer-map): New var.
3969 (icomplete-minibuffer-setup): Use it.
3970 (icomplete-exhibit): Don't delay if the list of completions is known.
3971 (icomplete-separator): New custom.
3972 (icomplete-completions): Use it.
3973 * minibuffer.el (completion-all-sorted-completions): Delete duplicates.
3974 (minibuffer-force-complete-and-exit): New command.
3975 (minibuffer--complete-and-exit): New function extracted from
3976 minibuffer-complete-and-exit.
3977 (minibuffer-complete-and-exit): Use it.
3978
3979 * progmodes/etags.el (visit-tags-table-buffer): Give a more precise
3980 error message when the file doesn't exist (bug#12974).
3981
3982 2012-11-29 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
3983
3984 * simple.el (activate-mark): Run activate-mark-hook (bug#13027).
3985
3986 2012-11-29 Glenn Morris <rgm@gnu.org>
3987
3988 * files.el (hack-dir-local-variables): Warn if try to set
3989 coding via dir-locals, since it doesn't work. (Bug#7169)
3990
3991 Add desktop support for restoring vc-dir buffers. (Bug#10606)
3992 * vc/vc-dir.el (vc-dir-mode): Autoload it (for desktop restore).
3993 Set buffer-local value of desktop-save-buffer.
3994 (vc-dir-desktop-buffer-misc-data, vc-dir-restore-desktop-buffer):
3995 New functions.
3996 (desktop-buffer-mode-handlers): Add vc-dir-mode entry.
3997 * desktop.el (desktop-save-buffer-p): Treat vc-dir like dired.
3998
3999 * files.el (inhibit-local-variables-ignore-case): New. (Bug#10610)
4000 (inhibit-local-variables-p): Use inhibit-local-variables-ignore-case.
4001 Doc fix.
4002 (inhibit-local-variables-regexps, inhibit-local-variables-suffixes):
4003 Doc fixes.
4004
4005 2012-11-28 Jay Belanger <jay.p.belanger@gmail.com>
4006
4007 * calc/calc-forms.el (calc-date-notation): Fix regexp
4008 used to find time codes. Fix symbol for seconds.
4009
4010 2012-11-27 Glenn Morris <rgm@gnu.org>
4011
4012 * emacs-lisp/derived.el (derived-mode-make-docstring):
4013 Don't mention "abbrev" or "syntax" if nil. (Bug#11277)
4014
4015 2012-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
4016
4017 * textmodes/table.el (table-insert): Don't use `symbol-name' on
4018 lexically scoped variables (bug#13005).
4019
4020 2012-11-27 Glenn Morris <rgm@gnu.org>
4021
4022 * vc/vc-hooks.el (vc-mistrust-permissions):
4023 Default to t, to avoid data-loss. (Bug#11490)
4024
4025 2012-11-27 Fabián Ezequiel Gallina <fgallina@cuca>
4026
4027 * progmodes/python.el (python-indent-guess-indent-offset):
4028 If indentation is guessed make python-indent-offset buffer-local.
4029
4030 Fix Imenu regression.
4031 * progmodes/python.el (python-nav-beginning-of-defun):
4032 Fix forward movement when statement(s) separates point from defun.
4033 (python-imenu-prev-index-position): New function.
4034
4035 2012-11-27 Eli Zaretskii <eliz@gnu.org>
4036
4037 * subr.el (buffer-file-type): Declare with defvar-local. Doc fix.
4038
4039 * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
4040 Don't set buffer-file-type. Return nil. (Bug#12989)
4041
4042 2012-11-27 Glenn Morris <rgm@gnu.org>
4043
4044 * hippie-exp.el (hippie-expand-try-functions-list):
4045 Re-autoload it. (Bug#12982)
4046
4047 2012-11-27 Eli Zaretskii <eliz@gnu.org>
4048
4049 * descr-text.el (describe-char-padded-string):
4050 Call internal-char-font only on GUI frames. (Bug#11964)
4051
4052 2012-11-27 Andreas Schwab <schwab@linux-m68k.org>
4053
4054 * buff-menu.el (Buffer-menu-buffer+size-width): Fix customize type
4055 and obsoletion message.
4056
4057 2012-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
4058
4059 * emacs-lisp/cl-macs.el (cl--transform-lambda): Add back `declare' in
4060 the constructs to keep outside of the `cl-block' (bug#12977).
4061
4062 2012-11-27 Chong Yidong <cyd@gnu.org>
4063
4064 * mouse.el (mouse-drag-line): Even if the line is not draggable,
4065 keep reading until we get the up-event anyway, in order to process
4066 the up-event for mouse-1-click-follows-link (Bug#12971).
4067
4068 2012-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
4069
4070 * emacs-lisp/advice.el (ad-should-compile): Don't compile advice if the
4071 base function is not yet defined (bug#12965).
4072 (ad-activate-advised-definition): Use ad-compile-function.
4073 (ad-activate): Use cond.
4074
4075 2012-11-25 Leo Liu <sdl.web@gmail.com>
4076
4077 * textmodes/sgml-mode.el (sgml-tag): Fix indentation for closing tag.
4078 (Bug#12979)
4079
4080 2012-11-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
4081
4082 * textmodes/reftex-parse.el (reftex-parse-from-file): Use variable
4083 reftex-section-info-function in order to be compatible with
4084 Texinfo integration.
4085
4086 * textmodes/reftex.el (reftex-section-pre-regexp)
4087 (reftex-section-post-regexp, reftex-section-info-function):
4088 New variable.
4089 (reftex-compile-variables): Use variables reftex-section-pre-regexp,
4090 reftex-section-post-regexp, and reftex-section-info-function in order
4091 to be compatible with Texinfo integration.
4092
4093 * textmodes/reftex-toc.el (reftex-toc-promote-action):
4094 use reftex-section-pre-regexp variable in order to be compatible with
4095 Texinfo integration.
4096
4097 2012-11-25 Chong Yidong <cyd@gnu.org>
4098
4099 * faces.el: Make face-spec-set more analogous to setq.
4100 (face-spec-set): Change the third arg to specify whether this
4101 function is being called via defface, customize, or a third party.
4102 Set the appropriate symbol properties. Clear the override spec if
4103 setting via Custom. Initialize face if necessary. (Bug#4988)
4104 (face-spec-recalc): Allow theme faces to completely replace the
4105 defface spec, in the same way as custom faces (Bug#8454).
4106
4107 * cus-face.el (custom-declare-face): Move face initialization to
4108 face-spec-set.
4109 (custom-theme-set-faces): Don't initialize the face name here, as
4110 that is now done in face-spec-set.
4111
4112 * cus-edit.el (custom-face-set, custom-face-mark-to-save)
4113 (custom-face-reset-saved, custom-face-mark-to-reset-standard):
4114 Simplify by using the new arg to face-spec-set.
4115
4116 * emacs-lisp/lisp-mode.el (eval-defun-1): When evaluating defface,
4117 reset face-override-spec too, and use custom-declare-face.
4118
4119 2012-11-24 Jan Djärv <jan.h.d@swipnet.se>
4120
4121 * term/ns-win.el (ns-initialize-window-system): Move creation of
4122 fontsets here (Bug#11964).
4123
4124 2012-11-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
4125
4126 * ses.el (ses-rename-cell): Correct bug on mode-line update after
4127 cell renaming.
4128
4129 2012-11-24 Chong Yidong <cyd@gnu.org>
4130
4131 * woman.el (woman-default-faces, woman-monochrome-faces): Mark as
4132 obsolete.
4133
4134 * custom.el (custom-theme-set-variables): Use a topological sort
4135 for ordering by custom dependencies (Bug#12952).
4136 (custom--sort-vars, custom--sort-vars-1): New functions.
4137
4138 2012-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
4139
4140 * emacs-lisp/bytecomp.el (byte-compile-file): Setup default value for
4141 lexical-binding (bug#12938).
4142
4143 2012-11-24 Wolfgang Jenkner <wjenkner@inode.at>
4144
4145 * image-mode.el (image-transform-check-size): Use assertions only
4146 for images of type imagemagick.
4147
4148 Otherwise no error, image-transform-fit-to-{width,height} is
4149 silently ignored, as before. Doc fix.
4150
4151 2012-11-24 Chong Yidong <cyd@gnu.org>
4152
4153 * faces.el (color-defined-p): Doc fix (Bug#12853).
4154
4155 2012-11-24 Juri Linkov <juri@jurta.org>
4156
4157 * dired.el (dired-mark): Add optional arg `interactive'.
4158 Check for `use-region-p' if `interactive' is non-nil.
4159 (dired-unmark, dired-flag-file-deletion): Add optional arg
4160 `interactive'. Call `dired-mark' with the arg `interactive'.
4161 (Bug#10624)
4162
4163 * wdired.el: Revert 2012-10-17 change partly and replace it with
4164 Patch by Christopher Schmidt <christopher@ch.ristopher.com>.
4165 (wdired-finish-edit): Add marks for new file names to
4166 `wdired-old-marks'. Restore marks using `dired-mark-remembered'
4167 after `revert-buffer'.
4168 (wdired-do-renames): Remove calls to `dired-remove-file',
4169 `dired-add-file', `dired-add-entry'. (Bug#11795)
4170
4171 2012-11-24 Alan Mackenzie <acm@muc.de>
4172
4173 * progmodes/cc-defs.el (c-version): Bump to 5.32.4.
4174
4175 Fix bugs in the state cache. Enhance a debugging mechanism.
4176 * progmodes/cc-engine.el (c-parse-state-get-strategy): Don't use
4177 "brace at column zero" strategy for C++.
4178 (c-append-lower-brace-pair-to-state-cache): Repair algorithm.
4179 (c-parse-state-point): New variable.
4180 (c-record-parse-state-state): Record old parse state with
4181 `copy-tree'. Record previous value of point.
4182 (c-debug-parse-state-double-cons): New debugging function.
4183 (c-debug-parse-state): Call the above new function.
4184 (c-toggle-parse-state-debug): Output a confirmatory message.
4185
4186 * progmodes/cc-mode.el (c-before-change, c-after-change):
4187 Call c-invalidate-state-cache from `c-before-change' instead of
4188 `c-after-change'.
4189
4190 2012-11-23 Chong Yidong <cyd@gnu.org>
4191
4192 * find-cmd.el (find-constituents): Add executable, ipath,
4193 readable, samefile, writable, daystart, regextype (Bug#12856).
4194
4195 2012-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
4196
4197 * emacs-lisp/ert.el, emacs-lisp/ert-x.el: Use cl-lib and lexical-binding.
4198
4199 2012-11-22 Paul Eggert <eggert@cs.ucla.edu>
4200
4201 * calc/calc.el (calc-gregorian-switch): Move to after calc-refresh
4202 definition. This fixes a bootstrap failure.
4203 (calc-gregorian-switch): In menu, put dates before regions.
4204 This is easier to follow, lines up better in the menu, and lets us
4205 coalesce regions that switch at the same time. Give country
4206 names, not "Vatican", as that's better for non-expert users.
4207 Use names that are stable between the date of switch and now, e.g.,
4208 Bohemia and Moravia (which existed then and now) and not
4209 Czechoslovakia (which didn't exist then and doesn't exist now).
4210 What is now the U.S. mostly did not switch at the same time as
4211 Britain, so omit the U.S. Correct spelling of "Britain".
4212 Catholic Switzerland was too much of a mess, so omit it.
4213
4214 2012-11-22 Jay Belanger <jay.p.belanger@gmail.com>
4215
4216 * calc/calc.el (calc-gregorian-switch): Refresh the Calc buffer
4217 after the variable is changed.
4218
4219 2012-11-21 Daniel Colascione <dancol@dancol.org>
4220
4221 * progmodes/sql.el (sql-mode-font-lock-object-name): Support IF NOT EXISTS
4222 in SQL declarations for font-lock.
4223 (sql-imenu-generic-expression): Teach imenu about IF NOT EXISTS.
4224
4225 2012-11-21 Glenn Morris <rgm@gnu.org>
4226
4227 * faces.el (face-underline-p, face-inverse-video-p, face-bold-p)
4228 (face-italic-p): Add optional argument "inherit".
4229
4230 * faces.el (set-face-inverse-video, set-face-bold, set-face-italic):
4231 Remove -p suffix from names, for consistency with other set-face-*.
4232 (set-face-inverse-video): Fix interactive spec.
4233 * play/gamegrid.el (gamegrid-make-mono-tty-face):
4234 * textmodes/table.el (table--update-cell-face):
4235 Use set-face-inverse-video rather than now obsolete alias.
4236
4237 2012-11-21 Eli Zaretskii <eliz@gnu.org>
4238
4239 * simple.el (line-move): Don't call line-move-partial if
4240 scroll-conservatively is in effect. (Bug#12927)
4241
4242 2012-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
4243
4244 * eshell/em-cmpl.el (eshell-pcomplete): Refine fix for bug#12838:
4245 Fallback on completion-at-point rather than
4246 pcomplete-expand-and-complete, and only if pcomplete actually failed.
4247 (eshell-cmpl-initialize): Setup completion-at-point.
4248
4249 * pcomplete.el (pcomplete--entries): Obey pcomplete-ignore-case.
4250
4251 * emacs-lisp/ert.el (ert--expand-should-1): Adapt to cl-lib.
4252
4253 2012-11-21 Michael Albinus <michael.albinus@gmx.de>
4254
4255 * net/tramp-sh.el (tramp-do-copy-or-rename-file): If both files
4256 are remote, check out-of-band property for both.
4257
4258 2012-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
4259
4260 * window.el (switch-to-buffer): Re-add the warning that was lost in the
4261 code rewrite.
4262
4263 2012-11-21 Paul Eggert <eggert@cs.ucla.edu>
4264
4265 More minor time fixes.
4266 * calendar/time-date.el: Commentary fix.
4267 * net/tramp-sh.el (tramp-do-file-attributes-with-ls): Undo last change;
4268 too much other code depends on (0 0) time stamps.
4269 * net/tramp.el (tramp-time-less-p, tramp-time-subtract):
4270 Add a couple of FIXME comments.
4271
4272 Minor cleanup for times as lists of four integers.
4273 * files.el (dir-locals-directory-cache):
4274 * ps-bdf.el (bdf-file-mod-time, bdf-read-font-info):
4275 Doc fixes.
4276 * net/tramp-sh.el (tramp-do-file-attributes-with-ls):
4277 * ps-bdf.el (bdf-file-newer-than-time):
4278 Process four-integers time stamps, not two. Doc fixes.
4279
4280 2012-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
4281
4282 * uniquify.el (uniquify-managed): Use defvar-local.
4283 (rename-buffer, create-file-buffer): Advise with advice-add.
4284 (uniquify-unload-function): Unadvise accordingly.
4285
4286 * emacs-lisp/trace.el: Rewrite, use nadvice and lexical-binding.
4287 (trace-buffer): Don't purecopy.
4288 (trace-entry-message, trace-exit-message): Add `context' arg.
4289 (trace--timer): New var.
4290 (trace-make-advice): Adjust for use in nadvice.
4291 Add `context' argument. Delay `display-buffer' via a timer.
4292 (trace-function-internal): Use advice-add.
4293 (trace--read-args): New function.
4294 (trace-function-foreground, trace-function-background): Use it.
4295 (trace-function): Rename to trace-function-foreground and redefine as
4296 an alias to that new name.
4297 (untrace-function, untrace-all): Adjust to the use of nadvice.
4298
4299 * emacs-lisp/bytecomp.el (byte-compile): Fix handling of closures.
4300
4301 * emacs-lisp/byte-run.el (defun-declarations-alist): Fix last change.
4302
4303 * subr.el (called-interactively-p-functions): New var.
4304 (internal--called-interactively-p--get-frame): New macro.
4305 (called-interactively-p, interactive-p): Rewrite in Lisp.
4306 * emacs-lisp/nadvice.el (advice--called-interactively-skip): New fun.
4307 (called-interactively-p-functions): Use it.
4308 * emacs-lisp/edebug.el (edebug--called-interactively-skip): New fun.
4309 (called-interactively-p-functions): Use it.
4310 * allout.el (allout-called-interactively-p): Don't assume
4311 called-interactively-p is a subr.
4312
4313 2012-11-20 Glenn Morris <rgm@gnu.org>
4314
4315 * profiler.el (profiler-report-mode-map): Add a menu.
4316 No need to bind `q' because we derive from special-mode.
4317 (profiler-report-find-entry): Handle calls from the menu-bar.
4318
4319 2012-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
4320
4321 * emacs-lisp/byte-run.el (defun-declarations-alist):
4322 Allow a compiler-macro to be a lambda expression.
4323
4324 * progmodes/python.el: Use cl-lib. Move var declarations outside of
4325 eval-when-compile.
4326 (python-syntax-context): Add compiler-macro.
4327 (python-font-lock-keywords): Simplify with De Morgan.
4328
4329 * vc/diff-mode.el (diff-hunk): Don't make useless timers.
4330
4331 * files.el (load-file): Require match in minibuffer selection, as was
4332 the case in Emacs-20 before we changed the spec to allow .elc files
4333 (bug#12935).
4334
4335 * json.el: Don't require cl since we don't use it.
4336 * color.el: Don't require cl.
4337 (color-complement): `caddr' -> `nth 2'.
4338
4339 * calendar/time-date.el (time-to-seconds): De-obsolete.
4340
4341 2012-11-19 Jay Belanger <jay.p.belanger@gmail.com>
4342
4343 * calc/calc-forms.el (math-leap-year-p): Fix formula for negative
4344 year numbers.
4345 (math-date-to-julian-dt): Adjust the initial approximation for the
4346 year to deal with the new definition of the DATE.
4347
4348 2012-11-19 Daniel Colascione <dancol@dancol.org>
4349
4350 * term/w32-win.el (cygwin-convert-path-from-windows):
4351 Accomodate rename of cygwin_convert_path* to cygwin_convert_file_name*.
4352
4353 2012-11-18 Chong Yidong <cyd@gnu.org>
4354
4355 * filecache.el (file-cache--read-list): New function.
4356 (file-cache-add-directory-list, file-cache-add-file-list)
4357 (file-cache-delete-file-list, file-cache-delete-directory-list):
4358 Use it to read a list of files or directories (Bug#12846).
4359 (file-cache-add-file, file-cache-add-directory)
4360 (file-cache-delete-file-list, file-cache-delete-file-regexp)
4361 (file-cache-delete-directory): Print an message.
4362
4363 2012-11-18 Jay Belanger <jay.p.belanger@gmail.com>
4364
4365 * calc/calc-forms.el (math-date-to-dt): Use integer date when
4366 calling `math-date-to-julian-dt' and 'math-date-to-gregorian-dt'.
4367
4368 2012-11-18 Glenn Morris <rgm@gnu.org>
4369
4370 * image.el (insert-image, insert-sliced-image): Doc fix.
4371
4372 2012-11-18 Chong Yidong <cyd@gnu.org>
4373
4374 * emacs-lisp/syntax.el (syntax-propertize-function): Doc fix
4375 (Bug#12810).
4376
4377 2012-11-18 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
4378
4379 * vc/vc-svn.el (vc-svn-merge-news): Properly parse the merge
4380 response when the target file is in a subdirectory (Bug#12757).
4381
4382 2012-11-18 Chong Yidong <cyd@gnu.org>
4383
4384 * filecache.el (file-cache-add-file-list): Doc fix (Bug#12694).
4385
4386 2012-11-18 Glenn Morris <rgm@gnu.org>
4387
4388 * emacs-lisp/cl-lib.el (face-underline-p):
4389 Use set-face-underline rather than the alias set-face-underline-p.
4390
4391 * window.el (with-temp-buffer-window): Doc fix.
4392 * subr.el (with-output-to-temp-buffer):
4393 Add doc xref to with-temp-buffer-window.
4394
4395 2012-11-18 Juanma Barranquero <lekktu@gmail.com>
4396
4397 * woman.el (woman-non-underline-faces): Use `set-face-underline'.
4398 * calc/calc.el (math-format-date-cache): Declare.
4399
4400 2012-11-17 Paul Eggert <eggert@cs.ucla.edu>
4401
4402 Calc by default uses the Gregorian calendar for all dates (Bug#12633).
4403 It also uses January 1, 1 AD as its day number 1.
4404 * calc/calc-forms.el (math-julian-date-beginning)
4405 (math-julian-date-beginning-int): Implement this.
4406
4407 2012-11-17 Juanma Barranquero <lekktu@gmail.com>
4408
4409 * descr-text.el (quail-find-key):
4410 * dired.el (desktop-file-name):
4411 * dirtrack.el (shell-prefixed-directory-name, shell-process-cd):
4412 * generic-x.el (comint-mode, comint-exec):
4413 * image-dired.el (widget-forward):
4414 * info.el (speedbar-add-expansion-list, speedbar-center-buffer-smartly)
4415 (speedbar-change-expand-button-char)
4416 (speedbar-change-initial-expansion-list, speedbar-delete-subblock)
4417 (speedbar-make-specialized-keymap, speedbar-make-tag-line):
4418 * printing.el (easy-menu-add-item, easy-menu-remove-item)
4419 (widget-field-action, widget-value-set):
4420 * speedbar.el (imenu--make-index-alist):
4421 * term.el (ring-empty-p, ring-ref, ring-insert-at-beginning)
4422 (ring-length, ring-insert):
4423 * vcursor.el (compare-windows-skip-whitespace):
4424 * woman.el (dired-get-filename):
4425 Declare functions.
4426
4427 * term/w32-win.el (cygwin-convert-path-from-windows): Fix declaration.
4428
4429 2012-11-17 Jay Belanger <jay.p.belanger@gmail.com>
4430
4431 * calc/calc.el (calc-gregorian-switch): New variable.
4432
4433 * calc/calc-forms.el (math-day-in-year, math-dt-before-p)
4434 (math-absolute-from-gregorian-dt, math-absolute-from-julian-dt)
4435 (math-date-to-julian-dt, math-date-to-gregorian-dt): New functions.
4436 (math-leap-year-p): Add option to distinguish between Julian
4437 and Gregorian calendars.
4438 (math-day-number): Use `math-day-in-year' to do the computations.
4439 (math-absolute-from-dt): Rename from `math-absolute-from-date'.
4440 Use `math-absolute-from-gregorian' and `math-absolute-from-julian'
4441 to do the computations.
4442 (math-date-to-dt): Use `math-date-to-julian-dt' and
4443 `math-date-to-gregorian-dt' to do the computations.
4444 (calcFunc-weekday, math-format-date-part): Use the new version of
4445 the DATE to determine the weekday.
4446 (calcFunc-newmonth, calcFunc-newyear): Use `calc-gregorian-switch'
4447 when necessary.
4448
4449 2012-11-17 Eli Zaretskii <eliz@gnu.org>
4450
4451 * term/w32-win.el (w32-handle-dropped-file): Use 'file://' only on
4452 Cygwin; otherwise use 'file:'. (Bug#12914)
4453 (cygwin-convert-path-from-windows): Declare, to avoid
4454 byte-compiler warnings.
4455
4456 2012-11-17 Andreas Politz <politza@fh-trier.de>
4457
4458 * ibuffer.el (ibuffer-mark-forward, ibuffer-unmark-forward)
4459 (ibuffer-unmark-backward, ibuffer-mark-interactive): Support plain
4460 prefix and negative numeric prefix args (Bug#12795).
4461
4462 2012-11-17 Stephen Berman <stephen.berman@gmx.net>
4463
4464 * play/gamegrid.el (gamegrid-add-score-with-update-game-score-1):
4465 Don't signal an error with a score that is too low to add to the
4466 list of top scores. (Bug#12779)
4467
4468 2012-11-17 Chong Yidong <cyd@gnu.org>
4469
4470 * help-mode.el (help-xref-interned): End on point-min (Bug#12737).
4471
4472 * filecache.el (file-cache-add-file): Handle relative file name in
4473 the argument (Bug#12694).
4474
4475 2012-11-16 Jürgen Hötzel <juergen@archlinux.org> (tiny change)
4476
4477 * eshell/em-unix.el (eshell/mkdir): Handle "--parents" (bug#12897).
4478
4479 2012-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
4480
4481 * emacs-lisp/advice.el (ad-make-advised-definition): Improve last fix.
4482
4483 * emacs-lisp/cl-lib.el: Set more meaningful version number.
4484
4485 2012-11-16 Martin Rudalics <rudalics@gmx.at>
4486
4487 * window.el (enlarge-window, shrink-window): Don't mention return
4488 value in doc-string (Bug#12896).
4489 (window--display-buffer): Don't resize frames - it won't work
4490 with all window managers and defeat pop-up-frame-alist.
4491 (display-buffer-alist): In doc-string explain that CONDITION can
4492 be a function and which arguments are passed to it (Bug#12854).
4493 (display-buffer-assq-regexp): New argument ACTION. Handle lambda
4494 expressions (Bug#12854).
4495 (display-buffer): Pass ACTION argument to
4496 display-buffer-assq-regexp.
4497
4498 2012-11-16 Glenn Morris <rgm@gnu.org>
4499
4500 * window.el (fit-frame-to-buffer-bottom-margin)
4501 (fit-frame-to-buffer, fit-window-to-buffer): Doc fixes.
4502
4503 * faces.el (face-underline-p): Use face-attribute-specified-or.
4504
4505 2012-11-16 Juanma Barranquero <lekktu@gmail.com>
4506
4507 * emacs-lisp/cl-macs.el (cl-loop, cl-do, cl-do*): Doc fixes.
4508
4509 2012-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
4510
4511 * emacs-lisp/cl-macs.el (cl-flet, cl-flet*): Fix docstring (bug#12895).
4512
4513 2012-11-16 Glenn Morris <rgm@gnu.org>
4514
4515 * eshell/em-cmpl.el (eshell-pcomplete): New command. (Bug#12838)
4516 (eshell-cmpl-initialize): Bind eshell-pcomplete to TAB, C-i.
4517
4518 * faces.el (face-underline-p): Doc fix. Handle :underline being
4519 things other than `t' (a string, a list).
4520 (face-inverse-video-p): Doc fix.
4521 (set-face-underline): Rename it back from set-face-underline-p.
4522 Doc fix. Allow interactive input of values other than t.
4523 (read-face-attribute): Apply formatting to :underline,
4524 since like :box and :stipple it can take list values.
4525
4526 * term.el (ansi-term): Don't let C-x escape-char binding
4527 clobber the more standard C-c binding. (Bug#12842)
4528
4529 * subr.el (set-temporary-overlay-map): Doc fix.
4530
4531 2012-11-16 Martin Rudalics <rudalics@gmx.at>
4532
4533 * window.el (record-window-buffer)
4534 (display-buffer-record-window): When copying the markers to
4535 window-point preserve window-point-insertion-type. (Bug#12588)
4536
4537 2012-11-16 Glenn Morris <rgm@gnu.org>
4538
4539 * emacs-lisp/eieio-datadebug.el (eieio-debug-methodinvoke):
4540 * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error):
4541 Use new names for hooks rather than obsolete aliases.
4542
4543 2012-11-15 Daniel Colascione <dancol@dancol.org>
4544
4545 * term/w32-win.el (w32-handle-dropped-file): Use a "file://"
4546 prefix instead of "file:" so that when FILE-NAME begins with "//",
4547 as it does when the target file is on a network share, url-handler
4548 isn't confused.
4549
4550 2012-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
4551
4552 * emacs-lisp/advice.el (ad-definition-type): Make sure we don't use
4553 a preactivated advice from an old advice.el; they're not compatible!
4554
4555 2012-11-15 Katsumi Yamaoka <yamaoka@jpl.org>
4556
4557 * emacs-lisp/nadvice.el (advice--make-interactive-form):
4558 Fix string-spec case.
4559
4560 * emacs-lisp/advice.el (ad-make-advised-definition): Fix undefined case.
4561
4562 2012-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
4563
4564 * emacs-lisp/nadvice.el: Add buffer-local support to add-function.
4565 (advice--buffer-local-function-sample): New var.
4566 (advice--set-buffer-local, advice--buffer-local): New functions.
4567 (add-function, remove-function): Use them.
4568
4569 2012-11-15 Drew Adams <drew.adams@oracle.com>
4570
4571 * imenu.el (imenu--split-submenus): Use imenu--subalist-p (bug#12717).
4572
4573 2012-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
4574
4575 * emacs-lisp/cl-macs.el (cl--transform-lambda): Defend against
4576 potential binding of print-gensym to t, and prettify (back)quotes in
4577 case they appear in args's default values (bug#12884).
4578
4579 2012-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
4580
4581 * emacs-lisp/nadvice.el: Add around advice for interactive specs.
4582 (advice-eval-interactive-spec): New function.
4583 (advice--make-interactive-form): Support around advice (bug#12844).
4584
4585 2012-11-14 Dmitry Gutov <dgutov@yandex.ru>
4586
4587 * progmodes/ruby-mode.el (ruby-expr-beg): Make heredoc detection
4588 more strict. Add docstring.
4589 (ruby-expression-expansion-re): Extract from
4590 `ruby-match-expression-expansion'.
4591 (ruby-syntax-propertize-function): After everything else, search
4592 for expansions in string literals, mark their insides as
4593 whitespace syntax and save match data for font-lock.
4594 (ruby-font-lock-keywords): Use the 2nd group from expression
4595 expansion matches.
4596 (ruby-match-expression-expansion): Use the match data saved to the
4597 text property in ruby-syntax-propertize-function.
4598
4599 2012-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
4600
4601 * emacs-lisp/gv.el (setf): Fix debug spec for multiple assignments
4602 (bug#12879).
4603
4604 2012-11-13 Dmitry Gutov <dgutov@yandex.ru>
4605
4606 * progmodes/ruby-mode.el (ruby-move-to-block): Looks for a block
4607 start/end keyword a bit harder. Works with different values of N.
4608 Add more comments.
4609 (ruby-end-of-block): Update accordingly.
4610
4611 2012-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
4612
4613 * woman.el (woman-file-name): Don't mess with unread-command-events
4614 (bug#12861).
4615
4616 * emacs-lisp/advice.el: Layer on top of nadvice.el.
4617 Remove out of date self-require hack.
4618 (ad-do-advised-functions): Use simple `dolist'.
4619 (ad-advice-name, ad-advice-protected, ad-advice-enabled)
4620 (ad-advice-definition): Redefine as functions.
4621 (ad-advice-classes): Move before first use.
4622 (ad-make-origname, ad-set-orig-definition, ad-clear-orig-definition)
4623 (ad-make-mapped-call, ad-make-advised-docstring,ad-make-plain-docstring)
4624 (ad--defalias-fset): Remove functions.
4625 (ad-make-advicefunname, ad-clear-advicefunname-definition): New funs.
4626 (ad-get-orig-definition): Rewrite.
4627 (ad-make-advised-definition-docstring): Change base docstring.
4628 (ad-real-orig-definition): Rewrite.
4629 (ad-map-arglists): Change name of called function.
4630 (ad--make-advised-docstring): Redirect `function' from ad-Advice-...
4631 (ad-make-advised-definition): Simplify.
4632 (ad-assemble-advised-definition): Tweak for new calling context.
4633 (ad-activate-advised-definition): Setup ad-Advice-* i.s.o ad-Orig-*.
4634 (ad--defalias-fset): Rename from ad-handle-definition. Make it set the
4635 function and call ad-activate if needed.
4636 (ad-activate, ad-deactivate): Don't call ad-handle-definition any more.
4637 (ad-recover): Clear ad-Advice-* instead of ad-Orig-*.
4638 (ad-compile-function): Compile ad-Advice-*.
4639 (ad-activate-on-top-level, ad-with-auto-activation-disabled): Remove.
4640 (ad-start-advice, ad-stop-advice): Remove.
4641
4642 2012-11-13 Dmitry Gutov <dgutov@yandex.ru>
4643
4644 * progmodes/ruby-mode.el (ruby-add-log-current-method): Print the
4645 period before class method names, not after. Remove handling of
4646 one impossible case. Add comments.
4647
4648 2012-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
4649
4650 * emacs-lisp/advice.el: Remove support for freezing.
4651 (ad-make-freeze-docstring, ad-make-freeze-definition): Remove functions.
4652 (ad-make-single-advice-docstring, ad-defadvice-flags, defadvice):
4653 Remove support for `freeze'.
4654
4655 * emacs-lisp/cl.el (dolist, dotimes, declare): Use advice-add to
4656 override the default.
4657 * emacs-lisp/cl-macs.el (cl-dolist, cl-dotimes): Rewrite without using
4658 cl--dotimes/dolist.
4659 * subr.el (dolist, dotimes, declare): Redefine them normally, even when
4660 `cl' is loaded.
4661
4662 * emacs-lisp/nadvice.el (advice--normalize): New function, extracted
4663 from add-advice.
4664 (advice--strip-macro): New function.
4665 (advice--defalias-fset): Use them to handle macros.
4666 (advice-add): Use them.
4667 (advice-member-p): Correctly handle macros.
4668
4669 2012-11-13 Dmitry Gutov <dgutov@yandex.ru>
4670
4671 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
4672 Never font-lock the beginning of singleton class as heredoc.
4673
4674 2012-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
4675
4676 * emacs-lisp/gv.el (gv-define-simple-setter): One more fix (bug#12871).
4677
4678 2012-11-13 Wolfgang Jenkner <wjenkner@inode.at>
4679
4680 * ansi-color.el (ansi-color-apply-sequence): Implement SGR codes
4681 39 and 49 (bug#12792). Also, treat unimplemented parameters as 0,
4682 thereby restoring the behavior of revisions prior to 2012-08-15T03:33:55Z!monnier@iro.umontreal.ca.
4683
4684 2012-11-13 Fabián Ezequiel Gallina <fgallina@cuca>
4685
4686 Fix end-of-defun misbehavior.
4687 * progmodes/python.el (python-nav-beginning-of-defun): Rename from
4688 python-beginning-of-defun-function. Handle nested defuns
4689 correctly.
4690 (python-nav-end-of-defun): Rename from
4691 python-end-of-defun-function. Ensure forward movement.
4692 (python-info-current-defun): Reimplement to work as intended
4693 with new fixed python-nav-{end,beginning}-of-defun. Stop scanning
4694 parent defuns as soon as possible.
4695
4696 2012-11-13 Glenn Morris <rgm@gnu.org>
4697
4698 * progmodes/flymake.el (flymake-error-bitmap)
4699 (flymake-warning-bitmap, flymake-fringe-indicator-position): Doc fixes.
4700 (flymake-error-bitmap, flymake-warning-bitmap): Fix :types.
4701
4702 2012-11-13 Dmitry Gutov <dgutov@yandex.ru>
4703
4704 * progmodes/ruby-mode.el (ruby-move-to-block): When moving
4705 backward, always stop at indentation. Reverts the change from
4706 2012-08-12T22:06:56Z!monnier@iro.umontreal.ca (Bug#12851).
4707
4708 2012-11-13 Glenn Morris <rgm@gnu.org>
4709
4710 * ibuffer.el (ibuffer-mode-map, ibuffer-mode):
4711 Add ibuffer-filter-by-derived-mode.
4712
4713 * ibuffer.el (ibuffer-mode-map): Don't have two menu items with
4714 the same name shadowing each other.
4715
4716 * window.el (with-temp-buffer-window): Doc tweak.
4717
4718 * emacs-lisp/debug.el (debugger-bury-or-kill): Doc tweak.
4719
4720 * help.el (temp-buffer-max-height):
4721 * window.el (fit-frame-to-buffer, fit-frame-to-buffer-bottom-margin):
4722 * emacs-lisp/debug.el (debugger-bury-or-kill): Fix :version.
4723
4724 2012-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
4725
4726 * emacs-lisp/nadvice.el: New package.
4727 * subr.el (special-form-p): New function.
4728 * emacs-lisp/elp.el: Use lexical-binding and advice-add.
4729 (elp-all-instrumented-list): Remove var.
4730 (elp-not-profilable): Remove elp-wrapper.
4731 (elp-profilable-p): Use autoloadp and special-form-p.
4732 (elp--advice-name): New const.
4733 (elp-instrument-function): Use advice-add.
4734 (elp--instrumented-p): New predicate.
4735 (elp-restore-function): Use advice-remove.
4736 (elp-restore-all, elp-reset-all): Use mapatoms.
4737 (elp-set-master): Use elp--instrumented-p.
4738 (elp--make-wrapper): Rename from elp-wrapper, return a function
4739 suitable for advice-add. Use cl-inf.
4740 (elp-results): Use mapatoms+elp--instrumented-p.
4741 * emacs-lisp/debug.el: Use lexical-binding and advice-add.
4742 (debug-function-list): Remove var.
4743 (debug): Rename arg, and then let-bind it explicitly inside.
4744 (debugger-setup-buffer): Rename arg.
4745 (debugger-setup-buffer): Adjust counts to new debug-on-entry setup.
4746 (debugger-frame-number): Adjust to new debug-on-entry setup.
4747 (debug--implement-debug-on-entry): Rename from
4748 implement-debug-on-entry, add argument.
4749 (debugger-special-form-p): Remove, use special-form-p instead.
4750 (debug-on-entry): Use advice-add.
4751 (debug--function-list): New function.
4752 (cancel-debug-on-entry): Use it, along with advice-remove.
4753 (debug-arglist, debug-convert-byte-code, debug-on-entry-1): Remove.
4754 (debugger-list-functions): Use debug--function-list instead of
4755 debug-function-list.
4756 * emacs-lisp/advice.el (ad-save-real-definition): Remove, unused.
4757 (ad-special-form-p): Remove, use special-form-p instead.
4758 (ad-set-advice-info): Use add-function and remove-function.
4759 (ad--defalias-fset): Adjust accordingly.
4760
4761 2012-11-10 Glenn Morris <rgm@gnu.org>
4762
4763 * mail/emacsbug.el (report-emacs-bug-tracker-url)
4764 (report-emacs-bug-bug-alist, report-emacs-bug-choice-widget)
4765 (report-emacs-bug-create-existing-bugs-buffer)
4766 (report-emacs-bug-parse-query-results)
4767 (report-emacs-bug-query-existing-bugs): Remove. (Bug#7449)
4768
4769 * term.el (term-default-fg-color, term-default-bg-color):
4770 Make obsolete, rather than just saying "deprecated" in the doc.
4771
4772 * term.el (term): Rename from `term-face'.
4773 (term-current-face, ansi-term-color-vector)
4774 (term-default-fg-color, term-default-bg-color, term-ansi-reset):
4775 Update all users.
4776
4777 2012-11-10 Jan Djärv <jan.h.d@swipnet.se>
4778
4779 * server.el (server-create-window-system-frame): Handle Nextstep
4780 specially (Bug#12780).
4781
4782 2012-11-10 Glenn Morris <rgm@gnu.org>
4783
4784 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs):
4785 Unautoload, and make obsolete. (Bug#7449)
4786
4787 2012-11-10 Chong Yidong <cyd@gnu.org>
4788
4789 * vc/diff-mode.el (diff-delete-trailing-whitespace): Rewrite, and
4790 rename from diff-remove-trailing-whitespace (Bug#12831).
4791
4792 2012-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
4793
4794 * emacs-lisp/advice.el: Require `cl-lib' at run-time to fix
4795 miscompilation of trace.el.
4796
4797 2012-11-10 Glenn Morris <rgm@gnu.org>
4798
4799 * vc/diff-mode.el (diff-remove-trailing-whitespace): Doc fix.
4800
4801 2012-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
4802
4803 * emacs-lisp/gv.el (gv-define-simple-setter): Fix last change
4804 (bug#12812).
4805
4806 2012-11-10 Chong Yidong <cyd@gnu.org>
4807
4808 * minibuf-eldef.el (minibuffer-eldef-shorten-default): Convert to
4809 a defcustom with an appropriate :set function.
4810 (minibuffer-default--in-prompt-regexps): New function.
4811
4812 2012-11-10 Glenn Morris <rgm@gnu.org>
4813
4814 * emacs-lisp/cl.el (define-setf-expander, defsetf)
4815 (define-modify-macro): Doc fixes.
4816
4817 * emacs-lisp/gv.el (gv-letplace): Fix doc typo.
4818 (gv-define-simple-setter): Update doc of `fix-return'.
4819
4820 2012-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
4821
4822 * emacs-lisp/gv.el (gv-define-simple-setter): Don't evaluate `val'
4823 twice when `fix-return' is set (bug#12813).
4824
4825 * emacs-lisp/cl.el (defsetf): Pass the third arg to
4826 gv-define-simple-setter (bug#12812).
4827
4828 * woman.el (woman-decode-region): Disable adaptive-fill when rendering
4829 (bug#12756).
4830
4831 2012-11-10 Glenn Morris <rgm@gnu.org>
4832
4833 * emacs-lisp/gv.el (gv-define-setter): Fix doc typo.
4834
4835 * emacs-lisp/cl-extra.el (cl-prettyexpand):
4836 * emacs-lisp/cl-lib.el (cl-proclaim, cl-declaim):
4837 * emacs-lisp/cl-macs.el (cl-destructuring-bind, cl-locally)
4838 (cl-the, cl-compiler-macroexpand): Add basic doc strings.
4839
4840 * emacs-lisp/cl-extra.el (cl-maplist, cl-mapcan): Doc fix.
4841
4842 2012-11-10 Leo Liu <sdl.web@gmail.com>
4843
4844 * ido.el (ido-set-matches-1): Improve flex matching performance by
4845 removing backtracking in the regexp (suggested by Stefan). (Bug#12796)
4846
4847 2012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
4848
4849 * emacs-lisp/advice.el (ad-set-advice-info): Set defalias-fset-function.
4850 (ad--defalias-fset): New function.
4851 (ad-safe-fset): Remove.
4852 (ad-make-freeze-definition): Use cl-letf*.
4853
4854 2012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
4855
4856 * subr.el (dolist): Don't bind VAR in RESULT.
4857
4858 * emacs-lisp/advice.el: Miscellaneous cleanup. Use lexical-binding.
4859 (fset, documentation): Don't save real def since we don't advise.
4860 (ad-do-advised-functions): Remove problematic `result-form'.
4861 (ad-safe-fset): `ad-real-fset' => `fset'.
4862 (ad-read-advised-function): Don't assume that ad-do-advised-functions
4863 uses CL's dolist internally.
4864 (ad-arglist): Remove unused arg `name'.
4865 (ad-docstring, ad-make-advised-docstring):
4866 `ad-real-documentation' => `documentation'.
4867 (warning-suppress-types): Declare.
4868 (ad-set-arguments): Simple CSE.
4869 (ad-recover-normality): Sanity check.
4870
4871 * emacs-lisp/bytecomp.el (byte-compile-out-toplevel): Don't turn
4872 (funcall '(lambda ..) ..) into ((lambda ..) ..).
4873
4874 2012-11-09 Vincent Belaïche <vincentb1@users.sourceforge.net>
4875
4876 * ses.el: symbol to coordinate mapping is made by symbol property
4877 `ses-cell'. This means that the same mapping is done for all SES
4878 sheets. That is good enough for cells with standard A1 names, but
4879 not for named cell. So a hash map is added for the latter.
4880 (defconst ses-localvars): Add local variable ses--named-cell-hashmap
4881 (ses-sym-rowcol): Use hashmap for named cell.
4882 (ses-is-cell-sym-p): New defun.
4883 (ses-decode-cell-symbol): New defun.
4884 (ses-create-cell-variable): Add cell to hashmap when name is not
4885 A1-like.
4886 (ses-rename-cell): Check that cell new name is not already in
4887 spreadsheet with the use of ses-is-cell-sym-p
4888 (ses-rename-cell): Use hash map for named cells, but accept also
4889 renaming back to A1-like.
4890
4891 2012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
4892
4893 * emacs-lisp/advice.el: Use new dynamic docstrings.
4894 (ad-make-advised-definition-docstring, ad-advised-definition-p):
4895 Use dynamic-docstring-function instead of ad-advice-info.
4896 (ad--make-advised-docstring): New function extracted from
4897 ad-make-advised-docstring.
4898 (ad-make-advised-docstring): Use it.
4899 * progmodes/sql.el (sql--make-help-docstring): New function, extracted
4900 from sql-help.
4901 (sql-help): Use it with dynamic-docstring-function.
4902
4903 * env.el (env--substitute-vars-regexp): Don't use rx (for bootstrap).
4904
4905 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
4906
4907 * files.el (hack-one-local-variable--obsolete): New function.
4908 (hack-one-local-variable): Use it for obsolete settings.
4909
4910 * subr.el (locate-user-emacs-file): If both old and new name exist, use
4911 the new name.
4912
4913 * progmodes/js.el (js--filling-paragraph): New var.
4914 (c-forward-sws, c-backward-sws, c-beginning-of-macro): Advise.
4915 (js-c-fill-paragraph): Prefer advice to cl-letf so the rebinding is
4916 less sneaky.
4917
4918 2012-11-08 Julien Danjou <julien@danjou.info>
4919
4920 * progmodes/ruby-mode.el (auto-mode-alist): Add Rakefile in
4921 `auto-mode-alist' (Bug#12835).
4922
4923 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
4924
4925 * progmodes/perl-mode.el (perl-prettify-symbols): New defcustom.
4926 (perl--prettify-symbols-alist): New const.
4927 (perl--font-lock-compose-symbol, perl--font-lock-symbols-keywords):
4928 New functions.
4929 (perl-font-lock-keywords-2): Use them.
4930 (perl-electric-noindent-p): New function.
4931 (perl-mode): Use it to set up electric-indent-mode.
4932 (perl-electric-terminator, perl-indent-command): Mark obsolete.
4933 (perl-mode-map): Remove bindings for them.
4934 (perl-imenu-generic-expression, perl-outline-level):
4935 Match functions&packages in column>0.
4936
4937 * env.el (env--substitute-vars-regexp): New const.
4938 (substitute-env-vars): Use it. Add `only-defined' arg.
4939 * net/tramp.el (tramp-replace-environment-variables): Use it.
4940
4941 * emacs-lisp/bytecomp.el (byte-compile-initial-macro-environment):
4942 Byte-compile *before* eval in eval-and-compile.
4943 (byte-compile-log-warning): Remove redundant inhibit-read-only.
4944 (byte-compile-file-form-autoload): Don't hide actual definition.
4945 (byte-compile-maybe-guarded): Accept `functionp' as well.
4946
4947 * emacs-lisp/gv.el (gv-ref, gv-deref): New function and macro.
4948
4949 2012-11-07 Michael Albinus <michael.albinus@gmx.de>
4950
4951 * notifications.el (notifications-get-server-information-method):
4952 New defconst.
4953 (notifications-get-capabilities): Fix docstring.
4954 (notifications-get-server-information): New defun.
4955
4956 2012-11-06 Agustín Martín Domingo <agustin.martin@hispalinux.es>
4957
4958 * textmodes/ispell.el (ispell-region): Standard re-indent for better
4959 readability.
4960
4961 * textmodes/ispell.el: Experimental support for support debugging.
4962 (ispell-create-debug-buffer): Create a `ispell-debug-buffer' debug
4963 buffer for ispell.
4964 (ispell-print-if-debug): New function to print stuff to
4965 `ispell-debug-buffer' if debugging is enabled.
4966 (ispell-region, ispell-process-line): Use `ispell-print-if-debug' to
4967 show some debugging info.
4968 (ispell-buffer-with-debug): New function that creates a debugging
4969 buffer and calls `ispell-buffer' with debugging enabled.
4970
4971 * textmodes/ispell.el (ispell-region): Do not prefix sent string by
4972 comment in autoconf mode. (Bug#12768)
4973
4974 2012-11-06 Dmitry Antipov <dmantipov@yandex.ru>
4975
4976 * emacs-lisp/byte-opt.el (toplevel): Add compare-window-configurations,
4977 frame-first-window, frame-root-window, frame-selected-window,
4978 minibuffer-selected-window, minibuffer-window,
4979 window-absolute-pixel-edges, window-at, window-body-height,
4980 window-body-width, window-display-table, window-combination-limit,
4981 window-frame, window-fringes, window-inside-absolute-pixel-edges,
4982 window-inside-edges, window-inside-pixel-edges, window-left-child,
4983 window-left-column, window-margins, window-next-buffers,
4984 window-next-sibling, window-new-normal, window-new-total,
4985 window-normal-size, window-parameter, window-parameters, window-parent,
4986 window-pixel-edges, window-point, window-prev-buffers,
4987 window-prev-sibling, window-redisplay-end-trigger, window-scroll-bars,
4988 window-start, window-text-height, window-top-child, window-top-line,
4989 window-total-height, window-total-width and window-use-time to the list
4990 of functions without side-effects.
4991 (toplevel): Add window-valid-p to the list of error-free functions
4992 without side-effects.
4993
4994 2012-11-05 Agustín Martín Domingo <agustin.martin@hispalinux.es>
4995
4996 * textmodes/ispell.el (ispell-program-name):
4997 Update spellchecker parameters when customized.
4998
4999 2012-11-04 Glenn Morris <rgm@gnu.org>
5000
5001 * vc/vc-svn.el (vc-svn-state-heuristic): Avoid calling svn. (Bug#7850)
5002
5003 2012-11-04 Chong Yidong <cyd@gnu.org>
5004
5005 * bookmark.el (bookmark-bmenu-switch-other-window): Avoid binding
5006 same-window-* variables.
5007
5008 2012-11-04 Juri Linkov <juri@jurta.org>
5009
5010 * isearch.el (isearch-help-for-help, isearch-describe-bindings)
5011 (isearch-describe-key, isearch-describe-mode): Use a display
5012 action instead of binding same-window-* variables (Bug#10040).
5013
5014 2012-11-03 Glenn Morris <rgm@gnu.org>
5015
5016 * emacs-lisp/cl-macs.el (cl-parse-loop-clause):
5017 Rename handler properties back from cl-- to cl-. (Bug#12788)
5018
5019 * emacs-lisp/cl-macs.el (cl-do-all-symbols): Add doc string.
5020
5021 2012-11-03 Eli Zaretskii <eliz@gnu.org>
5022
5023 * term/pc-win.el: Don't load term/internal from here.
5024
5025 * loadup.el: Load term/internal from here.
5026
5027 2012-11-03 Fabián Ezequiel Gallina <fgallina@cuca>
5028
5029 * progmodes/python.el (inferior-python-mode): Fix hang in
5030 jit-lock (Bug#12645).
5031
5032 2012-11-03 Martin Rudalics <rudalics@gmx.at>
5033
5034 * window.el (switch-to-visible-buffer)
5035 (switch-to-buffer-preserve-window-point): Fix doc-strings.
5036
5037 2012-11-03 Glenn Morris <rgm@gnu.org>
5038
5039 * emacs-lisp/cl-lib.el (cl--random-time):
5040 Rename from cl-random-time. (Bug#12773)
5041 (cl--gensym-counter, cl--random-state): Update callers.
5042 * emacs-lisp/cl-extra.el (cl-make-random-state): Update callers.
5043
5044 2012-11-03 Chong Yidong <cyd@gnu.org>
5045
5046 * cus-start.el: Make cursor-type customizable (Bug#11633).
5047
5048 2012-11-02 Glenn Morris <rgm@gnu.org>
5049
5050 * filecache.el: No need to load find-lisp when compiling.
5051 (find-lisp-find-files): Autoload it.
5052 (file-cache-add-directory-recursively): Don't require find-lisp.
5053
5054 * image.el (image-type-from-file-name): Trivial simplification.
5055
5056 * emacs-lisp/bytecomp.el (byte-compile-eval):
5057 Decouple "noruntime" and "cl-functions" warnings.
5058
5059 2012-11-01 Stephen Berman <stephen.berman@gmx.net>
5060
5061 * play/gomoku.el (gomoku-display-statistics): Update mode line
5062 only if in Gomoku buffer; don't capitalize "won" (Bug#12771).
5063
5064 2012-10-31 Martin Rudalics <rudalics@gmx.at>
5065
5066 * window.el (quit-restore-window): If the window has been
5067 created on an existing frame and ended up as the sole window on
5068 that frame, do not delete it (Bug#12764).
5069
5070 2012-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
5071
5072 * progmodes/sh-script.el (sh--inside-noncommand-expression):
5073 Rename from sh--inside-arithmetic-expression, handle more cases
5074 (bug#11263).
5075
5076 * progmodes/sh-script.el (sh--inside-arithmetic-expression): New func.
5077 (sh-font-lock-open-heredoc): Use it (bug#12770).
5078
5079 2012-10-30 Glenn Morris <rgm@gnu.org>
5080
5081 * emacs-lisp/cl-extra.el (cl-mapc): Add autoload cookie. Doc fix.
5082
5083 * emacs-lisp/cl.el (letf): Doc fix. (Bug#12760)
5084
5085 2012-10-29 Chong Yidong <cyd@gnu.org>
5086
5087 * isearch.el (isearch-other-meta-char): Ensure that a reprocessed
5088 function key is stored in a keyboard macro (Bug#4894).
5089
5090 * thingatpt.el (number-at-point): Apply a thing-at-point property.
5091
5092 2012-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
5093
5094 * vc/diff-mode.el (diff-context->unified): Don't get confused by "hunk
5095 header comments".
5096 (diff-unified->context, diff-context->unified)
5097 (diff-reverse-direction, diff-fixup-modifs): Use `use-region-p'.
5098
5099 * emacs-lisp/cl.el (letf): Add missing indent rules (bug#12759).
5100
5101 * files.el (find-alternate-file): Only ask one question (bug#12487).
5102
5103 2012-10-29 Chong Yidong <cyd@gnu.org>
5104
5105 * vc/vc-hooks.el (vc-file-clearprops): Kill vc-parent-buffer.
5106 Suggested by Dan Nicolaescu (Bug#6326).
5107
5108 * info.el (Info-complete-menu-item): Avoid duplicates (Bug#12705).
5109
5110 * startup.el (fancy-about-screen): Don't message (Bug#12680).
5111
5112 * thingatpt.el (thing-at-point): Doc fix (Bug#12691).
5113
5114 * imenu.el (imenu): Inhibit push-mark message (Bug#12726).
5115
5116 * face-remap.el (face-remap-add-relative): Handle the case where a
5117 face-remapping-alist entry is a cons cell (Bug#12762).
5118
5119 2012-10-29 Kevin Ryde <user42@zip.com.au>
5120
5121 * woman.el (woman-parse-numeric-value): Handle picas correctly
5122 (Bug#12639).
5123
5124 2012-10-29 Glenn Morris <rgm@gnu.org>
5125
5126 * emacs-lisp/cl.el (defsetf): Doc fix.
5127
5128 2012-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
5129
5130 * progmodes/sh-script.el (sh-font-lock-paren): Also put punctuation
5131 syntax to the matching opener, if any (bug#12547).
5132 (sh-smie-sh-forward-token, sh-smie-sh-backward-token): Recognize this
5133 matching open as a "case-(".
5134 (sh-smie-rc-grammar): Add a corresponding rule for it.
5135
5136 2012-10-28 Daniel Hackney <dan@haxney.org>
5137
5138 * emacs-lisp/package.el (package-generate-autoloads): Kill buffer
5139 "PKGNAME-autoloads.el" in case we created it.
5140
5141 2012-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
5142
5143 * minibuffer.el (completion--sifn-requote): Rewrite to handle things
5144 like Tramp's "/foo:~bar//baz" -> "/scpc:foo:/baz" mapping (bug#11714).
5145 (completion--twq-all): Disable too-strict assertions.
5146
5147 * tmm.el (tmm-prompt): Use map-keymap (bug#12744).
5148
5149 2012-10-27 Eli Zaretskii <eliz@gnu.org>
5150
5151 * profiler.el (profiler-report-make-entry-part): Fix help-echo
5152 text to match the real keybindings.
5153
5154 2012-10-27 Juri Linkov <juri@jurta.org>
5155
5156 * wdired.el (wdired-keep-marker-rename): New defcustom.
5157 (wdired-do-renames): Use it instead of `dired-keep-marker-rename'.
5158 (Bug#11795)
5159
5160 * dired.el (dired-keep-marker-rename): Add reference to
5161 `wdired-keep-marker-rename' in the docstring.
5162 Add default character value ?R to display initially in
5163 Customization UI instead of ?@.
5164
5165 2012-10-27 Martin Rudalics <rudalics@gmx.at>
5166
5167 * window.el (display-buffer): In doc-string describe
5168 window-height and window-width alist entries.
5169
5170 * time.el (display-time-world): Restore fit-window-to-buffer
5171 behavior.
5172
5173 2012-10-27 Chong Yidong <cyd@gnu.org>
5174
5175 * subr.el (insert-buffer-substring-as-yank): Doc fix.
5176
5177 2012-10-26 Jambunathan K <kjambunathan@gmail.com>
5178
5179 * minibuffer.el (completion-category-overrides): New completion
5180 category `bookmark' (bug#11131).
5181
5182 2012-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
5183
5184 * emacs-lisp/advice.el (ad-assemble-advised-definition):
5185 Silence bogus compiler warnings for ad-do-it.
5186
5187 * bookmark.el (bookmark-completing-read): Set the completion category
5188 to `bookmark' (bug#11131).
5189
5190 2012-10-26 Bastien <bzg@altern.org>
5191 Stefan Monnier <monnier@iro.umontreal.ca>
5192
5193 * face-remap.el: Use lexical-binding.
5194 (text-scale-adjust): Improve docstring. Use itself for the temporary
5195 overlay-map bindings, so as to repeat the "Use..." message each time.
5196
5197 2012-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
5198
5199 * emacs-lisp/macroexp.el (macroexp--expand-all):
5200 Obey byte-compile-warning-enabled-p (bug#12486).
5201
5202 * vc/diff-mode.el (diff-end-of-hunk): Also skip potential "no LF at eol".
5203 (diff-refine-hunk): Similarly, handle the "no LF at eol" (bug#12584).
5204
5205 2012-10-26 Martin Rudalics <rudalics@gmx.at>
5206
5207 * mouse.el (mouse-drag-line): Move last form into preceding when
5208 clause (Bug#12731).
5209
5210 * help.el (resize-temp-buffer-window): Fix doc-string.
5211
5212 2012-10-25 David Engster <deng@randomsample.de>
5213
5214 * emacs-lisp/eieio.el (eieio-update-lisp-imenu-expression):
5215 Remove. This feature is already integrated in imenu.
5216
5217 * emacs-lisp/eieio-opt.el: Remove require for `button' since it is
5218 always loaded. Require `speedbar' unconditionally.
5219
5220 2012-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
5221
5222 * dired.el (dired-get-marked-files): Allow ! on . and .. (bug#12725).
5223
5224 * minibuffer.el (minibuffer-force-complete): Fix thinko.
5225
5226 * net/ldap.el (ldap-search-internal): The official ldif format starts
5227 with a "version: 1" header (bug#12724).
5228
5229 * emacs-lisp/package.el (package-installed-p): Warn if not ready
5230 (bug#12721).
5231
5232 2012-10-25 Glenn Morris <rgm@gnu.org>
5233
5234 * emacs-lisp/cl-macs.el (cl-progv): Doc fix.
5235
5236 2012-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
5237
5238 * minibuffer.el (minibuffer-force-complete): Use one more marker
5239 for the temporary-overlay-map command (bug#12619).
5240
5241 2012-10-24 Chong Yidong <cyd@gnu.org>
5242
5243 * time.el (display-time-world-mode): Derive from special-mode.
5244 (display-time-world): Use display-buffer (Bug#12708).
5245 (display-time-world-mode-map): Variable deleted.
5246 (display-time-world-display): Wrap the final delete-char inside
5247 inhibit-read-only.
5248
5249 2012-10-24 Chong Yidong <cyd@gnu.org>
5250
5251 * dired.el (dired-mark, dired-unmark, dired-flag-file-deletion):
5252 Doc fix.
5253
5254 * emacs-lisp/easymenu.el (easy-menu-define): Doc fix (Bug#12628).
5255
5256 2012-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
5257
5258 * minibuffer.el (completion--all-sorted-completions-location): New var.
5259 (completion--cache-all-sorted-completions)
5260 (completion--flush-all-sorted-completions): Use it.
5261 (completion-in-region, completion-in-region--postch)
5262 (completion-at-point, completion-help-at-point): Use markers in
5263 completion-in-region--data (bug#12619).
5264
5265 2012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
5266
5267 * progmodes/compile.el (compilation-start): Try to handle common
5268 quoting of `cd' argument (bug#12640).
5269
5270 * vc/diff-mode.el (diff-hunk): `save-excursion' while refining
5271 (bug#12671).
5272
5273 2012-10-23 Glenn Morris <rgm@gnu.org>
5274
5275 * progmodes/gud.el (gud-menu-map):
5276 Check gdb-active-process is bound. (Bug#12358)
5277
5278 2012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
5279
5280 * repeat.el (repeat): Set real-this-command (bug#12232).
5281
5282 * htmlfontify.el (hfy-post-html-hook):
5283 * filesets.el (filesets-cache-fill-content-hook):
5284 * arc-mode.el (archive-extract-hook):
5285 * progmodes/cc-mode.el (c-prepare-bug-report-hook):
5286 * net/rcirc.el (rcirc-sentinel-functions)
5287 (rcirc-receive-message-functions, rcirc-activity-functions)
5288 (rcirc-print-functions):
5289 * net/dbus.el (dbus-event-error-functions):
5290 * emacs-lisp/eieio.el (eieio-pre-method-execution-functions):
5291 * emacs-lisp/checkdoc.el (checkdoc-style-functions)
5292 (checkdoc-comment-style-functions): Don't use "-hooks" suffix.
5293 * term/sun.el (sun-raw-prefix-hooks):
5294 * mail/sendmail.el (mail-yank-hooks): Use make-obsolete-variable.
5295
5296 2012-10-23 Michael Albinus <michael.albinus@gmx.de>
5297
5298 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
5299 Set `tramp-chunksize' to 1. This improves the performance.
5300 (tramp-smb-wait-for-output): Add timeout to
5301 `tramp-accept-process-output' calls.
5302
5303 2012-10-23 Chong Yidong <cyd@gnu.org>
5304
5305 * faces.el (font-list-limit): Define as an obsolete variable.
5306
5307 * startup.el (command-line):
5308 * cus-start.el: Don't refer to font-list-limit.
5309
5310 * newcomment.el (comment-normalize-vars): Doc fix (Bug#12583).
5311
5312 2012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
5313
5314 * subr.el (internal-temp-output-buffer-show): Rename from
5315 temp-output-buffer-show, since previously compiled files expect this name.
5316
5317 2012-10-23 Glenn Morris <rgm@gnu.org>
5318
5319 * image.el (image-type-from-file-name): If multiple types match,
5320 return the first one that is supported. (Bug#9045)
5321
5322 2012-10-22 Glenn Morris <rgm@gnu.org>
5323
5324 * image.el (imagemagick-enabled-types): Doc fix.
5325
5326 2012-10-22 Takafumi Arakaki <aka.tkf@gmail.com> (tiny change)
5327
5328 * progmodes/which-func.el (which-func-current): The hash-table may have
5329 an explicit nil (bug#12338).
5330
5331 2012-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
5332
5333 * electric.el (electric-pair-delete-selection-self-insert-function):
5334 Rename to electric-pair-will-use-region, return a boolean.
5335 (electric-pair-mode): Adjust accordingly. Don't require delsel.
5336
5337 * delsel.el (delete-selection-helper): Use a function instead of a hook.
5338 (delete-selection-pre-hook): Use use-region-p.
5339 (delete-selection-self-insert-function): Remove.
5340 (self-insert-command): Obey self-insert-uses-region-functions.
5341 (self-insert-iso): Revert to previous setting, since we don't actually
5342 know what that command does.
5343 (delete-selection-self-insert-hooks): Remove.
5344
5345 2012-10-22 Simon Law <sfllaw@sfllaw.ca> (tiny change)
5346
5347 * delsel.el (delete-selection-helper): New function, extracted from
5348 delete-selection-pre-hook.
5349 (delete-selection-pre-hook): Use it.
5350 (delete-selection-self-insert-function): New function.
5351 (delete-selection-self-insert-hooks): New hook.
5352 (self-insert-command, self-insert-iso): Use it.
5353 * electric.el (electric-pair-syntax): New function, extracted from
5354 electric-pair-post-self-insert-function.
5355 (electric-pair-post-self-insert-function): Use it.
5356 (electric-pair-delete-selection-self-insert-function): New function.
5357 (electric-pair-mode): Require delsel and setup
5358 delete-selection-self-insert-hooks (bug#11520).
5359
5360 2012-10-20 Chong Yidong <cyd@gnu.org>
5361
5362 * vc/vc.el (vc-diff-internal): Set up Diff mode even if there are
5363 no changes to show (Bug#12586).
5364
5365 * eshell/esh-cmd.el (eshell-rewrite-for-command): Copy the body
5366 list explicitly (Bug#12571).
5367
5368 2012-10-20 Arne Jørgensen <arne@arnested.dk>
5369
5370 * progmodes/flymake.el (flymake-create-temp-inplace):
5371 Use file-truename.
5372
5373 2012-10-20 Eli Zaretskii <eliz@gnu.org>
5374
5375 * loadup.el: Update comment about uncompiled Lisp files. (Bug#12395)
5376
5377 2012-10-20 Jay Belanger <jay.p.belanger@gmail.com>
5378
5379 * calc/calc-units.el (math-extract-units): Properly extract powers
5380 of units.
5381
5382 2012-10-20 Daniel Colascione <dancol@dancol.org>
5383
5384 * frame.el (make-frame): Set x-display-name as we used to in order
5385 to unbreak creating an X11 frame from an Emacs daemon started
5386 without a display.
5387
5388 2012-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
5389
5390 * minibuffer.el (minibuffer-force-complete): Make the next completion use
5391 the same completion-field (bug#12221).
5392
5393 2012-10-19 Martin Rudalics <rudalics@gmx.at>
5394
5395 * emacs-lisp/debug.el (debug): Record height of debugger window
5396 also when debugger will be back (Bug#8789).
5397
5398 2012-10-18 Chong Yidong <cyd@gnu.org>
5399
5400 * progmodes/gdb-mi.el (gdb-display-buffer-other-frame-action):
5401 Convert to defcustom.
5402 (gdb-get-source-file): Don't bind pop-up-windows.
5403
5404 * progmodes/gud.el (gud-display-line): Don't specially re-use
5405 other frames for the gdb-mi case (Bug#12648).
5406
5407 2012-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
5408
5409 * emacs-lisp/advice.el: Clean up commentary a bit.
5410 (ad-do-advised-functions, ad-with-originals): Use `declare'.
5411 (byte-code-function-p): Never redefine.
5412
5413 * emacs-lisp/gv.el (cond): Same fix as before for `if'.
5414
5415 2012-10-18 Glenn Morris <rgm@gnu.org>
5416
5417 * dired.el (dired-sort-toggle): Some ls implementations only allow
5418 a single option string. (Bug#12666)
5419
5420 * minibuffer.el (completion-cycle-threshold): Doc fix.
5421
5422 2012-10-17 Kenichi Handa <handa@gnu.org>
5423
5424 * international/mule.el (set-keyboard-coding-system):
5425 Recover input meta mode when the new coding system doesn not use 8-bit.
5426 Supply TERMINAL arg to set-input-meta-mode.
5427
5428 2012-10-17 Michael Heerdegen <michael_heerdegen@web.de>
5429
5430 * wdired.el (wdired-old-marks): New variable.
5431 (wdired-change-to-wdired-mode): Locally set wdired-old-marks.
5432 (wdired-do-renames): Move point with renamed file and don't lose
5433 mark status (Bug#11795).
5434
5435 2012-10-16 Juri Linkov <juri@jurta.org>
5436
5437 * replace.el (query-replace-help): Mention multi-buffer replacement
5438 keys in the Help message. (Bug#12655)
5439
5440 2012-10-15 Chong Yidong <cyd@gnu.org>
5441
5442 * emacs-lisp/byte-run.el (defsubst): Doc fix.
5443
5444 2012-10-14 Eli Zaretskii <eliz@gnu.org>
5445
5446 * window.el (display-buffer): Doc fix.
5447
5448 * progmodes/compile.el (compilation-error-regexp-alist-alist):
5449 Adjust the msft regexp to the output of Studio 2010, and move msft
5450 before edg-1. See the discussion on emacs-devel,
5451 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00579.html,
5452 for the details.
5453
5454 2012-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
5455
5456 * emacs-lisp/eieio.el (eieio-oset-default, eieio-oset, oset-default)
5457 (oset): Move uses of object-class-fast macro after its definition.
5458
5459 * emacs-lisp/gv.el (if): Don't use closures in non-lexical-binding code.
5460
5461 2012-10-13 Chong Yidong <cyd@gnu.org>
5462
5463 * textmodes/ispell.el (ispell-pdict-save): If flyspell-mode is
5464 enabled, re-enable it (Bug#11963).
5465
5466 2012-10-13 Martin Rudalics <rudalics@gmx.at>
5467
5468 * emacs-lisp/debug.el (debug): When debugger-will-be-back is
5469 non-nil, restore window configuration (Bug#12623).
5470
5471 2012-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
5472
5473 * help-fns.el (describe-variable, describe-function-1):
5474 * help-mode.el (help-make-xrefs): Remove error handler, made unneeded.
5475
5476 * emacs-lisp/eieio.el (lisp-imenu-generic-expression): Fix typo.
5477
5478 2012-10-12 Glenn Morris <rgm@gnu.org>
5479
5480 * mail/rmailsum.el (rmail-header-summary):
5481 Fix 2010-11-26 test for multiline Subject: field. (Bug#12625)
5482
5483 2012-10-12 Fabián Ezequiel Gallina <fgallina@cuca>
5484
5485 * progmodes/python.el (python-mode-map):
5486 Replace subtitute-key-definition with proper command remapping.
5487 (python-nav--up-list): Fix behavior for blocks on the same level.
5488
5489 2012-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
5490
5491 * help-fns.el (describe-function-1): Handle autoloads w/o docstrings.
5492
5493 * emacs-lisp/bytecomp.el (byte-compile-eval): Adjust to long-ago
5494 changes to the format of load-history.
5495
5496 * international/mule-cmds.el (read-char-by-name): Move let-binding of
5497 completion-ignore-case in case that var is buffer-local (bug#12615).
5498
5499 2012-10-11 Kenichi Handa <handa@gnu.org>
5500
5501 * international/eucjp-ms.el: Re-generated.
5502
5503 2012-10-10 Kenichi Handa <handa@gnu.org>
5504
5505 * select.el (xselect--encode-string): If a coding is specified for
5506 selection, and that is compatible with COMPOUND_TEXT, use it.
5507
5508 2012-10-10 Martin Rudalics <rudalics@gmx.at>
5509
5510 * window.el (switch-to-buffer-preserve-window-point): New option.
5511 (switch-to-buffer):
5512 Obey `switch-to-buffer-preserve-window-point' (Bug#4041).
5513
5514 2012-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
5515
5516 * newcomment.el (comment-start-skip, comment-end-skip, comment-end):
5517 Don't document nil as a useful value (bug#12583).
5518
5519 2012-10-09 Michael Albinus <michael.albinus@gmx.de>
5520
5521 * net/tramp.el (tramp-debug-message):
5522 Remove "tramp-with-progress-reporter" from regexp of ignored functions.
5523 (with-tramp-progress-reporter): Rename from
5524 `tramp-with-progress-reporter'.
5525 (with-tramp-file-property, with-tramp-connection-property):
5526 Move from tramp-cache.el, rename from `with-file-property' and
5527 `with-connection-property', respectively.
5528
5529 * net/tramp-cache.el: Remove `with-file-property' and
5530 `with-connection-property'.
5531
5532 * net/tramp.el:
5533 * net/tramp-gvfs.el:
5534 * net/tramp-sh.el:
5535 * net/tramp-smb.el: Adapt callees.
5536
5537 * net/trampver.el: Update release number.
5538
5539 2012-10-09 Glenn Morris <rgm@gnu.org>
5540
5541 * w32-fns.el (set-message-beep):
5542 * term/w32-win.el (set-message-beep): Update declarations.
5543
5544 2012-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
5545
5546 * bindings.el (mode-line-toggle-read-only, mode-line-toggle-modified)
5547 (mode-line-widen, mode-line-input-method-map)
5548 (mode-line-coding-system-map, mode-line-remote)
5549 (mode-line-unbury-buffer, mode-line-bury-buffer)
5550 (mode-line-next-buffer, mode-line-previous-buffer):
5551 Replace save-selected-window+select-window => with-selected-window.
5552
5553 * progmodes/cc-bytecomp.el (cc-bytecomp-defmacro): Remove, unused.
5554 * progmodes/cc-vars.el (bq-process): Remove, unused.
5555
5556 * emacs-lisp/cl-macs.el (cl-defstruct): Obey the :read-only property.
5557
5558 2012-10-09 Fabián Ezequiel Gallina <fgallina@cuca>
5559
5560 Implemented `backward-up-list'-like navigation.
5561 * progmodes/python.el (python-nav-up-list)
5562 (python-nav-backward-up-list): New functions.
5563 (python-mode-map): Define substitute key for backward-up-list to
5564 python-nav-backward-up-list.
5565
5566 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
5567
5568 * progmodes/python.el (python-fill-paragraph): Rename from
5569 python-fill-paragraph-function. Fixed fill-paragraph for
5570 decorators (Bug#12605).
5571
5572 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
5573
5574 * progmodes/python.el (python-shell-output-filter): Handle extra
5575 carriage return in OSX (Bug#12409).
5576
5577 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
5578
5579 Fix shell handling of unbalanced quotes and parens in output.
5580 * progmodes/python.el (python-rx-constituents): Add string-delimiter.
5581 (python-syntax-propertize-function): Use it.
5582 (python-shell-output-syntax-table): New var.
5583 (inferior-python-mode): Prevent unbalanced parens/quotes from
5584 previous output mess with current input context.
5585
5586 2012-10-08 Juanma Barranquero <lekktu@gmail.com>
5587
5588 * generic-x.el (javascript-generic-mode, javascript-generic-mode-hook):
5589 Make obsolete aliases of js-mode and js-mode-hook (from js.el).
5590
5591 2012-10-08 Michael Albinus <michael.albinus@gmx.de>
5592
5593 * ffap.el (ffap-replace-file-component): Support Tramp file name
5594 syntax, not only ange-ftp's one.
5595
5596 2012-10-08 Glenn Morris <rgm@gnu.org>
5597
5598 * cus-start.el (message-log-max): Set :version.
5599
5600 * calendar/calendar.el (calendar-intermonth-header): Doc fix.
5601
5602 2012-10-08 Martin Rudalics <rudalics@gmx.at>
5603
5604 * emacs-lisp/edebug.el (edebug-pop-to-buffer): Don't try to split
5605 the minibuffer window (Bug#10851).
5606
5607 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
5608
5609 Enhancements on forward-sexp movement.
5610 * progmodes/python.el (python-nav-beginning-of-statement)
5611 (python-nav-end-of-statement): Return point-marker.
5612 (python-nav-forward-sexp): lisp-like forward-sexp behavior.
5613 (python-info-current-symbol)
5614 (python-info-statement-starts-block-p): Rename from
5615 python-info-beginning-of-block-p.
5616 (python-info-statement-ends-block-p): Rename from
5617 python-info-end-of-block-p.
5618 (python-info-beginning-of-statement-p)
5619 (python-info-end-of-statement-p)
5620 (python-info-beginning-of-block-p, python-info-end-of-block-p):
5621 New functions.
5622
5623 2012-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
5624
5625 * comint.el (comint-preinput-scroll-to-bottom): Preserve the
5626 frame-selected-windows.
5627
5628 2012-10-08 Daniel Colascione <dancol@dancol.org>
5629
5630 * battery.el (battery-status-function): Check for
5631 w32-battery-status itself, not system-time windows-nt.
5632
5633 * frame.el: Require cl-lib.
5634 (display-format-alist): New variable mapping frame types to
5635 functions that initialize them.
5636 (window-system-for-display): New function: interprets
5637 display-format-alist.
5638 (make-frame-on-display): Remove existing display-selection logic
5639 and just forward to make-frame, which will now DTRT.
5640 (make-frame): Restructure to use window-system-for-display to
5641 figure out how to create a frame on a given display.
5642 (display-mouse-p): Look for frame-type w32, not a particular
5643 system-type.
5644
5645 * loadup.el: Load w32 lisp code when we have the w32 feature.
5646
5647 * mouse.el (mouse-yank-primarY): Look for frame-type w32, not
5648 system-type windows-nt.
5649
5650 * server.el (server-create-window-system-frame): Look for window
5651 type.
5652 (server-proces-filter): Only force a window system when windows-nt
5653 _and_ w32. Explain why.
5654
5655 * simple.el (normal-erase-is-backspace-mode): Add w32 to the list
5656 of window systems we configure for the mode.
5657
5658 * startup.el (command-line): Mark window system is initialized
5659 after we've done it.
5660
5661 * common-win.el (x-select-text): Look for w32, not windows-nt.
5662
5663 * ns-win.el: Require cl-lib. Add ourselves to
5664 display-format-alist.
5665 (ns-initialize-window-system): Assert we're not initialized twice.
5666
5667 * w32-win.el: Enable lexical binding; require cl-lib; add
5668 ourselves to display-format-alist.
5669 (w32-handle-dropped-file): Convert incoming dropped files from
5670 Windows paths to Cygwin ones before passing them on to the rest of
5671 Emacs.
5672 (w32-drag-n-drop): New paramter new-frame. Simplify logic.
5673 (w32-initialize-window-system): Assert we're not initialized twice.
5674
5675 * x-win.el: Require cl-lib; add ourselves to display-format-alist.
5676 (x-initialize-window-system): Assert we're not initialized twice.
5677
5678 * w32-common-fns.el: New File.
5679 (w32-version, w32-using-nt, w32-get-clipboard-data)
5680 (w32-set-clipboard-data, x-set-selection, x-get-selection)
5681 (w32-charset-info-alist, x-last-selected, text)
5682 (x-get-selection-value, x-selection-value): Move here.
5683
5684 * w32-fns.el: Require w32-common-fns.
5685 (w32-version, w32-using-nt, w32-get-clipboard-data)
5686 (w32-set-clipboard-data, x-set-selection, x-get-selection)
5687 (w32-charset-info-alist, x-last-selected, text)
5688 (x-get-selection-value, x-selection-value): Move to
5689 w32-common-fns.
5690
5691 * w32-vars.el:
5692 (w32-allow-system-shell, w32-system-shells): Define only in
5693 non-cygwin case.
5694
5695 2012-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
5696
5697 * subr.el (read-passwd-map): Don't use `defconst' (bug#12597).
5698 (read-passwd): Remove a few more potential sources of leaks.
5699
5700 2012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
5701
5702 * progmodes/python.el (inferior-python-mode)
5703 (python-shell-make-comint): Fix initialization of local
5704 variables copied from parent buffer.
5705
5706 2012-10-07 Jan Djärv <jan.h.d@swipnet.se>
5707
5708 * term/ns-win.el (ns-read-file-name): Update declaration to match
5709 nsfns.m.
5710 (ns-respond-to-change-font): Change fontsize separately so we are sure
5711 it is set when font is acted upon.
5712
5713 2012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
5714
5715 Enhancements to indentation.
5716 * progmodes/python.el (python-indent-context): Give priority to
5717 inside-string context. Make comments indentation markers.
5718 (python-indent-region): Do not mess with strings, unless it's the
5719 enclosing set of quotes.
5720
5721 2012-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
5722
5723 * window.el (internal--before-save-selected-window)
5724 (internal--after-save-selected-window): New functions extracted from
5725 save-selected-window. Make sure we return the `alist' we construct.
5726 (save-selected-window): Use them.
5727
5728 * textmodes/tex-mode.el (tex-recenter-output-buffer):
5729 Use with-selected-window.
5730
5731 * emacs-lisp/autoload.el (make-autoload): Add `cl-defmacro' to the
5732 forms that define macros (bug#12593).
5733
5734 2012-10-07 Kenichi Handa <handa@gnu.org>
5735
5736 * international/mule-conf.el (compound-text-with-extensions):
5737 Add :mime-charset property as x-ctext.
5738
5739 2012-10-07 Stefan Merten <smerten@oekonux.de>
5740
5741 * textmodes/rst.el (rst-new-adornment-down, rst-indent-field)
5742 (rst-indent-literal-normal, rst-indent-literal-minimized)
5743 (rst-indent-comment): Correct :version tag.
5744 (rst-official-cvs-rev): Correct version string.
5745
5746 2012-10-07 Glenn Morris <rgm@gnu.org>
5747
5748 * mail/rmailmm.el (rmail-mime-process-multipart):
5749 Do not confuse a multipart message with an epilogue
5750 with a "truncated" one; fixes 2011-06-27 change. (Bug#10101)
5751
5752 2012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
5753
5754 Fix shell output retrieval and comint-prompt-regexp init.
5755 * progmodes/python.el (inferior-python-mode):
5756 (python-shell-make-comint): Fix initialization of
5757 comint-prompt-regexp from copied file local variables.
5758 (python-shell-fetched-lines): Remove var.
5759 (python-shell-output-filter-in-progress): Rename from
5760 python-shell-fetch-lines-in-progress.
5761 (python-shell-output-filter-buffer): Rename from
5762 python-shell-fetch-lines-string.
5763 (python-shell-fetch-lines-filter): Delete function.
5764 (python-shell-output-filter): New function.
5765 (python-shell-send-string-no-output): Use them.
5766
5767 2012-10-07 Glenn Morris <rgm@gnu.org>
5768
5769 * hi-lock.el (hi-lock-process-phrase):
5770 Try to make it less fragile. (Bug#7161)
5771
5772 * hi-lock.el (hi-lock-face-phrase-buffer): Doc fix.
5773
5774 2012-10-06 Glenn Morris <rgm@gnu.org>
5775
5776 * ehelp.el (electric-help-mode): Use help-mode rather than
5777 non-existent mode `help'.
5778 (electric-help-map): Use button-buffer-map. (Bug#10917)
5779
5780 * textmodes/reftex-vars.el (reftex-create-bibtex-header)
5781 (reftex-create-bibtex-footer): Fix custom types.
5782
5783 * progmodes/sh-script.el (sh-indent-after-continuation):
5784 Add explicit :group.
5785
5786 * textmodes/rst.el (rst-preferred-decorations)
5787 (rst-shift-basic-offset): Clarify obsolescence versions.
5788
5789 * profiler.el (profiler): Add missing group :version tag.
5790 * avoid.el (mouse-avoidance-banish-position):
5791 * proced.el (proced-renice-command):
5792 * calc/calc.el (calc-ensure-consistent-units):
5793 * calendar/icalendar.el (icalendar-import-format-uid):
5794 * net/tramp.el (tramp-save-ad-hoc-proxies):
5795 * progmodes/bug-reference.el (bug-reference-bug-regexp):
5796 * progmodes/flymake.el (flymake-error-bitmap)
5797 (flymake-warning-bitmap, flymake-fringe-indicator-position):
5798 * progmodes/sh-script.el (sh-indent-after-continuation):
5799 * progmodes/verilog-mode.el (verilog-auto-template-warn-unused)
5800 (verilog-before-save-font-hook, verilog-after-save-font-hook):
5801 * progmodes/vhdl-mode.el (vhdl-makefile-default-targets)
5802 (vhdl-array-index-record-field-in-sensitivity-list)
5803 (vhdl-indent-comment-like-next-code-line):
5804 * textmodes/reftex-vars.el (reftex-ref-style-alist)
5805 (reftex-ref-macro-prompt, reftex-ref-style-default-list)
5806 (reftex-cite-key-separator, reftex-create-bibtex-header)
5807 (reftex-create-bibtex-footer):
5808 * textmodes/rst.el (rst-new-adornment-down, rst-indent-field)
5809 (rst-indent-literal-normal, rst-indent-literal-minimized)
5810 (rst-indent-comment): Add missing custom :version tags.
5811
5812 * calendar/timeclock.el (timeclock-modeline-display):
5813 Add missing obsolete alias for renamed user option.
5814
5815 * strokes.el (strokes-modeline-string):
5816 * emulation/crisp.el (crisp-mode-modeline-string):
5817 * eshell/esh-mode.el (eshell-status-in-modeline):
5818 Aliases to defcustoms must come before the defcustom.
5819
5820 * calendar/cal-tex.el (cal-tex-diary, cal-tex-cursor-week)
5821 (cal-tex-cursor-week2, cal-tex-cursor-week-iso)
5822 (cal-tex-cursor-week-monday): Doc fixes.
5823 (cal-tex-cursor-week2-summary): Doc fix.
5824 Rename from cal-tex-cursor-week-at-a-glance.
5825
5826 * calendar/cal-menu.el (cal-menu-context-mouse-menu):
5827 Tweak week descriptions. Add cal-tex-cursor-week2-summary.
5828
5829 * calendar/calendar.el (calendar-mode-map):
5830 Add cal-tex-cursor-week2-summary.
5831
5832 2012-10-06 Stefan Monnier <monnier@iro.umontreal.ca>
5833
5834 * emacs-lisp/cl-macs.el (cl-defstruct): Improve docstring.
5835
5836 * subr.el (read-passwd-map): New var.
5837 (read-passwd): Use `read-string' again.
5838 * minibuffer.el (delete-minibuffer-contents): Make it interactive.
5839
5840 2012-10-06 Jambunathan K <kjambunathan@gmail.com>
5841
5842 * register.el (append-to-register, prepend-to-register):
5843 Deactivate mark, as does `copy-to-register' (bug#12389).
5844
5845 2012-10-06 Chong Yidong <cyd@gnu.org>
5846
5847 * files.el (auto-mode-alist): Add .by and .wy (Semantic grammars).
5848
5849 2012-10-06 Ikumi Keita <ikumi@ikumi.que.jp> (tiny change)
5850
5851 * international/characters.el: Fix simple mistake ((car chars) ->
5852 elt), delete duplicated code.
5853
5854 2012-10-06 Glenn Morris <rgm@gnu.org>
5855
5856 * subr.el (read-passwd): Allow C-u to erase entry. (Bug#12570)
5857
5858 2012-10-06 Julian Scheid <julians37@gmail.com> (tiny change)
5859
5860 * color.el (color-hsl-to-rgb): Fix incorrect results for
5861 small and large hue values. (Bug#12559)
5862
5863 2012-10-05 Fabián Ezequiel Gallina <fgallina@cuca>
5864
5865 Enhancements to docstring formatting when filling paragraphs.
5866 * progmodes/python.el (python-fill-docstring-style): Rename from
5867 python-fill-string-style. Added new style.
5868 (python-fill-string): Use new style. Better checks for
5869 docstrings.
5870
5871 2012-10-05 Glenn Morris <rgm@gnu.org>
5872
5873 * net/newst-treeview.el (newsticker-group-move-feed): Doc fix.
5874
5875 * color.el (color-name-to-rgb, color-rgb-to-hex)
5876 (color-hue-to-rgb, color-hsl-to-rgb, color-rgb-to-hsv)
5877 (color-rgb-to-hsl, color-srgb-to-xyz, color-saturate-hsl)
5878 (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
5879 (color-lighten-name, color-darken-hsl, color-darken-name): Doc fixes.
5880
5881 * emacs-lisp/timer.el (with-timeout): Add missing progn. (Bug#12577)
5882
5883 2012-10-05 Juanma Barranquero <lekktu@gmail.com>
5884
5885 * ido.el (ido-directory-too-big-p): Pass dir through file-truename
5886 to get the correct size across symlinks.
5887
5888 * ido.el (ido-buffer-disable-smart-matches): Fix typo in docstring.
5889
5890 2012-10-04 Juri Linkov <juri@jurta.org>
5891
5892 * replace.el (query-replace-interactive): Declare obsolete.
5893 (query-replace-read-from): Add the last incremental search string
5894 to the list of default values accessible via M-n.
5895 (map-query-replace-regexp): Use `read-regexp'.
5896 (query-replace, query-replace-regexp, query-replace-regexp-eval)
5897 (map-query-replace-regexp, replace-string, replace-regexp):
5898 Fix docstrings to replace mentions of `query-replace-interactive'
5899 with alternatives. (Bug#12526)
5900
5901 2012-10-04 Juri Linkov <juri@jurta.org>
5902
5903 * dired.el (dired-shrink-to-fit): Declare obsolete. (Bug#1806)
5904 (dired-pop-to-buffer): Declare obsolete.
5905 (dired-mark-pop-up): Doc fix.
5906
5907 2012-10-04 Fabián Ezequiel Gallina <fgallina@cuca>
5908
5909 Allow user to set docstring style for fill-paragraph.
5910 * progmodes/python.el
5911 (python-fill-comment-function, python-fill-string-function)
5912 (python-fill-decorator-function, python-fill-paren-function):
5913 Remove :safe for defcustoms.
5914 (python-fill-string-style): New defcustom
5915 (python-fill-paragraph-function): Enhance context detection.
5916 (python-fill-string): Honor python-fill-string-style settings.
5917
5918 2012-10-04 Martin Rudalics <rudalics@gmx.at>
5919
5920 * emacs-lisp/edebug.el (edebug-pop-to-buffer): Select window
5921 after setting its buffer (Bug#10805).
5922
5923 2012-10-03 Fabián Ezequiel Gallina <fgallina@cuca>
5924
5925 Fix cornercase for string syntax.
5926 * progmodes/python.el (python-syntax-propertize-function):
5927 Simplify and enhance the regexp for unescaped quotes. Now it also
5928 matches quotes in weird situations like the single quote in
5929 "something\"'".
5930 (python-syntax-stringify): Simplify num-quotes detecting code.
5931
5932 2012-10-03 Glenn Morris <rgm@gnu.org>
5933
5934 * help-macro.el (three-step-help):
5935 Revert 2012-09-29 change. (Bug#12567)
5936
5937 2012-10-03 Martin Rudalics <rudalics@gmx.at>
5938
5939 * menu-bar.el (kill-this-buffer): Don't do anything when
5940 `menu-frame' is not alive or visible (Bug#8184).
5941
5942 * emacs-lisp/debug.el (debug): When quitting the debugger window
5943 restore current buffer (Bug#12502).
5944
5945 2012-10-02 Chong Yidong <cyd@gnu.org>
5946
5947 * progmodes/hideif.el (hif-lookup, hif-defined):
5948 Handle semantic-c-takeover-hideif.
5949
5950 2012-10-02 Paul Eggert <eggert@cs.ucla.edu>
5951
5952 Change sampling interval units from ms to ns.
5953 * profiler.el (profiler-sampling-interval): Change units
5954 from ms to ns, multiplying the default by 1000000 so that
5955 it remains 1 ms.
5956 (profiler-report-cpu-line-format): Give enough room for
5957 the maximum counters on 64-bit hosts.
5958 (profiler-report-render-calltree-1): Call them "CPU samples",
5959 not "Time (ms)", since they are not milliseconds now (and
5960 never really were).
5961
5962 2012-10-02 Sergio Durigan Junior <sergiodj@riseup.net> (tiny change)
5963
5964 * net/eudcb-bbdb.el (eudc-bbdb-format-record-as-result):
5965 Fix querying BBDB for entries without a last name (Bug#11580).
5966
5967 2012-10-02 Chong Yidong <cyd@gnu.org>
5968
5969 * emacs-lisp/eieio.el: Restore Version header.
5970
5971 2012-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
5972
5973 * vc/diff-mode.el (diff--auto-refine-data): New var.
5974 (diff-hunk): Use it to delay refinement.
5975 (diff-mode): Remove overlays when we turn off font-lock.
5976
5977 * textmodes/table.el: Use lexical-binding, dolist, define-minor-mode.
5978 (table-initialize-table-fixed-width-mode)
5979 (table-set-table-fixed-width-mode): Remove functions.
5980 (table-command-list): Move initialization into declaration.
5981 (table--tweak-menu-for-xemacs): Move defun outside mapcar.
5982 (table-with-cache-buffer): Use `declare'.
5983 (table-span-cell): Simplify via CSE.
5984 (table-fixed-width-mode): Use define-minor-mode.
5985 (table-call-interactively, table-funcall, table-apply): Remove.
5986 (table-function): New function, to replace them.
5987
5988 * bookmark.el (bookmark-search-pattern): Remove var.
5989 (bookmark-read-search-input): Remove function.
5990 (bookmark-bmenu-search): Reimplement using a minibuffer.
5991
5992 * faces.el (modeline): Remove obsolete face name.
5993
5994 * vc/add-log.el (add-log-buffer-file-name-function): Demote to defvar
5995 and give a non-nil default value.
5996 (add-change-log-entry): Simplify accordingly.
5997
5998 2012-10-01 Dmitry Gutov <dgutov@yandex.ru>
5999
6000 * vc/vc-git.el (vc-git-log-edit-toggle-signoff): New function.
6001 (vc-git-log-edit-toggle-amend): New function.
6002 (vc-git-log-edit-toggle-signoff): New function.
6003 (vc-git-log-edit-mode): New major mode.
6004 (vc-git-log-edit-mode-map): Keymap for it.
6005 (vc-git-checkin): Handle "Amend" and "Sign-Off" headers.
6006
6007 * vc/log-edit.el (log-edit-font-lock-keywords): Allow hyphens in
6008 header names.
6009 (log-edit-toggle-header): New function.
6010 (log-edit-extract-headers): Accept function values in HEADERS alist.
6011
6012 2012-10-01 David Engster <deng@randomsample.de>
6013
6014 * emacs-lisp/eieio-opt.el (eieio-describe-class): Add filename
6015 from symbol property and change message to be more consistent with
6016 Emacs proper.
6017 (eieio-describe-generic): Add filename for each implementation.
6018 Fix indices for generic and normal methods.
6019 (eieio-method-def, eieio-class-def): New buttons.
6020 (eieio-help-find-method-definition)
6021 (eieio-help-find-class-definition): New functions.
6022 (eieio-help-mode-augmentation-maybee): Add buttons to filenames of
6023 class, constructor and method definitions.
6024
6025 * emacs-lisp/eieio.el (eieiomt-add, eieio-defclass): Save file
6026 information in symbol property.
6027 (scoped-class): Remove.
6028 (eieio-slot-name-index, call-next-method): Check if it is bound.
6029
6030 2012-10-01 Leo P. White <lpw25@cam.ac.uk>
6031
6032 * emacs-lisp/eieio-custom.el (eieio-custom-mode-map): New option.
6033 (eieio-custom-mode): New major mode.
6034 (eieio-customize-object): Use it.
6035
6036 2012-10-01 Eric Ludlam <zappo@gnu.org>
6037
6038 * emacs-lisp/eieio-base.el (eieio-persistent-read): New input args
6039 specifying the expected class, and whether subclassing is allowed.
6040 (eieio-persistent-convert-list-to-object):
6041 (eieio-persistent-validate/fix-slot-value)
6042 (eieio-persistent-slot-type-is-class-p): New functions.
6043 (eieio-named::slot-missing): Doc fix.
6044
6045 * emacs-lisp/eieio-datadebug.el (data-debug/eieio-insert-slots):
6046 Stop using unused publd variable.
6047
6048 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click):
6049 (eieio-speedbar-description, eieio-speedbar-derive-line-path)
6050 (eieio-speedbar-object-buttonname, eieio-speedbar-make-tag-line)
6051 (eieio-speedbar-handle-click): Do not specify a class for the
6052 method. Fixes method invocation order problems with EDE.
6053
6054 2012-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
6055
6056 * emacs-lisp/bytecomp.el (byte-compiler-abbreviate-file): New function.
6057 (byte-compile-warning-prefix, byte-compile-file): Use it (bug#12508).
6058
6059 2012-10-01 Karl Fogel <kfogel@red-bean.com>
6060
6061 * bookmark.el (bookmark-version-control): Give tags in the
6062 :type choices (Bug#12309), and improve doc string.
6063 (bookmark-write-file): Bind `print-circle' to `t' to allow
6064 circular custom bookmark types. (Bug#12503)
6065
6066 2012-10-01 Paul Eggert <eggert@cs.ucla.edu>
6067
6068 Revert the FOLLOW-SYMLINKS change for file-attributes.
6069 * files.el (remote-file-name-inhibit-cache, after-find-file):
6070 * time.el (display-time-file-nonempty-p): Undo last change.
6071
6072 * profiler.el (profiler-sampling-interval): Change default back to 1.
6073 See Stefan Monnier in
6074 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00863.html>.
6075
6076 2012-10-01 Fabián Ezequiel Gallina <fgallina@cuca>
6077
6078 Shell output catching a la gud-gdb.
6079 * progmodes/python.el (python-shell-fetch-lines-in-progress)
6080 (python-shell-fetch-lines-string, python-shell-fetched-lines):
6081 New Vars.
6082 (python-shell-fetch-lines-filter): New function.
6083 (python-shell-send-string-no-output): Use them.
6084
6085 2012-09-30 Tomohiro Matsuyama <tomo@cx4a.org>
6086
6087 * profiler.el (profiler-sampling-interval): Rename from
6088 profiler-sample-interval.
6089 (profiler-sampling-interval): Default to 10.
6090 (profiler-find-profile): New command (was profiler-find-log).
6091 (profiler-find-profile-other-window): New command.
6092 (profiler-find-profile-other-frame): New command.
6093 (profiler-profile): Introduce API-level data structure.
6094
6095 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
6096
6097 file-attributes has a new optional arg FOLLOW-SYMLINKS.
6098 * files.el (remote-file-name-inhibit-cache):
6099 * time.el (display-time-file-nonempty-p): Use it.
6100 * files.el (after-find-file): Don't chase links before calling
6101 file-exists-p, as file-exists-p already does the right thing.
6102
6103 2012-09-30 Ralf Angeli <angeli@caeruleus.net>
6104
6105 Merge from standalone RefTeX repository.
6106
6107 The following ChangeLog entries are shortened versions of the
6108 original ones with file paths adapted. A not so strongly edited
6109 version of the original ChangeLog can be found in the commit log.
6110
6111 * textmodes/reftex-auc.el: Move `provide' call to bottom of file.
6112 (reftex-arg-cite): Use `reftex-cite-key-separator'.
6113 Correctly handle new value type returned by `reftex-citation'.
6114
6115 * textmodes/reftex-cite.el (reftex-create-bibtex-file): Make sure
6116 that entries with whitespace at various places are found.
6117 Doc fix. Include entries that are cross-referenced from cited entries.
6118 Include @String definitions in the resulting bib file. Add header
6119 and footer defined in `reftex-create-bibtex-header' and
6120 `reftex-create-bibtex-footer'.
6121 (reftex-do-citation): Make it possible again to insert
6122 non-existent entries. Save match data when asking for optional
6123 arguments. Return all keys, not just the first one.
6124 (reftex-all-used-citation-keys): Fix regexp to correctly extract
6125 all citations in the same line.
6126 (reftex-parse-bibtex-entry): Accept additional optional argument
6127 `raw' and keep quotes or braces if it is non-nil. Match fields
6128 containing hyphens besides word constituents.
6129 (reftex-get-string-refs): New function.
6130 (reftex-extract-bib-entries): Check if BibTeX file changed on disk
6131 and ask if it should be reread in case it did.
6132 (reftex-pop-to-bibtex-entry)
6133 (reftex-extract-bib-entries-from-thebibliography): Match \bibitem
6134 entries with spaces or tabs in front of arguments.
6135 (reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
6136 (reftex-parse-bibtex-entry, reftex-create-bibtex-file):
6137 Match entries containing numbers and symbol constituents.
6138 (reftex-do-citation, reftex-figure-out-cite-format):
6139 Use `reftex-cite-key-separator'.
6140
6141 * textmodes/reftex-dcr.el: Move provide statement to end of file.
6142 (reftex-mouse-view-crossref): Explain why point is set.
6143
6144 * textmodes/reftex-global.el: Whitespace changes.
6145
6146 * textmodes/reftex-index.el: Move provide statement to end of
6147 file.
6148 (reftex-index-selection-or-word): Use `reftex-region-active-p'.
6149 (reftex-index-visit-phrases-buffer): Set marker when visiting
6150 buffer. This allows for returning from the phrases file to the
6151 file one was just editing instead of the file where the last
6152 phrases was added from.
6153 (reftex-index-phrases-syntax-table): New variable. Give ?\"
6154 punctuation syntax as it usually is not used as string quote in
6155 TeX-related modes and may occur unmatched. The change also
6156 prevents fontification of quoted content.
6157 (reftex-index-phrases-mode): Use it.
6158
6159 * textmodes/reftex-parse.el (reftex-parse-from-file):
6160 Move backward one char if a `\' was matched after a section macro.
6161 (reftex-parse-from-file): Use beginning of match instead of end as
6162 bound.
6163
6164 * textmodes/reftex-ref.el: Adapt creation of
6165 `reftex-<package>-<macro>' functions to new structure of
6166 `reftex-ref-style-alist'.
6167 (reftex-reference): Use `reftex-ref-style-list' function.
6168 Adapt to new structure of `reftex-ref-style-alist'. Prompt for a
6169 reference macro if `reftex-ref-macro-prompt' is non-nil.
6170 (reftex-reference): Pass refstyle to `reftex-format-special'.
6171 Determine reference macro by looking at
6172 `reftex-ref-style-default-list' and `reftex-ref-style-alist'.
6173 Use only one special format function.
6174 (reftex-varioref-vref, reftex-fancyref-fref)
6175 (reftex-fancyref-Fref): Remove definitions. The functions are now
6176 generated from `reftex-ref-style-alist'.
6177 (reftex-format-vref, reftex-format-Fref, reftex-format-fref):
6178 Remove.
6179 (reftex-format-special): New function.
6180
6181 * textmodes/reftex-sel.el
6182 (reftex-select-cycle-ref-style-internal): Adapt to new structure
6183 of `reftex-ref-style-alist'. Remove code for testing macro type.
6184 (reftex-select-toggle-varioref)
6185 (reftex-select-toggle-fancyref): Remove.
6186 (reftex-select-cycle-ref-style-internal)
6187 (reftex-select-cycle-ref-style-forward)
6188 (reftex-select-cycle-ref-style-backward): New functions.
6189 (reftex-select-label-map): Use `v' and `V' for general cycling
6190 through reference styles. Add `p' for switching between number
6191 and page reference types.
6192
6193 * textmodes/reftex-toc.el (reftex-re-enlarge):
6194 Call `enlarge-window' only if there is something to do because in Emacs
6195 the horizontal version throws an error even if the parameter is 0.
6196
6197 * textmodes/reftex-vars.el (reftex-label-alist): Doc fix.
6198 (reftex-plug-into-AUCTeX): Doc fix.
6199 (reftex-vref-is-default, reftex-fref-is-default): Adapt doc
6200 string. Adapt to new name.
6201 (reftex-ref-style-alist): Change structure so that it is not
6202 possible to use multiple different package names within a style.
6203 Remove the symbols for symbols for macro type distinction.
6204 Add characters for macro selection.
6205 (reftex-ref-macro-prompt, reftex-create-bibtex-header)
6206 (reftex-create-bibtex-footer): New variables.
6207 (reftex-format-ref-function): Mention third argument of special
6208 format function.
6209 (reftex-ref-style-alist, reftex-ref-style-default-list):
6210 New variables.
6211 (reftex-vref-is-default, reftex-fref-is-default): Adapt doc string
6212 to new implementation. Mark as obsolete. Add compatibility code
6213 for honoring the variable values in case they are set.
6214 (reftex-cite-format-builtin, reftex-bibliography-commands):
6215 Add support for ConTeXt.
6216 (reftex-format-ref-function, reftex-format-cite-function):
6217 Fix custom type.
6218 (reftex-cite-key-separator): New variable.
6219
6220 * textmodes/reftex.el (reftex-syntax-table-for-bib)
6221 (reftex-mode): Do not derive `reftex-syntax-table-for-bib' from
6222 `reftex-syntax-table' because parens have to retain their paren
6223 syntax in order for parsing of BibTeX entries like @book(...) to
6224 work.
6225 (reftex-in-comment): Do not error out if `comment-start-skip' is
6226 not set. Deal correctly with escaped comment characters.
6227 (reftex-tie-multifile-symbols): Add doc string.
6228 Initialize `reftex-ref-style-list'.
6229 (reftex-untie-multifile-symbols): Add doc string.
6230 (reftex-add-index-macros): Doc fix.
6231 (reftex-ref-style-activate, reftex-ref-style-toggle)
6232 (reftex-ref-style-list): New functions.
6233 (reftex-mode-menu): Use them. Adapt to new structure of
6234 `reftex-ref-style-alist'.
6235 (reftex-select-with-char): Kill the RefTeX Select buffer when
6236 done.
6237 (reftex-remove-if): New function.
6238 (reftex-erase-all-selection-and-index-buffers)
6239 (reftex-mode-menu): Reference styles are now computed from
6240 `reftex-ref-style-alist'. Fix typo.
6241 (reftex-report-bug): New function.
6242 (reftex-uniquify, reftex-uniquify-by-car): Replace O(n^2)
6243 algorithms with O(n log n). Introduce optional argument SORT (not
6244 yet used).
6245
6246 2012-09-30 Fabián Ezequiel Gallina <fgallina@cuca>
6247
6248 Enhancements for triple-quote string syntax.
6249 * progmodes/python.el (python-syntax-propertize-function):
6250 Match both quote cases in one regexp.
6251 (python-syntax-stringify): Handle matches properly.
6252
6253 2012-09-30 Juri Linkov <juri@jurta.org>
6254
6255 * arc-mode.el (archive-summarize): Let-bind `buffer-file-truename'
6256 to nil around the call to `insert' to prevent
6257 directory time modification by lock_file. (Bug#2295)
6258 * tar-mode.el (tar-summarize-buffer): Idem.
6259
6260 2012-09-30 Juri Linkov <juri@jurta.org>
6261
6262 * facemenu.el (list-colors-sort): Add option "Luminance".
6263 (list-colors-sort-key): Implement it.
6264
6265 * vc/diff-mode.el (diff-refine-removed):
6266 * vc/ediff-init.el (ediff-fine-diff-A):
6267 * vc/smerge-mode.el (smerge-refined-removed):
6268 Change background color "#ffaaaa" to "#ffbbbb". (Bug#10181)
6269
6270 2012-09-30 Jan Djärv <jan.h.d@swipnet.se>
6271
6272 * term/ns-win.el (x-file-dialog): New function.
6273
6274 2012-09-30 Juanma Barranquero <lekktu@gmail.com>
6275
6276 * ido.el (ido-max-directory-size): Default to nil; the current
6277 default is small for POSIX systems, and impractical on Windows 7
6278 now that lstat returns directory sizes for NTFS.
6279
6280 2012-09-30 Martin Rudalics <rudalics@gmx.at>
6281
6282 In buffer display functions handle window-height/window-width
6283 alist entries. Suggested by Juri Linkov as fix for Bug#1806.
6284 * window.el (window--display-buffer): New argument ALIST.
6285 Obey window-height and window-width alist entries.
6286 (window--try-to-split-window): New argument ALIST.
6287 Bind window-combination-limit to t when the window's size shall be
6288 changed and window-combination-limit equals `window-size'.
6289 (display-buffer-in-atom-window)
6290 (display-buffer-in-major-side-window)
6291 (display-buffer-in-side-window, display-buffer-same-window)
6292 (display-buffer-reuse-window, display-buffer-pop-up-frame)
6293 (display-buffer-pop-up-window, display-buffer-below-selected)
6294 (display-buffer-at-bottom, display-buffer-in-previous-window)
6295 (display-buffer-use-some-window): Adjust all callers of
6296 window--display-buffer and window--try-to-split-window.
6297 (fit-frame-to-buffer): New option.
6298 (fit-window-to-buffer): Can resize frames if fit-frame-to-buffer
6299 is non-nil.
6300 (display-buffer-in-major-side-window): Evaluate window-height /
6301 window-width alist entries.
6302
6303 * help.el (temp-buffer-resize-frames)
6304 (temp-buffer-resize-regexps): Remove options.
6305 (temp-buffer-resize-mode): Adjust doc-string.
6306 (resize-temp-buffer-window): Don't consult
6307 temp-buffer-resize-regexps. Use fit-frame-to-buffer instead of
6308 temp-buffer-resize-frames.
6309
6310 * dired.el (dired-mark-pop-up):
6311 Call display-buffer-below-selected with a fit-window-to-buffer alist
6312 entry.
6313
6314 2012-09-30 Chong Yidong <cyd@gnu.org>
6315
6316 * server.el (server-host): Document the security implications.
6317 (server-auth-key): Doc fix.
6318
6319 * startup.el (initial-buffer-choice): Doc fix.
6320
6321 * minibuffer.el (minibuffer-local-filename-syntax): Doc fix.
6322
6323 * simple.el (delete-trailing-whitespace): Avoid an unnecessary
6324 restriction change.
6325
6326 * bindings.el (goto-map): Bind M-g TAB to move-to-column.
6327
6328 * help-fns.el (help-fns--obsolete): Fix last change.
6329
6330 2012-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
6331
6332 * winner.el (winner-mode-map): Obey winner-dont-bind-my-keys here.
6333 (minor-mode-map-alist): Remove redundant code.
6334
6335 * vc/pcvs.el (cvs-cleanup-collection): Keep entries that are currently
6336 visited in a buffer.
6337 (cvs-insert-visited-file): New function.
6338 (find-file-hook): Use it.
6339
6340 * vc/pcvs-info.el (cvs-fileinfo-pp): Don't use non-existent faces.
6341
6342 * vc/log-edit.el (log-edit-font-lock-keywords): Ignore case to
6343 chose face.
6344 (log-edit-empty-buffer-p): Don't require a space after a header.
6345
6346 * vc/ediff-util.el (ediff-diff-at-point): Don't assume point-min==1.
6347
6348 * tutorial.el (help-with-tutorial): Use minibuffer-with-setup-hook.
6349
6350 * textmodes/text-mode.el (paragraph-indent-minor-mode): Make it
6351 a proper minor-mode.
6352
6353 * textmodes/tex-mode.el (tex-mode-map): Don't bind paren keys.
6354
6355 2012-09-29 Glenn Morris <rgm@gnu.org>
6356
6357 * winner.el (winner-mode): Remove variable (let define-minor-mode
6358 handle it).
6359 (winner-dont-bind-my-keys, winner-boring-buffers, winner-mode-hook):
6360 Doc fixes.
6361 (winner-mode-leave-hook): Rename to winner-mode-off-hook.
6362 (winner-mode): Use define-minor-mode.
6363
6364 * vc/vc-sccs.el (vc-sccs-registered): Use the progn trick to get
6365 the full definition in loaddefs, rather than duplicating it.
6366
6367 * help-macro.el (three-step-help): No need to autoload defcustom.
6368
6369 * progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
6370 (inferior-lisp-program, inferior-lisp-load-command)
6371 (inferior-lisp-prompt, inferior-lisp-mode-hook):
6372 No need to autoload defcustoms.
6373
6374 * hippie-exp.el (hippie-expand-try-functions-list)
6375 (hippie-expand-verbose, hippie-expand-dabbrev-skip-space)
6376 (hippie-expand-dabbrev-as-symbol, hippie-expand-no-restriction)
6377 (hippie-expand-max-buffers, hippie-expand-ignore-buffers)
6378 (hippie-expand-only-buffers): No need to autoload defcustoms.
6379 * progmodes/vhdl-mode.el (vhdl-line-expand):
6380 Explicitly load hippie-exp, so it does not get autoloaded
6381 while hippie-expand-try-functions-list is let-bound.
6382
6383 2012-09-28 Glenn Morris <rgm@gnu.org>
6384
6385 * emacs-lisp/cl.el (flet): Fix case of obsolescence message.
6386
6387 * emacs-lisp/bytecomp.el (byte-compile-cl-file-p):
6388 Only "cl.el" counts as cl these days.
6389
6390 2012-09-28 Juri Linkov <juri@jurta.org>
6391
6392 Display archive errors in the echo area instead of inserting
6393 to the file buffer.
6394
6395 * arc-mode.el (archive-extract-by-stdout): Change arg STDERR-FILE
6396 to STDERR-TEST that can be a regexp matching a successful output.
6397 Create a temporary file and redirect stderr to it. Search for
6398 STDERR-TEST in the stderr output and display it in the echo area
6399 if no match is found.
6400 (archive-extract-by-file): New function like
6401 `archive-extract-by-stdout' but extracting archives to files
6402 and looking for successful matches in stdout. Function body is
6403 mostly copied from `archive-rar-extract'.
6404 (archive-rar-extract): Use `archive-extract-by-file'.
6405 (archive-7z-extract): Use `archive-extract-by-stdout'. (Bug#10347)
6406
6407 2012-09-28 Leo Liu <sdl.web@gmail.com>
6408
6409 * pcomplete.el (pcomplete-show-completions):
6410 Use minibuffer-message to make pcomplete usable in minibuffer.
6411
6412 * ido.el (ido-set-matches-1): Fix 2012-09-11 change.
6413
6414 2012-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
6415
6416 * type-break.el: Use lexical-binding.
6417 (type-break-mode): Use define-minor-mode.
6418
6419 * emacs-lisp/pcase.el (pcase--mark-used): New.
6420 (pcase--u1): Use it (bug#12512).
6421
6422 * custom.el (load-theme): Set buffer-file-name so the load is recorded
6423 in load-history with the right file name.
6424
6425 2012-09-28 Tassilo Horn <tsdh@gnu.org>
6426
6427 * doc-view.el (doc-view-current-cache-doc-pdf): New function.
6428 (doc-view-doc->txt, doc-view-convert-current-doc): Use it.
6429 (doc-view-get-bounding-box): Make bounding box slicing work for
6430 ODF and DVI documents.
6431
6432 2012-09-28 Glenn Morris <rgm@gnu.org>
6433
6434 * type-break.el (type-break-mode, type-break-interval)
6435 (type-break-good-rest-interval, type-break-keystroke-threshold):
6436 No need to autoload.
6437 (type-break-good-rest-interval, type-break-keystroke-threshold):
6438 Add :set-after.
6439
6440 2012-09-28 Chong Yidong <cyd@gnu.org>
6441
6442 * progmodes/verilog-mode.el (verilog-auto-inst-interfaced-ports):
6443 Add :version tag.
6444
6445 2012-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
6446
6447 * json.el (json-encode-char): Codes 127-160 aren't "ASCII printable".
6448
6449 2012-09-27 Glenn Morris <rgm@gnu.org>
6450
6451 * faces.el (x-display-name): Declare (for without-x builds).
6452
6453 * linum.el (linum-format): Don't autoload it. Improve :type.
6454
6455 * progmodes/tcl.el: Don't require outline when compiling.
6456 (outline-regexp, outline-level): Declare.
6457 * textmodes/sgml-mode.el: Don't require outline when compiling.
6458 (outline-regexp, outline-heading-end-regexp, outline-level): Declare.
6459
6460 * term.el (term-ansi-reset):
6461 Try setting term-ansi-face-already-done to nil. (Bug#11785)
6462
6463 * vc/vc.el (vc-next-action): Only gripe about committing read-only
6464 files for RCS and SCCS. (Bug#9781)
6465
6466 2012-09-27 Chong Yidong <cyd@gnu.org>
6467
6468 * progmodes/verilog-mode.el (verilog-mode-release-emacs): Fix last
6469 change; value should be t.
6470
6471 2012-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
6472
6473 * image-mode.el: Use lexical-binding.
6474 (image-mode-winprops): Use t to stand for the window of
6475 a buffer that's not displayed.
6476 * doc-view.el (doc-view-new-window-function): Handle the new
6477 t in winprops.
6478 (doc-view-enlarge): Make it a real nop if the size is not changed.
6479 (doc-view-display): Handle the case where the buffer is not (yet?)
6480 displayed in any window.
6481 (doc-view-saved-settings): New var.
6482 (doc-view-mode): Use it.
6483 (doc-view-fallback-mode): Set it.
6484
6485 * minibuf-eldef.el: Make it possible to replace (default ...) with [...].
6486 Set lexical-binding.
6487 (minibuffer-eldef-shorten-default): New var.
6488 (minibuffer-default-in-prompt-regexps): Use it for new default.
6489 (minibuf-eldef-setup-minibuffer): Add replacement functionality.
6490
6491 2012-09-26 Juanma Barranquero <lekktu@gmail.com>
6492
6493 * international/uni-bidi.el:
6494 * international/uni-category.el:
6495 * international/uni-name.el:
6496 * international/uni-numeric.el: Regenerate.
6497
6498 2012-09-26 Tomohiro Matsuyama <tomo@cx4a.org>
6499 Stefan Monnier <monnier@iro.umontreal.ca>
6500
6501 * profiler.el: New file.
6502
6503 2012-09-26 Stefan Monnier <monnier@iro.umontreal.ca>
6504
6505 * emacs-lisp/testcover.el (testcover-after): Add gv-expander.
6506 (testcover-reinstrument): Simplify with CSE.
6507
6508 2012-09-26 Juanma Barranquero <lekktu@gmail.com>
6509
6510 * window.el (temp-buffer-window-setup): Fix typo in docstring.
6511
6512 2012-09-25 Wilson Snyder <wsnyder@wsnyder.org>
6513
6514 * verilog-mode.el (verilog-auto-ascii-enum, verilog-auto-inout)
6515 (verilog-auto-input, verilog-auto-insert-lisp)
6516 (verilog-auto-output, verilog-auto-output-every, verilog-auto-reg)
6517 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-undef)
6518 (verilog-auto-unused, verilog-auto-wire)
6519 (verilog-forward-or-insert-line): Fix AUTOs with no trailing
6520 newline. Reported by Andrew Jones.
6521 (verilog-auto-inst) Support expanding $clog2 in AUTOINST.
6522 Reported by Brad Dobbie.
6523 (verilog-batch-delete-trailing-whitespace):
6524 Create verilog-batch-delete-trailing-whitespace.
6525 Reported by Brad Dobbie.
6526 (verilog-auto-inout-param): Support AUTOINOUTPARAM for copying
6527 parameters from another module. Reported by Dan Katz.
6528 (verilog-auto, verilog-auto-assign-modport)
6529 (verilog-auto-inout-modport): Add AUTOASSIGNMODPORT and
6530 AUTOINOUTMODPORT for UVM interface module shell generation.
6531 Reported by Brad Dobbie.
6532 (verilog-auto-inst-interfaced-ports): Make default nil, as more
6533 standard behavior.
6534 (verilog-auto): Fix AUTO parameters with parenthesis arguments.
6535 Reported by Matt Martin.
6536
6537 2012-09-25 Martin Rudalics <rudalics@gmx.at>
6538
6539 * window.el (window--resize-child-windows): When resizing child
6540 windows proportionally, process them in reverse order to
6541 preserve the "when splitting a window the new one gets the odd
6542 line" behavior.
6543 (window--resize-root-window-vertically): When resizing the
6544 minibuffer window try to affect only windows at the bottom of the
6545 frame. (Bug#12419)
6546
6547 2012-09-25 Chong Yidong <cyd@gnu.org>
6548
6549 * subr.el (declare): Doc fix.
6550
6551 * help-fns.el (help-fns--obsolete): Handle macros properly.
6552
6553 2012-09-25 Chong Yidong <cyd@gnu.org>
6554
6555 * bookmark.el (bookmark-jump-noselect): Use a declare form to mark
6556 this function obsolete.
6557
6558 * calendar/cal-x.el (calendar-two-frame-setup)
6559 (calendar-only-one-frame-setup, calendar-one-frame-setup):
6560 * calendar/calendar.el (american-calendar, european-calendar)
6561 (calendar-for-loop):
6562 * comint.el (comint-dynamic-simple-complete)
6563 (comint-dynamic-complete-as-filename, comint-unquote-filename):
6564 * desktop.el (desktop-load-default):
6565 * dired-x.el (dired-omit-here-always)
6566 (dired-hack-local-variables, dired-default-directory):
6567 * emacs-lisp/derived.el (derived-mode-class):
6568 * emacs-lisp/timer.el (timer-set-time-with-usecs):
6569 * emacs-lock.el (toggle-emacs-lock):
6570 * epa.el (epa-display-verify-result):
6571 * epg.el (epg-sign-keys, epg-start-sign-keys)
6572 (epg-passphrase-callback-function):
6573 * eshell/esh-util.el (eshell-for):
6574 * eshell/eshell.el (eshell-remove-from-window-buffer-names)
6575 (eshell-add-to-window-buffer-names):
6576 * files.el (locate-file-completion):
6577 * imenu.el (imenu-example--create-c-index)
6578 (imenu-example--create-lisp-index)
6579 (imenu-example--lisp-extract-index-name)
6580 (imenu-example--name-and-position):
6581 * international/mule-cmds.el (princ-list):
6582 * international/mule-diag.el (decode-codepage-char):
6583 * international/mule-util.el (detect-coding-with-priority):
6584 * iswitchb.el (iswitchb-read-buffer):
6585 * mail/mailalias.el (mail-complete):
6586 * mail/sendmail.el (mail-sent-via):
6587 * mouse.el (mouse-popup-menubar-stuff, mouse-popup-menubar)
6588 (mouse-major-mode-menu):
6589 * password-cache.el (password-read-and-add):
6590 * pcomplete.el (pcomplete-parse-comint-arguments):
6591 * progmodes/sh-script.el (sh-maybe-here-document):
6592 * replace.el (query-replace-regexp-eval):
6593 * savehist.el (savehist-load):
6594 * simple.el (choose-completion-delete-max-match):
6595 * term.el (term-dynamic-simple-complete):
6596 * vc/ediff-init.el (ediff-check-version):
6597 * vc/ediff-wind.el (ediff-choose-window-setup-function-automatically):
6598 * vc/vc.el (vc-diff-switches-list):
6599 * view.el (view-return-to-alist-update): Likewise.
6600
6601 * subr.el (eval-next-after-load, makehash, insert-string)
6602 (assoc-ignore-representation, assoc-ignore-case): Use declare to
6603 mark obsolete.
6604 (mode-line-inverse-video): Variable deleted.
6605
6606 * international/mule-util.el (string-to-sequence): Remove.
6607
6608 * calendar/calendar.el (calendar-version):
6609 * calendar/icalendar.el (icalendar-extract-ical-from-buffer)
6610 (icalendar-convert-diary-to-ical):
6611 * cus-edit.el (custom-mode):
6612 * ansi-color.el (ansi-color-unfontify-region):
6613 * international/latin1-disp.el (latin1-char-displayable-p):
6614 * progmodes/cwarn.el (turn-on-cwarn-mode):
6615 * progmodes/which-func.el (which-func-update-1):
6616 Use define-obsolete-function-alias.
6617
6618 * net/newst-backend.el (newsticker-cache-filename):
6619 * net/newst-treeview.el (newsticker-groups-filename):
6620 Fix incorrect obsolescence declaration.
6621
6622 * allout.el (allout-passphrase-hint-string): Likewise.
6623 (allout-init): Use a declare form to mark obsolete.
6624
6625 * emacs-lisp/byte-run.el (make-obsolete): Doc fix; emphasize that
6626 this applies to functions.
6627
6628 * iswitchb.el (iswitchb-read-buffer): Move code of
6629 iswitchb-define-mode-map here, and delete that obsolete function.
6630
6631 * net/snmp-mode.el (snmp-font-lock-keywords-3): Don't use obsolete
6632 font-lock-reference-face.
6633
6634 2012-09-25 Glenn Morris <rgm@gnu.org>
6635
6636 * buff-menu.el (Buffer-menu-name-width, Buffer-menu-size-width):
6637 Doc fixes.
6638
6639 * eshell/em-term.el (eshell-term-name):
6640 Default to term-term-name. (Bug#12485)
6641
6642 2012-09-24 Fabián Ezequiel Gallina <fgallina@cuca>
6643
6644 * progmodes/python.el (python-shell-send-buffer): Better handling
6645 of "if __name__ == '__main__':" conditionals when sending the buffer.
6646
6647 2012-09-24 Glenn Morris <rgm@gnu.org>
6648
6649 * eshell/esh-cmd.el (eshell-find-alias-function):
6650 Tighten up file-name regexp. (Bug#12499)
6651
6652 2012-09-24 Fabián Ezequiel Gallina <fgallina@cuca>
6653
6654 Enhancements for triple-quote string syntax.
6655 * progmodes/python.el (python-quote-syntax): Remove.
6656 (python-syntax-propertize-function): New value.
6657 (python-syntax-count-quotes, python-syntax-stringify):
6658 New functions.
6659
6660 2012-09-24 Chong Yidong <cyd@gnu.org>
6661
6662 * mail/supercite.el (sc-version): Remove obsolete function.
6663 (sc-describe): Don't mark as obsolete, since it is bound.
6664 (sc-submit-bug-report): Remove.
6665
6666 * vc/log-edit.el (cvs-changelog-full-paragraphs)
6667 (cvs-commit-buffer-require-final-newline): Remove.
6668 (log-edit-require-final-newline)
6669 (log-edit-changelog-full-paragraphs): Default to t.
6670
6671 * vc/pcvs-defs.el (cvs-diff-buffer-name, cvs-diff-ignore-marks)
6672 * vc/vc-hooks.el (vc-ignore-vc-files, vc-master-templates)
6673 * vc/vc.el (vc-checkout-carefully): Likewise.
6674
6675 * vc/emerge.el (emerge-mode): Make it an obsolete alias.
6676 (emerge-version): Remove.
6677
6678 * progmodes/compile.el (compile-internal): Remove.
6679 (compilation-parse-errors-function): Fix typo.
6680
6681 * international/mule.el (set-char-table-default): Remove.
6682 (set-coding-priority, make-coding-system, generic-char-p)
6683 (charset-list, charset-bytes, charset-id): Use declare to mark
6684 functions as obsolete.
6685
6686 * vc/pcvs-defs.el (cvs-buffer-name-alist)
6687 (cvs-invert-ignore-marks): Remove references to obsolete vars.
6688 * vc/vc-hooks.el (vc-default-registered): Don't use
6689 vc-master-templates.
6690
6691 * font-lock.el (font-lock-reference-face):
6692 Use define-obsolete-variable-alias.
6693
6694 * generic-x.el (rul-generic-mode): Use font-lock-constant-face.
6695 * calendar/calendar.el (calendar-font-lock-keywords):
6696 * calendar/diary-lib.el (diary-font-lock-keywords)
6697 (diary-fancy-font-lock-keywords):
6698 * textmodes/reftex-sel.el (reftex-insert-docstruct):
6699 * textmodes/reftex-index.el (reftex-insert-index):
6700 * textmodes/reftex-cite.el (reftex-format-bib-entry):
6701 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
6702 * progmodes/ps-mode.el (ps-mode-font-lock-keywords-1):
6703 * progmodes/prolog.el (prolog-font-lock-keywords):
6704 * progmodes/idlwave.el (idlwave-idl-keywords):
6705 * progmodes/ada-mode.el (ada-font-lock-keywords):
6706 * net/snmp-mode.el (snmp-font-lock-keywords-3): Likewise.
6707
6708 2012-09-24 Glenn Morris <rgm@gnu.org>
6709
6710 * mail/emacsbug.el (report-emacs-bug): Include `lsb_release -d'.
6711
6712 2012-09-23 Fabián Ezequiel Gallina <fgallina@cuca>
6713
6714 * progmodes/python.el (python-indent-line): More consistent cursor
6715 movement behavior.
6716
6717 2012-09-23 Stefan Merten <smerten@oekonux.de>
6718
6719 * textmodes/rst.el: Fix compiler warning.
6720
6721 2012-09-23 Roland Winkler <winkler@gnu.org>
6722
6723 * textmodes/bibtex.el (bibtex-autokey-transcriptions):
6724 Transcribe also LaTeX hyphenation.
6725 (bibtex-reformat): Bug fix. Do not quote twice the elements of
6726 bibtex-reformat-previous-options.
6727
6728 2012-09-23 Roland Winkler <winkler@gnu.org>
6729
6730 * proced.el (proced-renice-command): New variable.
6731 (proced-marked-processes): New function.
6732 (proced-with-processes-buffer): New macro.
6733 (proced-send-signal): Use them.
6734 (proced-renice): New command bound to r.
6735
6736 2012-09-23 Roland Winkler <winkler@gnu.org>
6737
6738 * ibuf-ext.el (ibuffer-switch-to-saved-filter-groups): If list
6739 ibuffer-saved-filter-groups has one element, shortcut the call of
6740 completing-read. (Bug#12331)
6741
6742 2012-09-23 Chong Yidong <cyd@gnu.org>
6743
6744 * bindings.el (mode-line-toggle-read-only):
6745 * bs.el (bs-toggle-readonly):
6746 * buff-menu.el (Buffer-menu-toggle-read-only):
6747 * dired.el (dired-toggle-read-only):
6748 * ibuffer.el (ibuffer-do-toggle-read-only): Use read-only-mode.
6749
6750 2012-09-23 Chong Yidong <cyd@gnu.org>
6751
6752 * image.el (image-type-available-p): Adapt to init-image-library
6753 argument changes.
6754
6755 2012-09-22 Juri Linkov <juri@jurta.org>
6756
6757 * dired.el (dired-mode-map): Add [remap read-only-mode] for
6758 `dired-toggle-read-only'. (Bug#12462)
6759
6760 2012-09-22 Martin Rudalics <rudalics@gmx.at>
6761
6762 * subr.el (temp-output-buffer-show): New function.
6763 (with-output-to-temp-buffer): Call temp-output-buffer-show
6764 instead of internal-temp-output-buffer-show.
6765
6766 2012-09-22 Chong Yidong <cyd@gnu.org>
6767
6768 * files.el (ctl-x-map): Bind C-x C-q to read-only-mode
6769 (Bug#12462).
6770
6771 * repeat.el (repeat): Doc fix (Bug#12348).
6772
6773 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix
6774 (Bug#10909).
6775
6776 * simple.el (shell-command-on-region): Doc fix.
6777 (read-only-mode): Doc fix.
6778
6779 2012-09-22 Eli Zaretskii <eliz@gnu.org>
6780
6781 * emacs-lisp/timer.el (run-with-idle-timer)
6782 (timer-activate-when-idle): Warn against reinvoking an idle timer
6783 from within its own timer action. (Bug#12447)
6784
6785 2012-09-22 Martin Rudalics <rudalics@gmx.at>
6786
6787 * cus-start.el (window-combination-limit): Add new optional
6788 values.
6789 * window.el (temp-buffer-window-show)
6790 (window--try-to-split-window): Handle new values of
6791 window-combination-limit (Bug#1806).
6792 (split-window): Test window-combination-limit for t instead of
6793 non-nil.
6794 (display-buffer-at-bottom): New buffer display action function.
6795 * help.el (temp-buffer-resize-regexps): New option.
6796 (temp-buffer-resize-mode): Rewrite doc-string.
6797 (resize-temp-buffer-window): Obey temp-buffer-resize-regexps.
6798 Don't resize reused window. Suggested by Glenn Morris.
6799
6800 2012-09-22 Stefan Merten <smerten@oekonux.de>
6801
6802 * textmodes/rst.el: Revamp section title faces.
6803 (rst-official-version)
6804 (rst-package-emacs-version-alist): Sync with official version
6805 V1.4.0.
6806 (rst-faces-defaults, rst-set-level-default)
6807 (rst-level-face-max, rst-level-face-base-color)
6808 (rst-level-face-base-light, rst-level-face-format-light)
6809 (rst-level-face-step-light, rst-define-level-faces): Obsolete.
6810 (rst-adornment-faces-alist): Match new setup.
6811 (rst-level-1, rst-level-2, rst-level-3, rst-level-4)
6812 (rst-level-5, rst-level-6): New faces.
6813
6814 2012-09-22 Chong Yidong <cyd@gnu.org>
6815
6816 * simple.el (undo): Handle indirect buffers (Bug#8207).
6817
6818 2012-09-21 Leo Liu <sdl.web@gmail.com>
6819
6820 IDO: Disable match re-ordering for buffer switching.
6821 * ido.el (ido-buffer-disable-smart-matches): New variable.
6822 (ido-set-matches-1): Use it. (Bug#2042)
6823
6824 2012-09-21 Jose Marino <marinoj@nso.edu> (tiny change)
6825
6826 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
6827 Fix 2011-05-17 change. (Bug#12418)
6828
6829 2012-09-21 Leo Liu <sdl.web@gmail.com>
6830
6831 * subr.el (ignore-errors): Mention with-demoted-errors in doc-string.
6832
6833 2012-09-21 Glenn Morris <rgm@gnu.org>
6834
6835 * emacs-lisp/shadow.el (load-path-shadows-font-lock-keywords):
6836 Be more robust about locating simple.el.
6837
6838 2012-09-21 Glenn Morris <rgm@gnu.org>
6839
6840 * mail/emacsbug.el (report-emacs-bug): Trap load-path-shadows errors.
6841
6842 2012-09-21 Joel Bion <jpbion@westvi.com> (tiny change)
6843
6844 * pcmpl-gnu.el (pcmpl-gnu-tarfile-regexp): Add tar.xz. (Bug#12382)
6845
6846 2012-09-20 Juri Linkov <juri@jurta.org>
6847
6848 * replace.el (query-replace-read-from): Use `read-regexp' instead
6849 of `read-from-minibuffer' when `regexp-flag' is non-nil.
6850 (occur-read-primary-args): Use `read-regexp' instead of
6851 `read-string'.
6852 (multi-occur-in-matching-buffers): Use `read-regexp' instead of
6853 `read-from-minibuffer'.
6854 * isearch.el (isearch-occur): Use `read-regexp' instead of
6855 `read-string'.
6856 * dired.el (dired-read-regexp): Use `read-regexp' instead of
6857 `read-from-minibuffer'.
6858 * progmodes/grep.el (grep-read-regexp): Use `read-regexp' instead
6859 of `read-string'. (Bug#7567)
6860
6861 * replace.el (read-regexp): Rename DEFAULT-VALUE arg to DEFAULTS
6862 and allow accepting a list of strings prepended to a list of
6863 standard default values. Doc fix. (Bug#12321)
6864
6865 * replace.el (read-regexp): Add HISTORY arg. (Bug#7567)
6866
6867 * replace.el (read-regexp): Don't add ": " when PROMPT already
6868 ends with a colon and space. (Bug#12321)
6869
6870 2012-09-20 Tassilo Horn <tsdh@gnu.org>
6871
6872 * doc-view.el (doc-view-display): Better fix for the cl-assertion
6873 error.
6874
6875 2012-09-20 Stefan Merten <smerten@oekonux.de>
6876
6877 * textmodes/rst.el: Integrate support for `imenu' and `which-function'.
6878 Fixes feature request bug#11711.
6879 (rst-mode): Create `imenu-create-index-function'.
6880 (rst-get-stripped-line): Delete after refactoring.
6881 (rst-section-tree, rst-section-tree-rec)
6882 (rst-section-tree-point): Refactor and document properly.
6883 (rst-imenu-find-adornments-for-position)
6884 (rst-imenu-convert-cell, rst-imenu-create-index):
6885 New function.
6886
6887 2012-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
6888
6889 * emacs-lisp/macroexp.el (macroexp--obsolete-warning): New function.
6890 (macroexp--expand-all): Use it.
6891 (macroexp--funcall-and-return): Remove by folding it into its sole
6892 caller (macroexp--warn-and-return).
6893 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete):
6894 Use macroexp--obsolete-warning.
6895
6896 * calc/calc.el: Fix last change by removing the whole chunk, since it
6897 was only needed back when Calc was not bundled.
6898
6899 2012-09-20 Martin Rudalics <rudalics@gmx.at>
6900
6901 * emacs-lisp/debug.el (debug): Restore assignment to
6902 debugger-old-buffer removed on 2012-09-08.
6903
6904 2012-09-20 Juri Linkov <juri@jurta.org>
6905
6906 * dired-aux.el (dired-diff): Remove (require 'diff) since
6907 `diff-latest-backup-file' is now autoloaded.
6908
6909 2012-09-20 Chong Yidong <cyd@gnu.org>
6910
6911 * vc/diff.el (diff-latest-backup-file): Autoload.
6912
6913 2012-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
6914
6915 * calc/calc.el: Remove redundant autoload shape check.
6916 (sel-mode): Don't defvar.
6917 (calc-get-stack-element): Add `sel-mode' arg instead.
6918 (calc-top, calc-top-list): Pass it this additional argument.
6919 * calc/calc-store.el (calc-store-map):
6920 * calc/calc-map.el (calc-apply, calc-reduce, calc-map)
6921 (calc-map-equation, calc-outer-product, calc-inner-product):
6922 * calc/calc-aent.el (calc-alg-entry): Don't bind sel-mode.
6923
6924 * emacs-lisp/macroexp.el (macroexp--expand-all): Fix last change.
6925
6926 2012-09-19 Juri Linkov <juri@jurta.org>
6927
6928 * dired-aux.el (dired-diff): Add (require 'diff) because
6929 `diff-latest-backup-file' is not autoloaded.
6930 (dired-do-chxxx, dired-do-chmod): Set `no-error-if-not-filep' arg
6931 of `dired-get-filename' to t to not report error when there is
6932 no default file on the current line.
6933
6934 2012-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
6935
6936 * emacs-lisp/macroexp.el (macroexp--funcall-if-compiled): Rename from
6937 macroexp--eval-if-compile.
6938 (macroexp--funcall-and-return, macroexp--warn-and-return): New funs.
6939 (macroexp--expand-all): Use them (bug#12371).
6940
6941 * doc-view.el (doc-view-guess-paper-size)
6942 (doc-view-scale-bounding-box): Fix unbound `caddr'.
6943
6944 2012-09-19 Tassilo Horn <tsdh@gnu.org>
6945
6946 New feature: set optimal slice from BoundingBox information.
6947 * doc-view.el (doc-view-mode-map): Add keybinding.
6948 (doc-view-menu): Add menu entry.
6949 (doc-view-set-slice): Adapt docstring.
6950 (doc-view-get-bounding-box, doc-view-guess-paper-size)
6951 (doc-view-scale-bounding-box)
6952 (doc-view-set-slice-from-bounding-box): New functions.
6953 (doc-view-paper-sizes): New defvar.
6954
6955 2012-09-19 Glenn Morris <rgm@gnu.org>
6956
6957 * emacs-lisp/macroexp.el (byte-compile-warn-obsolete)
6958 (byte-compile-log-warning): Autoload. (Bug#12371)
6959
6960 * calendar/calendar.el (calendar-american-month-header)
6961 (calendar-european-month-header, calendar-iso-month-header)
6962 (calendar-month-header): New options.
6963 (calendar-set-date-style): Set calendar-month-header. Redraw calendar.
6964 (calendar-generate-month): Use calendar-month-header. (Bug#9510)
6965
6966 2012-09-19 Jan Djärv <jan.h.d@swipnet.se>
6967
6968 * startup.el (command-line-ns-option-alist): Add -g and --geometry.
6969
6970 2012-09-18 Juri Linkov <juri@jurta.org>
6971
6972 * dired-aux.el (dired-diff): Restore original functionality of
6973 getting the default value, but keep new feature of using the
6974 latest existing backup file (`diff-latest-backup-file').
6975
6976 2012-09-18 Juri Linkov <juri@jurta.org>
6977
6978 * dired.el (dired-mark): If the region is active in Transient Mark
6979 mode, mark all files in the active region. Doc fix.
6980 (dired-unmark, dired-flag-file-deletion, dired-unmark-backward):
6981 Doc fix. (Bug#10624)
6982
6983 2012-09-18 Juri Linkov <juri@jurta.org>
6984
6985 * dired-aux.el (dired-do-chxxx, dired-do-chmod): Default file
6986 attributes for M-n are pulled from the file at point.
6987 (dired-do-chgrp, dired-do-chown, dired-do-touch): Doc fix.
6988 Suggested by Drew Adams. (Bug#10624)
6989
6990 2012-09-18 Dmitry Gutov <dgutov@yandex.ru>
6991
6992 * progmodes/ruby-mode.el (ruby-brace-to-do-end): Don't add extra
6993 whitespace after "end".
6994 (ruby-do-end-to-brace): Collapse block to one line if it fits
6995 within fill-column.
6996
6997 2012-09-18 Martin Rudalics <rudalics@gmx.at>
6998
6999 * emacs-lisp/debug.el (debugger-bury-or-kill): Fix customization
7000 value.
7001 (debug): Don't remove debugger window when debugger is expected
7002 to be back.
7003
7004 2012-09-18 Chong Yidong <cyd@gnu.org>
7005
7006 * custom.el (defface): Doc fix.
7007
7008 * cus-edit.el (custom-unlispify-remove-prefixes): Add warning.
7009
7010 2012-09-18 Martin Blais <blais@furius.ca> (tiny change)
7011
7012 * progmodes/compile.el (compilation-start): Use compilation-always-kill
7013 to initialize query-on-exit; then test that instead (bug#12288).
7014
7015 2012-09-17 Stefan Merten <smerten@oekonux.de>
7016
7017 * textmodes/rst.el: Add support for `testcover'.
7018 (rst-defcustom-testcover, rst-testcover-add-compose)
7019 (rst-testcover-add-1value): New functions.
7020 (rst-portable-mark-active-p): Replace by `use-region-p'.
7021 (rst-update-section, rst-classify-adornment)
7022 (rst-find-title-line): Mark `1value' forms.
7023 (rst-classify-adornment): Remove superfluous form.
7024 (rst-update-section, rst-get-adornments-around)
7025 (rst-adornment-complete-p, rst-get-next-adornment)
7026 (rst-adjust, rst-promote-region)
7027 (rst-display-adornments-hierarchy, rst-straighten-adornments)
7028 (rst-find-pfx-in-region, rst-section-tree-rec)
7029 (rst-section-tree-point, rst-toc-insert, rst-toc-insert-node)
7030 (rst-toc-node, rst-toc, rst-forward-section)
7031 (rst-iterate-leftmost-paragraphs)
7032 (rst-iterate-leftmost-paragraphs-2, rst-enumerate-region)
7033 (rst-bullet-list-region)
7034 (rst-convert-bullets-to-enumeration, rst-font-lock-keywords)
7035 (rst-compile-find-conf, rst-compile)
7036 (rst-repeat-last-character): Fix style.
7037
7038 2012-09-17 Chong Yidong <cyd@gnu.org>
7039
7040 * comint.el (comint--complete-file-name-data): Don't add a space
7041 if the status is `sole'; that adds a gratuitous space in the
7042 completion-cycling case (Bug#12092).
7043
7044 * pcomplete.el (pcomplete-completions-at-point): Likewise.
7045
7046 2012-09-17 Richard Stallman <rms@gnu.org>
7047
7048 * mail/rmailmm.el (rmail-mime-toggle-raw): Do rmail-mime-insert
7049 only in the mime-shown mode, not in raw mode.
7050 (rmail-mime): Toggle off mime by displaying the message without
7051 mime processing. (Bug#12305)
7052
7053 * mail/rmail.el (rmail-retry-failure):
7054 Turn off mime processing first. (Bug#12037)
7055
7056 * epa-mail.el (epa-mail-encrypt): Fix bug when a name has no key.
7057
7058 2012-09-17 Chong Yidong <cyd@gnu.org>
7059
7060 * shell.el (shell-file-name-chars, shell-file-name-quote-list)
7061 (shell-dynamic-complete-functions): Convert to defcustom.
7062 (shell-prompt-pattern, shell-completion-fignore): Doc fix.
7063
7064 * bookmark.el (bookmark-bmenu-toggle-filenames): Doc fixes.
7065 * comint.el (comint-prompt-read-only):
7066 * custom.el (defcustom):
7067 * hi-lock.el (hi-lock-mode):
7068 * ibuffer.el (ibuffer-formats):
7069 * ielm.el (ielm-prompt-read-only):
7070 * novice.el (disable-command):
7071 * saveplace.el (toggle-save-place):
7072 * speedbar.el (speedbar-supported-extension-expressions):
7073 * startup.el (auto-save-list-file-prefix, init-file-user)
7074 (after-init-hook, inhibit-startup-echo-area-message):
7075 * strokes.el (strokes-help):
7076 * time-stamp.el (time-stamp):
7077 * calendar/calendar.el (calendar, diary-file):
7078 * calendar/diary-lib.el (diary-mail-entries, diary)
7079 (diary-list-entries-hook):
7080 * calendar/holidays.el (holidays, calendar-holidays):
7081 * calendar/lunar.el (lunar-phases):
7082 * calendar/solar.el (sunrise-sunset):
7083 * emulation/edt.el (edt-load-keys):
7084 * emulation/viper.el (viper-mode):
7085 * eshell/em-alias.el (eshell-command-aliases-list):
7086 * eshell/esh-util.el (eshell-convert-numeric-arguments):
7087 * international/ogonek.el (ogonek-information):
7088 * net/tramp-cmds.el (tramp-bug):
7089 * net/quickurl.el (quickurl-reread-hook-postfix):
7090 * play/decipher.el (decipher-font-lock-keywords):
7091 * progmodes/cc-styles.el (c-set-style):
7092 * progmodes/idlw-shell.el (idlwave-shell-prompt-pattern):
7093 * progmodes/inf-lisp.el (inferior-lisp-prompt):
7094 * progmodes/octave-mod.el (octave-mode):
7095 * progmodes/sql.el (sql-mode, sql-interactive-mode, sql-password):
7096 * progmodes/verilog-mode.el (verilog-read-defines):
7097 * textmodes/two-column.el (2C-mode): Likewise.
7098
7099 2012-09-16 Katsumi Yamaoka <yamaoka@jpl.org>
7100
7101 * mail/mailabbrev.el (mail-abbrev-expand-hook): Work for a mail aliasee
7102 that holds many addresses.
7103
7104 2012-09-16 Chong Yidong <cyd@gnu.org>
7105
7106 * align.el (align-areas): Call the indication function with
7107 positions instead of markers for arguments (Bug#12343).
7108
7109 * files.el (parse-colon-path): Use split-string (Bug#12351).
7110
7111 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
7112 (display-buffer-function): Mark as obsolete.
7113
7114 * progmodes/compile.el (compilation-parse-errors): Accept list
7115 values similar to font-lock-keywords (Bug#12136).
7116 Suggested by Oleksandr Manzyuk.
7117 (compilation-error-regexp-alist): Doc fix.
7118
7119 2012-09-15 Glenn Morris <rgm@gnu.org>
7120
7121 * version.el (emacs-bzr-version-bzr): New function.
7122 (emacs-bzr-get-version): Add optional EXTERNAL argument.
7123
7124 * vc/vc-bzr.el (vc-bzr-working-revision): For lightweight local
7125 checkouts, check the parent dirstate matches the branch.
7126 Add "--tree" to "bzr revno" arguments. Don't try to shorten the
7127 empty string.
7128
7129 * version.el (emacs-bzr-version): Doc fix.
7130 (emacs-bzr-version-dirstate): New function.
7131 (emacs-bzr-get-version): For lightweight checkouts, if the parent
7132 is local try and check that it matches the branch. If not, just
7133 use dirstate information. (Bug#12441)
7134
7135 2012-09-14 Juri Linkov <juri@jurta.org>
7136
7137 * dired-aux.el (dired-do-chmod): Use `eq' to detect empty input.
7138 (Bug#12399)
7139
7140 2012-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
7141
7142 * emacs-lisp/advice.el (ad-prognify): Remove, use macroexp-progn.
7143
7144 * emacs-lisp/edebug.el: Miscellaneous cleanup.
7145 Remove obsolete byte-compiler hack that tried to silence some warnings.
7146 (edebug-submit-bug-report): Remove.
7147 (edebug-get-buffer-window, edebug-sit-for, edebug-input-pending-p):
7148 Remove aliases, use the un-prefixed name instead.
7149 (edebug-pop-to-buffer): Consider other frames.
7150 (edebug-original-read):: Make it more obvious that it's always defined.
7151 (edebug--make-form-data-entry, edebug--form-data-name)
7152 (edebug--form-data-begin, edebug--form-data-end): Rename from the
7153 single-dashed name, and implement with cl-defstruct.
7154 (edebug-set-form-data-entry): Use the standard accessors.
7155 (edebug-make-top-form-data-entry): Use push.
7156 (edebug-no-match): Drop useless `funcall'.
7157 (mapcar, mapconcat, mapatoms, apply, funcall): Don't add debug specs
7158 to functions.
7159 (defsubst, dont-compile, eval-when-compile, eval-and-compile)
7160 (delay-mode-hooks, with-temp-file, with-temp-message, ad-dolist)
7161 (with-syntax-table, push, pop, 1value, noreturn, defadvice)
7162 (easy-menu-define, with-custom-print): Remove redundant specs.
7163 (edebug-outside-overriding-local-map)
7164 (edebug-outside-overriding-terminal-local-map): Remove, unused.
7165 (edebug--display): Bind unread-command-events directly to nil rather
7166 than binding it to unread-command-events and later setting it to nil.
7167 (edebug--display): Kill edebug-eval-buffer here...
7168 (edebug--recursive-edit): ...rather than here.
7169 Bind standard-output and standard-input.
7170 (edebug-eval): Check cl-macroexpand-all is fboundp.
7171 (edebug-temp-display-freq-count): Fix last change.
7172
7173 * emacs-lisp/easymenu.el (easy-menu-define): Add `debug' spec.
7174 * subr.el (noreturn, 1value): Add `debug' spec.
7175 * emacs-lisp/advice.el: Require cl-lib.
7176 (ad-copy-tree): Remove, use copy-tree instead.
7177 (ad-dolist): Remove use dolist or cl-dolist instead.
7178 (ad-do-return): Remove, use cl-return instead.
7179 (defadvice): Add `debug' spec.
7180
7181 2012-09-13 Juri Linkov <juri@jurta.org>
7182
7183 * dired-aux.el (dired-do-chxxx): Use `eq' to detect empty input.
7184 (Bug#12399)
7185
7186 2012-09-13 Glenn Morris <rgm@gnu.org>
7187
7188 * calc/calc.el (math-compose-expr):
7189 * calc/calc-ext.el (math-compose-expr):
7190 * progmodes/cc-defs.el (cl-macroexpand-all):
7191 * progmodes/cc-langs.el (delete-duplicates, mapcan)
7192 (cl-macroexpand-all): Update declarations.
7193
7194 * vc/vc.el: No need to require ediff.
7195 (ediff-load-version-control): Declare.
7196 (ediff-vc-internal): Fix declaration.
7197 (vc-version-ediff): Require ediff.
7198
7199 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
7200
7201 Use a more backwards-compatible timer format (Bug#12430).
7202 * emacs-lisp/timer.el (timer): PSECS is now at the end, rather than
7203 being right after USECS, as that better supports old code that
7204 inadvisedly looked directly at the timer vector.
7205
7206 2012-09-13 Kenichi Handa <handa@gnu.org>
7207
7208 * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
7209 ("Chinese-CNS", "Chinese-EUC-TW"): Add chinese-gbk to
7210 `coding-priority' property of these language environment.
7211
7212 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
7213
7214 Fix glitches caused by addition of psec to timers (Bug#12430).
7215 * image.el (image-animate-timer):
7216 * time.el (display-time-world-timer):
7217 Use timer--function and timer--args rather than raw access to
7218 timer vector.
7219
7220 2012-09-13 Glenn Morris <rgm@gnu.org>
7221
7222 * emacs-lisp/bytecomp.el (byte-compile-warning-prefix):
7223 If not compiling a file, try using load-file-name.
7224
7225 2012-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
7226
7227 * emacs-lisp/edebug.el (edebug-outside-unread-command-events):
7228 Fix last change.
7229 (edebug-update-eval-list): Use `push'.
7230
7231 * emacs-lisp/edebug.el: Use lexical-binding.
7232 Remove the "edebug-" prefix from non-dynamically-scoped variables.
7233 Mark unused args with underscore.
7234 (edebug-save-restriction, edebug-outside-excursion): Use `declare'.
7235 (edebug-form-data): Use defvar-local.
7236 (edebug-make-before-and-after-form, edebug-make-after-form):
7237 Use backquote.
7238 (edebug-args, edebug-value, edebug-after-index, edebug-arg-mode):
7239 Not dynamically scoped any more.
7240 (edebug--enter-trace): Add arguments `function' and `args'.
7241 Rename from edebug-enter-trace.
7242 (edebug-enter): Call it accordingly. Bind edebug-function explicitly.
7243 (edebug--update-coverage): Add `after-index' and `value' args.
7244 Rename from edebug-update-coverage.
7245 (edebug-slow-after): Call it accordingly.
7246 (edebug--recursive-edit): Add arg `arg-mode'. Rename from
7247 edebug-recursive-edit.
7248 (edebug--display): Call it accordingly. Add args `value',
7249 `offset-index', and `arg-mode'. Rename from edebug-display.
7250 (edebug-debugger, edebug): Call it accordingly.
7251 (edebug-eval-display-list): Use dolist.
7252
7253 2012-09-12 Juri Linkov <juri@jurta.org>
7254
7255 * info.el (Info-search): Don't check for isearch-mode and
7256 isearch-regexp before let-binding search-spaces-regexp to
7257 Info-search-whitespace-regexp.
7258 (Info-isearch-search): Let-bind Info-search-whitespace-regexp to
7259 search-whitespace-regexp if isearch-lax-whitespace or
7260 isearch-regexp-lax-whitespace is non-nil.
7261 (Info-mode): Don't set local variable search-whitespace-regexp.
7262 http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00811.html
7263
7264 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
7265
7266 * emacs-lisp/debug.el (debugger-outer-unread-command-char, debug)
7267 (debugger-env-macro): Remove support for unread-command-char.
7268
7269 * subr.el (set-temporary-overlay-map): Minimize slightly the impact of
7270 the temporary map re-appearing on emulation-mode-map-alists.
7271
7272 * emacs-lisp/edebug.el (def-edebug-form-spec): Remove, it's been broken
7273 since 22.1.
7274
7275 * ehelp.el (with-electric-help): Accept functions in
7276 electric-help-form-to-execute.
7277 (electric-help-execute-extended, electric-help-ctrl-x-prefix): Use it.
7278 And replace unread-command-char -> unread-command-events.
7279
7280 2012-09-12 Michael Albinus <michael.albinus@gmx.de>
7281
7282 Sync with Tramp 2.2.6.
7283
7284 * net/tramp.el (tramp-accept-process-output): Don't use
7285 JUST-THIS-ONE in the XEmacs case.
7286
7287 * net/trampver.el: Update release number.
7288
7289 2012-09-12 Martin Rudalics <rudalics@gmx.at>
7290
7291 * emacs-lisp/debug.el (debugger-previous-window-height):
7292 New variable.
7293 (debug): When debugger-jumping-flag is non-nil try to restore
7294 height of debugger window. (Bug#8789)
7295
7296 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
7297
7298 * emacs-lisp/edebug.el (edebug-enter): Don't mess with
7299 overriding-local-map and pre/post-command-hook here.
7300 (edebug-recursive-edit): Do it here instead (bug#12345).
7301 (edebug-outside-unread-command-char): Remove all uses of
7302 unread-command-char.
7303
7304 * emacs-lisp/debug.el (debug): Don't bind debug-on-error since
7305 inhibit-debugger is bound instead.
7306
7307 2012-09-11 Bastien Guerry <bzg@gnu.org>
7308
7309 * subr.el (set-temporary-overlay-map): Add a docstring.
7310 (Bug#12346)
7311
7312 2012-09-11 Bastien Guerry <bzg@gnu.org>
7313
7314 * minibuffer.el (completion-table-subvert): Fix docstring.
7315 (Bug#12347)
7316
7317 2012-09-11 Bastien Guerry <bzg@gnu.org>
7318
7319 * help-fns.el (describe-variable): Fix typo. (Bug#12346)
7320
7321 2012-09-10 Michael R. Mauger <mmaug@yahoo.com>
7322
7323 * progmodes/sql.el: Version 3.1
7324 (sql-db2-escape-newlines): New variable.
7325 (sql-escape-newlines-filter): Use it.
7326
7327 2012-09-10 Juanma Barranquero <lekktu@gmail.com>
7328
7329 * custom.el (custom-theme-load-confirm): Remove unneeded assignment.
7330
7331 2012-09-10 Dan Nicolaescu <dann@gnu.org>
7332
7333 * vc/diff-mode.el (diff-mode-menu):
7334 Bind diff-remove-trailing-whitespace.
7335
7336 2012-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
7337
7338 * emacs-lisp/lisp-mode.el (emacs-list-byte-code-comment-re): New var.
7339 (emacs-lisp-byte-code-comment, emacs-lisp-byte-code-syntax-propertize)
7340 (emacs-lisp-byte-code-mode): New functions.
7341 (eval-sexp-add-defvars): Don't skip defvars in column >0.
7342 (eval-defun-2): Remove bogus interactive spec.
7343 (lisp-indent-line): Remove redundant whole-exp code, now done in
7344 indent-according-to-mode.
7345 (save-match-data): Remove redundant indent data.
7346
7347 * emacs-lisp/benchmark.el (benchmark-run, benchmark-run-compiled):
7348 Use `declare'.
7349
7350 2012-09-09 Juri Linkov <juri@jurta.org>
7351
7352 * replace.el (replace-regexp-lax-whitespace): New defcustom.
7353 (replace-lax-whitespace, query-replace-regexp)
7354 (query-replace-regexp-eval, replace-regexp): Doc fix.
7355 (perform-replace, replace-highlight): Let-bind
7356 isearch-lax-whitespace to replace-lax-whitespace and
7357 isearch-regexp-lax-whitespace to replace-regexp-lax-whitespace.
7358
7359 * isearch.el (isearch-query-replace): Let-bind
7360 replace-lax-whitespace to isearch-lax-whitespace and
7361 replace-regexp-lax-whitespace to
7362 isearch-regexp-lax-whitespace. (Bug#10885)
7363
7364 2012-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
7365
7366 * eshell/em-unix.el (eshell/sudo): Explicitly drop return value.
7367
7368 2012-09-09 Alan Mackenzie <acm@muc.de>
7369
7370 * progmodes/cc-engine.el (c-state-cache-init):
7371 Initialise c-state-semi-nonlit-pos-cache\(-limit\)? properly.
7372 (c-record-parse-state-state):
7373 Record c-state-semi-nonlit-pos-cache\(-limit\)?.
7374
7375 2012-09-09 Andreas Schwab <schwab@linux-m68k.org>
7376
7377 * register.el (register-separator): Rename from
7378 separator-register. All uses changed. Doc fix.
7379 (register): Fix version.
7380
7381 2012-09-09 Chong Yidong <cyd@gnu.org>
7382
7383 * replace.el (query-replace-map): Bind four new symbols for
7384 requesting window scrolling.
7385
7386 * subr.el (y-or-n-p): Handle the window-scrolling bindings in
7387 query-replace-map (Bug#8948).
7388
7389 * custom.el (custom-theme-load-confirm): Use y-or-n-p.
7390
7391 * emacs-lisp/map-ynp.el (map-y-or-n-p): Don't bind scrolling keys
7392 since they are now in query-replace-map.
7393
7394 * window.el (scroll-other-window-down): Make the arg optional.
7395
7396 2012-09-09 Chong Yidong <cyd@gnu.org>
7397
7398 * files.el (hack-local-variables-confirm): Use quit-window to kill
7399 the *Local Variables* buffer.
7400
7401 2012-09-08 Dmitry Gutov <dgutov@yandex.ru>
7402
7403 * progmodes/ruby-mode.el (ruby-toggle-block): Guess the current block,
7404 not just expect to be at its beginning. Adjust callees.
7405 Succeed when do-end block has no space before the pipe character.
7406 (ruby-brace-to-do-end): When the original block is one-liner,
7407 convert to multiline. Reindent the result.
7408
7409 2012-09-08 Jambunathan K <kjambunathan@gmail.com>
7410
7411 * register.el (register): New group.
7412 (separator-register): New user option.
7413 (increment-register): Route it to `append-to-register', if
7414 register contains text. Implication is that `C-x r +' can now be
7415 used for appending to a text register (bug#12217).
7416 (append-to-register, prepend-to-register): Add separator based on
7417 `separator-register'.
7418
7419 2012-09-08 Alan Mackenzie <acm@muc.de>
7420
7421 AWK Mode: make auto-newline work when there's "==" in the pattern.
7422 * progmodes/cc-cmds.el (c-point-syntax): Handle virtual semicolons
7423 correctly.
7424 * progmodes/cc-engine.el (c-guess-basic-syntax CASE 5A.3):
7425 Test more rigorously for "=" token.
7426
7427 2012-09-08 Dmitry Gutov <dgutov@yandex.ru>
7428
7429 * progmodes/ruby-mode.el (ruby-match-expression-expansion):
7430 Only fail when reached LIMIT.
7431
7432 2012-09-08 Chong Yidong <cyd@gnu.org>
7433
7434 * dired.el (dired-mode-map): Don't bind M-=.
7435
7436 * dired-aux.el (dired-diff): Use backup file as default.
7437
7438 2012-09-08 Drew Adams <drew.adams@oracle.com>
7439
7440 * subr.el (add-to-history): Fix delete usage (Bug#12314).
7441
7442 2012-09-08 Chong Yidong <cyd@gnu.org>
7443
7444 * subr.el (syntax-after, syntax-class): Doc fix.
7445
7446 2012-09-08 Martin Rudalics <rudalics@gmx.at>
7447
7448 * window.el (display-buffer-in-previous-window): New buffer
7449 display action function.
7450
7451 * emacs-lisp/debug.el (debugger-bury-or-kill): New option.
7452 (debugger-previous-window): New variable.
7453 (debug): Rewrite using display-buffer-in-previous-window,
7454 quit-restore-window and debugger-bury-or-kill. (Bug#8789)
7455
7456 2012-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
7457
7458 * emacs-lisp/byte-run.el (defun): Tweak message. Simplify code.
7459
7460 2012-09-07 Matt McClure <mlm@aya.yale.edu> (tiny change)
7461
7462 * progmodes/python.el (python-shell-send-string):
7463 When default-directory is remote, create temp file on remote
7464 filesystem.
7465 (python-shell-send-file): When file is remote, pass local view of
7466 file paths to remote Python interpreter. (Bug#12340)
7467
7468 2012-09-07 Chong Yidong <cyd@gnu.org>
7469
7470 * window.el (switch-to-buffer): Doc fix (Bug#12181).
7471
7472 * files.el (after-find-file): Don't fail on a read-only buffer if
7473 require-final-newline is `visit' or `visit-save' (Bug#11156).
7474
7475 * subr.el (read-char-choice): Allow quitting via ESC ESC.
7476
7477 * userlock.el (ask-user-about-supersession-threat):
7478 Use read-char-choice (Bug#12093).
7479
7480 2012-09-07 Chong Yidong <cyd@gnu.org>
7481
7482 * subr.el (buffer-narrowed-p): New function.
7483
7484 * ses.el (ses-widen):
7485 * simple.el (count-words--buffer-message):
7486 * net/browse-url.el (browse-url-of-buffer): Use it.
7487
7488 * simple.el (count-words-region): Don't signal an error if there
7489 is a non-nil prefix arg and the mark is not set.
7490
7491 * help.el (describe-key-briefly): Allow the message to be seen
7492 when invoked from the minibuffer (Bug#7014).
7493
7494 2012-09-07 Dmitry Gutov <dgutov@yandex.ru>
7495
7496 * progmodes/ruby-mode.el (ruby-end-of-defun)
7497 (ruby-beginning-of-defun): Simplify, allow indentation before
7498 block beginning and end keywords.
7499 (ruby-beginning-of-defun): Only consider 3 keywords defun beginners.
7500 (ruby-end-of-defun): Expect that the point is at the beginning of
7501 the defun.
7502
7503 2012-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
7504
7505 * emacs-lisp/cl-macs.el (cl--do-arglist): Understand _ on &key args
7506 (bug#12367).
7507 (cl--make-usage-args): Strip _ from argument names.
7508
7509 2012-09-06 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
7510
7511 * progmodes/vhdl-mode.el (vhdl-speedbar-initialize): Don't use
7512 obsolete alias speedbar-key-map.
7513 (vhdl-doc-variable, vhdl-doc-mode): Use called-interactively-p.
7514 (vhdl-index-menu-init): Don't use obsolete variable
7515 font-lock-maximum-size.
7516
7517 2012-09-06 Chong Yidong <cyd@gnu.org>
7518
7519 * frame.el (window-system-version): Mark as obsolete.
7520
7521 * speedbar.el (speedbar-update-flag, speedbar-mode): Remove uses
7522 of obsolete variable speedbar-key-map.
7523
7524 2012-09-06 Juri Linkov <juri@jurta.org>
7525
7526 * replace.el (replace-lax-whitespace): New defcustom.
7527 (query-replace, query-replace-regexp, query-replace-regexp-eval)
7528 (replace-string, replace-regexp): Mention it in docstrings.
7529 (perform-replace, replace-highlight): Let-bind
7530 isearch-lax-whitespace and isearch-regexp-lax-whitespace according
7531 to the values of replace-lax-whitespace and regexp-flag.
7532 Don't let-bind search-whitespace-regexp. (Bug#10885)
7533
7534 * isearch.el (isearch-query-replace): Let-bind
7535 replace-lax-whitespace instead of let-binding
7536 replace-search-function and replace-re-search-function.
7537 (isearch-lazy-highlight-search): Let-bind isearch-lax-whitespace
7538 and isearch-regexp-lax-whitespace to lazy-highlight variables.
7539 (isearch-toggle-symbol): Set isearch-regexp to nil
7540 in isearch-word mode (like in isearch-toggle-word).
7541
7542 2012-09-06 Juri Linkov <juri@jurta.org>
7543
7544 * replace.el (replace-search-function)
7545 (replace-re-search-function): Set default values to nil.
7546 (perform-replace): Let-bind isearch-related variables based on
7547 replace-related values, call `isearch-search-fun' and let-bind
7548 the result to `search-function'. Remove code that sets
7549 `search-function' and `search-string' separately for
7550 `delimited-flag'.
7551 (replace-highlight): Add new argument `delimited-flag' and
7552 rename other arguments to the names used in `perform-replace'.
7553 Let-bind `isearch-word' to the argument `delimited-flag'.
7554 (Bug#10885, bug#10887)
7555
7556 2012-09-07 Dmitry Gutov <dgutov@yandex.ru>
7557
7558 * progmodes/ruby-mode.el (ruby-indent-beg-re): Add pieces from
7559 ruby-beginning-of-indent, simplify, allow all keywords to have
7560 indentation before them.
7561 (ruby-beginning-of-indent): Adjust for above. Search until the
7562 found point is not inside a string or comment.
7563 (ruby-font-lock-keywords): Allow symbols to start with "@"
7564 character, give them higher priority than variables.
7565 (ruby-syntax-propertize-function)
7566 (ruby-font-lock-syntactic-keywords): Remove the "not comments"
7567 matchers. Expression expansions are not comments when inside a
7568 string, and there comment syntax status is irrelevant.
7569 (ruby-match-expression-expansion): New function. Check that
7570 expression expansion is inside a string, and it's not escaped.
7571 (ruby-font-lock-keywords): Use it.
7572
7573 2012-09-05 Martin Rudalics <rudalics@gmx.at>
7574
7575 * help.el (temp-buffer-max-height): New default value.
7576 (temp-buffer-resize-frames): New option.
7577 (resize-temp-buffer-window): Optionally resize frame.
7578
7579 * window.el (fit-frame-to-buffer-bottom-margin): New option.
7580 (fit-frame-to-buffer): New function.
7581
7582 2012-09-05 Glenn Morris <rgm@gnu.org>
7583
7584 * emulation/cua-rect.el (cua--init-rectangles):
7585 * textmodes/picture.el (picture-mode-map):
7586 * play/blackbox.el (blackbox-mode-map): Remap right-char and left-char
7587 like forward-char and backward-char. (Bug#12317)
7588
7589 2012-09-05 Leo Liu <sdl.web@gmail.com>
7590
7591 * progmodes/flymake.el (flymake-warning-re): New variable.
7592 (flymake-parse-line): Use it.
7593
7594 2012-09-05 Glenn Morris <rgm@gnu.org>
7595
7596 * calendar/holidays.el (holiday-christian-holidays):
7597 Rename an entry. (Bug#12289)
7598
7599 2012-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
7600
7601 * progmodes/sh-script.el (sh-font-lock-paren): Don't burp at BOB
7602 (bug#12222).
7603
7604 2012-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
7605
7606 * loadup.el: Load macroexp. Remove hack.
7607 * emacs-lisp/macroexp.el (macroexp--eval-if-compile): New function.
7608 (macroexp--expand-all): Use it to get better warnings.
7609 (macroexp--backtrace, macroexp--trim-backtrace-frame)
7610 (internal-macroexpand-for-load): New functions.
7611 (macroexp--pending-eager-loads): New var.
7612 (emacs-startup-hook): New hack to replace one in loadup.el.
7613 * emacs-lisp/cl-macs.el (cl--compiler-macro-list*)
7614 (cl--compiler-macro-cXXr): Move to top, before they can be used.
7615 (cl-psetf): Simplify.
7616 (cl-defstruct): Add indent rule.
7617
7618 2012-09-04 Lars Ingebrigtsen <larsi@gnus.org>
7619
7620 * mail/smtpmail.el (smtpmail-send-it): Prefer the From: header
7621 over `user-mail-address' for the SMTP MAIL FROM envelope.
7622 (smtpmail-via-smtp): Ditto.
7623
7624 2012-09-04 Dmitry Gutov <dgutov@yandex.ru>
7625
7626 * progmodes/ruby-mode.el: Clean up keybindings.
7627 (ruby-mode-map): Don't bind ruby-electric-brace,
7628 ruby-beginning-of-defun, ruby-end-of-defun, ruby-mark-defun,
7629 backward-kill-word, reindent-then-newline-and-indent.
7630 (ruby-mark-defun): Remove.
7631 (ruby-electric-brace): Remove. Obsoleted by electric-indent-chars.
7632 (ruby-mode): Set local beginning-of-defun-function and
7633 end-of-defun-function values.
7634
7635 2012-09-03 Martin Rudalics <rudalics@gmx.at>
7636
7637 * window.el (temp-buffer-window-setup-hook)
7638 (temp-buffer-window-show-hook): New hooks.
7639 (temp-buffer-window-setup, temp-buffer-window-show)
7640 (with-temp-buffer-window): New functions.
7641 (fit-window-to-buffer): Remove unused optional argument OVERRIDE.
7642 (special-display-popup-frame): Make sure the window used shows BUFFER.
7643
7644 * help.el (temp-buffer-resize-mode): Fix doc-string.
7645 (resize-temp-buffer-window): New optional argument WINDOW.
7646
7647 * files.el (recover-file, save-buffers-kill-emacs):
7648 * dired.el (dired-mark-pop-up): Use with-temp-buffer-window.
7649
7650 2012-09-02 Michael Albinus <michael.albinus@gmx.de>
7651
7652 * eshell/em-unix.el (eshell/sudo): When we have an ad-hoc
7653 remote definition of `default-directory', ensure we can connect.
7654
7655 2012-09-02 Juri Linkov <juri@jurta.org>
7656
7657 Toggle whitespace matching mode with M-s SPC.
7658 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00008.html
7659
7660 * isearch.el (search-whitespace-regexp): Doc fix.
7661 Remove cons cell customization.
7662 (isearch-mode-map): Bind "\M-s " to isearch-toggle-lax-whitespace.
7663 (isearch-lax-whitespace, isearch-regexp-lax-whitespace):
7664 New variables.
7665 (isearch-forward, isearch-forward-regexp): Doc fix.
7666 (isearch-toggle-lax-whitespace): New command.
7667 (search-forward-lax-whitespace, search-backward-lax-whitespace)
7668 (re-search-forward-lax-whitespace)
7669 (re-search-backward-lax-whitespace): New functions.
7670 (isearch-whitespace-regexp): Remove function.
7671 (isearch-query-replace): Let-bind replace-search-function and
7672 replace-re-search-function.
7673 (isearch-occur): Let-bind search-spaces-regexp according to the
7674 value of isearch-lax-whitespace and isearch-regexp-lax-whitespace.
7675 (isearch-quote-char): Check isearch-regexp-lax-whitespace in the
7676 condition for C-q SPC.
7677 (isearch-search-fun-default): Use new functions mentioned above.
7678 (isearch-search-forward, isearch-search-backward): Remove functions.
7679 (isearch-search): Don't let-bind search-spaces-regexp.
7680 (isearch-lazy-highlight-space-regexp): Remove variable.
7681 (isearch-lazy-highlight-lax-whitespace)
7682 (isearch-lazy-highlight-regexp-lax-whitespace): New variables.
7683 (isearch-lazy-highlight-new-loop): Use them.
7684 (isearch-lazy-highlight-search): Don't let-bind search-spaces-regexp.
7685
7686 2012-09-02 Chong Yidong <cyd@gnu.org>
7687
7688 * dired.el (dired-mode-map): Menu string fixes (Bug#11616).
7689
7690 2012-09-02 Glenn Morris <rgm@gnu.org>
7691
7692 * simple.el (undo): Tweak message in undo-only case. (Bug#12283)
7693
7694 2012-09-01 Glenn Morris <rgm@gnu.org>
7695
7696 * term.el: Tidy up menu definitions.
7697 (term-mode-map): Use easymenu for In/Out, Complete menus.
7698 (term-pager-break-map): Initialize in the defvar.
7699 (term-terminal-menu, term-signals-menu): Define with easymenu.
7700 (term-terminal-menu): Also show it in line-mode. (Bug#11957)
7701 (term-pager-menu): New, extracted from term-process-pager.
7702 (term-mode, term-char-mode, term-process-pager): Use easymenu-add.
7703 (term-update-mode-line): Propertize line/char and page items.
7704 (term-process-pager): Move keymap initialization elsewhere.
7705
7706 2012-09-01 Martin Rudalics <rudalics@gmx.at>
7707
7708 * window.el (switch-to-prev-buffer): Handle additional values of
7709 BURY-OR-KILL argument. Don't switch in minibuffer window.
7710 (switch-to-next-buffer): Don't switch in minibuffer window.
7711 (quit-restore-window): New function based on quit-window.
7712 Handle additional values of former KILL argument.
7713 (quit-window): Call quit-restore-window with appropriate
7714 interpretation of KILL argument.
7715 (display-buffer-below-selected): New buffer display action
7716 function.
7717
7718 2012-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
7719
7720 * minibuffer.el (completion-at-point-functions): Complete docstring
7721 (bug#12254).
7722
7723 2012-09-01 Paul Eggert <eggert@cs.ucla.edu>
7724
7725 Better seed support for (random).
7726 * play/5x5.el, play/animate.el, play/cookie1.el, play/dissociate.el:
7727 * play/doctor.el, play/dunnet.el, play/gomoku.el, play/landmark.el:
7728 * play/mpuz.el, play/tetris.el, play/zone.el:
7729 * calc/calc-comb.el (math-init-random-base):
7730 * play/blackbox.el (bb-init-board):
7731 * play/life.el (life):
7732 * server.el (server-use-tcp):
7733 * type-break.el (type-break):
7734 Remove unnecessary call to (random t).
7735 * net/sasl.el (sasl-unique-id-function):
7736 Change (random t) to (random), now that the latter is more random.
7737 * play/life.el (life-initialized): Remove no-longer-needed var.
7738
7739 2012-08-31 Alp Aker <alp.tekin.aker@gmail.com>
7740
7741 * window.el (switch-to-prev-buffer, switch-to-next-buffer):
7742 Consider frame's buffer predicate when choosing the buffer.
7743 (Bug#12081)
7744
7745 2012-08-30 Richard Stallman <rms@gnu.org>
7746
7747 * simple.el (special-mode-map): Delete binding for `z'.
7748
7749 2012-08-30 Andreas Schwab <schwab@linux-m68k.org>
7750
7751 * progmodes/compile.el (compilation-always-kill): Doc fix.
7752
7753 2012-08-30 Chong Yidong <cyd@gnu.org>
7754
7755 * window.el (display-buffer-reuse-frames): Make the obsolescence
7756 message more informative.
7757
7758 2012-08-30 Glenn Morris <rgm@gnu.org>
7759
7760 * paren.el (show-paren-delay):
7761 Add a :set function. Doc fix. (Bug#12297)
7762
7763 2012-08-29 Martin Blais <blais@furius.ca> (tiny change)
7764
7765 * progmodes/compile.el (compilation-always-kill): New var.
7766 (compilation-start): Use it.
7767
7768 2012-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
7769
7770 * simple.el (read-only-mode): Move from files.el for bootstrapping.
7771 * files.el (read-only-mode): Move to simple.el.
7772
7773 * files.el (read-only-mode): New minor mode.
7774 (toggle-read-only): Use it and mark obsolete.
7775 (find-file--read-only):
7776 * vc/vc.el (vc-next-action, vc-checkout):
7777 * vc/vc-cvs.el (vc-cvs-checkout):
7778 * obsolete/vc-mcvs.el (vc-mcvs-update):
7779 * ffap.el (ffap--toggle-read-only): Update callers.
7780
7781 2012-08-29 Michael Albinus <michael.albinus@gmx.de>
7782
7783 * eshell/esh-ext.el (eshell-external-command): Do not examine
7784 remote shell scripts.
7785 See <https://bugs.launchpad.net/ubuntu/+source/emacs23/+bug/1035790>.
7786
7787 * net/tramp-sh.el (tramp-remote-path): Add "/sbin" and
7788 "/usr/local/sbin".
7789
7790 2012-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
7791
7792 * emacs-lisp/cl-lib.el (buffer-string): Fix setter macro (bug#12293).
7793
7794 2012-08-28 Leo Liu <sdl.web@gmail.com>
7795
7796 * progmodes/sh-script.el (sh-dynamic-complete-functions): Adapt to
7797 completion-at-point. (Bug#12220)
7798
7799 * skeleton.el (skeleton-untabify): Change to nil (bug#12223).
7800
7801 * progmodes/sh-script.el (sh-indent-comment): Change to t (bug#12267).
7802
7803 2012-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
7804
7805 * files.el (safe-local-eval-forms): Fix before-save-hook entry to
7806 be buffer-local; add delete-trailing-whitespace (bug#12259).
7807
7808 2012-08-28 Jeremy Moore <jmoore@ieee.org> (tiny change)
7809
7810 * progmodes/hideif.el (hif-compress-define-list):
7811 Fix typo. (Bug#11951)
7812
7813 2012-08-28 Dan Nicolaescu <dann@gnu.org>
7814
7815 * progmodes/hideshow.el (hs-block-end-regexp): Restore lost
7816 buffer local setting.
7817
7818 * net/rcirc.el (rcirc-split-message): Fix for buffer-local
7819 rcirc-encode-coding-system.
7820
7821 2012-08-28 Leo Liu <sdl.web@gmail.com>
7822
7823 * net/rcirc.el (rcirc-split-message): New function.
7824 (rcirc-send-message): Use it. (Bug#12051)
7825
7826 2012-08-28 Juri Linkov <juri@jurta.org>
7827
7828 * info.el (Info-fontify-node): Hide empty lines at the end of
7829 the node. (Bug#12272)
7830
7831 2012-08-27 Drew Adams <drew.adams@oracle.com>
7832
7833 * dired.el (dired-pop-to-buffer): Make window start at beginning
7834 of buffer (Bug#12281).
7835
7836 2012-08-26 Chong Yidong <cyd@gnu.org>
7837
7838 * window.el (special-display-regexps, special-display-frame-alist)
7839 (special-display-buffer-names, special-display-function)
7840 (display-buffer-reuse-frames): Mark as obsolete.
7841
7842 * progmodes/compile.el: Don't use display-buffer-reuse-frames.
7843
7844 * help.el (help-print-return-message): Don't treat
7845 display-buffer-reuse-frames specially.
7846
7847 2012-08-26 Chong Yidong <cyd@gnu.org>
7848
7849 * progmodes/gdb-mi.el (gdb-display-buffer-other-frame-action):
7850 New variable, replacing gdb-frame-parameters.
7851 (gdb-frame-io-buffer, gdb-frame-breakpoints-buffer)
7852 (gdb-frame-threads-buffer, gdb-frame-memory-buffer)
7853 (gdb-frame-disassembly-buffer, gdb-frame-stack-buffer)
7854 (gdb-frame-locals-buffer, gdb-frame-registers-buffer): Use it.
7855 (def-gdb-frame-for-buffer): Macro deleted. It is easier to define
7856 the functions directly with gdb-display-buffer-other-frame-action.
7857 (gdb-display-breakpoints-buffer, gdb-display-threads-buffer)
7858 (gdb-display-memory-buffer, gdb-display-disassembly-buffer)
7859 (gdb-display-stack-buffer, gdb-display-locals-buffer)
7860 (gdb-display-registers-buffer): Define directly.
7861 (def-gdb-display-buffer): Macro deleted.
7862 (gdb-display-buffer): Remove second and third args, callers don't
7863 use them. Defer to the default display-buffer behavior, apart
7864 from making windows dedicated.
7865 (gdb-setup-windows): Don't call display-buffer unnecessarily.
7866
7867 * progmodes/gud.el (gud-display-line): Just use display-buffer.
7868
7869 * window.el (display-buffer-pop-up-frame): Handle a
7870 pop-up-frame-parameters alist entry.
7871 (display-buffer): Document it.
7872
7873 2012-08-26 Chong Yidong <cyd@gnu.org>
7874
7875 * isearch.el (search-whitespace-regexp): Make string and nil
7876 values apply to both ordinary and regexp search. Allow a cons
7877 cell value to distinguish between the two.
7878 (isearch-whitespace-regexp, isearch-search-forward)
7879 (isearch-search-backward): New functions.
7880 (isearch-occur, isearch-search-fun-default, isearch-search)
7881 (isearch-lazy-highlight-new-loop): Use them.
7882 (isearch-forward, isearch-forward-regexp): Doc fix.
7883
7884 2012-08-26 Chong Yidong <cyd@gnu.org>
7885
7886 * faces.el (help-argument-name): Always inherit from italic
7887 (Bug#12213).
7888
7889 2012-08-25 Martin Rudalics <rudalics@gmx.at>
7890
7891 * window.el (window--even-window-heights): Even heights when
7892 WINDOW and the selected window form a vertical combination.
7893 (display-buffer-use-some-window): Provide that window used gets
7894 sized back by quit-window. (Bug#11880) and (Bug#12091)
7895
7896 2012-08-24 Paul Eggert <eggert@cs.ucla.edu>
7897
7898 Fix file time stamp problem with bzr and CVS (Bug#12001).
7899 * vc/vc-cvs.el (vc-cvs-parse-entry): Ignore subsecond information
7900 in the file's time stamp, since the version control system loses
7901 that information.
7902
7903 2012-08-22 Juri Linkov <juri@jurta.org>
7904
7905 * info.el (Info-fontify-node): Hide the suffix of the
7906 Info file name in the header line. (Bug#12187)
7907
7908 2012-08-22 Glenn Morris <rgm@gnu.org>
7909
7910 * calendar/cal-tex.el (cal-tex-weekly-common):
7911 Restore leading blank page.
7912
7913 2012-08-22 Le Wang <l26wang@gmail.com>
7914
7915 * misc.el (forward-to-word, backward-to-word): Activate or extend
7916 the region under `shift-select-mode'. (Bug#12231)
7917
7918 2012-08-22 Bastien Guerry <bzg@gnu.org>
7919
7920 * progmodes/executable.el (executable-prefix): Set to "#!" instead
7921 of "#! ". http://www.in-ulm.de/~mascheck/various/shebang/#details
7922 gives details on why the space is never needed.
7923
7924 2012-08-22 Martin Rudalics <rudalics@gmx.at>
7925
7926 * window.el (walk-window-tree, window-with-parameter):
7927 New optional argument MINIBUF to control whether these functions
7928 should run on the minibuffer window.
7929 (window-at-side-list): Don't operate on minibuffer window.
7930 (window-in-direction): Simplify and rewrite doc-string.
7931 (window--size-ignore): Rename to window--size-ignore-p.
7932 Update callers.
7933 (display-buffer-in-atom-window, window--major-non-side-window)
7934 (window--major-side-window, display-buffer-in-major-side-window)
7935 (delete-side-window, display-buffer-in-side-window):
7936 New functions.
7937 (window--side-check, window-deletable-p, delete-window)
7938 (delete-other-windows, split-window): Handle side windows and
7939 atomic windows appropriately.
7940 (window--display-buffer): Call display-buffer-record-window also
7941 when the window buffer did not change.
7942
7943 2012-08-22 Christopher Schmidt <christopher@ch.ristopher.com>
7944
7945 * help-fns.el (help-fns--key-bindings):
7946 Abbreviate non-symbol remap targets. (Bug#12174)
7947
7948 2012-08-22 Martin Rudalics <rudalics@gmx.at>
7949
7950 * dired.el (dired-mark-remembered): Don't clobber point.
7951 (Bug#11795)
7952
7953 2012-08-22 Glenn Morris <rgm@gnu.org>
7954
7955 * progmodes/bug-reference.el (bug-reference): New custom group.
7956 (bug-reference-bug-regexp): Make it a defcustom.
7957
7958 2012-08-22 Daiki Ueno <ueno@unixuser.org>
7959
7960 * progmodes/js.el (js-indent-level, js-expr-indent-offset)
7961 (js-paren-indent-offset, js-square-indent-offset)
7962 (js-curly-indent-offset): Add :safe (Bug#12257).
7963
7964 2012-08-22 Edward O'Connor <hober0@gmail.com>
7965
7966 * json.el (json-key-format): Add error properties.
7967 (json-encode-key): New function.
7968 (json-encode-hash-table, json-encode-alist, json-encode-plist):
7969 Use json-encode-key.
7970
7971 2012-08-22 Glenn Morris <rgm@gnu.org>
7972
7973 * calendar/cal-tex.el (cal-tex-longday): New function, replacing...
7974 (cal-tex-leftday, cal-tex-rightday): Remove functions.
7975 (cal-tex-weekly-common, cal-tex-cursor-filofax-2week):
7976 Update for above change.
7977
7978 2012-08-21 Andreas Schwab <schwab@linux-m68k.org>
7979
7980 * cus-face.el (custom-face-attributes): Fix customize type for the
7981 :underline attribute. (Bug#11805)
7982
7983 2012-08-21 Martin Rudalics <rudalics@gmx.at>
7984
7985 * window.el (window-point-1, set-window-point-1): Remove.
7986 (window-in-direction, record-window-buffer)
7987 (set-window-buffer-start-and-point, split-window-below)
7988 (window--state-get-1, display-buffer-record-window):
7989 Replace calls to window-point-1 and set-window-point-1 by calls to
7990 window-point and set-window-point respectively.
7991
7992 2012-08-21 Glenn Morris <rgm@gnu.org>
7993
7994 * calendar/cal-tex.el (cal-tex-weekly-common): New function.
7995 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-week):
7996 Use it.
7997
7998 * calendar/cal-tex.el (cal-tex-rightday): Add optional funcname arg.
7999 (cal-tex-shortday): New function.
8000 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-week)
8001 (cal-tex-cursor-filofax-daily): Use the above.
8002
8003 * calendar/cal-tex.el (cal-tex-leftday, cal-tex-rightday):
8004 New functions.
8005 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-2week)
8006 (cal-tex-cursor-filofax-week): Use them.
8007
8008 * calendar/cal-tex.el (cal-tex-lefthead, cal-tex-righthead):
8009 New constants.
8010 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-2week)
8011 (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily): Use them.
8012
8013 * calendar/cal-tex.el (cal-tex-preamble): Generate new buffers.
8014 (cal-tex-end-document): Don't rely on buffer name.
8015
8016 * calendar/cal-tex.el (cal-tex-cursor-filofax-year):
8017 Use cal-tex-vspace.
8018 (cal-tex-vspace, cal-tex-hspace, cal-tex-em, cal-tex-bf)
8019 (cal-tex-Huge-bf, cal-tex-large-bf): Use cal-tex-cmd.
8020 (cal-tex-scriptsize, cal-tex-huge, cal-tex-Huge, cal-tex-large):
8021 Use cal-tex-arg.
8022
8023 * calendar/cal-tex.el (cal-tex-cursor-filofax-year)
8024 (cal-tex-cursor-week, cal-tex-cursor-week2)
8025 (cal-tex-cursor-week-iso, cal-tex-cursor-week-at-a-glance)
8026 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
8027 (cal-tex-cursor-filofax-daily, cal-tex-cursor-day)
8028 (cal-tex-insert-preamble, cal-tex-b-document)
8029 (cal-tex-e-document, cal-tex-b-center, cal-tex-e-center):
8030 Improve cal-tex-cmd usage.
8031
8032 * calendar/cal-tex.el (cal-tex-filofax-paper): New function.
8033 (cal-tex-cursor-filofax-year, cal-tex-cursor-filofax-2week)
8034 (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily): Use it.
8035 (cal-tex-weekly-paper): New function.
8036 (cal-tex-cursor-week, cal-tex-cursor-week2)
8037 (cal-tex-cursor-week-iso, cal-tex-cursor-week-monday)
8038 (cal-tex-cursor-day): Use it.
8039
8040 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance)
8041 (cal-tex-cursor-filofax-week): Remove leading blank page.
8042
8043 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance):
8044 Add autoload cookie. For now at least, don't use color, since
8045 no other cal-tex function does.
8046
8047 * calendar/cal-tex.el (cal-tex-cursor-week-iso)
8048 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
8049 (cal-tex-cursor-filofax-daily): Correct start date for diary entries.
8050
8051 2012-08-21 Juri Linkov <juri@jurta.org>
8052
8053 * info.el (Info-file-attributes): New variable.
8054 (info-insert-file-contents): Add file attributes to
8055 `Info-file-attributes'. Clear the caches `Info-index-nodes' and
8056 `Info-toc-nodes' when previous modtime of the Info file is less
8057 than new modtime.
8058 (Info-toc-nodes, Info-index-nodes): Move definitions up to the top
8059 of info.el. (Bug#12230)
8060
8061 2012-08-20 Glenn Morris <rgm@gnu.org>
8062
8063 * calendar/diary-lib.el (diary-include-files, diary-sexp-entry):
8064 * calendar/holidays.el (calendar-holiday-list):
8065 Report errors with display-warning rather than beep'n'sleep.
8066
8067 2012-08-20 Michael Albinus <michael.albinus@gmx.de>
8068
8069 * net/tramp.el (tramp-accept-process-output): Accept only output
8070 from PROC. Otherwise, process filters and sentinels might be
8071 confused. (Bug#12145)
8072
8073 2012-08-20 Chong Yidong <cyd@gnu.org>
8074
8075 * descr-text.el (describe-text-properties-1): Use overlays-in to
8076 report on empty overlays (Bug#3322).
8077
8078 2012-08-20 Glenn Morris <rgm@gnu.org>
8079
8080 * mail/rmailout.el (rmail-output-read-file-name):
8081 Trap and report errors in rmail-output-file-alist elements.
8082
8083 * font-lock.el (font-lock-add-keywords): Doc fix (quote face names
8084 since most non-font-lock faces are not also variables).
8085
8086 2012-08-20 Edward Reingold <reingold@iit.edu>
8087
8088 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance):
8089 New function. (Bug12160)
8090
8091 2012-08-19 Glenn Morris <rgm@gnu.org>
8092
8093 * mail/rmailout.el (rmail-output-read-file-name):
8094 Fix previous change (when the alist is nil or does not match).
8095
8096 2012-08-19 Chong Yidong <cyd@gnu.org>
8097
8098 * xml.el (xml-escape-string): Don't refer to xml-entity-alist
8099 (Bug#12228).
8100
8101 2012-08-18 Chong Yidong <cyd@gnu.org>
8102
8103 * simple.el (yank-handled-properties): New defcustom.
8104 (yank-excluded-properties): Add font-lock-face and category.
8105 (yank): Doc fix.
8106
8107 * subr.el (remove-yank-excluded-properties):
8108 Obey yank-handled-properties. The special handling of font-lock-face
8109 and category is now done this way, instead of being hard-coded.
8110 (insert-for-yank-1): Remove font-lock-face handling.
8111 (yank-handle-font-lock-face-property)
8112 (yank-handle-category-property): New function.
8113
8114 2012-08-17 Glenn Morris <rgm@gnu.org>
8115
8116 * mail/rmailout.el (rmail-output-read-file-name):
8117 Check rmail-output-file-alist against the full message body
8118 in the correct rmail buffer. (Bug#12214)
8119
8120 2012-08-17 Michael Albinus <michael.albinus@gmx.de>
8121
8122 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
8123 Eliminate superfluous prompt. (Bug#12203)
8124
8125 2012-08-17 Chong Yidong <cyd@gnu.org>
8126
8127 * mouse.el (mouse-appearance-menu): If x-select-font returns a
8128 font spec, set the font directly (Bug#3228).
8129
8130 2012-08-17 Martin Rudalics <rudalics@gmx.at>
8131
8132 * window.el (delete-window): Fix last fix.
8133
8134 2012-08-16 Martin Rudalics <rudalics@gmx.at>
8135
8136 * window.el (window-valid-p): Move to window.c.
8137 (window-child, window-child-count, window-last-child)
8138 (window-normalize-window, window-combined-p)
8139 (window-combinations, window-atom-root, window-min-size)
8140 (window-sizable, window-sizable-p, window-size-fixed-p)
8141 (window-min-delta, window-max-delta, window--resizable)
8142 (window--resizable-p, window-resizable, window-total-size)
8143 (window-full-height-p, window-full-width-p, window-body-size)
8144 (window-at-side-p, adjust-window-trailing-edge, maximize-window)
8145 (minimize-window, window-deletable-p, delete-window)
8146 (delete-other-windows, set-window-buffer-start-and-point)
8147 (next-buffer, previous-buffer, split-window, balance-windows-2)
8148 (set-window-text-height, window-buffer-height)
8149 (fit-window-to-buffer, shrink-window-if-larger-than-buffer)
8150 (truncated-partial-width-window-p): Minor code adjustments.
8151 In doc-strings state whether the argument window has to denote a
8152 live, valid or any window.
8153
8154 2012-08-16 Phil Sainty <psainty@orcon.net.nz> (tiny change)
8155
8156 * progmodes/subword.el (subword-forward-function)
8157 (subword-backward-function, subword-forward-regexp)
8158 (subword-backward-regexp): New variables.
8159 (subword-forward, subword-forward-internal, subword-backward-internal):
8160 Use new variables, eg so that different "word" definitions
8161 can be easily used. (Bug#11411)
8162
8163 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
8164
8165 * vc/vc-mtn.el (vc-mtn-revision-completion-table): Handle completion
8166 for composite selectors.
8167 * vc/vc.el (vc-diff-build-argument-list-internal): Don't prevent
8168 operation just because we can't find a previous revision.
8169
8170 2012-08-15 Chong Yidong <cyd@gnu.org>
8171
8172 * frame.el (set-frame-font): Accept font objects.
8173
8174 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
8175
8176 * textmodes/tex-mode.el (tex-insert-quote): ~ is a space (bug#12137).
8177
8178 2012-08-15 Wolfgang Jenkner <wjenkner@inode.at>
8179
8180 * man.el (Man-overstrike-face, Man-underline-face)
8181 (Man-reverse-face): Remove variables.
8182 (Man-overstrike, Man-underline, Man-reverse): New faces.
8183 (Man-fontify-manpage): Use them instead of the variables.
8184 (Man-cleanup-manpage): Comment change.
8185 (Man-ansi-color-map): New variable.
8186 (Man-fontify-manpage): Use it.
8187 Call ansi-color-apply-on-region to replace ad hoc code (bug#12147).
8188
8189 Implement ANSI SGR parameters 22-27 (bug#12146).
8190 * ansi-color.el (ansi-colors): Doc fix.
8191 (ansi-color-context, ansi-color-context-region): Doc fix.
8192 (ansi-color--find-face): New function.
8193 (ansi-color-apply, ansi-color-apply-on-region): Use it.
8194 Rename the local variable `face' to `codes' since it is now a list of
8195 ansi codes. Doc fix.
8196 (ansi-color-get-face): Remove.
8197 (ansi-color-parse-sequence): New function, derived from
8198 ansi-color-get-face.
8199 (ansi-color-apply-sequence): Use it. Rewrite, and support ansi
8200 codes 22-27.
8201
8202 2012-08-14 Stefan Monnier <monnier@iro.umontreal.ca>
8203
8204 * subr.el (read-passwd): Allow use from a minibuffer.
8205
8206 2012-08-14 Eli Zaretskii <eliz@gnu.org>
8207
8208 * tooltip.el (tooltip-identifier-from-point): Don't treat tokens
8209 inside comments and strings as identifiers.
8210
8211 * progmodes/gud.el (gud-tooltip-print-command): Quote the
8212 expression to evaluate. This allows to evaluate expressions with
8213 embedded whitespace.
8214 (gud-tooltip-tips): Add a blank before the newline in the
8215 message-box text, for the benefit of message-box emulation on
8216 MS-Windows.
8217
8218 * progmodes/gdb-mi.el (gdb-tooltip-print): Don't ignore error
8219 messages from GDB, pop them up in a tooltip to give feedback to
8220 user.
8221 (gdb-tooltip-print-1): Quote the expression to evaluate.
8222 This allows to evaluate expressions with embedded whitespace.
8223 (gdb-inferior-io--init-proc): Don't send "-inferior-tty" command
8224 if the TTY name is nil or empty (which happens when communicating
8225 with the inferior via pipes, e.g. on MS-Windows).
8226 (gdb-internals): If GDB sends a "&\n" empty debugging message,
8227 don't send that to the GUD buffer.
8228
8229 2012-08-14 Glenn Morris <rgm@gnu.org>
8230
8231 * emacs-lisp/bytecomp.el (byte-compile-setq-default):
8232 Optimize away setq-default with no args, as for setq. (Bug#12195)
8233
8234 2012-08-14 Chong Yidong <cyd@gnu.org>
8235
8236 * minibuffer.el (read-file-name): Doc fix (Bug#10881).
8237
8238 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Doc fix
8239 (Bug#12085).
8240
8241 2012-08-14 Glenn Morris <rgm@gnu.org>
8242
8243 * emacs-lisp/bytecomp.el (byte-recompile-file): Doc fix.
8244
8245 2012-08-14 Michael Albinus <michael.albinus@gmx.de>
8246
8247 * net/tramp-sh.el (tramp-open-shell): Cache the shell name.
8248 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
8249 Use cached shell name.
8250
8251 2012-08-14 Fabián Ezequiel Gallina <fgallina@cuca>
8252
8253 * progmodes/python.el (python-shell-send-string):
8254 (python-shell-send-setup-code): Do not use `format' with `message'.
8255
8256 2012-08-14 Dmitry Gutov <dgutov@yandex.ru>
8257
8258 * progmodes/ruby-mode.el: Improve percent literals (bug#6286).
8259 (ruby-percent-literal-beg-re): New constant.
8260 (ruby-syntax-general-delimiters-goto-beg): Rename to
8261 `ruby-syntax-enclosing-percent-literal', improve literal type check.
8262 (ruby-syntax-propertize-general-delimiters): Rename to
8263 `ruby-syntax-propertize-percent-literal', it's a shorter and more
8264 popular term. Adjust comments everywhere.
8265 (ruby-syntax-propertize-percent-literal): Only propertize when not
8266 inside a simple string or comment. When the literal is unclosed,
8267 leave the text after it unpropertized.
8268 (ruby-syntax-methods-before-regexp): New constant.
8269 (ruby-syntax-propertize-function): Use it to recognize regexps.
8270 Don't look at the text after regexp, just use the whitelist.
8271
8272 2012-08-14 Andreas Schwab <schwab@linux-m68k.org>
8273
8274 * emacs-lisp/bytecomp.el (byte-recompile-file): When LOAD is
8275 non-nil always load the compiled file if it exists. (Bug#12197)
8276
8277 2012-08-14 Chong Yidong <cyd@gnu.org>
8278
8279 * hi-lock.el (hi-lock-mode): Do not unilaterally enable font lock.
8280 (hi-lock-set-pattern): When deciding whether to use font lock or
8281 overlays, look at font-lock-mode instead of font-lock-fontified
8282 (Bug#12168).
8283 (hi-lock-mode, hi-lock-line-face-buffer, hi-lock-unface-buffer)
8284 (hi-lock-face-buffer, hi-lock-face-phrase-buffer): Doc fix.
8285
8286 2012-08-14 Daiki Ueno <ueno@unixuser.org>
8287
8288 * subr.el (internal--after-with-selected-window): Fix typo
8289 (Bug#12193).
8290
8291 2012-08-14 Fabián Ezequiel Gallina <fgallina@cuca>
8292
8293 Use `completion-table-dynamic' for completion functions.
8294 * progmodes/python.el
8295 (python-shell-completion--do-completion-at-point)
8296 (python-shell-completion--get-completions):
8297 Remove functions.
8298 (python-shell-completion-complete-at-point): New function.
8299 (python-completion-complete-at-point): Use it.
8300
8301 2012-08-13 Jambunathan K <kjambunathan@gmail.com>
8302
8303 * vc/vc-dir.el (vc-dir-hide-state): New command (bug#12159).
8304 (vc-dir-hide-up-to-date): Route it to `vc-dir-hide-state'.
8305
8306 2012-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
8307
8308 * subr.el (function-get): Refine `autoload' arg so it can also
8309 autoload functions for gv.el (bug#12191).
8310 * emacs-lisp/edebug.el (get-edebug-spec): Adjust so it only
8311 autoloads macros.
8312
8313 * color.el (color-xyz-to-lab, color-lab-to-xyz, color-cie-de2000):
8314 Prefer pcase-let over destructuring-bind.
8315 * vc/diff-mode.el (diff-remove-trailing-whitespace): Same.
8316 Also, remove whitespace as we go, rather than after accumulating the
8317 various places.
8318
8319 * subr.el (internal--before-with-selected-window)
8320 (internal--after-with-selected-window): Fix typo seleted->selected.
8321 (with-selected-window): Adjust callers.
8322 Reported by Dmitry Gutov <dgutov@yandex.ru>.
8323
8324 2012-08-13 Bastien Guerry <bzg@gnu.org>
8325
8326 * window.el (special-display-popup-frame): Minor docstring
8327 enhancement. (Bug#12172)
8328
8329 2012-08-13 Andreas Schwab <schwab@linux-m68k.org>
8330
8331 * tar-mode.el (tar-header-data-end): Only ignore size for files of
8332 type 1-6.
8333 (tar-header-block-summarize, tar-get-descriptor): Handle pax
8334 extended headers.
8335
8336 * files.el (hack-local-variables-filter): Remove useless eval.
8337
8338 2012-08-13 Martin Rudalics <rudalics@gmx.at>
8339
8340 * subr.el (with-selected-window): Fix last change.
8341
8342 2012-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
8343
8344 * subr.el (internal--before-with-seleted-window)
8345 (internal--after-with-seleted-window): New functions.
8346 (with-selected-window): Use them, to replace dependency on
8347 tty-top-frame.
8348
8349 2012-08-12 Nobuyoshi Nakada <nobu@ruby-lang.org>
8350
8351 * progmodes/ruby-mode.el (ruby-mode-map): Remove unnecessary
8352 binding for `newline'.
8353 (ruby-move-to-block): When moving backward, stop at block opening,
8354 not indentation.
8355 * progmodes/ruby-mode.el (ruby-brace-to-do-end)
8356 (ruby-do-end-to-brace, ruby-toggle-block): New functions.
8357 * progmodes/ruby-mode.el (ruby-mode-map): Add binding for
8358 `ruby-toggle-block'.
8359
8360 2012-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
8361
8362 * ibuffer.el (ibuffer-do-toggle-read-only):
8363 * dired.el (dired-toggle-read-only):
8364 * buff-menu.el (Buffer-menu-toggle-read-only):
8365 * bindings.el (mode-line-toggle-read-only):
8366 * bs.el (bs-toggle-readonly): Call toggle-read-only interactively.
8367
8368 2012-08-12 Andreas Schwab <schwab@linux-m68k.org>
8369
8370 * descr-text.el (describe-char): Put the overlays over the
8371 "displayed as" character.
8372
8373 2012-08-12 Jay Belanger <jay.p.belanger@gmail.com>
8374
8375 * calc/calc-units.el (math-default-units-table): Give an
8376 initial value.
8377 (math-put-default-units): Add options to put composite units and
8378 unit systems in the default units table.
8379 (calc-convert-units): Send composite units to
8380 `math-put-default-units' when appropriate.
8381
8382 2012-08-11 Glenn Morris <rgm@gnu.org>
8383
8384 * emacs-lisp/copyright.el (copyright-update-directory): Logic fix.
8385
8386 * tutorial.el (help-with-tutorial):
8387 * emacs-lisp/copyright.el (copyright-update-directory):
8388 * emacs-lisp/autoload.el (autoload-find-generated-file)
8389 (autoload-find-file): Disable local eval: (for insurance).
8390
8391 * files.el (hack-local-variables-filter): If an eval: form is not
8392 known to be safe, and enable-local-variables is :safe, then ignore
8393 the form totally, as is done for non-eval forms. (Bug#12155)
8394 This is CVE-2012-3479.
8395
8396 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
8397
8398 * emacs-lisp/rx.el (rx-constituents): Don't define as constant.
8399 (rx-form): Simplify.
8400
8401 2012-08-09 Dmitry Gutov <dgutov@yandex.ru>
8402
8403 * progmodes/ruby-mode.el (ruby-expr-beg, ruby-parse-partial):
8404 ?, _, and : are symbol constituents, ! is not (but kinda should be).
8405 (ruby-syntax-propertize-heredoc): Use ruby-singleton-class-p.
8406 (ruby-syntax-propertize-function): Adjust for changes in
8407 `ruby-syntax-propertize-heredoc'.
8408
8409 2012-08-09 Nobuyoshi Nakada <nobu@ruby-lang.org>
8410
8411 * progmodes/ruby-mode.el (ruby-mode-map): Remove deprecated
8412 binding (use `M-;' instead).
8413 (ruby-singleton-class-p): New function.
8414 (ruby-expr-beg, ruby-in-here-doc-p) Use it.
8415
8416 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
8417
8418 * emacs-lisp/cl-macs.el (cl-loop): Improve debug spec.
8419
8420 2012-08-10 Chong Yidong <cyd@gnu.org>
8421
8422 * progmodes/python.el (python-shell-get-process-name): Don't mess
8423 with same-window-buffer-names.
8424
8425 * eshell/eshell.el (eshell-add-to-window-buffer-names)
8426 (eshell-remove-from-window-buffer-names): Make obsolete.
8427 (eshell-buffer-name, eshell-unload-hook): Don't use them.
8428 (eshell): Just use pop-to-buffer-same-window instead.
8429
8430 2012-08-10 Chong Yidong <cyd@gnu.org>
8431
8432 * bindings.el: Bind M-= back to count-words-region.
8433
8434 * simple.el (count-words-region): Accept a prefix arg for acting
8435 on the entire buffer.
8436 (count-words--buffer-message): New helper function.
8437
8438 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
8439
8440 * term/x-win.el (x-menu-bar-open): Always pass last-nonmenu-event.
8441 * subr.el (eventp): `nil' is not an event, and eventp is not hot.
8442 (event-start, event-end): Use posn-at-point to return a more
8443 informative posn.
8444 (posnp): New function.
8445 * mouse.el (popup-menu-normalize-position): Use it.
8446
8447 2012-08-10 Masatake YAMATO <yamato@redhat.com>
8448
8449 * mouse.el (popup-menu-normalize-position): New function.
8450 (popup-menu): Use `popup-menu-normalize-position' to normalize
8451 the form for POSITION argument.
8452
8453 * term/x-win.el (x-menu-bar-open):
8454 Use the value returend from (posn-at-point) as position
8455 passed to `popup-menu'.
8456
8457 2012-08-09 Jay Belanger <jay.p.belanger@gmail.com>
8458
8459 * calc/calccomp.el (math-compose-expr): Add extra argument
8460 indicating that parentheses should be put around products in
8461 denominators. Give multiplication precedence over division during
8462 composition.
8463
8464 2012-08-09 Chong Yidong <cyd@gnu.org>
8465
8466 * man.el (Man-switches, Man-sed-command, Man-awk-command)
8467 (Man-mode-hook, Man-cooked-hook, Man-untabify-command-args)
8468 (Man-untabify-command, manual-program): Convert to defcustom
8469 (Bug#10429).
8470
8471 * vc/add-log.el (change-log-mode): Bind comment-start to nil.
8472
8473 * descr-text.el (describe-char): Don't insert extra newlines
8474 (Bug#10127).
8475
8476 * vc/log-view.el (log-view-diff): Use use-region-p (Bug#10133).
8477 (log-view-diff-changeset, log-view-minor-wrap): Likewise.
8478
8479 * align.el (align-region): Delete temporary markers (Bug#10047).
8480 Plus some code cleanups.
8481
8482 2012-08-09 Fabián Ezequiel Gallina <fgallina@cuca>
8483
8484 * progmodes/python.el (python-pdbtrack-tracked-buffer)
8485 (python-pdbtrack-buffers-to-kill, python-shell-internal-buffer)
8486 (python-shell-internal-last-output): Use make-local-variable
8487 instead of make-variable-buffer-local.
8488
8489 2012-08-09 Fabián Ezequiel Gallina <fgallina@cuca>
8490
8491 * progmodes/python.el: Enhancements to forward-sexp.
8492 (python-nav-forward-sexp): Rename from
8493 python-nav-forward-sexp-function.
8494 (python-nav--forward-sexp, python-nav--backward-sexp):
8495 New functions.
8496
8497 2012-08-09 Jay Belanger <jay.p.belanger@gmail.com>
8498
8499 * calc/calc-menu.el (calc-modes-menu): Add entries for matrix
8500 modes and simplification modes.
8501
8502 2012-08-09 Stefan Monnier <monnier@iro.umontreal.ca>
8503
8504 * delsel.el (delete-selection-pre-hook): Don't propagate the
8505 file-supersession signals (bug#12161).
8506
8507 2012-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
8508
8509 * emacs-lisp/cl.el (cl-map-keymap-recursively, cl-map-intervals)
8510 (cl-map-extents): Add compatibility aliases (bug#12135).
8511
8512 2012-08-08 Michael Albinus <michael.albinus@gmx.de>
8513
8514 * net/tramp-sh.el (tramp-find-file-exists-command): Protect the
8515 tests by `ignore-error'.
8516 (tramp-find-shell): Open also a new shell, when cache is already
8517 set. Reported by Carsten Bormann <cabo@tzi.org>. (Bug#12148)
8518
8519 2012-08-08 Juri Linkov <juri@jurta.org>
8520
8521 * bookmark.el: Add `defaults' property to the bookmark record.
8522 (bookmark-current-buffer): Doc fix.
8523 (bookmark-make-record): Add `defaults' property with default values
8524 to the bookmark record.
8525 (bookmark-minibuffer-read-name-map): Remove key binding "\C-u"
8526 with `bookmark-insert-current-bookmark'.
8527 (bookmark-set): Get `defaults' property from the bookmark record
8528 and use it in `read-from-minibuffer'.
8529 (bookmark-insert-current-bookmark): Remove function.
8530
8531 * info.el (Info-bookmark-make-record): Add `defaults' property
8532 with values of canonical Info node name, the current Info file
8533 name and the current Info node name. (Bug#12107)
8534
8535 2012-08-08 Juri Linkov <juri@jurta.org>
8536
8537 * files.el (basic-save-buffer): Use `buffer-name' as the default
8538 of `read-file-name' when buffer is not visiting a file (bug#12128).
8539
8540 2012-08-08 Juri Linkov <juri@jurta.org>
8541
8542 * info.el (Info-isearch-search): Doc fix.
8543 (Info-search): Change search-failed message from "initial node" to
8544 "end of node" (bug#12078).
8545 (Info-isearch-search): Change `isearch-string-state' to
8546 `isearch--state-string'.
8547
8548 2012-08-08 Glenn Morris <rgm@gnu.org>
8549
8550 * language/persian.el: Remove file.
8551 * language/misc-lang.el: Move unique part of persian.el here.
8552 * loadup.el: Remove language/persian.
8553
8554 2012-08-08 Óscar Fuentes <ofv@wanadoo.es>
8555
8556 * vc/diff-mode.el (diff-remove-trailing-whitespace): New function.
8557
8558 2012-08-08 Fabián Ezequiel Gallina <fgallina@cuca>
8559
8560 * progmodes/python.el: Fix defsubst warning.
8561 (python-syntax-context) Rename from python-info-ppss-context.
8562 (python-syntax-context-type): Rename from
8563 python-info-ppss-context-type.
8564 (python-syntax-comment-or-string-p): Rename from
8565 python-info-ppss-comment-or-string-p.
8566
8567 2012-08-08 Jay Belanger <jay.p.belanger@gmail.com>
8568
8569 * calc/calc-misc.el (calc-record-why): Don't record a message twice.
8570
8571 2012-08-07 Andreas Schwab <schwab@linux-m68k.org>
8572
8573 * emacs-lisp/lisp-mode.el (eval-defun-1): Handle standard value of
8574 a defcustom that is quoted with backquote.
8575
8576 * calc/calc-prog.el (math-do-defmath): Use backquote forms.
8577 Fix handling of interactive spec when the body uses return.
8578 (math-do-arg-check, math-define-function-body): Use backquote forms.
8579 * calc/calc-ext.el (math-defcache): Likewise.
8580 * calc/calc-rewr.el (math-rwfail, math-rweval): Likewise.
8581 * allout.el (allout-new-exposure): Likewise.
8582 * calc/calcalg2.el (math-tracing-integral): Likewise.
8583 * info.el (Info-last-menu-item): Likewise.
8584 * emulation/vip.el (vip-loop): Likewise.
8585 * textmodes/artist.el (artist-funcall): Likewise.
8586 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle):
8587 Construct menu-item directly.
8588
8589 * progmodes/autoconf.el (font-lock-syntactic-keywords):
8590 Don't declare.
8591
8592 2012-08-07 Chong Yidong <cyd@gnu.org>
8593
8594 * simple.el (deactivate-mark): Preserve text properties when
8595 saving the primary selection (Bug#8384).
8596
8597 2012-08-07 Kevin Ryde <user42@zip.com.au>
8598
8599 * woman.el (woman0-if): Quietly treat ".if v" as false (Bug#12109).
8600 (woman-parse-numeric-value): On a bad .IP line, issue a warning
8601 and continue processing (Bug#12110).
8602
8603 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
8604
8605 * progmodes/cperl-mode.el (cperl-mode): Yet another fix for
8606 syntax-propertize-function (bug#10095).
8607
8608 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
8609
8610 * help-fns.el (help-fns--key-bindings, help-fns--signature)
8611 (help-fns--parent-mode, help-fns--obsolete): New funs, extracted from
8612 describe-function-1.
8613 (describe-function-1): Use them. Move compiler macro after sig.
8614 (help-fns--compiler-macro): Use function-get. Assume we're already in
8615 standard-output. Adjust layout to new call order.
8616
8617 * emacs-lisp/cl-macs.el (cl--sm-macroexpand): Fix handling of
8618 re-binding a symbol that has a symbol-macro (bug#12119).
8619
8620 2012-08-06 Mohsen BANAN <libre@mohsen.1.banan.byname.net>
8621
8622 * language/persian.el: New file. (Bug#11812)
8623 * loadup.el: Add language/persian.el.
8624
8625 2012-08-06 Chong Yidong <cyd@gnu.org>
8626
8627 * window.el (window--maybe-raise-frame): New function.
8628 (window--display-buffer): Split off from here.
8629 (display-buffer-reuse-window, display-buffer-pop-up-frame)
8630 (display-buffer-pop-up-window, display-buffer-use-some-window):
8631 Obey an inhibit-switch-frame action alist entry.
8632 (display-buffer): Update doc.
8633
8634 * replace.el (occur-after-change-function): Avoid losing focus by
8635 using the inhibit-switch-frame display parameter (Bug#12139).
8636
8637 2012-08-06 Fabián Ezequiel Gallina <fgallina@cuca>
8638
8639 Make internal shell process buffer names start with space.
8640 * progmodes/python.el (python-shell-make-comint): Add optional
8641 argument INTERNAL.
8642 (run-python-internal): Use it.
8643 (python-shell-internal-get-or-create-process): Check for new
8644 internal buffer names.
8645
8646 2012-08-06 Glenn Morris <rgm@gnu.org>
8647
8648 * eshell/esh-ext.el (eshell/addpath): Use dolist and mapconcat.
8649 Do less getting and setting of environment variables.
8650
8651 2012-08-05 Chong Yidong <cyd@gnu.org>
8652
8653 * proced.el (proced): Add substitution string to docstring to
8654 trigger autoloading of the proced library on C-h f (Bug#1768).
8655
8656 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
8657 Don't show defvars which have no second argument (Bug#8638).
8658
8659 * imenu.el (imenu-generic-expression): Move documentation here
8660 from imenu--generic-function.
8661 (imenu--generic-function): Refer to imenu-generic-expression.
8662
8663 2012-08-05 Vegard Øye <vegard_oye@hotmail.com> (tiny change)
8664
8665 * emulation/viper-init.el (viper-deflocalvar): Add docstring and
8666 indentation declaration.
8667 (viper-loop): Add indentation declaration (Bug#7025).
8668
8669 2012-08-05 Chong Yidong <cyd@gnu.org>
8670
8671 * help-fns.el (describe-variable): Add hyperlink for
8672 directory-local variables files. Improve buffer-local and
8673 permanent-local reporting; suggested by MON KEY (Bug#6644).
8674
8675 * help-mode.el (help-dir-local-var-def): New button type.
8676
8677 * files.el (kill-buffer-hook): Provide a defvar.
8678
8679 2012-08-05 Glenn Morris <rgm@gnu.org>
8680
8681 * eshell/esh-ext.el (eshell/addpath):
8682 Also update eshell-path-env. (Bug#12013)
8683
8684 2012-08-05 Chong Yidong <cyd@gnu.org>
8685
8686 * wdired.el (wdired-mode, wdired-change-to-wdired-mode): Doc fixes.
8687
8688 * fringe.el (fringe-styles): Add docstring.
8689 (fringe--check-mode): New function.
8690 (set-fringe-mode, set-fringe-style): Use it.
8691 (fringe-mode, set-fringe-style): Doc fixes (Bug#6480).
8692
8693 * files.el (set-auto-mode): Fix invalid setq call.
8694
8695 2012-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
8696
8697 * isearch.el: Misc simplification; use defstruct.
8698 (isearch-mode-map): Dense maps now work like sparse ones.
8699 (isearch--state): New defstruct.
8700 (isearch-string-state, isearch-message-state, isearch-point-state)
8701 (isearch-success-state, isearch-forward-state)
8702 (isearch-other-end-state, isearch-word-state, isearch-error-state)
8703 (isearch-wrapped-state, isearch-barrier-state)
8704 (isearch-case-fold-search-state, isearch-pop-fun-state): Remove,
8705 replaced by defstruct's accessors.
8706 (isearch--set-state): Rename from isearch-top-state and change
8707 calling convention.
8708 (isearch-push-state): Use new isearch--get-state.
8709 (isearch-toggle-word): Disable regexp when enabling word.
8710 (isearch-message-prefix): Remove unused arg _c-q-hack.
8711 (isearch-message-suffix): Remove unused arg _ellipsis.
8712
8713 2012-08-04 Andreas Schwab <schwab@linux-m68k.org>
8714
8715 * simple.el (list-processes--refresh): For a server use :host or
8716 :local as the address.
8717 (list-processes): Doc fix.
8718
8719 2012-08-04 Michal Nazarewicz <mina86@mina86.com>
8720
8721 * lisp/mpc.el: Support password in host argument.
8722 (mpc--proc-connect): Parse and use new password element.
8723 Set mpc-proc variable instead of returning process.
8724 (mpc-proc): Adjust accordingly.
8725
8726 2012-08-03 Eli Zaretskii <eliz@gnu.org>
8727
8728 * whitespace.el (whitespace-display-mappings): Use Unicode
8729 codepoints, instead of emacs-mule codepoints. See
8730 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-07/msg00366.html
8731 for the details.
8732
8733 * files.el (file-truename): Don't skip symlink-chasing part on
8734 windows-nt. Incorporate the resolution of 8+3 short aliases on
8735 Windows into the loop that recursively chases symlinks.
8736 Compare directory and its parent case-insensitively on MS-Windows and
8737 MS-DOS.
8738
8739 2012-08-03 Chong Yidong <cyd@gnu.org>
8740
8741 * menu-bar.el (menu-bar-tools-menu): Remove PCL-CVS.
8742
8743 * sort.el (sort-regexp-fields): Doc fix.
8744
8745 2012-08-03 Tassilo Horn <tsdh@gnu.org>
8746
8747 * textmodes/reftex.el (reftex-compile-variables): Make keyvals
8748 labels regex position point at the expected place.
8749
8750 2012-08-03 MON KEY <monkey@sandpframing.com>
8751
8752 * net/imap.el (imap-interactive-login, imap-authenticate)
8753 (imap-mailbox-lsub, imap-mailbox-list)
8754 (imap-mailbox-status-asynch, imap-mailbox-acl-delete)
8755 (imap-fetch, imap-message-flag-permanent-p, imap-envelope-from)
8756 (imap-parse-response): Doc fix.
8757
8758 2012-08-03 João Távora <joaotavora@gmail.com>
8759
8760 * textmodes/tex-mode.el (latex-forward-sexp): Terminate the loop
8761 if sexp scanning does not move point (Bug#5734).
8762
8763 2012-08-02 Tassilo Horn <tsdh@gnu.org>
8764
8765 * textmodes/reftex-vars.el (reftex-default-label-alist-entries):
8766 Add listings, minted, and ctable packages.
8767 (reftex-label-alist-builtin): Move listings, minted, and ctable
8768 entries before LaTeX.
8769 (reftex-label-alist): Docfix.
8770
8771 2012-08-02 Bastien Guerry <bzg@gnu.org>
8772
8773 * replace.el (occur): Fix docstring (bug#12122).
8774
8775 2012-08-02 Glenn Morris <rgm@gnu.org>
8776
8777 * emacs-lisp/authors.el (authors-renamed-files-alist): Add ms-w32.h.
8778
8779 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
8780
8781 Obsolete alias inactivate-current-input-method-function (Bug#10150).
8782 * international/mule-cmds.el: Create
8783 inactivate-current-input-method-function as an obsolete alias for
8784 deactivate-current-input-method-function. See Katsumi Yamaoka in
8785 <http://bugs.gnu.org/10150#46>.
8786
8787 2012-08-01 Jay Belanger <jay.p.belanger@gmail.com>
8788
8789 * calc/calc-mode.el (calc-set-simplify-mode): Use `cond' instead
8790 of nested `if's.
8791
8792 2012-08-01 Glenn Morris <rgm@gnu.org>
8793
8794 * progmodes/autoconf.el (autoconf-definition-regexp):
8795 Add AH_TEMPLATE, adjust submatch numbering.
8796 (autoconf-font-lock-keywords, autoconf-imenu-generic-expression)
8797 (autoconf-current-defun-function): Update for above change.
8798 (autoconf-current-defun-function): First skip to end of current word.
8799
8800 2012-08-01 Rupert Swarbrick <rswarbrick@gmail.com> (tiny change)
8801
8802 * calendar/cal-html.el (cal-html-insert-agenda-days):
8803 Fix typo. (Bug#12018)
8804
8805 2012-07-31 Fabián Ezequiel Gallina <fgallina@cuca>
8806
8807 Shell processes: enhancements to startup and CEDET compatibility.
8808 * progmodes/python.el (python-shell-send-setup-max-wait): Delete var.
8809 (python-shell-make-comint): accept-process-output at startup.
8810 (run-python-internal): Set inferior-python-mode-hook to nil.
8811 (python-shell-internal-get-or-create-process): call sit-for.
8812 (python-preoutput-result): Add obsolete alias.
8813 (python-shell-internal-send-string): Use it.
8814 (python-shell-send-setup-code): Remove call to
8815 accept-process-output.
8816
8817 2012-07-31 Andreas Schwab <schwab@linux-m68k.org>
8818
8819 * buff-menu.el (list-buffers-noselect): Use prefix-numeric-value.
8820 (Bug#12108)
8821
8822 2012-07-31 Jay Belanger <jay.p.belanger@gmail.com>
8823
8824 * calc-mode.el (calc-basic-simplification-mode): Rename from
8825 `calc-limited-simplification-mode'.
8826 (calc-alg-simplification-mode): New function.
8827 (calc-set-simplify-mode): Adjust message.
8828
8829 * calc.el (calc-set-mode-line): Adjust mode line display for
8830 basic simplification mode.
8831
8832 * calc-help.el (calc-m-prefix-help): Update help message.
8833
8834 * calc-ext.el (calc-init-extensions): Add bindings and autoloads
8835 for `calc-basic-simplify-mode' and `calc-alg-simplify-mode'.
8836
8837 2012-07-31 Bastien Guerry <bzg@gnu.org>
8838
8839 * man.el (man): Fix comment. (bug#12101)
8840
8841 2012-07-31 Martin Rudalics <rudalics@gmx.at>
8842
8843 * window.el (switch-to-prev-buffer, switch-to-next-buffer):
8844 Don't return a non-nil value when no suitable buffer was found.
8845
8846 2012-07-31 Fabián Ezequiel Gallina <fgallina@cuca>
8847
8848 * progmodes/python.el (run-python-internal): Disable font lock for
8849 internal shells.
8850
8851 2012-07-30 Stefan Merten <smerten@oekonux.de>
8852
8853 * textmodes/rst.el: Silence `checkdoc-ispell'.
8854 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
8855 (rst-official-version, rst-official-cvs-rev)
8856 (rst-package-emacs-version-alist): Update to upstream V1.3.1.
8857 (rst-mode-map): New key binding.
8858
8859 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
8860
8861 Update .PHONY listings in makefiles.
8862 * Makefile.in (.PHONY): Add all, doit, custom-deps, finder-data,
8863 autoloads, update-subdirs, updates, bzr-update, update-authors,
8864 compile-onefile, compile-calc, backup-compiled-files,
8865 compile-after-backup, compile-one-process, mh-autoloads,
8866 bootstrap-clean, distclean, maintainer-clean.
8867
8868 2012-07-29 Jay Belanger <jay.p.belanger@gmail.com>
8869
8870 * calc/calc.el (calc-simplify-mode): Make 'alg the default value.
8871 (calc-set-mode-line): Don't display "AlgSimp ".
8872
8873 * calc/calc-mode.el (calc-alg-simplify-mode): Remove function.
8874 (calc-lim-simplify-mode): New function.
8875 (calc-set-simplify-mode): Default to 'alg.
8876 (calc-default-simplify-mode): Make algebraic simplifications
8877 the default.
8878
8879 * calc/calc-ext.el (calc-init-extensions): Remove binding for
8880 `calc-alg-simplify-mode'. Add binding for `calc-lim-simplify-mode'.
8881
8882 * calc/calc-help.el (calc-m-prefix-help): Change messages to
8883 indicate new simplification modes.
8884
8885 * calc/README: Mention new default simplification mode.
8886
8887 * calc/calc.el (math-normalize-error): New variable.
8888 (math-normalize): Set `math-normalize-error' to t
8889 when there's an error.
8890
8891 * calc/calc-alg.el (math-simplify): Don't simplify when
8892 `math-normalize' returns an error.
8893
8894 2012-07-29 Eli Zaretskii <eliz@gnu.org>
8895
8896 * international/mule-cmds.el (set-locale-environment): Revert last
8897 change, since display-graphic-p returns nil when this function is
8898 called during startup. Instead...
8899
8900 * term/w32console.el (terminal-init-w32console): ...setup the
8901 keyboard and terminal encoding for TTY sessions here. (Bug#12082)
8902
8903 2012-07-29 Juri Linkov <juri@jurta.org>
8904
8905 * simple.el (goto-line): Don't display default line number in the
8906 prompt because it should be displayed by `read-number' (bug#9952).
8907 Add the current line number to the defaults of `goto-line' to
8908 allow its easier modification by users with `M-n' (bug#9201).
8909
8910 * subr.el (read-number): Support multiple default values like in
8911 other minibuffer reading functions. Replace `read' with
8912 `string-to-number' for consistency with `number-to-string'.
8913
8914 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
8915
8916 deactive->inactive, inactivate->deactivate spelling fixes (Bug#10150)
8917 * emulation/viper-init.el (viper-deactivate-input-method-action):
8918 Rename from viper-inactivate-input-method-action.
8919 (viper-deactivate-input-method):
8920 Rename from viper-inactivate-input-method.
8921 * follow.el (follow-inactive-menu): Rename from follow-deactive-menu.
8922 * international/mule-cmds.el (deactivate-input-method):
8923 Rename from inactivate-input-method.
8924 Also run input-method-deactivate-hook.
8925 (deactivate-current-input-method-function):
8926 Rename from inactivate-current-input-method-function.
8927 (input-method-deactivate-hook): New hook.
8928 (input-method-inactivate-hook): Mark obsolete.
8929 (inactivate-input-method): Mark obsolete.
8930
8931 * international/quail.el (quail-activate):
8932 Also run quail-deactivate-hook.
8933 (quail-deactivate): Rename from quail-inactivate.
8934 * international/robin.el (robin-activate):
8935 Also run robin-deactivate-hook.
8936 (robin-deactivate): Rename from robin-inactivate.
8937
8938 2012-07-29 Chong Yidong <cyd@gnu.org>
8939
8940 * simple.el (indicate-copied-region): New function.
8941 (kill-ring-save): Split off from here.
8942
8943 * rect.el (copy-rectangle-as-kill): Call indicate-copied-region.
8944 (kill-rectangle): Set deactivate-mark to t on read-only error.
8945
8946 * register.el (copy-to-register, copy-rectangle-to-register):
8947 Deactivate the mark, and use indicate-copied-region (Bug#10056).
8948 (append-to-register, prepend-to-register): Call indicate-copied-region.
8949
8950 2012-07-29 Juri Linkov <juri@jurta.org>
8951
8952 * simple.el (async-shell-command-buffer): New defcustom.
8953 (shell-command): Use it. (Bug#4719)
8954
8955 2012-07-28 Eli Zaretskii <eliz@gnu.org>
8956
8957 * international/mule-cmds.el (set-locale-environment): In a
8958 console session on MS-Windows, set up keyboard and terminal
8959 encoding from the OEM codepage, not the ANSI codepage.
8960 (Bug#12055)
8961
8962 2012-07-28 Chong Yidong <cyd@gnu.org>
8963
8964 * progmodes/gdb-mi.el (gdb-place-breakpoints): Fix the call to
8965 gdb-get-location.
8966
8967 2012-07-28 Leo Liu <sdl.web@gmail.com>
8968
8969 * progmodes/cc-menus.el (cc-imenu-objc-function): Avoid leaving nil in
8970 the alist (bug#12029).
8971
8972 2012-07-28 Eli Zaretskii <eliz@gnu.org>
8973
8974 * makefile.w32-in (custom-deps, finder-data, updates, compile)
8975 (compile-always, compile-first)
8976 ($(lisp)/calendar/cal-loaddefs.el)
8977 ($(lisp)/calendar/diary-loaddefs.el)
8978 ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
8979 ($(lisp)/net/tramp-loaddefs.el, bootstrap)
8980 ($(lisp)/progmodes/cc-mode.elc): Depend on $(lisp)subdirs.el,
8981 instead of on update-subdirs.
8982 (bootstrap-clean): Delete $(lisp)/subdirs.el.
8983
8984 2012-07-28 Chong Yidong <cyd@gnu.org>
8985
8986 * vc/vc.el (vc-root-diff, vc-print-root-log): Prompt for a
8987 directory if vc-deduce-backend returns nil (Bug#7350).
8988
8989 * simple.el (delete-trailing-lines): New option.
8990 (delete-trailing-whitespace): Obey it (Bug#11879).
8991
8992 2012-07-28 David Engster <deng@randomsample.de>
8993
8994 * xml.el (xml-node-name, xml-parse-file, xml-parse-region):
8995 Explanation of new 'symbol-qnames feature in doc-strings.
8996 (xml-maybe-do-ns): Return expanded names as plain symbols if
8997 'symbol-qnames was provided in XML-NS argument (Bug#11916).
8998 (xml-parse-tag-1): Deal with new definition of PARSE-NS argument.
8999
9000 2012-07-27 Fabián Ezequiel Gallina <fgallina@cuca>
9001
9002 Consistent completion in inferior python with emacs -nw.
9003 * progmodes/python.el (inferior-python-mode): replace "<tab>"
9004 binding in inferior-python-mode-map with "\t".
9005 (python-shell-completion-complete-at-point)
9006 (python-completion-complete-at-point): Remove interactive spec.
9007
9008 2012-07-27 Jay Belanger <jay.p.belanger@gmail.com>
9009
9010 * calc/calccomp.el (math-compose-expr): Undo previous change.
9011
9012 2012-07-27 Fabián Ezequiel Gallina <fgallina@cuca>
9013
9014 * progmodes/python.el (python-mode-map): Add keybinding for
9015 run-python.
9016 (python-shell-make-comint): Fix pop-to-buffer call.
9017 (run-python): Autoload. New arg SHOW.
9018 (python-shell-get-or-create-process): Do not pop python process
9019 buffer.
9020
9021 2012-07-27 Michael Albinus <michael.albinus@gmx.de>
9022
9023 * notifications.el (notifications-on-action-signal)
9024 (notifications-on-closed-signal): Use also the bus address for the map.
9025 (notifications-notify, notifications-close-notification)
9026 (notifications-get-capabilities): Add optional argument BUS.
9027
9028 2012-07-27 Tassilo Horn <tsdh@gnu.org>
9029
9030 * textmodes/reftex-vars.el (reftex-label-alist-builtin):
9031 Add support for the lstlisting and minted environments, and for the
9032 ctable macro.
9033 * textmodes/reftex.el (reftex-compile-variables): Also recognize
9034 labels written in keyvals syntax.
9035
9036 2012-07-27 Jay Belanger <jay.p.belanger@gmail.com>
9037
9038 * calc/calccomp.el (math-compose-expr): Use parentheses when
9039 there is a product in the denominator of a fraction.
9040
9041 2012-07-26 Eli Zaretskii <eliz@gnu.org>
9042
9043 * makefile.w32-in ($(lisp)/calendar/cal-loaddefs.el)
9044 ($(lisp)/calendar/diary-loaddefs.el)
9045 ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
9046 ($(lisp)/net/tramp-loaddefs.el): Depend on update-subdirs.
9047 Fixes failures in parallel bootstrap because subdirs.el is being
9048 rewritten while the autoload files are built at the same time,
9049 which needs to load subdirs.el.
9050
9051 2012-07-26 Martin Rudalics <rudalics@gmx.at>
9052
9053 * mouse.el (popup-menu): Fix doc-string and re-indent code.
9054 (mouse-drag-line): Don't exit tracking when a switch-frame or
9055 switch-window event occurs (Bug#12006).
9056
9057 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
9058
9059 * mouse.el (popup-menu): Fix last change.
9060
9061 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
9062
9063 Autoload from Lisp with more care. Follow aliases when looking for
9064 function properties.
9065 * subr.el (autoloadp): New function.
9066 (symbol-file): Use it.
9067 (function-get): New function.
9068 * emacs-lisp/macroexp.el (macroexp--expand-all): Use function-get and
9069 autoload-do-load.
9070 * emacs-lisp/lisp-mode.el (lisp-font-lock-syntactic-face-function)
9071 (lisp-indent-function):
9072 * emacs-lisp/gv.el (gv-get):
9073 * emacs-lisp/edebug.el (get-edebug-spec, edebug-basic-spec):
9074 * emacs-lisp/byte-opt.el (byte-optimize-form):
9075 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
9076 * emacs-lisp/autoload.el (make-autoload, autoload-print-form):
9077 Use function-get.
9078 * emacs-lisp/cl.el: Don't propagate function properties any more.
9079
9080 * speedbar.el (speedbar-add-localized-speedbar-support):
9081 * emacs-lisp/disass.el (disassemble-internal):
9082 * desktop.el (desktop-load-file):
9083 * help-fns.el (help-function-arglist, find-lisp-object-file-name)
9084 (describe-function-1):
9085 * emacs-lisp/find-func.el (find-function-noselect):
9086 * emacs-lisp/elp.el (elp-instrument-function):
9087 * emacs-lisp/advice.el (ad-has-proper-definition):
9088 * apropos.el (apropos-safe-documentation, apropos-macrop):
9089 * emacs-lisp/debug.el (debug-on-entry):
9090 * emacs-lisp/cl-macs.el (cl-compiler-macroexpand):
9091 * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
9092 * calc/calc.el (name): Use autoloadp & autoload-do-load.
9093
9094 2012-07-25 Alp Aker <alp.tekin.aker@gmail.com>
9095
9096 * international/mule-cmds.el (ucs-insert): Mark it as an obsolete
9097 function, not an obsolete variable (Bug#12046).
9098
9099 2012-07-25 Andreas Schwab <schwab@linux-m68k.org>
9100
9101 * faces.el (face-spec-reset-face): Fix last change. (Bug#12042)
9102
9103 2012-07-25 Christopher Schmidt <christopher@ch.ristopher.com>
9104
9105 * emacs-lisp/pp.el (pp-display-expression): Select old selected
9106 window only if it is still live (Bug#12034).
9107
9108 2012-07-25 Martin Rudalics <rudalics@gmx.at>
9109
9110 * subr.el (redirect-frame-focus): Add advertised calling
9111 convention (Bug#12030).
9112
9113 2012-07-25 Paul Eggert <eggert@cs.ucla.edu>
9114
9115 Prefer typical American spelling for "acknowledgment".
9116 * vc/add-log.el (change-log-acknowledgment): Rename from
9117 change-log-acknowledgement, with an alias for the old name.
9118
9119 2012-07-25 Jay Belanger <jay.p.belanger@gmail.com>
9120
9121 * calc-alg.el (math-simplify-divide): Don't cross multiply
9122 in an equation when the lhs is a variable.
9123
9124 2012-07-24 Julien Danjou <julien@danjou.info>
9125
9126 * net/netrc.el (netrc-find-service-number, netrc-store-data):
9127 Remove, unused.
9128
9129 2012-07-23 Eli Zaretskii <eliz@gnu.org>
9130
9131 * startup.el (command-line): Don't display an empty user name in
9132 the error message about non-existent home directory, when
9133 init-file-user was set to an empty string. See
9134 http://lists.gnu.org/archive/html/bug-gnu-emacs/2012-07/msg00835.html
9135 for the details and context.
9136
9137 2012-07-22 Vincent Belaïche <vincentb1@users.sourceforge.net>
9138
9139 * ses.el (ses-cell-formula-aset): New macro.
9140 (ses-cell-references-aset): New macro.
9141 (ses-cell-p): New function.
9142 (ses-rename-cell): Do no longer rely on complex operations like
9143 ses-cell-set-formula or ses-set-cell to change the cell and handle
9144 the undo at the same time, but rather use lower level new macros
9145 `ses-cell-formula-aset' and `ses-cell-references-aset' and handle
9146 the undo directly. Refresh the mode line.
9147
9148 2012-07-21 Leo Liu <sdl.web@gmail.com>
9149
9150 * progmodes/cc-cmds.el (c-defun-name):
9151 Use match-string-no-properties instead for consistency.
9152
9153 2012-07-20 Leo Liu <sdl.web@gmail.com>
9154
9155 * progmodes/cc-cmds.el (c-defun-name): Handle objc selectors properly.
9156 (Bug#7879)
9157
9158 * progmodes/cc-langs.el (c-symbol-start): Include char _ (bug#11986).
9159
9160 2012-07-20 Stefan Monnier <monnier@iro.umontreal.ca>
9161
9162 * userlock.el, emacs-lisp/map-ynp.el: Declare part of `emacs' package.
9163 * progmodes/bug-reference.el, misearch.el: Provide themselves
9164 (bug#11915).
9165
9166 * progmodes/cperl-mode.el (cperl-unwind-to-safe): Don't inf-loop at end
9167 of narrowed buffer (bug#11966).
9168
9169 2012-07-20 Vincent Belaïche <vincentb1@users.sourceforge.net>
9170
9171 * ses.el (ses-rename-cell): Set new name also in reference list of
9172 cells of which the renamed cell depends.
9173
9174 2012-07-20 Masatake YAMATO <yamato@redhat.com>
9175
9176 * term/x-win.el (x-menu-bar-open): Use `frame-parameter'
9177 to check whether menu-bar is shown or not. If not shown,
9178 show the menu-bar as a popup menu instead of using tmm.
9179 * mouse.el (popup-menu): Accept `point' as `position' argument.
9180
9181 2012-07-20 Dmitry Gutov <dgutov@yandex.ru>
9182
9183 * progmodes/ruby-mode.el (ruby-parse-partial): No error when end
9184 up inside string symbol literal (bug#11923).
9185
9186 2012-07-20 Eli Zaretskii <eliz@gnu.org>
9187
9188 * startup.el (fancy-startup-text): Read the whole tutorial, not
9189 just its first 256 bytes. Prevents gibberish in display of the
9190 tutorial title.
9191
9192 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
9193
9194 Drop idle buffer compaction due to an absence of the
9195 proved efficiency.
9196 * compact.el: Remove.
9197
9198 2012-07-19 Sam Steingold <sds@gnu.org>
9199
9200 * vc/vc-dispatcher.el (vc-compilation-mode): Add, based on
9201 vc-bzr-pull & vc-bzr-merge-branch.
9202 * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch): Use it.
9203 (vc-bzr-error-regexp-alist): Rename from vc-bzr-error-regex-alist
9204 for consistency with compilation-error-regexp-alist.
9205 * vc/vc-git.el (vc-git-error-regexp-alist): Add.
9206 (vc-git-pull, vc-git-merge-branch): Call vc-compilation-mode.
9207 * vc/vc-hg.el (vc-hg-error-regexp-alist): Add.
9208 (vc-hg-pull, vc-hg-merge-branch): Call vc-compilation-mode.
9209
9210 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
9211
9212 * emacs-lisp/chart.el: Use lexical-binding.
9213 (chart-emacs-storage): Don't hardcode the list of entries.
9214
9215 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
9216
9217 Next round of tweaks caused by Fgarbage_collect changes.
9218 * emacs-lisp/chart.el (chart-emacs-storage): Adjust again.
9219
9220 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
9221
9222 Compact buffers when idle.
9223 * compact.el: New file.
9224
9225 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
9226
9227 * subr.el (eventp): Presume that if it looks vaguely like an event,
9228 it's an event (bug#10190).
9229
9230 2012-07-19 Fabián Ezequiel Gallina <fgallina@cuca>
9231
9232 Enhancements to ppss related code (thanks Stefan).
9233 * progmodes/python.el (python-indent-context)
9234 (python-indent-calculate-indentation, python-indent-dedent-line)
9235 (python-indent-electric-colon, python-nav-forward-block)
9236 (python-mode-abbrev-table)
9237 (python-info-assignment-continuation-line-p): Simplify checks
9238 for ppss context.
9239 (python-info-continuation-line-p): Cleanup.
9240 (python-info-ppss-context): Do not catch 'quote.
9241 (python-info-ppss-context-type)
9242 (python-info-ppss-comment-or-string-p): Simplify.
9243
9244 2012-07-18 Fabián Ezequiel Gallina <fgallina@cuca>
9245
9246 * progmodes/python.el: Enhancements to eldoc support.
9247 (python-info-current-symbol): New function.
9248 (python-eldoc-at-point): Use python-info-current-symbol.
9249 (python-info-current-defun): Fix cornercase on first defun scan.
9250 (python-eldoc--get-doc-at-point): Use python-info-current-symbol
9251 and signal error when no inferior python process is available.
9252
9253 2012-07-18 Dmitry Gutov <dgutov@yandex.ru>
9254
9255 * vc/vc-git.el (vc-git-state): Don't call `vc-git-registered',
9256 assume it's always t.
9257 (vc-git-registered): Remove caching, the function is only called
9258 once.
9259 (vc-git-branches): Use `vc-git--call' instead of `call-process'.
9260
9261 2012-07-18 Chong Yidong <cyd@gnu.org>
9262
9263 * subr.el (last-input-char, last-command-char): Remove (Bug#9195).
9264
9265 * simple.el (count-words): Report on narrowing (Bug#9959).
9266
9267 * bindings.el: Bind M-= to count-words.
9268
9269 * faces.el (face-spec-reset-face): Handle reverse video (Bug#4238).
9270
9271 2012-07-18 Masatake YAMATO <yamato@redhat.com>
9272
9273 * progmodes/sh-script.el (sh-imenu-generic-expression):
9274 Capture a function with `function' keyword and without parentheses
9275 like "function FOO" (bug#11856).
9276
9277 2012-07-18 Tassilo Horn <tassilo@member.fsf.org>
9278
9279 * window.el (split-window-sensibly): Make WINDOW argument
9280 optional.
9281
9282 2012-07-18 Chong Yidong <cyd@gnu.org>
9283
9284 * subr.el (keyboard-translate): Doc fix (Bug#7261).
9285
9286 * isearch.el (isearch-mode-map): Handle C-x 8 key translations,
9287 and make C-x 8 RET exit isearch (Bug#11439).
9288
9289 * international/iso-transl.el: Move isearch-mode-map key
9290 definitions to isearch.el.
9291
9292 2012-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
9293
9294 * emacs-lisp/eieio.el: Adapt further to gv.el (bug#11970).
9295 (eieio-defclass): Use gv-define-setter when possible.
9296
9297 2012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
9298
9299 Reflect recent changes in Fgarbage_collect.
9300 * emacs-lisp/chart.el (chart-emacs-storage): Change to
9301 reflect new format of data returned by Fgarbage_collect.
9302
9303 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
9304
9305 New utility functions + python-info-ppss-context fix (Bug#11910).
9306 * progmodes/python.el (python-info-beginning-of-block-statement-p)
9307 (python-info-ppss-comment-or-string-p): New functions.
9308 (python-info-ppss-context): Small fix for string check.
9309
9310 2012-07-17 Juri Linkov <juri@jurta.org>
9311
9312 * dired-aux.el (dired-do-async-shell-command): Doc fix.
9313 (dired-do-async-shell-command): Don't add `*' at the end of the
9314 command (Bug#11815).
9315 (dired-do-shell-command): Doc fix.
9316 (dired-shell-stuff-it): Strip the trailing "&" and ";" if any.
9317 Join the individual commands using either "&" or ";" as the
9318 separator depending on the values of these trailing characters.
9319 At the end re-add the trailing "&". (Bug#10598)
9320
9321 * simple.el (async-shell-command): Sync the interactive spec with
9322 `shell-command'. Doc fix.
9323 (shell-command): Doc fix.
9324
9325 2012-07-17 Juri Linkov <juri@jurta.org>
9326
9327 * descr-text.el (describe-char): Fix format args. (Bug#10129)
9328
9329 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
9330
9331 Final renames and doc fixes for movement commands (bug#11899).
9332 * progmodes/python.el (python-nav-beginning-of-statement):
9333 Rename from python-nav-statement-start.
9334 (python-nav-end-of-statement): Rename from
9335 python-nav-statement-end.
9336 (python-nav-beginning-of-block): Rename from
9337 python-nav-block-start.
9338 (python-nav-end-of-block): Rename from python-nav-block-end.
9339
9340 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
9341
9342 * progmodes/python.el (python-shell-send-string-no-output):
9343 Allow accept-process-output to quit, keeping shell process ready for
9344 future interactions (Bug#11868).
9345
9346 2012-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
9347
9348 * emacs-lisp/cl-macs.el (cl-progv): Use a properly prefixed var name.
9349
9350 * emacs-lisp/elint.el (elint-find-args-in-code):
9351 Use help-function-arglist, so as to handle lexical byte-code.
9352
9353 * progmodes/sh-script.el (sh-syntax-propertize-function): Fix last
9354 change (bug#11826).
9355
9356 2012-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
9357
9358 * progmodes/cc-engine.el (c-forward-sws, c-backward-sws):
9359 Avoid spuriously marking the buffer as modified because of c-is-sws.
9360
9361 * progmodes/sh-script.el (sh-syntax-propertize-function): Mark "${#VAR"
9362 as not-a-comment (bug#11946).
9363
9364 * emacs-lisp/macroexp.el (macroexp-let2): Use more informative names
9365 for uninterned vars.
9366
9367 * xt-mouse.el (xterm-mouse-translate-1, xterm-mouse-event-read):
9368 Use read-event since we don't really want to read chars but bytes.
9369
9370 * textmodes/tex-mode.el (tex-font-lock-keywords-1): Highlight not only
9371 $$..$$ but also $..$ using regexps (bug#11953).
9372 Use tex-verbatim for \url and \path.
9373 (tex-font-lock-keywords): Define as defconst like the others.
9374 (tex-common-initialization): Don't use font-lock-syntax-table any more.
9375
9376 2012-07-16 René Kyllingstad <Rene@Kyllingstad.com> (tiny change)
9377
9378 * international/mule-cmds.el (ucs-insert): Make it an obsolete
9379 alias for insert-char.
9380
9381 2012-07-16 Fabián Ezequiel Gallina <fgallina@cuca>
9382
9383 * progmodes/python.el: Simplified imenu implementation.
9384 (python-nav-jump-to-defun): Remove command.
9385 (python-mode-map): Use `imenu' instead.
9386 (python-nav-list-defun-positions-cache)
9387 (python-imenu-include-defun-type, python-imenu-make-tree)
9388 (python-imenu-subtree-root-label, python-imenu-index-alist):
9389 Remove vars.
9390 (python-nav-list-defun-positions, python-nav-read-defun)
9391 (python-imenu-tree-assoc, python-imenu-make-element-tree)
9392 (python-imenu-make-tree, python-imenu-create-index):
9393 Remove functions.
9394 (python-mode): Update to interact with imenu by setting
9395 `imenu-extract-index-name-function' only.
9396
9397 2012-07-16 Fabián Ezequiel Gallina <fgallina@cuca>
9398
9399 * progmodes/python.el: Enhancements to navigation commands.
9400 (python-nav-backward-sentence)
9401 (python-nav-forward-sentence): Remove.
9402 (python-nav-backward-statement, python-nav-forward-statement)
9403 (python-nav-statement-start, python-nav-statement-end)
9404 (python-nav-backward-block, python-nav-forward-block)
9405 (python-nav-block-start, python-nav-block-end)
9406 (python-nav-forward-sexp-function)
9407 (python-info-current-line-comment-p)
9408 (python-info-current-line-empty-p): New functions.
9409 (python-indent-context): Use `python-nav-statement-start'.
9410
9411 2012-07-16 Michael Albinus <michael.albinus@gmx.de>
9412
9413 * eshell/em-ls.el (eshell/ls): Use `apply'.
9414
9415 * eshell/em-unix.el (eshell/su, eshell/sudo): Apply Tramp's ad-hoc
9416 multi-hops, instead of Tramp internals.
9417
9418 * vc/ediff.el (ediff-directories): Add trailing space to prompts.
9419
9420 * vc/ediff-diff.el (ediff-same-file-contents): Handle the case,
9421 when F1 and F2 are located on different hosts.
9422
9423 2012-07-14 Chong Yidong <cyd@gnu.org>
9424
9425 * xt-mouse.el: Implement extended mouse coordinates (Bug#10642).
9426 (xterm-mouse-translate): Move code into xterm-mouse-translate-1.
9427 (xterm-mouse-translate-extended, xterm-mouse-translate-1)
9428 (xterm-mouse--read-event-sequence-1000)
9429 (xterm-mouse--read-event-sequence-1006): New functions. For old
9430 mouse protocol, handle M-mouse-X events correctly.
9431 (xterm-mouse-event): New arg specifying mouse protocol.
9432 (turn-on-xterm-mouse-tracking-on-terminal)
9433 (turn-off-xterm-mouse-tracking-on-terminal): Send DEC 1006
9434 sequence to toggle extended coordinates on newer XTerms.
9435 This appears to be harmless on terminals which do not support this.
9436
9437 2012-07-14 Leo Liu <sdl.web@gmail.com>
9438
9439 Add fringe bitmap indicators for flymake. (Bug#11253)
9440 * progmodes/flymake.el (flymake-highlight-line): Use fringe bitmaps.
9441 (flymake-make-overlay): New arg BITMAP.
9442 (flymake-error-bitmap, flymake-warning-bitmap)
9443 (flymake-fringe-indicator-position): New user variables.
9444
9445 * fringe.el: New bitmap exclamation-mark.
9446
9447 2012-07-14 Jan Djärv <jan.h.d@swipnet.se>
9448
9449 * progmodes/cc-cmds.el (c-defun-name): Recognize Objective-C methods
9450 also (Bug#7879).
9451
9452 2012-07-14 Chong Yidong <cyd@gnu.org>
9453
9454 * electric.el (electric-pair-post-self-insert-function): Fix pair
9455 insertion in empty-region case (Bug#11520).
9456
9457 2012-07-14 Chong Yidong <cyd@gnu.org>
9458
9459 * bindings.el: Consolidate ctl-x-r-map bindings.
9460 Bind copy-rectangle-as-kill to C-x r w.
9461
9462 * rect.el, register.el: Move bindings to bindings.el.
9463
9464 2012-07-14 Reuben Thomas <rrt@sc3d.org>
9465
9466 * rect.el (copy-rectangle-as-kill): New command (Bug#739).
9467
9468 2012-07-13 Andreas Schwab <schwab@linux-m68k.org>
9469
9470 * emacs-lisp/cl.el (labels): Remove spurious quote. (Bug#11938)
9471
9472 2012-07-13 Juanma Barranquero <lekktu@gmail.com>
9473
9474 * bindings.el (top): Use `mapc' instead of `mapcar'.
9475
9476 * loadup.el (top): Remove bogus `if' choice (brought by 2008-06-21T01:38:39Z!monnier@iro.umontreal.ca).
9477
9478 2012-07-13 Michael Albinus <michael.albinus@gmx.de>
9479
9480 * progmodes/sql.el (sql-comint): Suppress the check for program on
9481 remote hosts. Reported by Francis Devereux <francis@devrx.org>.
9482 (Bug#11908)
9483
9484 2012-07-13 Chong Yidong <cyd@gnu.org>
9485
9486 * bindings.el: Assign a non-nil permanent-local property to
9487 per-buffer variables which lack a default value (Bug#11930).
9488
9489 * help-fns.el (describe-variable): In the "automatically becomes
9490 local" notice, take note of permanent-local variables.
9491
9492 2012-07-13 Chong Yidong <cyd@gnu.org>
9493
9494 * files.el (toggle-read-only): Doc fix and code cleanup. New arg
9495 to allow printing the message when called from Lisp.
9496
9497 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
9498 Remove toggle-read-only.
9499
9500 * bs.el (bs-toggle-readonly):
9501 * buff-menu.el (Buffer-menu-toggle-read-only):
9502 Remove with-no-warnings around toggle-read-only.
9503
9504 * ffap.el (ffap--toggle-read-only): Accept a list of buffers.
9505 Remove with-no-warnings around toggle-read-only.
9506 (ffap-read-only, ffap-read-only-other-window)
9507 (ffap-read-only-other-frame): Callers changed.
9508
9509 * help-mode.el: Don't require view package.
9510 (help-mode-finish): Set buffer-read-only instead of calling
9511 toggle-read-only.
9512
9513 * bindings.el (mode-line-toggle-read-only):
9514 * dired.el (dired-toggle-read-only):
9515 * ibuffer.el (ibuffer-do-toggle-read-only): Call toggle-read-only
9516 with non-nil second arg.
9517
9518 * emacs-lisp/eieio-custom.el (eieio-customize-object):
9519 * vc/ediff.el (ediff-set-read-only-in-buf-A): Set buffer-read-only
9520 directly.
9521
9522 2012-07-12 Eli Zaretskii <eliz@gnu.org>
9523
9524 * emacs-lisp/bytecomp.el (byte-recompile-directory): Use cl-incf,
9525 not incf.
9526
9527 2012-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
9528
9529 More CL cleanups and reduction of use of cl.el.
9530 * woman.el, winner.el, vc/vc-rcs.el, vc/vc-hooks.el, vc/vc-hg.el:
9531 * vc/vc-git.el, vc/vc-dir.el, vc/vc-bzr.el, vc/vc-annotate.el:
9532 * textmodes/tex-mode.el, textmodes/sgml-mode.el, tar-mode.el:
9533 * strokes.el, ses.el, server.el, progmodes/js.el, progmodes/gdb-mi.el:
9534 * progmodes/flymake.el, progmodes/ebrowse.el, progmodes/compile.el:
9535 * play/tetris.el, play/snake.el, play/pong.el, play/landmark.el:
9536 * play/hanoi.el, play/decipher.el, play/5x5.el, nxml/nxml-mode.el:
9537 * net/secrets.el, net/quickurl.el, midnight.el, mail/footnote.el:
9538 * image-dired.el, ibuffer.el, ibuf-macs.el, ibuf-ext.el, hexl.el:
9539 * eshell/eshell.el, eshell/esh-io.el, eshell/esh-ext.el:
9540 * eshell/esh-cmd.el, eshell/em-ls.el, eshell/em-hist.el:
9541 * eshell/em-cmpl.el, eshell/em-banner.el:
9542 * calendar/parse-time.el: Use cl-lib.
9543 * wid-browse.el, wdired.el, vc/vc.el, vc/vc-mtn.el, vc/vc-cvs.el:
9544 * vc/vc-arch.el, tree-widget.el, textmodes/texinfo.el:
9545 * textmodes/refill.el, textmodes/css-mode.el, term/tvi970.el:
9546 * term/ns-win.el, term.el, shell.el, ps-samp.el:
9547 * progmodes/perl-mode.el, progmodes/pascal.el, progmodes/gud.el:
9548 * progmodes/glasses.el, progmodes/etags.el, progmodes/cwarn.el:
9549 * play/gamegrid.el, play/bubbles.el, novice.el, notifications.el:
9550 * net/zeroconf.el, net/xesam.el, net/snmp-mode.el, net/mairix.el:
9551 * net/ldap.el, net/eudc.el, net/browse-url.el, man.el:
9552 * mail/mailheader.el, mail/feedmail.el: Don't use CL.
9553 * ibuf-ext.el (ibuffer-mark-old-buffers): Use float-time.
9554 * eshell/esh-opt.el (eshell-eval-using-options): Quote code with
9555 `lambda' rather than with `quote'.
9556 (eshell-do-opt): Adjust accordingly.
9557 (eshell-process-option): Simplify.
9558 * eshell/esh-var.el:
9559 * eshell/em-script.el: Require `esh-opt' for eshell-eval-using-options.
9560 * emacs-lisp/pcase.el (pcase--dontcare-upats, pcase--let*)
9561 (pcase--expand, pcase--u1): Rename pcase's internal `dontcare' pattern
9562 to `pcase--dontcare'.
9563 * emacs-lisp/cl.el (labels): Mark obsolete.
9564 (cl--letf, letf): Move to cl-lib.
9565 (cl--letf*, letf*): Remove.
9566 * emacs-lisp/cl-lib.el (cl-nth-value): Use defalias.
9567 * emacs-lisp/cl-macs.el (cl-dolist, cl-dotimes): Add indent rule.
9568 (cl-progv): Rewrite.
9569 (cl--letf, cl-letf): Move from cl.el.
9570 (cl-letf*): New macro.
9571 * emacs-lisp/cl-extra.el (cl--progv-before, cl--progv-after): Remove.
9572
9573 2012-07-11 Michael Albinus <michael.albinus@gmx.de>
9574
9575 * net/ange-ftp.el (ange-ftp-cf1): Update the files cache.
9576
9577 2012-07-11 Chong Yidong <cyd@gnu.org>
9578
9579 * vc/log-edit.el (log-edit-vc-backend): New variable.
9580 (log-edit): Doc fix.
9581
9582 * vc/vc-dispatcher.el (vc-log-edit): New args. Use PARAMS
9583 argument of log-edit to set up all local variables.
9584 (vc-start-logentry): New optional arg specifying VC backend.
9585
9586 * vc/vc.el (vc-checkin): Use it.
9587 (vc-deduce-fileset): Handle Log Edit buffers.
9588 (vc-diff): Make first argument optional too.
9589
9590 * vc/log-view.el (log-view-vc-fileset, log-view-vc-backend): Doc fix.
9591
9592 2012-07-10 Michael Albinus <michael.albinus@gmx.de>
9593
9594 * eshell/esh-ext.el (eshell-remote-command): Remove remote part of
9595 command, just in case. The function is not needed anymore.
9596 (eshell-external-command): Do not call `eshell-remote-command'.
9597
9598 2012-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
9599
9600 Reduce use of (require 'cl).
9601 * vc/smerge-mode.el, vc/pcvs.el, vc/pcvs-util.el, vc/pcvs-info.el:
9602 * vc/diff-mode.el, vc/cvs-status.el, uniquify.el, scroll-bar.el:
9603 * register.el, progmodes/sh-script.el, net/gnutls.el, net/dbus.el:
9604 * msb.el, mpc.el, minibuffer.el, international/ucs-normalize.el:
9605 * international/quail.el, info-xref.el, imenu.el, image-mode.el:
9606 * font-lock.el, filesets.el, edmacro.el, doc-view.el, bookmark.el:
9607 * battery.el, avoid.el, abbrev.el: Use cl-lib.
9608 * vc/pcvs-parse.el, vc/pcvs-defs.el, vc/log-view.el, vc/log-edit.el:
9609 * vc/diff.el, simple.el, pcomplete.el, lpr.el, comint.el, loadhist.el:
9610 * jit-lock.el, international/iso-ascii.el, info.el, frame.el, bs.el:
9611 * emulation/crisp.el, electric.el, dired.el, cus-dep.el, composite.el:
9612 * calculator.el, autorevert.el, apropos.el: Don't require CL.
9613 * emacs-lisp/bytecomp.el (byte-recompile-directory, display-call-tree)
9614 (byte-compile-unfold-bcf, byte-compile-check-variable):
9615 * emacs-lisp/byte-opt.el (byte-compile-trueconstp)
9616 (byte-compile-nilconstp):
9617 * emacs-lisp/autoload.el (make-autoload): Use pcase.
9618 * face-remap.el (text-scale-adjust): Simplify pcase patterns.
9619
9620 * emacs-lisp/gv.el (cond): Make it a valid place.
9621 (if): Simplify slightly.
9622
9623 * emacs-lisp/pcase.el (pcase): Accept self-quoting exps as "upatterns".
9624 (pcase--self-quoting-p): New function.
9625 (pcase--u1): Use it.
9626
9627 2012-07-10 Glenn Morris <rgm@gnu.org>
9628
9629 * emacs-lisp/authors.el (authors-fixed-entries):
9630 (authors-renamed-files-alist): Update for configure.in -> configure.ac.
9631
9632 2012-07-09 Paul Eggert <eggert@cs.ucla.edu>
9633
9634 Rename configure.in to configure.ac (Bug#11603).
9635 * emacs-lisp/authors.el (authors-canonical-file-name):
9636 * progmodes/autoconf.el (autoconf-mode):
9637 Prefer configure.ac to configure.in.
9638
9639 2012-07-08 Chong Yidong <cyd@gnu.org>
9640
9641 * mouse.el (mouse-drag-line): Rewrite the track-mouse loop.
9642 Implement the mouse-1-click-follows-link handling properly.
9643
9644 * info.el (Info-link-keymap): Use follow-link mechanism for
9645 header-line links (Bug#374).
9646
9647 * simple.el (deactivate-mark): Do not set the primary selection
9648 if another program has acquired it (Bug#11772).
9649
9650 2012-07-07 Kevin Ryde <user42@zip.com.au>
9651
9652 * woman.el (woman-strings): Fix double-quote handling (Bug#1151).
9653 (woman-decode-region): Replace escaped-escapes without destroying
9654 bold or underline (Bug#11552).
9655 (woman2-process-escapes): Handle nofill regions (Bug#11591).
9656
9657 2012-07-07 Chong Yidong <cyd@gnu.org>
9658
9659 * simple.el (yank-pop-change-selection): Doc fix (Bug#11361).
9660 (interprogram-cut-function, interprogram-paste-function):
9661 Mention that we typically mean the clipboard.
9662
9663 2012-07-06 Glenn Morris <rgm@gnu.org>
9664
9665 * kmacro.el (kmacro-call-macro): Restore repeat message. (Bug#11817)
9666
9667 * files.el (toggle-read-only): Restrict message to interactive use.
9668
9669 2012-07-06 Michael Albinus <michael.albinus@gmx.de>
9670
9671 * net/tramp.el (tramp-restricted-shell-hosts-alist): New defcustom.
9672
9673 * net/tramp-sh.el (tramp-maybe-open-connection): Handle it.
9674
9675 2012-07-06 Glenn Morris <rgm@gnu.org>
9676
9677 * Makefile.in (compile-one-process): Rename from "recompile".
9678
9679 * Makefile.in (bzr-update): "compile" is the same as "recompile
9680 autoloads", but parallelizable, so use that instead.
9681
9682 2012-07-06 Dmitry Gutov <dgutov@yandex.ru>
9683
9684 * window.el (quit-window): Always restore window height when
9685 it's saved in quit-restore parameter (Bug#11810).
9686
9687 2012-07-06 Glenn Morris <rgm@gnu.org>
9688
9689 * simple.el (kill-whole-line): Doc tweak.
9690
9691 2012-07-06 Eli Zaretskii <eliz@gnu.org>
9692
9693 * files.el (file-relative-name): Compare file names
9694 case-insensitively if on MS-Windows or MS-DOS, or if
9695 read-file-name-completion-ignore-case is non-nil. Don't use
9696 case-fold-search for this purpose. (Bug#11827)
9697
9698 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
9699
9700 * calendar/cal-dst.el (calendar-current-time-zone):
9701 Return calendar-current-time-zone-cache if non-nil.
9702
9703 2012-07-17 Masatake YAMATO <yamato@redhat.com>
9704 2012-07-06 Andreas Schwab <schwab@linux-m68k.org>
9705
9706 * calendar/cal-dst.el (calendar-current-time-zone):
9707 Return calendar-current-time-zone-cache if non-nil.
9708
9709 2012-07-06 Glenn Morris <rgm@gnu.org>
9710
9711 * Makefile.in (cvs-update): Remove old alias.
9712
9713 2012-07-05 Michael Albinus <michael.albinus@gmx.de>
9714
9715 Sync with Tramp 2.2.6-pre.
9716
9717 * net/tramp.el (tramp-drop-volume-letter): Provide an XEmacs
9718 compatible declaration.
9719
9720 * net/tramp-cmds.el (tramp-append-tramp-buffers):
9721 Protect `list-load-path-shadows' call.
9722
9723 * net/tramp-compat.el (top): Require packages, which aren't
9724 autoloaded anymore for XEmacs. Protect call of
9725 `tramp-file-name-handler' by `tramp-compat-funcall', pacifying the
9726 compiler. Do not require tramp-util.el and tramp-vc.el anymore,
9727 it hurts at least for SXEmacs.
9728 (tramp-compat-temporary-file-directory): In XEmacs, there is no
9729 standard-value for `temporary-file-directory'.
9730
9731 * net/tramp-sh.el (tramp-do-directory-files-and-attributes-with-stat):
9732 Redirect stderr to /dev/null.
9733 (tramp-sh-handle-write-region): uid and gid can be floats.
9734 Reported by Russell Sim <russell.sim@gmail.com>.
9735 (tramp-sh-handle-vc-registered): Hide errors.
9736 (tramp-vc-file-name-handler): Use dummy results for `process-file'
9737 and `start-file-process'.
9738 (tramp-maybe-open-connection): Check also whether `non-essential'
9739 is bound.
9740
9741 2012-07-04 Chong Yidong <cyd@gnu.org>
9742
9743 * xml.el (xml--parse-buffer): Use xml-syntax-table.
9744 (xml-parse-tag): Likewise, and avoid changing entity tables.
9745 (xml-syntax-table): Define from scratch, making sure not to give
9746 x2000 and other Unicode spaces whitespace syntax, since those are
9747 not spaces in XML.
9748 (xml-parse-fragment): Delete unused function.
9749 (xml-name-start-char-re, xml-name-char-re, xml-name-re)
9750 (xml-names-re, xml-nmtoken-re, xml-nmtokens-re, xml-char-ref-re)
9751 (xml-entity-ref, xml-pe-reference-re)
9752 (xml-reference-re,xml-att-value-re, xml-tokenized-type-re)
9753 (xml-notation-type-re, xml-enumeration-re, xml-enumerated-type-re)
9754 (xml-att-type-re, xml-default-decl-re, xml-att-def-re)
9755 (xml-entity-value-re): Use syntax references in regexps where
9756 possible; no need to define inside a let-binding.
9757 (xml-parse-dtd): Use xml-pe-reference-re.
9758 (xml-entity-or-char-ref-re): New defconst.
9759 (xml-parse-string, xml-substitute-special): Use it.
9760
9761 2012-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
9762
9763 * files.el (locate-dominating-file): Allow `name' to be a predicate.
9764 (find-file--read-only): New function.
9765 (find-file-read-only, find-file-read-only-other-window)
9766 (find-file-read-only-other-frame): Use it.
9767 (insert-file-contents-literally): Don't `fset'.
9768 (get-free-disk-space): Use locate-dominating-file.
9769
9770 * emacs-lisp/bytecomp.el (byte-compile): Don't signal an error if the
9771 function is already compiled.
9772
9773 * xml.el (xml-name-regexp): Remove, redundant. Use xml-name-re.
9774
9775 2012-07-03 Michael Albinus <michael.albinus@gmx.de>
9776
9777 * vc/ediff-diff.el (ediff-same-file-contents): Fix it for remote
9778 files on the same host.
9779
9780 2012-07-03 Andreas Schwab <schwab@linux-m68k.org>
9781
9782 * help-fns.el (describe-function-1): Only call
9783 help-fns--autoloaded-p when we have a file name. (Bug#11848)
9784
9785 2012-07-03 Chong Yidong <cyd@gnu.org>
9786
9787 * xml.el: Protect parser against XML bombs.
9788 (xml-entity-expansion-limit): New variable.
9789 (xml-parse-string, xml-substitute-special): Use it.
9790 (xml-parse-dtd): Avoid infloop if the DTD is not terminated.
9791
9792 2012-07-03 Glenn Morris <rgm@gnu.org>
9793
9794 * progmodes/bug-reference.el (bug-reference-bug-regexp):
9795 Allow linking to specific messages in debbugs reports (eg 123#5).
9796
9797 2012-07-02 Chong Yidong <cyd@gnu.org>
9798
9799 * xml.el: Fix entity and character reference expansion, allowing
9800 them to expand into markup as per XML spec.
9801 (xml-default-ns): New variable.
9802 (xml-entity-alist): Use XML spec definitions for lt and amp.
9803 (xml-parse-region): Make first two arguments optional.
9804 Discard text properties.
9805 (xml-parse-tag-1): New function, spun off from xml-parse-tag.
9806 All callers changed.
9807 (xml-parse-tag): Call xml-parse-tag-1. For backward
9808 compatibility, this function should not modify buffer contents.
9809 (xml-parse-tag-1): Fix opening-tag regexp.
9810 (xml-parse-string): Rewrite, handling entity and character
9811 references properly.
9812 (xml--entity-replacement-text): Signal an error if a parameter
9813 entity is undefined.
9814
9815 2012-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
9816
9817 * comint.el (comint-output-filter): Filter out repeated prompts.
9818
9819 * net/ange-ftp.el (ange-ftp-expand-file-name): Use ange-ftp-ftp-name
9820 and file-name-absolute-p.
9821 (ange-ftp-file-exists-p): Use ange-ftp-file-exists-p for
9822 internal calls.
9823
9824 2012-07-02 Paul Eggert <eggert@cs.ucla.edu>
9825
9826 Spelling fixes.
9827 * emacs-lisp/bytecomp.el (byte-compile--reify-function):
9828 Rename from byte-compile--refiy-function. All uses changed.
9829
9830 2012-07-01 Chong Yidong <cyd@gnu.org>
9831
9832 * xml.el (xml--parse-buffer): New function. Move most of
9833 xml-parse-region here.
9834 (xml-parse-region): Copy region into a temporary buffer, since
9835 parameter entity substitution requires changing buffer contents.
9836 Use xml--parse-buffer.
9837 (xml-parse-file): Use xml--parse-buffer.
9838 (xml-parse-dtd): Make parameter entity substitution work right.
9839 Use proper regexps for ELEMENT declarations (Bug#7172).
9840
9841 2012-06-30 Glenn Morris <rgm@gnu.org>
9842
9843 * comint.el (follow-comint-scroll-to-bottom): Fix declaration.
9844
9845 * net/secrets.el, net/tramp-gvfs.el, net/xesam.el, net/zeroconf.el:
9846 Remove outdated and unnecessary dbus declarations.
9847
9848 2012-06-30 Eli Zaretskii <eliz@gnu.org>
9849
9850 * emacs-lisp/timer.el (timer-until): Subtract results of
9851 float-time, instead of taking float-time of the result of
9852 time-subtract, since float-time signals an error for negative time
9853 arguments.
9854
9855 2012-06-30 Chong Yidong <cyd@gnu.org>
9856
9857 * xml.el (xml-*-re): Convert defvars into defconsts, and
9858 eval-and-compile them so eval-and-compile works on derivatives.
9859 (xml--entity-replacement-text): Use eval-and-comple.
9860
9861 2012-06-30 Michael Albinus <michael.albinus@gmx.de>
9862
9863 * vc/vc-git.el (vc-git-registered): Use cache property
9864 `git-registered'.
9865 (vc-git-mode-line-string): Call `vc-working-revision' instead of
9866 `vc-git-working-revision' in order to benefit from the cache.
9867 (vc-git-root): Use cache property `git-root'. (Bug#11757)
9868
9869 2012-06-30 Dmitry Gutov <dgutov@yandex.ru>
9870
9871 * vc/vc-hooks.el (vc-before-save): Clear cache if file has been
9872 removed (likely outside Emacs). (Bug#11757)
9873
9874 2012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
9875
9876 * emacs-lisp/cl-lib.el: Require macroexp.
9877
9878 2012-06-30 Chong Yidong <cyd@gnu.org>
9879
9880 * xml.el: Implement XML parameter entities.
9881 (xml-parameter-entity-alist): New variable.
9882 (xml-parse-region, xml-parse-fragment): Preserve previous values
9883 of xml-entity-alist and xml-parameter-entity-alist, so that
9884 repeated calls on different documents do not change them.
9885 (xml-parse-tag): Fix doctype regexp.
9886 (xml--entity-replacement-text): New function.
9887 (xml-parse-dtd): Use it. Don't handle system entities; doing that
9888 properly requires url retrieval which is unimplemented.
9889 (xml-escape-string): Doc fix.
9890
9891 2012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
9892
9893 * emacs-lisp/cl-lib.el (cl-pushnew): Use macroexp-let2.
9894
9895 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
9896
9897 * fringe.el (fringe-mode): Doc fix.
9898
9899 2012-06-29 Michael Albinus <michael.albinus@gmx.de>
9900
9901 * net/ange-ftp.el (ange-ftp-get-passwd): Throw if `non-essential'
9902 is non-nil.
9903 (ange-ftp-ignore-errors-if-non-essential): New defmacro.
9904 (ange-ftp-file-name-all-completions): Use it. (Bug#11808)
9905
9906 2012-06-29 Andreas Schwab <schwab@linux-m68k.org>
9907
9908 * calendar/cal-dst.el (calendar-current-time-zone):
9909 Return calendar-current-time-zone-cache if non-nil.
9910
9911 2012-06-29 Masatake YAMATO <yamato@redhat.com>
9912
9913 * progmodes/which-func.el (which-func-format):
9914 Add mouse-face. (Bug#11698)
9915
9916 2012-06-29 Leo Liu <sdl.web@gmail.com>
9917
9918 * textmodes/enriched.el (enriched-next-annotation): Use eq (Bug#11528).
9919
9920 2012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
9921
9922 * minibuffer.el (minibuffer-confirm-exit-commands):
9923 Add completion-at-point (bug#11725).
9924
9925 2012-06-29 Glenn Morris <rgm@gnu.org>
9926
9927 * progmodes/f90.el (f90-font-lock-keywords-2):
9928 Add some preprocessor elements. (Bug#10499)
9929
9930 2012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
9931
9932 * progmodes/cperl-mode.el (cperl-update-syntaxification):
9933 Use syntax-propertize (bug#11739).
9934
9935 2012-06-28 Juanma Barranquero <lekktu@gmail.com>
9936
9937 * emacs-lisp/cl-lib.el (cl-pushnew): Don't capture X (bug#11811).
9938
9939 2012-06-28 Julien Danjou <julien@danjou.info>
9940
9941 * term.el (term-handle-colors-array): Use a set of new faces to
9942 color the terminal. Also uses :inverse-video property.
9943 (term-default-fg-color): Set to nil by default, deprecate in favor
9944 of `term-face'.
9945 (term-default-bg-color): Set to nil by default, deprecate in favor
9946 of `term-face'.
9947 (term-current-face): Use `term-face' by default.
9948 (term-bold-attribute): Variable deleted.
9949
9950 2012-06-28 Glenn Morris <rgm@gnu.org>
9951
9952 * simple.el (completion-list-mode-finish):
9953 Don't use toggle-read-only. (Since completion-list-mode has
9954 a special mode-class, it wasn't doing anything extra anyway.)
9955
9956 2012-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
9957
9958 Make inlining of other-mode interpreted functions work (bug#11799).
9959 * emacs-lisp/bytecomp.el (byte-compile--refiy-function): New fun.
9960 (byte-compile): Use it to fix compilation of lexical-binding closures.
9961 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Compile the
9962 function, if needed.
9963
9964 2012-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
9965
9966 * help-mode.el (help-make-xrefs): Don't just withstand
9967 cyclic-variable-indirection but any error in documentation-property.
9968
9969 * loadup.el (purify-flag): Pre-grow the hash-table to reduce the
9970 memory use.
9971 * bindings.el (bindings--define-key): New function.
9972 * vc/vc-hooks.el, replace.el, menu-bar.el, international/mule-cmds.el:
9973 * emacs-lisp/lisp-mode.el, buff-menu.el, bookmark.el:
9974 * bindings.el: Use it to purecopy define-key bindings.
9975
9976 * textmodes/rst.el (rst-adornment-faces-alist): Avoid copy-list.
9977
9978 * emacs-lisp/cl.el (flet): Mark obsolete.
9979 * emacs-lisp/cl-macs.el (cl-flet*): New macro.
9980 * vc/vc-rcs.el (vc-rcs-annotate-command, vc-rcs-parse):
9981 * progmodes/js.el (js-c-fill-paragraph):
9982 * progmodes/ebrowse.el (ebrowse-switch-member-buffer-to-sibling-class)
9983 (ebrowse-switch-member-buffer-to-derived-class):
9984 * play/5x5.el (5x5-solver): Use cl-flet.
9985
9986 * emacs-lisp/cl.el: Use lexical-binding. Fix flet (bug#11780).
9987 (cl--symbol-function): New macro.
9988 (cl--letf, cl--letf*): Use it.
9989
9990 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
9991 Strip "toggle-" if any.
9992
9993 2012-06-27 Glenn Morris <rgm@gnu.org>
9994
9995 * info.el (Info-default-directory-list): Move here from paths.el.
9996 * paths.el: Remove file, which is now empty.
9997 * loadup.el: No longer load "paths".
9998
9999 * custom.el (custom-initialize-delay): Doc fix.
10000
10001 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
10002 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el:
10003 * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el:
10004 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el:
10005 * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el:
10006 * eshell/em-xtra.el: Replace eshell-defgroup with "(progn (defgroup".
10007 * eshell/eshell.el (eshell-defgroup): Remove alias.
10008
10009 2012-06-27 Chong Yidong <cyd@gnu.org>
10010
10011 * help.el (help-enable-auto-load): New variable.
10012
10013 * help-fns.el (help-fns--autoloaded-p): New function.
10014 (describe-function-1): Refer to a function as "autoloaded" if it
10015 was autoloaded at any time in the past. Perform autoloading if
10016 help-enable-auto-load is non-nil.
10017
10018 2012-06-26 Eli Zaretskii <eliz@gnu.org>
10019
10020 * makefile.w32-in (compile, compile-always): Depend on
10021 update-subdirs, not on subdirs.el. Otherwise, several different
10022 sub-targets of 'bootstrap' running in parallel could
10023 simultaneously write to subdirs.el, producing a garbled file.
10024
10025 2012-06-26 Sam Steingold <sds@gnu.org>
10026
10027 * files.el (file-name-base): New convenience function.
10028 * autoinsert.el, cus-dep.el, doc-view.el, image-dired.el:
10029 * woman.el, eshell/esh-cmd.el, progmodes/ada-xref.el:
10030 * progmodes/cc-defs.el, progmodes/cperl-mode.el:
10031 * progmodes/flymake.el, progmodes/gud.el, progmodes/idlwave.el:
10032 * textmodes/ispell.el, textmodes/reftex-ref.el:
10033 * textmodes/tex-mode.el: Use it.
10034 Did not touch cedet and org because they are maintained elsewhere.
10035
10036 2012-06-26 Martin Rudalics <rudalics@gmx.at>
10037
10038 * calendar/calendar.el (calendar-exit): Don't try to delete or
10039 iconify last frame. See:
10040 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00372.html
10041
10042 2012-06-25 Jim Diamond <Jim.Diamond@AcadiaU.ca> (tiny change)
10043
10044 * server.el (server-process-filter): Remember dir in the
10045 process's `server-client-directory' properties.
10046
10047 2012-06-24 Chong Yidong <cyd@gnu.org>
10048
10049 * xml.el (xml-parse-tag): Correctly handle comment embedded in
10050 non-tag text.
10051
10052 2012-06-23 Juanma Barranquero <lekktu@gmail.com>
10053
10054 * makefile.w32-in (COMPILE_FIRST): Synch with changes in 2012-06-22T21:24:54Z!monnier@iro.umontreal.ca.
10055
10056 2012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
10057
10058 * help-fns.el (describe-variable): Don't croak when doc is not found.
10059 * vc/pcvs.el (cvs-retrieve-revision): Avoid toggle-read-only.
10060 * menu-bar.el (menu-bar-line-wrapping-menu): Purecopy a tiny bit more.
10061 * emacs-lisp/syntax.el (syntax-ppss): Simplify with new `if' place.
10062 * emacs-lisp/smie.el (smie-next-sexp): CSE.
10063 * emacs-lisp/macroexp.el (macroexp-let2): Fix edebug spec and avoid
10064 ((lambda ..) ..).
10065 * emacs-lisp/eieio.el (eieio-oref, slot-value): Use simpler defsetf.
10066
10067 2012-06-23 Chong Yidong <cyd@gnu.org>
10068
10069 * info.el (Info-mouse-follow-link): Accept symbol values of
10070 link-args. Select window; suggested by Gerhard Kahl (Bug#11672).
10071 (Info-fontify-node): Use Info-link-keymap for all navigation
10072 buttons, with link-args property to perform the desired action.
10073 (Info-link-keymap): Doc fix.
10074 (Info-next-link-keymap, Info-prev-link-keymap)
10075 (Info-up-link-keymap): Delete now-unused keymaps.
10076
10077 2012-06-23 Chong Yidong <cyd@gnu.org>
10078
10079 * mouse.el (mouse-drag-track): Deactivate the mark before popping.
10080
10081 * progmodes/python.el (python-skeleton-define): Mark abbrevs as
10082 system abbrevs.
10083
10084 * ansi-color.el (ansi-color-apply-on-region): Doc fix.
10085
10086 2012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
10087
10088 * emacs-lisp/cl-macs.el (cl--make-usage-args): Handle improper lists
10089 (bug#11719).
10090
10091 * minibuffer.el (completion--twq-try): Try to fail more gracefully when
10092 the requote function doesn't work properly (bug#11714).
10093
10094 2012-06-23 Glenn Morris <rgm@gnu.org>
10095
10096 * pcmpl-rpm.el (pcmpl-rpm-packages): Give status messages.
10097
10098 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
10099
10100 Further GV/CL cleanups.
10101 * emacs-lisp/gv.el (gv-get): Autoload functions to find their
10102 gv-expander.
10103 (gv--defun-declaration): New function.
10104 (defun-declarations-alist): Use it.
10105 (gv-define-modify-macro, gv-pushnew!, gv-inc!, gv-dec!): Remove.
10106 (gv-place): Autoload.
10107 * emacs-lisp/cl.el (cl--dotimes, cl--dolist): Remember subr.el's
10108 original definition of dotimes and dolist.
10109 * emacs-lisp/cl-macs.el (cl-expr-access-order): Remove unused.
10110 (cl-dolist, cl-dotimes): Use `dolist' and `dotimes'.
10111 * emacs-lisp/cl-lib.el: Move gv handlers from cl-macs to here.
10112 (cl-fifth, cl-sixth, cl-seventh, cl-eighth)
10113 (cl-ninth, cl-tenth): Move gv handler to the function's definition.
10114 * emacs-lisp/cl-extra.el (cl-subseq, cl-get, cl-getf): Move gv handler
10115 to the function's definition.
10116 * Makefile.in (COMPILE_FIRST): Re-order to speed it up by about 50%.
10117 * window.el:
10118 * files.el:
10119 * faces.el:
10120 * env.el: Don't use CL.
10121
10122 2012-06-22 Paul Eggert <eggert@cs.ucla.edu>
10123
10124 Support higher-resolution time stamps (Bug#9000).
10125
10126 * calendar/time-date.el (with-decoded-time-value): New arg
10127 PICO-SYMBOL in VARLIST. It's optional, for backward compatibility.
10128 (encode-time-value): New optional arg PICO. New type 3.
10129 (time-to-seconds) [!float-time]: Support the new picoseconds
10130 component if it's used.
10131 (seconds-to-time, time-subtract, time-add):
10132 Support ps-resolution time stamps as well.
10133
10134 * emacs-lisp/timer.el (timer): New component psecs. All uses changed.
10135 (timerp): Timer vectors now have length 9, not 8.
10136 (timer--time): Support new-style (4-part) time stamps.
10137 (timer-next-integral-multiple-of-time): Time stamps now have
10138 picosecond resolution, so take a bit more care about rounding.
10139 (timer-relative-time, timer-inc-time): New optional arg psecs.
10140 (timer-set-time-with-usecs): Set psecs to 0.
10141 (timer--activate): Check psecs component, too.
10142
10143 * proced.el (proced-time-lessp): Support ps-resolution stamps.
10144
10145 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
10146
10147 * icomplete.el (icomplete-minibuffer-setup, icomplete-completions):
10148 Move the non-essential binding to the post/pre-command-hook where it is
10149 more obviously correct.
10150
10151 * subr.el (read-passwd): Don't use a history at all.
10152 * savehist.el (savehist-save): Remove password saved accidentally
10153 because of the above bug.
10154
10155 2012-06-22 Bastien Guerry <bzg@gnu.org>
10156
10157 * files.el (toggle-read-only): Display a message telling whether
10158 the buffer is read-only or not (bug#11726).
10159
10160 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
10161
10162 * emacs-lisp/gv.el: New file.
10163 * subr.el (push, pop): Extend to generalized variables.
10164 * loadup.el (macroexp): Unload if preloaded and uncompiled (bug#11657).
10165 * emacs-lisp/cl-lib.el (cl-pop, cl-push, cl--set-nthcdr): Remove.
10166 * emacs-lisp/cl-macs.el: Require gv. Use gv-define-setter,
10167 gv-define-simple-setter, and gv-define-expander.
10168 Remove setf-methods defined in gv. Rename cl-setf -> setf.
10169 (cl-setf, cl-do-pop, cl-get-setf-method): Remove.
10170 (cl-letf, cl-letf*, cl-define-modify-macro, cl-defsetf)
10171 (cl-define-setf-expander, cl-struct-setf-expander): Move to cl.el.
10172 (cl-remf, cl-shiftf, cl-rotatef, cl-callf, cl-callf2): Rewrite with
10173 gv-letplace.
10174 (cl-defstruct): Don't define setf-method any more.
10175 * emacs-lisp/cl.el (flet): Don't autoload.
10176 (cl--letf, letf, cl--letf*, letf*, cl--gv-adapt)
10177 (define-setf-expander, defsetf, define-modify-macro)
10178 (cl-struct-setf-expander): Move from cl-lib.el.
10179 * emacs-lisp/syntax.el:
10180 * emacs-lisp/ewoc.el:
10181 * emacs-lisp/smie.el:
10182 * emacs-lisp/cconv.el:
10183 * emacs-lisp/timer.el: Rename cl-setf -> setf, cl-push -> push.
10184 (timer--time): Use gv-define-simple-setter.
10185 * emacs-lisp/macroexp.el (macroexp-let2): Rename from macroexp-let²
10186 to avoid coding-system problems in subr.el. Adjust all users.
10187 (macroexp--maxsize, macroexp-small-p): New functions.
10188 * emacs-lisp/bytecomp.el (byte-compile-file): Don't use cl-letf.
10189 * scroll-bar.el (scroll-bar-mode):
10190 * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
10191 (normal-erase-is-backspace-mode): Don't use the `eq' place.
10192 * winner.el (winner-configuration, winner-make-point-alist)
10193 (winner-set-conf, winner-get-point, winner-set): Don't abuse letf.
10194 * files.el (locate-file-completion-table): Avoid list*.
10195
10196 2012-06-22 Chong Yidong <cyd@gnu.org>
10197
10198 * dired-aux.el (dired-do-create-files): Doc fix (Bug#11327).
10199 (dired-create-files): Doc fix (Bug#11329).
10200 (dired-do-copy): Doc fix (Bug#11334).
10201 (dired-mark-read-string): Doc fix (Bug#11553).
10202
10203 * dired.el (dired-recursive-copies, dired-recursive-deletes):
10204 Doc fix (Bug#11326).
10205 (dired-make-relative): Doc fix (Bug#11332). Remove unused arg.
10206 (dired-dwim-target): Doc fix.
10207
10208 * wdired.el (wdired-mode): Doc fix.
10209
10210 2012-06-22 Glenn Morris <rgm@gnu.org>
10211
10212 * pcmpl-rpm.el (pcmpl-rpm-cache): New option.
10213 (pcmpl-rpm-cache-stamp-file): New constant.
10214 (pcmpl-rpm-cache-time, pcmpl-rpm-packages): New variables.
10215 (pcmpl-rpm-packages): Optionally cache list of packages.
10216
10217 * pcmpl-rpm.el (pcmpl-rpm): New group.
10218 (pcmpl-rpm-query-options): New option.
10219 (pcmpl-rpm-packages): No need to inline it.
10220 Use pcmpl-rpm-query-options.
10221
10222 * calendar/calendar.el (calendar-in-read-only-buffer):
10223 Avoid some needless mode changes.
10224
10225 2012-06-21 Chong Yidong <cyd@gnu.org>
10226
10227 * desktop.el (desktop-read): Don't prompt if daemon (Bug#11674).
10228 (desktop-path): Remove . from the default value (Bug#10977).
10229 (desktop-read): Use user-emacs-directory if desktop-path is nil.
10230
10231 2012-06-20 Chong Yidong <cyd@gnu.org>
10232
10233 * term.el (term-send-raw-meta): Make C-M-<char> keys work (Bug#8172).
10234
10235 2012-06-20 David Röthlisberger <david@rothlis.net> (tiny change)
10236
10237 * ido.el (ido-switch-buffer, ido-find-file): Fix up doc of C-j
10238 (bug#11201).
10239
10240 2012-06-20 Chong Yidong <cyd@gnu.org>
10241
10242 * term.el (term-window-width): Handle the case of a missing right
10243 fringe (Bug#8837).
10244 (term-check-size): Use window-text-height (Bug#5445).
10245 (term-mode): Use define-derived-mode. Minor cleanups.
10246 Set font-lock-defaults (Bug#7692).
10247 (term-move-columns, term-insert-char, term-emulate-terminal)
10248 (term-erase-in-line, term-insert-spaces): Use font-lock-face.
10249
10250 2012-06-20 Michael Albinus <michael.albinus@gmx.de>
10251
10252 * net/ange-ftp.el (ange-ftp-get-passwd):
10253 Bind `enable-recursive-minibuffers'.
10254 (ange-ftp-get-process): Throw if `non-essential' is non-nil.
10255
10256 2012-06-19 David Röthlisberger <david@rothlis.net> (tiny change)
10257
10258 * ido.el (ido-find-file): Mention C-d binding in docstring (bug#11244).
10259
10260 2012-06-19 Glenn Morris <rgm@gnu.org>
10261
10262 * progmodes/python.el (python-mode): Derive from prog-mode.
10263
10264 2012-06-19 Kevin Gallagher <Kevin.Gallagher@boeing.com>
10265
10266 * emulation/edt.el (edt-default-menu-bar-update-buffers)
10267 (edt-user-menu-bar-update-buffers): New functions.
10268 (edt-default-emulation-setup, edt-user-emulation-setup): Use them.
10269
10270 2012-06-19 Chong Yidong <cyd@gnu.org>
10271
10272 * subr.el (with-selected-window): Preserve the selected window's
10273 terminal's top-frame (Bug#4702).
10274
10275 * window.el (save-selected-window): Likewise.
10276
10277 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
10278
10279 * progmodes/python.el (python-rx-constituents): Move backquote.
10280 (python-skeleton-define, python-define-auxiliary-skeleton):
10281 Use `declare'.
10282
10283 2012-06-18 Michael Albinus <michael.albinus@gmx.de>
10284
10285 * minibuffer.el (read-file-name-default): Revert the patch from
10286 2012-06-17.
10287
10288 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
10289
10290 * emacs-lisp/pcase.el (pcase--expand): Warn for unused pattern.
10291 (pcase--u1, pcase--q1): Don't use apply-partially.
10292
10293 2012-06-18 Glenn Morris <rgm@gnu.org>
10294
10295 * progmodes/python.el (python-proc, python-buffer)
10296 (python-send-receive, python-send-string): Fix obsolete versions.
10297
10298 2012-06-18 Martin Rudalics <rudalics@gmx.at>
10299
10300 * window.el (special-display-p): Completely remove stringp
10301 check. Suggested by Andreas Schwab <schwab@linux-m68k.org>.
10302
10303 2012-06-17 Michael Albinus <michael.albinus@gmx.de>
10304
10305 * minibuffer.el (read-file-name-default): Bind `non-essential' to `t'.
10306
10307 * net/tramp.el (tramp-file-name-handler): Catch 'non-essential.
10308
10309 * net/ange-ftp.el (ange-ftp-gwp-start, ange-ftp-start-process):
10310 * net/tramp-sh.el (tramp-maybe-open-connection):
10311 Throw if `non-essential' is non-nil.
10312
10313 2012-06-17 Martin Rudalics <rudalics@gmx.at>
10314
10315 * window.el (special-display-p): Signal an error if BUFFER-NAME
10316 is not a string (Bug#11713).
10317
10318 2012-06-17 Paul Eggert <eggert@cs.ucla.edu>
10319
10320 * progmodes/python.el (python-info-beginning-of-backslash):
10321 Rename from python-info-beginning-of-backlash, as a spelling fix.
10322
10323 2012-06-17 Chong Yidong <cyd@gnu.org>
10324
10325 * term.el (term-emulate-terminal): If term-check-size is called,
10326 move point to the process mark without resetting point (Bug#4635).
10327
10328 2012-06-17 Glenn Morris <rgm@gnu.org>
10329
10330 * international/mule-cmds.el (mule-menu-keymap)
10331 (set-language-environment, set-locale-environment): Doc tweaks.
10332
10333 2012-06-16 Aurelien Aptel <aurelien.aptel@gmail.com>
10334
10335 * cus-face.el (custom-face-attributes): Add wave-style underline
10336 attribute.
10337 * faces.el (set-face-attribute): Update docstring to describe
10338 wave-style underline attribute.
10339
10340 2012-06-16 Chong Yidong <cyd@gnu.org>
10341
10342 * term/xterm.el (terminal-init-xterm): Discard input before
10343 querying background mode (Bug#10959).
10344
10345 2012-06-16 Stefan Merten <smerten@oekonux.de>
10346
10347 * textmodes/rst.el: Added and corrected some comments.
10348 (rst-re-alist-def): Improve symbol syntax.
10349 (rst-mode-syntax-table): Correct syntax entries.
10350 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
10351 (rst-official-version, rst-official-cvs-rev): Update version
10352 information.
10353
10354 2012-06-15 Juanma Barranquero <lekktu@gmail.com>
10355
10356 * makefile.w32-in (COMPILE_FIRST): Synch with makefile.in changes
10357 in 2008-06-22T13:57:28Z!monnier@iro.umontreal.ca.
10358
10359 2012-06-15 Fabián Ezequiel Gallina <fgallina@cuca>
10360
10361 * progmodes/python.el: New python.el merge.
10362 (python-guess-indent): Obsolete var.
10363 (python-indent-guess-indent-offset): New defcustom.
10364 (python-indent): Obsolete var.
10365 (python-indent-offset): New defcustom.
10366 (python-python-command, python-jython-command): Delete var.
10367 (python-shell-interpreter): New defcustom.
10368 (python-pdbtrack-do-tracking-p): Delete var.
10369 (python-pdbtrack-activate): New defcustom.
10370 (python-use-skeletons): Obsolete var.
10371 (python-skeleton-autoinsert): New defcustom.
10372 (inferior-python-filter-regexp, python-continuation-offset)
10373 (python-honour-comment-indentation, python-indent-string-contents)
10374 (python-jython-packages, python-mode-hook)
10375 (python-pdbtrack-minor-mode-string, python-remove-cwd-from-path)
10376 (python-shell-prompt-alist)
10377 (python-source-modes): Delete defcustoms.
10378 (python-check-buffer-name, python-eldoc-setup-code)
10379 (python-eldoc-string-code, python-ffap-setup-code)
10380 (python-ffap-string-code, python-fill-comment-function)
10381 (python-fill-decorator-function, python-fill-paren-function)
10382 (python-fill-string-function, python-imenu-include-defun-type)
10383 (python-imenu-make-tree, python-imenu-subtree-root-label)
10384 (python-pdbtrack-stacktrace-info-regexp, python-shell-buffer-name)
10385 (python-shell-compilation-regexp-alist)
10386 (python-shell-completion-module-string-code)
10387 (python-shell-completion-pdb-string-code)
10388 (python-shell-completion-setup-code)
10389 (python-shell-completion-string-code)
10390 (python-shell-enable-font-lock, python-shell-exec-path)
10391 (python-shell-extra-pythonpaths)
10392 (python-shell-internal-buffer-name, python-shell-interpreter-args)
10393 (python-shell-process-environment)
10394 (python-shell-prompt-block-regexp)
10395 (python-shell-prompt-output-regexp)
10396 (python-shell-prompt-pdb-regexp, python-shell-prompt-regexp)
10397 (python-shell-send-setup-max-wait, python-shell-setup-codes)
10398 (python-shell-virtualenv-path): New defcustoms.
10399 (brm-menu, eldoc-documentation-function, inferior-python-mode-map)
10400 (inferior-python-mode-syntax-table, python--prompt-regexp)
10401 (python-buffer, python-command python-python-command)
10402 (python-default-template, python-imports, python-indent-index)
10403 (python-indent-list, python-indent-list-length)
10404 (python-mode-running, python-pdbtrack-is-tracking-p)
10405 (python-preoutput-continuation, python-preoutput-leftover)
10406 (python-preoutput-result, python-preoutput-skip-next-prompt)
10407 (python-prev-dir/file, python-recursing)
10408 (python-saved-check-command, python-version-checked)
10409 (python-which-func-length-limit)
10410 (view-return-to-alist): Delete vars.
10411 (python-check-custom-command, python-dotty-syntax-table)
10412 (python-imenu-index-alist, python-indent-current-level)
10413 (python-indent-dedenters, python-indent-levels)
10414 (python-nav-beginning-of-defun-regexp)
10415 (python-nav-list-defun-positions-cache)
10416 (python-pdbtrack-buffers-to-kill, python-pdbtrack-tracked-buffer)
10417 (python-shell-internal-buffer)
10418 (python-skeleton-available): New vars.
10419 (def-python-skeleton): Delete macro.
10420 (python-skeleton-define): New macro.
10421 (python-define-auxiliary-skeleton, python-rx): New macros.
10422 (python-insert-class): Delete command.
10423 (python-skeleton-class): New command.
10424 (python-insert-def): Delete command.
10425 (python-skeleton-def): New command.
10426 (python-insert-for): Delete command.
10427 (python-skeleton-for): New command.
10428 (python-insert-if): Delete command.
10429 (python-skeleton-if): New command.
10430 (python-insert-try/except, python-insert-try/finally): Delete commands.
10431 (python-skeleton-try): New command.
10432 (python-insert-while): Delete command.
10433 (python-skeleton-while): New command.
10434 (python-backspace): Delete command.
10435 (python-indent-dedent-line-backspace): New command.
10436 (python-electric-colon): Delete command.
10437 (python-indent-electric-colon): New command.
10438 (python-guess-indent): Delete command.
10439 (python-indent-guess-indent-offset): New command.
10440 (python-shift-left): Delete command.
10441 (python-indent-shift-left): New command.
10442 (python-shift-right): Delete command.
10443 (python-indent-shift-right): New command.
10444 (python-find-function): Delete command.
10445 (python-nav-jump-to-defun): New command.
10446 (python-next-statement): Delete command.
10447 (python-nav-forward-sentence): New command.
10448 (python-previous-statement): Delete command.
10449 (python-nav-backward-sentence): New command.
10450 (python-fill-paragraph): Delete command.
10451 (python-fill-paragraph-function): New command.
10452 (python-send-buffer): Delete command.
10453 (python-shell-send-buffer): New command.
10454 (python-send-defun): Delete command.
10455 (python-shell-send-defun): New command.
10456 (python-send-region, python-send-region-and-go): Delete commands.
10457 (python-shell-send-region)
10458 (python-shell-switch-to-shell): New commands.
10459 (python-send-string): Delete command.
10460 (python-shell-send-string): New command.
10461 (python-switch-to-python): Delete command.
10462 (python-shell-switch-to-shell): New command.
10463 (python-describe-symbol): Delete command.
10464 (python-eldoc-at-point): New command.
10465 (python--set-prompt-regexp, python-args-to-list)
10466 (python-after-info-look, python-check-version)
10467 (python-check-comint-prompt, python-find-imports)
10468 (python-execute-file, turn-off-pdbtrack, turn-on-pdbtrack)
10469 (python-unload-function, python-expand-template)
10470 (python-maybe-jython, python-preoutput-filter)
10471 (python-pdbtrack-get-source-buffer)
10472 (python-pdbtrack-grub-for-buffer, python-pdbtrack-overlay-arrow)
10473 (python-pdbtrack-toggle-stack-tracking)
10474 (python-pdbtrack-track-stack-file, python-initial-text)
10475 (python-first-word, python-comment-line-p, python-send-command)
10476 (python-setup-brm, python-sentinel, python-set-proc)
10477 (python-skip-out, python-input-filter, python-outdent-p)
10478 (python-outline-level, python-backslash-continuation-line-p)
10479 (python-end-of-block, python-end-of-statement, python-mark-block)
10480 (python-beginning-of-block, python-beginning-of-statement)
10481 (python-blank-line-p, python-beginning-of-string)
10482 (python-open-block-statement-p): Delete functions.
10483 (python-indent-line, python-indent-line-1): Delete functions.
10484 (python-indent-line): New function.
10485 (python-indentation-levels): Delete function.
10486 (python-indent-calculate-levels): New function.
10487 (python-proc): Delete function.
10488 (python-shell-get-process): New function.
10489 (python-send-receive): Delete function.
10490 (python-shell-send-string-no-output): New function.
10491 (python-module-path): Delete function.
10492 (python-ffap-module-path): New function.
10493 (python-completion-at-point)
10494 (python-symbol-completions): Delete functions.
10495 (python-completion-complete-at-point): New function.
10496 (python-load-file): Delete function.
10497 (python-shell-send-file): New function.
10498 (python-calculate-indentation): Delete function.
10499 (python-indent-calculate-indentation): New function.
10500 (python-skip-comments/blanks): Delete function.
10501 (python-util-forward-comment): New function.
10502 (python-continuation-line-p): Delete function.
10503 (python-info-continuation-line-p): New function.
10504 (python-which-func, python-current-defun): Delete function.
10505 (python-info-current-defun): New function.
10506 (python-beginning-of-defun): Delete function.
10507 (python-nav-beginning-of-defun): New function.
10508 (python-close-block-statement-p)
10509 (python-block-end-p): Delete function.
10510 (python-info-closing-block): New function.
10511 (python-comint-output-filter-function)
10512 (python-eldoc--get-doc-at-point, python-end-of-defun-function)
10513 (python-fill-comment, python-fill-decorator, python-fill-paren)
10514 (python-fill-string, python-imenu-make-element-tree)
10515 (python-imenu-make-tree, python-imenu-tree-assoc)
10516 (python-indent-context, python-indent-dedent-line)
10517 (python-indent-line-function)
10518 (python-indent-post-self-insert-function)
10519 (python-indent-toggle-levels)
10520 (python-info-assignment-continuation-line-p)
10521 (python-info-beginning-of-backlash)
10522 (python-info-block-continuation-line-p)
10523 (python-info-closing-block-message)
10524 (python-info-line-ends-backslash-p)
10525 (python-info-looking-at-beginning-of-defun)
10526 (python-info-ppss-context, python-info-ppss-context-type)
10527 (python-nav-list-defun-positions, python-nav-read-defun)
10528 (python-nav-sentence-end, python-nav-sentence-start)
10529 (python-pdbtrack-comint-output-filter-function)
10530 (python-pdbtrack-set-tracked-buffer)
10531 (python-shell-calculate-exec-path)
10532 (python-shell-calculate-process-environment)
10533 (python-shell-completion--do-completion-at-point)
10534 (python-shell-completion--get-completions)
10535 (python-shell-completion-complete-at-point)
10536 (python-shell-completion-complete-or-indent)
10537 (python-shell-get-or-create-process)
10538 (python-shell-get-process-name)
10539 (python-shell-internal-get-or-create-process)
10540 (python-shell-internal-get-process-name)
10541 (python-shell-internal-send-string, python-shell-make-comint)
10542 (python-shell-parse-command, python-shell-send-setup-code)
10543 (python-skeleton-add-menu-items)
10544 (python-util-clone-local-variables, python-util-position)
10545 (run-python-internal, python-indentation-levels)
10546 (python-nav-beginning-of-defun)
10547 (python-completion-complete-at-point): New functions.
10548 (run-python): Change arguments. New API requirements.
10549
10550 2012-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
10551
10552 * emacs-lisp/cl-lib.el (cl--defsubst-expand): Autoload inliner
10553 (bug#11649).
10554
10555 * emacs-lisp/macroexp.el (macroexp--compiler-macro): New function.
10556 (macroexp--expand-all): Use it.
10557
10558 * emacs-lisp/cl-macs.el (cl--transform-function-property): Remove.
10559 (cl-define-setf-expander, cl-deftype, cl-define-compiler-macro):
10560 Use `cl-function' instead.
10561
10562 2012-06-14 Juanma Barranquero <lekktu@gmail.com>
10563
10564 * makefile.w32-in (COMPILE_FIRST): Remove subr.el.
10565 Suggested by Stefan Monnier while discussing bug#11657.
10566
10567 2012-06-14 Sam Steingold <sds@gnu.org>
10568
10569 * files.el (abort-if-file-too-large): Use `file-size-human-readable'.
10570
10571 2012-06-14 Andreas Schwab <schwab@linux-m68k.org>
10572
10573 * play/doctor.el (doctor-doc): Remove parameter and use
10574 doctor-sent instead of sent.
10575 (doctor-read-print): Use doctor-sent instead of sent. (Bug#11708)
10576
10577 2012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
10578
10579 * files.el: Require cl-lib.
10580 (file-name-non-special): Replace case -> cl-case.
10581
10582 * emacs-lisp/cl-macs.el (cl-defstruct): Don't add print-func.
10583
10584 * emacs-lisp/edebug.el (edebug-read-function): Remove old incorrect
10585 mapping from #' to function*.
10586
10587 2012-06-13 Chong Yidong <cyd@gnu.org>
10588
10589 * mouse.el (mouse-drag-track): Do not set the mark if the user
10590 releases the mouse without selecting anything (Bug#11588).
10591
10592 2012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
10593
10594 * textmodes/tex-mode.el (latex-indent): Recognize tex-verbatim at EOB
10595 as well (bug#11646).
10596
10597 * loadup.el: Count byte-code functions as well.
10598
10599 * emacs-lisp/byte-opt.el (featurep): Move compiler-macro...
10600 * emacs-lisp/bytecomp.el (featurep): ...here (bug#11692).
10601
10602 * emacs-lisp/autoload.el (make-autoload): Accept nil doc-string-elt
10603 (bug#11649). Add cl-defun and cl-defmacro.
10604
10605 2012-06-13 Drew Adams <drew.adams@oracle.com>
10606
10607 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
10608 Fix last change.
10609
10610 2012-06-13 Michael Albinus <michael.albinus@gmx.de>
10611
10612 * net/dbus.el (dbus-call-method): Use timeout for `read-event'.
10613 Otherwise, it blocks in batch mode.
10614
10615 2012-06-13 Juanma Barranquero <lekktu@gmail.com>
10616
10617 * help-mode.el (bookmark-make-record-default): Declare.
10618
10619 2012-06-13 Chong Yidong <cyd@gnu.org>
10620
10621 * emacs-lisp/package.el (list-packages): Compute a list of
10622 packages that are newly-available since the last list-packages
10623 invocation.
10624 (package-menu--new-package-list): New var.
10625 (package-menu--generate, package-menu--print-info)
10626 (package-menu--status-predicate, package-menu-mark-install):
10627 Handle new status label "new".
10628
10629 2012-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
10630
10631 * emacs-lisp/cl-macs.el (cl-remf): Fix error in recent
10632 conversion to backquotes.
10633
10634 2012-06-12 Chong Yidong <cyd@gnu.org>
10635
10636 * emacs-lisp/edebug.el (edebug-inhibit-emacs-lisp-mode-bindings):
10637 Rename from gud-inhibit-global-bindings.
10638
10639 * emacs-lisp/eieio.el (eieio-pre-method-execution-hooks): Doc fix.
10640
10641 * nxml/nxml-glyph.el (nxml-glyph-set-functions): Rename abnormal
10642 hook from nxml-glyph-set-hook.
10643
10644 * progmodes/cwarn.el (cwarn-mode): Remove redundant variable
10645 declaration.
10646
10647 * progmodes/pascal.el (pascal-toggle-completions): Doc fix.
10648
10649 * textmodes/bibtex.el (bibtex-string-file-path, bibtex-file-path):
10650 Convert to defcustom.
10651
10652 2012-06-12 Drew Adams <drew.adams@oracle.com>
10653
10654 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
10655 New functions.
10656 (help-mode): Use them.
10657
10658 2012-06-11 Glenn Morris <rgm@gnu.org>
10659
10660 * progmodes/fortran.el (fortran-font-lock-keywords-3):
10661 Use preprocessor face for directives.
10662 (fortran-directive-re): Doc fix.
10663
10664 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
10665
10666 * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Fix error in recent
10667 conversion to backquotes (bug#11652).
10668
10669 Fix compiler-expansion of CL's cXXr functions (bug#11673).
10670 * emacs-lisp/cl-lib.el (cl--defalias): New function.
10671 (cl-values, cl-values-list, cl-copy-seq, cl-svref, cl-first)
10672 (cl-second, cl-rest, cl-endp, cl-third, cl-fourth): Use it.
10673 (cl-plusp, cl-minusp, cl-fifth, cl-sixth, cl-seventh, cl-eighth)
10674 (cl-ninth, cl-tenth): Mark them as inlinable.
10675 (cl-caaar, cl-caadr, cl-cadar, cl-caddr, cl-cdaar, cl-cdadr)
10676 (cl-cddar, cl-cdddr, cl-caaaar, cl-caaadr, cl-caadar, cl-caaddr)
10677 (cl-cadaar, cl-cadadr, cl-caddar, cl-cadddr, cl-cdaaar, cl-cdaadr)
10678 (cl-cdadar, cl-cdaddr, cl-cddaar, cl-cddadr, cl-cdddar, cl-cddddr):
10679 Add a compiler-macro declaration to use cl--compiler-macro-cXXr.
10680 (cl-list*, cl-adjoin): Don't put an autoload manually.
10681 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin)
10682 (cl--compiler-macro-list*): Add autoload cookie.
10683 (cl--compiler-macro-cXXr): New function.
10684
10685 * help-fns.el (help-fns--compiler-macro): New function extracted from
10686 describe-function-1; follow aliases and use `compiler-macro' property.
10687 (describe-function-1): Use it.
10688
10689 2012-06-11 Chong Yidong <cyd@gnu.org>
10690
10691 * startup.el (fancy-splash-head): Use splash.svg even if librsvg
10692 is uninstalled, if imagemagick is installed.
10693
10694 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
10695
10696 * emacs-lisp/cl-lib.el: Use lexical-binding.
10697 (cl-map-extents, cl-maclisp-member): Remove.
10698 (cl--set-elt, cl--set-nthcdr, cl--set-buffer-substring)
10699 (cl--set-substring, cl--block-wrapper, cl--block-throw)
10700 (cl--compiling-file, cl--mapcar-many, cl--do-subst): Use "cl--" prefix.
10701 * emacs-lisp/cl-extra.el: Use lexical-binding.
10702 (cl--mapcar-many, cl--map-keymap-recursively, cl--map-intervals)
10703 (cl--map-overlays, cl--set-frame-visible-p, cl--progv-save)
10704 (cl--progv-before, cl--progv-after, cl--finite-do, cl--set-getf)
10705 (cl--do-remf, cl--do-prettyprint): Use "cl--" prefix.
10706 * emacs-lisp/cl-seq.el: Use lexical-binding.
10707 (cl--parsing-keywords, cl--check-key, cl--check-test-nokey)
10708 (cl--check-test, cl--check-match): Use "cl--" prefix and backquotes.
10709 (cl--alist, cl--sublis-rec, cl--nsublis-rec, cl--tree-equal-rec):
10710 * emacs-lisp/cl-macs.el (cl--lambda-list-keywords): Use "cl--" prefix.
10711 * edmacro.el (edmacro-mismatch): Simplify to remove dependence on
10712 CL's internals.
10713
10714 2012-06-11 Michael Albinus <michael.albinus@gmx.de>
10715
10716 Sync with Tramp 2.2.6-pre.
10717
10718 * net/tramp-cache.el (tramp-dump-connection-properties): Let-bind
10719 `print-length' and `print-level' to nil, in order to avoid
10720 truncation. Reported by Christopher Schmidt
10721 <christopher@ristopher.com>.
10722
10723 * net/tramp-cmds.el (tramp-cleanup-connection): Delete also process.
10724
10725 * net/tramp-compat.el (tramp-compat-condition-case-unless-debug):
10726 New defmacro.
10727 (tramp-compat-copy-directory): Add optional argument
10728 COPY-CONTENTS. It is not handled yet.
10729
10730 * net/tramp-ftp.el (tramp-disable-ange-ftp): Fix docstring.
10731 (tramp-ftp-file-name-p): Simplify.
10732
10733 * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name):
10734 * net/tramp-gw.el (tramp-gw-open-connection): Add hop to
10735 connection vector.
10736
10737 * net/tramp-sh.el (tramp-copy-size-limit): Fix docstring.
10738 (tramp-methods): Do not use `tramp-password-end-of-line'.
10739 (tramp-completion-function-alist-putty): Handle UNIX case.
10740 (tramp-remote-path): Add "/opt/bin", "/opt/sbin" and "/opt/local/bin".
10741 (tramp-do-file-attributes-with-stat)
10742 (tramp-do-directory-files-and-attributes-with-stat) Return uid and
10743 gid as real numbers. They could run out of integer range on cygwin.
10744 (tramp-do-copy-or-rename-file-out-of-band): Better trace format.
10745 (tramp-sh-handle-expand-file-name): Handle hops.
10746 (tramp-open-connection-setup-interactive-shell):
10747 Use `tramp-cleanup'. Move check for busyboxes ...
10748 (tramp-find-shell): ... here. Simplify implementation.
10749 Set "remote-shell" property also for alternative shells.
10750 (tramp-remote-coding-commands): Check "test -c /dev/stdout".
10751 If failing, a regular file would be written otherwise.
10752 Reported by Dmitry Kurochkin <dmitry.kurochkin@gmail.com>.
10753 (tramp-find-inline-encoding): Cache the coding commands in the
10754 process cache. Apply test command on the remote side, if defined.
10755 (tramp-find-inline-compress): Cache the compress commands in the
10756 process cache.
10757 (tramp-compute-multi-hops): Save `tramp-default-proxies-alist'
10758 when requested. Handle hops.
10759 (tramp-current-connection): New defvar.
10760 (tramp-maybe-open-connection): Use `tramp-cleanup'.
10761 Throw `suppress', if there was a failed connection shortly before.
10762 Handle user interrupt. (Bug#10187)
10763 (tramp-get-inline-compress, tramp-get-inline-coding):
10764 Read connection properties from the process cache.
10765
10766 * net/tramp-smb.el (tramp-smb-server-version)
10767 (tramp-smb-wrong-passwd-regexp, tramp-smb-actions-with-tar):
10768 New defconsts.
10769 (tramp-smb-prompt): Extend for powershell prompt.
10770 (tramp-smb-file-name-handler-alist): Add handlers for
10771 `process-file', `shell-command' and `start-file-process'.
10772 (tramp-smb-winexe-program, tramp-smb-winexe-shell-command)
10773 (tramp-smb-winexe-shell-command-switch): New defcustoms.
10774 (tramp-smb-file-name-p): Simplify.
10775 (tramp-smb-action-with-tar, tramp-smb-handle-process-file)
10776 (tramp-smb-kill-winexe-function, tramp-smb-call-winexe)
10777 (tramp-smb-shell-quote-argument): New defuns.
10778 (tramp-smb-handle-copy-directory): Add COPY-CONTENTS argument.
10779 Implement using "tar". By this, time-stamps are preserved.
10780 (tramp-smb-handle-copy-file): Handle also the case of directories.
10781 (tramp-smb-do-file-attributes-with-stat)
10782 (tramp-smb-get-file-entries, tramp-smb-get-cifs-capabilities):
10783 Use `tramp-get-connection-buffer').
10784 (tramp-smb-handle-rename-file): Use "rename", when source and
10785 target are on the same share.
10786 (tramp-smb-maybe-open-connection): Handle wrong passwords.
10787 Use `tramp-smb-server-version'.
10788 (tramp-smb-wait-for-output): Remove prompt.
10789
10790 * net/tramp.el (top): Require 'cl.
10791 (tramp-methods, tramp-rsh-end-of-line):
10792 Remove `tramp-password-end-of-line' from docstring.
10793 (tramp-save-ad-hoc-proxies): New defcustom.
10794 (tramp-completion-function-alist): Adapt docstring.
10795 (tramp-default-password-end-of-line): Remove defcustom.
10796 (tramp-shell-prompt-pattern): Allow "[]" style prompts. (Bug#11065)
10797 (tramp-user-regexp, tramp-file-name-regexp-unified)
10798 (tramp-file-name-regexp-url): Extend regexp by hop separator.
10799 (tramp-postfix-hop-format, tramp-postfix-hop-regexp)
10800 (tramp-remote-file-name-spec-regexp): New defconst.
10801 (tramp-file-name-structure): Extend structure for hops.
10802 (tramp-get-method-parameter): Move up.
10803 (tramp-file-name-p, tramp-dissect-file-name)
10804 (with-parsed-tramp-file-name): Handle hops.
10805 (tramp-file-name-hop): New defun.
10806 (tramp-make-tramp-file-name): New optional arg HOP.
10807 (tramp-message-show-progress-reporter-message): New defvar.
10808 (tramp-with-progress-reporter): Use it. We cannot use
10809 `tramp-message-show-message' here, because this suppresses also
10810 error buffers.
10811 (tramp-error-with-buffer): Suppress buffer view, if
10812 `tramp-message-show-message' is nil.
10813 Use `tramp-get-connection-buffer'.
10814 (tramp-cleanup): New defun.
10815 (tramp-rfn-eshadow-update-overlay): Let-bind `non-essential' to `t'.
10816 (tramp-file-name-handler): If `debug-on-error' is set, propagate
10817 an error unchanged.
10818 (tramp-completion-handle-file-name-all-completions): Handle hops.
10819 Fix an error when called from ido.
10820 (tramp-completion-dissect-file-name): Use better local variable
10821 name. Add hop to the vector.
10822 (tramp-handle-insert-file-contents): Use progress-reporter for the
10823 whole scenario.
10824 (tramp-action-password): Let-bind `enable-recursive-minibuffers'
10825 to `t'.
10826 (tramp-check-for-regexp): Simplify search.
10827 (tramp-enter-password): Remove it. Move implementation ...
10828 (tramp-action-password): ... here.
10829 (tramp-mode-string-to-int, tramp-local-host-p)
10830 (tramp-make-tramp-temp-file, tramp-read-passwd)
10831 (tramp-clear-passwd, tramp-time-less-p, tramp-time-diff):
10832 Set tramp-autoload cookie.
10833
10834 * net/trampver.el: Update release number.
10835
10836 2012-06-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
10837 Michael Albinus <michael.albinus@gmx.de>
10838
10839 * net/tramp.el (tramp-set-completion-function): Fix docstring.
10840 (tramp-parse-group, tramp-parse-file)
10841 (tramp-parse-shostkeys-sknownhosts): New defuns.
10842 (tramp-parse-rhosts, tramp-parse-rhosts-group, tramp-parse-shosts)
10843 (tramp-parse-shosts-group, tramp-parse-sconfig)
10844 (tramp-parse-sconfig-group, tramp-parse-shostkeys)
10845 (tramp-parse-sknownhosts, tramp-parse-hosts)
10846 (tramp-parse-hosts-group, tramp-parse-passwd, tramp-parse-netrc):
10847 Use them.
10848 (tramp-parse-passwd-group, tramp-parse-netrc-group)
10849 (tramp-parse-putty-group): Don't narrow.
10850 (tramp-parse-putty): Make a loop.
10851 (tramp-file-name-handler): Catch the `suppress' signal.
10852
10853 2012-06-11 Chong Yidong <cyd@gnu.org>
10854
10855 * image.el (imagemagick-register-types): Put the ImageMagick entry
10856 at the end of image-type-file-name-regexps.
10857
10858 2012-06-11 Johan Bockgård <bojohan@gnu.org>
10859
10860 * emacs-lisp/pcase.el (pcase-UPAT, pcase-QPAT): New edebug specs.
10861 (pcase, pcase-let*, pcase-dolist): Use them.
10862
10863 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
10864
10865 * emacs-lisp/pcase.el (pcase--let*): New function.
10866 (pcase-let*): Use it. Use pcase--memoize to avoid repeated expansions.
10867 (pcase--expand): Use macroexp-let².
10868
10869 2012-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
10870
10871 * emacs-lisp/timer.el, emacs-lisp/syntax.el, emacs-lisp/smie.el:
10872 * emacs-lisp/ewoc.el, emacs-lisp/cconv.el, emacs-lisp/bytecomp.el:
10873 * emacs-lisp/byte-opt.el, emacs-lisp/autoload.el: Convert to cl-lib.
10874 * emacs-lisp/easymenu.el, emacs-lisp/easy-mmode.el:
10875 * emacs-lisp/derived.el: Use pcase instead of `cl'.
10876 * emacs-lisp/cl-lib.el: Get rid of special cl-macs auto load.
10877
10878 2012-06-10 Glenn Morris <rgm@gnu.org>
10879
10880 * mail/rmail.el (rmail-yank-current-message): Leave point at
10881 correct position. (Bug#11660)
10882
10883 2012-06-10 Chong Yidong <cyd@gnu.org>
10884
10885 * allout-widgets.el: Fix code header.
10886
10887 2012-06-10 Chong Yidong <cyd@gnu.org>
10888
10889 * cus-edit.el (customize-changed-options-previous-release):
10890 Bump to 24.1.
10891
10892 2012-06-09 Andreas Schwab <schwab@linux-m68k.org>
10893
10894 * Makefile.in (BIG_STACK_DEPTH): Enlarge to 2200.
10895
10896 2012-06-09 Chong Yidong <cyd@gnu.org>
10897
10898 * ebuff-menu.el (electric-buffer-list): Preserve header line.
10899
10900 2012-06-09 Martin Rudalics <rudalics@gmx.at>
10901
10902 * window.el (special-display-popup-frame): Don't use
10903 window--display-buffer (Bug#11651).
10904
10905 2012-06-09 Eli Zaretskii <eliz@gnu.org>
10906
10907 Fix parallel builds: make sure loaddefs.el is not being written
10908 while Lisp files are compiled.
10909 (compile): Don't depend on 'mh-autoloads'.
10910 (compile-CMD, compile-SH): Depend on 'autoloads'.
10911 (bootstrap): Don't depend on 'autoloads' and 'mh-autoloads'.
10912
10913 * makefile.w32-in (BIG_STACK_DEPTH): Enlarge to 2200. (Bug#11649)
10914
10915 2012-06-09 Chong Yidong <cyd@gnu.org>
10916
10917 * face-remap.el (face-remap-add-relative, face-remap-set-base)
10918 (buffer-face-set, buffer-face-toggle, buffer-face-mode-invoke):
10919 Doc fixes (Bug#11225).
10920
10921 2012-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
10922
10923 * emacs-lisp/macroexp.el (macroexp--expand-all): Only autoload
10924 a function if there's a clear indication that it has a compiler-macro.
10925 * emacs-lisp/byte-run.el (defun-declarations-alist, defmacro, defun)
10926 (macro-declarations-alist): Add arglist to declaration functions.
10927 (defun-declarations-alist): Add `obsolete' and `compiler-macro'.
10928 * emacs-lisp/cl-seq.el (cl-member, cl-assoc):
10929 * emacs-lisp/cl-lib.el (cl-list*, cl-adjoin):
10930 * emacs-lisp/cl-extra.el (cl-get): Use the new `declare' statement.
10931 Also add autoload to find the compiler macro.
10932 * emacs-lisp/cl-macs.el (eql) [compiler-macro]: Remove.
10933 (cl--compiler-macro-member, cl--compiler-macro-assoc)
10934 (cl--compiler-macro-adjoin, cl--compiler-macro-list*)
10935 (cl--compiler-macro-get): New functions, replacing calls to
10936 cl-define-compiler-macro.
10937 (cl-typep) [compiler-macro]: Use macroexp-let².
10938
10939 2012-06-08 Nick Dokos <nicholas.dokos@hp.com> (tiny change)
10940
10941 * calendar/icalendar.el (icalendar--parse-vtimezone): Import TZID
10942 string properly, fixes Bug#11473.
10943
10944 2012-06-08 Chong Yidong <cyd@gnu.org>
10945
10946 * faces.el (set-face-attribute): Doc fix.
10947 (modify-face): Don't use :bold and :italic.
10948 (error, warning, success): Tweak definitions.
10949
10950 * cus-edit.el (custom-modified, custom-invalid, custom-rogue)
10951 (custom-modified, custom-set, custom-changed, custom-themed)
10952 (custom-saved, custom-button, custom-button-mouse)
10953 (custom-button-pressed, custom-state, custom-comment-tag)
10954 (custom-variable-tag, custom-group-tag-1, custom-group-tag)
10955 (custom-group-subtitle): Use new-style face specs.
10956 (custom-invalid-face, custom-rogue-face, custom-modified-face)
10957 (custom-set-face, custom-changed-face, custom-saved-face)
10958 (custom-button-face, custom-button-pressed-face)
10959 (custom-documentation-face, custom-state-face)
10960 (custom-comment-face, custom-comment-tag-face)
10961 (custom-variable-tag-face, custom-variable-button-face)
10962 (custom-face-tag-face, custom-group-tag-face-1)
10963 (custom-group-tag-face): Remove obsolete face alias.
10964
10965 * epa.el (epa-validity-high, epa-validity-medium)
10966 (epa-validity-low, epa-mark, epa-field-name, epa-string)
10967 (epa-field-name, epa-field-body):
10968 * font-lock.el (font-lock-comment-face, font-lock-string-face)
10969 (font-lock-keyword-face, font-lock-builtin-face)
10970 (font-lock-function-name-face, font-lock-variable-name-face)
10971 (font-lock-type-face, font-lock-constant-face):
10972 * ido.el (ido-first-match, ido-only-match, ido-subdir)
10973 (ido-virtual, ido-indicator, ido-incomplete-regexp):
10974 * speedbar.el (speedbar-button-face, speedbar-file-face)
10975 (speedbar-directory-face, speedbar-tag-face)
10976 (speedbar-selected-face, speedbar-highlight-face)
10977 (speedbar-separator-face):
10978 * whitespace.el (whitespace-newline, whitespace-space)
10979 (whitespace-hspace, whitespace-tab, whitespace-trailing)
10980 (whitespace-line, whitespace-space-before-tab)
10981 (whitespace-space-after-tab, whitespace-indentation)
10982 (whitespace-empty):
10983 * emulation/cua-base.el (cua-global-mark):
10984 * eshell/em-prompt.el (eshell-prompt):
10985 * net/newst-plainview.el (newsticker-new-item-face)
10986 (newsticker-old-item-face, newsticker-immortal-item-face)
10987 (newsticker-obsolete-item-face, newsticker-date-face)
10988 (newsticker-statistics-face, newsticker-default-face):
10989 * net/newst-reader.el (newsticker-feed-face)
10990 (newsticker-extra-face, newsticker-enclosure-face):
10991 * net/newst-treeview.el (newsticker-treeview-face)
10992 (newsticker-treeview-new-face, newsticker-treeview-old-face)
10993 (newsticker-treeview-immortal-face)
10994 (newsticker-treeview-obsolete-face)
10995 (newsticker-treeview-selection-face):
10996 * net/rcirc.el (rcirc-my-nick, rcirc-other-nick)
10997 (rcirc-bright-nick, rcirc-server, rcirc-timestamp)
10998 (rcirc-nick-in-message, rcirc-nick-in-message-full-line)
10999 (rcirc-prompt, rcirc-track-keyword, rcirc-url, rcirc-keyword):
11000 * nxml/nxml-outln.el (nxml-heading, nxml-outline-indicator)
11001 (nxml-outline-active-indicator, nxml-outline-ellipsis):
11002 * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
11003 (mpuz-text):
11004 * progmodes/vera-mode.el (vera-font-lock-number)
11005 (vera-font-lock-function, vera-font-lock-interface):
11006 * textmodes/table.el (table-cell): Use new-style face specs, and
11007 don't use the old :bold and :italic attributes.
11008
11009 * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
11010 (ebrowse-member-attribute, ebrowse-default, ebrowse-file-name)
11011 (ebrowse-member-class, ebrowse-progress): Likewise.
11012 (ebrowse-tree-mark-face, ebrowse-root-class-face)
11013 (ebrowse-file-name-face, ebrowse-default-face)
11014 (ebrowse-member-attribute-face, ebrowse-member-class-face)
11015 (ebrowse-progress-face): Remove obsolete faces.
11016
11017 * progmodes/flymake.el (flymake-errline, flymake-warnline):
11018 Inherit from error and warning faces respectively.
11019
11020 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
11021 Likewise.
11022 (flyspell-incorrect-face, flyspell-duplicate-face):
11023 Remove obsolete aliases.
11024
11025 2012-06-08 Michael Albinus <michael.albinus@gmx.de>
11026
11027 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
11028 Avoid infloop.
11029
11030 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
11031
11032 * startup.el (argv, argi): Make lexically scoped.
11033 * emacs-lisp/float-sup.el (pi): Use internal-make-var-non-special.
11034 * emacs-lisp/cl-macs.el: Use lexical-binding.
11035 Rename cl-bind-* to cl--bind-*.
11036 * files.el: Don't require `cl' since it doesn't use it.
11037 * emacs-lisp/pcase.el, emacs-lisp/macroexp.el: Add coding cookie.
11038
11039 2012-06-08 Juanma Barranquero <lekktu@gmail.com>
11040
11041 * textmodes/texinfmt.el: Fix bug#11640 (reverts part of 2008-07-31T05:33:56Z!dann@ics.uci.edu).
11042 (texinfo-format-printindex): Use `texinfo-sort-region' in all platforms,
11043 instead of calling external sort utility.
11044 (texinfo-sort-region, texinfo-sort-startkeyfun): Restore functions.
11045
11046 2012-06-08 Eli Zaretskii <eliz@gnu.org>
11047
11048 * descr-text.el (describe-char): Mention how to insert the
11049 character, if the current input method doesn't support it.
11050 See the discussion in this thread for the details:
11051 http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00533.html.
11052
11053 2012-06-08 Sam Steingold <sds@gnu.org>
11054
11055 * bindings.el (global-map): Bind XF86Forward to next-buffer and
11056 XF86Back to previous-buffer.
11057 (minibuffer-local-map): Bind them to next-history-element and
11058 previous-history-element respectively.
11059 * help-mode.el (help-mode-map): Bind them to help-go-forward and
11060 help-go-back respectively.
11061 * info.el (Info-mode-map): Bind them to Info-history-forward and
11062 Info-history-back respectively.
11063 These are the keys next to Up on the ThinkPad keyboard.
11064
11065 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
11066
11067 Get rid of cl-lexical-let, keeping only lexical-let for compatibility.
11068 * emacs-lisp/cl-macs.el: Provide itself.
11069 (cl--labels-convert-cache): New var.
11070 (cl--labels-convert): New function.
11071 (cl-flet, cl-labels): New implementation with new semantics, relying on
11072 lexical-binding.
11073 * emacs-lisp/cl.el: Mark compatibility aliases as obsolete.
11074 (cl-closure-vars, cl--function-convert-cache)
11075 (cl--function-convert): Move from cl-macs.el.
11076 (lexical-let, lexical-let*, flet, labels): Move from cl-macs.el and
11077 rename by removing the "cl-" prefix.
11078 * emacs-lisp/macroexp.el (macroexp-unprogn): New function.
11079
11080 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
11081
11082 * emacs-lisp/cl.el (cl-macroexpand, cl-macro-environment)
11083 (cl-macroexpand-all, cl-not-hash-table, cl-builtin-gethash)
11084 (cl-builtin-remhash, cl-builtin-clrhash, cl-builtin-maphash)
11085 (cl-map-keymap, cl-copy-tree, cl-gethash, cl-puthash, cl-remhash)
11086 (cl-clrhash, cl-maphash, cl-make-hash-table, cl-hash-table-p)
11087 (cl-hash-table-count): Add old compatibility aliases.
11088
11089 * emacs-lisp/cl-macs.el (cl-macro-environment): Remove var.
11090 Use macroexpand-all-environment instead.
11091 (cl--old-macroexpand): New var.
11092 (cl--sm-macroexpand): New function.
11093 (cl-symbol-macrolet): Use it during macro expansion.
11094 (cl--function-convert-cache): New var.
11095 (cl--function-convert): New function, extracted from
11096 cl-macroexpand-all.
11097 (cl-lexical-let): Use it.
11098
11099 * emacs-lisp/cl-lib.el (cl-macro-environment): Remove decl.
11100 (cl-macroexpand): Move to cl-macs.el and rename to cl--sm-macroexpand.
11101 (cl-member): Remove old alias.
11102
11103 * emacs-lisp/cl-extra.el (cl-map-keymap, cl-copy-tree)
11104 (cl-not-hash-table, cl-builtin-gethash, cl-builtin-remhash)
11105 (cl-builtin-clrhash, cl-builtin-maphash, cl-gethash, cl-puthash)
11106 (cl-remhash, cl-clrhash, cl-maphash, cl-make-hash-table)
11107 (cl-hash-table-p, cl-hash-table-count): Move to cl.el.
11108 (cl-macroexpand-cmacs): Remove var.
11109 (cl-macroexpand-all, cl-macroexpand-body): Remove funs.
11110 Use macroexpand-all instead.
11111
11112 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
11113
11114 * emacs-lisp/macroexp.el (macroexp-progn, macroexp-let*, macroexp-if)
11115 (macroexp-let², macroexp--const-symbol-p, macroexp-const-p)
11116 (macroexp-copyable-p): New functions and macros.
11117 * emacs-lisp/edebug.el (edebug-unwrap):
11118 * emacs-lisp/disass.el (disassemble-internal): Use macroexp-progn.
11119 * emacs-lisp/pcase.el: Use macroexp-let*, macroexp-if, ...
11120 (pcase--let*): Remove.
11121 * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p)
11122 (byte-compile-constp): Remove. Use macroexp--const-symbol-p and
11123 macroexp-const-p instead.
11124 * emacs-lisp/byte-opt.el: Use macroexp-const-p and macroexp-progn.
11125
11126 * emacs-lisp/cl-macs.el: Clean up the name space by using "cl--"
11127 instead of "cl-" for internal definitions. Use macroexp-const-p.
11128 (cl-old-bc-file-form): Remove var.
11129 (cl-const-exprs-p): Remove fun.
11130 (cl-labels, cl-macrolet): Use backquote.
11131 (cl-lexical-let): Use cl-symbol-macrolet. Don't use cl-defun-expander.
11132 (cl-defun-expander, cl-byte-compile-compiler-macro): Remove fun.
11133 (cl-define-setf-expander): Rename from cl-define-setf-method.
11134 * emacs-lisp/cl.el: Adjust alias for define-setf-method.
11135
11136 * international/mule-cmds.el: Don't require CL.
11137 (view-hello-file): Don't use `letf'.
11138
11139 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
11140
11141 * tmm.el (tmm-prompt): Use string-prefix-p.
11142 (tmm-completion-delete-prompt): Don't affect current-buffer outside.
11143 (tmm-add-prompt): Use minibuffer-completion-help.
11144 (tmm-delete-map): Remove.
11145
11146 * subr.el (kbd): Make it its own function.
11147
11148 2012-06-07 Stefan Merten <smerten@oekonux.de>
11149
11150 * textmodes/rst.el: Use `eval-when-compile' for requiring `cl.el'.
11151 Silence compiler warnings. Fix versions.
11152 (rst-position-if, rst-position, rst-some, rst-signum): New functions.
11153 (rst-shift-region, rst-adornment-level, rst-compute-tabs)
11154 (rst-indent-line, rst-shift-region, rst-forward-line): Use them.
11155 (rst-package-emacs-version-alist): Correct Emacs version to
11156 represent major merge with upstream.
11157 (rst-transition, rst-adornment, rst-compile-toolsets): Fix versions.
11158
11159 2012-06-06 Glenn Morris <rgm@gnu.org>
11160
11161 * mail/emacsbug.el (report-emacs-bug): Add relevant EMACS env-vars.
11162 Only print environment variables if set.
11163
11164 2012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
11165
11166 * emacs-lisp/macroexp.el: Don't require CL since we don't use it.
11167 (macroexp--cons): Rename from maybe-cons.
11168 (macroexp--accumulate): Rename from macroexp-accumulate.
11169 (macroexp--all-forms): Rename from macroexpand-all-forms.
11170 (macroexp--all-clauses): Rename from macroexpand-all-clauses.
11171 (macroexp--expand-all): Rename from macroexpand-all-1.
11172
11173 2012-06-06 Sam Steingold <sds@gnu.org>
11174
11175 * calendar/calendar.el (calendar-in-read-only-buffer):
11176 Call `special-mode' to enable the standard read-only keybindings.
11177
11178 2012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
11179
11180 * emacs-lisp/macroexp.el (macroexpand-all-1): Don't spam the output
11181 with "loading" messages (bug#11635).
11182
11183 2012-06-06 Michael Albinus <michael.albinus@gmx.de>
11184
11185 * files.el (enable-remote-dir-locals): New option.
11186 (hack-dir-local-variables): Use it. (Bug#1933, Bug#6731)
11187
11188 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
11189 Ensure, that the temp directory is local.
11190
11191 * net/tramp-sh.el (tramp-sh-handle-write-region): Let-bind
11192 `temporary-file-directory'.
11193
11194 * progmodes/python.el (python-send-region): Ensure, that the
11195 temporary file is created also in the remote case.
11196
11197 2012-06-06 Glenn Morris <rgm@gnu.org>
11198
11199 * vc/vc-rcs.el (vc-rcs-rcs2log-program): New.
11200 (vc-rcs-update-changelog): Use it.
11201
11202 * emacs-lisp/authors.el (authors-fixed-entries): Remove vcdiff.
11203
11204 * vc/vc-sccs.el (vc-sccs-write-revision): New function.
11205 (vc-sccs-workfile-unchanged-p): Use vc-sccs-write-revision.
11206 (vc-sccs-diff): Replace use of the external vcdiff script.
11207
11208 2012-06-05 Glenn Morris <rgm@gnu.org>
11209
11210 * ledit.el: Move to obsolete/.
11211
11212 2012-06-05 Sam Steingold <sds@gnu.org>
11213
11214 * calendar/calendar.el (calendar-exit): Reinstate the 2012-03-28
11215 patch (Bug#11140).
11216
11217 2012-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
11218
11219 * emacs-lisp/cust-print.el: Move to obsolete.
11220
11221 * emacs-lisp/macroexp.el (macroexpand-all-1): Tolerate errors during
11222 compiler-macro expansion.
11223
11224 Add native compiler-macro support.
11225 * emacs-lisp/macroexp.el (macroexpand-all-1):
11226 Support compiler-macros directly. Properly follow aliases and apply
11227 the compiler macros more thoroughly.
11228 * emacs-lisp/cl.el: Don't copy compiler-macro properties any more since
11229 macroexpand now properly follows aliases.
11230 * emacs-lisp/cl-macs.el (toplevel, cl-define-compiler-macro)
11231 (cl-compiler-macroexpand): Use new prop.
11232 * emacs-lisp/byte-opt.el (featurep): Optimize earlier.
11233
11234 * emacs-lisp/cl-lib.el (custom-print-functions): Add alias.
11235
11236 2012-06-05 Martin Rudalics <rudalics@gmx.at>
11237
11238 * window.el (get-lru-window, get-mru-window, get-largest-window):
11239 New argument NOT-SELECTED to avoid picking the selected window.
11240 (window--display-buffer-1, window--display-buffer-2): Replace by
11241 new function window--display-buffer
11242 (display-buffer-same-window, display-buffer-reuse-window)
11243 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
11244 Use window--display-buffer.
11245 (display-buffer-use-some-window): Remove temporary dedication
11246 hack by calling get-lru-window and get-largest-window with
11247 NOT-SELECTED argument non-nil. Call window--display-buffer.
11248
11249 2012-06-05 Glenn Morris <rgm@gnu.org>
11250
11251 * vc/vc-sccs.el (vc-sccs-workfile-unchanged-p):
11252 Replace external vcdiff script.
11253
11254 2012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
11255
11256 * emacs-lisp/cl-lib.el (cl-values, cl-values-list): Fix up last change.
11257
11258 2012-06-04 Chong Yidong <cyd@gnu.org>
11259
11260 * image.el (imagemagick-types-inhibit): Revert last change.
11261 Add INFO and M.
11262 (imagemagick-enabled-types): Remove CIN and EPS*.
11263
11264 2012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
11265
11266 * emacs-lisp/cl-lib.el: Rename from cl.el.
11267 * emacs-lisp/cl.el: New compatibility file.
11268 * emacs-lisp/cl-lib.el, emacs-lisp/cl-seq.el, emacs-lisp/cl-macs.el:
11269 * emacs-lisp/cl-extra.el: Rename all top-level functions and variables
11270 to obey the "cl-" prefix.
11271 * emacs-lisp/macroexp.el (macroexpand-all-1): Adjust to new name.
11272
11273 2012-06-03 Glenn Morris <rgm@gnu.org>
11274
11275 * emacs-lisp/authors.el (authors-aliases): Addition.
11276
11277 * cus-start.el (tool-bar-style, tool-bar-max-label-size):
11278 Fix :version.
11279
11280 2012-06-03 Stefan Merten <smerten@oekonux.de>
11281
11282 * textmodes/rst.el: Add comments.
11283 (rst-transition, rst-adornment): New faces.
11284 (rst-adornment-faces-alist): Make default safe to reevaluate.
11285 Fixes
11286 http://sourceforge.net/tracker/?func=detail&atid=422030&aid=3479603&group_id=38414.
11287 Improve customization tags.
11288 (rst-define-level-faces): Clarify meaning.
11289
11290 2012-06-03 Chong Yidong <cyd@gnu.org>
11291
11292 * progmodes/compile.el (compilation-mode-line-fail)
11293 (compilation-mode-line-run, compilation-mode-line-exit):
11294 New faces.
11295 (compilation-start, compilation-handle-exit): Use them (Bug#11032).
11296
11297 2012-06-03 Jack Duthen <duthen.mac.01@gmail.com> (tiny change)
11298
11299 * progmodes/which-func.el (which-func-update-ediff-windows):
11300 New function. Use it in ediff-select-hook (Bug#11478).
11301
11302 2012-06-03 Chong Yidong <cyd@gnu.org>
11303
11304 * bindings.el: Remove explicit help text from format-mode-line.
11305 It is now supplied by mode-line-default-help-echo.
11306 (mode-line-front-space, mode-line-end-spaces)
11307 (mode-line-misc-info): New variables.
11308 (mode-line-modes, mode-line-position): Move the default value to
11309 the variable definition.
11310 (mode-line-default-help-echo): New defcustom.
11311 (mode-line-mule-info-help-echo, mode-line-read-only-help-echo)
11312 (mode-line-modified-help-echo): New functions.
11313 (mode-line-mule-info, mode-line-modified): Use them.
11314 (mode-line-eol-desc, propertized-buffer-identification):
11315 Consistency fixes for help text.
11316 (mode-line-coding-system-map): Allow using mouse-3 to invoke
11317 set-buffer-file-coding-system (Bug#289).
11318 (mode-line-mule-info-help-echo): Update help text.
11319
11320 2012-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
11321
11322 * simple.el (execute-extended-command): Set real-this-command
11323 (bug#11506).
11324
11325 2012-06-02 Chong Yidong <cyd@gnu.org>
11326
11327 Remove incorrect uses of "modeline" in comments, docstrings, and
11328 function/variable names (Bug#10329).
11329
11330 * cus-edit.el (mode-line):
11331 * dframe.el (dframe-mouse-hscroll):
11332 * emacs-lisp/re-builder.el:
11333 * emacs-lisp/easy-mmode.el (define-minor-mode):
11334 * frame.el (set-frame-name):
11335 * help.el (lookup-minor-mode-from-indicator):
11336 * net/rcirc.el (rcirc-activity-string, rcirc-short-buffer-name):
11337 * progmodes/cc-cmds.el (c-toggle-auto-newline)
11338 (c-toggle-hungry-state):
11339 * progmodes/antlr-mode.el (antlr-language-alist):
11340 * progmodes/idlw-shell.el (idlwave-shell-electric-stop-line-face):
11341 * progmodes/vhdl-mode.el (vhdl-mode):
11342 * progmodes/which-func.el (which-func, which-func-cleanup-function):
11343 * term/ns-win.el (ns-face-at-pos):
11344 * term/sup-mouse.el (sup-mouse-report):
11345 * textmodes/flyspell.el (flyspell-mode-line-string):
11346 * textmodes/ispell.el (ispell-highlight-face):
11347 * textmodes/reftex-global.el:
11348 * vc/vc-arch.el (vc-arch-mode-line-string):
11349 * vc/vc-cvs.el (vc-cvs-mode-line-string):
11350 * vc/vc-git.el (vc-git-mode-line-string):
11351 * vc/vc-hooks.el (vc-display-status)
11352 (vc-default-mode-line-string):
11353 * vc/vc-mtn.el (vc-mtn-mode-line-string): Doc fixes.
11354
11355 * ansi-color.el (ansi-color-faces-vector): Change default faces.
11356
11357 * dired.el (dired-sort-set-mode-line): Rename from
11358 dired-sort-set-modeline. All callers changed.
11359
11360 * eshell/esh-mode.el (eshell-status-in-mode-line): Rename from
11361 eshell-status-in-modeline.
11362
11363 * foldout.el (foldout-mode-line-string): Rename from
11364 foldout-modeline-string. All callers changed.
11365 (foldout-update-mode-line): Rename from foldout-update-modeline.
11366
11367 * subr.el (redraw-modeline): Make into obsolete alias.
11368
11369 * calendar/timeclock.el (timeclock-mode-line-display): Rename from
11370 timeclock-modeline-display. Make old name an alias.
11371 (timeclock-update-mode-line): Likewise. All callers changed.
11372 (timeclock-mode-line-display): No need to check before using
11373 add-hook.
11374 (timeclock-relative, timeclock-day-over-hook)
11375 (timeclock-use-elapsed, timeclock-mode-string)
11376 (timeclock-mode-line-display): Doc fix, "modeline" -> "mode line".
11377
11378 * emulation/crisp.el (crisp-mode-mode-line-string): Rename from
11379 crisp-mode-modeline-string.
11380
11381 * play/solitaire.el (solitaire-build-mode-line): Rename from
11382 solitaire-build-modeline. All callers changed.
11383
11384 * play/zone.el (zone-hiding-mode-line): Rename from
11385 zone-hiding-modeline. All callers changed.
11386 (zone): Remove unusued `modeline-hidden-level' property.
11387
11388 * progmodes/xscheme.el (xscheme-mode-line-initialize): Rename from
11389 xscheme-modeline-initialize. All callers changed.
11390
11391 * strokes.el (strokes-lighter): Rename from
11392 strokes-modeline-string.
11393
11394 * textmodes/sgml-mode.el (html-face-tag-alist)
11395 (html-tag-face-alist): Use mode-line face instead of obsolete
11396 alias modeline.
11397
11398 2012-06-02 Stefan Merten <smerten@oekonux.de>
11399
11400 * textmodes/rst.el: Always require `cl'.
11401 (rst-mode-map): Fix meaning of C-M-a / C-M-e.
11402
11403 2012-06-02 Chong Yidong <cyd@gnu.org>
11404
11405 * image.el (imagemagick-enabled-types): Rename from
11406 imagemagick-types-enable. Add many more types.
11407 (imagemagick-types-inhibit): Change default to nil.
11408 (imagemagick-filter-types): Caller changed.
11409
11410 2012-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
11411
11412 * emacs-lisp/cl-macs.el: Use backquotes.
11413 (cl-transform-function-property): Use eval-and-compile rather than
11414 abusing `require'.
11415 (defstruct): Use declare-function instead of with-no-warnings.
11416
11417 * emacs-lisp/bytecomp.el: Fix last change (bug#11594).
11418 (byte-compile-output-docform): Re-add the print-circle bindings.
11419 (byte-compile-fix-header): Use #$ just because it's shorter.
11420 (byte-compile-output-file-form): Remove defun/defmacro.
11421
11422 2012-06-01 Martin Rudalics <rudalics@gmx.at>
11423
11424 * simple.el (choose-completion): Remove now obsolete binding for
11425 owindow.
11426
11427 2012-06-01 Michael Albinus <michael.albinus@gmx.de>
11428
11429 * net/tramp.el (tramp-check-for-regexp): Search from buffer end,
11430 in order to avoid "Stack overflow in regexp matcher".
11431
11432 2012-05-31 Glenn Morris <rgm@gnu.org>
11433
11434 * image.el: For clarity, call imagemagick-register-types at
11435 top-level, rather than relying on a custom :initialize.
11436 (imagemagick-types-enable): New option. (Bug#11557)
11437 (imagemagick-filter-types): New function. (Bug#7406)
11438 (imagemagick-register-types): Use imagemagick-filter-types.
11439 If disabling support, remove elements altogether rather
11440 than using an impossible regexp.
11441 (imagemagick-types-inhibit): Give it the default init function.
11442
11443 2012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
11444
11445 * emacs-lisp/bytecomp.el (byte-compile-fix-header):
11446 Handle arbitrary file name lengths (Bug#11585).
11447
11448 2012-05-31 Martin Rudalics <rudalics@gmx.at>
11449
11450 * desktop.el (desktop-read): Clear previous and next buffers for
11451 all windows and bury *Messages* buffer (bug#11556).
11452
11453 2012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
11454
11455 Add `declare' for `defun'. Align `defmacro's with it.
11456 * emacs-lisp/easy-mmode.el (define-minor-mode)
11457 (define-globalized-minor-mode): Don't autoload the var definitions.
11458 * emacs-lisp/byte-run.el: Use lexical-binding.
11459 (defun-declarations-alist, macro-declarations-alist): New vars.
11460 (defmacro, defun): Use them.
11461 (make-obsolete, define-obsolete-function-alias)
11462 (make-obsolete-variable, define-obsolete-variable-alias):
11463 Use `declare'.
11464 (macro-declaration-function): Mark obsolete.
11465 * emacs-lisp/autoload.el: Use lexical-binding.
11466 (make-autoload): Add `expansion' arg. Rely more on macro expansion.
11467
11468 2012-05-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
11469
11470 * textmodes/ispell.el (ispell-with-no-warnings):
11471 Define as a macro.
11472 (ispell-kill-ispell, ispell-change-dictionary):
11473 Use `called-interactively-p' for Emacs instead of obsolete
11474 `interactive-p'.
11475
11476 2012-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
11477
11478 * emacs-lisp/byte-run.el (defmacro, defun): Move from C.
11479 (macro-declaration-function): Move var from C code.
11480 (macro-declaration-function): Define function with defalias.
11481 * emacs-lisp/macroexp.el (macroexpand-all-1):
11482 * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form):
11483 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Don't handle
11484 defun/defmacro any more.
11485 * emacs-lisp/bytecomp.el (byte-compile-arglist-signature):
11486 Provide fallback for unknown arglist.
11487 (byte-compile-arglist-warn): Change calling convention.
11488 (byte-compile-output-file-form): Move print-vars binding.
11489 (byte-compile-output-docform): Simplify accordingly.
11490 (byte-compile-file-form-defun, byte-compile-file-form-defmacro)
11491 (byte-compile-defmacro-declaration): Remove.
11492 (byte-compile-file-form-defmumble): Generalize to defalias.
11493 (byte-compile-output-as-comment): Return byte-positions.
11494 Simplify callers accordingly.
11495 (byte-compile-lambda): Use `assert'.
11496 (byte-compile-defun, byte-compile-defmacro): Remove.
11497 (byte-compile-file-form-defalias):
11498 Use byte-compile-file-form-defmumble.
11499 (byte-compile-defalias-warn): Remove.
11500
11501 2012-05-29 Stefan Merten <smerten@oekonux.de>
11502
11503 * textmodes/rst.el: Silence `checkdoc-ispell' errors where
11504 possible. Fix authors. Improve comments. Improve loading of `cl'.
11505
11506 (rst-mode-abbrev-table): Merge definition.
11507 (rst-mode): Make sure `font-lock-defaults' is buffer local.
11508 (rst-define-key, rst-deprecated-keys, rst-call-deprecated): Refactor.
11509
11510 2012-05-29 Ulf Jasper <ulf.jasper@web.de>
11511
11512 * calendar/icalendar.el
11513 (icalendar-export-region): Export UID properly.
11514
11515 2012-05-29 Leo Liu <sdl.web@gmail.com>
11516 * calendar/icalendar.el (icalendar-import-format):
11517 Add `icalendar-import-format-uid' (Bug#11525).
11518 (icalendar-import-format-uid): New.
11519 (icalendar--parse-summary-and-rest, icalendar--format-ical-event):
11520 Export UID.
11521
11522 2012-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
11523
11524 * emacs-lisp/pcase.el (pcase--expand): Accept different sets of vars in
11525 different alternative patterns.
11526 (pcase-codegen): Be more careful to preserve identity.
11527 (pcase--u1): Don't forget to mark vars as used.
11528
11529 * emacs-lisp/bytecomp.el (byte-compile-constp): Treat #'v as a constant.
11530 (byte-compile-close-variables): Bind byte-compile--outbuffer here...
11531 (byte-compile-from-buffer): ...rather than here.
11532
11533 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Don't re-preprocess
11534 functions from byte-compile-function-environment.
11535
11536 2012-05-29 Troels Nielsen <bn.troels@gmail.com>
11537
11538 * window.el (window-deletable-p): Avoid deleting the root window
11539 of a frame with an active minibuffer.
11540
11541 2012-05-29 Martin Rudalics <rudalics@gmx.at>
11542
11543 * simple.el (choose-completion): Use quit-window (Bug#11567).
11544
11545 2012-05-29 Chong Yidong <cyd@gnu.org>
11546
11547 * whitespace.el (whitespace-cleanup): Fix usage of
11548 whitespace-empty-at-bob-regexp (Bug#11492).
11549
11550 2012-05-29 Aaron S. Hawley <aaron.s.hawley@gmail.com>
11551
11552 * vc/vc.el (vc-revert, vc-rollback): Dont kill vc-diff buffer on
11553 revert (Bug#11488).
11554
11555 2012-05-29 Juri Linkov <juri@jurta.org>
11556
11557 * isearch.el (isearch-mode-map): Bind `M-s _' to
11558 `isearch-toggle-symbol'. Bind `M-s c' to
11559 `isearch-toggle-case-fold'.
11560 (search-map): Bind `M-s _' to `isearch-forward-symbol'.
11561 (isearch-forward): Add `M-s _' to the docstring.
11562 (isearch-forward-symbol, isearch-toggle-case-fold)
11563 (isearch-symbol-regexp): New functions. (Bug#11381)
11564
11565 2012-05-29 Juri Linkov <juri@jurta.org>
11566
11567 * isearch.el (isearch-word): Add docstring. (Bug#11381)
11568 (isearch-occur, isearch-search-and-update): If `isearch-word' is
11569 a function, call it to get the regexp.
11570 (isearch-message-prefix): If `isearch-word' holds a symbol, use its
11571 property `isearch-message-prefix' instead of the string "word ".
11572 (isearch-search-fun-default): For the case of `isearch-word',
11573 return a lambda that calls re-search-forward/re-search-backward
11574 with a regexp returned by `word-search-regexp' or by the function
11575 in `isearch-word'.
11576
11577 2012-05-29 Juri Linkov <juri@jurta.org>
11578
11579 * isearch.el (isearch-search-fun-default): New function.
11580 (isearch-search-fun): Move default part to the new function
11581 `isearch-search-fun-default'.
11582 (isearch-search-fun-function): Set the default value to
11583 `isearch-search-fun-default'. (Bug#11381)
11584
11585 * comint.el (comint-history-isearch-end):
11586 Use `isearch-search-fun-default'.
11587 (comint-history-isearch-search): Use `isearch-search-fun-default'
11588 and remove spacial case for `isearch-word'.
11589 (comint-history-isearch-wrap): Remove spacial case for
11590 `isearch-word'.
11591
11592 * hexl.el (hexl-isearch-search-function):
11593 Use `isearch-search-fun-default'.
11594
11595 * info.el (Info-isearch-search): Use `isearch-search-fun-default'.
11596 Use `word-search-regexp' for `isearch-word'.
11597
11598 * misearch.el (multi-isearch-search-fun):
11599 Use `isearch-search-fun-default'.
11600
11601 * simple.el (minibuffer-history-isearch-search):
11602 Use `isearch-search-fun-default' and remove spacial case for
11603 `isearch-word'.
11604 (minibuffer-history-isearch-wrap): Remove spacial case for
11605 `isearch-word'.
11606
11607 * textmodes/reftex-global.el (reftex-isearch-wrap-function):
11608 Remove spacial case for `isearch-word'.
11609 (reftex-isearch-isearch-search): Use `isearch-search-fun-default'.
11610
11611 2012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
11612
11613 Decrease XEmacs incompatibilities.
11614 * textmodes/flyspell.el (flyspell-check-pre-word-p):
11615 Use `string-match'.
11616 (flyspell-delete-region-overlays): Use alternative definition for
11617 XEmacs.
11618 (flyspell-delete-all-overlays): Use `flyspell-delete-region-overlays'.
11619 (flyspell-word): Use `process-kill-without-query' if XEmacs.
11620 (flyspell-mode-on): Use `interactive-p' if XEmacs.
11621 (flyspell-incorrect-face, flyspell-duplicate-face): Do not use
11622 `define-obsolete-face-alias' under XEmacs, but old method.
11623
11624 * textmodes/ispell.el (ispell-with-no-warnings): XEmacs alternative
11625 `with-no-warnings' definition or Emacs alias.
11626 (ispell-command-loop, ispell-message): Use `ispell-with-no-warnings'.
11627 (ispell-word): Do not use `region-p' if XEmacs.
11628
11629 2012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
11630
11631 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
11632 Check for `ispell-dictionary-base-alist' instead of full
11633 `ispell-dictionary-alist'.
11634 (ispell-init-process): Show spellchecker when starting new Ispell
11635 process.
11636
11637 2012-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
11638
11639 * progmodes/vhdl-mode.el: Sync with upstream 3.33.28.
11640 http://www.iis.ee.ethz.ch/~zimmi/emacs/vhdl-mode.html#release-notes-3.33
11641
11642 2012-05-27 Juanma Barranquero <lekktu@gmail.com>
11643
11644 * version.el (motif-version-string, gtk-version-string)
11645 (ns-version-string): Declare.
11646
11647 2012-05-27 Juri Linkov <juri@jurta.org>
11648
11649 * emacs-lisp/lisp-mode.el (eval-defun-2): Use `eval-sexp-add-defvars'
11650 after the `eval-defun-1' specialcaseing
11651 like in `edebug-eval-defun' (bug#10181).
11652
11653 * emacs-lisp/edebug.el (edebug-eval-defun): Set `face-documentation'
11654 like in `eval-defun-1'.
11655
11656 2012-05-27 Eli Zaretskii <eliz@gnu.org>
11657
11658 * mail/sendmail.el (mail-yank-region):
11659 Recognize rmail-yank-current-message in addition to insert-buffer.
11660 Fixes mail-mode's "C-c C-r" that otherwise does nothing when invoked in
11661 a *mail* buffer created through rmail-start-mail with sendmail as
11662 mail-user-agent.
11663
11664 2012-05-27 Chong Yidong <cyd@gnu.org>
11665
11666 * net/gnutls.el (gnutls-min-prime-bits): Improve docstring.
11667 Default to 256 (Bug#11267).
11668
11669 * help.el (describe-mode): Doc fix.
11670
11671 2012-05-26 Glenn Morris <rgm@gnu.org>
11672
11673 * w32-fns.el (w32-init-info): Remove.
11674 * paths.el (Info-default-directory-list): Add w32-init-info equivalent.
11675
11676 * info.el (info-initialize): For self-contained NS builds, put the
11677 included info/ directory at the front. (Bug#2791)
11678
11679 * paths.el (Info-default-directory-list): Make it a defcustom,
11680 mainly so that we can use custom-initialize-delay.
11681
11682 2012-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
11683
11684 * subr.el (buffer-has-markers-at): Mark obsolete.
11685
11686 * subr.el (lambda): Use declare.
11687
11688 * emacs-lisp/lisp-mode.el (lambda):
11689 * emacs-lisp/edebug.el (lambda): Move properties to its definition.
11690
11691 2012-05-26 Aaron S. Hawley <aaron.s.hawley@gmail.com>
11692
11693 * thingatpt.el (forward-same-syntax): Handle no ARG case. (Bug#11560)
11694
11695 2012-05-26 Glenn Morris <rgm@gnu.org>
11696
11697 * progmodes/cc-mode.el (auto-mode-alist): Fix typo.
11698
11699 2012-05-25 Glenn Morris <rgm@gnu.org>
11700
11701 * paths.el: Remove no-byte-compile.
11702 * loadup.el: No need to load paths.el uncompiled.
11703
11704 * image.el (imagemagick-types-inhibit): Doc fix.
11705
11706 * version.el: Remove no-byte-compile and associated formatting.
11707 * loadup.el: No need to load version.el uncompiled. AFAICS, this
11708 is ancient code from when there was an "inc-vers.el".
11709
11710 2012-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
11711
11712 * progmodes/gdb-mi.el: Minor style changes.
11713 (gdb-enable-debug, gdb-speedbar-auto-raise, gdb-many-windows):
11714 Turn into minor modes.
11715 (gdb--if-arrow): Rename from gdb-if-arrow, make it hygienic.
11716 (gdb-mouse-until, gdb-mouse-jump): Adjust uses accordingly.
11717 (gdb-shell): Remove unneeded let-binding.
11718 (gdb-get-many-fields): Eliminate O(n²) behavior.
11719
11720 2012-05-25 Eli Zaretskii <eliz@gnu.org>
11721
11722 * cus-start.el <vertical-centering-font-regexp>: Avoid warning on
11723 platforms that don't link in fontset.c.
11724
11725 2012-05-25 Juri Linkov <juri@jurta.org>
11726
11727 Use the same diff color scheme as in modern VCSes (bug#10181).
11728
11729 * vc/diff-mode.el (diff-header, diff-file-header): Remove "green"
11730 to avoid confusion with `diff-added' that now uses green colors.
11731 (diff-removed): Use shades of red.
11732 (diff-added): Use shades of green.
11733 (diff-changed): Leave just the yellow color.
11734 (diff-use-changed-face): New variable.
11735 (diff-font-lock-keywords): Use `diff-use-changed-face' to decide
11736 how to highlight context diff changes.
11737 (diff-refine-change): Use shades of yellow.
11738 (diff-refine-removed): New face that uses shades of red.
11739 (diff-refine-added): New face that uses shades of green.
11740 (diff-refine-hunk): Use `diff-refine-change', `diff-refine-added',
11741 `diff-refine-removed' in the call to `smerge-refine-subst'
11742 depending on the value of `diff-use-changed-face'.
11743
11744 * vc/smerge-mode.el (smerge-mine): Use shades of red.
11745 (smerge-other): Use shades of green.
11746 (smerge-base): Use shades of yellow.
11747 (smerge-refined-change): Empty face.
11748 (smerge-refined-removed): New face that uses shades of red.
11749 (smerge-refined-added): New face that uses shades of green.
11750 (smerge-refine-subst): Rename arg `props' to `props-c'. Add new
11751 args `props-r' and `props-a', and use them. Doc fix.
11752 (smerge-refine): Evaluate `smerge-use-changed-face' and depending
11753 on its value use different faces `smerge-refined-change',
11754 `smerge-refined-removed', `smerge-refined-added' in the call to
11755 `smerge-refine-subst'.
11756
11757 * vc/ediff-init.el (ediff-current-diff-A, ediff-fine-diff-A):
11758 Add face condition `min-colors 88' with shades of red.
11759 (ediff-current-diff-B, ediff-fine-diff-B): Add face condition
11760 `min-colors 88' with shades of green.
11761 (ediff-current-diff-C, ediff-fine-diff-C): Add face condition
11762 `min-colors 88' with shades of yellow.
11763
11764 2012-05-24 Glenn Morris <rgm@gnu.org>
11765
11766 * paths.el (prune-directory-list, remote-shell-program): Move to...
11767 * files.el (prune-directory-list, remote-shell-program): ...here.
11768 For the latter, delay initialization, prefer ssh, just search PATH.
11769
11770 * paths.el (term-file-prefix): Move to faces.el (the only user).
11771 * faces.el (term-file-prefix): Move here, make it a defcustom.
11772
11773 * paths.el (news-directory, news-path, news-inews-program):
11774 Move to gnus/nnspool.el.
11775
11776 * paths.el (gnus-default-nntp-server): Remove (gnus.el defines it).
11777
11778 * paths.el (rmail-file-name, rmail-spool-directory): Move from here...
11779 * mail/rmail.el (rmail-file-name, rmail-spool-directory): ... to here.
11780 Make the latter a defcustom, with a delayed initialization.
11781
11782 * paths.el (gnus-nntp-service, gnus-local-organization): Remove.
11783 These were deleted from Gnus itself late 2010.
11784
11785 2012-05-22 Juanma Barranquero <lekktu@gmail.com>
11786
11787 * progmodes/which-func.el (which-func-ff-hook):
11788 Check against user-error, not error.
11789
11790 * emacs-lisp/edebug.el (top): Do not load or set up loading of
11791 cl-specs.el, which no longer exists.
11792
11793 2012-05-22 Glenn Morris <rgm@gnu.org>
11794
11795 * info.el (info-emacs-bug): New command.
11796 * menu-bar.el (menu-bar-help-menu): Add "How to Report a Bug" to Help.
11797 * mail/emacsbug.el (report-emacs-bug): Replace with info-emacs-bug.
11798
11799 2012-05-21 Glenn Morris <rgm@gnu.org>
11800
11801 * makefile.w32-in (update-subdirs-SH):
11802 * Makefile.in (update-subdirs): Update for moved update-subdirs.
11803
11804 2012-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
11805
11806 * hi-lock.el (hi-lock-face-defaults): Move obsolete before definition.
11807
11808 * progmodes/compile.el (compilation-error-regexp-alist-alist):
11809 Simplify Maven regexp, and make sure the file can't start with a space
11810 (bug#11517).
11811
11812 2012-05-21 Glenn Morris <rgm@gnu.org>
11813
11814 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
11815 Scrap superfluous subshells.
11816
11817 2012-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
11818
11819 * emacs-lisp/bytecomp.el (byte-compile-root-dir): New var.
11820 (byte-compile-warning-prefix, batch-byte-compile-file): Use it.
11821
11822 2012-05-19 Jay Belanger <jay.p.belanger@gmail.com>
11823
11824 * calc/calc.el (calc-ensure-consistent-units): New variable.
11825
11826 * calc/calc-units.el (math-consistent-units-p)
11827 (math-check-unit-consistency): New functions.
11828 (calc-quick-units, calc-convert-units):
11829 Use `math-check-unit-consistency' when `calc-ensure-consistent-units'
11830 is non-nil.
11831 (calc-extract-units): Fix typo.
11832
11833 2012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
11834
11835 * vc/vc-bzr.el (vc-bzr-state-heuristic): Save match-data around sha1.
11836
11837 * textmodes/flyspell.el: Commenting style, plus code simplifications.
11838 (flyspell-default-deplacement-commands): Don't spell check after
11839 repeated window/frame switches (e.g. triggered by mouse-movement).
11840 (flyspell-delay-commands, flyspell-deplacement-commands): Use mapc.
11841 (flyspell-debug-signal-word-checked): Simplify and fit in 80 cols.
11842 (flyspell-casechars-cache, flyspell-ispell-casechars-cache)
11843 (flyspell-not-casechars-cache, flyspell-ispell-not-casechars-cache):
11844 Remove unused vars.
11845 (flyspell-get-casechars, flyspell-get-not-casechars):
11846 Simplify; Don't bother removing a ] just to add it back.
11847 * textmodes/ispell.el (ispell-program-name): Use executable-find.
11848
11849 2012-05-18 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
11850
11851 * calc/calc-lang.el (math-C-parse-bess, math-C-parse-fma):
11852 New functions.
11853 (math-function-table): Add support for more C functions.
11854
11855 2012-05-18 Agustín Martín Domingo <agustin.martin@hispalinux.es>
11856
11857 * textmodes/flyspell.el (flyspell-check-pre-word-p)
11858 (flyspell-check-word-p, flyspell-debug-signal-word-checked):
11859 Protect delay handling for otherchars against empty otherchars.
11860
11861 2012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
11862
11863 * emacs-lisp/lisp-mode.el (doc-string-elt): Move those properties to
11864 their respective macro declarations.
11865 * skeleton.el (define-skeleton):
11866 * progmodes/compile.el (define-compilation-mode):
11867 * ibuf-macs.el (define-ibuffer-sorter, define-ibuffer-op)
11868 (define-ibuffer-filter):
11869 * emacs-lisp/generic.el (define-generic-mode):
11870 * emacs-lisp/easy-mmode.el (define-minor-mode)
11871 (define-globalized-minor-mode):
11872 * emacs-lisp/cl-macs.el (defun*, defmacro*, defstruct, deftype):
11873 * emacs-lisp/byte-run.el (defsubst):
11874 * custom.el (deftheme): Add doc-string metadata.
11875
11876 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
11877
11878 * emacs-lisp/cl-macs.el, emacs-lisp/cl.el: Move indent info.
11879
11880 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
11881
11882 * emacs-lisp/pcase.el (pcase--u1): Avoid ((lambda ...) ...).
11883
11884 * emacs-lisp/cl.el: Add edebug specs from cl-specs.el.
11885 * emacs-lisp/cl-macs.el: Idem.
11886 * emacs-lisp/cl-specs.el: Remove.
11887
11888 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
11889
11890 Minor renaming of internal CL functions and variables.
11891 * emacs-lisp/cl-seq.el (cl--adjoin): Rename from cl-adjoin.
11892 (cl--position): Rename from cl-position.
11893 (cl--delete-duplicates): Rename from cl-delete-duplicates.
11894 * emacs-lisp/cl.el (cl--gensym-counter): Rename from *gensym-counter*.
11895 (cl--random-state): Rename from *random-state*.
11896
11897 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
11898
11899 * emacs-lisp/cl-macs.el (cl-transform-lambda): Don't add spurious
11900 parens around the arg list (bug#11499).
11901
11902 2012-05-17 Juri Linkov <juri@jurta.org>
11903
11904 * isearch.el (word-search-regexp, word-search-backward)
11905 (word-search-forward, word-search-backward-lax)
11906 (word-search-forward-lax): Move functions from search.c
11907 (bug#10145, bug#11381).
11908
11909 2012-05-16 Agustín Martín Domingo <agustin.martin@hispalinux.es>
11910
11911 * textmodes/flyspell.el (flyspell-check-pre-word-p)
11912 (flyspell-check-word-p, flyspell-debug-signal-word-checked):
11913 Delay for otherchars as for normal word components.
11914
11915 2012-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
11916
11917 * minibuffer.el (completion--sifn-requote): Fix last change.
11918 (minibuffer-local-must-match-filename-map):
11919 Move define-obsolete-variable-alias before its var.
11920
11921 2012-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
11922
11923 * emacs-lisp/pcase.el (pcase-let*, pcase-let): Fix edebug spec.
11924
11925 * minibuffer.el (completion--sifn-requote): Handle sifn's truncation
11926 behavior.
11927 (completion--string-equal-p): New function.
11928 (completion--twq-all): Use it to get better assertion failure data.
11929
11930 Only handle ".." and '..' quoting in shell-mode (bug#11466).
11931 * shell.el (shell--unquote&requote-argument, shell--unquote-argument)
11932 (shell--requote-argument): New functions.
11933 (shell-completion-vars): Use them.
11934 (shell--parse-pcomplete-arguments): Rename from
11935 shell-parse-pcomplete-arguments.
11936 * comint.el (comint-word): Obey comint-file-name-quote-list. Simplify.
11937 (comint--unquote&requote-argument): Don't handle ".." and '..' quoting.
11938 Obey comint-file-name-quote-list.
11939
11940 * emacs-lisp/smie.el (smie-indent--bolp-1): New function.
11941 (smie-indent-keyword): Use it.
11942
11943 2012-05-14 Stefan Merten <smerten@oekonux.de>
11944
11945 * textmodes/rst.el (rst-re-alist): Fix loading (bug#11462).
11946
11947 2012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
11948
11949 * net/rlogin.el (rlogin-mode-map): Fix last change.
11950
11951 2012-05-14 Jason L. Wright <jason.wright@inl.gov> (tiny change)
11952
11953 * mail/smtpmail.el (smtpmail-send-command): Send the command and
11954 the following \r\n using a single `process-send-string', since the
11955 Lotus SMTP server refuses to accept any commands if they are sent
11956 with two `process-send-string's (Bug#11444).
11957
11958 2012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
11959
11960 * shell.el (shell-parse-pcomplete-arguments):
11961 Obey pcomplete-arg-quote-list inside double-quoted args (Bug#11348).
11962
11963 2012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
11964
11965 * image-mode.el: Fit to width/height for rotated images (Bug#11431).
11966 (image-transform-scale, image-transform-right-angle-fudge): New vars.
11967 (image-transform-width, image-transform-fit-width): New functions.
11968 (image-transform-properties): Use them.
11969 (image-transform-check-size): New function.
11970 (image-toggle-display-image): Use it (for testing).
11971 (image-transform-set-rotation): Reduce angle mod 360.
11972 Delete obsolete comment.
11973
11974 2012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
11975
11976 * image-mode.el: Fix scaling (bug#11399).
11977 (image-transform-resize): Doc fix.
11978 (image-transform-properties): Default scale is 1 and height should
11979 be an integer.
11980
11981 2012-05-13 Johan Bockgård <bojohan@gnu.org>
11982
11983 * emacs-lisp/smie.el (smie-next-sexp): Use accessor `op-forw' rather
11984 than hard-coding `car', to fix misbehavior when moving forward.
11985
11986 2012-05-13 Chong Yidong <cyd@gnu.org>
11987
11988 * emacs-lisp/tabulated-list.el (tabulated-list-format)
11989 (tabulated-list-entries, tabulated-list-padding)
11990 (tabulated-list-sort-key): Make permanent-local.
11991
11992 * ebuff-menu.el: Adapt to Buffer Menu changes (Bug#11455).
11993 (electric-buffer-list): Put electric buffer menu
11994 command descriptions in this docstring, instead of the docstring
11995 of electric-buffer-menu-mode. Code cleanups.
11996 (electric-buffer-menu-mode): Use define-derived-mode. Rename from
11997 Electric-buffer-menu-mode.
11998 (electric-buffer-update-highlight): Minor code cleanup.
11999
12000 2012-05-13 Michael Albinus <michael.albinus@gmx.de>
12001
12002 * net/dbus.el (dbus-call-method): Restore events not from D-Bus.
12003 (Bug#11447)
12004
12005 2012-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
12006
12007 Move define-obsolete-variable-alias before the var's definition.
12008 * vc/log-edit.el (vc-comment-ring, vc-comment-ring-index):
12009 * tooltip.el (tooltip-hook):
12010 * textmodes/reftex-toc.el (reftex-toc-map):
12011 * textmodes/reftex-sel.el (reftex-select-label-map)
12012 (reftex-select-bib-map):
12013 * textmodes/reftex-index.el (reftex-index-map)
12014 (reftex-index-phrases-map):
12015 * speedbar.el (speedbar-syntax-table, speedbar-key-map):
12016 * progmodes/meta-mode.el (meta-mode-map):
12017 * novice.el (disabled-command-hook):
12018 * loadhist.el (unload-hook-features-list):
12019 * frame.el (blink-cursor):
12020 * files.el (find-file-not-found-hooks, write-file-hooks)
12021 (write-contents-hooks):
12022 * emulation/tpu-edt.el (GOLD-map):
12023 * emacs-lock.el (emacs-lock-from-exiting):
12024 * emacs-lisp/generic.el (generic-font-lock-defaults):
12025 * emacs-lisp/chart.el (chart-map):
12026 * dos-fns.el (register-name-alist):
12027 * dired-x.el (dired-omit-files-p):
12028 * desktop.el (desktop-enable):
12029 * cus-edit.el (custom-mode-hook):
12030 * buff-menu.el (buffer-menu-mode-hook):
12031 * bookmark.el (bookmark-read-annotation-text-func)
12032 (bookmark-exit-hooks):
12033 * allout.el (allout-mode-deactivate-hook)
12034 (allout-exposure-change-hook, allout-structure-added-hook)
12035 (allout-structure-deleted-hook, allout-structure-shifted-hook):
12036 * dirtrack.el (dirtrack-toggle, dirtrackp, dirtrack-debug-toggle)
12037 (dirtrack-debug): Move call to define-obsolete-variable-alias so it
12038 comes before the corresponding variable's definition.
12039
12040 2012-05-12 Chong Yidong <cyd@gnu.org>
12041
12042 * buff-menu.el (Buffer-menu-buffer+size-width): Doc fix (Bug#11454).
12043 (Buffer-menu-mouse-select): Restore function (Bug#11459).
12044 (Buffer-menu-mode-map): Bind it.
12045 (Buffer-menu--pretty-name): Add a mouse-face property.
12046
12047 2012-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
12048
12049 * progmodes/prolog.el: Use SMIE. Cleanup regexp setup.
12050 (prolog-upper-case-string, prolog-lower-case-string)
12051 (prolog-atom-char-regexp, prolog-atom-regexp): Initialize in defconst.
12052 (prolog-use-smie, prolog-smie-grammar): New vars.
12053 (prolog-smie-forward-token, prolog-smie-backward-token)
12054 (prolog-smie-rules): New funs.
12055 (prolog-comment-indent): Remove.
12056 (prolog-mode-variables): Use default comment indentation instead.
12057 Setup SMIE.
12058 (prolog-build-case-strings, prolog-set-atom-regexps): Remove.
12059 (prolog-mode): Don't call them any more.
12060 (prolog-electric-colon, prolog-electric-dash)
12061 (prolog-edit-menu-insert-move): Use indent-according-to-mode.
12062
12063 * dabbrev.el (dabbrev-expand): Make "no expansion found" a user-error.
12064
12065 * minibuffer.el (completion--twq-all): Again, allow case differences.
12066
12067 * term.el: Move keymap initialization code to be more idiomatic.
12068 (term-signals-menu, term-mode-map, term-raw-map, term-raw-escape-map)
12069 (term-terminal-menu): Move initialization into declaration.
12070 (term-escape-char): Let the user set it in her .emacs.
12071
12072 * progmodes/sh-script.el: Use post-self-insert-hook&electric-pair-mode.
12073 Provide SMIE-based indentation (not enabled by default yet).
12074 (sh-mode-map): Don't bind electric keys.
12075 Use electric-pair-mode instead of skeleton-pair.
12076 (sh-assignment-regexp): Fit within 80 columns.
12077 (sh-indent-supported): Specify actual shell name instead of boolean.
12078 (sh--maybe-here-document): New fun, from sh-maybe-here-document.
12079 (sh-maybe-here-document): Use it. Make obsolete.
12080 (sh-electric-here-document-mode) New minor mode.
12081 (sh-mode): Use it. Don't set sh-indent-supported-here here.
12082 (sh-smie-sh-grammar, sh-smie--sh-operators, sh-smie--sh-operators-re)
12083 (sh-smie--sh-operators-back-re, sh-indent-after-continuation)
12084 (sh-smie-rc-grammar, sh-use-smie): New vars.
12085 (sh-smie--keyword-p, sh-smie--newline-semi-p, sh-smie--sh-keyword-p)
12086 (sh-smie-sh-forward-token, sh-smie--looking-back-at-continuation-p)
12087 (sh-smie-sh-backward-token, sh-smie--continuation-start-indent)
12088 (sh-smie-sh-rules, sh-smie-rc-rules, sh-smie--sh-keyword-in-p)
12089 (sh-smie--rc-after-special-arg-p, sh-smie-rc-backward-token)
12090 (sh-smie-sh-rules, sh-smie--rc-newline-semi-p): New functions.
12091 (sh-set-shell): Use smie-setup if requested.
12092
12093 * term.el (term-set-escape-char): Properly set term-escape-char.
12094 See http://stackoverflow.com/questions/10524656.
12095
12096 2012-05-10 Chong Yidong <cyd@gnu.org>
12097
12098 * ffap.el (ffap-url-unwrap-local): Make it work right (Bug#9131).
12099 Use url-generic-parse-url, and handle host names and Windows
12100 filenames properly.
12101 (ffap-url-unwrap-remote): Use url-generic-parse-url.
12102 (ffap-url-unwrap-remote): Accept list values, specifying a list of
12103 URL schemes to work on.
12104 (ffap--toggle-read-only): New function.
12105 (ffap-read-only, ffap-read-only-other-window)
12106 (ffap-read-only-other-frame): Use it.
12107 (ffap-fixup-url): Don't check ffap-ftp-regexp, since it is not
12108 necessary for ffap-url-unwrap-remote.
12109
12110 2012-05-10 Dave Abrahams <dave@boostpro.com>
12111
12112 * cus-start.el (create-lockfiles): Add it.
12113
12114 2012-05-09 Chong Yidong <cyd@gnu.org>
12115
12116 * net/browse-url.el (browse-url-url-encode-chars): Use upper-case.
12117 (browse-url-encode-url): Encode spaces and quotes (Bug#6300).
12118
12119 2012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
12120
12121 * shell.el (shell-completion-vars): Fix last change (bug#11348).
12122
12123 2012-05-09 Chong Yidong <cyd@gnu.org>
12124
12125 * ansi-color.el (ansi-color-process-output): Check for validity of
12126 comint-last-output-start before using it. This avoids a bad
12127 interaction with gdb-mi's input/output buffer.
12128
12129 2012-05-09 Glenn Morris <rgm@gnu.org>
12130
12131 * files.el (dir-locals-read-from-file):
12132 Mention dir-locals in any error message.
12133
12134 2012-05-09 Chong Yidong <cyd@gnu.org>
12135
12136 * emacs-lisp/package.el (package-built-in-p): Handle the `emacs'
12137 package (Bug#11410).
12138
12139 * emacs-lisp/package.el (package-buffer-info): Avoid putting local
12140 variables into description.
12141
12142 2012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
12143
12144 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list like
12145 shell-delimiter-argument-list (bug#11348).
12146 (shell-parse-pcomplete-arguments): Obey pcomplete-arg-quote-list.
12147
12148 2012-05-09 Juanma Barranquero <lekktu@gmail.com>
12149
12150 * textmodes/rst.el: Silence byte-compiler warnings.
12151 (rst-re-alist, rst-reset-section-caches): Move around.
12152 (rst-re): Use `characterp', not `char-valid-p'.
12153 (font-lock-beg, font-lock-end): Declare.
12154
12155 * progmodes/idlw-shell.el (specs): Remove reference to deleted
12156 variable `idlwave-shell-activate-alt-keybindings' and simplify.
12157
12158 * eshell/esh-cmd.el (eshell-debug-command): Fix typo in previous change.
12159
12160 2012-05-08 Glenn Morris <rgm@gnu.org>
12161
12162 * files.el (auto-mode-alist): Treat ".make" like ".mk".
12163
12164 2012-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
12165
12166 * vc/log-edit.el: Add GNU coding standards highlighting.
12167 (log-edit-font-lock-gnu-style)
12168 (log-edit-font-lock-gnu-keywords): New vars.
12169 (log-edit-font-lock-keywords): New fun.
12170 (log-edit-mode): Don't fold case in font-lock.
12171 (log-edit-font-lock-keywords): Do not assume case-folding.
12172
12173 * imenu.el: Misc cleanup. Make docstrings out of comments.
12174 Use lexical-binding.
12175 (imenu--index-alist, imenu--last-menubar-index-alist)
12176 (imenu-menubar-modified-tick): Use defvar-local.
12177 (imenu--split-menu): Remove unused var.
12178 (imenu--cleanup-seen): Declare as global.
12179 (imenu--cleanup): Use dolist.
12180
12181 * subr.el (defvar-local): Add debug spec and doc-string position.
12182
12183 2012-05-08 Glenn Morris <rgm@gnu.org>
12184
12185 * language/burmese.el, language/cham.el, language/czech.el:
12186 * language/english.el, language/georgian.el, language/greek.el:
12187 * language/japanese.el, language/khmer.el, language/korean.el:
12188 * language/lao.el, language/misc-lang.el, language/romanian.el:
12189 * language/sinhala.el, language/slovak.el, language/tai-viet.el:
12190 * language/thai.el, language/utf-8-lang.el:
12191 Remove no-byte-compile setting.
12192
12193 * play/zone.el (zone-pgm-stress): Don't pollute kill-ring. (Bug#11388)
12194
12195 2012-05-08 Aaron S. Hawley <aaron.s.hawley@gmail.com>
12196
12197 * progmodes/make-mode.el (makefile-browse):
12198 Remove unnecessary interactive. (Bug#11324)
12199
12200 2012-05-07 Glenn Morris <rgm@gnu.org>
12201
12202 * forms-d2.el, forms-pass.el: Move to ../etc/forms directory.
12203
12204 * international/mule.el (find-auto-coding): Make "unibyte: t" obsolete.
12205
12206 2012-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
12207
12208 * loadup.el: Preload newcomment.el.
12209 * newcomment.el: Move autoload-only code to toplevel.
12210
12211 * buff-menu.el (list-buffers--refresh): Mark `size' as right-align.
12212 * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
12213 Handle new :right-align column property.
12214 (tabulated-list-print-col): Idem, plus use `display' text-property to
12215 try and preserve alignment for variable pitch fonts.
12216
12217 2012-05-07 Chong Yidong <cyd@gnu.org>
12218
12219 * emacs-lisp/tabulated-list.el: Add no-header-line alternative.
12220 (tabulated-list-use-header-line): New var.
12221 (tabulated-list-init-header): Use it.
12222 (tabulated-list-print-fake-header): New function.
12223 (tabulated-list-print): Use it.
12224 (tabulated-list-sort-button-map): Add non-header-line commands.
12225 (tabulated-list-init-header): Add column name property to basic
12226 labels as well.
12227 (tabulated-list-col-sort): Handle non-header-line button case.
12228 (tabulated-list--sort-by-column-name): Fix a corner case.
12229
12230 * buff-menu.el (list-buffers--refresh):
12231 Handle Buffer-menu-use-header-line.
12232
12233 2012-05-06 Chong Yidong <cyd@gnu.org>
12234
12235 * buff-menu.el: Convert to Tabulated List mode.
12236 (Buffer-menu-buffer+size-width): Make obsolete.
12237 (Buffer-menu-name-width, Buffer-menu-size-width): New variables.
12238 (Buffer-menu-mode-map): Inherit from tabulated-list-mode-map.
12239 (Buffer-menu-mode): Derive from tabulated-list-mode. Move command
12240 documentation into docstring of buffer-menu.
12241 (Buffer-menu-toggle-files-only): Add an informative message.
12242 (Buffer-menu-sort): Convert to alias for tabulated-list-sort.
12243 (Buffer-menu-buffer, Buffer-menu-beginning, Buffer-menu-mark)
12244 (Buffer-menu-unmark, Buffer-menu-backup-unmark)
12245 (Buffer-menu-delete, Buffer-menu-save, Buffer-menu-not-modified)
12246 (Buffer-menu-execute, Buffer-menu-select)
12247 (Buffer-menu-marked-buffers, Buffer-menu-toggle-read-only)
12248 (Buffer-menu-bury): Use Tabulated List machinery.
12249 (Buffer-menu-mouse-select, Buffer-menu-sort-by-column)
12250 (Buffer-menu-sort-button-map, Buffer-menu-make-sort-button):
12251 Delete.
12252 (list-buffers--refresh): New function.
12253 (list-buffers-noselect): Use it.
12254 (tabulated-list-entry-size->, Buffer-menu--pretty-name)
12255 (Buffer-menu--pretty-file-name): New helper functions.
12256
12257 * loadup.el: Preload tabulated-list.
12258
12259 * emacs-lisp/tabulated-list.el (tabulated-list-sort): Rename from
12260 tabulated-list-sort-column.
12261 (tabulated-list-init-header): Add the initial aligning space even
12262 if tabulated-list-padding is zero.
12263
12264 2012-05-06 Christopher Schmidt <christopher@ch.ristopher.com>
12265
12266 * emacs-lisp/cl-macs.el (cl-expr-contains): Handle cons cells
12267 whose cdr is not a cons cell correctly (bug#11038).
12268
12269 2012-05-06 Chong Yidong <cyd@gnu.org>
12270
12271 * emacs-lisp/tabulated-list.el (tabulated-list-format):
12272 Accept additional plist in column descriptors.
12273 (tabulated-list-init-header): Obey it.
12274 (tabulated-list-get-entry): New function.
12275 (tabulated-list-put-tag): Use it. Use string-width instead of
12276 length.
12277 (tabulated-list--column-number): New function.
12278 (tabulated-list-print): Use it.
12279 (tabulated-list-print-col): New function.
12280 Set `tabulated-list-column-name' property on each column's text.
12281 (tabulated-list-print-entry): Use it.
12282 (tabulated-list-delete-entry, tabulated-list-set-col):
12283 New functions.
12284 (tabulated-list-sort-column): New command (Bug#11337).
12285
12286 * buff-menu.el (list-buffers): Move C-x C-b binding from
12287 buff-menu.el to bindings.el.
12288
12289 * ebuff-menu.el (Electric-buffer-menu-undefined): Use the
12290 :advertised-binding feature.
12291
12292 2012-05-06 Troels Nielsen <bn.troels@gmail.com> (tiny change)
12293
12294 * progmodes/compile.el (compilation-internal-error-properties):
12295 Calculate start position correctly when end-col is set but
12296 end-line is not (Bug#11382).
12297
12298 2012-05-06 Wolfgang Jenkner <wjenkner@inode.at>
12299
12300 * man.el (Man-unindent): Use text-property-default-nonsticky to
12301 prevent untabify from inheriting face properties (Bug#11408).
12302
12303 2012-05-05 Stefan Merten <smerten@oekonux.de>
12304
12305 * textmodes/rst.el: Major merge with upstream development up to
12306 Docutils SVN r7399 / rst.el V1.2.1.
12307
12308 Clarify maintainership and authors.
12309
12310 (rst-extract-version, rst-cvs-header, rst-cvs-rev)
12311 (rst-cvs-timestamp, rst-svn-rev, rst-svn-timestamp)
12312 (rst-official-version, rst-official-cvs-rev, rst-version)
12313 (rst-package-emacs-version-alist): New functions and variables
12314 for version information.
12315
12316 (rst-bullets, rst-uri-schemes, rst-adornment-chars)
12317 (rst-max-inline-length, rst-re-alist-def, rst-re-alist)
12318 (rst-mode-syntax-table, rst-mode): New and corrected functions
12319 and variables representing reStructuredText features.
12320
12321 (rst-re): New function for reStructuredText regexes. Use in
12322 many places.
12323
12324 (rst-deprecated-keys, rst-call-deprecated, rst-define-key)
12325 (rst-mode-map): Rebind keys.
12326
12327 (rst-mode-lazy, rst-font-lock-keywords)
12328 (rst-font-lock-extend-region)
12329 (rst-font-lock-extend-region-internal)
12330 (rst-font-lock-extend-region-extend)
12331 (rst-font-lock-find-unindented-line-limit)
12332 (rst-font-lock-find-unindented-line-match)
12333 (rst-adornment-level, rst-font-lock-adornment-level)
12334 (rst-font-lock-adornment-match)
12335 (rst-font-lock-handle-adornment-pre-match-form)
12336 (rst-font-lock-handle-adornment-matcher): Major revision of
12337 font-locking. Integrate with other code. Use `jit-lock-mode'.
12338
12339 (rst-preferred-adornments, rst-adjust-hook)
12340 (rst-new-adornment-down, rst-preferred-bullets)
12341 (rst-preferred-bullets, rst-indent, rst-indent-width)
12342 (rst-indent-field, rst-indent-literal-normal)
12343 (rst-indent-literal-minimized, rst-indent-comment): Change,
12344 extend and improve customization.
12345
12346 (rst-line-homogeneous-p, rst-line-homogeneous-nodent-p)
12347 (rst-normalize-cursor-position, rst-get-decoration)
12348 (rst-straighten-deco-spacing, rst-re-bullets, rst-re-items)
12349 (rst-rstrip, rst-toc-insert-find-delete-contents)
12350 (rst-shift-fill-region, rst-compute-bullet-tabs)
12351 (rst-debug-print-tabs, rst-debug-mark-found)
12352 (rst-shift-region-guts, rst-shift-region-right)
12353 (rst-shift-region-left, rst-use-char-classes)
12354 (rst-font-lock-keywords-function)
12355 (rst-font-lock-indentation-point)
12356 (rst-font-lock-find-unindented-line-begin)
12357 (rst-font-lock-find-unindented-line-end)
12358 (rst-font-lock-find-unindented-line)
12359 (rst-font-lock-adornment-point, rst-font-lock-level)
12360 (rst-adornment-level-alist): Remove functions and variables.
12361
12362 (rst-compare-adornments, rst-get-adornment-match)
12363 (rst-suggest-new-adornment, rst-get-adornments-around)
12364 (rst-adornment-complete-p, rst-get-next-adornment)
12365 (rst-adjust-adornment, rst-display-adornments-hierarchy)
12366 (rst-straighten-adornments): Standardize function names to
12367 use "adornment" instead of "decoration". Correct callers.
12368 Similar standardizing in many places.
12369
12370 (rst-update-section, rst-adjust, rst-promote-region)
12371 (rst-enumerate-region, rst-bullet-list-region)
12372 (rst-repeat-last-character): Correct use of `interactive'.
12373
12374 (rst-classify-adornment, rst-find-all-adornments)
12375 (rst-get-hierarchy, rst-adjust-adornment, rst-toc-update)
12376 (rst-find-leftmost-column, rst-repeat-last-character):
12377 Refactor functions.
12378
12379 (rst-find-title-line, rst-reset-section-caches)
12380 (rst-get-adornments-around, rst-adjust-adornment-work)
12381 (rst-arabic-to-roman, rst-roman-to-arabic)
12382 (rst-insert-list-pos, rst-insert-list-new-item)
12383 (rst-insert-list-continue, rst-insert-list, rst-forward-line):
12384 New functions.
12385
12386 (rst-all-sections, rst-section-hierarchy)
12387 (rst-arabic-to-roman, rst-initial-enums, rst-initial-items):
12388 New variables.
12389
12390 (rst-toc-return-wincfg, rst-toc-quit-window): Use window
12391 configuration instead of only buffer. Change where necessary.
12392
12393 (rst-line-tabs, rst-compute-tabs, rst-indent-line)
12394 (rst-shift-region, rst-adaptive-fill): New functions for
12395 indentation and filling.
12396
12397 (rst-comment-line-break, rst-comment-indent)
12398 (rst-comment-insert-comment, rst-comment-region)
12399 (rst-uncomment-region): New functions for handling comments.
12400
12401 (rst-compile): Quote shell arguments.
12402
12403 (rst-compile-pdf-preview, rst-compile-slides-preview):
12404 Delete temporary files after use.
12405
12406 2012-05-05 Glenn Morris <rgm@gnu.org>
12407
12408 * calendar/cal-html.el: Optionally include holidays in the output.
12409 Suggested by Ed Reingold <reingold@emr.cs.iit.edu>.
12410 (cal-html-holidays): New option.
12411 (cal-html-css-default): Add holiday entry.
12412 (holiday-in-range): Autoload it.
12413 (cal-html-htmlify-entry): Add optional class argument.
12414 (cal-html-htmlify-list): Add optional holidays argument.
12415 (cal-html-insert-agenda-days): Include holidays in the output.
12416 (cal-html-one-month): Maybe include holidays.
12417
12418 * calendar/holidays.el (holiday-in-range):
12419 Move here from cal-tex-list-holidays.
12420 * calendar/cal-tex.el (cal-tex-list-holidays):
12421 Make it an obsolete alias for holiday-in-range. Update all callers.
12422
12423 2012-05-05 Chong Yidong <cyd@gnu.org>
12424
12425 * select.el (xselect--encode-string): Always use utf-8 for TEXT on
12426 Nextstep.
12427
12428 2012-05-05 Ransom Williams <auvergnerw@gmail.com> (tiny change)
12429
12430 * files.el (file-auto-mode-skip): New var.
12431 (set-auto-mode-1): Use it.
12432
12433 2012-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
12434
12435 * repeat.el: Use lexical-binding.
12436 (repeat-last-self-insert, repeat-num-input-keys-at-self-insert)
12437 (repeat-undo-count): Remove.
12438 (repeat):
12439 * progmodes/octave-mod.el (octave-abbrev-start):
12440 * progmodes/f90.el (f90-abbrev-start):
12441 * face-remap.el (text-scale-adjust):
12442 * kmacro.el (kmacro-call-macro): Use set-temporary-overlay-map.
12443
12444 * emacs-lisp/pcase.el (pcase--let*): New function.
12445 (pcase--expand, pcase-codegen, pcase--q1): Use it to reduce nesting
12446 a bit more.
12447 (pcase--split-pred): Be more clever about ruling out overlap between
12448 a predicate and some constant pattern.
12449 (pcase--q1): Use `null' instead of (eq foo nil).
12450
12451 * subr.el (setq-local, defvar-local): New macros.
12452 (kbd): Redefine as an alias.
12453 (with-selected-window): Leave unrelated frames alone.
12454 (set-temporary-overlay-map): New function.
12455
12456 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
12457
12458 * subr.el (user-error): New function.
12459 * window.el (switch-to-buffer):
12460 * vc/smerge-mode.el (smerge-resolve-function, smerge-resolve)
12461 (smerge-match-conflict):
12462 * simple.el (previous-matching-history-element)
12463 (next-matching-history-element, goto-history-element, undo-more)
12464 (undo-start):
12465 * progmodes/etags.el (visit-tags-table-buffer, find-tag-tag)
12466 (find-tag-noselect, find-tag-in-order, etags-goto-tag-location)
12467 (next-file, tags-loop-scan, list-tags, complete-tag):
12468 * progmodes/compile.el (compilation-loop):
12469 * mouse.el (mouse-minibuffer-check):
12470 * man.el (Man-bgproc-sentinel, Man-goto-page):
12471 * info.el (Info-find-node-2, Info-extract-pointer, Info-history-back)
12472 (Info-history-forward, Info-follow-reference, Info-menu)
12473 (Info-extract-menu-item, Info-extract-menu-counting)
12474 (Info-forward-node, Info-backward-node, Info-next-menu-item)
12475 (Info-last-menu-item, Info-next-preorder, Info-last-preorder)
12476 (Info-next-reference, Info-prev-reference, Info-index)
12477 (Info-index-next, Info-follow-nearest-node)
12478 (Info-copy-current-node-name):
12479 * imenu.el (imenu--make-index-alist)
12480 (imenu-default-create-index-function, imenu-add-to-menubar):
12481 * files.el (basic-save-buffer, recover-file):
12482 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
12483 * emacs-lisp/checkdoc.el (checkdoc-continue, checkdoc-comments)
12484 (checkdoc-message-text, checkdoc-defun):
12485 * dabbrev.el (dabbrev-completion, dabbrev--abbrev-at-point):
12486 * cus-edit.el (customize-changed-options, customize-rogue)
12487 (customize-saved, custom-variable-set, custom-variable-mark-to-save)
12488 (custom-variable-mark-to-reset-standard)
12489 (custom-variable-reset-backup, custom-face-mark-to-reset-standard)
12490 (custom-file):
12491 * completion.el (check-completion-length):
12492 * comint.el (comint-search-arg)
12493 (comint-previous-matching-input-string-position)
12494 (comint-previous-matching-input)
12495 (comint-replace-by-expanded-history-before-point, comint-send-input)
12496 (comint-copy-old-input, comint-backward-matching-input)
12497 (comint-goto-process-mark, comint-set-process-mark):
12498 * calendar/calendar.el (calendar-cursor-to-date): Use it.
12499 * bindings.el (debug-ignored-errors): Remove regexps, add `user-error'.
12500
12501 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
12502
12503 * dabbrev.el (dabbrev--ignore-case-p): New function.
12504 (dabbrev-completion, dabbrev-expand, dabbrev--substitute-expansion):
12505 Use it.
12506
12507 * files.el (automount-dir-prefix): Mark as obsolete.
12508
12509 2012-05-04 Glenn Morris <rgm@gnu.org>
12510
12511 * patcomp.el, play/bruce.el: Move to obsolete/.
12512
12513 2012-05-04 Paul Eggert <eggert@cs.ucla.edu>
12514
12515 Fix minor Y10k bugs.
12516 * arc-mode.el (archive-unixdate):
12517 * autoinsert.el (auto-insert-alist):
12518 * calc/calc-forms.el (math-this-year):
12519 * emacs-lisp/copyright.el (copyright-current-year)
12520 (copyright-update-year, copyright):
12521 * tar-mode.el (tar-clip-time-string):
12522 * time.el (display-time-update):
12523 Don't assume years have 4 digits.
12524
12525 2012-05-04 Chong Yidong <cyd@gnu.org>
12526
12527 * dos-w32.el (file-name-buffer-file-type-alist)
12528 (direct-print-region-use-command-dot-com):
12529 * ffap.el (ffap-menu-regexp):
12530 * find-file.el (ff-special-constructs):
12531 * follow.el (follow-debug):
12532 * forms.el (forms--debug):
12533 * iswitchb.el (iswitchb-all-frames):
12534 * ido.el (ido-all-frames):
12535 * emacs-lisp/timer.el (timer-max-repeats):
12536 * mail/feedmail.el (feedmail-mail-send-hook)
12537 (feedmail-mail-send-hook-queued):
12538 * mail/footnote.el (footnote-signature-separator):
12539 * mail/mailabbrev.el (mail-alias-separator-string)
12540 (mail-abbrev-mode-regexp):
12541 * mail/rmail.el (rmail-speedbar-match-folder-regexp):
12542 * progmodes/idlwave.el (idlwave-libinfo-file)
12543 (idlwave-default-completion-case-is-down)
12544 (idlwave-library-routines): Convert defvars to defcustoms.
12545
12546 * mail/rmail.el (rmail-decode-mime-charset):
12547 * progmodes/idlw-shell.el (idlwave-shell-print-expression-function)
12548 (idlwave-shell-fix-inserted-breaks)
12549 (idlwave-shell-activate-alt-keybindings)
12550 (idlwave-shell-use-breakpoint-glyph):
12551 * facemenu.el (facemenu-unlisted-faces): Delete obsolete vars.
12552
12553 2012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
12554
12555 * minibuffer.el (completion--twq-all): Beware completion-ignore-case.
12556
12557 2012-05-03 Wilson Snyder <wsnyder@wsnyder.org>
12558
12559 * progmodes/verilog-mode.el (font-lock-keywords):
12560 Fix mis-highligting auto. Reported by Craig Barner.
12561 (verilog-auto, verilog-auto-undef): Add AUTOUNDEF to remove
12562 defines from global name space. Reported by Dan Dever.
12563 (verilog-auto-reset, verilog-auto-reset-widths)
12564 (verilog-auto-tieoff): Support using unbased numbers for
12565 AUTORESET and AUTOTIEOFF.
12566 (verilog-submit-bug-report): Update variable list.
12567 (verilog-read-auto-params): Fix AUTOINPUT regexps containing
12568 parenthesis from not matching. Reported by Michael Rytting.
12569 (verilog-auto-template-lint): Fix hash error when linting modules
12570 with no used templates.
12571 (verilog-warn, verilog-warn-error)
12572 (verilog-warn-fatal): When non-interactive report multiple
12573 warnings before exiting. Suggested by Brad Dobbie.
12574 (verilog-auto-template-lint, verilog-auto-template-warn-unused)
12575 (verilog-read-auto-template): Add `verilog-auto-template-warn-unused'
12576 to report unused template errors. Reported by Brad Dobbie.
12577 (verilog-read-decls): Fix AUTOWIRE etc on supply0, supply1 type
12578 nets, bug438. Reported by Vns Blore.
12579 (verilog-auto-inout-module, verilog-auto-reg)
12580 (verilog-read-decls, verilog-read-sub-decls-sig)
12581 (verilog-signals-edit-wire-reg, verilog-signals-with):
12582 Fix passing of Verilog data types in ANSI input/output ports
12583 such as "output logic" into the AUTOs. Special case "wire" and
12584 "reg" for backwards compatibility presuming Verilog 2001.
12585 (verilog-auto-ascii-enum): Add "auto enum" as alias.
12586 (verilog-preprocess): Fix replication of preprocess output.
12587 Reported by Brad Dobbie.
12588 (verilog-auto-inst-interfaced-ports):
12589 Create verilog-auto-inst-interfaced-ports, bug429.
12590 Reported by Julian Gorfajn.
12591 (verilog-after-save-font-hook)
12592 (verilog-before-save-font-hook): New variable.
12593 (verilog-modi-cache-results, verilog-save-font-mod-hooked)
12594 (verilog-save-font-mods): Wrap disabling fontification, reported
12595 by David Rogoff.
12596 (verilog-do-indent, verilog-pretty-declarations-auto)
12597 (verilog-sk-def-reg): Fix obeying `verilog-auto-lineup', bug305.
12598 Reported by Pierre-David Pfister.
12599 (verilog-set-auto-endcomments): Fix endtask auto comments outside
12600 of class declarations, bug292. Reported by Kevin Heilman.
12601 (verilog-read-decls): Fix 'parameter type' not appearing in
12602 AUTOINSTPARAM, bug340. Reported by Jonathan Greenlaw.
12603 (verilog-auto-logic): Fix when AUTOLOGIC present to properly do
12604 AUTOINPUTs, bug411. Reported by Jonathan Greenlaw.
12605 (verilog-read-auto-lisp): Avoid syntax-ppss warning on AUTOLISP.
12606 Reported by David Kravitz.
12607
12608 2012-05-03 Michael McNamara <mac@mail.brushroad.com>
12609
12610 * progmodes/verilog-mode.el (verilog-pretty-expr): Don't line up
12611 assignment with tests in ifs and for loops.
12612 (verilog-extended-complete-re, verilog-complete-reg): Change so
12613 that DPI inport functions don't look like fuction declarations.
12614 (verilog-pretty-expr): Don't line up assignment
12615 operations to the test and increment in if and for loops
12616 (verilog-extended-complete-re, verilog-complete-reg): Change so
12617 that DPI inport functions don't look like fuction declarations.
12618
12619 2012-05-03 Kenichi Handa <handa@m17n.org>
12620
12621 * mail/rmailmm.el (rmail-show-mime): Catch an error caused by text
12622 decoding, and show a warning message without signaling an error
12623 (Bug#11282).
12624
12625 2012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
12626
12627 * emacs-lisp/bytecomp.el
12628 (byte-compile-file-form-custom-declare-variable): Compile all elements,
12629 since cconv.el might have introduced :fun-body, internal-make-closure,
12630 and friends for bytecomp to handle (bug#11391).
12631 * custom.el (defcustom): Avoid ((λ ..) ..).
12632
12633 2012-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
12634
12635 * subr.el (read-passwd): Better clean after ourselves (bug#11392).
12636
12637 2012-05-02 Juanma Barranquero <lekktu@gmail.com>
12638
12639 * notifications.el (dbus-debug):
12640 * term/linux.el (gpm-mouse-enable):
12641 * term/screen.el (xterm-register-default-colors): Declare.
12642
12643 2012-05-02 Chong Yidong <cyd@gnu.org>
12644
12645 * cus-start.el (gc-cons-percentage, exec-suffixes)
12646 (dos-display-scancodes, dos-hyper-key, dos-super-key)
12647 (dos-keypad-mode, debug-on-signal, vertical-centering-font-regexp)
12648 (make-cursor-line-fully-visible, void-text-area-pointer)
12649 (font-list-limit): Add customization data.
12650
12651 * allout.el (allout-exposure-change-functions)
12652 (allout-structure-added-functions)
12653 (allout-structure-deleted-functions)
12654 (allout-structure-shifted-functions): Rename abnormal hooks from
12655 *-hook, and convert to defcustoms.
12656 (allout-after-copy-or-kill-hook, allout-post-undo-hook):
12657 Convert to defcustoms.
12658 (allout-mode-hook, allout-mode-deactivate-hook): Doc fix.
12659
12660 * allout-widgets.el: Hook callers changed.
12661
12662 2012-05-02 Eli Zaretskii <eliz@gnu.org>
12663
12664 * mail/rmail.el (rmail-yank-current-message): Use the encoding of
12665 the yanked message in preference to the default value of
12666 buffer-file-coding-system.
12667
12668 2012-05-02 Martin Rudalics <rudalics@gmx.at>
12669
12670 * window.el (display-buffer--action-function-custom-type):
12671 Fix entry.
12672
12673 2012-05-02 Alan Mackenzie <acm@muc.de>
12674
12675 * progmodes/cc-defs.el (c-version): Update to 5.32.3.
12676
12677 2012-05-01 Glenn Morris <rgm@gnu.org>
12678
12679 * cus-start.el (suggest-key-bindings): Remove, now it is in Lisp.
12680
12681 * eshell/esh-cmd.el (eshell-debug-command): Doc fix. Add :set.
12682
12683 * cus-edit.el (custom-variable-documentation): Simplify with format.
12684
12685 2012-05-01 Aaron S. Hawley <aaron.s.hawley@gmail.com>
12686 Stefan Monnier <monnier@iro.umontreal.ca>
12687
12688 * simple.el (suggest-key-bindings, execute-extended-command):
12689 Move from keyboard.c.
12690
12691 2012-05-01 Chong Yidong <cyd@gnu.org>
12692
12693 * follow.el: Eliminate advice.
12694 (set-process-filter, process-filter, sit-for): Advice deleted.
12695 (follow-mode-off-hook): Obsolete hook removed.
12696 (follow-avoid-tail-recenter-p, follow-process-filter-alist):
12697 Vars deleted.
12698 (follow-auto): Use a :set function.
12699 (follow-mode): Rewritten. Don't advise process filters.
12700 (follow-switch-to-current-buffer-all, follow-scroll-up)
12701 (follow-scroll-down): Assume follow-mode is bound.
12702 (follow-comint-scroll-to-bottom)
12703 (follow-align-compilation-windows): New functions.
12704 (follow--window-sorter): New function.
12705 (follow-all-followers): Use it to explicitly sort windows by their
12706 positions; don't make assumptions about next-window order.
12707 (follow-windows-start-end, follow-delete-other-windows-and-split)
12708 (follow-calc-win-start): Doc fix.
12709 (follow-windows-aligned-p, follow-select-if-visible): Don't call
12710 vertical-motion unnecessarily.
12711 (follow-adjust-window): New function.
12712 (follow-post-command-hook): Use it.
12713 (follow-call-set-process-filter, follow-call-process-filter)
12714 (follow-intercept-process-output, follow-tidy-process-filter-alist)
12715 (follow-stop-intercept-process-output, follow-generic-filter):
12716 Functions deleted.
12717 (follow-scroll-bar-toolkit-scroll, follow-scroll-bar-drag)
12718 (follow-scroll-bar-scroll-up, follow-scroll-bar-scroll-down):
12719 New functions, replacing advice on scroll-bar-* commands.
12720 (follow-mwheel-scroll): New function (Bug#4112).
12721
12722 * comint.el (comint-adjust-point): New function.
12723 (comint-postoutput-scroll-to-bottom): Use it.
12724 Call follow-comint-scroll-to-bottom for Follow mode buffers.
12725
12726 2012-05-01 Glenn Morris <rgm@gnu.org>
12727
12728 * term/AT386.el, term/apollo.el, term/bobcat.el, term/cygwin.el:
12729 * term/iris-ansi.el, term/linux.el, term/lk201.el, term/news.el:
12730 * term/screen.el, term/vt102.el, term/vt125.el, term/vt200.el:
12731 * term/vt201.el, term/vt220.el, term/vt240.el, term/vt300.el:
12732 * term/vt320.el, term/vt400.el, term/vt420.el, term/wyse50.el:
12733 Remove no-byte-compile setting.
12734
12735 2012-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
12736
12737 * minibuffer.el (completion-table-with-quoting): Fix compatibility
12738 all-completions code to not return a number in the last cdr.
12739
12740 2012-04-30 Leo Liu <sdl.web@gmail.com>
12741
12742 * ibuf-ext.el (ibuffer-diff-buffer-with-file-1): Avoid buffer
12743 read-only error.
12744
12745 2012-04-29 Chong Yidong <cyd@gnu.org>
12746
12747 * follow.el (follow-calc-win-end): Rewrite to handle partial
12748 screen lines correctly (Bug#8390).
12749 (follow-avoid-tail-recenter): Minor cleanup.
12750
12751 2012-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
12752
12753 Avoid the obsolete `assoc' package.
12754 * speedbar.el (speedbar-refresh): Avoid adelete.
12755 (speedbar-file-lists): Simplify and avoid aput.
12756 * man.el (Man--sections, Man--refpages): New vars, replacing
12757 Man-sections-alist and Man-refpages-alist.
12758 (Man-build-section-alist, Man-build-references-alist):
12759 Use them; avoid aput.
12760 (Man--last-section, Man--last-refpage): New vars.
12761 (Man-follow-manual-reference): Use them.
12762 Use the `default' arg of completing-read.
12763 (Man-goto-section): Idem. Move prompt to the `interactive' spec.
12764
12765 2012-04-27 Chong Yidong <cyd@gnu.org>
12766
12767 * vc/diff.el (diff-sentinel): Go to bob (Bug#10259).
12768
12769 * startup.el (x-apply-session-resources): New function.
12770
12771 * term/ns-win.el (ns-initialize-window-system):
12772 * term/w32-win.el (w32-initialize-window-system):
12773 * term/x-win.el (x-initialize-window-system): Use it to properly
12774 set menu-bar-mode and other vars from X resources, even if the
12775 initial frame is not a window-system frame (Bug#2299).
12776
12777 * subr.el (read-key): Avoid running filter function when setting
12778 up temporary tool bar entries (Bug#9922).
12779
12780 2012-04-27 Andreas Schwab <schwab@linux-m68k.org>
12781
12782 * vc/vc-git.el (vc-git-state): Fix regexp matching diff output.
12783 (Bug#11344)
12784
12785 2012-04-27 Chong Yidong <cyd@gnu.org>
12786
12787 * select.el (xselect--encode-string): New function, split from
12788 xselect-convert-to-string.
12789 (xselect-convert-to-string): Use it.
12790 (xselect-convert-to-filename, xselect-convert-to-os)
12791 (xselect-convert-to-host, xselect-convert-to-user): Ensure that
12792 returned strings are properly encoded (Bug#11315).
12793
12794 2012-04-27 Chong Yidong <cyd@gnu.org>
12795
12796 * simple.el (delete-active-region): Move to killing custom group.
12797
12798 2012-04-27 Andreas Schwab <schwab@linux-m68k.org>
12799
12800 * progmodes/which-func.el (which-func-current): Quote %
12801 characters for mode-line processing.
12802
12803 2012-04-27 Chong Yidong <cyd@gnu.org>
12804
12805 * xml.el (xml-parse-region, xml-parse-tag): Avoid errors due to
12806 reaching eob (Bug#11286).
12807
12808 2012-04-27 Eli Zaretskii <eliz@gnu.org>
12809
12810 * progmodes/gdb-mi.el (gdb-control-level): New variable.
12811 (gdb): Make it buffer-local and init to zero.
12812 (gdb-control-commands-regexp): New variable.
12813 (gdb-send): Don't wrap in "-interpreter-exec console" if
12814 gdb-control-level is positive. Increment gdb-control-level
12815 whenever the command matches gdb-control-commands-regexp, and
12816 decrement it each time the command is "end". (Bug#11279)
12817
12818 2012-04-27 Martin Rudalics <rudalics@gmx.at>
12819
12820 * window.el (adjust-window-trailing-edge, enlarge-window)
12821 (shrink-window, window-resize):
12822 * mouse.el (mouse-drag-line): Fix resizing of minibuffer
12823 windows (Bug#11276).
12824
12825 2012-04-27 Chong Yidong <cyd@gnu.org>
12826
12827 * progmodes/pascal.el (pascal--extra-indent): Rename from ind, to
12828 fix "missing prefix" warning. All callers changed.
12829
12830 2012-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
12831
12832 * emacs-lisp/assoc.el: Move to obsolete/.
12833
12834 2012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
12835
12836 * emacs-lisp/assoc.el (aget): Fix dynamic-scoping issue (bug#11352).
12837
12838 * term/ns-win.el (ns-define-service):
12839 * progmodes/pascal.el (pascal-goto-defun):
12840 * progmodes/js.el (js--read-tab):
12841 * progmodes/etags.el (tags-lazy-completion-table):
12842 * emacs-lisp/syntax.el (syntax-propertize-via-font-lock):
12843 * emacs-lisp/ewoc.el (ewoc--wrap):
12844 * emacs-lisp/assoc.el (aput, adelete, amake):
12845 * doc-view.el (doc-view-convert-current-doc):
12846 * vc/diff.el (diff-no-select): Replace lexical-let by lexical-binding.
12847
12848 2012-04-26 Chong Yidong <cyd@gnu.org>
12849
12850 * image.el (image-type-from-buffer): Only return supported image
12851 type (Bug#9045).
12852
12853 * vc/diff-mode.el (diff-beginning-of-hunk): Return a meaningful
12854 value, for symmetry with diff-end-of-hunk.
12855 (diff-split-hunk, diff-find-source-location)
12856 (diff-ignore-whitespace-hunk, diff-refine-hunk): Use it.
12857 (diff-bounds-of-hunk, diff-bounds-of-file): New functions.
12858 (diff-restrict-view, diff-hunk-kill, diff-file-kill): Use them to
12859 compute the relevant hunk or file properly (Bug#6005).
12860 (diff-file-junk-re): Add bzr's "modified file" tag (Bug#6041).
12861
12862 2012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
12863
12864 * vc/vc-mtn.el:
12865 * vc/vc-hg.el:
12866 * vc/vc-git.el:
12867 * vc/vc-dir.el:
12868 * vc/vc-cvs.el:
12869 * vc/vc-bzr.el:
12870 * vc/vc-arch.el:
12871 * vc/vc.el: Replace lexical-let by lexical-binding.
12872 * minibuffer.el (lazy-completion-table): Avoid ((λ ...) ...).
12873 * emacs-lisp/cl-macs.el (lexical-let): Fix use in lexical-binding.
12874 * emacs-lisp/cconv.el (cconv-analyse-form): Warn use of ((λ ...) ...).
12875
12876 2012-04-26 Chong Yidong <cyd@gnu.org>
12877
12878 * vc/diff-mode.el (diff-undo): New command (Bug#5302).
12879 (diff-mode-shared-map): Bind it to / and [remap undo].
12880
12881 * vc/ediff-wind.el (ediff-setup-windows-default): New function.
12882 (ediff-window-setup-function): Use it as the default, to set up
12883 windows based on whether the current frame is graphical (Bug#2138).
12884 (ediff-choose-window-setup-function-automatically): Make obsolete.
12885
12886 * vc/ediff-init.el: Always define ediff-pixel-width/height.
12887
12888 2012-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
12889
12890 * ffap.el: Remove old code for obsolete package.
12891 (ffap-complete-as-file-p): Remove.
12892
12893 Use completion-table-with-quoting for comint and pcomplete.
12894 * comint.el (comint--unquote&requote-argument)
12895 (comint--unquote-argument, comint--requote-argument): New functions.
12896 (comint--unquote&expand-filename, comint-unquote-filename): Obsolete.
12897 (comint-quote-filename): Use regexp-opt-charset.
12898 (comint--common-suffix, comint--common-quoted-suffix)
12899 (comint--table-subvert): Remove.
12900 (comint-unquote-function, comint-requote-function): New vars.
12901 (comint--complete-file-name-data): Use them with
12902 completion-table-with-quoting.
12903 * pcmpl-unix.el (pcomplete/scp): Use completion-table-subvert.
12904 * pcomplete.el (pcomplete-arg-quote-list)
12905 (pcomplete-quote-arg-hook, pcomplete-quote-argument): Obsolete.
12906 (pcomplete-unquote-argument-function): Default to non-nil.
12907 (pcomplete-unquote-argument): Simplify.
12908 (pcomplete--common-quoted-suffix): Remove.
12909 (pcomplete-requote-argument-function): New var.
12910 (pcomplete--common-suffix): New function.
12911 (pcomplete-completions-at-point): Use completion-table-with-quoting
12912 and completion-table-subvert.
12913
12914 * minibuffer.el: Use completion-table-with-quoting for read-file-name.
12915 (minibuffer--double-dollars): Preserve properties.
12916 (completion--sifn-requote): New function.
12917 (completion--file-name-table): Rewrite using it and c-t-with-quoting.
12918
12919 * minibuffer.el: Add support for completion of quoted/escaped data.
12920 (completion-table-with-quoting, completion-table-subvert): New funs.
12921 (completion--twq-try, completion--twq-all): New functions.
12922 (completion--nth-completion): New function.
12923 (completion-try-completion, completion-all-completions): Use it.
12924
12925 2012-04-25 Leo Liu <sdl.web@gmail.com>
12926
12927 * progmodes/python.el (python-pdbtrack-get-source-buffer):
12928 Use compilation-message if available to find real filename.
12929
12930 2012-04-25 Chong Yidong <cyd@gnu.org>
12931
12932 * vc/diff-mode.el (diff-setup-whitespace): New function.
12933 (diff-mode): Use it.
12934
12935 * vc/diff.el (diff-sentinel):
12936 * vc/vc.el (vc-diff-finish): Call diff-setup-whitespace to assign
12937 Whitespace mode variables based on diff style (Bug#8612).
12938
12939 2012-04-25 Leo Liu <sdl.web@gmail.com>
12940
12941 * progmodes/python.el (python-send-region): Add suffix .py to the
12942 temp file.
12943
12944 * files.el (auto-mode-alist): Use javascript-mode instead.
12945
12946 2012-04-25 Alex Harsanyi <AlexHarsanyi@gmail.com>
12947
12948 Sync with soap-client repository. Support SOAP simpleType (Bug#10331).
12949
12950 * net/soap-client.el (soap-resolve-references-for-sequence-type)
12951 (soap-resolve-references-for-array-type): Hack to prevent self
12952 references, see Bug#9.
12953 (soap-parse-envelope): Report the contents of the 'detail' node
12954 when receiving a fault reply.
12955 (soap-parse-envelope): Report the contents of the entire 'detail' node.
12956
12957 * net/soap-inspect.el (soap-sample-value-for-simple-type)
12958 (soap-inspect-simple-type): New function.
12959
12960 * net/soap-client.el (soap-simple-type): New struct.
12961 (soap-default-xsd-types, soap-default-soapenc-types)
12962 (soap-decode-basic-type, soap-encode-basic-type):
12963 support unsignedInt and double basic types.
12964 (soap-resolve-references-for-simple-type)
12965 (soap-parse-simple-type, soap-encode-simple-type): New function.
12966 (soap-parse-schema): Parse xsd:simpleType declarations.
12967
12968 * net/soap-client.el (soap-default-xsd-types)
12969 (soap-default-soapenc-types): Add integer, byte and anyURI types.
12970 (soap-parse-complex-type-complex-content): Use `soap-wk2l' to find
12971 the local name of "soapenc:Array".
12972 (soap-decode-basic-type, soap-encode-basic-type): Support encoding
12973 decoding integer, byte and anyURI xsd types.
12974
12975 2012-04-25 Chong Yidong <cyd@gnu.org>
12976
12977 * cus-edit.el (custom-buffer-create-internal): Update header text.
12978
12979 2012-04-25 Eli Zaretskii <eliz@gnu.org>
12980
12981 * progmodes/gdb-mi.el (gdb-init-1): Condition Windows-specific
12982 settings on 'system-type', not on 'window-system'. On MS-Windows,
12983 set interactive-mode on in GDB.
12984
12985 2012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
12986
12987 * progmodes/ruby-mode.el: Simplify last change, and cleanup code.
12988 (ruby-syntax-propertize-regexp): Remove.
12989 (ruby-syntax-propertize-function): Split regexp into chunks.
12990 Match following code directly.
12991
12992 2012-04-24 Dmitry Gutov <dgutov@yandex.ru>
12993
12994 * progmodes/ruby-mode.el: Handle Cucumber defs (bug#6286).
12995 (ruby-syntax-propertize-regexp): New function.
12996 (ruby-syntax-propertize-function): Use it to handle regexp not preceded
12997 by a special keyword.
12998
12999 * progmodes/ruby-mode.el: Handle general delimited literals (bug#6286).
13000 (ruby-syntax-general-delimiters-goto-beg)
13001 (ruby-syntax-propertize-general-delimiters): New functions.
13002 (ruby-syntax-propertize-function): Use them to handle GDL.
13003 (ruby-font-lock-keywords): Move old handling of GDL...
13004 (ruby-font-lock-syntactic-keywords): .. to here.
13005 (ruby-calculate-indent): Adjust indentation for GDL.
13006
13007 2012-04-24 Michael Albinus <michael.albinus@gmx.de>
13008
13009 * notifications.el (top): Remove unneeded declarations.
13010 (notifications-specification-version): Change to "1.2".
13011 (notifications-interface, notifications-notify-method)
13012 (notifications-close-notification-method): Fix docstring.
13013 (notifications-get-capabilities-method): New defconst.
13014 (notifications-notify): Add :action-items, :resident and
13015 :transient hints. Change "image_data" to "image-data" and
13016 "image_path" to "image-path".
13017 (notifications-get-capabilities): New defun.
13018
13019 2012-04-24 Leo Liu <sdl.web@gmail.com>
13020
13021 * progmodes/python.el: Move hideshow setup to the end.
13022
13023 2012-04-24 Martin Rudalics <rudalics@gmx.at>
13024
13025 * window.el (handle-select-window): Clear echo area since this is
13026 no more done by read_char (Bug#11304).
13027
13028 2012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
13029
13030 * ibuffer.el (ibuffer-mode-map): Bind `/ m' to filter-used-mode
13031 and `/ M' to filter-derived-mode.
13032 * ibuf-ext.el (ibuffer-list-buffer-modes): Simplify; avoid add-to-list.
13033 (ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
13034 (ibuffer-mark-by-mode): Use default rather than initial-input.
13035 (ibuffer-filter-by-derived-mode): Autoload and require-match.
13036
13037 2012-04-24 Ivan Andrus <darthandrus@gmail.com> (tiny change)
13038
13039 * ibuf-ext.el (ibuffer-list-buffer-modes): Add `include-parents' arg.
13040 (ibuffer-filter-by-derived-mode): New filter.
13041 * ibuffer.el (ibuffer-mode-map): Bind to `/ w'.
13042
13043 2012-04-23 Andreas Politz <politza@fh-trier.de>
13044
13045 * subr.el (accept-change-group): Fix arg usage (Bug#6095).
13046
13047 2012-04-23 Chong Yidong <cyd@gnu.org>
13048
13049 * cus-edit.el (customize-apropos, customize-apropos-options):
13050 Disable matching of non-option variables (Bug#11176).
13051 (customize-option, customize-option-other-window)
13052 (customize-changed-options): Doc fix.
13053 (customize-apropos-options, customize-apropos-faces)
13054 (customize-apropos-groups): Use apropos-read-pattern (Bug#11124).
13055
13056 * apropos.el (apropos-read-pattern): Make prompt less cryptic.
13057 Fix word list splitting (Bug#11132).
13058 (apropos-symbol, apropos-keybinding, apropos-label)
13059 (apropos-property, apropos-function-button)
13060 (apropos-variable-button, apropos-misc-button): New faces.
13061 (apropos-symbol-face, apropos-keybinding-face)
13062 (apropos-label-face, apropos-property-face, apropos-match-face):
13063 Variables removed (Bug#8396).
13064 (apropos-library-button, apropos-format-plist, apropos-print)
13065 (apropos-print-doc, apropos-describe-plist): Callers changed.
13066
13067 2012-04-23 Michael Albinus <michael.albinus@gmx.de>
13068
13069 * net/xesam.el (xesam-mode-map): Use let-bound map in
13070 initialization. (Bug#11292)
13071
13072 2012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
13073
13074 Preserve ispell session localwords when switching back to
13075 original buffer.
13076
13077 * textmodes/ispell.el (ispell-buffer-session-localwords):
13078 New buffer-local variable to hold buffer session localwords.
13079 (ispell-kill-ispell): Add option 'clear to delete session
13080 localwords.
13081 (ispell-command-loop, ispell-change-dictionary)
13082 (ispell-buffer-local-words): Preserve session localwords when
13083 needed.
13084
13085 * textmodes/flyspell.el (flyspell-process-localwords)
13086 (flyspell-do-correct): Preserve session localwords when needed.
13087
13088 2012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
13089
13090 * textmodes/ispell.el (ispell-insert-word) Remove unneeded function
13091 using obsolete `translation-table-for-input'.
13092 (ispell-word, ispell-process-line, ispell-complete-word):
13093 Use plain `insert' instead of removed `ispell-insert-word'.
13094
13095 2012-04-22 Chong Yidong <cyd@gnu.org>
13096
13097 * cus-edit.el (custom-variable-menu)
13098 (custom-variable-reset-saved, custom-face-menu)
13099 (custom-face-reset-saved): If there is no saved value, make the
13100 "reset-saved" operation bring back the default (Bug#9509).
13101 (custom-face-state): Properly detect themed faces.
13102
13103 * faces.el (face-spec-set): Stop supporting deprecated form of
13104 third arg.
13105
13106 2012-04-22 Michael Albinus <michael.albinus@gmx.de>
13107
13108 Move functions from C to Lisp. Make non-blocking method calls
13109 the default. Implement further D-Bus standard interfaces.
13110
13111 * net/dbus.el (dbus-message-internal): Declare function.
13112 Remove unneeded function declarations.
13113 (defvar dbus-message-type-invalid, dbus-message-type-method-call)
13114 (dbus-message-type-method-return, dbus-message-type-error)
13115 (dbus-message-type-signal): Declare variables. Remove local
13116 definitions.
13117 (dbus-interface-dbus, dbus-interface-peer)
13118 (dbus-interface-introspectable, dbus-interface-properties)
13119 (dbus-path-emacs, dbus-interface-emacs, dbus-return-values-table):
13120 Adapt docstring.
13121 (dbus-interface-objectmanager): New defconst.
13122 (dbus-call-method, dbus-call-method-asynchronously)
13123 (dbus-send-signal, dbus-method-return-internal)
13124 (dbus-method-error-internal, dbus-register-service)
13125 (dbus-register-signal, dbus-register-method): New defuns, moved
13126 from dbusbind.c
13127 (dbus-call-method-handler, dbus-setenv)
13128 (dbus-get-all-managed-objects, dbus-managed-objects-handler):
13129 New defuns.
13130 (dbus-call-method-non-blocking): Make it an obsolete function.
13131 (dbus-unregister-object, dbus-unregister-service)
13132 (dbus-handle-event, dbus-register-property)
13133 (dbus-property-handler): Obey the new structure of
13134 `bus-registered-objects'.
13135 (dbus-introspect): Use `dbus-call-method'. Use a timeout.
13136 (dbus-get-property, dbus-set-property, dbus-get-all-properties):
13137 Use `dbus-call-method'.
13138
13139 2012-04-22 Chong Yidong <cyd@gnu.org>
13140
13141 * cus-edit.el (custom-commands, custom-reset-menu)
13142 (Custom-reset-standard): Tweak labels.
13143 (custom-reset-button-menu): Change default to t.
13144 (custom-buffer-create-internal): For the custom-reset-button-menu
13145 case, put the revert button first.
13146 (custom-group-subtitle): New face.
13147 (custom-group-value-create): Align docstring to a specific column.
13148
13149 * wid-edit.el (widget-documentation-link-add): Don't handle
13150 indentation in this function.
13151 (widget-documentation-string-indent-to): New function.
13152 (widget-documentation-string-value-create): Use it.
13153
13154 * autorevert.el (auto-revert):
13155 * epg-config.el (epg):
13156 * ibuffer.el (ibuffer):
13157 * mpc.el (mpc):
13158 * ses.el (ses):
13159 * eshell/eshell.el (eshell):
13160 * net/ange-ftp.el (ange-ftp):
13161 * progmodes/ebnf2ps.el (postscript):
13162 * progmodes/flymake.el (flymake):
13163 * progmodes/prolog.el (prolog):
13164 * progmodes/verilog-mode.el (verilog-mode):
13165 * progmodes/which-func.el (which-func):
13166 * term/xterm.el (xterm):
13167 * textmodes/picture.el (picture):
13168 * textmodes/tildify.el (tildify):
13169 * vc/ediff.el (ediff): Tweak defgroups to improve presentation in
13170 customization buffers.
13171
13172 2012-04-22 Alan Mackenzie <acm@muc.de>
13173
13174 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
13175 Adding a ) can hide the resulting (..) from searches. Fix it.
13176 Bound the backward search to the position of the existing (.
13177
13178 2012-04-21 Juanma Barranquero <lekktu@gmail.com>
13179
13180 * progmodes/verilog-mode.el (verilog-mode): Check whether
13181 which-func-modes is t before adding verilog-mode.
13182 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
13183
13184 2012-04-21 Leo Liu <sdl.web@gmail.com>
13185
13186 * net/rcirc.el (rcirc): Avoid error when process-contact returns t.
13187
13188 2012-04-21 Michael Vehrs <Michael.Burschik@gmx.de>
13189
13190 * woman.el: Add support for "T{ T}" tbl syntax, and fix the
13191 filling of the last column of a table (Bug#5635).
13192 (woman-find-next-control-line): New arg, specifying an additional
13193 regexp component for the control line.
13194 (woman2-roff-buffer): Use it.
13195 (woman-break-table): New function.
13196 (woman2-TS): Use it.
13197
13198 2012-04-21 Chong Yidong <cyd@gnu.org>
13199
13200 * woman.el (woman-set-buffer-display-table, woman-decode-region)
13201 (woman-horizontal-escapes, woman-negative-vertical-space)
13202 (woman-tab-to-tab-stop, woman2-fc, woman2-TS)
13203 (WoMan-warn-ignored): Use ?\s instead of ?\ .
13204
13205 2012-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
13206
13207 * minibuffer.el (completion-file-name-table): Complete user names.
13208
13209 2012-04-20 Leo Liu <sdl.web@gmail.com>
13210
13211 * font-lock.el (lisp-font-lock-keywords-2): Add pcase, pcase-let
13212 and pcase-let*.
13213
13214 2012-04-20 Chong Yidong <cyd@gnu.org>
13215
13216 * server.el (server-execute): Respect initial-buffer-choice if it
13217 is a string and there are no files to open (Bug#2825).
13218 (server-create-window-system-frame, server-create-tty-frame):
13219 Don't switch buffers here.
13220 (server-process-filter): Only try to open a window system frame if
13221 compiled with graphical support (Bug#8314).
13222
13223 2012-04-20 Dan Nicolaescu <dann@gnu.org>
13224
13225 * battery.el (battery-echo-area-format): Display remaining time
13226 for sysfs backend too (Bug#11269).
13227 (battery-linux-sysfs): Fix conditional for the charge.
13228
13229 2012-04-20 Chong Yidong <cyd@gnu.org>
13230
13231 * progmodes/gdb-mi.el (gdb): Revert previous change.
13232 (gdb-inferior-io--init-proc): New function.
13233 (gdb-init-1): Use it.
13234 (gdb-inferior-io-sentinel): New sentinel for the gdb-inferior pty,
13235 responsible for allocating a new pty and hooking it to gdb when
13236 the old pty gets an EIO due to process exit.
13237 (gdb-delchar-or-quit): New command. Bind it in gdb-mi buffers.
13238 (gdb-tooltip-print): Don't use obsolete tooltip-use-echo-area.
13239 (gdb-inferior-io--maybe-delete-pty): Move into gdb-reset.
13240
13241 2012-04-20 Eli Zaretskii <eliz@gnu.org>
13242
13243 * window.el (window-min-size, window-sizable, window-min-delta)
13244 (window-max-delta, window--resizable, window-resizable)
13245 (window-total-size, window-full-height-p, window-full-width-p)
13246 (window-in-direction, window--resize-mini-window, window-resize)
13247 (window--resize-child-windows-normal)
13248 (window--resize-child-windows, window--resize-siblings)
13249 (window--resize-this-window, adjust-window-trailing-edge)
13250 (enlarge-window, shrink-window): Doc fixes.
13251
13252 2012-04-20 Chong Yidong <cyd@gnu.org>
13253
13254 * progmodes/gdb-mi.el (gdb-inferior-io--maybe-delete-pty):
13255 New function to call delete-process on the gdb-inferior buffer's pty.
13256 (gdb-reset): Use it, instead of relying on kill-buffer to kill the
13257 pty process (Bug#11273).
13258 (gdb-update): New arg to suppress talking to the gdb process.
13259 (gdb-done-or-error): Use it.
13260 (gdb-stopped-functions): Rename from gdb-stopped-hooks.
13261 (gdb): Call gdb-inferior-io--maybe-delete-pty as a workaround for
13262 sentinel not being called.
13263
13264 * comint.el (make-comint-in-buffer, comint-exec): Doc fix.
13265
13266 * progmodes/grep.el (grep, rgrep): Doc fix (Bug#11268).
13267
13268 2012-04-20 Glenn Morris <rgm@gnu.org>
13269
13270 * net/network-stream.el (open-network-stream): Doc fix.
13271
13272 2012-04-20 Chong Yidong <cyd@gnu.org>
13273
13274 * emacs-lisp/tabulated-list.el (tabulated-list-print): Fix typos.
13275
13276 2012-04-20 Alan Mackenzie <acm@muc.de>
13277
13278 Ensure searching for keywords is case sensitive.
13279
13280 * progmodes/cc-cmds.el (c-electric-brace, c-electric-lt-gt)
13281 (c-electric-paren, c-beginning-of-defun, c-end-of-defun)
13282 (c-defun-name, c-mark-function, c-cpp-define-name)
13283 (c-comment-indent, c-scan-conditionals, c-indent-defun)
13284 (c-context-line-break): Bind case-fold-search to nil.
13285
13286 * progmodes/cc-mode.el (c-font-lock-fontify-region):
13287 Bind case-fold-search to nil.
13288
13289 2012-04-20 Chong Yidong <cyd@gnu.org>
13290
13291 * mail/sendmail.el (mail-bury): Call return action with the right
13292 Rmail buffer (Bug#11242).
13293
13294 * server.el (server-process-filter): Handle corner case where both
13295 tty and nowait options are present (Bug#11102).
13296
13297 2012-04-20 Eli Zaretskii <eliz@gnu.org>
13298
13299 * version.el (emacs-bzr-version, emacs-bzr-get-version): Doc fixes.
13300 (top level): Put into the executable the ident-style '$Id:' tag on
13301 windows-nt as well.
13302
13303 2012-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
13304
13305 * electric.el (electric-indent-post-self-insert-function): Check that
13306 electric-indent-mode is enabled in current buffer.
13307
13308 2012-04-19 Juanma Barranquero <lekktu@gmail.com>
13309
13310 * imenu.el (imenu-progress-message): Restore; it is "used" in
13311 erc/erc-imenu.el and net/snmp-mode.el.
13312
13313 2012-04-19 Juanma Barranquero <lekktu@gmail.com>
13314
13315 * avoid.el (mouse-avoidance-mode): Mark unused arg.
13316 (mouse-avoidance-nudge-mouse): Remove unused binding.
13317
13318 * bs.el (bs-toggle-readonly): Call `toggle-read-only' interactively.
13319
13320 * descr-text.el (describe-char):
13321 * progmodes/python.el (python-describe-symbol):
13322 Don't call `toggle-read-only', set `buffer-read-only'.
13323
13324 * imenu.el (imenu-default-goto-function): Mark unused args.
13325 (imenu-progress-message): Remove obsolete macro; all callers changed.
13326
13327 * subr.el (keymap-canonicalize): Remove unused binding.
13328 (read-passwd): Mark unused arg.
13329
13330 * tutorial.el (tutorial--display-changes): Remove unused binding.
13331 (tutorial--save-tutorial-to): Remove unused variable.
13332
13333 * emacs-lisp/package.el (define-package, package-menu-mark-delete)
13334 (package-menu-mark-install, package-menu-mark-unmark): Mark unused args.
13335 (package-generate-autoloads, package-menu--generate)
13336 (package-menu--find-upgrades): Remove unused bindings.
13337
13338 * emulation/cua-rect.el (cua-restrict-regexp-rectangle)
13339 (cua-restrict-prefix-rectangle): Doc fixes. Remove unused bindings.
13340 (cua--mouse-ignore, cua--delete-rectangle, cua--extract-rectangle)
13341 (cua--indent-rectangle, cua-open-rectangle, cua-close-rectangle)
13342 (cua-blank-rectangle, cua-string-rectangle, cua-replace-in-rectangle)
13343 (cua-incr-rectangle, cua-sequence-rectangle, cua--convert-rectangle-as)
13344 (cua--rectangle-aux-replace, cua--left-fill-rectangle)
13345 (cua-scroll-rectangle-up, cua-scroll-rectangle-down)
13346 (cua-delete-char-rectangle): Mark unused args.
13347 (cua-align-rectangle): Remove unused binding.
13348
13349 * mail/rmail.el (compilation--message->loc)
13350 (epa--find-coding-system-for-mime-charset): Declare.
13351
13352 * net/dbus.el (dbus-register-service): Declare.
13353 (dbus-name-owner-changed-handler): Remove unused binding.
13354
13355 * nxml/nxml-mode.el (nxml-electric-slash, nxml-in-mixed-content-p)
13356 (nxml-compute-indent-from-matching-start-tag): Remove unused variables.
13357 (nxml-scan-backward-within): Mark unused arg.
13358 (nxml-dynamic-markup-word): Remove unused binding.
13359
13360 * mouse.el (mouse-menu-major-mode-map):
13361 * emacs-lisp/authors.el (authors-scan-change-log)
13362 (authors-add-to-author-list):
13363 * emacs-lisp/avl-tree.el (avl-tree--enter-balance):
13364 * emacs-lisp/smie.el (smie-auto-fill):
13365 * mail/sendmail.el (mail-bury):
13366 * mail/unrmail.el (unrmail):
13367 * net/tls.el (open-tls-stream):
13368 * textmodes/picture.el (picture-mouse-set-point):
13369 Remove unused bindings.
13370
13371 2012-04-19 Michael Albinus <michael.albinus@gmx.de>
13372
13373 * net/tramp.el (tramp-action-password): Let-bind
13374 `enable-recursive-minibuffers' to t.
13375
13376 2012-04-18 Sam Steingold <sds@gnu.org>
13377
13378 * progmodes/gud.el (gud-key-prefix): Use :type 'key-sequence
13379 instead of 'string to accommodate values like [f11].
13380 Always use `vconcat' instead of `concat' on it, like in `gud-def'.
13381 * progmodes/gdb-mi.el: Likewise.
13382
13383 2012-04-18 Leo Liu <sdl.web@gmail.com>
13384
13385 * abbrev.el (edit-abbrevs): Move point to the abbrev table of
13386 current buffer.
13387 (prepare-abbrev-list-buffer): Enter edit-abbrevs-mode only if
13388 LOCAL is nil.
13389
13390 2012-04-18 Chong Yidong <cyd@gnu.org>
13391
13392 * simple.el (line-move): Use forward-line if in batch mode
13393 (Bug#11053).
13394
13395 2012-04-18 Christopher Schmidt <christopher@ch.ristopher.com>
13396
13397 * files.el (after-find-file): Do not try to add a final newline if
13398 the buffer is read-only (Bug#11156).
13399
13400 2012-04-17 Richard Stallman <rms@gnu.org>
13401
13402 * mail/rmail.el (rmail-start-mail):
13403 Pass (rmail-mail-return...) for the return-action.
13404 Pass (rmail-yank-current-message...) for the yank-action.
13405 (rmail-yank-current-message): New function.
13406 (rmail-mail): Pass the Rmail buffer, not view buffer, for replybuffer.
13407 (rmail-reply): Likewise.
13408 (rmail-forward): Pass the Rmail buffer, not nil, for replybuffer.
13409
13410 * mail/sendmail.el (mail-bury): Choose the first rmail-mode
13411 buffer, not the last. Reject temp buffers. Use the rmail-mode
13412 buffer, not newbuf.
13413
13414 2012-04-17 Juanma Barranquero <lekktu@gmail.com>
13415
13416 * server.el (server-ensure-safe-dir): Simplify.
13417
13418 2012-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
13419
13420 * emacs-lisp/smie.el: Provide smarter auto-filling.
13421 (smie-auto-fill): New function.
13422 (smie-setup): Use it.
13423
13424 * newcomment.el (comment-choose-indent): Obey comment-inline-offset.
13425
13426 2012-04-17 Philipp Haselwarter <philipp.haselwarter@gmx.de> (tiny change)
13427
13428 * newcomment.el (comment-inline-offset): New custom var (bug#11090).
13429 (comment-indent): Use it.
13430
13431 2012-04-17 Vincent Belaïche <vincentb1@users.sourceforge.net>
13432
13433 * ses.el: The overall change is to add cell renaming, that is
13434 setting fancy names for cell symbols other than name matching
13435 "\\`[A-Z]+[0-9]+\\'" regexp .
13436 (ses-localvars): Add ses--renamed-cell-symb-list.
13437 (ses-create-cell-variable): New defun.
13438 (ses-destroy-cell-variable-range): Respect ses--numrows, ses--numcols.
13439 (ses-relocate-formula): Relocate formulas only for cells the
13440 symbols of which are not renamed, i.e. symbols whose names do not
13441 match regexp "\\`[A-Z]+[0-9]+\\'".
13442 (ses-relocate-all): Relocate values only for cells the symbols of
13443 which are not renamed.
13444 (ses-load): Create cells variables as the (ses-cell ...) are read,
13445 in order to check row col consistency with cell symbol name only
13446 for cells that are not renamed.
13447 (ses-replace-name-in-formula): New defun.
13448 (ses-rename-cell): New defun.
13449
13450 2012-04-17 Peter Oliver <bzr@mavit.org.uk> (tiny change)
13451
13452 * progmodes/perl-mode.el (perl-indent-parens-as-block):
13453 New option (bug#11118).
13454 (perl-calculate-indent): Respect it.
13455
13456 2012-04-17 Glenn Morris <rgm@gnu.org>
13457
13458 * dired-aux.el (dired-mark-read-string): Doc fix.
13459
13460 2012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
13461
13462 * dired-aux.el (dired-mark-read-string): Offer optional completion.
13463 (dired-do-chxxx): Complete chown, chgrp over users, groups. (Bug#7900)
13464
13465 2012-04-17 Glenn Morris <rgm@gnu.org>
13466
13467 * mouse.el (mouse-drag-track):
13468 * speedbar.el (speedbar-frame-mode):
13469 Use auto-hscroll-mode rather than the alias automatic-hscrolling.
13470
13471 2012-04-16 Leo Liu <sdl.web@gmail.com>
13472
13473 * progmodes/python.el: Trivial cleanup.
13474
13475 2012-04-16 Glenn Morris <rgm@gnu.org>
13476
13477 * vc/vc.el (vc-string-prefix-p):
13478 * vc/pcvs-util.el (cvs-string-prefix-p):
13479 * textmodes/tex-mode.el (latex-string-prefix-p, tex-string-prefix-p):
13480 * mpc.el (mpc-string-prefix-p):
13481 Make all of these into obsolete aliases for string-prefix-p.
13482 Update callers.
13483 * vc/pcvs.el, vc/vc-dispatcher.el, vc/vc-dir.el: Update callers.
13484
13485 * textmodes/two-column.el: Move custom options to the start.
13486 (frame-width): Remove compat definition.
13487 (2C-associate-buffer, 2C-dissociate):
13488 Use with-current-buffer rather than save-excursion.
13489 (2C-dissociate): Force a mode-line update.
13490 (2C-autoscroll): Use ignore-errors.
13491
13492 * emacs-lisp/eieio-opt.el (describe-class, describe-generic):
13493 Autoload trivia.
13494
13495 * emacs-lisp/cl-extra.el (*random-state*):
13496 Remove unnecessary declaration.
13497
13498 * calendar/cal-tex.el (cal-tex-end-document): Trivial clarification.
13499
13500 * play/cookie1.el (cookie-snarf):
13501 Give an explicit error if input file cannot be read.
13502
13503 * play/yow.el (yow-file): Use expand-file-name rather than concat.
13504
13505 * progmodes/perl-mode.el (c-macro-expand):
13506 Remove unnecessary autoload (it is in loaddefs.el).
13507
13508 * textmodes/picture.el (picture-desired-column)
13509 (picture-update-desired-column): Convert comments to doc-strings.
13510 (picture-substitute): Remove function.
13511 (picture-mode-map): Initialize in the defvar.
13512
13513 * woman.el: Remove eval-after-load for tar-mode.
13514 * tar-mode.el (tar-mode-map): Add woman binding and menu entry.
13515 (woman-tar-extract-file): Autoload it.
13516
13517 * frame.el (automatic-hscrolling): Make this alias obsolete.
13518
13519 2012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
13520
13521 * textmodes/ispell.el (ispell-set-spellchecker-params): Post-process
13522 `ispell-dictionary-alist' to use [:alpha:] and utf-8 if possible.
13523 (ispell-dictionary-base-alist): Revert to original XEmacs
13524 friendly version for default. [:alpha:] will be added in
13525 `ispell-set-spellchecker-params' if needed.
13526
13527 2012-04-16 Chong Yidong <cyd@gnu.org>
13528
13529 * image.el (imagemagick--file-regexp): New variable.
13530 (imagemagick-register-types): Use it.
13531 (imagemagick-types-inhibit): Add :set function. Allow new value
13532 of t to inhibit all types.
13533
13534 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Avoid cl macros,
13535 so we can preload it.
13536
13537 * loadup.el (fboundp): Preload regexp-opt, needed by
13538 imagemagick-register-types.
13539
13540 2012-04-15 Chong Yidong <cyd@gnu.org>
13541
13542 * frame.el (scrolling): Remove nearly unused customization group.
13543
13544 * scroll-all.el (scroll-all-mode): Move to windows group.
13545
13546 2012-04-15 Chong Yidong <cyd@gnu.org>
13547
13548 * bindings.el (goto-map): Bind goto-char to M-g c (Bug#11240).
13549
13550 2012-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
13551
13552 Avoid the use of ((lambda ...) ...) in lexical-binding code.
13553 * emacs-lisp/easy-mmode.el (define-minor-mode): Use funcall (bug#11241).
13554
13555 2012-04-15 Glenn Morris <rgm@gnu.org>
13556
13557 * simple.el (process-file-side-effects): Doc fix.
13558
13559 2012-04-15 Glenn Morris <rgm@gnu.org>
13560
13561 * international/mule-cmds.el (set-language-environment): Doc fix.
13562
13563 2012-04-14 Juanma Barranquero <lekktu@gmail.com>
13564
13565 * server.el (server-auth-key, server-generate-key): Doc fixes.
13566 (server-get-auth-key): Doc fix. Use `string-match-p'.
13567 (server-start): Reflow docstring.
13568
13569 2012-04-14 Lars Ingebrigtsen <larsi@gnus.org>
13570
13571 * server.el (server-generate-key): `called-interactively-p'
13572 requires a parameter.
13573
13574 2012-04-14 Michal Nazarewicz <mina86@mina86.com>
13575
13576 * server.el (server-auth-key): New variable.
13577 (server-generate-key, server-get-auth-key): New function.
13578 (server-start): Use the new variable and functions to allow
13579 setting a permanent server key (bug#9423).
13580
13581 2012-04-14 Leo Liu <sdl.web@gmail.com>
13582
13583 * vc/diff-mode.el (diff-file-prev/next): Fix typo.
13584
13585 2012-04-14 Paul Eggert <eggert@cs.ucla.edu>
13586
13587 Spelling fixes.
13588 * hexl.el (hexl-rulerize): Rename from hexl-rulerise, since
13589 Emacs uses American spelling.
13590
13591 2012-04-14 Juanma Barranquero <lekktu@gmail.com>
13592
13593 * emacs-lock.el (emacs-lock-locked-buffer-functions): New hook.
13594 (emacs-lock--exit-locked-buffer): Return the locked buffer. Doc fix.
13595 (emacs-lock--kill-emacs-hook, emacs-lock--kill-emacs-query-functions)
13596 (emacs-lock--kill-buffer-query-functions): Run new hook. (Bug#11017)
13597
13598 2012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
13599
13600 * progmodes/which-func.el (which-func-modes): Change default.
13601
13602 2012-04-14 Kim F. Storm <storm@cua.dk>
13603
13604 * emulation/cua-base.el (cua-exchange-point-and-mark): Just call
13605 exchange-point-and-mark if cua-enable-cua-keys is nil (Bug#11191).
13606
13607 2012-04-14 Chong Yidong <cyd@gnu.org>
13608
13609 * custom.el (custom-theme-set-variables): Doc fix.
13610
13611 2012-04-14 Glenn Morris <rgm@gnu.org>
13612
13613 * international/mule.el (set-auto-coding-for-load): Doc fix.
13614
13615 2012-04-14 Alan Mackenzie <acm@muc.de>
13616
13617 * progmodes/cc-menus.el (cc-imenu-objc-generic-expression): Make
13618 imenu work again for Objective C Mode. Correct the *-index values,
13619 these having been disturbed by a previous change in 2011-08.
13620
13621 * progmodes/cc-engine.el (c-before-change-check-<>-operators):
13622 Correct two search limits.
13623
13624 2012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
13625
13626 * startup.el (command-line-1): Inhibit splash from daemon (bug#10996).
13627
13628 2012-04-14 Andreas Schwab <schwab@linux-m68k.org>
13629
13630 * international/characters.el: Fix sorting.
13631
13632 2012-04-14 Eli Zaretskii <eliz@gnu.org>
13633
13634 * international/characters.el: Add more missing Latin case pairs.
13635
13636 2012-04-14 Glenn Morris <rgm@gnu.org>
13637
13638 * files.el (dir-locals-set-class-variables): Doc fix.
13639
13640 2012-04-14 Eli Zaretskii <eliz@gnu.org>
13641
13642 * international/characters.el: Add set-case-syntax-pair call for
13643 LATIN CAPITAL LETTER Y WITH DIAERESIS RET and its lower-case
13644 counterpart. (Bug#11209)
13645
13646 * simple.el (shell-command-on-region): Doc fix. (Bug#11208)
13647
13648 2012-04-14 Glenn Morris <rgm@gnu.org>
13649
13650 * calendar/holidays.el (calendar-check-holidays): Doc fix.
13651
13652 2012-04-14 Eli Zaretskii <eliz@gnu.org>
13653
13654 * textmodes/ispell.el (ispell-dictionary-base-alist):
13655 Add data for Hebrew.
13656
13657 2012-04-14 Chong Yidong <cyd@gnu.org>
13658
13659 * net/rcirc.el (rcirc-cmd-quit):
13660 Revert 2012-03-18 change (Bug#11192).
13661
13662 2012-04-14 Glenn Morris <rgm@gnu.org>
13663
13664 * pcmpl-rpm.el (pcomplete/rpm): Handle -qf.
13665
13666 2012-04-14 Eli Zaretskii <eliz@gnu.org>
13667
13668 * minibuffer.el (completion-in-region-mode-map):
13669 Bind completion-help-at-point to M-? rather than ?. (Bug#11182)
13670
13671 2012-04-13 Vivek Dasmohapatra <vivek@etla.org>
13672
13673 * hexl.el (hexl-insert-char): Make display sizes other than 16 work.
13674
13675 2012-04-13 Masatake YAMATO <yamato@redhat.com>
13676
13677 * minibuffer.el (minibuffer-local-filename-syntax): New variable
13678 to allow `C-M-f' and `C-M-b' to move to the nearest path
13679 separator (bug#9511).
13680
13681 2012-04-13 Lars Ingebrigtsen <larsi@gnus.org>
13682
13683 * avoid.el: Require cl when compiling. And also move the
13684 `provide' to the end.
13685
13686 2012-04-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
13687
13688 * avoid.el (mouse-avoidance-banish-position): New variable.
13689 (mouse-avoidance-banish-destination): Use it (bug#10165).
13690
13691 2012-04-13 Leo Liu <sdl.web@gmail.com>
13692
13693 * progmodes/which-func.el (which-func-modes): Add objc-mode.
13694
13695 2012-04-13 Ken Brown <kbrown@cornell.edu>
13696
13697 * net/browse-url.el (browse-url-file-url): Remove Cygwin hack;
13698 this is no longer needed now that cygstart understands file:// URLs.
13699 (browse-url-filename-alist): For the same reason, don't modify
13700 file:// URLs on Cygwin.
13701
13702 2012-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
13703
13704 * emulation/cua-base.el (cua--pre-command-handler-1): Don't activate
13705 the region on shift if the binding is already shifted (bug#11221).
13706
13707 2012-04-12 Glenn Morris <rgm@gnu.org>
13708
13709 * mail/mailpost.el: Move to obsolete/.
13710
13711 2012-04-12 Drew Adams <drew.adams@oracle.com>
13712
13713 * imenu.el (imenu--generic-function): Ignore invisible definitions
13714 (bug#10123).
13715
13716 2012-04-12 Vivek Dasmohapatra <vivek@etla.org>
13717
13718 * hexl.el (hexl-bits): New variable.
13719 (hexl-options): Mention the variable in the doc string.
13720 (hexl-rulerise, hexl-line-displen): New functions.
13721 (hexl-mode): Mention the new variable.
13722 (hexl-mode, hexl-current-address, hexl-current-address):
13723 Use the displen.
13724 (hexl-ascii-start-column): New function.
13725 (hexl-address-to-marker, hexl-beginning-of-line, hexl-options)
13726 (hexl-insert-char, hexl-mode-ruler): Use the displen (bug#4941).
13727
13728 2012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
13729
13730 * textmodes/flyspell.el (flyspell-large-region): For hunspell, use
13731 '("-i" ENCODING), in 2 separate command-line arguments, to specify
13732 the encoding, as expected by hunspell.
13733
13734 2012-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
13735
13736 * battery.el (battery--linux-sysfs-regexp): New const.
13737 (battery-status-function): Use it. Remove yeeloong special case.
13738 (battery-yeeloong-sysfs): Remove.
13739 (battery-echo-area-format): Remove yeeloong special case.
13740
13741 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
13742
13743 * imenu.el (imenu-add-to-menubar): `current-local-map' can be nil.
13744 Reported by Noah Friedman.
13745
13746 * subr.el (read-passwd): Use read-string.
13747
13748 2012-04-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
13749
13750 * vcursor.el (vcursor-move): Increase the priority of the overlay
13751 (bug#9663).
13752
13753 2012-04-11 Deniz Dogan <deniz.a.m.dogan@gmail.com>
13754
13755 * net/rcirc.el (rcirc-kill-channel-buffers): New variable.
13756 (rcirc-kill-buffer-hook): Use it to kill channel buffers (bug#5128).
13757
13758 2012-04-11 William Stevenson <yhvh2000@gmail.com>
13759
13760 * textmodes/artist.el (artist-mode): Convert artist-mode to use
13761 define-minor-mode (bug#10760).
13762
13763 2012-04-11 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
13764
13765 * progmodes/grep.el (rgrep): Tweak the find command line so
13766 that directories matching `grep-find-ignored-files' won't be
13767 pruned (bug#10351).
13768
13769 2012-04-11 Chong Yidong <cyd@gnu.org>
13770
13771 * startup.el (command-line): Remove support for long-obsolete
13772 variable font-lock-face-attributes.
13773
13774 2012-04-11 Glenn Morris <rgm@gnu.org>
13775
13776 * vc/vc-bzr.el (vc-bzr-status): Avoid condition-case-unless-debug.
13777
13778 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
13779
13780 * window.el (window--state-get-1): Obey window-point-insertion-type.
13781
13782 2012-04-11 Lennart Borgman <lennart.borgman@gmail.com>
13783
13784 * emacs-lisp/lisp.el (narrow-to-defun): `beginning-of-defun' goes
13785 to previous function when point is on the first character of a
13786 function. Take care of that in `narrow-to-defun' (bug#6157).
13787
13788 2012-04-11 Glenn Morris <rgm@gnu.org>
13789
13790 * vc/vc-bzr.el (vc-bzr-status): Handle all errors,
13791 not just file-errors.
13792
13793 * vc/vc-bzr.el (vc-bzr-sha1-program, sha1-program): Remove.
13794 (vc-bzr-sha1): Use internal sha1.
13795
13796 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
13797
13798 * progmodes/flymake.el (flymake-mode): Beware read-only dirs (bug#8954).
13799
13800 2012-04-10 Sébastien Gross <seb@chezwam.org> (tiny change)
13801
13802 * progmodes/hideshow.el (hs-hide-all): Don't infloop on comments
13803 that start in the middle of the line (bug#10496).
13804
13805 2012-04-10 Dan Nicolaescu <dann@gnu.org>
13806
13807 * battery.el (battery-linux-proc-acpi): Only one battery is
13808 discharged at a time, but that seems to confuse battery.el when
13809 computing `rate-type' for the battery not being discharged
13810 (bug#10332).
13811
13812 2012-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
13813
13814 * emacs-lisp/autoload.el (autoload-make-program): Remove, unused.
13815
13816 * international/quail.el: Use dolist and simplify.
13817 (quail-define-package, quail-update-keyboard-layout)
13818 (quail-define-rules): Use dolist.
13819 (quail-insert-kbd-layout, quail-get-translation): CSE.
13820
13821 * tmm.el: Use dolist, remove left over hook.
13822 (tmm-prompt, tmm-define-keys, tmm-shortcut, tmm-get-keybind):
13823 Use dolist.
13824 (calendar-load-hook): Don't mess with it.
13825
13826 * vc/vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
13827 Use derived-mode-p. Run the diff asynchronously.
13828
13829 2012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
13830
13831 * obsolete/mouse-sel.el: Add an Obsolete-since header.
13832
13833 2012-04-10 Juanma Barranquero <lekktu@gmail.com>
13834
13835 * misc.el: Display absolute path of loaded DLLs (bug#10424).
13836 (list-dynamic-libraries--loaded): New function.
13837 (list-dynamic-libraries--refresh): Use it.
13838
13839 2012-04-10 Nathan Weizenbaum <nweiz@google.com>
13840
13841 * progmodes/python.el (python-fill-paragraph):
13842 Make python-fill-region in a multiline string work when font-lock is
13843 disabled (bug#7018).
13844
13845 2012-04-10 Laimonas Vėbra <laimonas.vebra@gmail.com> (tiny change)
13846
13847 * language/european.el (cp775): Add oem/legacy (en)coding on
13848 DOS/MS Windows for the Baltic languages. There are still plenty
13849 of texts written in this encoding/codepage (bug#6519).
13850
13851 2012-04-10 Glenn Morris <rgm@gnu.org>
13852
13853 * cus-start.el (eol-mnemonic-unix, eol-mnemonic-dos, eol-mnemonic-mac):
13854 Add :standard values, reducing "rogue" customs in emacs -Q a bit more.
13855
13856 2012-04-10 Florian Adamsky <florian@adamsky.it> (tiny change)
13857
13858 * recentf.el (recentf-dialog-mode-map): Add two keybindings for
13859 next-line "n" and previous-line "p" in order to make recentf more
13860 consistent with ibuffer, dired or org-mode (bug#9387).
13861
13862 2012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
13863
13864 * image.el (put-image): Return the overlay created instead of the
13865 optional input string (bug#7834). Note that this may break code
13866 that is (for some reason or other) depending on `put-image'
13867 returning the string.
13868
13869 * mouse-sel.el (mouse-sel-mode): Mark as obsolete (bug#6174).
13870
13871 * simple.el (zap-to-char): Allow zapping using input methods
13872 (bug#1580).
13873
13874 * textmodes/fill.el (fill-region): Leave point and mark where they
13875 were before filling (bug#5399).
13876
13877 2012-04-09 Glenn Morris <rgm@gnu.org>
13878
13879 * version.el (emacs-bzr-get-version):
13880 Handle lightweight checkouts of local branches.
13881
13882 2012-04-09 Andreas Schwab <schwab@linux-m68k.org>
13883
13884 * international/characters.el: Recover lost case pairs. (Bug#11209)
13885
13886 2012-04-09 Chong Yidong <cyd@gnu.org>
13887
13888 * custom.el (custom-variable-p): Return nil for non-symbol
13889 arguments instead of signaling an error.
13890 (user-variable-p): Obsolete alias for custom-variable-p.
13891
13892 * apropos.el (apropos-variable):
13893 * files-x.el (read-file-local-variable):
13894 * simple.el (set-variable):
13895 * woman.el (woman-mini-help):
13896 * emacs-lisp/byte-opt.el (side-effect-free-fns): Callers changed.
13897
13898 2012-04-09 Glenn Morris <rgm@gnu.org>
13899
13900 * startup.el (normal-top-level): Don't look for leim-list.el
13901 in places where it will not be found. (Bug#910)
13902
13903 * international/mule-cmds.el (set-default-coding-systems):
13904 * files.el (normal-mode):
13905 Remove guarded calls to ucs-set-table-for-input. (Bug#9821)
13906 This function was removed with ucs-tables.el in 2008.
13907
13908 2012-04-08 Eli Zaretskii <eliz@gnu.org>
13909
13910 * textmodes/ispell.el (ispell-check-version): For hunspell, set
13911 ispell-encoding8-command to "-i", without a trailing space.
13912 (ispell-start-process): For hunspell, use '("-i" ENCODING), in 2
13913 separate command-line arguments, to specify the encoding, since
13914 that's how hunspell expects it.
13915
13916 2012-04-08 Glenn Morris <rgm@gnu.org>
13917
13918 * loadup.el: Load bindings before cus-start.
13919 This reduces somewhat the number of "rogue" settings in emacs -Q.
13920
13921 2012-04-07 Glenn Morris <rgm@gnu.org>
13922
13923 * version.el (emacs-bzr-get-version): New function.
13924 (emacs-bzr-version): New variable.
13925 * loadup.el (emacs-bzr-version): Set it. (Bug#8054)
13926 * mail/emacsbug.el (report-emacs-bug): Include bzr version.
13927
13928 2012-04-07 Eli Zaretskii <eliz@gnu.org>
13929
13930 * international/uni-bidi.el, international/uni-category.el:
13931 * international/uni-combining.el, international/uni-decimal.el:
13932 * international/uni-decomposition.el, international/uni-digit.el:
13933 * international/uni-lowercase.el, international/uni-mirrored.el:
13934 * international/uni-name.el, international/uni-numeric.el:
13935 * international/uni-titlecase.el, international/uni-uppercase.el:
13936 Update for Unicode 6.1.
13937
13938 2012-04-07 Eli Zaretskii <eliz@gnu.org>
13939
13940 * term/w32-win.el (dynamic-library-alist): Add libxml2 DLLs.
13941
13942 2012-04-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
13943
13944 * window.el (shrink-window): Mention the `window-min-height'
13945 variable in the doc string.
13946
13947 2012-04-05 Bastien Guerry <bzg@altern.org>
13948
13949 * color.el (color-lighten-name): Fix typo.
13950
13951 2012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
13952
13953 * server.el (server--on-display-p): New function.
13954 (server--on-display-p): Use it.
13955
13956 2012-04-04 Gábor Vida <vidagabor@gmail.com> (tiny change)
13957
13958 * ido.el (ido-wide-find-dirs-or-files): Use file-name-absolute-p
13959 (bug#11145).
13960
13961 2012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
13962
13963 * comint.el (comint--common-quoted-suffix): Check string boundary
13964 before comparing (bug#11158).
13965 * pcomplete.el (pcomplete--common-quoted-suffix): Idem.
13966
13967 2012-04-04 Chong Yidong <cyd@gnu.org>
13968
13969 * minibuffer.el (completion-extra-properties): Doc fix.
13970
13971 * subr.el (delayed-warnings-hook): Doc fix.
13972
13973 2012-04-04 Daiki Ueno <ueno@unixuser.org>
13974
13975 * epa.el (epa--select-keys): Bind C-c C-c to finish the key
13976 selection (Bug#11159).
13977 (epa-insert-keys): Inform that the default public key will be
13978 exported if no key is selected.
13979
13980 2012-04-04 Richard Stallman <rms@gnu.org>
13981
13982 * mail/emacsbug.el (report-emacs-bug): Bind inhibit-read-only.
13983
13984 2012-04-03 Chong Yidong <cyd@gnu.org>
13985
13986 * mail/sendmail.el (mail-mode-map): Bind C-c C-i to
13987 mail-insert-file, not its obsolete alias mail-attach-file.
13988
13989 2012-04-03 Michael Albinus <michael.albinus@gmx.de>
13990
13991 * notifications.el (notifications-notify): Fix docstring.
13992
13993 2012-04-02 Glenn Morris <rgm@gnu.org>
13994
13995 * emacs-lisp/authors.el (authors-aliases): Another addition.
13996
13997 2012-04-02 Michael Albinus <michael.albinus@gmx.de>
13998
13999 * net/tramp-gvfs.el (tramp-gvfs-send-command): Apply
14000 `tramp-compat-call-process' instead of `tramp-local-call-process'.
14001 Reported by Magnus Henoch <magnus.henoch@gmail.com>.
14002
14003 2012-04-01 Chong Yidong <cyd@gnu.org>
14004
14005 * files.el (file-in-directory-p): Rename from file-subdir-of-p.
14006 Handle root directory properly.
14007 (copy-directory): Caller changed.
14008
14009 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
14010 * net/tramp.el (tramp-file-name-for-operation): Callers changed.
14011
14012 2012-03-31 Glenn Morris <rgm@gnu.org>
14013
14014 * term/xterm.el (xterm-extra-capabilities): Doc fix.
14015
14016 * language/indian.el ("Devanagari"): Fix typo. (Bug#11103)
14017
14018 * calendar/calendar.el (calendar-window-list)
14019 (calendar-hide-window): Restore. (Bug#11140)
14020 (calendar-exit): Use calendar-window-list, calendar-hide-window again.
14021
14022 * emacs-lisp/edebug.el (edebug-unwrap-results): Doc fix.
14023
14024 2012-03-30 Thierry Volpiatto <thierry.volpiatto@gmail.com>
14025
14026 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
14027 Check if file is a symlink (Bug#10489).
14028
14029 * files.el (copy-directory): Likewise.
14030
14031 2012-03-30 Chong Yidong <cyd@gnu.org>
14032
14033 * image.el (imagemagick-types-inhibit)
14034 (imagemagick-register-types): Doc fix.
14035
14036 2012-03-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
14037
14038 * textmodes/ispell.el (ispell-get-extended-character-mode):
14039 Disable extended-char-mode for hunspell. hunspell does not support it
14040 and treats ~word as ordinary words in pipe mode.
14041
14042 2012-03-30 Glenn Morris <rgm@gnu.org>
14043
14044 * tutorial.el (help-with-tutorial): Ensure local variables don't
14045 happen to make the buffer read-only. (Bug#11127)
14046
14047 2012-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
14048
14049 * progmodes/perl-mode.el (perl-indent-line): Use `noindent' in strings.
14050 (perl-calculate-indent): Return `noindent' in strings.
14051
14052 2012-03-28 Sam Steingold <sds@gnu.org>
14053
14054 * calendar/calendar.el (calendar-exit): Use `quit-windows-on'
14055 instead of the broken adhockery which does not prevent calendar
14056 buffers from being displayed at random after exit.
14057 (calendar-window-list, calendar-hide-window): Remove the broken
14058 adhockery.
14059
14060 2012-03-28 Glenn Morris <rgm@gnu.org>
14061
14062 * replace.el (query-replace-map): Doc fix.
14063
14064 2012-03-28 Andreas Schwab <schwab@linux-m68k.org>
14065
14066 * vc/vc-git.el (vc-git-state): Don't try to match all of the diff
14067 contents. (Bug#11109)
14068
14069 2012-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
14070
14071 * emacs-lisp/avl-tree.el (avl-tree--enter-balance): Fix paren typo
14072 (bug#11077).
14073 (avl-tree--check, avl-tree--check-node): New funs.
14074
14075 2012-03-27 Martin Rudalics <rudalics@gmx.at>
14076
14077 * window.el (switch-to-visible-buffer): New option.
14078 (switch-to-prev-buffer, switch-to-next-buffer):
14079 Observe switch-to-visible-buffer. Make sure that checking for a window
14080 showing a buffer already is done on the same frame.
14081
14082 2012-03-27 Glenn Morris <rgm@gnu.org>
14083
14084 * startup.el (mail-host-address): Doc fix.
14085
14086 2012-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
14087
14088 * emacs-lisp/bytecomp.el (byte-compile-constants-vector): Allow more
14089 than 197 variables.
14090
14091 2012-03-26 Ami Fischman <ami@fischman.org>
14092
14093 * vc/vc-git.el (vc-git-state): Avoid unnecessarily locking.
14094
14095 2012-03-26 Glenn Morris <rgm@gnu.org>
14096
14097 * files.el (save-buffers-kill-emacs): Doc fix.
14098
14099 * startup.el (normal-top-level, command-line, command-line-1):
14100 Give them doc strings.
14101
14102 2012-03-25 Eli Zaretskii <eliz@gnu.org>
14103
14104 * makefile.w32-in (install): Use $(DIRNAME)_same-dir.tst instead
14105 of same-dir.tst, to avoid stepping on other (parallel) Make job's toes.
14106
14107 2012-03-25 Chong Yidong <cyd@gnu.org>
14108
14109 * custom.el (load-theme): Even if NO-ENABLE arg is t, reenable the
14110 theme if it was previously enabled before (Bug#11031).
14111
14112 * cus-theme.el (custom-theme-write-faces): Retrieve current face
14113 spec with custom-face-get-current-spec if its :shown-value is not
14114 determined yet (Bug#9337).
14115 (customize-create-theme, custom-theme-revert): Doc fixes.
14116
14117 * button.el (button-at): Minor addition to docstring.
14118
14119 2012-03-24 Simon Leinen <simon.leinen@gmail.com>
14120
14121 * vc/vc.el (vc-merge): Fix a prompt.
14122
14123 2012-03-24 Chong Yidong <cyd@gnu.org>
14124
14125 * mwheel.el (mwheel-scroll): Call deactivate-mark at the right
14126 point (Bug#9623).
14127
14128 * button.el (button-at): Minor addition to docstring.
14129
14130 2012-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
14131
14132 * newcomment.el (comment-choose-indent): No space after BOL.
14133
14134 2012-03-22 Sam Steingold <sds@gnu.org>
14135
14136 * window.el (switch-to-prev-buffer): Revert last patch because the
14137 bug turned out to be an advertised feature (Elisp manual 28.14).
14138
14139 2012-03-22 Glenn Morris <rgm@gnu.org>
14140
14141 * vc/vc-bzr.el (vc-bzr-status-switches): New option. (Bug#6724)
14142 (vc-bzr-command): If running "status", pass vc-bzr-status-switches.
14143
14144 2012-03-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
14145
14146 * net/network-stream.el (network-stream-open-starttls): Make error
14147 message under Windows be less misleading.
14148
14149 2012-03-22 Liang Wang <netcasper@gmail.com> (tiny change)
14150
14151 * progmodes/etags.el (etags-list-tags): Only use tags which goto-func
14152 understands (bug#9942).
14153
14154 2012-03-22 Chong Yidong <cyd@gnu.org>
14155
14156 * simple.el (end-of-visible-line): Handle return value of
14157 next-single-property-change properly (Bug#9371).
14158
14159 2012-03-22 Kenichi Handa <handa@m17n.org>
14160
14161 * international/quail.el (quail-insert-kbd-layout): Fix previous
14162 change. To avoid unwanted bidi reordering, use
14163 bidi-string-mark-left-to-right instead of inserting LRO and PDF.
14164
14165 2012-03-21 Dmitry Gutov <dgutov@yandex.ru>
14166
14167 * progmodes/ruby-mode.el: Don't confuse "end:" for "end" (bug#10786).
14168 (ruby-block-end-re, ruby-delimiter, ruby-parse-partial)
14169 (ruby-beginning-of-indent): Be more careful with the difference
14170 between word-boundary and symbol boundary.
14171 (ruby-mode-syntax-table): Make : a symbol constituent.
14172
14173 2012-03-21 Andreas Politz <politza@fh-trier.de>
14174
14175 * outline.el (outline-flag-region): Evaporate overlays (bug#10789).
14176
14177 2012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
14178
14179 * progmodes/etags.el (tags-completion-at-point-function):
14180 Improve last fix.
14181
14182 * files.el (move-file-to-trash): Files aren't regexps (bug#11055).
14183
14184 2012-03-21 Sam Steingold <sds@gnu.org>
14185
14186 * progmodes/etags.el (tags-completion-at-point-function):
14187 Avoid the error when point is inside the pattern.
14188
14189 2012-03-21 John Yates <john@yates-sheets.org> (tiny change)
14190
14191 * progmodes/hideshow.el (hs-inside-comment-p): Fix hiding of first
14192 line (Bug#10855).
14193
14194 2012-03-21 Drew Adams <drew.adams@oracle.com>
14195
14196 * info.el (Info-menu): Handle string value of FORK arg (Bug#10858).
14197
14198 2012-03-21 Anmol Khirbat <anmol@khirbat.net> (tiny change)
14199
14200 * ido.el (ido-set-current-directory, ido-read-internal)
14201 (ido-choose-completion-string, ido-completion-help): Handle nil
14202 value of ido-completion-buffer (Bug#11008).
14203
14204 2012-03-21 Sam Steingold <sds@gnu.org>
14205
14206 * window.el (switch-to-prev-buffer): Do not switch to a visible
14207 window previous buffer, just like with the frame previous buffers.
14208
14209 2012-03-21 Chong Yidong <cyd@gnu.org>
14210
14211 * faces.el (make-face, make-empty-face, copy-face):
14212 * face-remap.el (face-remap-add-relative, face-remap-set-base):
14213 Doc fixes.
14214
14215 2012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
14216
14217 * wid-edit.el (widget-complete-field): Remove (bug#11051).
14218 (widget-complete): Remove broken use of it.
14219
14220 2012-03-20 Chong Yidong <cyd@gnu.org>
14221
14222 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
14223 Use string-width and truncate-string-width to handle arbitrary
14224 characters.
14225
14226 2012-03-20 Tassilo Horn <tassilo@member.fsf.org>
14227
14228 * textmodes/artist.el (artist-menu-map): Bind Rectangle menu item
14229 to draw rectangles, not squares. (Regression introduced by revno
14230 2011-03-02T03:48:01Z!cyd@stupidchicken.com)
14231
14232 2012-03-18 Chong Yidong <cyd@gnu.org>
14233
14234 * faces.el (face-spec-reset-face): Don't call display-graphic-p if
14235 it is not yet defined (for temacs).
14236
14237 2012-03-18 Leo Liu <sdl.web@gmail.com>
14238
14239 * net/rcirc.el (rcirc-cmd-quit): Allow quitting all servers with
14240 prefix.
14241
14242 2012-03-17 Eli Zaretskii <eliz@gnu.org>
14243
14244 * textmodes/ispell.el (ispell-skip-tib, ispell-keep-choices-win)
14245 (ispell-choices-win-default-height, ispell-silently-savep)
14246 (ispell-dictionary-alist, ispell-encoding8-command)
14247 (ispell-check-version, ispell-aspell-find-dictionary)
14248 (ispell-valid-dictionary-list, ispell-words-keyword)
14249 (ispell-get-word, ispell-internal-change-dictionary)
14250 (ispell-region, ispell-skip-region-list)
14251 (ispell-begin-skip-region-regexp, ispell-ignore-fcc)
14252 (ispell-process-line, ispell-minor-mode, ispell-minor-check)
14253 (ispell-message-text-end, ispell-message)
14254 (ispell-buffer-local-parsing): Doc fix.
14255
14256 2012-03-13 Jambunathan K <kjambunathan@gmail.com>
14257
14258 * htmlfontify.el: Add support for code block fontification for ODT
14259 export (Bug #9914).
14260 (hfy-optimisations): Define new option
14261 `body-text-only'
14262 (hfy-fontify-buffer): Honor above setting.
14263 (hfy-begin-span, hfy-end-span): New routines factored out form
14264 `hfy-fontify-buffer'.
14265 (hfy-begin-span-handler, hfy-end-span-handler): New variables
14266 that permit insertion of custom tags.
14267 (hfy-fontify-buffer): Use above handlers.
14268 (hfy-face-to-css-default): Same as the earlier `hfy-face-to-css'.
14269 (hfy-face-to-css): Re-defined to be a variable.
14270 (hfy-compile-stylesheet): Modify. Allow stylesheet to be built
14271 over multiple runs. This is made possible by having the caller let
14272 bind a special variable `hfy-user-sheet-assoc'.
14273 (htmlfontify-string): New defun.
14274 (hfy-compile-face-map): Make sure that the last char in the
14275 buffer is correctly fontified.
14276 (hfy-face-resolve-face): Whitespace only change.
14277
14278 2012-03-17 Eli Zaretskii <eliz@gnu.org>
14279
14280 * textmodes/ispell.el (ispell-get-decoded-string): Make the error
14281 message more clear.
14282
14283 2012-03-16 Leo Liu <sdl.web@gmail.com>
14284
14285 * emacs-lisp/copyright.el (copyright-year-ranges): Fix typo.
14286
14287 2012-03-16 Alan Mackenzie <acm@muc.de>
14288
14289 Further optimize the handling of large macros.
14290
14291 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Use a
14292 limit to a call of `c-literal-limits'.
14293 (c-determine-+ve-limit): New function.
14294 (c-at-macro-vsemi-p): Move `c-in-literal' to the bottom of an `and'.
14295 (c-guess-basic-syntax): In macros, restrict a search limit to 2000.
14296 In CASE 5B, restrict a search limit to 500.
14297 (c-just-after-func-arglist-p): Obviouly wrong `or' -> `and'.
14298
14299 * progmodes/cc-mode.el (c-neutralize-syntax-in-and-mark-CPP):
14300 Restrict macro bounds to +-500 from after-change's BEG END.
14301
14302 2012-03-16 Leo Liu <sdl.web@gmail.com>
14303
14304 * font-lock.el (lisp-font-lock-keywords-2): Add letrec.
14305
14306 2012-03-16 Aaron S. Hawley <Aaron.S.Hawley@gmail.com>
14307
14308 * tar-mode.el (tar-mode): Fix saving by conditionally undoing
14309 `special-mode' setting of `buffer-read-only'. (Bug#11010)
14310
14311 2012-03-16 Glenn Morris <rgm@gnu.org>
14312
14313 * view.el (view-buffer, view-buffer-other-window)
14314 (view-buffer-other-frame): Doc fixes re special mode-class.
14315
14316 * subr.el (eval-after-load): If named feature is provided not from
14317 a file, run after-load forms. (Bug#10946)
14318
14319 * calendar/calendar.el (calendar-insert-at-column):
14320 Handle non-unit-width characters a bit better. (Bug#10978)
14321
14322 2012-03-15 Chong Yidong <cyd@gnu.org>
14323
14324 * emacs-lisp/ring.el (ring-extend): New function.
14325 (ring-insert+extend): Extend the ring correctly (Bug#11019).
14326
14327 * comint.el (comint-read-input-ring)
14328 (comint-add-to-input-history): Grow comint-input-ring lazily.
14329
14330 2012-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
14331
14332 * progmodes/perl-mode.el (perl-syntax-propertize-special-constructs):
14333 Fix up parsing of multiline twoarg non-paired elements (bug#11014).
14334
14335 * imenu.el: Fix multiple inheritance breakage (bug#9199).
14336 (imenu-add-to-menubar): Don't add a redundant index.
14337 (imenu-update-menubar): Handle a dynamically composed keymap.
14338
14339 2012-03-13 Katsumi Yamaoka <yamaoka@jpl.org>
14340
14341 * mail/sendmail.el (mail-encode-header):
14342 Bind rfc2047-encode-encoded-words to nil.
14343
14344 2012-03-13 Glenn Morris <rgm@gnu.org>
14345
14346 * calendar/calendar.el (calendar-string-spread):
14347 Handle non-unit-width characters a bit better. (Bug#10978)
14348
14349 2012-03-13 Leo Liu <sdl.web@gmail.com>
14350
14351 * vc/vc-hg.el (vc-hg-working-revision): Rework to work with both
14352 directory and file as argument (Bug#10822).
14353
14354 2012-03-13 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
14355
14356 * progmodes/gdb-mi.el (gdb-invalidate-disassembly):
14357 For dynamically generated code, follow $PC.
14358 (gdb-disassembly-handler-custom): Handle no function name case.
14359
14360 2012-03-13 Tim Landscheidt <tim@tim-landscheidt.de> (tiny change)
14361
14362 * calendar/icalendar.el (icalendar-export-file, icalendar-import-file):
14363 * emulation/ws-mode.el (ws-query-replace):
14364 * sort.el (sort-regexp-fields):
14365 Fix missing trailing whitespace in interactive prompts. (Bug#11002)
14366
14367 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
14368
14369 * dabbrev.el: Fix cycle completion order (bug#10963).
14370 (dabbrev--last-obarray, dabbrev--last-completion-buffer): Remove.
14371 (dabbrev-completion): Don't use an obarray; provide
14372 a cycle-sort-function.
14373
14374 2012-03-12 Leo Liu <sdl.web@gmail.com>
14375
14376 * simple.el (kill-new): Use equal-including-properties for comparison.
14377 (kill-do-not-save-duplicates): Doc fix.
14378
14379 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
14380
14381 * dabbrev.el: Fix cycle completion (bug#10963).
14382 Use lexical binding and wrap to 80 columns.
14383 (dabbrev-completion): Delay computing the list of completions.
14384
14385 2012-03-12 Kenichi Handa <handa@m17n.org>
14386
14387 * international/quail.el (quail-insert-kbd-layout): Surround each
14388 row by LRO and PDF instead of inserting many LRMs. Pad the left
14389 and right of each non-spacing marks. Insert invisible space
14390 between lower and upper characters to prevent composition.
14391
14392 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
14393
14394 * minibuffer.el (minibuffer-complete): Don't get confused when the
14395 function is run twice via different commands (bug#10958).
14396 (complete-with-action): Fix docstring.
14397
14398 2012-03-12 Chong Yidong <cyd@gnu.org>
14399
14400 * nxml/nxml-mode.el (nxml-mode-map): Do not bind C-RET (Bug#6776).
14401 (nxml-completion-at-point-function): New function.
14402 (nxml-mode): Use it.
14403 (nxml-bind-meta-tab-to-complete-flag): Default to t.
14404
14405 * emacs-lisp/package.el (package-unpack, package-unpack-single):
14406 Load generated autoloads file before byte compiling (Bug#10970).
14407 (package--make-autoloads-and-compile): New helper fun.
14408
14409 2012-03-12 Christopher Schmidt <christopher@ch.ristopher.com>
14410
14411 * ibuffer.el (ibuffer-redisplay): Remove another gratuitous error.
14412
14413 2012-03-11 Michael Albinus <michael.albinus@gmx.de>
14414
14415 * autorevert.el (auto-revert-handler): Ensure, that
14416 file-readable-p is applied only for local files or in
14417 auto-revert-tail-mode.
14418
14419 2012-03-11 Andreas Schwab <schwab@linux-m68k.org>
14420
14421 * server.el (server-eval-at): Handle non-tcp connections.
14422 Decode result string.
14423
14424 * server.el (server-msg-size): New constant.
14425 (server-reply-print): New function.
14426 (server-eval-and-print): Use it.
14427 (server-eval-at): Use server-quote-arg and server-unquote-arg.
14428 Handle -print-nonl.
14429
14430 2012-03-11 Christopher Schmidt <christopher@ch.ristopher.com>
14431
14432 * ibuffer.el (ibuffer-redisplay): Remove gratuitous error
14433 (Bug#10987).
14434
14435 2012-03-11 Chong Yidong <cyd@gnu.org>
14436
14437 * simple.el (goto-line): Doc fix (Bug#9938).
14438
14439 * subr.el (save-window-excursion): Doc fix (Bug#9979).
14440
14441 * dabbrev.el (dabbrev--find-expansion): Update progress reporter
14442 when finished (Bug#10963).
14443
14444 2012-03-11 Martin Rudalics <rudalics@gmx.at>
14445
14446 * window.el (split-window-below): Fix bug in case where
14447 split-window-keep-point is nil (Bug#10971).
14448
14449 2012-03-11 Juri Linkov <juri@jurta.org>
14450
14451 * replace.el (replace-highlight): Set isearch-word to nil
14452 unconditionally. (Bug#10887)
14453
14454 2012-03-10 Eli Zaretskii <eliz@gnu.org>
14455
14456 * net/mairix.el (mairix-replace-invalid-chars): Rename from
14457 mairix-replace-illegal-chars; all callers changed. Don't remove
14458 ^, ~, and = characters: they are meaningful in mairix search specs.
14459 (mairix-widget-create-query): Add usage information about mairix
14460 search forms: negating words, searching for substrings, etc.
14461
14462 2012-03-10 Jae-hyeon Park <jae-hyeon.park@desy.de> (tiny change)
14463
14464 * international/fontset.el (font-encoding-alist): Add an entry for
14465 ksx1001 (Bug#5667).
14466
14467 2012-03-10 Richard Stallman <rms@gnu.org>
14468
14469 * mail/sendmail.el (mail-encode-header):
14470 Set rfc2047-encode-encoded-words.
14471
14472 * mail/mail-utils.el (mail-quote-printable): Quote multibyte chars.
14473
14474 * mail/rmail.el (rmail-buffers-swapped-p): Don't assume dead
14475 view buffer means not swapped.
14476 (rmail-view-buffer-kill-buffer-hook): Give buf name in error msg.
14477 (rmail-write-region-annotate): Error if real text has disappeared.
14478
14479 * epa-mail.el (epa-mail-encrypt): Bind inhibit-read-only.
14480
14481 2012-03-10 Chong Yidong <cyd@gnu.org>
14482
14483 * emulation/cua-rect.el (cua--init-rectangles):
14484 * emulation/cua-base.el (cua--init-keymaps):
14485 Add delete-forward-char to remappings (Bug#9666).
14486
14487 2012-03-10 Martin Rudalics <rudalics@gmx.at>
14488
14489 * speedbar.el (speedbar-unhighlight-one-tag-line):
14490 Avoid unhighlighting due to frame switching (Bug#10275).
14491
14492 2012-03-10 Chong Yidong <cyd@gnu.org>
14493
14494 * minibuffer.el (completion-in-region, completion-help-at-point):
14495 Give the completion field overlay a high priority (Bug#6830).
14496
14497 * dired.el (dired-goto-file): Recognize absolute file name
14498 listings (Bug#7126).
14499 (dired-goto-file-1): New helper function.
14500 (dired-toggle-read-only): Inhibit warnings.
14501
14502 2012-03-09 Michael Albinus <michael.albinus@gmx.de>
14503
14504 * net/dbus.el (dbus-property-handler): Return empty array if
14505 there are no properties.
14506
14507 2012-03-09 Leo Liu <sdl.web@gmail.com>
14508
14509 * savehist.el (savehist-printable): Stricter check for string
14510 value (Bug#10937).
14511
14512 2012-03-09 Eli Zaretskii <eliz@gnu.org>
14513
14514 * mail/smtpmail.el (smtpmail-send-it):
14515 Bind coding-system-for-write to *-unix, so that FCC files are kept in
14516 valid mbox format.
14517
14518 2012-03-09 Glenn Morris <rgm@gnu.org>
14519
14520 * files.el (dir-locals-find-file):
14521 Don't check result is regular, readable.
14522 (dir-locals-read-from-file): Demote errors.
14523
14524 2012-03-08 Eli Zaretskii <eliz@gnu.org>
14525
14526 * international/quail.el (quail-insert-kbd-layout):
14527 Insert invisible LRM characters before each character in a keyboard
14528 layout cell, to prevent their reordering by bidi display engine.
14529 For details, see the discussion in
14530 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00085.html.
14531
14532 2012-03-08 Alan Mackenzie <acm@muc.de>
14533
14534 * progmodes/cc-cmds.el (c-mark-function): Make it leave a mark at
14535 the starting position; make it extend the marked region when
14536 invoked repeatedly - all under appropriate circumstances.
14537 Fixes bugs #5525, #10906.
14538
14539 2012-03-08 Glenn Morris <rgm@gnu.org>
14540
14541 * files.el (locate-dominating-file, dir-locals-find-file):
14542 Undo 2012-03-06 change.
14543
14544 2012-03-07 Eli Zaretskii <eliz@gnu.org>
14545
14546 * international/quail.el (quail-help):
14547 Force bidi-paragraph-direction be left-to-right. See discussion in
14548 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00062.html
14549 for the reason.
14550
14551 2012-03-07 Michael Albinus <michael.albinus@gmx.de>
14552
14553 Avoid superfluous registering of signals. (Bug#10807)
14554
14555 * notifications.el (notifications-on-action-object)
14556 (notifications-on-close-object): New defvars.
14557 (notifications-on-action-signal, notifications-on-closed-signal):
14558 Unregister the signal if not needed any longer.
14559 (notifications-notify): Register `notifications-action-signal' or
14560 `notifications-closed-signal', if :on-action or :on-close has been
14561 passed as argument.
14562
14563 2012-03-07 Chong Yidong <cyd@gnu.org>
14564
14565 * cus-start.el: Avoid x-select-enable-clipboard-manager warning on
14566 non-X platforms.
14567
14568 2012-03-06 Glenn Morris <rgm@gnu.org>
14569
14570 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
14571 (x-disown-selection-internal, x-get-selection-internal):
14572 Doc fix (add arglist signatures). (Bug#10783)
14573
14574 2012-03-06 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
14575
14576 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
14577 Handle breakpoints with no "type".
14578
14579 2012-03-06 Glenn Morris <rgm@gnu.org>
14580
14581 * files.el (locate-dominating-file): Add optional predicate argument.
14582 (dir-locals-find-file): Make use of above change.
14583
14584 2012-03-06 Thien-Thi Nguyen <ttn@gnuvola.org>
14585
14586 * info.el (Info-insert-dir): Also try "dir.gz".
14587
14588 2012-03-06 Glenn Morris <rgm@gnu.org>
14589
14590 * files.el (dir-locals-find-file):
14591 Ignore non-readable or non-regular files. (Bug#10928)
14592
14593 * files.el (locate-dominating-file): Doc fix.
14594
14595 2012-03-06 Adam Spiers <emacs@adamspiers.org> (tiny change)
14596
14597 * calendar/calendar.el (calendar-set-mode-line):
14598 `getenv' returns a string. (Bug#10951)
14599
14600 2012-03-05 Leo Liu <sdl.web@gmail.com>
14601
14602 * simple.el (backward-delete-char-untabify): Constrain point to
14603 field (Bug#10939).
14604
14605 * eshell/em-cmpl.el (eshell-cmpl-initialize): Fix shift-tab key.
14606
14607 2012-03-05 Chong Yidong <cyd@gnu.org>
14608
14609 * simple.el (count-words): If called from Lisp, return the word
14610 count, for symmetry with `count-lines'. Arglist changed.
14611 (count-words--message): Args changed. Consolidate counting code
14612 from count-words and count-words-region.
14613 (count-words-region): Caller changed.
14614 (count-lines-region): Make it an obsolete alias.
14615
14616 2012-03-04 Tassilo Horn <tassilo@member.fsf.org>
14617
14618 * saveplace.el (save-place-to-alist)
14619 (save-place-ignore-files-regexp): Allow value nil to disable this
14620 feature.
14621
14622 2012-03-04 Chong Yidong <cyd@gnu.org>
14623
14624 * faces.el (face-spec-reset-face): For the default face, reset the
14625 attributes to default values (Bug#10748).
14626
14627 2012-03-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
14628
14629 * mail/emacsbug.el (report-emacs-bug-hook): Fix up thinko in
14630 previous patch: Check `message-send-mail-function', and not the
14631 default function (bug#10897).
14632
14633 2012-03-04 Michael Albinus <michael.albinus@gmx.de>
14634
14635 * notifications.el (notifications-on-action-signal)
14636 (notifications-on-closed-signal): Check for unique service name of
14637 incoming event. Fix error in removing entry.
14638 (top): Register for signals with wildcard service name.
14639 (notifications-notify): Use daemon unique service name for map entries.
14640
14641 2012-03-04 Chong Yidong <cyd@gnu.org>
14642
14643 * cus-start.el: Make x-select-enable-clipboard-manager customizable.
14644
14645 2012-03-04 Glenn Morris <rgm@gnu.org>
14646
14647 * abbrev.el (copy-abbrev-table, abbrev-table-p)
14648 (abbrev-minor-mode-table-alist, define-abbrev, abbrev-insert)
14649 (expand-abbrev, define-abbrev-table): Doc fixes.
14650
14651 2012-03-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
14652
14653 * mail/emacsbug.el (report-emacs-bug-hook): Look at the value of
14654 `message-default-send-mail-function' and not `send-mail-function'
14655 when doing the prompting for `sendmail-query-once' before sending
14656 in Message buffers (bug#10897).
14657
14658 * net/tls.el (open-tls-stream): Don't set the dont-query-on-exit flag.
14659 This is inconsistent with all the other stream functions, which leave
14660 the setting up to the higher levels (if so wanted) (bug#10931).
14661
14662 2012-03-02 Alan Mackenzie <acm@muc.de>
14663
14664 Depessimize the handling of very large macros.
14665
14666 * progmodes/cc-engine.el (c-macro-cache, c-macro-cache-start-pos):
14667 (c-macro-cache-syntactic): New variables to implement a one
14668 element macro cache.
14669 (c-invalidate-macro-cache): New function.
14670 (c-beginning-of-macro, c-end-of-macro, c-syntactic-end-of-macro):
14671 Adapt to use the new cache.
14672 (c-state-safe-place): Use better the cache of safe positions.
14673 (c-state-semi-nonlit-pos-cache)
14674 (c-state-semi-nonlit-pos-cache-limit):
14675 New variables for...
14676 (c-state-semi-safe-place): New function. Here, in a macro is "safe".
14677 (c-invalidate-state-cache-1): New stuff for c-state-semi-safe-place.
14678 (c-in-literal, c-literal-limits, c-determine-limit-get-base):
14679 Use c-state-semi-safe-place.
14680
14681 * progmodes/cc-langs.el (c-get-state-before-change-functions):
14682 Add c-invalidate-macro-cache to the C, C++, Obj entries.
14683
14684 2012-03-02 Michael Albinus <michael.albinus@gmx.de>
14685
14686 * jka-compr.el (jka-compr-call-process):
14687 Apply `file-accessible-directory-p' only when the default directory is
14688 not remote.
14689
14690 2012-03-01 Michael Albinus <michael.albinus@gmx.de>
14691
14692 * files.el (file-equal-p): Fix docstring. Avoid unnecessary
14693 access of FILE2, if FILE1 does not exist.
14694
14695 * net/tramp-sh.el (tramp-remote-process-environment): Add "PAGER=\"\"".
14696 Reported by Robert Lupton the Good <rhl@astro.princeton.edu>.
14697
14698 * vc/vc-git.el (vc-git--call): Enable `inhibit-null-byte-detection'.
14699 Add "PAGER=" to `process-environment'.
14700
14701 2012-03-01 Michael R. Mauger <mmaug@yahoo.com>
14702
14703 * progmodes/sql.el: Bug fix
14704 (sql-get-login-ext): Save login values in globals.
14705 (sql-get-login): Use new version of `sql-get-login-ext'.
14706 (sql-interactive-mode): Set global `sql-connection' to nil.
14707 (sql-connect): Set global values for connection.
14708 (sql-product-interactive): Save global values as buffer local.
14709
14710 2012-02-29 Leo Liu <sdl.web@gmail.com>
14711
14712 * abbrev.el (define-abbrevs): Reset sys to nil.
14713
14714 2012-02-28 Thierry Volpiatto <thierry.volpiatto@gmail.com>
14715
14716 * files.el (file-equal-p): Rename from `files-equal-p'.
14717 Return nil when one or both files don't exist.
14718 (file-subdir-of-p): Now only top directory must exists,
14719 return nil if it doesn't.
14720 (copy-directory): No need to test with `file-subdir-of-p' after
14721 creating dir.
14722 * net/tramp.el (tramp-file-name-for-operation): Rename `files-equal-p'
14723 to `file-equal-p'.
14724
14725 2012-02-28 Glenn Morris <rgm@gnu.org>
14726
14727 * shell.el (shell-mode):
14728 * progmodes/vhdl-mode.el (wildcard-to-regexp, file-expand-wildcards):
14729 * play/landmark.el (landmark-font-lock-face-O):
14730 * play/handwrite.el (handwrite):
14731 * play/gomoku.el (gomoku-O):
14732 * net/browse-url.el (browse-url-browser-display):
14733 * international/mule.el (define-charset):
14734 * htmlfontify.el (hfy-etags-cmd, hfy-face-attr-for-class):
14735 * filesets.el (filesets-find-file-delay):
14736 * eshell/em-xtra.el (eshell-xtra):
14737 * eshell/em-unix.el (eshell-grep):
14738 * emulation/viper.el (viper-mode):
14739 * emacs-lisp/regexp-opt.el (regexp-opt-group):
14740 * emacs-lisp/easymenu.el (easy-menu-define):
14741 * calendar/timeclock.el (timeclock-use-display-time):
14742 * bs.el (bs-mode):
14743 * bookmark.el (bookmark-save-flag):
14744 Doc fix (standardize possessive apostrophe usage).
14745
14746 2012-02-27 Chong Yidong <cyd@gnu.org>
14747
14748 * emulation/viper-cmd.el (viper-intercept-ESC-key):
14749 Fix key-binding lookup for ESC key (Bug#9146).
14750
14751 * font-lock.el (font-lock-specified-p): Rename from
14752 font-lock-spec-present. Callers changed.
14753
14754 2012-02-27 Daniel Hackney <dan@haxney.org>
14755
14756 * emacs-lisp/package.el (package-compute-transaction):
14757 Handle holding a package version to t in package-load-list.
14758
14759 2012-02-26 Michael Albinus <michael.albinus@gmx.de>
14760
14761 * net/tramp.el (tramp-inodes, tramp-devices): Initialize with 0.
14762 (tramp-get-inode, tramp-get-device): Use cached values.
14763
14764 2012-02-26 Alan Mackenzie <acm@muc.de>
14765
14766 Check there is a font-lock specification before doing initial
14767 fontification.
14768
14769 * font-core.el (font-lock-mode): Move the conditional from
14770 :after-hook to font-lock-initial-fontify.
14771 (font-lock-default-function): Move the check for a specification
14772 to font-lock-spec-present.
14773
14774 * font-lock.el (font-lock-initial-fontify): Call ...
14775 (font-lock-spec-present): New function.
14776
14777 2012-02-26 Jim Blandy <jimb@red-bean.com>
14778
14779 * progmodes/gdb-mi.el (gdb-mi-quote): New function.
14780 (gdb-send): Apply it to the operand of the '-interpreter-exec
14781 console' command, so that we can pass arguments with (say) quotes
14782 in them. Store exact string sent in gdb-debug-log (Bug#10765).
14783
14784 2012-02-26 Chong Yidong <cyd@gnu.org>
14785
14786 * help-fns.el (describe-function-1): Clarify description of
14787 remapping (Bug#10844).
14788
14789 * files.el (files-equal-p): Doc fix.
14790 (file-subdir-of-p): Doc fix. Convert loop macro to plain Lisp,
14791 and quit the loop once a mismatch is found.
14792
14793 2012-02-25 Juanma Barranquero <lekktu@gmail.com>
14794
14795 * bs.el (bs--show-with-configuration): Don't throw an error
14796 if the window cannot be split; otherwise, subsequent calls to
14797 bs-show fail, restoring a stale window config. (Bug#10882)
14798
14799 2012-02-25 Jan Djärv <jan.h.d@swipnet.se>
14800
14801 * term/ns-win.el (global-map): Bind ns-drag-file to
14802 ns-find-file (Bug#5855, Bug#10050).
14803
14804 2012-02-25 Andreas Schwab <schwab@linux-m68k.org>
14805
14806 * calendar/parse-time.el (parse-time-string): Allow extractor to
14807 return nil.
14808
14809 2012-02-25 Michael Albinus <michael.albinus@gmx.de>
14810
14811 * net/tramp.el (tramp-file-name-for-operation):
14812 Add `files-equal-p' and `file-subdir-of-p'.
14813
14814 * net/tramp-sh.el (tramp-sh-handle-copy-directory):
14815 * net/tramp-smb.el (tramp-smb-handle-copy-directory):
14816 Add COPY-CONTENTS argument.
14817
14818 2012-02-25 Chong Yidong <cyd@gnu.org>
14819
14820 Add custom groups for VC backends, for consistency with vc-bzr.
14821
14822 * vc/vc-arch.el (vc-arch):
14823 * vc/vc-cvs.el (vc-cvs):
14824 * vc/vc-git.el (vc-git):
14825 * vc/vc-hg.el (vc-hg):
14826 * vc/vc-mtn.el (vc-mtn):
14827 * vc/vc-rcs.el (vc-rcs):
14828 * vc/vc-sccs.el (vc-sccs):
14829 * vc/vc-svn.el (vc-svn): New customization group (Bug#10871).
14830 All relevant defcustoms reassigned.
14831
14832 2012-02-25 Chong Yidong <cyd@gnu.org>
14833
14834 * newcomment.el (comment-styles): Add autoload (Bug#10868).
14835
14836 * term/x-win.el (x-initialize-window-system): Reduce default for
14837 x-selection-timeout to 5 seconds (Bug#8869).
14838
14839 2012-02-24 Thierry Volpiatto <thierry.volpiatto@gmail.com>
14840
14841 * files.el (files-equal-p, file-subdir-of-p): New functions.
14842 (copy-directory): Error when trying to copy a directory on itself.
14843 Add missing copy-contents arg to tramp handler.
14844 * dired-aux.el (dired-copy-file-recursive): Same.
14845 (dired-create-files): Modify destination when source is equal to
14846 dest when copying files.
14847 Return also when dest is a subdir of source. (Bug#10489)
14848
14849 2012-02-24 Michael Albinus <michael.albinus@gmx.de>
14850
14851 * net/ange-ftp.el (ange-ftp-parse-netrc): Suppress comment lines.
14852 (Bug#10874)
14853
14854 2012-02-23 Alan Mackenzie <acm@muc.de>
14855
14856 * emacs-lisp/easy-mmode.el (define-minor-mode): Add extra
14857 parameter "after-hook:" to allow the expansion to run code after
14858 the execution of the mode hooks.
14859
14860 * font-lock.el (font-lock-initial-fontify): New function extracted
14861 from font-lock-mode-internal.
14862
14863 * font-core.el (font-lock-mode): Call font-lock-initial-fontify in
14864 :after-hook.
14865
14866 2012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
14867
14868 * minibuffer.el: Make sure cycling is reset upon edit with icomplete.el.
14869 (completion--cache-all-sorted-completions): New function.
14870 (completion-all-sorted-completions): Use it.
14871 (completion--do-completion, minibuffer-force-complete):
14872 Use it to re-instate the flush hook.
14873
14874 * icomplete.el (icomplete-completions): Replace last fix with a better
14875 one (bug#10850).
14876
14877 2012-02-23 Dmitry Gutov <dgutov@yandex.ru>
14878
14879 * emacs-lisp/lisp.el (beginning-of-defun-raw): Don't call end-of-defun
14880 when it might call us back infinitely (bug#10797).
14881
14882 2012-02-23 Glenn Morris <rgm@gnu.org>
14883
14884 * minibuffer.el (completion-category-overrides): Doc fix.
14885
14886 2012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
14887
14888 * minibuffer.el (completion-table-with-context): Fix inf-loop.
14889 Reported by Aaron S. Hawley <aaron.s.hawley@gmail.com>.
14890
14891 2012-02-23 Glenn Morris <rgm@gnu.org>
14892
14893 * emacs-lisp/authors.el (authors-aliases, authors-fixed-case)
14894 (authors-obsolete-files-regexps, authors-ignored-files)
14895 (authors-ambiguous-files, authors-renamed-files-alist):
14896 Add more entries.
14897
14898 2012-02-23 Juri Linkov <juri@jurta.org>
14899
14900 * isearch.el (isearch-occur): Sync interactive spec with occur's
14901 new feature in `occur-read-primary-args'. Doc fix. (Bug#10705)
14902
14903 * replace.el (occur-menu-map): Add menu item for `occur-edit-mode'.
14904
14905 2012-02-22 Juri Linkov <juri@jurta.org>
14906
14907 * international/mule-cmds.el (read-char-by-name): Use \` and \'.
14908 (ucs-insert): Doc fix. Check for hex digits in the string.
14909 Don't display `nil' in the error message. (Bug#10857)
14910
14911 2012-02-22 Alan Mackenzie <acm@muc.de>
14912
14913 * progmodes/cc-mode.el: Revert change #2012-02-06T22:08:41Z!larsi@gnus.org from 2012-02-06.
14914
14915 2012-02-22 Glenn Morris <rgm@gnu.org>
14916
14917 * ffap.el (ffap-c-path):
14918 * man.el (Man-header-file-path): Handle multiarch. (Bug#10702)
14919
14920 2012-02-22 Chong Yidong <cyd@gnu.org>
14921
14922 * custom.el (load-theme): Doc fix.
14923
14924 2012-02-22 Glenn Morris <rgm@gnu.org>
14925
14926 * dired-x.el (dired-guess-shell-alist-default):
14927 Remove escape sequences from nroff output. (Bug#172)
14928
14929 2012-02-21 Glenn Morris <rgm@gnu.org>
14930
14931 * vc/emerge.el (emerge-defvar-local):
14932 Set `permanent-local' property rather than unused `preserved'.
14933
14934 * textmodes/picture.el (picture-delete-char): New alias.
14935 (picture-mode-map): Use it. (Bug#10860)
14936 (picture-mode): Doc fix.
14937
14938 2012-02-21 Juanma Barranquero <lekktu@gmail.com>
14939
14940 * newcomment.el (uncomment-region-default): Remove unused binding.
14941
14942 2012-02-21 Glenn Morris <rgm@gnu.org>
14943
14944 * textmodes/picture.el (picture-motion, picture-motion-reverse)
14945 (picture-self-insert, picture-tab-chars): Doc fix.
14946 (picture-mode-map): Fix C-a, C-e.
14947
14948 2012-02-20 Glenn Morris <rgm@gnu.org>
14949
14950 * emacs-lisp/authors.el (authors-aliases): Add another entry.
14951
14952 2012-02-20 Leo Liu <sdl.web@gmail.com>
14953
14954 * icomplete.el (icomplete-completions): Check FROM arg before
14955 passing to substring (Bug#10850).
14956
14957 2012-02-19 Chong Yidong <cyd@gnu.org>
14958
14959 * comint.el: Require ansi-color.
14960 (comint-output-filter-functions): Add ansi-color-process-output.
14961
14962 * ansi-color.el: Don't set comint-output-filter-functions; it is
14963 now in the initial value defined in comint.el.
14964 (ansi-color-apply-face-function): New variable.
14965 (ansi-color-apply-on-region): Use it.
14966 (ansi-color-apply-overlay-face): New function.
14967
14968 * shell.el (shell): No need to require ansi-color.
14969 (shell-mode): Use ansi-color-apply-face-function to highlight
14970 color escapes using font-lock-face property (Bug#10835).
14971
14972 2012-02-19 Chong Yidong <cyd@gnu.org>
14973
14974 * vc/ediff-init.el (ediff-strip-mode-line-format): Handle non-list
14975 mode-line formats (Bug#10839).
14976
14977 2012-02-18 Glenn Morris <rgm@gnu.org>
14978
14979 * mail/rmail.el (rmail-dont-reply-to-names): Mark as obsolete.
14980
14981 * mail/undigest.el (unforward-rmail-message): Doc fix.
14982
14983 * saveplace.el (save-place-ignore-files-regexp): Add :version.
14984
14985 2012-02-18 Eli Zaretskii <eliz@gnu.org>
14986
14987 * international/characters.el (script-list): Sync with the latest
14988 Unicode Character Database.
14989
14990 2012-02-18 Andreas Schwab <schwab@linux-m68k.org>
14991
14992 * international/titdic-cnv.el: Remove duplicate coding tag.
14993 * language/cham.el: Likewise.
14994 * language/tai-viet.el: Likewise.
14995
14996 2012-02-18 Glenn Morris <rgm@gnu.org>
14997
14998 * calendar/cal-menu.el (cal-menu-diary-menu, cal-menu-goto-menu):
14999 * calendar/calendar.el (diary-file, diary-bahai-entry-symbol)
15000 (calendar-bahai-all-holidays-flag, calendar-other-dates):
15001 * calendar/diary-lib.el (diary-abbreviated-year-flag):
15002 * calendar/holidays.el (holiday-bahai-holidays)
15003 (calendar-holidays, list-holidays):
15004 Use utf-8 Bahá'í in doc-strings, menus, etc.
15005
15006 2012-02-17 Tassilo Horn <tassilo@member.fsf.org>
15007
15008 * saveplace.el (save-place-ignore-files-regexp): New variable
15009 allowing for excluding files from saving their location of point.
15010 The default value matches the temporary commit message editing
15011 files from Git, SVN, Bazaar, and Mercurial.
15012 (save-place-to-alist): Use it.
15013
15014 2012-02-17 Lawrence Mitchell <wence@gmx.li>
15015 Stefan Monnier <monnier@iro.umontreal.ca>
15016
15017 * newcomment.el (uncomment-region-default): Don't leave extra space
15018 when an arg is provided (bug#8150).
15019
15020 2012-02-17 Teodor Zlatanov <tzz@lifelogs.com>
15021
15022 * net/gnutls.el (gnutls-trustfiles): Fix Cygwin bundle location.
15023
15024 2012-02-17 Glenn Morris <rgm@gnu.org>
15025
15026 * net/socks.el: Require network-stream. (Bug#10599)
15027
15028 2012-02-17 Kenichi Handa <handa@m17n.org>
15029
15030 * international/charprop.el:
15031 * international/uni-name.el:
15032 * international/uni-old-name.el:
15033 * international/uni-comment.el: Regenerate.
15034
15035 2012-02-16 Glenn Morris <rgm@gnu.org>
15036
15037 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits):
15038 Interactively in calendar buffer, give an error if not on a date.
15039
15040 2012-02-15 Glenn Morris <rgm@gnu.org>
15041
15042 * shell.el (shell-delimiter-argument-list):
15043 Revert 2011-02-17 change. (Bug#8027)
15044
15045 2012-02-15 Chong Yidong <cyd@gnu.org>
15046
15047 * minibuffer.el (completion-at-point-functions): Doc fix.
15048
15049 * custom.el (defcustom): Doc fix; note use of defvar.
15050
15051 2012-02-15 Glenn Morris <rgm@gnu.org>
15052
15053 * mail/smtpmail.el (smtpmail-smtp-user, smtpmail-stream-type):
15054 Doc fixes.
15055
15056 2012-02-14 Glenn Morris <rgm@gnu.org>
15057
15058 * mail/smtpmail.el (smtpmail-query-smtp-server): Give it a doc.
15059
15060 2012-02-14 Lars Ingebrigtsen <larsi@gnus.org>
15061
15062 * mail/smtpmail.el (smtpmail-query-smtp-server): Fix typo in the
15063 way the ports list is computed.
15064 (smtpmail-query-smtp-server): Prompt the user for a port number if
15065 we can't connect to any of the standard ports (bug#10810).
15066
15067 2012-02-14 Teodor Zlatanov <tzz@lifelogs.com>
15068
15069 * net/gnutls.el (gnutls-trustfiles): Add Cygwin location.
15070
15071 2012-02-13 Glenn Morris <rgm@gnu.org>
15072
15073 * minibuffer.el (read-file-name): Doc fix. (Bug#10798)
15074
15075 2012-02-13 Teodor Zlatanov <tzz@lifelogs.com>
15076
15077 * net/gnutls.el (gnutls-trustfiles): New variable.
15078 (gnutls-negotiate): Use it.
15079
15080 2012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
15081
15082 * simple.el (mail-user-agent): Mention that `gnus-user-agent' only
15083 does its stuff if Gnus is running.
15084
15085 2012-02-13 Alan Mackenzie <acm@muc.de>
15086
15087 Fix a loop in c-set-fl-decl-start.
15088
15089 * progmodes/cc-engine.el (c-set-fl-decl-start): Add a check that
15090 c-backward-syntactic-ws actually moves backwards.
15091
15092 2012-02-13 Leo Liu <sdl.web@gmail.com>
15093
15094 * net/rcirc.el (rcirc-markup-attributes): Move point to the
15095 beginning so that all \C-o chars are removed.
15096
15097 2012-02-12 Teodor Zlatanov <tzz@lifelogs.com>
15098
15099 * net/gnutls.el (gnutls-algorithm-priority): Add missing :group tag.
15100
15101 2012-02-12 Alan Mackenzie <acm@muc.de>
15102
15103 Fix infinite loop with long macros.
15104 * progmodes/cc-engine.el (c-state-safe-place): Handle macros properly.
15105
15106 2012-02-12 Chong Yidong <cyd@gnu.org>
15107
15108 * window.el (display-buffer): Doc fix (Bug#10785).
15109
15110 2012-02-12 Glenn Morris <rgm@gnu.org>
15111
15112 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
15113 (x-disown-selection-internal, x-get-selection-internal):
15114 Sync docs with the xselect.c versions.
15115
15116 * allout-widgets.el: Add missing license notice.
15117
15118 2012-02-11 Glenn Morris <rgm@gnu.org>
15119
15120 * select.el (x-get-selection-internal, x-own-selection-internal)
15121 (x-disown-selection-internal):
15122 * x-dnd.el (x-get-selection-internal): Update declarations.
15123
15124 * vc/log-view.el (vc-diff-internal): Remove unneeded declaration.
15125
15126 * window.el (window-sides-slots):
15127 * tool-bar.el (tool-bar-position):
15128 * term/xterm.el (xterm-extra-capabilities):
15129 * ses.el (ses-self-reference-early-detection):
15130 * progmodes/verilog-mode.el (verilog-auto-declare-nettype)
15131 (verilog-auto-wire-type)
15132 (verilog-auto-delete-trailing-whitespace)
15133 (verilog-auto-reset-blocking-in-non, verilog-auto-inst-sort)
15134 (verilog-auto-tieoff-declaration):
15135 * progmodes/sql.el (sql-login-hook, sql-ansi-statement-starters)
15136 (sql-oracle-statement-starters, sql-oracle-scan-on):
15137 * progmodes/prolog.el (prolog-align-comments-flag)
15138 (prolog-indent-mline-comments-flag, prolog-object-end-to-0-flag)
15139 (prolog-left-indent-regexp, prolog-paren-indent-p)
15140 (prolog-paren-indent, prolog-parse-mode, prolog-keywords)
15141 (prolog-types, prolog-mode-specificators)
15142 (prolog-determinism-specificators, prolog-directives)
15143 (prolog-electric-newline-flag, prolog-hungry-delete-key-flag)
15144 (prolog-electric-dot-flag)
15145 (prolog-electric-dot-full-predicate-template)
15146 (prolog-electric-underscore-flag, prolog-electric-tab-flag)
15147 (prolog-electric-if-then-else-flag, prolog-electric-colon-flag)
15148 (prolog-electric-dash-flag, prolog-old-sicstus-keys-flag)
15149 (prolog-program-switches, prolog-prompt-regexp)
15150 (prolog-debug-on-string, prolog-debug-off-string)
15151 (prolog-trace-on-string, prolog-trace-off-string)
15152 (prolog-zip-on-string, prolog-zip-off-string)
15153 (prolog-use-standard-consult-compile-method-flag)
15154 (prolog-use-prolog-tokenizer-flag, prolog-imenu-flag)
15155 (prolog-imenu-max-lines, prolog-info-predicate-index)
15156 (prolog-underscore-wordchar-flag, prolog-use-sicstus-sd)
15157 (prolog-char-quote-workaround):
15158 * progmodes/cc-vars.el (c-defun-tactic):
15159 * net/tramp.el (tramp-encoding-command-interactive)
15160 (tramp-local-end-of-line):
15161 * net/soap-client.el (soap-client):
15162 * net/netrc.el (netrc-file):
15163 * net/gnutls.el (gnutls):
15164 * minibuffer.el (completion-category-overrides)
15165 (completion-cycle-threshold)
15166 (completion-pcm-complete-word-inserts-delimiters):
15167 * man.el (Man-name-local-regexp):
15168 * mail/feedmail.el (feedmail-display-full-frame):
15169 * international/characters.el (glyphless-char-display-control):
15170 * eshell/em-ls.el (eshell-ls-date-format):
15171 * emacs-lisp/cl-indent.el (lisp-lambda-list-keyword-alignment)
15172 (lisp-lambda-list-keyword-parameter-indentation)
15173 (lisp-lambda-list-keyword-parameter-alignment):
15174 * doc-view.el (doc-view-image-width, doc-view-unoconv-program):
15175 * dired-x.el (dired-omit-verbose):
15176 * cus-theme.el (custom-theme-allow-multiple-selections):
15177 * calc/calc.el (calc-highlight-selections-with-faces)
15178 (calc-lu-field-reference, calc-lu-power-reference)
15179 (calc-note-threshold):
15180 * battery.el (battery-mode-line-limit):
15181 * arc-mode.el (archive-7z-extract, archive-7z-expunge)
15182 (archive-7z-update):
15183 * allout.el (allout-prefixed-keybindings)
15184 (allout-unprefixed-keybindings)
15185 (allout-inhibit-auto-fill-on-headline)
15186 (allout-flattened-numbering-abbreviation):
15187 * allout-widgets.el (allout-widgets-auto-activation)
15188 (allout-widgets-icons-dark-subdir)
15189 (allout-widgets-icons-light-subdir, allout-widgets-icon-types)
15190 (allout-widgets-theme-dark-background)
15191 (allout-widgets-theme-light-background)
15192 (allout-widgets-item-image-properties-emacs)
15193 (allout-widgets-item-image-properties-xemacs)
15194 (allout-widgets-run-unit-tests-on-load)
15195 (allout-widgets-time-decoration-activity)
15196 (allout-widgets-hook-error-post-time)
15197 (allout-widgets-track-decoration):
15198 Add missing :version tags to new defcustoms and defgroups.
15199
15200 * progmodes/sql.el (sql-ansi-statement-starters)
15201 (sql-oracle-statement-starters): Add custom type.
15202
15203 * progmodes/prolog.el: Remove leading '*' from defcustom docs.
15204 (prolog-system-version): Give it a type.
15205
15206 2012-02-11 Eli Zaretskii <eliz@gnu.org>
15207
15208 * term/pc-win.el (x-select-text, x-selection-owner-p)
15209 (x-own-selection-internal, x-disown-selection-internal)
15210 (x-get-selection-internal): Sync doc strings and argument lists
15211 with xselect.c, common-win.el and x-win.el. (Bug#10783)
15212
15213 2012-02-11 Leo Liu <sdl.web@gmail.com>
15214
15215 * progmodes/python.el (python-end-of-statement): Fix infinite
15216 loop. (Bug#10788)
15217
15218 2012-02-10 Glenn Morris <rgm@gnu.org>
15219
15220 * international/mule-cmds.el (unify-8859-on-encoding-mode)
15221 (unify-8859-on-decoding-mode): Properly mark as obsolete.
15222
15223 2012-02-10 Lars Ingebrigtsen <larsi@gnus.org>
15224
15225 * mail/emacsbug.el (report-emacs-bug-hook): Query the user first
15226 about SMTP before checking the From header.
15227
15228 * mail/sendmail.el (sendmail-query-user-about-smtp): Refactor out
15229 into own function for reuse by emacsbug.el.
15230
15231 2012-02-10 Leo Liu <sdl.web@gmail.com>
15232
15233 * subr.el (condition-case-unless-debug): Rename from
15234 condition-case-no-debug. All callers changed.
15235 (with-demoted-errors): Fix caller.
15236
15237 * vc/diff-mode.el (diff-auto-refine-mode, diff-hunk):
15238 * nxml/rng-valid.el (rng-do-some-validation):
15239 * emacs-lisp/package.el (package-refresh-contents)
15240 (package-menu-execute):
15241 * desktop.el (desktop-create-buffer):
15242 * font-lock.el (lisp-font-lock-keywords-2): Caller changed.
15243
15244 2012-02-10 Glenn Morris <rgm@gnu.org>
15245
15246 * textmodes/bibtex.el:
15247 Add missing :version tags for new/changed defcustoms.
15248
15249 * files.el (remote-file-name-inhibit-cache): Doc fixes.
15250
15251 2012-02-09 Lars Ingebrigtsen <larsi@rusty>
15252
15253 * mail/smtpmail.el (smtpmail-user-mail-address): New function.
15254 (smtpmail-via-smtp): Use it, or fall back on the From address.
15255 (smtpmail-send-it): Ditto.
15256
15257 2012-02-09 Stefan Monnier <monnier@iro.umontreal.ca>
15258
15259 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
15260 Don't fallback on byte-compile-defvar. Optimize (defvar foo) away.
15261 (byte-compile-tmp-var): New const.
15262 (byte-compile-defvar): Use it to minimize .elc size.
15263 Just use `defvar' rather than simulate it (bug#10761).
15264
15265 2012-02-09 Glenn Morris <rgm@gnu.org>
15266
15267 * files.el (rename-uniquely): Doc fix. (Bug#3806)
15268
15269 * progmodes/cc-guess.el (c-guess-offset-threshold, c-guess-region-max):
15270 Add :version tags.
15271
15272 * progmodes/compile.el (compilation-error-screen-columns)
15273 (compilation-first-column, compilation-filter-start): Doc fixes.
15274
15275 * vc/log-view.el (log-view-toggle-entry-display):
15276 * vc/vc.el (vc-merge, vc-pull): Doc fixes.
15277
15278 * mail/emacsbug.el (report-emacs-bug-can-use-osx-open)
15279 (report-emacs-bug-can-use-xdg-email):
15280 (report-emacs-bug-insert-to-mailer): Doc fixes.
15281 (report-emacs-bug): Message fix.
15282
15283 * net/browse-url.el (browse-url-can-use-xdg-open)
15284 (browse-url-xdg-open): Doc fixes.
15285
15286 * electric.el (electric-indent-mode, electric-pair-mode)
15287 (electric-layout-rules, electric-layout-mode): Doc fixes.
15288 (electric-pair-pairs, electric-pair-skip-self): Add :version tags.
15289
15290 2012-02-08 Martin Rudalics <rudalics@gmx.at>
15291
15292 * server.el (server-unselect-display): Don't inadvertently kill
15293 the current buffer. (Bug#10729)
15294
15295 2012-02-08 Glenn Morris <rgm@gnu.org>
15296
15297 * progmodes/sql.el (sql-port, sql-connection-alist, sql-list-all)
15298 (sql-list-table): Doc fixes.
15299
15300 * image-mode.el (image-transform-minor-mode-map, image-transform-mode):
15301 Comment out (does nothing).
15302
15303 * completion.el (dynamic-completion-mode):
15304 * dirtrack.el (dirtrack-debug-mode):
15305 * electric.el (electric-layout-mode):
15306 * epa-mail.el (epa-mail-mode, epa-global-mail-mode):
15307 * face-remap.el (text-scale-mode, buffer-face-mode):
15308 * iimage.el (iimage-mode):
15309 * image-mode.el (image-transform-mode):
15310 * minibuffer.el (completion-in-region-mode):
15311 * scroll-lock.el (scroll-lock-mode):
15312 * simple.el (next-error-follow-minor-mode):
15313 * tar-mode.el (tar-subfile-mode):
15314 * tooltip.el (tooltip-mode):
15315 * vcursor.el (vcursor-use-vcursor-map):
15316 * wid-browse.el (widget-minor-mode):
15317 * emulation/tpu-edt.el (tpu-edt-mode):
15318 * emulation/tpu-extras.el (tpu-cursor-free-mode):
15319 * international/iso-ascii.el (iso-ascii-mode):
15320 * language/thai-util.el (thai-word-mode):
15321 * mail/supercite.el (sc-minor-mode):
15322 * net/goto-addr.el (goto-address-mode):
15323 * net/rcirc.el (rcirc-multiline-minor-mode, rcirc-track-minor-mode):
15324 * progmodes/cwarn.el (cwarn-mode):
15325 * progmodes/flymake.el (flymake-mode):
15326 * progmodes/glasses.el (glasses-mode):
15327 * progmodes/hideshow.el (hs-minor-mode):
15328 * progmodes/pascal.el (pascal-outline-mode):
15329 * textmodes/enriched.el (enriched-mode):
15330 * vc/smerge-mode.el (smerge-mode):
15331 Doc fixes (minor mode argument).
15332
15333 2012-02-07 Eli Zaretskii <eliz@gnu.org>
15334
15335 * ls-lisp.el (ls-lisp-sanitize): New function.
15336 (ls-lisp-insert-directory): Use it to fix or remove any elements
15337 in file-alist with missing attributes. (Bug#4673)
15338
15339 2012-02-07 Alan Mackenzie <acm@muc.de>
15340
15341 Fix spurious recognition of c-in-knr-argdecl.
15342
15343 * progmodes/cc-engine.el (c-in-knr-argdecl): Check for '=' in a
15344 putative K&R region.
15345
15346 2012-02-07 Alan Mackenzie <acm@muc.de>
15347
15348 * progmodes/cc-engine.el (c-forward-objc-directive):
15349 Prevent looping in "#pragma mark @implementation".
15350
15351 2012-02-07 Michael Albinus <michael.albinus@gmx.de>
15352
15353 * notifications.el (notifications-on-closed-signal): Make `reason'
15354 optional. (Bug#10744)
15355
15356 2012-02-07 Glenn Morris <rgm@gnu.org>
15357
15358 * emacs-lisp/easy-mmode.el (define-minor-mode):
15359 Doc fixes for the macro and the mode it defines.
15360
15361 * image.el (imagemagick-types-inhibit): Doc fix.
15362
15363 * cus-start.el (imagemagick-render-type): Add it.
15364
15365 2012-02-06 Lars Ingebrigtsen <larsi@gnus.org>
15366
15367 * progmodes/cc-mode.el (c-standard-font-lock-fontify-region-function):
15368 Set the default at load time, too, so that `font-lock-fontify-buffer'
15369 can be called without setting up the entire mode first. This fixes
15370 a bug in `mm-inline-text' with C MIME parts.
15371
15372 2012-02-06 Chong Yidong <cyd@gnu.org>
15373
15374 * simple.el (list-processes--refresh): Delete exited processes
15375 (Bug#8094).
15376
15377 * comint.el (comint-next-prompt): next-single-char-property-change
15378 and prev-single-char-property-change never return nil (Bug#8657).
15379
15380 * custom.el (defcustom): Doc fix (Bug#9711).
15381
15382 2012-02-05 Chong Yidong <cyd@gnu.org>
15383
15384 * cus-edit.el (custom-variable-reset-backup): Quote the value
15385 before storing it in the customized-value property (Bug#6712).
15386 (custom-display): Add a customization type tag.
15387 (custom-buffer-create-internal): Improve tooltip message.
15388
15389 * wid-edit.el (widget-field-value-get): New optional arg to
15390 suppress trailing whitespace truncation.
15391 (character): Use it (Bug#2689).
15392
15393 2012-02-05 Andreas Schwab <schwab@linux-m68k.org>
15394
15395 * progmodes/gud.el (gud-pv): Use pv instead of pv1.
15396 * progmodes/gdb-mi.el (gud-pp): Use pp instead of pp1.
15397
15398 2012-02-05 Chong Yidong <cyd@gnu.org>
15399
15400 * cus-edit.el (custom-variable-value-create): For mismatched
15401 types, show the current value (Bug#7600).
15402
15403 * custom.el (defcustom): Doc fix.
15404
15405 2012-02-05 Glenn Morris <rgm@gnu.org>
15406
15407 * font-lock.el (lisp-font-lock-keywords-2): Add with-wrapper-hook.
15408
15409 2012-02-05 Juanma Barranquero <lekktu@gmail.com>
15410
15411 * emacs-lisp/pp.el (pp-to-string): Use `with-temp-buffer'.
15412 (pp-buffer): Use `ignore-errors', `looking-at-p'.
15413 (pp-last-sexp): Use `looking-at-p'.
15414
15415 2012-02-04 Glenn Morris <rgm@gnu.org>
15416
15417 * files.el (revert-buffer):
15418 Doc fix (mention revert-buffer-in-progress-p).
15419
15420 * emacs-lisp/ert-x.el (ert-simulate-command):
15421 Check deferred-action-list (which is obsolete) is bound.
15422
15423 * subr.el (with-wrapper-hook): Doc fixes.
15424
15425 * simple.el (filter-buffer-substring-functions)
15426 (buffer-substring-filters, filter-buffer-substring): Doc fixes.
15427
15428 2012-02-04 Lars Ljung <lars@matholka.se> (tiny change)
15429
15430 * eshell/esh-ext.el (eshell-windows-shell-file): Match "cmdproxy"
15431 anywhere in shell-file-name, not just at the beginning. (Bug#10523)
15432
15433 2012-02-04 Leo Liu <sdl.web@gmail.com>
15434
15435 * emacs-lisp/smie.el: Fix dead link (Bug#10711).
15436
15437 2012-02-04 Glenn Morris <rgm@gnu.org>
15438
15439 * image.el (image-extension-data): Add obsolete alias.
15440
15441 * isearch.el (isearch-update): Doc fix.
15442
15443 * facemenu.el (list-colors-display): Doc fix (minor rephrasing).
15444
15445 * ido.el (ido-find-file): Doc fix (ido-toggle-vc not on any key).
15446
15447 2012-02-03 Glenn Morris <rgm@gnu.org>
15448
15449 * image.el (image-animated-p): Doc fix. Use image-animated-types.
15450 (image-animate-timeout): Doc fix.
15451
15452 * image-mode.el (image-animate-loop, image-toggle-animation): Doc fixes.
15453
15454 2012-02-02 Glenn Morris <rgm@gnu.org>
15455
15456 * server.el (server-auth-dir): Doc fix.
15457 (server-eval-at): Doc fix. Give an explicit error if !server-use-tcp.
15458
15459 * subr.el (run-mode-hooks): Doc fix.
15460
15461 2012-02-02 Juri Linkov <juri@jurta.org>
15462
15463 * image-mode.el (image-toggle-display-image): Remove tautological
15464 `major-mode' from the `derived-mode-p' test.
15465
15466 2012-02-02 Kenichi Handa <handa@m17n.org>
15467
15468 * composite.el (compose-region): Cancel previous change.
15469
15470 2012-02-02 Kenichi Handa <handa@m17n.org>
15471
15472 * composite.el (compose-region, compose-string): Signal error for
15473 a null string component (Bug#6988).
15474
15475 2012-02-01 Chong Yidong <cyd@gnu.org>
15476
15477 * view.el (view-buffer-other-window, view-buffer-other-frame):
15478 Handle special modes like view-buffer (Bug#10650).
15479 (view-buffer): Simplify.
15480
15481 * frame.el (set-frame-font): Tweak meaning of third argument.
15482
15483 * dynamic-setting.el (font-setting-change-default-font):
15484 Use set-frame-font (Bug#9982).
15485
15486 2012-02-01 Glenn Morris <rgm@gnu.org>
15487
15488 * progmodes/compile.el (compilation-internal-error-properties):
15489 Respect compilation-first-column in the "*compilation*" buffer.
15490
15491 * emacs-lisp/easy-mmode.el (define-minor-mode):
15492 Relax :variable's test for a named function.
15493
15494 2012-01-31 Alan Mackenzie <acm@muc.de>
15495
15496 * progmodes/cc-engine.el (c-guess-basic-syntax): CASE 5B.1: Fix an
15497 off by one error.
15498
15499 2012-01-31 Chong Yidong <cyd@gnu.org>
15500
15501 * frame.el (set-frame-font): New arg ALL-FRAMES.
15502
15503 * menu-bar.el (menu-set-font): Use set-frame-font.
15504
15505 * faces.el (face-spec-reset-face): Don't apply unspecified
15506 attribute values to the default face.
15507
15508 2012-01-31 Juanma Barranquero <lekktu@gmail.com>
15509
15510 * progmodes/cwarn.el (cwarn): Remove dead link.
15511 (cwarn-configuration, cwarn-verbose, cwarn-mode-text, cwarn-load-hook):
15512 Remove * from defcustom docstrings.
15513 (turn-on-cwarn-mode): Make obsolete.
15514 (c-at-toplevel-p): Remove compatibility code for Emacs 20.3 and older.
15515 (turn-on-cwarn-mode-if-enabled): Call `cwarn-mode'.
15516
15517 2012-01-31 Glenn Morris <rgm@gnu.org>
15518
15519 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
15520 Fix :variable handling of mode a symbol not equal to modefun.
15521 Allow named functions to be used as the cdr of :variable.
15522
15523 2012-01-30 Glenn Morris <rgm@gnu.org>
15524
15525 * emacs-lisp/authors.el (authors-fixed-entries):
15526 Remove reference to deleted file rnewspost.el.
15527
15528 2012-01-29 Juanma Barranquero <lekktu@gmail.com>
15529
15530 * window.el (window-with-parameter): Remove unused variable `windows'.
15531 (window--side-check): Remove unused variable `code'.
15532 (window--resize-siblings): Remove unused variable `first'.
15533 (adjust-window-trailing-edge): Remove unused variable `failed'.
15534 (window-deletable-p, window--delete): Remove unused variable `buffer'.
15535 Use `let', not `let*'.
15536 (balance-windows-2): Remove unused variable `found'.
15537 (window--state-put-2): Remove unused variable `splits'.
15538 (window-state-put): Remove unused variable `selected'.
15539 (same-window-p): Use `string-match-p'.
15540 (display-buffer-assq-regexp): Remove unused variable `value'.
15541 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
15542 Mark argument ALIST as ignored.
15543 (pop-to-buffer): Remove unused variable `old-window'.
15544
15545 2012-01-29 Eli Zaretskii <eliz@gnu.org>
15546
15547 * jka-cmpr-hook.el (jka-compr-compression-info-list): Support .lz
15548 and .lzma compressed files.
15549
15550 2012-01-29 Chong Yidong <cyd@gnu.org>
15551
15552 * frame.el (window-system-default-frame-alist): Doc fix.
15553
15554 * dynamic-setting.el (font-setting-change-default-font): Don't
15555 change the default face if SET-FONT argument is non-nil (Bug#9982).
15556
15557 2012-01-29 Samuel Bronson <naesten@gmail.com>
15558
15559 * custom.el (defcustom): Add doc link to Lisp manual (Bug#10635).
15560
15561 2012-01-29 Syver Enstad <syver.enstad@cisco.com> (tiny change)
15562
15563 * progmodes/gud.el (pdb): Give pdb full paths, to allow setting
15564 breakpoints in files outside current directory (Bug#6098).
15565
15566 2012-01-29 Chong Yidong <cyd@gnu.org>
15567
15568 * progmodes/python.el: Require ansi-color at top-level.
15569
15570 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-abbrev-table):
15571 Define and use in Emacs Lisp mode (Bug#9360).
15572 (lisp-mode-abbrev-table): Add doc.
15573 (lisp-mode-variables): Don't set local-abbrev-table.
15574 (lisp-interaction-mode): Use emacs-lisp-mode-abbrev-table.
15575
15576 2012-01-28 Roland Winkler <winkler@gnu.org>
15577
15578 * textmodes/bibtex.el (bibtex-vec-incr): Fix docstring.
15579
15580 2012-01-28 Roland Winkler <winkler@gnu.org>
15581
15582 * textmodes/bibtex.el (bibtex-entry-alist): New function.
15583 (bibtex-set-dialect): Use it. Either set global values of
15584 dialect-dependent variables or bind these variables buffer-locally
15585 (Bug#10254).
15586 (bibtex-mode): Call bibtex-set-dialect via
15587 hack-local-variables-hook.
15588 (bibtex-dialect): Update docstring.
15589 Add safe-local-variable predicate.
15590 (bibtex-entry-alist, bibtex-field-alist): Initialize via
15591 bibtex-set-dialect.
15592 (bibtex-mode-map): Define menu for each dialect.
15593 (bibtex-entry): Fix docstring.
15594
15595 2012-01-28 Chong Yidong <cyd@gnu.org>
15596
15597 * eshell/esh-arg.el (eshell-quote-argument): New function.
15598
15599 * eshell/esh-ext.el (eshell-invoke-batch-file):
15600 * eshell/em-unix.el (eshell/cat, eshell/du): Use it to quote the
15601 first arg to eshell-parse-command (Bug#10523).
15602
15603 2012-01-28 Drew Adams <drew.adams@oracle.com>
15604
15605 * net/ange-ftp.el (ange-ftp-canonize-filename): Check, that
15606 `default-directory' is non-nil.
15607
15608 2012-01-28 Eli Zaretskii <eliz@gnu.org>
15609
15610 * mail/emacsbug.el (report-emacs-bug): Fill the potentially long
15611 line that displays system-configuration-options. (Bug#9924)
15612
15613 2012-01-28 Drew Adams <drew.adams@oracle.com>
15614
15615 * descr-text.el (describe-char): Show information about POS, in
15616 addition to information about the character at POS. Improve and
15617 update the doc string. Change "code point" to "code point in
15618 charset", to avoid confusion with the character's Unicode code
15619 point shown above that. (Bug#10129)
15620
15621 2012-01-28 Eli Zaretskii <eliz@gnu.org>
15622
15623 * descr-text.el (describe-char): Show the raw character, not only
15624 its display form at POS. Suggested by Kenichi Handa <handa@m17n.org>.
15625 See http://lists.gnu.org/archive/html/emacs-devel/2012-01/msg00760.html
15626 for the reasons.
15627
15628 2012-01-28 Phil Hagelberg <phil@hagelb.org>
15629
15630 * emacs-lisp/package.el (package-install):
15631 Run package-refresh-contents if there is no archive yet (Bug#9798).
15632
15633 2012-01-28 Chong Yidong <cyd@gnu.org>
15634
15635 * emacs-lisp/package.el (package-maybe-load-descriptor):
15636 New function, split from package-maybe-load-descriptor.
15637 (package-maybe-load-descriptor): Use it.
15638 (package-download-transaction): Fully load required packages
15639 inside the loop, so that `require' calls work (Bug#10593).
15640 (package-install): No need to call package-initialize now.
15641
15642 2012-01-28 Chong Yidong <cyd@gnu.org>
15643
15644 * simple.el (deactivate-mark): Doc fix (Bug#8614).
15645
15646 * tooltip.el (tooltip-mode): Doc fix.
15647 (tooltip-use-echo-area): Mark as obsolete (Bug#6595).
15648
15649 * frame.el (set-cursor-color): Doc fix (Bug#352).
15650
15651 * mail/rmail.el (rmail-start-mail): Add send-action again (Bug#10625).
15652 (rmail-mail-return): Switch to NEWBUF only if it is non-nil.
15653
15654 * cus-edit.el (custom-buffer-create-internal): Fix search button
15655 action (Bug#10542).
15656 (customize-unsaved, customize-saved): Doc fix (Bug#10541).
15657
15658 2012-01-27 Eduard Wiebe <usenet@pusto.de>
15659
15660 * dired.el (dired-mark-files-regexp):
15661 Include any subdirectory components. (Bug#10445)
15662
15663 2012-01-27 Mike Lamb <mrlamb@gmail.com> (tiny change)
15664
15665 * pcmpl-unix.el (pcmpl-ssh-known-hosts):
15666 Handle [host]:port syntax. (Bug#10533)
15667
15668 2012-01-27 Alex Harsanyi <harsanyi@mac.com>
15669
15670 * xml.el (xml-parse-tag): Fix parsing of comments (Bug#10405).
15671
15672 2012-01-26 Glenn Morris <rgm@gnu.org>
15673
15674 * dired-x.el (dired-bind-jump): Use ctl-x-map and ctl-x-4-map.
15675 * term.el (term-raw-escape-map): Use Control-X-prefix.
15676 * vc/vc-hooks.el (vc-prefix-map): Use ctl-x-map. (Bug#10566)
15677
15678 2012-01-25 Martin Rudalics <rudalics@gmx.at>
15679
15680 * window.el (window-state-get, window--state-get-1): Don't deal
15681 with fixed-sizeness of windows. Simplify code.
15682
15683 2012-01-25 Jérémy Compostella <jeremy.compostella@gmail.com>
15684
15685 * window.el (window--state-get-1, window--state-put-2):
15686 Don't save and restore the mark.
15687
15688 2012-01-25 Chong Yidong <cyd@gnu.org>
15689
15690 * custom.el (custom-variable-p): Doc fix.
15691
15692 2012-01-25 Glenn Morris <rgm@gnu.org>
15693
15694 * dired.el (dired-goto-file): Handle some of the more common
15695 characters that `ls -b' escapes. (Bug#10596)
15696
15697 * progmodes/compile.el (compilation-next-error-function):
15698 Respect compilation-first-column in the "*compilation*" buffer.
15699 * progmodes/grep.el (grep-first-column): New variable. (Bug#10594)
15700
15701 * vc/vc.el (vc-modify-change-comment): Scoping fix. (Bug#10513)
15702
15703 2012-01-24 Glenn Morris <rgm@gnu.org>
15704
15705 * pcmpl-gnu.el (pcomplete/tar): Handle " - ". (Bug#10457)
15706
15707 2012-01-24 Julien Danjou <julien@danjou.info>
15708
15709 * color.el (color-rgb-to-hsl): Fix value computing.
15710 (color-hue-to-rgb): New function.
15711 (color-hsl-to-rgb): New function.
15712 (color-clamp, color-saturate-hsl, color-saturate-name)
15713 (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
15714 (color-lighten-name, color-darken-hsl, color-darken-name): New function.
15715
15716 2012-01-24 Glenn Morris <rgm@gnu.org>
15717
15718 * vc/vc-rcs.el (vc-rcs-create-tag):
15719 * vc/vc-sccs.el (vc-sccs-create-tag):
15720 Fix argument spec to be what vc-create-tag expects. (Bug#10515)
15721
15722 2012-01-23 Mike Lamb <mrlamb@gmail.com> (tiny change)
15723
15724 * eshell/esh-util.el (eshell-read-hosts-file):
15725 Skip comment lines. (Bug#10549)
15726
15727 * eshell/em-unix.el (pcomplete/ssh): Remove. (Bug#10548)
15728
15729 2012-01-23 Juanma Barranquero <lekktu@gmail.com>
15730
15731 * subr.el (display-delayed-warnings): Doc fix.
15732 (collapse-delayed-warnings): New function to collapse identical
15733 adjacent warnings.
15734 (delayed-warnings-hook): Add it.
15735
15736 2012-01-22 Michael Albinus <michael.albinus@gmx.de>
15737
15738 * net/tramp.el (tramp-action-login): Set connection property "login-as".
15739
15740 * net/tramp-sh.el (tramp-methods): Add user spec to "pscp" and "psftp".
15741 (tramp-default-user-alist): Don't add "pscp".
15742 (tramp-do-copy-or-rename-file-out-of-band): Use connection
15743 property "login-as", if set. (Bug#10530)
15744
15745 2012-01-21 Michael Albinus <michael.albinus@gmx.de>
15746
15747 * net/tramp-sh.el (tramp-default-user-alist): Don't add "plink",
15748 "plink1" and "psftp". (Bug#10530)
15749
15750 2012-01-21 Kenichi Handa <handa@m17n.org>
15751
15752 * international/mule-cmds.el (prefer-coding-system): Show a
15753 warning message if the default value of file-name-coding-system
15754 was not changed.
15755
15756 2012-01-21 Jérémy Compostella <jeremy.compostella@gmail.com>
15757
15758 * windmove.el (windmove-reference-loc):
15759 Fix windmove-reference-loc miscalculation.
15760
15761 2012-01-21 Jay Belanger <jay.p.belanger@gmail.com>
15762
15763 * calc/calc-units.el (math-put-default-units): Don't use "1" as a
15764 default unit.
15765
15766 2012-01-21 Glenn Morris <rgm@gnu.org>
15767
15768 * international/mule.el (auto-coding-alist): Add .tbz.
15769
15770 * files.el (local-enable-local-variables): Doc fix.
15771 (inhibit-local-variables-regexps): Rename from
15772 inhibit-first-line-modes-regexps. Keep old name as obsolete alias.
15773 Doc fix. Add some extensions from auto-coding-alist.
15774 (inhibit-local-variables-suffixes):
15775 Rename from inhibit-first-line-modes-suffixes. Doc fix.
15776 (inhibit-local-variables-p):
15777 New function, extracted from set-auto-mode-1.
15778 (set-auto-mode): Doc fix. Respect inhibit-local-variables-regexps.
15779 (set-auto-mode-1): Doc fix. Use inhibit-local-variables-p.
15780 (hack-local-variables): Doc fix. Make the mode-only case
15781 respect enable-local-variables and friends.
15782 Respect inhibit-local-variables-regexps for file-locals, but
15783 not for directory-locals.
15784 (set-visited-file-name):
15785 Take account of inhibit-local-variables-regexps.
15786 Whether it applies may change as the file name is changed.
15787 * jka-cmpr-hook.el (jka-compr-install):
15788 * jka-compr.el (jka-compr-uninstall):
15789 Update for inhibit-first-line-modes-suffixes name change.
15790
15791 2012-01-20 Martin Rudalics <rudalics@gmx.at>
15792
15793 * help-macro.el (make-help-screen): Temporarily restore original
15794 binding for minor-mode-map-alist (Bug#10454).
15795
15796 2012-01-19 Julien Danjou <julien@danjou.info>
15797
15798 * color.el (color-name-to-rgb): Use the white color to find the max
15799 color component value and return correctly computed values.
15800 (color-name-to-rgb): Add missing float conversion for max value.
15801
15802 2012-01-19 Martin Rudalics <rudalics@gmx.at>
15803
15804 * window.el (window--state-get-1, window-state-get): Do not use
15805 special state value for window-persistent-parameters.
15806 Rename argument IGNORE to WRITABLE. Rewrite doc-string.
15807 (window--state-put-2): Reset all window parameters to nil before
15808 assigning values of persistent parameters.
15809
15810 2012-01-18 Alan Mackenzie <acm@muc.de>
15811
15812 Eliminate sluggishness and hangs in fontification of "semicolon
15813 deserts".
15814
15815 * progmodes/cc-engine.el (c-state-nonlit-pos-interval):
15816 Change value 10000 -> 3000.
15817 (c-state-safe-place): Reformulate so it doesn't stack up an
15818 infinite number of wrong entries in c-state-nonlit-pos-cache.
15819 (c-determine-limit-get-base, c-determine-limit): New functions to
15820 determine backward search limits disregarding literals.
15821 (c-find-decl-spots): Amend commenting.
15822 (c-cheap-inside-bracelist-p): New function which detects "={".
15823
15824 * progmodes/cc-fonts.el
15825 (c-make-font-lock-BO-decl-search-function): Give a limit to a
15826 backward search.
15827 (c-font-lock-declarations): Fix an occurrence of point being
15828 undefined. Check additionally for point being in a bracelist or
15829 near a macro invocation without a semicolon so as to avoid a
15830 fruitless time consuming search for a declarator. Give a more
15831 precise search limit for declarators using the new
15832 c-determine-limit.
15833
15834 2012-01-18 Glenn Morris <rgm@gnu.org>
15835
15836 * files.el (auto-mode-alist, inhibit-first-line-modes-regexps)
15837 (set-auto-mode): Doc fixes.
15838
15839 2012-01-17 Glenn Morris <rgm@gnu.org>
15840
15841 * isearch.el (search-nonincremental-instead): Fix doc typo.
15842
15843 * dired.el (dired-insert-directory): Handle newlines in directory name.
15844 (dired-build-subdir-alist): Unescape newlines in directory name.
15845
15846 2012-01-17 Michael Albinus <michael.albinus@gmx.de>
15847
15848 * net/tramp.el (tramp-local-end-of-line): New defcustom.
15849 (tramp-action-login, tramp-action-yesno, tramp-action-yn)
15850 (tramp-action-terminal): Use it. (Bug#10530)
15851
15852 2012-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
15853
15854 * minibuffer.el (completion--replace): Strip properties (bug#10062).
15855
15856 2012-01-16 Martin Rudalics <rudalics@gmx.at>
15857
15858 * window.el (window-state-ignored-parameters): Remove variable.
15859 (window--state-get-1): Rename argument MARKERS to IGNORE.
15860 Handle persistent window parameters. Make copy of clone-of
15861 parameter only if requested. (Bug#10348)
15862 (window--state-put-2): Install a window parameter only if it has
15863 a non-nil value or an existing parameter shall be overwritten.
15864
15865 2012-01-15 Michael Albinus <michael.albinus@gmx.de>
15866
15867 * net/tramp-sh.el (tramp-remote-path): Set tramp-autoload cookie.
15868
15869 2012-01-14 Eli Zaretskii <eliz@gnu.org>
15870
15871 * info.el (Info-toc-build): If the Info file has no "Up" pointer,
15872 don't pass the (nil) value of `upnode' to string-match.
15873
15874 2012-01-14 Chong Yidong <cyd@gnu.org>
15875
15876 * startup.el (command-line): Fix X resource class for cursorColor.
15877 Fix values recognized by the cursorBlink resource.
15878
15879 2012-01-14 Paul Eggert <eggert@cs.ucla.edu>
15880
15881 * epg.el (epg--make-temp-file): Avoid permission race condition
15882 when running on old Emacs versions (bug#10403).
15883
15884 2012-01-14 Glenn Morris <rgm@gnu.org>
15885
15886 * dired.el (dired-get-filename): Fix 'verbatim case of previous change.
15887
15888 2012-01-13 Alan Mackenzie <acm@muc.de>
15889
15890 Fix filling for when filladapt mode is enabled.
15891
15892 * progmodes/cc-cmds.el (c-fill-paragraph): In the invocation of
15893 c-mask-paragraph, pass in `fill-paragraph' rather than
15894 `fill-region-as-paragraph'. (This is a reversion of a previous
15895 change.)
15896 * progmodes/cc-mode.el (c-basic-common-init):
15897 Make fill-paragraph-handle-comment buffer local and set it to nil.
15898
15899 2012-01-13 Glenn Morris <rgm@gnu.org>
15900
15901 * dired.el (dired-switches-escape-p): New function.
15902 (dired-insert-directory): Use dired-switches-escape-p.
15903 (dired-get-filename): Undo "\ " quoting if needed. (Bug#10469)
15904
15905 * find-dired.el (find-ls-option): Doc fix. (Bug#10262)
15906
15907 2012-01-12 Glenn Morris <rgm@gnu.org>
15908
15909 * mail/sendmail.el (mail-mode): Update paragraph-separate for
15910 changes in adaptive-fill-regexp. (Bug#10276)
15911
15912 2012-01-11 Alan Mackenzie <acm@muc.de>
15913
15914 Fix Emacs bug #10463 - put `widen's around the critical spots.
15915
15916 * progmodes/cc-engine.el (c-in-literal, c-literal-limits): Put a
15917 widen around each invocation of c-state-pp-to-literal. Remove an
15918 unused let variable.
15919
15920 2012-01-11 Glenn Morris <rgm@gnu.org>
15921
15922 * dired-aux.el (dired-do-shell-command): Fix */? logic. (Bug#6561)
15923 Doc fix.
15924
15925 2012-01-10 Chong Yidong <cyd@gnu.org>
15926
15927 * net/network-stream.el (network-stream-open-starttls):
15928 Avoid emitting a confusing error message when the server gives a bad
15929 response to the capability command.
15930
15931 2012-01-10 Glenn Morris <rgm@gnu.org>
15932
15933 * mail/unrmail.el (unrmail): Tweak previous change.
15934
15935 2012-01-09 Chong Yidong <cyd@gnu.org>
15936
15937 * custom.el (custom-safe-themes): Use SHA-256 for hashing.
15938
15939 2012-01-08 Alan Mackenzie <acm@muc.de>
15940
15941 Optimize font locking in long enum definitions.
15942
15943 * progmodes/cc-fonts.el (c-font-lock-declarations): Add an extra
15944 arm to a cond form to handle enums.
15945 * progmodes/cc-langs.el (c-enums-contain-decls): New lang variable.
15946 * progmodes/cc-mode.el (c-font-lock-fontify-region): Correct a typo.
15947
15948 2012-01-07 Paul Eggert <eggert@cs.ucla.edu>
15949
15950 * files.el (move-file-to-trash): Preserve default file modes on error.
15951 (Bug#10401)
15952
15953 2012-01-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
15954
15955 * faces.el (set-face-attribute): Clarify the meaning of the nil
15956 frame (bug#10294).
15957
15958 * subr.el (with-selected-frame): Mention that the selected frame
15959 is restored (bug#9980).
15960
15961 * ibuffer.el (ibuffer-mode): List the bindings in the corrent map
15962 (bug#9759).
15963
15964 * mail/smtpmail.el (password-cache-add): Remove unused declaration.
15965 (password-read): Don't autoload unused function.
15966
15967 2012-01-07 Juanma Barranquero <lekktu@gmail.com>
15968
15969 * progmodes/which-func.el (which-func-mode): Turn into a
15970 non-interactive function and mark as obsolete (bug#10428).
15971
15972 2012-01-06 Chong Yidong <cyd@gnu.org>
15973
15974 * files.el (hack-dir-local-variables-non-file-buffer): Add doc.
15975 (hack-one-local-variable-eval-safep): Allow 0 arg for minor mode
15976 functions, along with 1 and -1.
15977
15978 2012-01-06 Eli Zaretskii <eliz@gnu.org>
15979
15980 * time.el (display-time-load-average)
15981 (display-time-default-load-average): Doc fixes. See the thread
15982 starting at
15983 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-01/msg00059.html
15984 for the details.
15985
15986 2012-01-06 Glenn Morris <rgm@gnu.org>
15987
15988 * mail/unrmail.el (unrmail): Give an explicit error if the input file
15989 has no messages. (Bug#10377)
15990
15991 * info.el (Info-mode-map): Bind e to end-of-buffer, rather
15992 than Info-edit. (Bug#10385)
15993
15994 * time.el (display-time-load-average, display-time-next-load-average):
15995 Doc fixes.
15996
15997 * emacs-lisp/bytecomp.el (byte-compile-file): Do not propagate a file
15998 local setting of buffer-read-only to the input buffer. (Bug#10419)
15999
16000 * calendar/calendar.el (calendar-mode):
16001 Locally set scroll-margin to 0. (Bug#10379)
16002
16003 2012-01-06 Ulrich Mueller <ulm@gentoo.org>
16004
16005 * play/doctor.el (doctor-death): Escape "," characters. (Bug#10370)
16006
16007 2012-01-05 Glenn Morris <rgm@gnu.org>
16008
16009 * eshell/em-unix.el (diff-no-select): Autoload it.
16010 (eshell/diff): Use diff-no-select. (Bug#10420)
16011
16012 2012-01-05 Chong Yidong <cyd@gnu.org>
16013
16014 * shell.el (shell-dynamic-complete-functions): Revert last change.
16015 (shell-command-completion-function): New function.
16016 (shell-completion-vars): Use it to implement
16017 shell-completion-execonly (Bug#10417).
16018
16019 * custom.el (enable-theme): Don't set custom-safe-themes.
16020
16021 * cus-theme.el (custom-theme-merge-theme):
16022 Ignore custom-enabled-themes and custom-safe-themes.
16023
16024 2012-01-05 Michael R. Mauger <mmaug@yahoo.com>
16025
16026 * progmodes/sql.el (sql-login-hook): Add hook to respond to the
16027 first prompt in `sql-interacive-mode'.
16028 (sql-mode-oracle-font-lock-keywords): Add CONNECT_BY_* builtin
16029 keywords.
16030 (sql-mode-mysql-font-lock-keywords): Add ELSEIF keyword.
16031 (sql-product-interactive): Bug fix: Set `sql-buffer' in
16032 context of original buffer. Invoke `sql-login-hook'.
16033
16034 2012-01-04 Eli Zaretskii <eliz@gnu.org>
16035
16036 * mail/rmail.el (rmail-font-lock-keywords): Accept non-ASCII
16037 letters in cite-prefix.
16038
16039 2012-01-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
16040
16041 * mail/smtpmail.el (smtpmail-stream-type): Mention the `ssl' value.
16042
16043 2012-01-03 Chong Yidong <cyd@gnu.org>
16044
16045 * shell.el (shell-dynamic-complete-functions):
16046 Put pcomplete-completions-at-point, so as to try
16047 comint-filename-completion first (Bug#10417).
16048
16049 2012-01-02 Richard Stallman <rms@gnu.org>
16050
16051 * battery.el (battery-status-function):
16052 Detect when to use battery-yeeloong-sysfs.
16053 (battery-echo-area-format): Add string for Yeeloong.
16054 (battery-linux-proc-apm, battery-linux-proc-acpi): Doc fixes.
16055 (battery-yeeloong-sysfs): New function.
16056
16057 2012-01-02 Chong Yidong <cyd@gnu.org>
16058
16059 * dirtrack.el (dirtrack-list): Eliminate unused third element.
16060 (dirtrack): Merge code for handling relative filenames in prompt
16061 from shell-dir-cookie-watcher.
16062 (dirtrack-debug-message): New arg to avoid excess format calls.
16063
16064 * shell.el (shell-dir-cookie-re): Variable deleted.
16065 (shell-dir-cookie-watcher): Function deleted.
16066 (shell-mode): Don't use shell-dir-cookie-re, since it is redundant
16067 with dirtrack-mode.
16068
16069 2012-01-01 Eli Zaretskii <eliz@gnu.org>
16070
16071 * term/w32-win.el (dynamic-library-alist) <gnutls>:
16072 Load libgnutls-28.dll, from GnuTLS version 3.x, in preference to
16073 libgnutls-26.dll.
16074
16075 2011-12-31 Andreas Schwab <schwab@linux-m68k.org>
16076
16077 * emacs-lisp/bytecomp.el (byte-compile-file): Fix indentation.
16078
16079 2011-12-31 Eli Zaretskii <eliz@gnu.org>
16080
16081 * mail/rmail.el (rmail-show-message-1): Decode any RFC2047 encoded
16082 headers of non-MIME messages, when rmail-enable-mime is non-nil.
16083
16084 2011-12-29 Michael Albinus <michael.albinus@gmx.de>
16085
16086 * net/tramp-sh.el (tramp-find-shell): Set "remote-shell" property
16087 also for alternative shells.
16088 (tramp-open-connection-setup-interactive-shell): Check, whether
16089 the shell is a busybox.
16090 (tramp-send-command): Don't suppress multiple prompts for
16091 busyboxes, it hurts.
16092
16093 2011-12-28 Chong Yidong <cyd@gnu.org>
16094
16095 * progmodes/gdb-mi.el (gdb-get-source-file-list)
16096 (gdb-get-source-file): Move mode line update to
16097 gdb-get-source-file (Bug#10087).
16098
16099 2011-12-25 Chong Yidong <cyd@gnu.org>
16100
16101 * progmodes/gud.el (gud-gdb-fetch-lines-filter): Just use
16102 gud-gdb-marker-filter without taking it as an argument.
16103 (gud-gdb-run-command-fetch-lines): Caller changed.
16104 (gud-gdb-completion-function): New variable.
16105 (gud-gdb-completion-at-point): Use it.
16106 (gud-gdb-completions-1): Split from gud-gdb-completions.
16107
16108 * progmodes/gdb-mi.el (gdb-input): Accept command and handler
16109 function as separate arguments.
16110 (gdb-init-1, gdb-non-stop-handler, gdb-check-target-async)
16111 (gdb-tooltip-print-1, gud-watch, gdb-speedbar-update)
16112 (gdb-var-list-children, gdb-var-set-format, gdb-var-delete-1)
16113 (gdb-var-delete-children, gdb-edit-value, gdb-var-update)
16114 (gdb-stopped, def-gdb-auto-update-trigger)
16115 (gdb-place-breakpoints, gdb-select-thread, gdb-select-frame)
16116 (gdb-get-changed-registers, gdb-get-main-selected-frame):
16117 Callers changed.
16118 (gud-gdbmi-completions): New function.
16119 (gdb): Use it for generating the completion table.
16120
16121 2011-12-24 Alan Mackenzie <acm@muc.de>
16122
16123 Introduce a mechanism to widen the region used in context font
16124 locking. Use this to protect declarations from losing their contexts.
16125
16126 * progmodes/cc-langs.el (c-before-font-lock-functions):
16127 Replace c-set-fl-decl-start with c-change-set-fl-decl-start (Renaming).
16128 (c-before-context-fontification-functions): New defvar, a list of
16129 functions to be run just before context (etc.) font locking.
16130
16131 * progmodes/cc-mode.el (c-extend-font-lock-region-for-macros):
16132 New, functionality extracted from
16133 c-neutralize-syntax-in-and-mark-CPP.
16134 (c-in-after-change-fontification): New variable.
16135 (c-after-change): Set c-in-after-change-fontification.
16136 (c-set-fl-decl-start): Rejig its interface, so it can be called
16137 from both after-change and context fontifying.
16138 (c-change-set-fl-decl-start, c-context-set-fl-decl-start):
16139 New functions.
16140 (c-standard-font-lock-fontify-region-function): New variable.
16141 (c-font-lock-fontify-region): New function.
16142
16143 2011-12-24 Juri Linkov <juri@jurta.org>
16144
16145 * window.el (window--state-get-1): Set `FORCE' arg of `mark' to t.
16146 (Bug#10348)
16147
16148 2011-12-23 Michael Albinus <michael.albinus@gmx.de>
16149
16150 * net/ange-ftp.el (ange-ftp-copy-file-internal): Check for
16151 existence of source file. (Bug#10325)
16152
16153 2011-12-23 Alan Mackenzie <acm@muc.de>
16154
16155 Fix unstable fontification inside templates.
16156
16157 * progmodes/cc-langs.el (c-before-font-lock-functions):
16158 Newly created from the singular version. The (c c++ objc) entry now
16159 additionally has c-set-fl-decl-start. The other languages (apart
16160 from AWK) have that as a single entry.
16161
16162 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
16163 The functionality for "local" declarations has been extracted to
16164 c-set-fl-decl-start.
16165
16166 * progmodes/cc-mode.el (c-common-init, c-after-change):
16167 Changes due to pluralisation of c-before-font-lock-functions.
16168 (c-set-fl-decl-start): New function, extracted from
16169 c-font-lock-enclosing-decls and enhanced.
16170
16171 2011-12-23 Juanma Barranquero <lekktu@gmail.com>
16172
16173 * desktop.el (desktop-internal-v2s): Fix typos in docstring (bug#10353).
16174
16175 2011-12-22 Juri Linkov <juri@jurta.org>
16176
16177 * progmodes/grep.el (rgrep): Fix docstring. (Bug#10185)
16178
16179 2011-12-22 Chong Yidong <cyd@gnu.org>
16180
16181 * vc/vc-hooks.el (vc-keep-workfiles): Doc fix.
16182
16183 2011-12-21 Drew Adams <drew.adams@oracle.com>
16184
16185 * files.el (file-remote-p): Fix docstring. (Bug#10319)
16186
16187 2011-12-21 Jérémy Compostella <jeremy.compostella@gmail.com>
16188
16189 * battery.el (battery-linux-sysfs): Add missing parameters from acpi.
16190
16191 2011-12-21 Teodor Zlatanov <tzz@lifelogs.com>
16192
16193 * progmodes/cfengine.el: Add Version. Improve CFEngine 3.x syntax
16194 highlighting and support. Fix up comments for capitalization.
16195 (cfengine-mode-debug): New var.
16196 (cfengine3-mode): Change the modeline indicator to "CFE3".
16197 (cfengine3-font-lock-keywords): Improve defun highlighting.
16198 (cfengine2-actions): Rename from `cfengine-actions'.
16199 (cfengine2-font-lock-keywords): Rename from
16200 `cfengine-font-lock-keywords'.
16201 (cfengine2-imenu-expression): Rename from
16202 `cfengine-imenu-expression'.
16203 (cfengine2-outline-level): Rename from `cfengine-outline-level'.
16204 (cfengine2-beginning-of-defun): Rename from
16205 `cfengine-beginning-of-defun'.
16206 (cfengine2-end-of-defun): Rename from `cfengine-end-of-defun'.
16207 (cfengine2-indent-line): Rename from `cfengine-indent-line'.
16208 (cfengine2-mode): Rename from `cfengine-mode'. Change the
16209 modeline indicator to "CFE2".
16210 (cfengine-mode): Defalias to `cfengine-auto-mode'.
16211 (cfengine-mode-abbrevs): Mark obsolete.
16212
16213 2011-12-21 Chong Yidong <cyd@gnu.org>
16214
16215 * vc/vc-bzr.el (vc-bzr-rename-file): Don't pass ~ to Bzr in
16216 filename argument.
16217
16218 2011-12-20 Martin Rudalics <rudalics@gmx.at>
16219
16220 * window.el (window-normalize-buffer-to-display): Remove.
16221 (display-buffer): Handle buffer-or-name argument as in Emacs 23.
16222
16223 2011-12-19 Chong Yidong <cyd@gnu.org>
16224
16225 * vc/vc-dir.el (vc-dir-parent-marked-p, vc-dir-children-marked-p):
16226 Don't signal an error in a predicate function; return non-nil.
16227 (vc-dir-mark-file): Move the error here.
16228 (vc-dir-mark-unmark): If acting on the region, keep going if one
16229 of the entries cannot be marked/unmarked.
16230 (vc-dir-mark-all-files): If current entry is a directory, mark
16231 only child files, as documented.
16232
16233 2011-12-19 Vincent Belaïche <vincentb1@users.sourceforge.net>
16234
16235 * ses.el: Ooops... undo changes of 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net, as trunk
16236 branch is feature frozen, and 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net was a feature
16237 addition.
16238
16239 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
16240
16241 * term/ns-win.el (ns-get-selection-internal)
16242 (ns-store-selection-internal): Declare.
16243 (ns-store-cut-buffer-internal, ns-get-cut-buffer-internal):
16244 Declare as obsolete.
16245 (ns-get-pasteboard, ns-paste-secondary):
16246 Use ns-get-selection-internal.
16247 (ns-set-pasteboard, ns-copy-including-secondary):
16248 Use ns-store-selection-internal.
16249
16250 2011-12-17 Chong Yidong <cyd@gnu.org>
16251
16252 * vc/vc.el (vc-next-action): Doc fix; remove CVS-isms.
16253 (vc-deduce-fileset): Doc fix.
16254
16255 2011-12-16 Andreas Schwab <schwab@linux-m68k.org>
16256
16257 * calc/calc-misc.el (calc-help): Avoid wrapping help message.
16258
16259 2011-12-13 Sam Steingold <sds@gnu.org>
16260
16261 * man.el (Man-getpage-in-background): When running under a
16262 window-system, ignore $MANWIDTH and $COLUMNS.
16263
16264 2011-12-15 Kenichi Handa <handa@m17n.org>
16265
16266 * language/ethio-util.el: Change coding tag to utf-8-emacs.
16267 (setup-ethiopic-environment-internal): Comment out key-binding for
16268 ethio-toggle-punctuation.
16269
16270 2011-12-13 Alan Mackenzie <acm@muc.de>
16271
16272 Add the switch statement to AWK Mode.
16273
16274 * progmodes/cc-awk.el (awk-font-lock-keywords): Add "switch", "case",
16275 "default" to the keywords regexp.
16276
16277 * progmodes/cc-langs.el (c-label-kwds): Let AWK take the same
16278 expression as the rest.
16279 (c-nonlabel-token-key): Allow string literals for AWK.
16280 Refactor for the other modes.
16281
16282 Large brace-block initialisation makes CC Mode slow: Fix.
16283 Tidy up and accelerate c-in-literal, etc. by using the c-parse-state
16284 routines. Limit backward searching in c-font-lock-enclosing.decl.
16285
16286 * progmodes/cc-engine.el (c-state-pp-to-literal): Return the
16287 pp-state and literal type in addition to the limits.
16288 (c-state-safe-place): New defun, extracted from c-state-literal-at.
16289 (c-state-literal-at): Use the above new defun.
16290 (c-slow-in-literal, c-fast-in-literal): Remove.
16291 (c-in-literal, c-literal-limits): Amend to use c-state-pp-to-literal.
16292
16293 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Check for
16294 being in a literal. Add a limit for backward searching.
16295
16296 * progmodes/cc-mode.el (awk-mode): Don't alias c-in-literal to
16297 c-slow-in-literal.
16298
16299 2011-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
16300
16301 * progmodes/pascal.el: Declare `ind' as dyn-bound (bug#10264).
16302
16303 2011-12-13 Martin Rudalics <rudalics@gmx.at>
16304
16305 * window.el (delete-other-windows): Use correct frame in call to
16306 window-with-parameter.
16307
16308 2011-12-12 Daniel Pfeiffer <occitan@t-online.de>
16309
16310 * progmodes/make-mode.el: Bring it up to date with makepp V2.0.
16311 (makefile-make-font-lock-keywords): Extend meaning of `keywords'.
16312 (makefile-gmake-statements, makefile-makepp-statements):
16313 Use it and add new makepp keywords.
16314 (makefile-makepp-font-lock-keywords): Add new patterns.
16315 (makefile-match-function-end): Match new [...] and [[...]].
16316
16317 2011-12-11 Juanma Barranquero <lekktu@gmail.com>
16318
16319 * ses.el (ses-call-printer-return, ses-cell-property-get)
16320 (ses-sym-rowcol, ses-printer-validate, ses-formula-record)
16321 (ses-create-cell-variable, ses-reset-header-string)
16322 (ses-cell-set-formula, ses-repair-cell-reference-all)
16323 (ses-self-reference-early-detection, ses-in-print-area, ses-set-curcell)
16324 (ses-check-curcell, ses-call-printer, ses-adjust-print-width)
16325 (ses-print-cell-new-width, ses-formula-references, ses-relocate-formula)
16326 (ses-aset-with-undo, ses-load, ses-truncate-cell)
16327 (ses-read-column-printer, ses-read-default-printer, ses-insert-row)
16328 (ses-delete-row, ses-delete-column, ses-append-row-jump-first-column)
16329 (ses-kill-override, ses-yank-pop, ses-yank-cells, ses-yank-tsf)
16330 (ses-yank-resize, ses-export-tab, ses-mark-row, ses-mark-column)
16331 (ses-renarrow-buffer, ses-insert-range, ses-insert-ses-range)
16332 (ses-safe-printer, ses-safe-formula, ses-warn-unsafe, ses--clean-!)
16333 (ses--clean-_, ses-range, ses-select, ses-center, ses-center-span)
16334 (ses-dashfill, ses-unsafe): Fix typos and reflow docstrings.
16335
16336 2011-12-11 Vincent Belaïche <vincentb1@users.sourceforge.net>
16337
16338 * ses.el: The overall change is to add cell renaming, that is
16339 setting fancy names for cell symbols other than name matching
16340 "\\`[A-Z]+[0-9]+\\'" regexp .
16341 (ses-create-cell-variable): New defun.
16342 (ses-relocate-formula): Relocate formulas only for cells the
16343 symbols of which are not renamed, i.e. symbols whose names do not
16344 match regexp "\\`[A-Z]+[0-9]+\\'".
16345 (ses-relocate-all): Relocate values only for cells the symbols of
16346 which are not renamed.
16347 (ses-load): Create cells variables as the (ses-cell ...) are read,
16348 in order to check row col consistency with cell symbol name only
16349 for cells that are not renamed.
16350 (ses-replace-name-in-formula): New defun.
16351 (ses-rename-cell): New defun.
16352
16353 2011-12-11 Chong Yidong <cyd@gnu.org>
16354
16355 * progmodes/gdb-mi.el (gdb): Set comint-prompt-regexp, required
16356 for completion via gud-gdb-fetch-lines-filter (Bug#10274).
16357
16358 2011-12-11 Eric Hanchrow <eric.hanchrow@gmail.com>
16359
16360 * window.el (other-window): Fix docstring.
16361
16362 2011-12-10 Eli Zaretskii <eliz@gnu.org>
16363
16364 * mail/rmailsum.el (rmail-header-summary): RFC2047 decode the
16365 `from' or `to' address before taking its substring.
16366 Fixes incorrect display in Rmail summary buffer whereby an RFC2047
16367 encoded name is chopped in the middle of the encoded string, and
16368 thus displayed encoded.
16369
16370 2011-12-10 Juanma Barranquero <lekktu@gmail.com>
16371
16372 * makefile.w32-in (update-subdirs-CMD): Use a Local Variables section.
16373
16374 2011-12-10 Eli Zaretskii <eliz@gnu.org>
16375
16376 * textmodes/texnfo-upd.el: Update commentary. Add a warning not
16377 to use texinfo-update-node and commands that call it if the
16378 Texinfo file uses @node lines without next/prev/up pointers.
16379 Correct outdated description about texinfo-master-menu.
16380 (texinfo-all-menus-update, texinfo-master-menu)
16381 (texinfo-update-node, texinfo-every-node-update)
16382 (texinfo-multiple-files-update): Doc fix. Warn against updating
16383 all the @node lines.
16384 (texinfo-master-menu): Only call texinfo-update-node if the prefix
16385 argument is numeric. Explain better in the doc string what the
16386 function really does.
16387 (texinfo-insert-master-menu-list): Improve the error message
16388 displayed if there's no menu in the Top node.
16389 (Bug#2975) See also this thread:
16390 http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00156.html.
16391
16392 2011-12-09 Manuel Gómez <mgrojo@gmail.com> (tiny change)
16393
16394 * speedbar.el (speedbar-supported-extension-expressions):
16395 Add .adb and .ads, commonly used for Ada source code (bug#10256).
16396
16397 2011-12-09 Juanma Barranquero <lekktu@gmail.com>
16398
16399 * printing.el (pr-mode-alist):
16400 * simple.el (filter-buffer-substring-functions)
16401 (completion-list-insert-choice-function):
16402 * window.el (window-with-parameter, window-atom-root)
16403 (window-sides-slots, window-size-fixed, window-min-delta)
16404 (window-max-delta, window--resize-mini-window)
16405 (window--resize-child-windows-normal, window-tree)
16406 (delete-other-windows, quit-window, split-window)
16407 (display-buffer-record-window, special-display-buffer-names)
16408 (special-display-regexps, special-display-popup-frame)
16409 (same-window-p, split-window-sensibly)
16410 (display-buffer-overriding-action, display-buffer-alist)
16411 (display-buffer-base-action, display-buffer, switch-to-buffer)
16412 (switch-to-buffer-other-window, switch-to-buffer-other-frame)
16413 (fit-window-to-buffer, recenter-positions)
16414 (mouse-autoselect-window-state, mouse-autoselect-window-select):
16415 * emacs-lisp/syntax.el (syntax-propertize-function): Fix typos
16416 and remove unneeded backslashes in docstrings.
16417
16418 2011-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
16419
16420 * emacs-lisp/lisp-mode.el (defmethod): Add doc-string-elt (bug#10244).
16421
16422 * pcmpl-gnu.el: Don't fail when there is no Makefile nor -f arg.
16423 (pcmpl-gnu-makefile-regexps): Accept "makefile" as well as files that
16424 end in ".mk".
16425 (pcmpl-gnu-make-rule-names): Check "makefile" and ignore errors
16426 when reading the makefile (bug#10116).
16427
16428 2011-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
16429
16430 * pcmpl-gnu.el (pcomplete/make): Also allow filename arguments
16431 (bug#10116).
16432
16433 2011-12-06 Glenn Morris <rgm@gnu.org>
16434
16435 * emacs-lisp/package.el (package-archives): Doc fix re riskiness.
16436
16437 2011-12-06 Chong Yidong <cyd@gnu.org>
16438
16439 * progmodes/cc-fonts.el (c-annotation-face): Use defface.
16440
16441 2011-12-06 Juanma Barranquero <lekktu@gmail.com>
16442
16443 * textmodes/table.el (table-shorten-cell): Fix typo.
16444
16445 2011-12-05 Christopher Genovese <genovese.cr@gmail.com> (tiny change)
16446
16447 * emacs-lisp/assoc.el (aput): Fix return value (bug#10146)
16448
16449 2011-12-05 Eli Zaretskii <eliz@gnu.org>
16450
16451 * descr-text.el (describe-char): Fix display of strong
16452 right-to-left characters and directional embeddings and overrides.
16453
16454 * simple.el (what-cursor-position): Fix display of codepoints of
16455 strong right-to-left characters.
16456
16457 2011-12-05 Chong Yidong <cyd@gnu.org>
16458
16459 * faces.el (read-color): Doc fix.
16460
16461 2011-12-05 Glenn Morris <rgm@gnu.org>
16462
16463 * align.el (align--set-marker): Add doc-string.
16464 Don't try to move something that is not a marker. (Bug#10216)
16465
16466 2011-12-04 Glenn Morris <rgm@gnu.org>
16467
16468 * calendar/appt.el (appt-add): Rewrite the interactive-spec to avoid
16469 overly zealous deletion of trailing whitespace.
16470
16471 2011-12-04 Juanma Barranquero <lekktu@gmail.com>
16472
16473 * server.el (server-delete-client): On Windows, do not try to delete
16474 the only terminal.
16475 (server-process-filter): On Windows, treat requests for a tty frame as
16476 if they were for a GUI frame if the running server is in GUI mode.
16477
16478 2011-12-03 Glenn Morris <rgm@gnu.org>
16479
16480 * textmodes/texinfmt.el (batch-texinfo-format): Doc fix. (Bug#10207)
16481
16482 2011-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
16483
16484 * electric.el: Streamline electric-indent's hook.
16485 (electric-indent-chars): Revert to simple list.
16486 (electric-indent-functions): New var.
16487 (electric-indent-post-self-insert-function): Use it.
16488
16489 * progmodes/prolog.el (prolog-find-value-by-system): Avoid error when
16490 there's no inferior buffer (bug#10196).
16491 (prolog-consult-compile): Don't use toggle-read-only.
16492
16493 2011-12-02 Michael Albinus <michael.albinus@gmx.de>
16494
16495 * net/tramp-sh.el (tramp-maybe-open-connection): Handle user
16496 interrupt. (Bug#10187)
16497
16498 2011-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
16499
16500 * pcmpl-gnu.el (pcomplete/tar): large-file-warn-threshold can be nil
16501 (bug#9160).
16502
16503 * dired-aux.el (dired-query): Don't assume help-char is modifier-free
16504 (bug#10191).
16505
16506 2011-12-02 Juri Linkov <juri@jurta.org>
16507
16508 * info.el (Info-search): Display "end of manual" when Isearch
16509 reaches the end of single-file Info manual. (Bug#9918)
16510
16511 2011-12-02 Eli Zaretskii <eliz@gnu.org>
16512
16513 * isearch.el (isearch-message-prefix): Run the input method part
16514 of the prompt through bidi-string-mark-left-to-right. (Bug#10183)
16515
16516 2011-12-02 Juri Linkov <juri@jurta.org>
16517
16518 * isearch.el (isearch-occur): Use `word-search-regexp' for
16519 `isearch-word'.
16520 (isearch-search-and-update): Add condition for `isearch-word' and
16521 call `word-search-regexp'. (Bug#10145)
16522
16523 2011-12-01 Glenn Morris <rgm@gnu.org>
16524
16525 * eshell/em-hist.el (eshell-hist-initialize):
16526 Handle eshell-history-size nil and HISTSIZE set or unset.
16527 (eshell-history-file-name, eshell-history-size): Fix custom type.
16528
16529 2011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
16530
16531 * man.el (Man-completion-table): Fix the lambda case (bug#10168).
16532
16533 2011-12-01 Michael McNamara <mac@mail.brushroad.com>
16534
16535 * progmodes/verilog-mode.el (verilog-pretty-expr):
16536 Rework verilog-pretty-expr to handle new assignment operators in system
16537 verilog, such as += *= and the like.
16538 (verilog-assignment-operator-re): Regular expression to find the
16539 assigment operator in a verilog assignment.
16540 (verilog-assignment-operation-re): Regular expression to find an
16541 assignment statement for pretty-expr.
16542 (verilog-in-attribute-p): Query returns true if point is in an
16543 attribute context; used to skip these for expression line up from
16544 pretty-expr.
16545 (verilog-in-parameter-p): Query returns true if point is in an
16546 parameter definition context; used to skip these for expression
16547 line up from pretty-expr.
16548 (verilog-in-parenthesis-p): Query returns true if point is in a
16549 parenthetical expression, specifically ( ) but not [ ] or { };
16550 used by pretty-expr.
16551 (verilog-just-one-space): If there is no space, don't add one.
16552 (verilog-get-lineup-indent-2): Specifically skip just attribute
16553 contexts for expression lineup, rather than skipping all
16554 parenthetical expressions.
16555 (verilog-calculate-indent): Fix comment, and fix indent.
16556 (verilog-do-indent): Indent declarations in lists (suggested by
16557 Joachim Lechner).
16558 (verilog-mode-abbrev-table): Populate abbrev mode with the various
16559 skeleton items.
16560 (verilog-sk-ovm-class): Add skeleton for OVM classes (reported
16561 by Alain Mellan).
16562
16563 2011-12-01 Wilson Snyder <wsnyder@wsnyder.org>
16564
16565 * progmodes/verilog-mode.el (verilog-read-defines): Fix reading
16566 parameters with embedded comments. Reported by Ray Stevens.
16567 (verilog-calc-1, verilog-fork-wait-re) (verilog-forward-sexp,
16568 verilog-wait-fork-re): Fix indentation of "wait fork", bug407.
16569 Reported by Tim Holt.
16570 (verilog-auto): Fix AUTOing a upper module then AUTOing module
16571 instantiated by upper module causing wrong expansion until AUTOed a
16572 second time. Reported by K C Buckenmaier.
16573 (verilog-diff-auto): Fix showing .* as a difference when
16574 `verilog-auto-star-save' off. Reported by Dan Dever.
16575 (verilog-auto-reset, verilog-read-always-signals)
16576 (verilog-auto-reset-blocking-in-non): Fix AUTORESET including
16577 temporary signals in reset list if
16578 verilog-auto-reset-blocking-in-non is nil, and match assignment
16579 style to each signal's assignment type, bug381.
16580 Reported by Thomas Esposito.
16581 (verilog-sk-uvm-class, verilog-uvm-begin-re, verilog-uvm-end-re)
16582 (verilog-uvm-statement-re): Support UVM indentation and
16583 highlighting, with old OVM keywords only.
16584 (verilog-auto-tieoff, verilog-auto-tieoff-declaration):
16585 Support AUTOTIEOFF creating non-wire data types.
16586 Suggested by Jonathan Greenlaw.
16587 (verilog-auto-insert-lisp, verilog-delete-to-paren)
16588 (verilog-forward-sexp-cmt, verilog-forward-sexp-ign-cmt)
16589 (verilog-inject-sense, verilog-read-inst-pins)
16590 (verilog-read-sub-decls, verilog-read-sub-decls-line):
16591 Fix mismatching parenthesis inside commented out code when deleting
16592 AUTOINST, bug383. Reported by Jonathan Greenlaw.
16593 (verilog-auto-ascii-enum): Fix AUTOASCIIENUM one-hot with
16594 non-numeric vector width. Reported by Alex Reed.
16595 (verilog-auto-ascii-enum): Add "onehot" option to work around not
16596 detecting signals with parameter widths. Reported by Alex Reed.
16597 (verilog-auto-delete-trailing-whitespace):
16598 With `verilog-auto-delete-trailing-whitespace' remove trailing
16599 whitespace in auto expansion, bug371. Reported by Brad Dobbie.
16600 (verilog-run-hooks, verilog-scan-cache-flush, verilog-syntax-ppss):
16601 Fix verilog-scan-cache corruption when running user AUTO expansion
16602 hooks that call indentation routines.
16603 (verilog-simplify-range-expression): Fix typo ignoring lower case
16604 identifiers.
16605 (verilog-delete-auto): Fix delete-autos to also remove user created
16606 automatics, as long as they start with AUTO.
16607 (verilog-batch-diff-auto, verilog-diff-auto)
16608 (verilog-diff-function): Add `verilog-diff-auto' and bind to
16609 "C-c?" to report differences in AUTO expansion, ignoring spaces.
16610 (verilog-backward-syntactic-ws-quick, verilog-beg-of-defun-quick)
16611 (verilog-in-paren-quick, verilog-re-search-backward-quick)
16612 (verilog-re-search-forward-quick, verilog-syntax-ppss):
16613 Fix calling `syntax-ppss' when inside auto expansions as the ppss hook
16614 is disabled and its cache will get corrupt, causing AUTOS not to
16615 expand. Instead use only -quick functions.
16616 (verilog-scan-region): Fix scanning over escaped quotes.
16617 (verilog-inside-comment-or-string-p, verilog-inside-comment-p)
16618 (verilog-re-search-backward-quick)
16619 (verilog-re-search-forward-quick, verilog-scan): verilog-scan and
16620 related functions now ignore strings, to fix misparsing of strings
16621 with magic comments embedded in them.
16622 (verilog-read-auto-template):
16623 Fix 'verilog-auto-inst-template-numbers' with extra newline before (.
16624 Reported by Brad Dobbie.
16625 (verilog-read-auto-template):
16626 Fix 'verilog-auto-inst-template-numbers' with comments.
16627 Reported by Brad Dobbie.
16628 (verilog-auto-inst, verilog-auto-inst-param)
16629 (verilog-auto-inst-sort): Add 'verilog-auto-inst-sort' to reduce
16630 merge conflicts with AUTOINST, bug358. Reported by Brad Dobbie.
16631 (verilog-auto-inst-template-numbers): Add 'lhs' policy for
16632 debugging templates without merge conflicts, bug357.
16633 Reported by Brad Dobbie.
16634 (verilog-read-auto-template):
16635 Fix verilog-auto-inst-template-numbers with multiple templates.
16636 Reported by Brad Dobbie.
16637 (verilog-define-abbrev): Fix verilog-mode abbrevs to be system
16638 abbrevs so user won't be asked to save.
16639 (verilog-read-auto-lisp-present): Fix to start at beginning of
16640 buffer in case called outside of verilog-auto.
16641 (verilog-simplify-range-expression): Fix AUTOWIRE expanding "X-1+1"
16642 to "X-2". Reported by Matthew Myers.
16643 (verilog-auto, verilog-auto-inout-in): Add AUTOINOUTIN for creating
16644 all inputs from module templates. Reported by Leith Johnson.
16645 (verilog-module-inside-filename-p): Fix locating programs as with
16646 modules.
16647 (verilog-auto-inst-port): Fix vl-width expressions when using
16648 verilog-auto-inst-param-value, bug331. Reported by Julian Gorfajn.
16649 (verilog-decls-get-regs, verilog-decls-get-signals,
16650 verilog-decls-get-vars, verilog-decls-get-wires, verilog-decls-new,
16651 verilog-modi-cache-add-vars, verilog-modi-cache-add-wires,
16652 verilog-read-decls): Combine reg and wire structures into one var
16653 structure to represent SystemVerilog concepts.
16654 (verilog-auto-ascii-enum, verilog-auto-logic, verilog-auto-reg)
16655 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-wire)
16656 (verilog-auto-wire-type, verilog-insert-definition):
16657 Add verilog-auto-wire-type and AUTOLOGIC to support using
16658 SystemVerilog "logic" keyword instead of "wire"/"reg".
16659 (verilog-auto-reg-input, verilog-decls-get-signals): Fix AUTOWIRE
16660 to declares outputs that also have assignments (presumably in an
16661 ifdef or generate if so there's not a driver conflict).
16662 Reported by Matthew Myers.
16663 (verilog-auto-declare-nettype, verilog-insert-definition):
16664 Add verilog-auto-declare-nettype to fix declarations using
16665 `default_nettype none. Reported by Julian Gorfajn.
16666 (verilog-read-always-signals-recurse, verilog-read-decls)
16667 (verilog-read-sub-decls-gate): Fix infinite loop with (*) and
16668 malformed end statement, bug325. Reported by Joshua Wise and
16669 Andrew Drake.
16670 (verilog-auto-star-safe, verilog-delete-auto-star-implicit)
16671 (verilog-inst-comment-re): Fix not deleting Interfaced comment
16672 when expanding .* in interfaces, bug320.
16673 Reported by Pierre-David Pfister.
16674 (verilog-read-module-name): Fix import statements between module
16675 name and open parenthesis, bug317.
16676 Reported by Pierre-David Pfister.
16677 (verilog-simplify-range-expression): Fix simplification of
16678 multiplications inside AUTOWIRE connections, bug303.
16679 (verilog-auto-inst-port): Support parameter expansion in
16680 multidimensional arrays.
16681 (verilog-read-decls): Fix AUTOREG etc looking for "endproperty"
16682 after "assert property". Reported by Julian Gorfajn.
16683 (verilog-simplify-range-expression): Fix "couldn't merge" errors
16684 with multiplication, bug303.
16685 (verilog-read-decls): Fix parsing of unsigned data types, bug302.
16686 Reported by Jan Frode Lonnum.
16687
16688 2011-11-30 Juanma Barranquero <lekktu@gmail.com>
16689
16690 * htmlfontify.el (hfy-page-header, hfy-post-html-hooks)
16691 (hfy-shell-file-name, hfy-shell):
16692 * international/fontset.el (x-decompose-font-name): Fix typos.
16693
16694 2011-11-29 Ken Brown <kbrown@cornell.edu>
16695
16696 * progmodes/gdb-mi.el: Fix bug#9853, bug#9858, and bug#9878.
16697 (gdb-version): Remove defvar.
16698 (gdb-supports-non-stop): New defvar, replacing `gdb-version'.
16699 (gdb-gud-context-command, gdb-non-stop-handler)
16700 (gdb-current-context-command, gdb-stopped): Use it.
16701 (gdb-init-1): Enable pretty printing here.
16702 (gdb-non-stop-handler): Don't enable pretty-printing here.
16703 Check to see if the target supports non-stop mode; if not, turn off
16704 non-stop mode. Use the following.
16705 (gdb-check-target-async): New defun.
16706 (gud-watch, gdb-stopped): Fix whitespace.
16707 (gdb-get-source-file): Don't try to display the source file if
16708 `gdb-main-file' is nil.
16709
16710 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
16711
16712 * align.el: Try to generate fewer markers (bug#10047).
16713 (align--set-marker): New macro.
16714 (align-region): Use it.
16715
16716 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
16717
16718 * isearch.el (isearch-yank-x-selection): Deactivate mark (bug#10022).
16719
16720 2011-11-29 Chong Yidong <cyd@gnu.org>
16721
16722 * indent.el (indent-for-tab-command, indent-according-to-mode):
16723 Doc fix.
16724 (indent-region): Doc fix. Switch nested ifs to equivalent cond.
16725
16726 2011-11-29 Michael Albinus <michael.albinus@gmx.de>
16727
16728 * vc/diff-mode.el (diff-find-file-name): Make `read-file-name'
16729 aware of remote file names. (Bug#10124)
16730
16731 2011-11-29 Chong Yidong <cyd@gnu.org>
16732
16733 * frame.el (auto-raise-mode, auto-lower-mode): Doc fix.
16734
16735 2011-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
16736
16737 * files.el (find-file): Don't use force-same-window (bug#10144).
16738 * window.el (switch-to-buffer): Better match Emacs-23 behavior and only
16739 use pop-to-buffer if the selected window can't be used.
16740 (pop-to-buffer-same-window): Use display-buffer--same-window-action.
16741
16742 2011-11-28 Eli Zaretskii <eliz@gnu.org>
16743
16744 * vc/diff-mode.el (diff-mode-map): Don't inherit 'z' => 'M-z' from
16745 special-mode-map.
16746
16747 2011-11-28 Chong Yidong <cyd@gnu.org>
16748
16749 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix default doc.
16750
16751 2011-11-27 Nick Roberts <nickrob@snap.net.nz>
16752
16753 * progmodes/gdb-mi.el (gdb-init-1): Condition execution of
16754 gdb-get-source-file-list on gdb-create-source-file-list.
16755
16756 2011-11-26 Eli Zaretskii <eliz@gnu.org>
16757
16758 * whitespace.el (whitespace-newline): Use a different foreground
16759 color for 16-color light-background displays.
16760
16761 2011-11-24 Chong Yidong <cyd@gnu.org>
16762
16763 * window.el (display-buffer--special-action): Doc fix.
16764
16765 2011-11-25 Juanma Barranquero <lekktu@gmail.com>
16766
16767 * emacs-lisp/avl-tree.el (avl-tree--do-copy, avl-tree-create)
16768 (avl-tree-compare-function, avl-tree-empty, avl-tree-enter)
16769 (avl-tree-delete, avl-tree-member, avl-tree-member-p, avl-tree-map)
16770 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar, avl-tree-copy)
16771 (avl-tree-clear, avl-tree-stack, avl-tree-stack-pop)
16772 (avl-tree-stack-first):
16773 * emacs-lisp/cconv.el (cconv--analyse-use):
16774 * net/gnutls.el (gnutls-negotiate): Fix typos.
16775
16776 2011-11-24 Glenn Morris <rgm@gnu.org>
16777
16778 * lpr.el (lpr-windows-system, lpr-lp-system):
16779 * mail/binhex.el (binhex-begin-line):
16780 * progmodes/grep.el (grep-history, grep-find-history):
16781 * textmodes/flyspell.el:
16782 * vc/pcvs-defs.el (cvs-global-menu):
16783 * vc/vc-bzr.el (vc-bzr-admin-checkout-format-file):
16784 * vc/vc-mtn.el (vc-mtn-admin-dir, vc-mtn-admin-format):
16785 * vc/vc-cvs.el (vc-cvs-registered): Give them basic doc-strings.
16786
16787 * net/tls.el: Fix case of "GnuTLS".
16788
16789 * paths.el (rmail-file-name): Format doc-string for make-docfile.
16790
16791 * version.el (emacs-build-system): Give it a doc-string.
16792
16793 2011-11-24 Juri Linkov <juri@jurta.org>
16794
16795 * view.el (view-buffer): Revert 2011-07-19T15:01:49Z!larsi@gnus.org from 2011-07-19 (bug#8615).
16796
16797 2011-11-24 Glenn Morris <rgm@gnu.org>
16798
16799 * mail/rmailmm.el (rmail-mime): When rmail-enable-mime is non-nil,
16800 if called on a non-mime message just toggle the headers. (Bug#8006)
16801
16802 2011-11-24 Juanma Barranquero <lekktu@gmail.com>
16803
16804 * allout.el (allout-setup, allout-auto-save-temporarily-disabled)
16805 (allout-lead-with-comment-string, allout-structure-deleted-hook)
16806 (allout-mode, allout-chart-subtree, allout-hotspot-key-handler)
16807 (allout-rebullet-heading, allout-open-sibtopic)
16808 (allout-toggle-current-subtree-encryption)
16809 (allout-toggle-subtree-encryption, allout-encrypt-string)
16810 (allout-next-topic-pending-encryption, allout-adjust-file-variable)
16811 (allout-distinctive-bullets-string, allout-auto-activation):
16812 * window.el (window-normalize-buffer-to-display):
16813 * progmodes/verilog-mode.el (verilog-batch-indent):
16814 * textmodes/bibtex.el (bibtex-field-braces-opt)
16815 (bibtex-field-strings-opt):
16816 * vc/cvs-status.el (cvs-tree-merge):
16817 Fix typos.
16818
16819 2011-11-23 Michael Albinus <michael.albinus@gmx.de>
16820
16821 * rfn-eshadow.el (rfn-eshadow-update-overlay): Let-bind
16822 `non-essential' to t, in order to avoid remote connections.
16823
16824 2011-11-23 Eli Zaretskii <eliz@gnu.org>
16825
16826 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
16827 On MS-DOS and MS-Windows, compare with loaddefs.el
16828 case-insensitively.
16829
16830 2011-11-23 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
16831
16832 * mail/unrmail.el (unrmail): Always add blank line. (Bug#7743)
16833
16834 2011-11-23 Glenn Morris <rgm@gnu.org>
16835
16836 * paths.el (rmail-file-name): Reformat the doc-string so that it
16837 is picked up.
16838
16839 * mail/rmail.el (rmail-message-filter, rmail-auto-file): Doc fixes.
16840 (rmail-auto-file): Ignore case in the "special" field names,
16841 as mail-fetch-field does for all others.
16842
16843 * mail/rmail.el (rmail-forward):
16844 * mail/rmailkwd.el (rmail-set-label):
16845 * mail/rmailout.el (rmail-output, rmail-output-as-seen)
16846 (rmail-output-body-to-file): Give error if no message. (Bug#10082)
16847
16848 * mail/rmail.el (rmail-current-message): Doc fix.
16849
16850 * mail/rmail.el (rmail-message-filter): Mark as obsolete. (Bug#2624)
16851
16852 2011-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
16853
16854 * server.el (server-eval-and-print): Allow C-g (bug#6585).
16855
16856 2011-11-22 Glenn Morris <rgm@gnu.org>
16857
16858 * mail/rmailmm.el (test-rmail-mime-handler)
16859 (test-rmail-mime-bulk-handler)
16860 (test-rmail-mime-multipart-handler): Move tests to test/ directory.
16861
16862 2011-11-21 Juri Linkov <juri@jurta.org>
16863
16864 * calc/calc.el (calc-read-key-sequence):
16865 Let-bind `input-method-function' to nil. (Bug#10018)
16866
16867 2011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
16868
16869 * emacs-lisp/cl-indent.el (common-lisp-loop-part-indentation):
16870 Tell the caller that the next line needs recomputation, even
16871 though it doesn't start a sexp (bug#10094).
16872
16873 2011-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
16874
16875 * emacs-lisp/autoload.el (autoload-generate-file-autoloads): Simplify.
16876
16877 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
16878
16879 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
16880 Use force-same-window.
16881
16882 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
16883
16884 * descr-text.el (describe-char-unicode-data):
16885 * json.el (json-string-escape):
16886 * mail/footnote.el (footnote-unicode-string, footnote-unicode-regexp)
16887 (Footnote-unicode, Footnote-style-p):
16888 * net/ntlm.el (ntlm-get-password-hashes): Fix typos.
16889
16890 2011-11-20 Chong Yidong <cyd@gnu.org>
16891
16892 * window.el (replace-buffer-in-windows): Restore interactive spec.
16893
16894 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
16895
16896 * electric.el (electric-indent-mode): Fix last change (too optimistic).
16897
16898 * emacs-lisp/bytecomp.el: Silence obsolete warnings more reliably.
16899 (byte-compile-global-not-obsolete-vars): New var.
16900 (byte-compile-check-variable, byte-compile-make-obsolete-variable):
16901 Use it.
16902 (byte-compile-warn-obsolete): Align text with the one in *Help*.
16903
16904 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
16905
16906 * progmodes/cwarn.el (cwarn-is-enabled, cwarn-font-lock-keywords):
16907 * progmodes/pascal.el (electric-pascal-equal):
16908 * textmodes/reftex-dcr.el (reftex-view-crossref-from-bibtex):
16909 * xml.el (xml-substitute-special): Fix typos.
16910
16911 2011-11-20 Glenn Morris <rgm@gnu.org>
16912
16913 * mail/rmail.el (rmail-enable-mime-composing): Make it a defcustom.
16914 (rmail-insert-mime-forwarded-message-function, rmail-mime-feature):
16915 Doc fixes.
16916 (rmail-decode-mime-charset): Mark as obsolete.
16917
16918 * mail/rmailsum.el (rmail-message-regexp-p-1):
16919 * mail/rmail.el (rmail-search-message, rmail-forward, rmail-resend):
16920 Before using mime functions, check they are set. (Bug#10077)
16921
16922 2011-11-19 Juri Linkov <juri@jurta.org>
16923
16924 * info.el (Info-finder-find-node): Use `package--builtins' instead
16925 of `package-alist'. Use node names formed by the pattern "Keyword "
16926 and the keyword name.
16927
16928 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
16929
16930 * progmodes/sh-script.el (sh-assignment-regexp): Add entry for bash.
16931
16932 2011-11-19 Juri Linkov <juri@jurta.org>
16933
16934 * info.el (Info-hide-note-references): Add `:set' tag to `defcustom'
16935 that calls `revert-buffer' on all Info buffers. (Bug#9915)
16936 (Info-revert-find-node): Remove let-bindings `old-buffer-name',
16937 `old-history', `old-history-forward'. Add let-binding
16938 `window-selected'. Remove calls to `kill-buffer',
16939 `switch-to-buffer' and `Info-mode'. Set `Info-current-file' to nil
16940 before calling `Info-find-node', so `Info-find-node-2' will reread
16941 the Info file. Restore window positions only when `window-selected'
16942 is non-nil.
16943
16944 2011-11-19 Juri Linkov <juri@jurta.org>
16945
16946 * isearch.el (isearch-lazy-highlight-new-loop):
16947 Remove condition `(not isearch-error)'. (Bug#9918)
16948
16949 * misearch.el (multi-isearch-search-fun): Add condition
16950 `(not bound)' to ignore lazy-highlighting search.
16951 Add the search-failed message "end of multi" when the end of
16952 multi-sequence is reached. Uncapitalize the search-failed
16953 message "Repeat for next buffer".
16954
16955 * info.el (Info-search): Add the search-failed message
16956 "end of the manual" when the end of the manual is reached
16957 in Isearch mode.
16958
16959 2011-11-19 Juri Linkov <juri@jurta.org>
16960
16961 * info.el (Info-find-node-2, Info-select-node, Info-history-find-node):
16962 Use non-destructive `remove' instead of `delete' because
16963 `Info-history-list' stored to `Info-isearch-initial-history-list' in
16964 `Info-isearch-start' might need to be restored in `Info-isearch-end'.
16965
16966 2011-11-19 Juri Linkov <juri@jurta.org>
16967
16968 * isearch.el (isearch-edit-string): Let-bind `history-add-new-input'
16969 to nil instead of binding `search-ring' and `regexp-search-ring'.
16970 (Bug#9185)
16971
16972 2011-11-19 Eli Zaretskii <eliz@gnu.org>
16973
16974 * simple.el (line-move): Force movement by logical lines for any
16975 hscrolled window, not only when auto-hscroll-mode is on.
16976 (line-move-visual): Update doc string to that effect. (Bug#10076)
16977
16978 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
16979
16980 * language/european.el (macintosh): Define as alias for mac-roman.
16981
16982 2011-11-19 Eli Zaretskii <eliz@gnu.org>
16983
16984 * mail/rmailmm.el (rmail-mime-display-header)
16985 (rmail-mime-display-tagline, rmail-mime-display-body): New defsubsts.
16986 (rmail-mime-entity-segment, rmail-mime-toggle-raw)
16987 (rmail-mime-toggle-hidden, rmail-mime-insert-text)
16988 (rmail-mime-insert-bulk, rmail-mime-insert-multipart)
16989 (rmail-mime-insert, rmail-mime-insert-tagline): Use them instead
16990 of a raw aref.
16991 (rmail-mime-entity-segment): To get past the tagline, move forward
16992 2 more lines, to account for the 2 empty lines that precede and
16993 follow the line with the buttons.
16994 (rmail-mime-update-tagline): Move one more line, to get past the
16995 empty line that follows the buttons in the tagline. (Bug#9520)
16996
16997 2011-11-19 Martin Rudalics <rudalics@gmx.at>
16998
16999 * window.el (window-max-delta-1, window-min-delta-1)
17000 (window-min-size-1, window-state-get-1, window-state-put-1)
17001 (window-state-put-2): Use "window--" prefix.
17002
17003 2011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
17004
17005 * emacs-lisp/smie.el: Improve warnings and conflict detection.
17006 (smie-warning-count): New var.
17007 (smie-set-prec2tab): Use it.
17008 (smie-bnf->prec2): Improve warnings. Add docstring.
17009 (smie-bnf--closer-alist): Rename from smie-bnf-closer-alist.
17010 (smie-bnf--set-class): New function.
17011 (smie-bnf--classify): Rename from smie-bnf-classify. Rewrite to fix
17012 corner case.
17013
17014 * progmodes/compile.el: Obey compilation-first-column in dest buffer.
17015 (compilation-error-properties, compilation-move-to-column):
17016 Handle compilation-first-column while in the target buffer.
17017
17018 * progmodes/cc-engine.el (c-remove-stale-state-cache-backwards):
17019 Don't hardcode point-min==1.
17020
17021 * eshell/esh-cmd.el (eshell-do-eval): Handle `setq' (bug#9907).
17022 (eshell-rewrite-for-command): Remove workaround.
17023 (eshell-do-pipelines, eshell-do-pipelines-synchronously)
17024 (eshell-do-eval, eshell-exec-lisp): Avoid gratuitous setq.
17025 * eshell/esh-util.el (eshell-condition-case, eshell-for): Use declare.
17026
17027 * files-x.el (modify-file-local-variable): Obey commenting conventions.
17028
17029 2011-11-17 Glenn Morris <rgm@gnu.org>
17030
17031 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
17032 Ignore buffer-local generated-autoload-file if it is the same
17033 as the global value. (Bug#10049)
17034
17035 2011-11-17 Juanma Barranquero <lekktu@gmail.com>
17036
17037 * textmodes/reftex-toc.el (reftex-toc-return-marker, reftex-toc-help)
17038 (reftex-toc, reftex-toc, reftex-toc-dframe-p, reftex-toc-next-heading)
17039 (reftex-toc-previous-heading, reftex-toc-max-level)
17040 (reftex-toc-goto-line-and-hide, reftex-toc-show-calling-point)
17041 (reftex-toc-quit, reftex-toc-revert, reftex-toc-jump)
17042 (reftex-toc-do-promote, reftex-toc-promote-prepare)
17043 (reftex-toc-promote-action, reftex-toc-extract-section-number)
17044 (reftex-toc-load-all-files-for-promotion, reftex-toc-rename-label)
17045 (reftex-toc-rename-label, reftex-toc-visit-location)
17046 (reftex-toc-visit-location, reftex-toggle-auto-toc-recenter)
17047 (reftex-toggle-auto-toc-recenter, reftex-toggle-auto-toc-recenter)
17048 (reftex-make-separate-toc-frame): Fix typos, and use TOC consistently,
17049 leaving "*toc*" only for references to the buffer.
17050
17051 2011-11-17 Martin Rudalics <rudalics@gmx.at>
17052
17053 * window.el (window-resize, delete-window, split-window):
17054 Replace window-splits by window-combination-resize.
17055 * cus-start.el (window-splits): Replace by window-combination-resize.
17056
17057 2011-11-17 Glenn Morris <rgm@gnu.org>
17058
17059 * progmodes/sh-script.el (sh-font-lock-keywords-var):
17060 Make bash entry derive from sh entry, not shell entry.
17061
17062 2011-11-16 Michael Albinus <michael.albinus@gmx.de>
17063
17064 * net/tramp-sh.el (tramp-sh-handle-file-truename): Cache only the
17065 local file name.
17066
17067 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
17068
17069 * menu-bar.el (menu-bar-file-menu):
17070 * printing.el (pr-ps-utility):
17071 * calendar/icalendar.el (icalendar, icalendar--convert-tz-offset)
17072 (icalendar--convert-to-ical, icalendar--convert-ordinary-to-ical)
17073 (icalendar--convert-weekly-to-ical, icalendar--convert-yearly-to-ical)
17074 (icalendar--convert-sexp-to-ical, icalendar--convert-block-to-ical)
17075 (icalendar--convert-float-to-ical, icalendar--convert-date-to-ical)
17076 (icalendar--convert-cyclic-to-ical)
17077 (icalendar--convert-anniversary-to-ical, icalendar-import-buffer)
17078 (icalendar--convert-ical-to-diary)
17079 (icalendar--convert-recurring-to-diary)
17080 (icalendar--convert-non-recurring-all-day-to-diary)
17081 (icalendar-import-format-sample):
17082 * progmodes/idlw-shell.el (idlwave-shell-mode):
17083 * progmodes/vhdl-mode.el (vhdl-mode, vhdl-print-two-column)
17084 (vhdl-print-customize-faces, vhdl-mode, vhdl-ps-print-settings)
17085 (vhdl-ps-print-init): Fix typos.
17086
17087 2011-11-16 Ken Manheimer <ken.manheimer@gmail.com>
17088
17089 * allout.el, allout-widgets.el (file metadata): Attribute copyright to
17090 FSF and collapse date sequence, obscure author/maintainer email address
17091 better, remove extra version line, track relocation of author's webpage.
17092
17093 * progmodes/python.el (python-pdbtrack-input-prompt)
17094 (python-pdbtrack-track-stack-file): Adjust to recognize ipdb as well as
17095 regular python pdb prompts. Adjustments shamelessly taken exactly as
17096 suggested in EmacsWiki page (tiny change):
17097 http://www.emacswiki.org/PythonProgrammingInEmacs#toc14
17098
17099 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
17100
17101 * expand.el (expand-pos, expand-index, expand-point):
17102 Remove redundant info from docstring.
17103 (expand-add-abbrevs): Doc fix.
17104 (expand-c-sample-expand-list, expand-sample-lisp-mode-expand-list)
17105 (expand-sample-perl-mode-expand-list): Fix typos.
17106
17107 * net/dbus.el (dbus-event-member-name):
17108 * play/5x5.el (5x5-solve-rotate-left, 5x5-solver-output):
17109 * term/pc-win.el (msdos-create-frame-with-faces):
17110 * textmodes/texinfmt.el (texinfo-format-image): Fix typos.
17111
17112 2011-11-16 Martin Rudalics <rudalics@gmx.at>
17113
17114 * window.el (split-window, window-state-get-1)
17115 (window-state-put-1, window-state-put-2): Rename occurrences of
17116 window-nest to window-combination-limit.
17117 * cus-start.el (window-nest): Rename to window-combination-limit.
17118
17119 2011-11-16 Chong Yidong <cyd@gnu.org>
17120
17121 * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip
17122 regexp (Bug#10033).
17123
17124 2011-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
17125
17126 * tmm.el (tmm-prompt): Use minibuffer-with-setup-hook (bug#10053).
17127 `completing-read' will remove *Completions* and will preserve
17128 current-buffer for us.
17129 (tmm-add-prompt): Users of *Completions* will always (re)set its
17130 major mode.
17131 (tmm-old-comp-map): Remove.
17132
17133 2011-11-16 Glenn Morris <rgm@gnu.org>
17134
17135 * mail/rmailedit.el: Require rmailmm when compiling.
17136 (rmail-old-mime-state): New declaration.
17137 (rmail-edit-current-message): If editing a mime message,
17138 edit the "raw" message from the mbox buffer.
17139 (rmail-cease-edit): Handle mime messages. (Bug#9840)
17140
17141 2011-11-15 Glenn Morris <rgm@gnu.org>
17142
17143 * mail/rmailmm.el (rmail-mime-toggle-raw): Remove entity arg,
17144 which wasn't being used. Add optional arg to force given state.
17145 (rmail-mime): Add optional arg to force given state.
17146
17147 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
17148
17149 * allout.el (allout-encryption-plaintext-sanitization-regexps):
17150 * frame.el (display-mm-dimensions-alist):
17151 * outline.el (outline-mode-menu-bar-map, outline-move-subtree-up)
17152 (outline-move-subtree-down):
17153 * net/newst-treeview.el (newsticker--treeview-do-get-node-of-feed)
17154 (newsticker--treeview-do-get-node):
17155 * net/quickurl.el (quickurl-list-buffer-name):
17156 * progmodes/dcl-mode.el (dcl-mode):
17157 * progmodes/gdb-mi.el (gdb-mapcar*):
17158 * progmodes/sql.el (sql-mode-oracle-font-lock-keywords): Fix typos.
17159
17160 2011-11-15 Glenn Morris <rgm@gnu.org>
17161
17162 * mail/rmail.el (rmail-file-coding-system): It's only ever used
17163 in a boolean sense, so just make it a boolean, and fix the doc.
17164 (rmail-show-mime-function, rmail-mime-feature)
17165 (rmail-require-mime-maybe): Doc fixes.
17166 (rmail-show-message-1): Check rmail-show-mime-function is non-nil.
17167
17168 * mail/rmailmm.el (rmail-show-mime): Doc fix.
17169
17170 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
17171
17172 * epg.el (epg-start-decrypt, epg-start-verify, epg-start-sign)
17173 (epg-start-encrypt, epg-start-export-keys, epg-start-import-keys)
17174 (epg-start-receive-keys, epg-start-delete-keys, epg-start-sign-keys)
17175 (epg-start-generate-key, epg-context-set-progress-callback): Fix typos.
17176
17177 2011-11-15 Glenn Morris <rgm@gnu.org>
17178
17179 * mail/rmailmm.el (rmail-mime-entity, rmail-mime-entity-segment)
17180 (rmail-mime-shown-mode, rmail-mime-hidden-mode, rmail-mime-raw-mode)
17181 (rmail-mime-toggle-hidden, rmail-mime-insert-tagline)
17182 (rmail-mime-insert-header, rmail-mime-handle, rmail-mime-parse)
17183 (rmail-mime, rmail-show-mime): Doc fixes.
17184
17185 * term/ns-win.el (mode-line-frame-identification):
17186 Leave it alone. (Bug#10051)
17187
17188 * simple.el (mark-whole-buffer): Doc fix. (Bug#10023)
17189
17190 * mail/rmailout.el (rmail-output-to-rmail-buffer):
17191 Handle empty buffers. (Bug#9978)
17192
17193 2011-11-14 Juanma Barranquero <lekktu@gmail.com>
17194
17195 * international/mule.el (define-charset):
17196 * mail/rmailmm.el (rmail-mime-find-header-encoding):
17197 * progmodes/prolog.el (prolog-mode-hook, prolog-inferior-mode-hook):
17198 * progmodes/verilog-mode.el (verilog-backward-token):
17199 * textmodes/ispell.el (lookup-words):
17200 * textmodes/sgml-mode.el (sgml-guess-indent): Fix typos.
17201
17202 2011-11-14 Glenn Morris <rgm@gnu.org>
17203
17204 * progmodes/executable.el
17205 (executable-make-buffer-file-executable-if-script-p):
17206 Handle file-modes returning nil.
17207
17208 * mail/rmailsum.el (rmail-summary): Remove movement to beginning of
17209 message - not necessary, and causes problems. (Bug#9831)
17210
17211 * mail/rmailsum.el (rmail-new-summary): Preserve message number.
17212
17213 * mail/rmail.el (rmail-no-mail-p): Remove mode-line N/M indicator.
17214
17215 * mail/rmailsum.el (rmail-summary, rmail-new-summary)
17216 (rmail-new-summary-1): Allow empty summaries. (Bug#9964)
17217 (rmail-new-summary): Remember that rmail-summary-buffer is buffer-local.
17218
17219 2011-11-12 Martin Rudalics <rudalics@gmx.at>
17220
17221 * window.el (window-resize, delete-window): Use window-splits
17222 variable instead of function.
17223 (window-state-get-1, window-state-put-2, window-state-put):
17224 Don't deal with windows' splits status.
17225
17226 2011-11-12 Glenn Morris <rgm@gnu.org>
17227
17228 * apropos.el (apropos-do-all, apropos-library, apropos-value)
17229 (apropos-documentation): Doc fixes.
17230
17231 2011-11-11 Juanma Barranquero <lekktu@gmail.com>
17232
17233 * progmodes/idlw-shell.el (idlwave-shell-make-new-bp-overlay):
17234 * textmodes/sgml-mode.el (html-tag-help): Fix typos.
17235
17236 2011-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
17237
17238 * electric.el (electric-indent-post-self-insert-function): Make it
17239 possible for a char to only indent in some circumstances.
17240 (electric-indent-mode): Simplify.
17241
17242 2011-11-11 Martin Rudalics <rudalics@gmx.at>
17243
17244 * window.el (windows-with-parameter): Remove unused function.
17245 (windows-at-side): Rename to window-at-side-list.
17246 (window-check, window-atom-check, window-atom-check-1)
17247 (window-side-check, window-size-ignore, window-size-fixed-1)
17248 (window-in-direction-2): Prefix with "window--".
17249 (window-tree-1): Rename to window--subtree, fix doc-string.
17250
17251 2011-11-11 Glenn Morris <rgm@gnu.org>
17252
17253 * subr.el (eval-after-load): If FILE is already loaded,
17254 evaluate FORM before it gets wrapped in more stuff. (Bug#10009)
17255
17256 2011-11-10 Glenn Morris <rgm@gnu.org>
17257
17258 * vc/vc-svn.el (vc-svn-create-repo, vc-svn-modify-change-comment):
17259 Call svn via vc-svn-command rather than vc-do-command.
17260 (vc-svn-command): Add --non-interactive. (Bug#9993)
17261 (vc-svn-update, vc-svn-merge-news): No need for --non-interactive.
17262
17263 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
17264 Add toggle-read-only. (Bug#7292)
17265 * files.el (toggle-read-only): Mention that it should only
17266 be used interactively. (Bug#10006)
17267
17268 2011-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
17269
17270 * progmodes/compile.el (compilation-error-regexp-alist-alist):
17271 Adjust regexp for OCaml warnings.
17272
17273 * electric.el (electric-pair-post-self-insert-function): Let user
17274 turn it off buffer-locally (bug#9932).
17275
17276 * progmodes/python.el (python-beginning-of-statement):
17277 Rewrite (bug#2703).
17278
17279 * progmodes/compile.el: Better handle TABs (bug#9749).
17280 (compilation-internal-error-properties)
17281 (compilation-next-error-function): Obey the target buffer's
17282 compilation-error-screen-columns.
17283
17284 2011-11-09 Juanma Barranquero <lekktu@gmail.com>
17285
17286 * progmodes/meta-mode.el: Remove obsolete comments.
17287 (meta-right-comment-regexp, meta-ignore-comment-regexp):
17288 Fix typos in docstrings.
17289
17290 2011-11-09 Martin Rudalics <rudalics@gmx.at>
17291
17292 * window.el (window-size-fixed-p): Rewrite doc-string.
17293 (window-resizable-p): Rename to window--resizable-p. Update callers.
17294 (window--resizable): New function. Make all callers of
17295 window-resizable call window--resizable instead.
17296 (window-resizable): Rewrite in terms of window--resizable.
17297
17298 2011-11-08 Glenn Morris <rgm@gnu.org>
17299
17300 * progmodes/delphi.el (delphi-mode-syntax-table):
17301 Let define-derived-mode define a proper syntax table. (Bug#9994)
17302
17303 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
17304
17305 * window.el: Stay away from defsubst.
17306 (window-list-no-nils): Remove.
17307 (window-state-get-1, window-state-get): Use backquote instead.
17308
17309 2011-11-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
17310
17311 * emacs-lisp/find-func.el (find-function-read):
17312 Fix incorrect use of default argument in `completing-read'.
17313
17314 2011-11-08 Martin Rudalics <rudalics@gmx.at>
17315
17316 * window.el (display-buffer-function, special-display-function):
17317 Mention display-buffer-record-window but do not mention
17318 help-setup parameter in doc-strings.
17319 (window-min-delta): Fix doc-string typo.
17320
17321 2011-11-08 Chong Yidong <cyd@gnu.org>
17322
17323 * window.el (window-total-height, window-total-width): Doc fix.
17324 (window-body-size): Move from C.
17325 (window-body-height, window-body-width): Move to C.
17326
17327 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
17328
17329 * window.el: Make special-display like display-buffer-alist (bug#9532).
17330 (display-buffer--special-action): New function, morphed
17331 from display-buffer--special.
17332 (display-buffer): Use it to handle special-display-buffers at higher
17333 priority (just after display-buffer-alist).
17334 (display-buffer-fallback-action, display-buffer--other-frame-action)
17335 (pop-to-buffer-same-window): Remove display-buffer--special.
17336
17337 2011-11-07 Glenn Morris <rgm@gnu.org>
17338
17339 * calendar/cal-menu.el (cal-menu-set-date-title):
17340 Do nothing if not in a calendar. (Bug#9976)
17341
17342 2011-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
17343
17344 * files.el (find-file): Always use selected-window.
17345
17346 2011-11-07 Martin Rudalics <rudalics@gmx.at>
17347
17348 * window.el (window-combinations): Make WINDOW argument
17349 mandatory. Rewrite doc-string.
17350 (walk-window-subtree, window-atom-check, window-min-delta)
17351 (window-max-delta, window--resize-this-window)
17352 (window--resize-root-window-vertically, window-tree)
17353 (balance-windows, window-state-put): Rewrite doc-strings as to
17354 not mention the term "subwindow".
17355 (window--resize-subwindows-skip-p): Rename to
17356 window--resize-child-windows-skip-p.
17357 (window--resize-subwindows-normal): Rename to
17358 window--resize-child-windows-normal.
17359 (window--resize-subwindows): Rename to
17360 window--resize-child-windows.
17361 (window-or-subwindow-p): Rename to window--in-subtree-p.
17362
17363 2011-11-07 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
17364
17365 * mail/rmail.el (rmail-get-new-mail, rmail-insert-inbox-text):
17366 Ensure that mbox format messages end in two newlines (Bug#9974).
17367
17368 2011-11-06 Chong Yidong <cyd@gnu.org>
17369
17370 * window.el (window-combination-p): Function deleted; its
17371 side-effect is not used in any existing code.
17372 (window-combinations, window-combined-p): Call window-*-child
17373 directly.
17374
17375 2011-11-05 Chong Yidong <cyd@gnu.org>
17376
17377 * window.el (window-valid-p): Rename from window-any-p.
17378 (window-size-ignore, window-state-get): Callers changed.
17379 (window-normalize-window): Rename from window-normalize-any-window.
17380 New arg LIVE-ONLY, replacing window-normalize-live-window.
17381 (window-normalize-live-window): Delete.
17382 (window-combination-p, window-combined-p, window-combinations)
17383 (walk-window-subtree, window-atom-root, window-min-size)
17384 (window-sizable, window-sizable-p, window-size-fixed-p)
17385 (window-min-delta, window-max-delta, window-resizable)
17386 (window-resizable-p, window-full-height-p, window-full-width-p)
17387 (window-current-scroll-bars, window-point-1, set-window-point-1)
17388 (window-at-side-p, window-in-direction, window-resize)
17389 (adjust-window-trailing-edge, maximize-window, minimize-window)
17390 (window-deletable-p, delete-window, delete-other-windows)
17391 (record-window-buffer, unrecord-window-buffer)
17392 (switch-to-prev-buffer, switch-to-next-buffer, window--delete)
17393 (quit-window, split-window, window-state-put)
17394 (set-window-text-height, fit-window-to-buffer)
17395 (shrink-window-if-larger-than-buffer): Callers changed.
17396
17397 2011-11-04 Eli Zaretskii <eliz@gnu.org>
17398
17399 * mail/rmail.el (rmail-simplified-subject): Decode subject with
17400 rfc2047-decode-string.
17401 (rmail-mime-toggle-hidden): Declare to avoid byte-compilation
17402 warnings.
17403
17404 * window.el (window-body-height, window-body-width): Mention in
17405 the doc string that the return values are in frame's canonical
17406 units. (Bug#9949)
17407
17408 2011-11-03 Alan Mackenzie <acm@muc.de>
17409
17410 * progmodes/cc-langs.el (c-nonlabel-token-2-key): New variable for
17411 change in cc-engine.el.
17412
17413 2011-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
17414
17415 * window.el (switch-to-buffer): Use `force-same-window' interactively.
17416
17417 2011-11-02 Martin Rudalics <rudalics@gmx.at>
17418
17419 * window.el (quit-window): Call unrecord-window-buffer after
17420 showing another buffer in the window. (Bug#9937)
17421 (bury-buffer): Call switch-to-prev-buffer with second argument `bury'.
17422
17423 2011-11-02 Juanma Barranquero <lekktu@gmail.com>
17424
17425 * vc/vc-bzr.el (vc-bzr-state, vc-bzr-after-dir-status):
17426 Accept status with more than 9 shelves. (Bug#9935)
17427 Reported by Colin D Bennett <colin@gibibit.com>.
17428
17429 2011-11-01 Martin Rudalics <rudalics@gmx.at>
17430
17431 * help.el (with-help-window): Don't reference
17432 temp-buffer-show-specifiers in doc-string.
17433
17434 2011-10-31 Andreas Schwab <schwab@linux-m68k.org>
17435
17436 * subr.el (keymap--menu-item-with-binding): Ignore item if not a
17437 menu-item.
17438
17439 2011-10-30 Vinicius Jose Latorre <viniciusjl@ig.com.br>
17440
17441 * whitespace.el: New version 13.2.2.
17442 (whitespace-newline-mode): Disable properly. Reported by Sarah
17443 <EmacsWiki>.
17444
17445 2011-10-30 Ulf Jasper <ulf.jasper@web.de>
17446
17447 * net/newst-treeview.el: Remove "Time-stamp".
17448 (newsticker--group-manage-orphan-feeds): Do not call
17449 newsticker--treeview-tree-update.
17450 (newsticker-treeview-update, newsticker-treeview):
17451 Call newsticker--treeview-tree-update if necessary.
17452
17453 2011-10-30 Martin Rudalics <rudalics@gmx.at>
17454
17455 * window.el (window-iso-combination-p, window-iso-combined-p)
17456 (window-iso-combinations): Remove "iso-" infix.
17457 Suggested by Chong Yidong.
17458 (window-min-size-1, window-size-fixed-1, window-min-delta-1)
17459 (window-max-delta-1, window-resize, window--resize-siblings)
17460 (window--resize-this-window, adjust-window-trailing-edge)
17461 (split-window, balance-windows-1)
17462 (shrink-window-if-larger-than-buffer):
17463 * calendar/calendar.el (calendar-generate-window):
17464 * help.el (resize-temp-buffer-window): Adjust callers accordingly.
17465
17466 2011-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
17467
17468 * eshell/esh-cmd.el (eshell-rewrite-for-command): Don't modify the list
17469 in place (bug#9907).
17470 (eshell-subcommand-arg-values, eshell-rewrite-named-command)
17471 (eshell-rewrite-if-command, eshell-rewrite-for-command)
17472 (eshell-structure-basic-command, eshell-rewrite-while-command)
17473 (eshell-invokify-arg, eshell-parse-pipeline, eshell-parse-command)
17474 (eshell-parse-subcommand-argument, eshell-parse-lisp-argument)
17475 (eshell-trap-errors, eshell-do-pipelines, eshell-do-eval)
17476 (eshell-do-pipelines-synchronously, eshell-eval-command):
17477 Use backquotes and prefer setq to set.
17478 (eshell-lookup-function, function-p-func, eshell-functionp): Remove.
17479 (eshell-macrop): Use functionp.
17480 (eshell-do-eval): Handle multiple expressions in `while' body.
17481
17482 2011-10-30 Chong Yidong <cyd@gnu.org>
17483
17484 * emulation/viper-cmd.el (viper-exec-change): Use push-mark
17485 instead of set-mark (Bug#9810).
17486
17487 2011-10-30 Chong Yidong <cyd@gnu.org>
17488
17489 * window.el (split-window-below, split-window-right): Rename from
17490 split-window-above-each-other and split-window-side-by-side
17491 respectively. All callers changed.
17492 (split-window-sensibly, split-window-sensibly): Use them.
17493 (split-window-keep-point): Doc fix.
17494
17495 * isearch.el: Add isearch-scroll property to split-window-below
17496 and split-window-right.
17497
17498 * follow.el (follow-mode):
17499 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
17500 * progmodes/ada-xref.el (ada-gdb-application):
17501 * emulation/vip.el (vip-buffer-in-two-windows):
17502 * image-dired.el (image-dired-dired-with-window-configuration):
17503 * dired-x.el (dired-do-find-marked-files):
17504 * dired.el (dired-pop-to-buffer):
17505 * bs.el (bs--show-with-configuration):
17506 * vc/emerge.el (emerge-setup-windows):
17507 * textmodes/two-column.el (2C-two-columns):
17508 * textmodes/reftex-toc.el (reftex-toc):
17509 * progmodes/gdb-mi.el (gdb-setup-windows):
17510 * progmodes/fortran.el (fortran-window-create):
17511 * net/newst-treeview.el (newsticker--treeview-window-init):
17512 * emulation/ws-mode.el (wordstar-C-o-map, wordstar-mode):
17513 * emulation/tpu-edt.el (tpu-gold-map):
17514 * emulation/crisp.el (crisp-mode-map):
17515 * calendar/calendar.el (calendar-basic-setup): Callers changed.
17516
17517 2011-10-29 Chong Yidong <cyd@gnu.org>
17518
17519 * subr.el (y-or-n-p): Add code for batch mode (Bug#9818).
17520
17521 * mouse.el (mouse-yank-primary): Push the mark (Bug#9894).
17522
17523 * textmodes/flyspell.el (flyspell-word): Fix char offset for
17524 forged Ispell output (Bug#7904).
17525
17526 * emacs-lisp/package.el (package-refresh-contents): Add autoload.
17527
17528 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
17529
17530 * doc-view.el: Avoid ugly errors about not finding nil.
17531 (doc-view-ghostscript-program, doc-view-dvipdfm-program)
17532 (doc-view-dvipdf-program, doc-view-unoconv-program)
17533 (doc-view-ps2pdf-program, doc-view-pdftotext-program):
17534 Avoid nil or absolute file name as default value.
17535 (doc-view-pdf->txt, doc-view-ps->pdf): Use executable-find here.
17536
17537 2011-10-28 Alan Mackenzie <acm@muc.de>
17538
17539 * progmodes/cc-defs.el (c-version): -> 5.32.2.
17540
17541 2011-10-28 Alan Mackenzie <acm@muc.de>
17542
17543 Amend the handling of c-beginning/end-of-defun in nested declaration
17544 scopes.
17545
17546 * progmodes/cc-vars.el (c-defun-tactic): Move here from
17547 cc-langs.el. Change it to a defcustom.
17548
17549 * progmodes/cc-langs.el (c-defun-tactic): Move this variable to
17550 cc-vars.el.
17551
17552 * progmodes/cc-engine.el (c-beginning-of-statement-1):
17553 Prevent "class foo : bar" being spuriously recognized as a label.
17554
17555 * progmodes/cc-cmds.el (c-narrow-to-most-enclosing-decl-block):
17556 Add parameter `inclusive' (to include enclosing braces in the region).
17557 (c-widen-to-enclosing-decl-scope): New function.
17558 (c-while-widening-to-decl-block): New macro.
17559 (c-beginning-of-defun, c-end-of-defun): Change algorithm to keep going
17560 outward for defun boundaries, and correspondingly change symbol
17561 `respect-enclosure' to `go-outward'.
17562 (c-declaration-limits): Change algorithm to report only the "innermost"
17563 defun's boundaries.
17564
17565 2011-10-28 Deniz Dogan <deniz@dogan.se>
17566
17567 * net/rcirc.el (rcirc-mode): Use hard newlines.
17568
17569 2011-10-28 Alan Mackenzie <acm@muc.de>
17570
17571 Amend to indent and fontify macros "which include their own semicolon"
17572 correctly, using the "virtual semicolon" mechanism.
17573
17574 * progmodes/cc-defs.el: Update "virtual semicolon" comments.
17575
17576 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
17577 Recode to scan one line at a time rather than having \n and \r
17578 explicitly in c-stmt-delim-chars (for some modes, e.g. AWK).
17579 (c-forward-label): Amend for virtual semicolons.
17580 (c-at-macro-vsemi-p, c-macro-vsemi-status-unknown-p): New functions.
17581
17582 * progmodes/cc-fonts.el (c-font-lock-declarations): Take account
17583 of the new C macros.
17584
17585 * progmodes/cc-langs.el (c-at-vsemi-p-fn):
17586 (c-vsemi-status-unknown-p-fn): Move to earlier in the file.
17587 (c-opt-cpp-symbol, c-line-comment-start-regexp): New language vars.
17588 (c-opt-cpp-macro-define): Make into a full language variable.
17589 (c-stmt-delim-chars, c-stmt-delim-chars-with-comma): Special value for
17590 AWK Mode (including \n, \r) removed, no longer needed.
17591
17592 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode):
17593 Invoke c-make-macro-with-semi-re.
17594
17595 * progmodes/cc-vars.el (c-macro-with-semi-re):
17596 (c-macro-names-with-semicolon): New variables.
17597 (c-make-macro-with-semi-re): New function.
17598
17599 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
17600
17601 * vc/log-edit.el: Fill empty field rather than adding new one.
17602 (log-edit-add-field): New function.
17603 (log-edit-insert-changelog): Use it.
17604
17605 2011-10-28 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
17606
17607 * mail/rmail.el (rmail-mode-map): Add M-C-f as in rmailsum (bug#9802).
17608
17609 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
17610
17611 * progmodes/gdb-mi.el: Warn the user when -i=mi is missing.
17612 (gdb--check-interpreter): New function.
17613 (gdb): Use it.
17614
17615 2011-10-27 Glenn Morris <rgm@gnu.org>
17616
17617 * emacs-lisp/cl-extra.el (most-positive-float, most-negative-float)
17618 (least-positive-float, least-negative-float)
17619 (least-positive-normalized-float, least-negative-normalized-float)
17620 (float-epsilon, float-negative-epsilon):
17621 Remove unnecessary declarations.
17622
17623 * emacs-lisp/cl-extra.el (cl-float-limits): Add doc string.
17624 * emacs-lisp/cl.el (most-positive-float, most-negative-float)
17625 (least-positive-float, least-negative-float)
17626 (least-positive-normalized-float, least-negative-normalized-float)
17627 (float-epsilon, float-negative-epsilon): Add doc-strings,
17628 based on those in cl.texi.
17629
17630 * files.el (set-visited-file-name): If the major-mode changed,
17631 reload the local variables. (Bug#9796)
17632
17633 2011-10-27 Chong Yidong <cyd@gnu.org>
17634
17635 * subr.el (change-major-mode-after-body-hook): New hook.
17636 (run-mode-hooks): Run it.
17637
17638 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
17639 Use change-major-mode-before-body-hook.
17640
17641 * simple.el (fundamental-mode):
17642 * emacs-lisp/derived.el (define-derived-mode): Revert 2010-04-28
17643 change introducing fundamental-mode-hook.
17644
17645 2011-10-26 Juanma Barranquero <lekktu@gmail.com>
17646
17647 * term/w32-win.el (w32-default-color-map): Declare obsolete (Bug#9785).
17648
17649 2011-10-26 Michael Albinus <michael.albinus@gmx.de>
17650
17651 * ido.el (ido-file-name-all-completions-1): Do not require
17652 tramp.el explicitly. (Bug#7583)
17653
17654 2011-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
17655
17656 * progmodes/octave-mod.el:
17657 * progmodes/octave-inf.el: Update maintainer.
17658
17659 2011-10-26 Chong Yidong <cyd@gnu.org>
17660
17661 * subr.el (with-wrapper-hook): Rewrite doc.
17662
17663 2011-10-25 Michael Albinus <michael.albinus@gmx.de>
17664
17665 * net/tramp-sh.el (tramp-sh-handle-file-directory-p): Return t for
17666 filenames "/method:foo:". (Bug#9793)
17667
17668 2011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
17669
17670 * comint.el (comint-get-old-input-default): Fix use-prompt-regexp case
17671 (bug#9865).
17672
17673 2011-10-24 Glenn Morris <rgm@gnu.org>
17674
17675 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix. (Bug#9819)
17676
17677 2011-10-24 Michael Albinus <michael.albinus@gmx.de>
17678
17679 * notifications.el: Add the requirement of a running D-Bus session
17680 bus to the Commentary.
17681
17682 2011-10-24 Juri Linkov <juri@jurta.org>
17683
17684 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
17685 `search-whitespace-regexp' only when `isearch-regexp' is non-nil.
17686 (Bug#9364)
17687
17688 2011-10-24 Juri Linkov <juri@jurta.org>
17689
17690 * info.el (Info-following-node-name-re): Add newline to the list
17691 of allowed characters for leading space. (Bug#9824)
17692
17693 2011-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
17694
17695 * progmodes/octave-inf.el (inferior-octave-mode-map):
17696 Fix C-c C-h binding.
17697 * progmodes/octave-mod.el (octave-help): Remove.
17698
17699 2011-10-23 Michael Albinus <michael.albinus@gmx.de>
17700
17701 Sync with Tramp 2.2.3.
17702
17703 * net/tramp-cache.el (top): Pacify byte-compiler using
17704 `init-file-user' and `site-run-file'.
17705
17706 * net/trampver.el: Update release number.
17707
17708 2011-10-23 Chong Yidong <cyd@gnu.org>
17709
17710 * files.el (toggle-read-only): Remove obsolete comment about
17711 version control.
17712
17713 * vc/vc-hooks.el (vc-toggle-read-only): Make it an obsolete alias
17714 for toggle-read-only. Note that this hasn't called vc-next-action
17715 since 2008-05-02, though it wasn't documented at the time.
17716
17717 * vc/ediff-init.el (ediff-toggle-read-only-function):
17718 Use toggle-read-only.
17719
17720 2011-10-22 Alan Mackenzie <bug-cc-mode@gnu.org>
17721
17722 Fix bug #9560, sporadic wrong indentation; improve instrumentation
17723 of c-parse-state.
17724
17725 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
17726 correct faulty logical expression.
17727 (c-parse-state-state, c-record-parse-state-state):
17728 (c-replay-parse-state-state): New defvar/defuns.
17729 (c-debug-parse-state): Use new functions.
17730
17731 2011-10-22 Martin Rudalics <rudalics@gmx.at>
17732
17733 * mouse.el (mouse-drag-line): Fix minibuffer resizing broken by
17734 last fix. Use window-in-direction correctly.
17735
17736 2011-10-21 Chong Yidong <cyd@gnu.org>
17737
17738 * progmodes/idlwave.el (idlwave-mode):
17739 * progmodes/vera-mode.el (vera-mode): No need to set
17740 require-final-newline; that's done in prog-mode.
17741 Suggested by Stefan Monnier.
17742
17743 2011-10-21 Martin Rudalics <rudalics@gmx.at>
17744
17745 * mouse.el (mouse-drag-window-above)
17746 (mouse-drag-move-window-bottom, mouse-drag-move-window-top)
17747 (mouse-drag-mode-line-1, mouse-drag-header-line)
17748 (mouse-drag-vertical-line-rightward-window): Remove.
17749 (mouse-drag-line): New function.
17750 (mouse-drag-mode-line, mouse-drag-header-line)
17751 (mouse-drag-vertical-line): Call mouse-drag-line.
17752 * window.el (window-at-side-p, windows-at-side): New functions.
17753
17754 2011-10-21 Ulrich Mueller <ulm@gentoo.org>
17755
17756 * tar-mode.el (tar-grind-file-mode):
17757 Fix handling of setuid/setgid, handle sticky bit. (Bug#9817)
17758
17759 2011-10-21 Chong Yidong <cyd@gnu.org>
17760
17761 * progmodes/idlwave.el (idlwave-mode):
17762 * progmodes/vera-mode.el (vera-mode):
17763 Use mode-require-final-newline.
17764
17765 2011-10-20 Glenn Morris <rgm@gnu.org>
17766
17767 * vc/vc.el (vc-next-action): Handle removed directories. (Bug#9781)
17768
17769 2011-10-20 Christoph Scholtes <cschol2112@googlemail.com>
17770
17771 * emulation/cua-base.el (cua-set-mark): Fix case of string.
17772
17773 2011-10-20 Chong Yidong <cyd@gnu.org>
17774
17775 * emulation/cua-base.el (cua-mode):
17776 * mail/footnote.el (footnote-mode):
17777 * mail/mailabbrev.el (mail-abbrevs-mode):
17778 * net/xesam.el (xesam-minor-mode):
17779 * progmodes/bug-reference.el (bug-reference-mode):
17780 * progmodes/cap-words.el (capitalized-words-mode):
17781 * progmodes/compile.el (compilation-minor-mode)
17782 (compilation-shell-minor-mode):
17783 * progmodes/gud.el (gud-tooltip-mode):
17784 * progmodes/hideif.el (hide-ifdef-mode):
17785 * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
17786 * progmodes/subword.el (subword-mode):
17787 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
17788 * progmodes/which-func.el (which-function-mode):
17789 * term/tvi970.el (tvi970-set-keypad-mode):
17790 * term/vt100.el (vt100-wide-mode):
17791 * textmodes/flyspell.el (flyspell-mode):
17792 * textmodes/ispell.el (ispell-minor-mode):
17793 * textmodes/nroff-mode.el (nroff-electric-mode):
17794 * textmodes/paragraphs.el (use-hard-newlines):
17795 * textmodes/refill.el (refill-mode):
17796 * textmodes/reftex.el (reftex-mode):
17797 * textmodes/rst.el (rst-minor-mode):
17798 * textmodes/sgml-mode.el (html-autoview-mode)
17799 (sgml-electric-tag-pair-mode):
17800 * textmodes/tex-mode.el (latex-electric-env-pair-mode):
17801 * vc/diff-mode.el (diff-auto-refine-mode, diff-minor-mode):
17802 * emulation/crisp.el (crisp-mode):
17803 * emacs-lisp/eldoc.el (eldoc-mode):
17804 * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fixes for new
17805 minor mode behavior.
17806
17807 2011-10-19 Juri Linkov <juri@jurta.org>
17808
17809 * descr-text.el (describe-char): Add #x2010 and #x2011 to
17810 the list of hard-coded chars with escape-glyph face.
17811
17812 2011-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
17813
17814 * vc/log-edit.el (log-edit-empty-buffer-p): Ignore empty headers.
17815
17816 2011-10-19 Michael Albinus <michael.albinus@gmx.de>
17817
17818 * net/tramp.el (tramp-connectable-p): Make a stronger check on a
17819 running process.
17820
17821 2011-10-19 Glenn Morris <rgm@gnu.org>
17822
17823 * vc/vc-bzr.el (vc-bzr-after-dir-status):
17824 Ignore ignored files. (Bug#9726)
17825
17826 2011-10-19 Chong Yidong <cyd@gnu.org>
17827
17828 Doc fix for minor modes, stating that an omitted argument enables
17829 the mode unconditionally when called from Lisp.
17830
17831 * abbrev.el (abbrev-mode):
17832 * allout.el (allout-mode):
17833 * autoinsert.el (auto-insert-mode):
17834 * autoarg.el (autoarg-mode, autoarg-kp-mode):
17835 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
17836 (global-auto-revert-mode):
17837 * battery.el (display-battery-mode):
17838 * composite.el (global-auto-composition-mode)
17839 (auto-composition-mode):
17840 * delsel.el (delete-selection-mode):
17841 * desktop.el (desktop-save-mode):
17842 * dired-x.el (dired-omit-mode):
17843 * dirtrack.el (dirtrack-mode):
17844 * doc-view.el (doc-view-minor-mode):
17845 * double.el (double-mode):
17846 * electric.el (electric-indent-mode, electric-pair-mode):
17847 * emacs-lock.el (emacs-lock-mode):
17848 * epa-hook.el (auto-encryption-mode):
17849 * follow.el (follow-mode):
17850 * font-core.el (font-lock-mode):
17851 * frame.el (auto-raise-mode, auto-lower-mode, blink-cursor-mode):
17852 * help.el (temp-buffer-resize-mode):
17853 * hilit-chg.el (highlight-changes-mode)
17854 (highlight-changes-visible-mode):
17855 * hi-lock.el (hi-lock-mode):
17856 * hl-line.el (hl-line-mode, global-hl-line-mode):
17857 * icomplete.el (icomplete-mode):
17858 * ido.el (ido-everywhere):
17859 * image-file.el (auto-image-file-mode):
17860 * image-mode.el (image-minor-mode):
17861 * iswitchb.el (iswitchb-mode):
17862 * jka-cmpr-hook.el (auto-compression-mode):
17863 * linum.el (linum-mode):
17864 * longlines.el (longlines-mode):
17865 * master.el (master-mode):
17866 * mb-depth.el (minibuffer-depth-indicate-mode):
17867 * menu-bar.el (menu-bar-mode):
17868 * minibuf-eldef.el (minibuffer-electric-default-mode):
17869 * mouse-sel.el (mouse-sel-mode):
17870 * msb.el (msb-mode):
17871 * mwheel.el (mouse-wheel-mode):
17872 * outline.el (outline-minor-mode):
17873 * paren.el (show-paren-mode):
17874 * recentf.el (recentf-mode):
17875 * reveal.el (reveal-mode, global-reveal-mode):
17876 * rfn-eshadow.el (file-name-shadow-mode):
17877 * ruler-mode.el (ruler-mode):
17878 * savehist.el (savehist-mode):
17879 * scroll-all.el (scroll-all-mode):
17880 * scroll-bar.el (scroll-bar-mode):
17881 * server.el (server-mode):
17882 * shell.el (shell-dirtrack-mode):
17883 * simple.el (auto-fill-mode, transient-mark-mode)
17884 (visual-line-mode, overwrite-mode, binary-overwrite-mode)
17885 (line-number-mode, column-number-mode, size-indication-mode)
17886 (auto-save-mode, normal-erase-is-backspace-mode, visible-mode):
17887 * strokes.el (strokes-mode):
17888 * time.el (display-time-mode):
17889 * t-mouse.el (gpm-mouse-mode):
17890 * tool-bar.el (tool-bar-mode):
17891 * tooltip.el (tooltip-mode):
17892 * type-break.el (type-break-mode-line-message-mode)
17893 (type-break-query-mode):
17894 * view.el (view-mode):
17895 * whitespace.el (whitespace-mode, whitespace-newline-mode)
17896 (global-whitespace-mode, global-whitespace-newline-mode):
17897 * xt-mouse.el (xterm-mouse-mode): Doc fix.
17898
17899 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
17900 Fix autogenerated docstring.
17901
17902 2011-10-19 Juri Linkov <juri@jurta.org>
17903
17904 * net/browse-url.el (browse-url-can-use-xdg-open): Support LXDE
17905 by checking environment variables "DESKTOP_SESSION" and
17906 "XDG_CURRENT_DESKTOP". (Bug#9779)
17907
17908 2011-10-19 Juri Linkov <juri@jurta.org>
17909
17910 * net/browse-url.el (browse-url-browser-function): Add "Chromium".
17911 (browse-url-chromium-program, browse-url-chromium-arguments):
17912 New defcustoms.
17913 (browse-url-default-browser): Check for `browse-url-chromium' and
17914 call `browse-url-chromium-program'.
17915 (browse-url-chromium): New command. (Bug#9779)
17916
17917 2011-10-18 Juanma Barranquero <lekktu@gmail.com>
17918
17919 * facemenu.el (list-colors-duplicates): On Windows, detect more
17920 duplicates by assuming that only colors matching "^System" are
17921 special "system colors". (Bug#9722)
17922
17923 2011-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
17924
17925 * vc/log-edit.el (log-edit): Add "Author:" header to encourage people
17926 to distinguish the author from the committer.
17927
17928 2011-10-18 Michael Albinus <michael.albinus@gmx.de>
17929
17930 * net/tramp.el (tramp-file-name-handler): Load Tramp packages silently.
17931
17932 2011-10-18 Jirka Kosek <jirka@kosek.cz> (tiny change)
17933
17934 * international/mule.el (sgml-html-meta-auto-coding-function):
17935 Add support for detecting encoding in HTML5 specified only as
17936 <meta charset="UTF-8">. Implementation just makes http-equiv and
17937 content-type parts from HTML4 encoding string optional. (Bug#9716)
17938
17939 2011-10-18 Glenn Morris <rgm@gnu.org>
17940
17941 * vc/vc.el (vc-initial-comment): Mark as obsolete. (Bug#9745)
17942
17943 2011-10-18 Chong Yidong <cyd@gnu.org>
17944
17945 * faces.el (cursor): Doc fix.
17946
17947 2011-10-17 Chong Yidong <cyd@gnu.org>
17948
17949 * font-lock.el (font-lock-maximum-size): Mark as obsolete.
17950
17951 2011-10-17 Ryan Barrett <emacs@ryanb.org> (tiny change)
17952
17953 * dirtrack.el (dirtrack): Support shell buffers with path
17954 prefixes, e.g. tramp-based remote shells. (Bug#9647)
17955
17956 2011-10-17 Teodor Zlatanov <tzz@lifelogs.com>
17957
17958 * json.el: Bump version to 1.3 and note change in History.
17959 (json-alist-p, json-plist-p): Rewrite to avoid recursion.
17960
17961 2011-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
17962
17963 * comint.el (comint-insert-input, comint-send-input)
17964 (comint-get-old-input-default, comint-backward-matching-input)
17965 (comint-next-prompt): Use nil instead of `input' for field property of
17966 past user input (bug#114).
17967
17968 * minibuffer.el (completion--replace): Inherit surrounding properties
17969 (bug#114).
17970 (minibuffer-complete-and-exit): Use it.
17971
17972 * comint.el (comint--table-subvert): Quote the all-completions output
17973 (bug#9160).
17974
17975 2011-10-17 Martin Rudalics <rudalics@gmx.at>
17976
17977 * ido.el (ido-default-buffer-method): Remove redundant :type entry.
17978
17979 * menu-bar.el (menu-bar-file-menu): Add entry for making new
17980 window on right of selected. (Bug#9350) Reword other window
17981 entries and separate them from frame entries.
17982
17983 2011-10-15 Glenn Morris <rgm@gnu.org>
17984
17985 * emacs-lisp/ert.el (ert--explain-equal-rec, ert-select-tests):
17986 Doc fixes.
17987
17988 2011-10-15 Chong Yidong <cyd@stupidchicken.com>
17989
17990 * net/network-stream.el (network-stream-open-starttls):
17991 Improve detection of failure due to lack of TLS support.
17992
17993 * mail/sendmail.el (sendmail-query-once): Tweak prompt message,
17994 putting the input text in front and in bold.
17995
17996 2011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
17997
17998 * pcmpl-unix.el (pcomplete/ssh): SSH does allow ganging.
17999
18000 * mpc.el (mpc-songs-jump-to): Don't burp if the user clicks in an
18001 empty buffer.
18002
18003 * mouse.el (mouse-drag-mode-line-1): Modify the end-event we pushed on
18004 unread-command-events rather than pushing yet-another event.
18005
18006 2011-10-14 Eli Zaretskii <eliz@gnu.org>
18007
18008 * mail/sendmail.el (sendmail-query-once): Improve the wording of
18009 the explanation of the possible choices. Make the options passed
18010 to completing-read shorter.
18011
18012 2011-10-13 Agustín Martín Domingo <agustin.martin@hispalinux.es>
18013
18014 * textmodes/flyspell.el (flyspell-large-region): Make sure
18015 extended character mode is used if defined (Bug#1339).
18016
18017 2011-10-13 Eli Zaretskii <eliz@gnu.org>
18018
18019 * simple.el (what-cursor-position): Fix the display of the
18020 character info for LRE, LRO, RLE, and RLO characters by appending
18021 an invisible PDF.
18022
18023 2011-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
18024
18025 * emacs-lisp/timer.el (with-timeout): Make sure we cancel the timer
18026 even in case of error; add debug spec; simplify data flow.
18027 (with-timeout-handler): Remove.
18028
18029 2011-10-12 Michael Albinus <michael.albinus@gmx.de>
18030
18031 Fix Bug#6019, Bug#9315.
18032
18033 * files.el (set-auto-mode): Call `file-name-sans-versions' for the
18034 complete `buffer-file-name', the local file name part could look
18035 remotely (for example on VMS).
18036
18037 * net/ange-ftp.el (ange-ftp-run-real-handler): Make it an alias of
18038 `tramp-run-real-handler'.
18039 (ange-ftp-fix-name-for-vms): Handle the case, where `name' is
18040 already quoted by '"'.
18041
18042 * net/tramp.el (tramp-rfn-eshadow-update-overlay): Ignore errors.
18043 Let `file-name-handler-alist' be nil, the local file name part
18044 could look remotely (for example on VMS).
18045
18046 2011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
18047
18048 * textmodes/flyspell.el (flyspell-word): Move with-local-quit
18049 from here...
18050 (flyspell-post-command-hook): ...to here.
18051
18052 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
18053
18054 * mail/sendmail.el (send-mail-function): Don't use sendmail-query-once
18055 if not needed.
18056 (sendmail-query-once): Remove OS dependencies. Make it a 3-way choice
18057 using completion. Protect against "slow" callers.
18058 Remove the "message hack".
18059
18060 2011-10-11 Juri Linkov <juri@jurta.org>
18061
18062 * isearch.el (isearch-lazy-highlight-word): New variable.
18063 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
18064 Use it. (Bug#9727)
18065
18066 2011-10-11 Glenn Morris <rgm@gnu.org>
18067
18068 * progmodes/f90.el (f90-next-statement): Ignore preprocessor lines,
18069 like f90-previous-statement does.
18070
18071 2011-10-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
18072
18073 * eshell/eshell.el (eshell-command): History should be saved
18074 only in interactive use, to avoid error.
18075
18076 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
18077
18078 * minibuffer.el (completion-file-name-table): Fix last change,
18079 i.e. ignore normal errors but not the other ones.
18080
18081 2011-10-10 Martin Rudalics <rudalics@gmx.at>
18082
18083 * window.el (special-display-buffer-names)
18084 (special-display-regexps): Remove some remnants of earlier
18085 changes from doc-strings.
18086 (quit-windows-on): New function.
18087
18088 * vc/vc.el (vc-revert, vc-rollback):
18089 * vc/vc-dispatcher.el (vc-finish-logentry): Call quit-windows-on
18090 instead of deleting windows. (Bug#4557) (Bug#5310) (Bug#5556)
18091 (Bug#6183) (Bug#7074) (Bug#7447)
18092
18093 2011-10-09 Martin Rudalics <rudalics@gmx.at>
18094
18095 * window.el (frame-auto-hide-function): Add version tag.
18096 (Bug#9699)
18097
18098 2011-10-09 Michael Albinus <michael.albinus@gmx.de>
18099
18100 * net/tramp.el (tramp-file-name-handler): Add 'debug to the error
18101 condition.
18102
18103 2011-10-09 Leo Liu <sdl.web@gmail.com>
18104
18105 * mail/smtpmail.el (smtpmail-send-data): Add a missing space.
18106 (Bug#9701)
18107
18108 2011-10-08 Glenn Morris <rgm@gnu.org>
18109
18110 * progmodes/f90.el (f90-calculate-indent): Give preprocessor lines
18111 before the first code statement zero indent. (Bug#9690)
18112
18113 2011-10-08 Chong Yidong <cyd@stupidchicken.com>
18114
18115 * simple.el (count-words-region): Always count in the region.
18116 Report the number of lines and characters too.
18117 (count-words): New command, which counts in the buffer if the
18118 region is inactive, as count-words-region used to.
18119 (count-words--message): New function. Handle plurals.
18120 (count-lines-region): Make it an alias for count-words-region.
18121
18122 * bindings.el (esc-map): Replace count-lines-region with
18123 count-words-region.
18124
18125 2011-10-08 Martin Rudalics <rudalics@gmx.at>
18126
18127 * window.el (window--delete): Delete dedicated frame
18128 unconditionally when argument KILL is non-nil. (Bug#9699)
18129 (switch-to-buffer): Fix doc-string typo.
18130
18131 2011-10-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
18132
18133 * eshell/eshell.el (eshell-command): Avoid using hooks.
18134
18135 2011-10-07 Chong Yidong <cyd@stupidchicken.com>
18136
18137 * bindings.el ([M-left],[M-right]): Bind to left-word and
18138 right-word respectively.
18139
18140 2011-10-07 Glenn Morris <rgm@gnu.org>
18141
18142 * cus-start.el (debug-on-quit): Fix custom type.
18143
18144 2011-10-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
18145
18146 * subr.el (define-key-after): Clarify that the function is not
18147 useful for non-menu keymaps.
18148
18149 * progmodes/gdb-mi.el (gdb): Fix typo in doc string.
18150
18151 2011-10-06 Thierry Volpiatto <thierry.volpiatto@gmail.com>
18152
18153 * eshell/eshell.el (eshell-command): Enable `eshell-mode' only
18154 in current minibuffer (Fix bug with recursive minibuffers).
18155
18156 2011-10-06 Chong Yidong <cyd@stupidchicken.com>
18157
18158 * progmodes/gdb-mi.el (gdb): Doc fix.
18159
18160 2011-10-05 Martin Rudalics <rudalics@gmx.at>
18161
18162 * window.el (frame-auto-hide-function): New option replacing
18163 frame-auto-delete. Suggested by Stefan Monnier.
18164 (window--delete): Call frame-auto-hide-function instead of
18165 investigating frame-auto-delete.
18166 (window-point-1, set-window-point-1): New functions.
18167 (window-in-direction, record-window-buffer, window-state-get-1)
18168 (display-buffer-record-window): Use window-point-1 instead of
18169 window-point.
18170 (set-window-buffer-start-and-point): Use set-window-point-1.
18171
18172 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
18173
18174 * emacs-lisp/edebug.el: Heed checkdoc recommendations.
18175
18176 2011-10-05 Glenn Morris <rgm@gnu.org>
18177
18178 * progmodes/perl-mode.el (perl-electric-terminator): Doc fix.
18179 (perl-calculate-indent): Suppress scan errors. (Bug#2205)
18180
18181 2011-10-05 Leo Liu <sdl.web@gmail.com>
18182
18183 * subr.el (read-char-choice): Fix argument to buffer-live-p which
18184 works with buffer object.
18185
18186 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
18187
18188 * mpc.el (mpc-tool-bar-map): Add labels.
18189
18190 2011-10-04 Glenn Morris <rgm@gnu.org>
18191
18192 * calendar/holidays.el (calendar-check-holidays): Doc fix.
18193
18194 2011-10-04 Martin Rudalics <rudalics@gmx.at>
18195
18196 * window.el (window--delete): New function.
18197 (frame-auto-delete): Resuscitate option.
18198 (bury-buffer, replace-buffer-in-windows)
18199 (quit-window): Rewrite using window--delete.
18200 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
18201 Pass display-buffer-mark-dedicated to window--display-buffer-2
18202 (Bug#9639).
18203
18204 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
18205
18206 * pcmpl-unix.el (pcomplete/scp): Don't assume pcomplete-all-entries
18207 returns a list (bug#9554). Add remote file name completion.
18208 * comint.el (comint--table-subvert): Curry and get quote&unquote
18209 functions as arguments.
18210 (comint--complete-file-name-data): Adjust call accordingly.
18211 * pcomplete.el (pcomplete--table-subvert): Remove.
18212 (pcomplete-completions-at-point): Use comint--table-subvert instead.
18213
18214 * minibuffer.el (completion-table-case-fold): Use currying.
18215 (completion--styles-type, completion--cycling-threshold-type):
18216 New constants.
18217 (completion-styles, completion-category-overrides)
18218 (completion-cycle-threshold): Use them.
18219 * pcomplete.el (pcomplete-completions-at-point): Adjust call to
18220 completion-table-case-fold.
18221
18222 2011-10-03 Stephen Berman <stephen.berman@gmx.net>
18223
18224 * minibuffer.el (completion-category-overrides): Fix type of styles
18225 and add more user friendly tags (bug#9660).
18226
18227 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
18228
18229 * international/mule-cmds.el: Fix abuses of apply-partially (bug#9661).
18230 (mule-input-method-string): New widget.
18231 (default-input-method, language-info-custom-alist): Use it.
18232
18233 2011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
18234
18235 * pcomplete.el: Require comint.
18236 (pcomplete--common-suffix): Remove.
18237 (pcomplete--common-quoted-suffix): Use comint--common-suffix instead.
18238 (pcomplete--table-subvert): Sync with comint--table-subvert.
18239 (pcomplete--entries): Use comint-completion-file-name-table.
18240 * comint.el (comint-unquote-filename): Simplify.
18241 (comint-completion-file-name-table): New function (bug#9616).
18242 (comint--complete-file-name-data): Use it.
18243
18244 * pcmpl-gnu.el (pcmpl-gnu-with-file-buffer): New macro (bug#9643).
18245 (pcmpl-gnu-tar-buffer): Remove.
18246 (pcmpl-gnu-with-file-buffer): Use it to avoid leaving the tar's buffer
18247 around. Make sure pcomplete-suffix-list is only changed temporarily.
18248 Don't look inside the tar's file if it's too large.
18249
18250 2011-10-01 Chong Yidong <cyd@stupidchicken.com>
18251
18252 * cus-edit.el (custom-mode-map):
18253 * epa.el (epa-key-list-mode-map):
18254 * man.el (Man-mode-map):
18255 * startup.el (splash-screen-keymap):
18256 * simple.el (special-mode-map): Use scroll-up-command and
18257 scroll-down-command.
18258
18259 * progmodes/idlw-help.el (idlwave-help-mode-map):
18260 * progmodes/ebrowse.el (ebrowse-electric-position-mode-map):
18261 * net/newst-plainview.el (newsticker-mode-map):
18262 * emulation/ws-mode.el (wordstar-mode-map):
18263 * emulation/vi.el (vi-com-map):
18264 * calc/calc-graph.el (calc-graph-show-dumb):
18265 * term/sun.el (terminal-init-sun):
18266 * term/ns-win.el (global-map):
18267 * progmodes/grep.el (grep-mode-map):
18268 * progmodes/ebrowse.el (ebrowse-electric-list-mode-map):
18269 * mail/rmail.el (rmail-mode-map):
18270 * progmodes/cpp.el (cpp-edit-mode-map): Likewise.
18271
18272 * custom.el (custom-safe-themes, load-theme): Treat value of t for
18273 custom-safe-themes as special.
18274
18275 2011-10-01 Julien Danjou <julien@danjou.info>
18276
18277 * notifications.el (notifications-notify): Fix docstring.
18278
18279 2011-10-01 Per Starbäck <per@starback.se>
18280
18281 * pcmpl-gnu.el (pcomplete/tar): Fix tar-header-name call. (Bug#9643)
18282
18283 2011-09-30 Martin Rudalics <rudalics@gmx.at>
18284
18285 * startup.el (command-line-1): Fix last fix by inserting
18286 initial-scratch-message into *scratch* before displaying it.
18287 (Bug#9605) and (Bug#9636)
18288
18289 2011-09-29 Eli Zaretskii <eliz@gnu.org>
18290
18291 * simple.el (line-move): If auto-hscroll-mode is disabled and the
18292 window is hscrolled, move by logical lines. (Bug#9607)
18293 (line-move-visual): Update the doc string to the above effect.
18294
18295 2011-09-29 Martin Rudalics <rudalics@gmx.at>
18296
18297 * window.el (display-buffer-record-window): When WINDOW is the
18298 selected window use `point' instead of `window-point'. (Bug#9626)
18299
18300 * startup.el (command-line-1): Use insert-before-markers when
18301 inserting initial-scratch-message. (Bug#9605)
18302
18303 * help.el (help-window): Remove variable.
18304
18305 2011-09-29 Glenn Morris <rgm@gnu.org>
18306
18307 * pcmpl-cvs.el (pcomplete/cvs): Add "status" handler.
18308
18309 2011-09-29 Juanma Barranquero <lekktu@gmail.com>
18310
18311 * descr-text.el (describe-char-categories): Accept category
18312 descriptions more than one line long.
18313
18314 2011-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
18315
18316 * simple.el (delete-trailing-whitespace): Fix last change.
18317
18318 * progmodes/perl-mode.el (perl-syntax-propertize-function):
18319 Don't confuse "y => 3" as the beginning of a `y' operation.
18320
18321 * emacs-lisp/debug.el (debug-convert-byte-code): Don't assume the
18322 object has more than 4 slots (bug#9613).
18323
18324 2011-09-28 Juanma Barranquero <lekktu@gmail.com>
18325
18326 * subr.el (with-output-to-temp-buffer):
18327 * net/quickurl.el (quickurl, quickurl-browse-url):
18328 Fix typos in docstrings.
18329
18330 2011-09-27 Eli Zaretskii <eliz@gnu.org>
18331
18332 * minibuffer.el (completion-styles)
18333 (completion-category-overrides): Cross reference each other in doc
18334 strings.
18335
18336 2011-09-27 Glenn Morris <rgm@gnu.org>
18337
18338 * pcmpl-cvs.el (pcmpl-cvs-entries): Update for Emacs 22.1 changes
18339 to split-string. (Bug#9606)
18340
18341 2011-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
18342
18343 * mail/smtpmail.el (smtpmail-via-smtp): Fix STARTTLS detection
18344 (bug#9615).
18345
18346 2011-09-27 Chong Yidong <cyd@stupidchicken.com>
18347
18348 * emacs-lisp/package.el (list-packages): Fix echo area message.
18349
18350 2011-09-27 Leo Liu <sdl.web@gmail.com>
18351
18352 * ido.el (ido-read-internal): Accept cons cell HIST arg.
18353
18354 2011-09-25 Michael Albinus <michael.albinus@gmx.de>
18355
18356 * net/dbus.el (dbus-unregister-object): Don't release services for
18357 registered signals. (Bug#9581)
18358
18359 2011-09-25 Teodor Zlatanov <tzz@lifelogs.com>
18360
18361 * progmodes/cfengine.el (cfengine-auto-mode): Add convenience
18362 function that picks between cfengine 2 and 3 support
18363 automatically. Update docs accordingly.
18364
18365 2011-09-22 Kenichi Handa <handa@m17n.org>
18366
18367 * language/ind-util.el (indian-tml-base-table): Add TAMIL DIGIT
18368 ZERO.
18369 (indian-itrans-v5-table-for-tamil): New variable.
18370 (indian-tml-itrans-v5-hash): Use the above variable (Bug#9336).
18371
18372 2011-09-22 Ken Manheimer <ken.manheimer@gmail.com>
18373
18374 * allout.el (allout-this-command-hid-stuff): Buffer-local variable
18375 that's true if the current command involved collapsing of text.
18376 It's reset to false at the beginning of the next command.
18377 (allout-post-command-business): Move the cursor to the beginning
18378 of entry if the cursor is hidden and collapsing activity just
18379 happened.
18380
18381 2011-09-24 Chong Yidong <cyd@stupidchicken.com>
18382
18383 * mouse.el (mouse-drag-track): Set scroll-margin to 0 while
18384 tracking (Bug#9541).
18385
18386 2011-09-24 Ulf Jasper <ulf.jasper@web.de>
18387
18388 * net/newst-reader.el (newsticker-html-renderer)
18389 (newsticker-show-news): Automatically load html rendering package
18390 if newsticker-html-renderer is set. Fixes "Warning: defvar ignored
18391 because w3m-fill-column is let-bound" and the error "Symbol's value
18392 as variable is void: w3m-fill-column".
18393
18394 2011-09-24 Michael Albinus <michael.albinus@gmx.de>
18395
18396 * net/dbus.el (dbus-unregister-object): Remove match rule of signals.
18397 Release services only if they are defined. (Bug#9581)
18398
18399 2011-09-23 Richard Stallman <rms@gnu.org>
18400
18401 * textmodes/paragraphs.el (forward-sentence): For backwards case,
18402 distinguish start of paragraph from start of its text.
18403
18404 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs): Autoload.
18405
18406 * mail/rmail.el (rmail-view-buffer-kill-buffer-hook): New function.
18407 (rmail-generate-viewer-buffer): Put that hook on view buffer.
18408 (rmail-mode-kill-buffer-hook): Override that hook, to kill view buffer.
18409
18410 2011-09-23 Andreas Schwab <schwab@linux-m68k.org>
18411
18412 * international/mule-diag.el (mule-diag): Insert a newline after
18413 each fontset description.
18414
18415 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
18416
18417 * simple.el (delete-trailing-whitespace):
18418 Document last change; simplify.
18419
18420 2011-09-23 Peter J. Weisberg <pj@irregularexpressions.net>
18421
18422 * simple.el (delete-trailing-whitespace): Also delete
18423 extra newlines at the end of the buffer.
18424
18425 * textmodes/picture.el: Make motion commands obey shift-select-mode.
18426 (picture-newline): Use forward-line so as to ignore fields.
18427
18428 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
18429
18430 * subr.el (with-wrapper-hook): Fix edebug spec.
18431
18432 2011-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
18433
18434 * simple.el (kill-line): Note effect of `show-trailing-whitespace'
18435 (bug#4538).
18436
18437 2011-09-23 Michael Albinus <michael.albinus@gmx.de>
18438
18439 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
18440 Fix nasty bug using wrong cached values.
18441
18442 2011-09-23 Alan Mackenzie <acm@muc.de>
18443
18444 * progmodes/cc-defs.el (c-version): Increase to 5.31.9.
18445
18446 2011-09-23 Chong Yidong <cyd@stupidchicken.com>
18447
18448 * window.el (pop-to-buffer): Ensure right window is selected if we
18449 chose another frame.
18450
18451 2011-09-22 Eli Zaretskii <eliz@gnu.org>
18452
18453 * simple.el (what-cursor-position): Use get-char-property-change
18454 and next-single-char-property-change, to be able to show display
18455 properties that come from overlays as well as text properties.
18456
18457 2011-09-22 Chong Yidong <cyd@stupidchicken.com>
18458
18459 * window.el (pop-to-buffer-same-window): New (reinstated) fun.
18460
18461 * cmuscheme.el (run-scheme, switch-to-scheme):
18462 * cus-edit.el (customize-group, custom-buffer-create)
18463 (customize-browse):
18464 * info.el (info):
18465 * shell.el (shell):
18466 * mail/sendmail.el (mail):
18467 * progmodes/inf-lisp.el (inferior-lisp): Use it (Bug#9532).
18468
18469 2011-09-22 Richard Stallman <rms@gnu.org>
18470
18471 * textmodes/paragraphs.el (forward-sentence): When setting PAR-BEG,
18472 move back only to line beg, don't move back over blank lines.
18473
18474 2011-09-22 Michael Albinus <michael.albinus@gmx.de>
18475
18476 * files.el (copy-directory): Set directory attributes only in case
18477 they could be retrieved from the source directory. (Bug#9565)
18478
18479 2011-09-22 Dima Kogan <dkogan@secretsauce.net> (tiny change)
18480
18481 * progmodes/hideshow.el (hs-looking-at-block-start-p)
18482 (hs-find-block-beginning, hs-hide-level-recursive):
18483 Ignore strings as well as comments. (Bug#9502)
18484
18485 2011-09-22 Andrew Schein <andrew@andrewschein.com> (tiny change)
18486
18487 * progmodes/sql.el (sql-comint-postgres):
18488 Convert port number to a string. (Bug#9566)
18489
18490 2011-09-22 Martin Rudalics <rudalics@gmx.at>
18491
18492 * window.el (quit-window): Undedicate window when switching to
18493 previous buffer. Reported by Thierry Volpiatto
18494 <thierry.volpiatto@gmail.com>.
18495 (special-display-popup-frame): When popping up a new frame reset
18496 its previous buffers to nil. Simplify code.
18497
18498 2011-09-21 Michael Albinus <michael.albinus@gmx.de>
18499
18500 * net/tramp.el (tramp-handle-shell-command): Set process sentinel
18501 and process filter, as done also in `shell-command'.
18502
18503 2011-09-21 Martin Rudalics <rudalics@gmx.at>
18504
18505 * window.el (set-window-buffer-start-and-point):
18506 Call set-window-start with NOFORCE argument t.
18507 Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
18508 (quit-window): Reword doc-string. Handle new format of
18509 quit-restore parameter. Don't delete window if it has a
18510 previous buffer we can show instead of the present one.
18511 (display-buffer-record-window): Rewrite using a new format for
18512 the quit-restore window parameter
18513 (special-display-popup-frame, display-buffer-same-window)
18514 (display-buffer-reuse-window, display-buffer-pop-up-frame)
18515 (display-buffer-pop-up-window, display-buffer-use-some-window):
18516 Adapt symbol passed to display-buffer-record-window.
18517 * help.el (help-window-setup): Handle new format of quit-restore
18518 parameter.
18519
18520 2011-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
18521
18522 * faces.el (face-list): Fix docstring (bug#9564).
18523
18524 * window.el (display-buffer--action-function-custom-type):
18525 Don't include internal functions in the Custom interface.
18526
18527 2011-09-20 Juri Linkov <juri@jurta.org>
18528
18529 * info.el (Info-history-skip-intermediate-nodes): New defcustom.
18530 (Info-forward-node, Info-backward-node, Info-next-preorder)
18531 (Info-last-preorder): Use it. (Bug#9528)
18532
18533 2011-09-20 Juri Linkov <juri@jurta.org>
18534
18535 * info.el (Info-last-preorder): Visit last menu item only when
18536 `Info-scroll-prefer-subnodes' is non-nil (third test-case of bug#9528).
18537
18538 2011-09-20 Julien Danjou <julien@danjou.info>
18539
18540 * password-cache.el (password-cache-remove): Remove entries even if the
18541 value is nil, so that password with a nil value (negative caching) is
18542 possible to invalidate.
18543
18544 2011-09-20 Lawrence Mitchell <wence@gmx.li>
18545
18546 * progmodes/f90.el (f90-break-line): If breaking inside comment delete
18547 all whitespace around breakpoint. (Bug#9553)
18548 (f90-find-breakpoint): Only break at whitespace inside a comment.
18549
18550 2011-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
18551
18552 * minibuffer.el (completion-file-name-table): Keep track of errors.
18553 (completion-table-with-predicate): Handle the case where pred1 is nil.
18554 * pcomplete.el (pcomplete-completions-at-point): Simplify.
18555
18556 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
18557
18558 * emacs-lisp/debug.el (debugger-args): Give it a docstring.
18559 (debugger-return-value): Signal an error if the debugging context does
18560 not await any return value.
18561
18562 * ps-mule.el (ps-mule-plot-string): Don't inf-loop (bug#5108).
18563 * image-mode.el (image-toggle-display-text)
18564 (image-toggle-display-image): Stay away from evil `intangible'.
18565
18566 2011-09-19 Leo Liu <sdl.web@gmail.com>
18567
18568 * replace.el (occur-revert-arguments): Make it permanent-local.
18569 (occur-mode): Don't call font-lock-defontify.
18570
18571 2011-09-19 Chong Yidong <cyd@stupidchicken.com>
18572
18573 * net/ldap.el (ldap-search-internal): Don't push empty search
18574 result (Bug#9508).
18575
18576 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
18577
18578 * whitespace.el (whitespace-newline-mode): Disable it right (bug#9550).
18579
18580 2011-09-19 Michael Albinus <michael.albinus@gmx.de>
18581
18582 * net/tramp-sh.el (tramp-inline-compress-commands): Add "xz".
18583 Suggested by Liam Stitt <stittl@cuug.ab.ca>.
18584
18585 2011-09-18 Juri Linkov <juri@jurta.org>
18586
18587 * buff-menu.el (Buffer-menu-mode-map):
18588 * dired.el (dired-mode-map):
18589 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map)
18590 (lisp-interaction-mode-map):
18591 * emacs-lisp/package.el (package-menu-mode-map):
18592 * epa.el (epa-key-list-mode-map):
18593 * menu-bar.el (menu-bar-showhide-tool-bar-menu)
18594 (menu-bar-options-menu):
18595 * outline.el (outline-mode-menu-bar-map):
18596 * vc/vc-bzr.el (vc-bzr-shelve-menu-map, vc-bzr-extra-menu-map):
18597 * vc/vc-dir.el (vc-dir-menu-map):
18598 * vc/vc-git.el (vc-git-stash-menu-map, vc-git-extra-menu-map):
18599 Capitalize non-function content words in menu item strings.
18600
18601 * dired.el (dired-mode-map): Add menu item for
18602 `image-dired-dired-toggle-marked-thumbs'.
18603
18604 2011-09-18 Juri Linkov <juri@jurta.org>
18605
18606 * isearch.el (isearch-edit-string): Bind `isearch-new-case-fold'
18607 to `isearch-case-fold-search' and restore its original value
18608 after the `isearch-mode' call.
18609
18610 2011-09-18 Juri Linkov <juri@jurta.org>
18611
18612 * progmodes/grep.el (grep-process-setup): Don't check code for 1
18613 because `zgrep' returns 1 for successful matches (bug#9226).
18614
18615 2011-09-18 Juri Linkov <juri@jurta.org>
18616
18617 * info.el (Info-extract-menu-node-name): Check the second match
18618 for empty string (second test-case of bug#9528).
18619 (Info-last-preorder): Let-bind `Info-history' to nil to not add
18620 intermediate nodes to the history (first test-case of bug#9528).
18621
18622 2011-09-18 Juri Linkov <juri@jurta.org>
18623
18624 * info.el (Info-mode-syntax-table): New variable.
18625 (Info-mode): Set `:syntax-table' to `Info-mode-syntax-table' (bug#3312).
18626
18627 2011-09-18 Juri Linkov <juri@jurta.org>
18628
18629 * info.el (Info-file-supports-index-cookies):
18630 Increment line-beginning-position's arg from 3 to 4 because makeinfo
18631 outputs one more line for long file names (bug#4142).
18632
18633 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
18634
18635 * newcomment.el (comment-normalize-vars): If prompting for
18636 comment-start, set comment-start-skip too (Bug#8424).
18637
18638 2011-09-18 Johan Bockgård <bojohan@gnu.org>
18639
18640 * icomplete.el: Fix previous fix of Bug#5849.
18641 (icomplete-mode): Don't set completion-show-inline-help.
18642 (icomplete-minibuffer-setup): Set completion-show-inline-help
18643 locally during icompletion.
18644
18645 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
18646
18647 * woman.el (woman2-process-escapes): Don't delete unrecognized
18648 escapes (Bug#7843).
18649
18650 * files.el (inhibit-first-line-modes-regexps): Add image files.
18651 (hack-local-variables-prop-line): Return nil for malformed
18652 prop-lines (Bug#9044).
18653
18654 2011-09-18 Michael Albinus <michael.albinus@gmx.de>
18655
18656 * net/tramp.el (top): Don't require 'shell.
18657 (tramp-methods): Fix docstring.
18658 (tramp-get-remote-tmpdir): New defun, moved from tramp-sh.el.
18659 Return complete remote file name. Handle "smb" case.
18660 Use `tramp-tmpdir', if defined for the respective method.
18661 (tramp-make-tramp-temp-file): Adapt call of `tramp-get-remote-tmpdir'.
18662
18663 * net/tramp-compat.el (top): Require 'shell.
18664
18665 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
18666 (tramp-maybe-open-connection): Use `tramp-file-name-real-host' for
18667 `tramp-current-host'.
18668 (tramp-get-remote-tmpdir): Remove.
18669
18670 * net/tramp-smb.el (tramp-methods): Add `tramp-remote-shell' and
18671 `tramp-tmpdir' entries.
18672 (tramp-smb-errors): Add "NT_STATUS_IMAGE_ALREADY_LOADED".
18673 (tramp-smb-handle-file-attributes): Ignore errors.
18674 (tramp-smb-wait-for-output): Check also for process end.
18675
18676 2011-09-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
18677
18678 * mail/smtpmail.el (smtpmail-via-smtp): Ignore errors that arise
18679 when sending QUIT (bug#9312).
18680
18681 2011-09-17 Chong Yidong <cyd@stupidchicken.com>
18682
18683 * replace.el (occur-mode-map): Rebind occur-edit-mode to "e" (Bug#8463).
18684 (occur-edit-mode-map): Bind C-c C-c to occur-cease-edit and C-o to
18685 occur-mode-display-occurrence.
18686 (occur-edit-mode): Add usage message.
18687 (occur-cease-edit): New command.
18688 (occur-after-change-function): Use text properties to find the
18689 position of the prefix text.
18690 (occur-engine): Set stickiness of prefix text properties.
18691
18692 2011-09-17 Glenn Morris <rgm@gnu.org>
18693
18694 * progmodes/etags.el (complete-tag):
18695 Fix call to completion-in-region. (Bug#9526)
18696
18697 2011-09-17 Juri Linkov <juri@jurta.org>
18698
18699 * textmodes/ispell.el (ispell-word): Add to the error message
18700 the word, ispell program name and current dictionary (bug#9121).
18701 (ispell-tex-arg-end): Capitalize "error" in the error message.
18702
18703 2011-09-17 Andreas Schwab <schwab@linux-m68k.org>
18704
18705 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix overflow
18706 check. (Bug#4251)
18707
18708 2011-09-17 Juri Linkov <juri@jurta.org>
18709
18710 * window.el (window-safe-min-height, window-safe-min-width):
18711 Fix typos (followup to bug#9522).
18712
18713 2011-09-17 Sven Joachim <svenjoac@gmx.de>
18714
18715 * window.el (window-min-width, window-state-put): Fix typos (bug#9522).
18716
18717 2011-09-16 Eli Zaretskii <eliz@gnu.org>
18718
18719 * simple.el (line-move): If goal-column is set, move by logical
18720 lines, not by display lines. (Bug#971)
18721 (next-line, previous-line, goal-column, line-move-visual): Doc fix
18722 to reflect the above change.
18723
18724 2011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
18725
18726 * image.el (imagemagick-register-types): Use regexp-opt.
18727
18728 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
18729
18730 * window.el (display-buffer-base-action): Rename from
18731 display-buffer-default-action. Make default value empty.
18732 (display-buffer-overriding-action): Convert to defvar.
18733 (display-buffer-fallback-action): New var.
18734
18735 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
18736
18737 * emacs-lisp/package.el (package-alist): Fix risky-local-variable
18738 declaration.
18739 (package--add-to-archive-contents): If there is a duplicate entry
18740 with an older version, remove it.
18741 (package-menu-mark-delete, package-menu-mark-install)
18742 (package-menu-mark-unmark): Make unused args optional.
18743 (package-menu-mark-obsolete-for-deletion):
18744 Use package-menu-get-status instead of a regexp search.
18745 (package-menu-get-status): Use tabulated-list-entry.
18746 (package-menu-mark-upgrades): New command.
18747 (package-menu-mode-map): Bind it to U. Add it to menu bar.
18748 (package-menu-execute): Do installation before deletion.
18749 (package-menu-refresh, package-menu-execute): Use derived-mode-p
18750 instead of checking major-mode.
18751 (package-menu--find-upgrades): New function.
18752
18753 2011-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
18754
18755 * mail/smtpmail.el (smtpmail-send-command): Don't include AUTH
18756 passwords in the log buffer.
18757 (smtpmail-process-filter): Update the process marker so that the
18758 "broken by peer" status message is inserted in the right place.
18759
18760 2011-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
18761
18762 * textmodes/bibtex.el (bibtex-complete-string-cleanup)
18763 (bibtex-complete-crossref-cleanup): Adjust to accommodate needs of
18764 bibtex-completion-at-point-function.
18765 (bibtex-completion-at-point-function): Use them.
18766
18767 * newcomment.el (comment-add, comment-valid-prefix-p): Docfix.
18768
18769 * mpc.el (mpc-constraints-tag-lookup): New function.
18770 (mpc-constraints-restore): Use it to make jumping to "album=Foo" apply
18771 also to browser "album|playlist".
18772
18773 2011-09-14 Juri Linkov <juri@jurta.org>
18774
18775 * isearch.el (isearch-fail-pos): Add new arg `msg'. Doc fix.
18776 (isearch-edit-string): Use length of `isearch-string' when
18777 `isearch-fail-pos' returns nil.
18778 (isearch-message): Remove duplicate code and call
18779 `isearch-fail-pos' with arg `t'.
18780
18781 2011-09-14 Chong Yidong <cyd@stupidchicken.com>
18782
18783 * replace.el (occur-mode-goto-occurrence): Don't force using other
18784 window (Bug#9499).
18785
18786 * dired-aux.el (dired-do-chmod): Don't provide initial input.
18787
18788 2011-09-14 Martin Rudalics <rudalics@gmx.at>
18789
18790 * window.el (display-buffer-window): Remove.
18791 (display-buffer-record-window): Use help-setup window parameter
18792 instead of variable display-buffer-window.
18793 (display-buffer-function, special-display-buffer-names)
18794 (special-display-function): Mention help-setup parameter instead
18795 of display-buffer-window in doc-string.
18796 * help.el (help-window-setup): New argument help-window.
18797 Use help-window-setup parameter instead of display-buffer-window.
18798 Reword some messages.
18799 (with-help-window): Pass window used for displaying the buffer
18800 to help-window-setup. Don't set display-buffer-window.
18801
18802 2011-09-13 Glenn Morris <rgm@gnu.org>
18803
18804 * emacs-lisp/debug.el (debugger-make-xrefs):
18805 Preserve point. (Bug#9462)
18806
18807 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
18808
18809 * window.el (window-deletable-p): Use next-frame.
18810
18811 2011-09-13 Martin Rudalics <rudalics@gmx.at>
18812
18813 * window.el (window-auto-delete): Remove.
18814 (window-deletable-p): Remove argument FORCE. Don't deal with
18815 dedication and previous buffers.
18816 (switch-to-prev-buffer): Don't delete window.
18817 (delete-windows-on): Delete a window's frame if and only if the
18818 window is dedicated.
18819 (replace-buffer-in-windows): Delete buffer's window or frame if
18820 and only if window is dedicated.
18821 (quit-window): Handle quit-restore as before last change.
18822 (bury-buffer): Delete window only if window-deletable-p returns t.
18823
18824 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
18825
18826 * window.el (window-deletable-p): Never delete the last frame on a
18827 given terminal.
18828
18829 2011-09-13 Glenn Morris <rgm@gnu.org>
18830
18831 * help.el (describe-key-briefly): Copy previous standard-output change.
18832
18833 2011-09-13 PJ Weisberg <pj@irregularexpressions.net>
18834
18835 * help.el (where-is): Respect non-standard standard-output. (Bug#9030)
18836
18837 2011-09-13 Glenn Morris <rgm@gnu.org>
18838
18839 * emacs-lisp/lisp-mode.el (lisp-indent-function):
18840 * progmodes/scheme.el (scheme-indent-function): Doc fixes.
18841
18842 2011-09-12 Chong Yidong <cyd@stupidchicken.com>
18843
18844 * dired-aux.el (dired-mark-read-string): Don't return default
18845 value on empty input (Bug#9361).
18846 (dired-do-chxxx): Treat empty input for "touch" as no -t option.
18847 Omit initial minibuffer contents.
18848 (dired-do-chmod): Signal an error on empty input.
18849 (dired-mark-read-string): Don't return default on empty input.
18850
18851 * files.el (file-modes-symbolic-to-number): Doc fix.
18852
18853 2011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
18854
18855 * international/mule-cmds.el (ucs-completions): Remove.
18856 (read-char-by-name): Use complete-with-action instead; add metadata.
18857
18858 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
18859
18860 * window.el (display-buffer--action-function-custom-type)
18861 (display-buffer--action-custom-type): New vars.
18862 (display-buffer-alist, display-buffer-default-action)
18863 (display-buffer-overriding-action): Add defcustom types.
18864
18865 * frame.el (delete-other-frames): Doc fix (Bug#276).
18866
18867 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
18868
18869 * play/doctor.el (make-doctor-variables): Define `doctor-sent'.
18870
18871 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
18872
18873 Change modes that used same-window-* vars to use switch-to-buffer.
18874
18875 * progmodes/gdb-mi.el (gdb-restore-windows, gdb-setup-windows):
18876 Use switch-to-buffer.
18877
18878 * cus-edit.el (customize-group, custom-buffer-create)
18879 (customize-browse, custom-buffer-create-other-window):
18880 Use switch-to-buffer or switch-to-buffer-other-window.
18881
18882 * info.el (info, Info-find-node, Info-revert-find-node, Info-next)
18883 (Info-prev, Info-up, Info-speedbar-goto-node)
18884 (info-display-manual): Use switch-to-buffer.
18885 (Info-speedbar-goto-node): Use switch-to-buffer-other-frame.
18886
18887 * mail/sendmail.el (mail): Use switch-to-buffer.
18888 (mail-recover): Use switch-to-buffer-other-window.
18889
18890 * cmuscheme.el (run-scheme, switch-to-scheme):
18891 * ielm.el (ielm):
18892 * shell.el (shell):
18893 * net/rlogin.el (rlogin):
18894 * net/telnet.el (telnet, rsh):
18895 * progmodes/inf-lisp.el (inferior-lisp): Use switch-to-buffer.
18896
18897 2011-09-11 Andreas Schwab <schwab@linux-m68k.org>
18898
18899 * dired.el (dired-sort-toggle-or-edit): Revert last changes.
18900
18901 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
18902
18903 * dired.el (dired-sort-toggle-or-edit): -o doesn't exist on *BSD,
18904 so don't mention it (bug#9301).
18905 (dired-sort-toggle-or-edit): Clarify string further.
18906
18907 * faces.el (face-spec-set-match-display): Make `(type graphic)'
18908 match `x', `w32' and `ns', like the manual says (bug#9029).
18909
18910 * subr.el (eval-after-load): Doc string clarification (bug#9125).
18911 (process-kill-buffer-query-function): Mention the buffer name in
18912 the query.
18913
18914 * image-mode.el (image-next-line): The line parameter is mandatory
18915 (bug#9258).
18916
18917 * dired.el (dired-sort-toggle-or-edit): Mention -o and -g, too,
18918 which can be useful (bug#9301).
18919
18920 * textmodes/flyspell.el: Remove obsolete comment (bug#9368).
18921
18922 * subr.el (match-string): Mention that the current buffer should
18923 be the same as the search was done in (bug#9282).
18924
18925 * facemenu.el: Disable the remove-* commands if the mark isn't
18926 active (bug#9162).
18927
18928 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
18929
18930 * buff-menu.el (Buffer-menu-switch-other-window): Use second arg
18931 of display-buffer.
18932 (Buffer-menu-2-window): Use switch-to-buffer-other-window.
18933
18934 * replace.el (occur-mode-goto-occurrence)
18935 (occur-mode-display-occurrence) Use second arg of pop-to-buffer
18936 and display-buffer.
18937
18938 * mail/reporter.el (reporter-submit-bug-report): Use second arg of
18939 display-buffer.
18940
18941 * mail/sendmail.el (sendmail-user-agent-compose): Don't bind the
18942 special-display and same-window variables.
18943 (mail-other-window): Use switch-to-buffer-other-window.
18944 (mail-other-frame): USe switch-to-buffer-other-frame.
18945
18946 * progmodes/gdb-mi.el (gdb-frame-gdb-buffer):
18947 Use display-buffer-other-frame.
18948 (gdb-display-gdb-buffer): Use pop-to-buffer.
18949
18950 * progmodes/gud.el (gud-goto-info): Use info-other-window.
18951
18952 * progmodes/python.el: Don't set same-window-buffer-names.
18953
18954 * textmodes/bibtex.el (bibtex-search-entry): Use switch-to-buffer.
18955
18956 * window.el (display-buffer-alist): Add *Python*.
18957
18958 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
18959
18960 * window.el (display-buffer-alist): Add entry for buffers
18961 previously handled same-window-*.
18962 (display-buffer-alist, display-buffer-default-action)
18963 (display-buffer-overriding-action): Mark as risky.
18964 (display-buffer-alist): Document action function changes.
18965 (display-buffer--same-window-action)
18966 (display-buffer--other-frame-action): New variables.
18967 (switch-to-buffer, display-buffer-other-frame): Use them.
18968 (display-buffer): Rename reuse-frame entry to reusable-frames.
18969 (display-buffer-reuse-selected-window): Function deleted.
18970 (display-buffer-reuse-window): Handle reusable-frames alist entry.
18971 If it's omitted, check pop-up-frames/display-buffer-reuse-frames.
18972 (display-buffer-special): New function.
18973 (display-buffer--maybe-pop-up-frame-or-window): Rename from
18974 display-buffer-reuse-or-pop-window. Split off special-display
18975 part into display-buffer-special.
18976 (display-buffer-use-some-window): Don't perform any special
18977 pop-up-frames handling.
18978 (pop-to-buffer): Use window-normalize-buffer-to-switch-to.
18979 (display-buffer--maybe-same-window): Rename from
18980 display-buffer-maybe-same-window.
18981
18982 * info.el: Don't set same-window-regexps.
18983 (info-setup): New function.
18984 (info-other-window, info): Call it.
18985
18986 * cus-edit.el: Don't set same-window-regexps.
18987 (customize-group): New argument.
18988 (customize-group-other-window): Use it.
18989 (customize-face, customize-face-other-window): Likewise.
18990 (custom-buffer-create-other-window): Use pop-to-buffer directly.
18991
18992 * net/rlogin.el:
18993 * net/telnet.el:
18994 * progmodes/gud.el: Don't set same-window-regexps.
18995
18996 * cmuscheme.el:
18997 * ielm.el:
18998 * shell.el:
18999 * mail/sendmail.el:
19000 * progmodes/inf-lisp.el: Don't set same-window-buffer-names.
19001
19002 2011-09-10 Juri Linkov <juri@jurta.org>
19003
19004 * isearch.el (isearch-edit-string): Remove obsolete mention of
19005 `C-w' (`isearch-yank-word-or-char') from docstring.
19006 (isearch-query-replace): Fix typo in docstring (bug#9466).
19007
19008 2011-09-10 Juri Linkov <juri@jurta.org>
19009
19010 * paren.el (show-paren-function): Don't show escaped parens.
19011 Let-bind `unescaped' to `t' when paren is not escaped. (Bug#9461)
19012
19013 2011-09-10 Eli Zaretskii <eliz@gnu.org>
19014
19015 * mail/sendmail.el (mml-to-mime, mml-attach-file)
19016 (mm-default-file-encoding): Remove autoload forms, they are
19017 replaced with autoload cookies in mml.el and mm-encode.el.
19018 (mail-add-attachment): New command.
19019 (mail-mode-map): Add a menu-bar item for mail-add-attachment.
19020 (mail-mode): Mention mail-insert-file and mail-add-attachment in
19021 the doc string.
19022 (mml-to-mime, mml-attach-file, mm-default-file-encoding): Declare.
19023
19024 2011-09-10 Reuben Thomas <rrt@sc3d.org>
19025
19026 * simple.el (count-words-region): Use buffer if there's no region
19027 (bug#9429).
19028
19029 2011-09-09 Juri Linkov <juri@jurta.org>
19030
19031 * wdired.el (wdired-change-to-wdired-mode): Set buffer-local
19032 `isearch-filter-predicate' to `wdired-isearch-filter-read-only'.
19033 (wdired-isearch-filter-read-only): New function. (Bug#6362)
19034
19035 2011-09-09 Alan Mackenzie <acm@muc.de>
19036
19037 * progmodes/cc-mode.el (awk-mode): Prevent `define-derived-mode'
19038 spuriously generating `awk-mode-syntax-table'. (Bug #9448).
19039
19040 2011-09-09 Eli Zaretskii <eliz@gnu.org>
19041
19042 Fix for Savannah bug#9392.
19043 * simple.el (mail-encode-mml): New defvar.
19044
19045 * mail/rmail.el (mail-encode-mml): Add a defvar.
19046 (rmail-enable-mime-composing): Default to t.
19047 (rmail-forward): Use MIME method of forwarding only if both
19048 rmail-enable-mime-composing and rmail-enable-mime are non-nil.
19049 Set mail-encode-mml non-nil if the MIME method was used.
19050
19051 * mail/sendmail.el (mml-to-mime): Add autoload form.
19052 (mail-encode-mml): Add a defvar.
19053 (mail-mode): Make mail-encode-mml buffer-local and initialize it
19054 to nil.
19055 (mail-send): If mail-encode-mml is non-nil, run the outgoing
19056 message through mml-to-mime, and reset mail-encode-mml to nil.
19057
19058 2011-09-09 Glenn Morris <rgm@gnu.org>
19059
19060 * woman.el (woman-if-body): When processing an .el block,
19061 do not delete the next .el block as well. (Bug#9447)
19062 (woman-special-characters): Add oq, cq, and hy characters.
19063
19064 2011-09-08 Martin Rudalics <rudalics@gmx.at>
19065
19066 * window.el (window-deletable-p): Make sure window is live before
19067 invoking window-prev-buffers.
19068
19069 2011-09-08 Leo Liu <sdl.web@gmail.com>
19070
19071 * net/rcirc.el (rcirc-cmd-invite): New rcirc command. (Bug#9453)
19072
19073 2011-09-08 Juri Linkov <juri@jurta.org>
19074
19075 * progmodes/compile.el (compilation-environment): Make it
19076 a defcustom (bug#8340).
19077
19078 2011-09-08 Martin Rudalics <rudalics@gmx.at>
19079
19080 * window.el (frame-auto-delete): Rename to window-auto-delete.
19081 Make it control auto-deletion of windows and/or frames.
19082 (window-deletable-p): New argument FORCE. Rewrite conditions
19083 for deleting window/frame. (Bug#9419)
19084 (switch-to-prev-buffer, replace-buffer-in-windows, quit-window):
19085 Rewrite handling of case when window/frame can be deleted.
19086 (delete-windows-on): Call window-deletable-p with new FORCE
19087 argument t. (Bug#9456)
19088
19089 2011-09-07 Chong Yidong <cyd@stupidchicken.com>
19090
19091 * help-mode.el (help-mode): Restore autoload.
19092
19093 2011-09-07 Juri Linkov <juri@jurta.org>
19094
19095 * progmodes/compile.el (compilation-start): Let-bind `thisenv' to
19096 `compilation-environment'. Set buffer-local
19097 `compilation-environment' to `thisenv' later after (funcall mode).
19098 (Bug#8340)
19099
19100 * vc/vc-git.el (vc-git-grep): Remove --no-color. (Bug#9408)
19101 (vc-git-grep): Prepend "PAGER=" to `compilation-environment'
19102 instead of replacing its value. (Bug#8340)
19103
19104 2011-09-07 Juri Linkov <juri@jurta.org>
19105
19106 * progmodes/grep.el (grep-regexp-alist): Calculate column positions
19107 based on text properties put by `grep-filter' instead of matching
19108 escape sequences.
19109 (grep-mode): Set buffer-local `compilation-error-screen-columns'
19110 to the value of `grep-error-screen-columns' (bug#9438).
19111
19112 2011-09-07 Juri Linkov <juri@jurta.org>
19113
19114 * simple.el (next-error-highlight, next-error-highlight-no-select):
19115 Doc fix (bug#9432).
19116
19117 2011-09-07 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
19118
19119 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
19120 Check for null c-opt-block-decls-with-vars-key. (Bug#9443)
19121
19122 2011-09-07 Leo Liu <sdl.web@gmail.com>
19123
19124 * net/rcirc.el (rcirc-mode): Conditionally initialize
19125 rcirc-input-ring.
19126
19127 2011-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
19128
19129 * emacs-lisp/find-func.el (find-function-C-source): Only set
19130 find-function-C-source-directory after checking that we found a source
19131 file there (bug#9440).
19132
19133 2011-09-06 Alan Mackenzie <acm@muc.de>
19134
19135 * isearch.el (isearch-other-meta-char): Wherever a key list is
19136 unread, "unread" the prefix arg, too. This fixes bug #8901.
19137
19138 2011-09-05 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
19139
19140 * progmodes/grep.el (rgrep): Add "-type d" (bug#9414).
19141
19142 2011-09-05 Juri Linkov <juri@jurta.org>
19143
19144 * progmodes/grep.el (grep-process-setup): Fix comments (bug#8084).
19145
19146 2011-09-05 Juri Linkov <juri@jurta.org>
19147
19148 * progmodes/grep.el (grep-filter): Avoid incomplete processing by
19149 keeping point where processing of grep matches begins, and
19150 continue to delete remaining escape sequences from the same point.
19151 (grep-filter): Make leading zero optional in "0?1;31m" because
19152 git-grep emits "\033[1;31m" escape sequences unlike expected
19153 "\033[01;31m" as GNU Grep does (bug#9408).
19154 (grep-process-setup): Replace obsolete "ml=" with newer "sl=".
19155
19156 2011-09-05 Juri Linkov <juri@jurta.org>
19157
19158 * subr.el (y-or-n-p): Capitalize "yes".
19159
19160 2011-09-04 Michael Albinus <michael.albinus@gmx.de>
19161
19162 * net/tramp.el (top): Require 'shell. Use `tramp-unload-hook' but
19163 `tramp-cache-unload-hook' where appropriate.
19164 (tramp-methods): Rename `tramp-remote-sh' to
19165 `tramp-remote-shell'. Add `tramp-remote-shell-args'.
19166 (tramp-handle-shell-command): New defun, moved from tramp-sh.el.
19167
19168 * net/tramp-sh.el (top): Don't require 'shell.
19169 (tramp-methods): Add `tramp-remote-shell' and
19170 `tramp-remote-shell-args' entries.
19171 (tramp-sh-file-name-handler-alist): Use `tramp-handle-shell-command'.
19172 (tramp-sh-handle-shell-command): Remove.
19173 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
19174 Use `tramp-remote-shell'.
19175
19176 2011-09-03 Chong Yidong <cyd@stupidchicken.com>
19177
19178 * mail/sendmail.el (sendmail-query-once-function): Delete.
19179 (sendmail-query-once): Save directly to send-mail-function.
19180 Update message-send-mail-function too.
19181
19182 * mail/smtpmail.el (smtpmail-try-auth-methods): Clarify prompt.
19183
19184 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
19185
19186 * progmodes/python.el (python-mode-map): Use correct function to
19187 start python interpreter from menu-bar (as reported by Geert
19188 Kloosterman).
19189 (inferior-python-mode-map): Fix typo.
19190 (python-shell-map): Remove.
19191
19192 2011-09-03 Deniz Dogan <deniz@dogan.se>
19193
19194 * net/rcirc.el (rcirc-print): Simplify code for
19195 rcirc-scroll-show-maximum-output. There is no need to walk
19196 through all windows to find the right one.
19197
19198 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
19199
19200 * help.el (help-return-method): Doc fix.
19201
19202 2011-09-03 Martin Rudalics <rudalics@gmx.at>
19203
19204 * window.el (window-deletable-p): Don't return a non-nil value
19205 when there's a buffer that was shown in the window before.
19206 (Bug#9419)
19207 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
19208 Set window's previous buffers to nil.
19209
19210 2011-09-03 Eli Zaretskii <eliz@gnu.org>
19211
19212 * mail/rmailmm.el (rmail-mime-insert-tagline): Insert an extra
19213 newline before and after the tag line, so it doesn't interfere
19214 with determining the paragraph direction of bidirectional text.
19215
19216 2011-09-03 Leo Liu <sdl.web@gmail.com>
19217
19218 * files.el (find-file-not-true-dirname-list): Remove. (Bug#9422)
19219
19220 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
19221
19222 * window.el (pop-to-buffer-1, pop-to-buffer-same-window): Delete.
19223 (pop-to-buffer): Change interactive spec. Pass second argument
19224 directly to display-buffer.
19225 (display-buffer): Fix interactive spec. Use functionp to
19226 distinguish between a function and a list of functions.
19227
19228 * abbrev.el (edit-abbrevs):
19229 * arc-mode.el (archive-extract):
19230 * autoinsert.el (auto-insert):
19231 * bookmark.el (bookmark-bmenu-list):
19232 * files.el (find-file):
19233 * view.el (view-buffer):
19234 * progmodes/compile.el (compilation-goto-locus):
19235 * textmodes/bibtex.el (bibtex-initialize): Use switch-to-buffer.
19236
19237 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
19238
19239 * window.el (display-buffer-alist): Doc fix.
19240 (display-buffer): Add docstring. Don't treat
19241 display-buffer-default specially.
19242 (display-buffer-reuse-selected-window)
19243 (display-buffer-same-window, display-buffer-maybe-same-window)
19244 (display-buffer-reuse-window, display-buffer-pop-up-frame)
19245 (display-buffer-pop-up-window)
19246 (display-buffer-reuse-or-pop-window)
19247 (display-buffer-use-some-window): New functions.
19248 (display-buffer-default-action): Use them.
19249 (display-buffer-default): Delete.
19250 (pop-to-buffer-1): Fix choice of actions.
19251
19252 2011-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
19253
19254 * minibuffer.el (completion--insert-strings): Don't get confused by
19255 completion entries that end with an LF char.
19256
19257 2011-09-01 Eli Zaretskii <eliz@gnu.org>
19258
19259 * window.el (frame-auto-delete, window-deletable-p): Doc fix.
19260
19261 2011-09-01 Chong Yidong <cyd@stupidchicken.com>
19262
19263 * window.el (display-buffer): Restore interactive spec.
19264 (display-buffer-same-window, display-buffer-other-window):
19265 New functions.
19266 (pop-to-buffer-1): New function. Use the above.
19267 (pop-to-buffer, pop-to-buffer-same-window): Use it.
19268 (pop-to-buffer-other-window, pop-to-buffer-other-frame): Delete.
19269
19270 * view.el (view-buffer-other-window, view-buffer-other-frame):
19271 Just use pop-to-buffer.
19272
19273 2011-09-01 Thierry Volpiatto <thierry.volpiatto@gmail.com>
19274
19275 * vc/vc-rcs.el (vc-rcs-responsible-p): Handle directories. (Bug#9391)
19276
19277 2011-09-01 Wilfred Hughes <wilfred@potatolondon.com> (tiny change)
19278
19279 * vc/vc-git.el (vc-git-grep): Use --no-color. (Bug#9408)
19280
19281 2011-08-31 Richard Stallman <rms@gnu.org>
19282
19283 * mail/rmail.el (rmail-epa-decrypt): Rewrite to take account
19284 of the separation of rmail-view-buffer from rmail-buffer.
19285 If you say no to "replace original", the decrypt is in the
19286 view buffer. If you say yes, the decrypt goes into the
19287 rmail buffer also.
19288
19289 2011-08-31 Martin Rudalics <rudalics@gmx.at>
19290
19291 * window.el (display-buffer-window): Rewrite doc-string.
19292 (display-buffer-record-window): New function.
19293 (display-buffer-macro-specifiers)
19294 (display-buffer-even-window-sizes, display-buffer-set-height)
19295 (display-buffer-set-width, display-buffer-in-window)
19296 (display-buffer-reuse-window, display-buffer-split-specifiers)
19297 (display-buffer-side-specifiers, display-buffer-split-window-1)
19298 (display-buffer-split-window, display-buffer-split-atom-window)
19299 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
19300 (display-buffer-pop-up-side-window, display-buffer-in-side-window)
19301 (display-buffer-other-window-means-other-frame)
19302 (display-buffer-normalize-special)
19303 (display-buffer-normalize-default)
19304 (display-buffer-normalize-argument)
19305 (display-buffer-normalize-alist-1, display-buffer-normalize-alist)
19306 (display-buffer-normalize-specifiers, display-buffer-frame)
19307 (display-buffer-same-window, display-buffer-same-frame)
19308 (display-buffer-other-window)
19309 (display-buffer-same-frame-other-window)
19310 (display-buffer-other-frame, pop-to-buffer-same-window)
19311 (pop-to-buffer-same-frame, pop-to-buffer-other-window)
19312 (pop-to-buffer-same-frame-other-window, pop-to-buffer-other-frame)
19313 (switch-to-buffer-same-frame)
19314 (switch-to-buffer-other-window-same-frame)
19315 (display-buffer-alist-of-strings-p, display-buffer-alist-add)
19316 (display-buffer-alist-set-1, display-buffer-alist-set-2)
19317 (display-buffer-alist-set): Remove.
19318 (display-buffer-function, special-display-buffer-names)
19319 (special-display-regexps, special-display-function):
19320 In doc-string refer to display-buffer-window and quit-restore
19321 parameter.
19322 (pop-up-frame-alist, pop-up-frame-function, special-display-p)
19323 (special-display-frame-alist, special-display-popup-frame)
19324 (same-window-buffer-names, same-window-regexps, same-window-p)
19325 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
19326 (split-window-preferred-function, split-height-threshold)
19327 (split-width-threshold, window-splittable-p)
19328 (split-window-sensibly, window--try-to-split-window)
19329 (window--frame-usable-p, even-window-heights)
19330 (window--even-window-heights, window--display-buffer-1)
19331 (window--display-buffer-2, display-buffer-other-frame):
19332 Restore old Emacs 23 code, order and doc-strings where applicable.
19333 (display-buffer-default, display-buffer-assq-regexp): New functions.
19334 (display-buffer-alist): Rewrite doc-string.
19335 (display-buffer-default-action)
19336 (display-buffer-overriding-action): New variables.
19337 (display-buffer, switch-to-buffer): Rewrite.
19338 (pop-to-buffer): Restore Emacs 23 behavior but use
19339 window-normalize-buffer-to-display.
19340 (switch-to-buffer-other-window, switch-to-buffer-other-frame):
19341 Restore Emacs 23 behavior but use
19342 window-normalize-buffer-to-switch-to.
19343 (pop-to-buffer-same-window): Rewrite.
19344 (pop-to-buffer-other-window, pop-to-buffer-other-frame):
19345 Rewrite using Emacs 23 options.
19346
19347 2011-08-31 Michael Albinus <michael.albinus@gmx.de>
19348
19349 * net/tramp.el (tramp-root-regexp): Remove.
19350 (tramp-completion-file-name-regexp-unified)
19351 (tramp-completion-file-name-regexp-separate)
19352 (tramp-completion-file-name-regexp-url): Don't use leading volume
19353 letter on w32 systems. (Bug#5303, Bug#9311)
19354 (tramp-drop-volume-letter): Simplify definition.
19355 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
19356
19357 2011-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
19358
19359 * subr.el (event-modifiers): Fix "missing modifier" part of docstring
19360 (bug#9356).
19361
19362 2011-08-30 Reuben Thomas <rrt@sc3d.org> (tiny change)
19363
19364 * vc/pcvs-defs.el (cvs-find-file-and-jump): Docstring typo (bug#9369).
19365
19366 2011-08-29 Juri Linkov <juri@jurta.org>
19367
19368 * isearch.el (isearch-done): Don't display message "Mark saved"
19369 when arg `edit' is non-nil to prevent its flicker in the echo area.
19370
19371 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
19372
19373 * emacs-lisp/package.el (package-menu-mark-delete): Allow marking
19374 obsolete packages for deletion.
19375
19376 2011-08-28 Christoph Scholtes <cschol2112@googlemail.com>
19377
19378 * help-mode.el (help-mode-map): Add special-mode-map to parent.
19379 (help-mode): Derive help-mode from special-mode. Don't invoke
19380 view-mode from help-mode.
19381 (help-xref-override-view-map): Remove.
19382 (help-make-xrefs): Remove minor-mode-overriding-map-alist since
19383 view-mode is not used anymore.
19384
19385 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
19386
19387 * server.el (server-port): Doc fix.
19388
19389 * cus-theme.el (custom-theme-choose-mode): Inherit from
19390 special-mode (Bug#9124).
19391 (custom-theme-choose-mode-map): Add special-mode to parent.
19392
19393 2011-08-28 Alan Mackenzie <acm@muc.de>
19394
19395 * progmodes/cc-fonts.el
19396 (c-make-font-lock-BO-decl-search-function): New function.
19397 (c-basic-matchers-after - "Fontify the clauses after various
19398 keywords"): Extract the three keyword lists for the 3 erroneous
19399 constructs from the list of four, and use the new function above
19400 in place of an old one.
19401
19402 2011-08-28 Deniz Dogan <deniz@dogan.se>
19403
19404 * net/rcirc.el (rcirc-insert-prev-input)
19405 (rcirc-insert-next-input): Remove unused argument.
19406
19407 2011-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
19408
19409 * shell.el (shell-parse-pcomplete-arguments): Unquote args (bug#9160).
19410
19411 2011-08-27 Alan Mackenzie <acm@muc.de>
19412
19413 * progmodes/cc-menus.el (cc-imenu-c++-generic-expression): Make it
19414 handle function pointer parameters properly.
19415
19416 2011-08-27 Martin Rudalics <rudalics@gmx.at>
19417
19418 * window.el (display-buffer-reuse-window): Fix case where
19419 selected window was reused with non-nil OTHER-WINDOW argument.
19420 (Bug#9381)
19421
19422 2011-08-27 Deniz Dogan <deniz@dogan.se>
19423
19424 * net/rcirc.el (rcirc-check-auth-status): Adding support for
19425 oftc's NickServ messages.
19426
19427 2011-08-27 Glenn Morris <rgm@gnu.org>
19428
19429 * saveplace.el (save-place-limit): Make it finite. (Bug#9352)
19430
19431 2011-08-26 Chong Yidong <cyd@stupidchicken.com>
19432
19433 * emacs-lisp/package.el (package-install): Call package-initialize
19434 if called interactively.
19435
19436 2011-08-26 Leo Liu <sdl.web@gmail.com>
19437
19438 * emacs-lisp/cl-macs.el (defstruct): Fix format. (Bug#9357)
19439
19440 2011-08-25 Juri Linkov <juri@jurta.org>
19441
19442 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
19443 `search-whitespace-regexp' (bug#9364).
19444
19445 2011-08-25 Juri Linkov <juri@jurta.org>
19446
19447 * isearch.el (isearch-edit-string): Let-bind `search-ring' and
19448 `regexp-search-ring' to their global values to protect from
19449 updating by `read-from-minibuffer' (bug#9185).
19450
19451 2011-08-25 Juri Linkov <juri@jurta.org>
19452
19453 * textmodes/ispell.el (ispell-command-loop): Add newline
19454 at the end of the "Use option `i'..." line.
19455
19456 2011-08-25 Juri Linkov <juri@jurta.org>
19457
19458 * battery.el (display-battery-mode): If `battery-status-function'
19459 or `battery-mode-line-format' is nil, display the message and set
19460 `display-battery-mode' to nil (bug#9363).
19461
19462 2011-08-25 Eli Zaretskii <eliz@gnu.org>
19463
19464 * buff-menu.el (Buffer-menu-buffer+size): Remove calls to
19465 bidi-string-mark-left-to-right; they are unnecessary now.
19466
19467 2011-08-25 Deniz Dogan <deniz@dogan.se>
19468
19469 * net/quickurl.el: Documentation typo fixes.
19470
19471 2011-08-25 Chong Yidong <cyd@stupidchicken.com>
19472
19473 * window.el (bury-buffer, quit-window): Use bury-buffer-internal.
19474
19475 2011-08-25 Glenn Morris <rgm@gnu.org>
19476
19477 * emacs-lisp/derived.el (define-derived-mode): Doc fix.
19478
19479 * mail/smtpmail.el (smtpmail-smtp-user): Add version: tag.
19480 (smtpmail-via-smtp): Handle nil response from smtp.
19481
19482 2011-08-24 Juri Linkov <juri@jurta.org>
19483
19484 * proced.el (proced-marked): Inherit from `error' instead of
19485 `font-lock-warning-face'.
19486
19487 * ibuffer.el (ibuffer-marked-face): Change default face from
19488 `font-lock-warning-face' to `warning'.
19489 (ibuffer-deletion-face): Change default face from
19490 `font-lock-type-face' to `error'.
19491
19492 * battery.el (battery-update): Use the face `error' instead of
19493 `font-lock-warning-face' (bug#6117).
19494
19495 2011-08-24 Juri Linkov <juri@jurta.org>
19496
19497 * faces.el (success): Change face color from "Green3" to
19498 "ForestGreen" on light background (bug#9353).
19499
19500 2011-08-24 Chong Yidong <cyd@stupidchicken.com>
19501
19502 * window.el (quit-window): Rename from quit-restore-window.
19503 Use same arglist as old quit-window.
19504 (frame-auto-delete): Doc fix.
19505
19506 * view.el (view-mode-exit): Use quit-window.
19507
19508 2011-08-24 Juri Linkov <juri@jurta.org>
19509
19510 * isearch.el (isearch-ring-adjust1): Start visiting previous
19511 search strings from the index 0 (-1 + 1) instead of 1 (0 + 1).
19512 (isearch-repeat, isearch-edit-string): Call `isearch-ring-adjust1'
19513 for empty search string (when the last search string is reused
19514 automatically) to adjust the isearch ring to the last element and
19515 prepare the correct index for further M-p commands (bug#9185).
19516
19517 2011-08-24 Kenichi Handa <handa@m17n.org>
19518
19519 * international/ucs-normalize.el: If decomposition property of
19520 CHAR is the default one (i.e. a list of CHAR itself), treat it as
19521 nil.
19522 (nfd, nfkd): Likewise.
19523
19524 2011-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
19525
19526 * mpc.el (mpc--proc-filter): Don't signal mpc-proc-error since signals
19527 from process filters aren't reliably transmitted to the surrounding
19528 accept-process-output.
19529 (mpc-proc-check): New function.
19530 (mpc-proc-sync): Use it (bug#8293)
19531
19532 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
19533
19534 * emacs-lisp/eieio.el (eieio-defmethod, eieio-defgeneric):
19535 Add compatibility functions (bug#9313).
19536
19537 2011-08-23 Eli Zaretskii <eliz@gnu.org>
19538
19539 * cus-start.el (all): Add entry for bidi-paragraph-direction.
19540
19541 * international/uni-bidi.el: Regenerate.
19542
19543 2011-08-23 Kenichi Handa <handa@m17n.org>
19544
19545 * international/charprop.el:
19546 * international/uni-bidi.el:
19547 * international/uni-category.el:
19548 * international/uni-combining.el:
19549 * international/uni-comment.el:
19550 * international/uni-decimal.el:
19551 * international/uni-decomposition.el:
19552 * international/uni-digit.el:
19553 * international/uni-lowercase.el:
19554 * international/uni-mirrored.el:
19555 * international/uni-name.el:
19556 * international/uni-numeric.el:
19557 * international/uni-old-name.el:
19558 * international/uni-titlecase.el:
19559 * international/uni-uppercase.el: Regenerate.
19560
19561 2011-08-23 Martin Rudalics <rudalics@gmx.at>
19562
19563 * help.el (help-window-setup): Fix message displayed when other
19564 window is reused. (Bug#9341)
19565
19566 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
19567
19568 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list.
19569 * pcomplete.el (pcomplete-quote-argument): Fix thinko (bug#9161).
19570
19571 * pcomplete.el (pcomplete-parse-comint-arguments): Fix inf-loop.
19572 Mark obsolete.
19573 * shell.el (shell-parse-pcomplete-arguments): New function.
19574 (shell-completion-vars): Use it instead (bug#9160).
19575
19576 2011-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
19577
19578 * progmodes/sh-script.el (sh-maybe-here-document): Disable magic in
19579 strings and comments (bug#9333).
19580
19581 * emacs-lisp/debug.el (debug-arglist): New function.
19582 (debug-convert-byte-code): Use it. Handle lexical byte-codes.
19583 (debug-on-entry-1): Handle interpreted closures (bug#9120).
19584
19585 2011-08-22 Juri Linkov <juri@jurta.org>
19586
19587 * progmodes/compile.el (compilation-mode-font-lock-keywords):
19588 Revert regexp that highlights output switches to its old
19589 pre-2010-10-28 value and remove one `?' from it (bug#9319).
19590
19591 * progmodes/grep.el (grep-process-setup): Use `buffer-modified-p'
19592 to check for empty output (bug#9226).
19593
19594 2011-08-22 Chong Yidong <cyd@stupidchicken.com>
19595
19596 * progmodes/scheme.el (scheme-mode-syntax-table): Don't use
19597 symbol-constituent as the default, as that stops font-lock from
19598 working properly (Bug#8843).
19599
19600 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
19601
19602 * mail/smtpmail.el (smtpmail-via-smtp): Only bind
19603 `coding-system-for-*' around the process open call to avoid
19604 auth-source side effects.
19605 (smtpmail-try-auth-methods): Expand the secret password.
19606 (smtpmail-query-smtp-server): Allow `quit'-ing out in case the
19607 probe hangs.
19608
19609 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
19610
19611 * term.el (term-mouse-paste): Yank primary selection (Bug#6845).
19612
19613 * emacs-lisp/find-func.el (find-function-noselect): New arg
19614 lisp-only.
19615
19616 * emacs-lisp/edebug.el (edebug-instrument-function): Use it to
19617 signal an error for built-in functions (Bug#6664).
19618
19619 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
19620
19621 * mail/smtpmail.el (smtpmail-smtp-user): New variable.
19622 (smtpmail-try-auth-methods): Use it.
19623
19624 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
19625
19626 * font-lock.el (font-lock-fontify-region)
19627 (font-lock-unfontify-region, font-lock-default-fontify-buffer)
19628 (font-lock-default-unfontify-buffer)
19629 (font-lock-default-fontify-region)
19630 (font-lock-default-unfontify-region): Add docstrings (Bug#8624).
19631
19632 * progmodes/compile.el (compilation-error-properties):
19633 Fix confusion between file struct and message struct (Bug#9319).
19634 (compilation-error-regexp-alist-alist): Fix 2011-05-09 change to
19635 `ant' regexp.
19636
19637 * net/browse-url.el (browse-url-firefox): Don't call
19638 browse-url-firefox-sentinel unless using -remote (Bug#9328).
19639
19640 2011-08-20 Glenn Morris <rgm@gnu.org>
19641
19642 * tutorial.el (help-with-tutorial): Avoid an error on short screens.
19643
19644 * tutorial.el (tutorial--default-keys): Update some default bindings.
19645
19646 * files.el (hack-local-variables): Fully ignore case for "mode:".
19647
19648 2011-08-20 Alan Mackenzie <acm@muc.de>
19649
19650 Resolve invalid use of a regexp in regexp-opt.
19651
19652 * progmodes/cc-fonts.el (c-complex-decl-matchers): Add in special
19653 detection for a java annotation.
19654
19655 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Add in special
19656 detection for a java annotation.
19657
19658 * progmodes/cc-langs.el (c-prefix-spec-kwds-re): Remove the special
19659 handling for java.
19660 (c-modifier-kwds): Remove the regexp "@[A-za-z0-9]+".
19661
19662 2011-08-20 Chong Yidong <cyd@stupidchicken.com>
19663
19664 * startup.el (normal-top-level-add-subdirs-to-load-path): Doc fix
19665 (Bug#9274).
19666
19667 2011-08-20 Alan Mackenzie <acm@muc.de>
19668
19669 Fontify CPP expressions correctly when starting in the middle of
19670 such a construct. Mainly for when jit-lock etc. starts a chunk
19671 here.
19672
19673 * progmodes/cc-fonts.el (c-font-lock-context): New buffer local
19674 variable.
19675 (c-make-font-lock-search-form): New function, extracted from
19676 c-make-font-lock-search-function.
19677 (c-make-font-lock-search-function): Use the above function.
19678 (c-make-font-lock-context-search-function): New function.
19679 (c-cpp-matchers): Enhance the preprocessor expression case with
19680 the above function
19681 (c-font-lock-complex-decl-prepare): Test for being in a CPP form
19682 which takes an expression.
19683
19684 * progmodes/cc-langs.el (c-cpp-expr-intro-re): New lang-variable.
19685
19686 2011-08-20 Martin Rudalics <rudalics@gmx.at>
19687
19688 * window.el (display-buffer-reuse-window)
19689 (display-buffer-pop-up-window): Don't reuse or split a side
19690 window.
19691
19692 2011-08-19 Glenn Morris <rgm@gnu.org>
19693
19694 * files.el (hack-local-variables-prop-line, hack-local-variables):
19695 Downcase "Mode:". (Bug#9331)
19696
19697 2011-08-18 Chong Yidong <cyd@stupidchicken.com>
19698
19699 * international/characters.el: Add L and R categories.
19700
19701 * subr.el (bidi-string-mark-left-to-right): Rename from
19702 string-mark-left-to-right. Use category search.
19703
19704 * buff-menu.el (Buffer-menu-buffer+size): Callers changed.
19705
19706 2011-08-18 Juri Linkov <juri@jurta.org>
19707
19708 * faces.el (error, warning, success): New faces with definitions
19709 copied from old default values of `font-lock-warning-face',
19710 `compilation-warning', `compilation-info' (bug#6117).
19711
19712 * font-lock.el (font-lock-warning-face): Inherit from `error'.
19713
19714 * progmodes/compile.el (compilation-error): Inherit from `error'.
19715 (compilation-warning): Inherit from `warning'.
19716 (compilation-info): Inherit from `success'.
19717
19718 * dired.el (dired-marked): Inherit from `warning'.
19719 (dired-flagged): Inherit from `error'.
19720
19721 2011-08-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
19722
19723 * mail/smtpmail.el (auth-source): Require to avoid problems with
19724 binding variables (bug#9298). Also clean up some unused
19725 autoloads.
19726
19727 * net/network-stream.el (network-stream-open-starttls):
19728 Support using starttls.el without using gnutls-cli.
19729
19730 2011-08-17 Juri Linkov <juri@jurta.org>
19731
19732 * progmodes/grep.el (rgrep): Handle the case when
19733 `grep-find-command' is a cons cell (bug#9278).
19734
19735 2011-08-17 Martin Rudalics <rudalics@gmx.at>
19736
19737 * window.el (display-buffer-pop-up-frame): Run frame creation
19738 function with BUFFER current (as special-display-popup-frame
19739 does). Reported by Drew Adams.
19740
19741 2011-08-17 Daiki Ueno <ueno@unixuser.org>
19742
19743 * epa-mail.el: Simplify GnuPG group expansion using
19744 epg-expand-group.
19745 (epa-mail-group-alist, epa-mail-group-modtime)
19746 (epa-mail-gnupg-conf-file, epa-mail-parse-groups)
19747 (epa-mail-sync-groups, epa-mail-expand-recipient-1)
19748 (epa-mail-expand-recipients-2, epa-mail-expand-recipients):
19749 Remove.
19750
19751 2011-08-16 Feng Li <fengli@gmail.com> (tiny change)
19752
19753 * calc/calc-ext.el (math-defintegral-2): Remove nested backquote.
19754
19755 2011-08-16 Alan Mackenzie <acm@muc.de>
19756
19757 * progmodes/cc-engine.el (c-state-cache-non-literal-place):
19758 Correct, to avoid the inside of macros.
19759
19760 2011-08-16 Richard Stallman <rms@gnu.org>
19761
19762 * epa-mail.el: Handle GnuPG group definitions.
19763 (epa-mail-group-alist, epa-mail-group-modtime)
19764 (epa-mail-gnupg-conf-file): New variables.
19765 (epa-mail-parse-groups, epa-mail-sync-groups)
19766 (epa-mail-expand-recipient-1, epa-mail-expand-recipients-2)
19767 (epa-mail-expand-recipients): New functions.
19768 (epa-mail-encrypt): Call epa-mail-expand-recipients.
19769
19770 * mail/rmail.el (rmail-epa-decrypt): New command.
19771
19772 * epa.el (epa-decrypt-region): New arg MAKE-BUFFER-FUNCTION.
19773 Don't bind buffer-read-only, just inhibit-read-only.
19774 (epa--find-coding-system-for-mime-charset): Fix the non-xemacs case.
19775 (epa-decrypt-armor-in-region): Make error message clearer.
19776
19777 2011-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
19778
19779 * minibuffer.el (completion-pcm--merge-completions): Don't merge "a1b"
19780 and "a2b" to "ab" for `prefix'.
19781
19782 2011-08-14 Chong Yidong <cyd@stupidchicken.com>
19783
19784 * ibuf-ext.el (ibuffer-filter-disable): New arg for deleting
19785 filter groups.
19786 (ibuffer-included-in-filter-p-1): Use it. Suggested by Rafaël
19787 Fourquet (Bug#8804).
19788
19789 2011-08-12 Juanma Barranquero <lekktu@gmail.com>
19790
19791 * startup.el (argi): Declare as global variable (bug#9275).
19792
19793 2011-08-12 Chong Yidong <cyd@stupidchicken.com>
19794
19795 * subr.el (string-mark-left-to-right): Search the entire string
19796 for RTL script, not just the terminating character. Doc fix.
19797
19798 2011-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
19799
19800 * progmodes/js.el (js-syntax-propertize, js-syntax-propertize-regexp):
19801 New function.
19802 (js--regexp-literal, js-syntax-propertize-function): Remove.
19803 (js-mode): Use js-syntax-propertize to handle multilines (bug#9183).
19804 (js-mode-map): Don't rebind electric keys.
19805 (js-insert-and-indent): Remove.
19806 (js-mode): Setup electric-layout and electric-indent instead.
19807
19808 * epa-file.el (epa-file-select-keys): Revert to nil default (bug#9280).
19809
19810 2011-08-12 Daiki Ueno <ueno@unixuser.org>
19811
19812 * epa.el (epa-progress-callback-function): Fix the logic of
19813 displaying progress.
19814 * epa-file.el (epa-file-insert-file-contents): Make progress
19815 display more user-friendly.
19816 (epa-file-write-region): Ditto.
19817
19818 2011-08-10 Chong Yidong <cyd@stupidchicken.com>
19819
19820 * subr.el (string-mark-left-to-right): New function.
19821
19822 * buff-menu.el (Buffer-menu-buffer+size): Remove LRM argument.
19823 Use string-mark-left-to-right.
19824 (list-buffers-noselect): Caller changed.
19825
19826 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
19827 Use string-mark-left-to-right.
19828 (tabulated-list-print): Recenter after moving point.
19829
19830 2011-08-10 Juri Linkov <juri@jurta.org>
19831
19832 * progmodes/grep.el (rgrep): Don't bind `process-connection-type'.
19833 This finishes incomplete reversion of 2011-06-30T01:09:13Z!larsi@gnus.org
19834 intended by 2011-07-06T15:49:19Z!larsi@gnus.org.
19835
19836 2011-08-09 Chong Yidong <cyd@stupidchicken.com>
19837
19838 * hi-lock.el (hi-lock-unface-buffer): Fix interactive spec
19839 (Bug#7554).
19840
19841 2011-08-09 Andreas Schwab <schwab@linux-m68k.org>
19842
19843 * xt-mouse.el (xterm-mouse-event-read): Try to recover the raw
19844 character. (Bug#6594)
19845
19846 2011-08-08 Chong Yidong <cyd@stupidchicken.com>
19847
19848 * image-dired.el: Don't use find-file for temporary work (Bug#7895).
19849 (image-dired--with-db-file): New macro.
19850 (image-dired-write-tags, image-dired-remove-tag)
19851 (image-dired-create-gallery-lists, image-dired-write-comments)
19852 (image-dired-get-comment, image-dired-mark-tagged-files)
19853 (image-dired-list-tags, image-dired-gallery-generate): Use it.
19854 (image-dired-gallery-generate): Use insert-file-contents.
19855
19856 * time.el (display-time-world-list, display-time-world-display):
19857 * time-stamp.el (time-stamp-string):
19858 * vc/add-log.el (add-change-log-entry): Use setenv instead of
19859 set-time-zone-rule (Bug#7337).
19860
19861 2011-08-08 Daiki Ueno <ueno@unixuser.org>
19862
19863 * epg.el (epg--status-KEYEXPIRED, epg--status-KEYREVOKED): Fix typo.
19864 (epg-error-to-string, epg-errors-to-string): New function.
19865 (epg-wait-for-completion): Reverse errors list.
19866 (epg--check-error-for-decrypt, epg-sign-file, epg-sign-string)
19867 (epg-encrypt-file, epg-encrypt-string, epg-export-keys-to-file)
19868 (epg--import-keys-1, epg-receive-keys, epg-delete-keys)
19869 (epg-sign-keys, epg-generate-key-from-file)
19870 (epg-generate-key-from-string): Format errors by using
19871 epg-errors-to-string (bug#9255).
19872 (epg--status-INV_SGNR, epg--status-NO_SGNR): New status handler.
19873
19874 2011-08-07 Juri Linkov <juri@jurta.org>
19875
19876 * faces.el (list-faces-display): Remove extra angle bracket
19877 from `help-mode-map'.
19878
19879 * info.el (Info-history-toc-nodes): Doc fix.
19880
19881 * longlines.el (longlines-mode): Doc fix.
19882
19883 2011-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
19884
19885 * progmodes/js.el (js--regexp-literal): Accept regexps at the beginning
19886 of statements and in a few more cases (bug#9183).
19887
19888 * emacs-lisp/cl-macs.el (cl--make-usage-var, cl--make-usage-args):
19889 New functions.
19890 (cl-transform-lambda): Use them (bug#9239).
19891
19892 2011-08-05 Martin Rudalics <rudalics@gmx.at>
19893
19894 * window.el (display-buffer-same-window)
19895 (display-buffer-same-frame, display-buffer-other-window)
19896 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
19897 (pop-to-buffer-other-window)
19898 (pop-to-buffer-same-frame-other-window)
19899 (pop-to-buffer-other-frame): Make them defuns.
19900 (switch-to-buffer): Don't set LABEL argument of pop-to-buffer.
19901
19902 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
19903
19904 * subr.el (make-composed-keymap): Move from C. Change calling
19905 convention, and improve docstring to bring attention to a subtle point.
19906 * minibuffer.el (completing-read-default): Adjust accordingly.
19907
19908 2011-08-03 Michael Albinus <michael.albinus@gmx.de>
19909
19910 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
19911 (tramp-open-shell): Use `tramp-shell-quote-argument'.
19912
19913 * net/trampver.el: Update release number.
19914
19915 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
19916
19917 * progmodes/sh-script.el (sh-font-lock-paren): Don't mistake "main" for
19918 "in" (bug#9190).
19919
19920 2011-08-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
19921
19922 * mail/sendmail.el (sendmail-query-once): Restore the current
19923 buffer after querying (bug#9074).
19924
19925 * dired.el (dired-flagged): Use different faces for marked and
19926 flagged files (bug#6117).
19927
19928 * emacs-lisp/cl-macs.el (dolist): Mention that there's a nil block
19929 (bug#4433).
19930
19931 * ido.el (ido-mode): Switch off the message if called
19932 non-interactively.
19933
19934 * mail/smtpmail.el (smtpmail-query-smtp-server): Try port 25
19935 before 587, since it appears that that's more likely to work for
19936 more people.
19937
19938 * cus-edit.el (custom-file): When running under emacs -q, always
19939 refuse to save the customizations, even if the .emacs file doesn't
19940 exist.
19941
19942 * info.el: Remove the `Info-beginning-of-buffer' function
19943 (bug#8325).
19944
19945 * net/network-stream.el (network-stream-open-starttls):
19946 Use `starttls-available-p' to see whether starttls.el can be used.
19947
19948 2011-08-01 Martin Rudalics <rudalics@gmx.at>
19949
19950 * window.el (display-buffer-in-window): Don't set dedicated status
19951 of window here (Bug#9215).
19952 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
19953 (display-buffer-pop-up-side-window)
19954 (display-buffer-in-side-window): Set dedicated status of window here.
19955
19956 2011-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
19957
19958 * emacs-lisp/package.el (package-generate-autoloads): Load autoloads
19959 before binding generated-autoload-file.
19960
19961 2011-08-01 Deniz Dogan <deniz@dogan.se>
19962
19963 * net/rcirc.el (rcirc-handler-333): Clarify docstring.
19964
19965 2011-07-30 Michael Albinus <michael.albinus@gmx.de>
19966
19967 Sync with Tramp 2.2.2.
19968
19969 * net/trampver.el: Update release number.
19970
19971 2011-07-30 Juri Linkov <juri@jurta.org>
19972
19973 * dired-aux.el (dired-touch-initial): Remove function.
19974 (dired-do-chxxx): For op-symbol `touch', set `initial' to the
19975 current time, and `default' to the last modification time of the
19976 current marked file (bug#6887).
19977
19978 2011-07-28 Jose E. Marchesi <jemarch@gnu.org>
19979
19980 * simple.el (goto-line): Use string-to-number to provide a
19981 numeric argument to read-number (bug#9163).
19982
19983 2011-07-27 Michael Albinus <michael.albinus@gmx.de>
19984
19985 * net/tramp-sh.el (tramp-maybe-send-script): Don't let-bind the
19986 connection process, it could be nil.
19987
19988 2011-07-27 Leo Liu <sdl.web@gmail.com>
19989
19990 Simplify url handling in rcirc-mode.
19991
19992 * net/rcirc.el (rcirc-browse-url-map, rcirc-browse-url-at-point)
19993 (rcirc-browse-url-at-mouse): Remove.
19994 * net/rcirc.el (rcirc-markup-urls): Use `make-button'.
19995
19996 2011-07-26 Alan Mackenzie <acm@muc.de>
19997
19998 Fontify bitfield declarations properly.
19999
20000 * progmodes/cc-langs.el (c-has-bitfields): New lang variable.
20001 (c-symbol-chars): Now exported as a lang variable.
20002 (c-not-primitive-type-keywords): New lang variable.
20003
20004 * progmodes/cc-fonts.el (c-font-lock-declarations): Jump over the
20005 QT keyword "more" to prevent "more slots: ...." being spuriously
20006 parsed as a bitfield declaration.
20007
20008 * progmodes/cc-engine.el (c-beginning-of-statement-1):
20009 Refactor and enhance to handle bitfield declarations.
20010 (c-punctuation-in): New function.
20011 (c-forward-decl-or-cast-1): Enhance CASE 3 to handle bitfield
20012 declarations properly.
20013
20014 2011-07-26 Ulf Jasper <ulf.jasper@web.de>
20015
20016 * calendar/icalendar.el (icalendar--all-events): Take care of
20017 multiple vcalendars in a single file.
20018 (icalendar--convert-float-to-ical): Checkdoc fixes.
20019
20020 2011-07-25 Deniz Dogan <deniz@dogan.se>
20021
20022 * image.el (insert-image): Clarifying docstring.
20023
20024 2011-07-24 Michael Albinus <michael.albinus@gmx.de>
20025
20026 * net/tramp-sh.el (tramp-barf-unless-okay): Return the value of
20027 `tramp-send-command-and-check' if there is no error.
20028 (tramp-send-command-and-read): Suppress *all* errors if NOERROR.
20029
20030 2011-07-22 Alan Mackenzie <acm@muc.de>
20031
20032 Prevent cc-langs.elc being loaded at run time.
20033
20034 * progmodes/cc-mode.el: Remove two autoload forms which loaded
20035 cc-langs.
20036
20037 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Don't emit
20038 "(require 'cc-langs)". Quote a form so it will evaluate at
20039 (cc-mode's) compilation time.
20040
20041 2011-07-22 Michael Albinus <michael.albinus@gmx.de>
20042
20043 * net/tramp.el (tramp-file-name-handler): Avoid recursive
20044 loading. (Bug#9114)
20045
20046 2011-07-21 Martin Rudalics <rudalics@gmx.at>
20047
20048 * window.el (display-buffer-pop-up-window)
20049 (display-buffer-pop-up-side-window)
20050 (display-buffer-in-side-window): Call display-buffer-set-height
20051 and display-buffer-set-width after setting the new window's
20052 buffer so `fit-window-to-buffer' and friends work on the right buffer.
20053
20054 2011-07-20 Sam Steingold <sds@gnu.org>
20055
20056 * progmodes/etags.el (etags-file-of-tag, etags-tags-table-files)
20057 (etags-tags-included-tables): Call `convert-standard-filename' on
20058 the file names contained in TAGS so that windows Emacs can handle
20059 TAGS files created by cygwin ctags.
20060
20061 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
20062
20063 * proced.el (proced-update): Revert yesterday's bug#1779 patch,
20064 which apparently didn't work.
20065
20066 2011-07-19 Roland Winkler <winkler@gnu.org>
20067
20068 * proced.el (proced-send-signal): For *Marked Processes* buffer
20069 put point at beginning of buffer.
20070
20071 2011-07-19 Stephen Berman <stephen.berman@gmx.net>
20072
20073 * proced.el (proced-format): Make header lines align with the text
20074 (bug#1779).
20075
20076 2011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
20077
20078 * view.el (view-buffer): Allow running in `special' modes if we're
20079 visiting a file (bug#8615).
20080
20081 2011-07-19 Martin Rudalics <rudalics@gmx.at>
20082
20083 * window.el (display-buffer-alist-of-strings-p)
20084 (display-buffer-alist-set-1, display-buffer-alist-set-2):
20085 New functions.
20086 (display-buffer-alist-set): Rewrite to handle Emacs 23 options
20087 more accurately.
20088
20089 2011-07-18 Alan Mackenzie <acm@muc.de>
20090
20091 Fontify declarators properly when, e.g., a jit-lock chunk begins
20092 inside a declaration.
20093
20094 * progmodes/cc-langs.el (c-symbol-chars): Correct a typo.
20095
20096 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
20097 New function.
20098 (c-complex-decl-matchers): Insert reference to
20099 c-font-lock-enclosing-decls.
20100
20101 * progmodes/cc-engine.el (c-backward-single-comment):
20102 (c-backward-comments): Bind open-paren-in-column-0-is-defun-start
20103 to nil around calls to (forward-comment -1).
20104
20105 2011-07-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
20106
20107 * image.el (put-image): Doc typo fix.
20108
20109 * progmodes/etags.el (tags-search): Doc typo fix.
20110
20111 * mail/smtpmail.el (smtpmail-via-smtp): Query the user for
20112 password if we get errors 550 to 554.
20113
20114 2011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
20115
20116 * net/gnutls.el (gnutls-log-level): Remove.
20117
20118 * textmodes/fill.el (adaptive-fill-regexp): Include EN DASH as an
20119 indentation character (bug#6380).
20120
20121 * files.el (buffer-offer-save): Made permanently local (bug#6241).
20122
20123 * doc-view.el (doc-view-make-safe-dir): Rewrite the error message
20124 to clarify what the problem is (bug#4291).
20125
20126 * simple.el (current-kill): Clarify what
20127 `interprogram-paste-function' does (bug#7500).
20128 (auto-fill-mode): Document `auto-fill-function' in relation to
20129 `auto-fill-mode' (bug#2470).
20130
20131 2011-07-16 Lawrence Mitchell <wence@gmx.li>
20132
20133 * emacs-lisp/cl-macs.el (defstruct): Ignore argument to setf
20134 method if slot is read-only (bug#9035).
20135
20136 2011-07-16 Martin Rudalics <rudalics@gmx.at>
20137
20138 * frame.el (select-frame-set-input-focus): New argument NORECORD.
20139 * window.el (pop-to-buffer): Select window used even if it was
20140 selected before, see discussion of (Bug#8615), (Bug#6954).
20141 Pass argument NORECORD on to select-frame-set-input-focus.
20142
20143 2011-07-15 Glenn Morris <rgm@gnu.org>
20144
20145 * subr.el (read-char-choice): Allow quitting. (Bug#9001)
20146 Respect help-form.
20147
20148 2011-07-09 Lawrence Mitchell <wence@gmx.li>
20149
20150 * net/gnutls.el (gnutls-min-prime-bits): New variable.
20151 (gnutls-negotiate): Use it.
20152
20153 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
20154
20155 * net/gnutls.el (gnutls-negotiate):
20156 Upcase `gnutls-algorithm-priority'.
20157
20158 2011-07-15 Glenn Morris <rgm@gnu.org>
20159
20160 * jka-compr.el (jka-compr-verbose): Move from here...
20161 * jka-cmpr-hook.el (jka-compr-verbose): ... to here. (Bug#9090)
20162 Add missing :version tag.
20163 * info.el: No need to require jka-compr when compiling.
20164
20165 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
20166
20167 * net/gnutls.el (gnutls-algorithm-priority): New variable.
20168 (gnutls-negotiate): Use it.
20169
20170 * emacs-lisp/cl-macs.el (declare): Link to the "Declarations" node.
20171
20172 * info.el (Info-beginning-of-buffer): New command.
20173 (Info-mode-map): Use it instead of `beginning-of-buffer' to allow
20174 announcing `b' as the key (bug#8325).
20175 (Info-mode-menu): Use `Info-beginning-of-buffer' for consistency.
20176
20177 * emacs-lisp/cl-macs.el (declare): Doc string fix-up.
20178
20179 * international/mule-cmds.el
20180 (describe-specified-language-support): Make the error message
20181 clearer (bug#8905).
20182
20183 * emacs-lisp/cl-macs.el (declare): Add a doc string (bug#8690).
20184
20185 * isearch.el (isearch-barrier): Add a doc string, since it's
20186 mentioned in a function doc string (bug#8678).
20187
20188 2011-07-15 Martin Rudalics <rudalics@gmx.at>
20189
20190 * window.el (switch-to-buffer): Call pop-to-buffer with normalized
20191 buffer argument (Bug#9083) and self-identifying label argument.
20192
20193 2011-07-15 Glenn Morris <rgm@gnu.org>
20194
20195 * emacs-lisp/debug.el (debug): Doc fix. (Bug#8273)
20196
20197 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
20198
20199 * man.el (Man-fontify-manpage): Fix message when formatting the
20200 man page (bug#7929).
20201
20202 2011-07-14 Eli Zaretskii <eliz@gnu.org>
20203
20204 * buff-menu.el (Buffer-menu-buffer+size): Accept an additional
20205 argument LRM; if non-nil, append an invisible LRM character to the
20206 buffer name.
20207 (list-buffers-noselect): Call Buffer-menu-buffer+size with the
20208 last argument non-nil, when formatting buffer names.
20209 (Buffer-menu-mode, list-buffers-noselect): Force left-to-right
20210 paragraph direction.
20211
20212 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
20213
20214 * man.el (Man-bgproc-sentinel): Skip any arguments and only output
20215 the man page name (bug#7929).
20216
20217 * image.el (put-image): Mention the `put-image' overlay property
20218 (bug#7834).
20219
20220 * scroll-bar.el (set-scroll-bar-mode): Mention that
20221 `scroll-bar-mode' lists the values (bug#7772).
20222
20223 * image-mode.el (image-mode-fit-frame): Mention that it's a toggle
20224 command (bug#7729).
20225
20226 * rect.el (apply-on-rectangle): Return the point after the last
20227 operation.
20228 (string-rectangle): Go to the point after the last operation
20229 (bug#7522).
20230
20231 * printing.el (pr-toggle-region): Clarify the documentation
20232 slightly (bug#7493).
20233
20234 * time.el (display-time-update):
20235 Allow `display-time-mail-function' to return nil (bug#7158).
20236 Fix suggested by Detlev Zundel.
20237
20238 * vc/diff.el (diff): Clarify the order the file names are read
20239 (bug#7111).
20240
20241 * mouse.el (mouse-set-region): Link to `mouse-drag-copy-region' in
20242 the doc string (bug#7015).
20243
20244 * font-lock.el (font-lock-maximum-decoration): Mention what
20245 numeric levels mean (bug#6935).
20246
20247 * startup.el (initial-buffer-choice): Don't mention the `none'
20248 selection, which is against policy.
20249
20250 2011-07-14 Martin Rudalics <rudalics@gmx.at>
20251
20252 * window.el (display-buffer-normalize-special):
20253 Replace `dedicated' by `dedicate' to dedicate window (Bug#9072).
20254
20255 2011-07-14 Eli Zaretskii <eliz@gnu.org>
20256
20257 * subr.el (version<, version<=, version=): Mention "-CVS" and
20258 "-12345" alpha version numbers.
20259
20260 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
20261
20262 * bindings.el: Add advertised binding for set-mark-command
20263 (Bug#5772).
20264
20265 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
20266
20267 * bindings.el (mode-line-other-buffer):
20268 * bookmark.el (bookmark-bmenu-2-window):
20269 * bs.el (bs-cycle-next, bs-cycle-previous):
20270 * net/tramp-cmds.el (tramp-append-tramp-buffers): Revert to using
20271 switch-to-buffer.
20272
20273 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
20274 Delete.
20275
20276 2011-07-14 Juanma Barranquero <lekktu@gmail.com>
20277
20278 * follow.el (follow-debug-message, follow-redisplay):
20279 * jka-cmpr-hook.el (with-auto-compression-mode):
20280 Fix typos in docstrings.
20281
20282 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
20283
20284 * subr.el (with-silent-modifications): Clarify somewhat what the
20285 macro inhibits (bug#6525).
20286
20287 * simple.el (eval-expression): Note what it does if called
20288 interactively (bug#6495).
20289
20290 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
20291
20292 * window.el (switch-to-buffer): New arg FORCE-SAME-WINDOW.
20293 Use pop-to-buffer buffer-or-name if it is nil.
20294
20295 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
20296 Remove switch-to-buffer.
20297
20298 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
20299
20300 * files.el (make-directory): Clarify that an error will be raised
20301 if there's an error (bug#6397).
20302
20303 * startup.el (initial-buffer-choice): Add `none' as a choice
20304 (bug#6234).
20305
20306 * subr.el (add-hook): Clarify section about buffer-local hooks
20307 (bug#6218).
20308
20309 * dired.el (dired-flagged): Clarify doc string (bug#6117).
20310
20311 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
20312
20313 * tabify.el (untabify): Preserve the current column so that point
20314 doesn't move (bug#6032).
20315
20316 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
20317
20318 * progmodes/cperl-mode.el (cperl-syntaxify-by-font-lock):
20319 Rewrite to avoid awkward possessive "s" (bug#5986).
20320
20321 2011-07-13 Glenn Morris <rgm@gnu.org>
20322
20323 * dired.el (dired-use-ls-dired): Doc fix. (Bug#9039).
20324 (dired-insert-directory): Give a message the first time
20325 if ls is found not to support --dired.
20326
20327 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
20328
20329 * simple.el (toggle-truncate-lines): Clarify what is toggled
20330 (bug#5580). Text by Drew Adams.
20331
20332 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
20333
20334 * simple.el (blink-matching-open): Make the error message from the
20335 last change less verbose.
20336
20337 2011-07-13 Dan Nicolaescu <dann@ics.uci.edu>
20338
20339 * font-lock.el (font-lock-comment-face): Use the high contrast
20340 "yellow" color for font-lock-comment-face on low color terminals
20341 using a dark background color (bug#4221).
20342
20343 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
20344
20345 * dired.el (dired-insert-set-properties): Make the doc string
20346 reflect what it does now (bug#5325).
20347
20348 * simple.el (blink-matching-open): Say that we were unable to find
20349 the match within the limit, if we're limited (bug#5122).
20350
20351 * international/mule-cmds.el (prefer-coding-system): Add an
20352 example (bug#4869).
20353
20354 * progmodes/etags.el (tags-search): Document `file-list-form'
20355 (bug#4731).
20356
20357 2011-07-13 Lawrence Mitchell <wence@gmx.li>
20358
20359 * net/browse-url.el (browse-url-default-browser)
20360 (browse-url-browser-function): Make the default browser choice a
20361 bit more logical (bug#4300). Also clean up the doc string.
20362
20363 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
20364
20365 * bindings.el (completion-ignored-extensions): Add OpenMCL/Clozure
20366 binary endings (bug#4440).
20367
20368 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
20369
20370 * info.el (info-insert-file-contents): Inhibit jka-compr messages,
20371 which can be pretty annoying (bug#8971).
20372
20373 * jka-compr.el (jka-compr-verbose): New variable, and use
20374 throughout (bug#8971).
20375
20376 * info.el (Info-find-file): Fall back on the installation
20377 directory if we can't find the info node anywhere else.
20378
20379 2011-07-13 Sergei Organov <osv@javad.com> (tiny change)
20380
20381 * vc/vc.el (vc-revert-file):
20382 Don't set file time-stamp in the past. (Bug#5181)
20383
20384 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
20385
20386 * files.el (after-find-file): Give a better error message when
20387 trying to find a symlink that points to a file that doesn't exist
20388 (bug#4398).
20389
20390 * progmodes/cc-vars.el: Remove (probably) misleading comment
20391 (bug#4396).
20392
20393 2011-07-12 Johan Bockgård <bojohan@gnu.org>
20394
20395 * mouse-sel.el (mouse-sel-primary-overlay): Use the `region' face.
20396
20397 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
20398
20399 * mouse-sel.el: Hack restoring functionality, while keeping
20400 compatibility with 2010-07-03 changes to mouse selection.
20401 (mouse-sel-primary-overlay): New var.
20402 (mouse-sel-selection-alist): Use it.
20403 (mouse-sel-mode): Doc fix; remove points that are default features
20404 of mouse.el.
20405
20406 2011-07-12 Johan Bockgård <bojohan@gnu.org>
20407
20408 * progmodes/compile.el (compilation-error-regexp-alist-alist):
20409 Fix previous fix (bug#2490).
20410
20411 2011-07-12 Roland Winkler <winkler@gnu.org>
20412
20413 * textmodes/bibtex.el (bibtex-initialize):
20414 Use pop-to-buffer-same-window.
20415 (bibtex-search-entries): Fix interactive call.
20416
20417 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
20418
20419 * progmodes/compile.el (compilation-error-regexp-alist-alist):
20420 Fontise bytecomp Error lines more correctly (bug#2490).
20421 Fix suggested by Johan Bockgård.
20422
20423 * subr.el (remove-duplicates): Remove; `delete-dups' is sufficient.
20424
20425 * dired-x.el (dired-guess-default): Use `delete-dups'.
20426
20427 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
20428
20429 * dired.el (dired-mark-prompt):
20430 * dired-aux.el (dired-read-shell-command): Doc fix.
20431
20432 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
20433
20434 * mail/sendmail.el (sendmail-query-once):
20435 Use `customize-save-variable' unconditionally, now that it works under
20436 emacs -Q.
20437
20438 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
20439
20440 * cus-edit.el (custom-file): Take an optional no-error variable.
20441 (customize-save-variable): Set the variable, and give a warning if
20442 running under "emacs -q".
20443
20444 2011-07-11 Juanma Barranquero <lekktu@gmail.com>
20445
20446 * loadhist.el (unload-feature-special-hooks):
20447 Add `auto-coding-functions', `fill-nobreak-predicate' and
20448 `find-directory-functions' (bug#5327).
20449
20450 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
20451
20452 * vc/ediff.el (ediff-patch-file): Clarify doc string (bug#3138).
20453
20454 * cus-edit.el (custom-guess-name-alist): -alist variables should
20455 use the `alist' type (bug#3120). Suggested by Drew Adams.
20456
20457 * printing.el: Add documentation to all the `pr-toggle-' commands.
20458
20459 2011-07-11 Leo Liu <sdl.web@gmail.com>
20460
20461 * files.el (toggle-read-only): Only do the `C-x C-q' warning on VC
20462 backends where it makes sense (bug#2623).
20463
20464 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
20465
20466 * dired-x.el (dired-guess-default): Remove duplicate shell command
20467 entries (bug#2028).
20468 (dired-guess-default): Fix grammar in doc string (bug#2028).
20469 (dired-guess-shell-alist-user): Clarify the example a bit (bug#2030).
20470
20471 * subr.el (remove-duplicates): New conveniency function.
20472
20473 2011-07-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
20474
20475 * tool-bar.el (tool-bar-mode): Clarify positive/negative arguments
20476 (bug#1526).
20477
20478 2011-07-10 Martin Rudalics <rudalics@gmx.at>
20479
20480 * window.el (display-buffer-normalize-default): Don't invert
20481 meaning of even-window-heights. Reported by Eli Zaretskii
20482 <eliz@gnu.org>.
20483
20484 2011-07-10 Bob Rogers <rogers@rgrjr.dyndns.org>
20485
20486 * vc/vc.el (vc-diff-internal): Fix race condition (Bug#1256).
20487
20488 2011-07-10 Chong Yidong <cyd@stupidchicken.com>
20489
20490 * window.el (display-buffer): Fix arguments to
20491 display-buffer-reuse-window in last change.
20492
20493 * faces.el (link): Use a less saturated blue on light backgrounds.
20494
20495 * startup.el (fancy-startup-text, fancy-about-text)
20496 (fancy-startup-tail): Use font-lock faces, for background safety.
20497
20498 2011-07-09 Bob Nnamtrop <bobnnamtrop@gmail.com> (tiny change)
20499
20500 * emulation/viper-cmd.el (viper-change-state-to-vi):
20501 Limit triggering of abbrev expansion (Bug#9038).
20502
20503 2011-07-09 Martin Rudalics <rudalics@gmx.at>
20504
20505 * window.el (display-buffer-default-specifiers): Remove.
20506 (display-buffer-macro-specifiers): Remove default specifiers.
20507 (display-buffer-alist): Default to nil.
20508 (display-buffer-reuse-window): New optional argument other-window.
20509 (display-buffer-pop-up-window): Allow splitting internal
20510 windows. Check whether a live window was created.
20511 (display-buffer-other-window-means-other-frame)
20512 (display-buffer-normalize-arguments): Rename to
20513 display-buffer-normalize-argument and rewrite. Set the
20514 other-window specifier.
20515 (display-buffer-normalize-special): New function.
20516 (display-buffer-normalize-options): Rename to
20517 display-buffer-normalize-default and rewrite.
20518 (display-buffer-normalize-options-inhibit): Remove.
20519 (display-buffer-normalize-specifiers): Rewrite.
20520 (display-buffer): Process other-window specifier and call
20521 display-buffer-reuse-window with it. Emulate Emacs 23 behavior
20522 more faithfully.
20523 (pop-up-windows, even-window-heights): Restore Emacs 23 default values.
20524 (display-buffer-alist-set): Don't handle 'unset default values.
20525 (display-buffer-in-window, display-buffer-alist-set):
20526 Replace symbol "dedicated" by "dedicate". Reported by Tassilo Horn
20527 <tassilo@member.fsf.org>.
20528
20529 2011-07-09 Leo Liu <sdl.web@gmail.com>
20530
20531 * register.el (insert-register): Restore accidental change on
20532 2011-06-26. (Bug#9028)
20533
20534 2011-07-09 Glenn Morris <rgm@gnu.org>
20535
20536 * subr.el (remq): Handle the empty list. (Bug#9024)
20537
20538 2011-07-08 Andreas Schwab <schwab@linux-m68k.org>
20539
20540 * mail/sendmail.el (send-mail-function): No longer delay custom
20541 initialization.
20542 * custom.el (custom-initialize-delay): Doc fix.
20543
20544 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
20545
20546 * abbrev.el (expand-abbrev): Try to preserve point (bug#5805).
20547
20548 2011-07-08 Michael Albinus <michael.albinus@gmx.de>
20549
20550 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use a
20551 human-friendly prompt.
20552
20553 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
20554
20555 * vc/vc-bzr.el (vc-bzr-revision-keywords): Remove svn, it's only
20556 provided by a particular plugin.
20557
20558 2011-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
20559
20560 * mail/sendmail.el (sendmail-query-once): If we aren't allowed to
20561 save customizations (with "emacs -Q"), just set the variable
20562 instead of erroring out.
20563
20564 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
20565
20566 2011-07-08 Juri Linkov <juri@jurta.org>
20567
20568 * arc-mode.el (archive-zip-expunge, archive-zip-update)
20569 (archive-zip-update-case): Use 7z if found by `executable-find'.
20570 The order of searching the available programs is the same as in
20571 `archive-zip-extract' (bug#8968).
20572
20573 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
20574
20575 * menu-bar.el (menu-bar-line-wrapping-menu): Revert last change.
20576 (menu-bar-options-menu): Tweak descriptions.
20577
20578 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
20579
20580 * menu-bar.el (menu-bar-line-wrapping-menu): Make all the Options
20581 menu items into verb phrases (bug#1421). Also refill to fit under
20582 80 columns.
20583
20584 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
20585
20586 * info.el (info, Info-read-node-name-2, Info-read-node-name-1)
20587 (Info-read-node-name): Doc fix (Bug#1084).
20588
20589 * thingatpt.el (forward-thing, bounds-of-thing-at-point)
20590 (thing-at-point, beginning-of-thing, end-of-thing, in-string-p)
20591 (end-of-sexp, beginning-of-sexp)
20592 (thing-at-point-bounds-of-list-at-point, forward-whitespace)
20593 (forward-symbol, forward-same-syntax, word-at-point)
20594 (sentence-at-point): Doc fix (Bug#1144).
20595
20596 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
20597
20598 * info.el (Info-mode-map): Remove S-TAB binding, since [backtab]
20599 should cover it (bug#1281).
20600
20601 * cus-edit.el (custom-show): Mark as obsolete.
20602
20603 * net/network-stream.el (network-stream-open-starttls): If GnuTLS
20604 negotiation fails, then possibly try again with a non-encrypted
20605 connection (bug#9017).
20606
20607 * mail/smtpmail.el (smtpmail-stream-type): Note that `plain' can
20608 be used.
20609
20610 2011-07-07 Richard Stallman <rms@gnu.org>
20611
20612 * mail/rmail.el (rmail-next-error-move): Use `compilation-message'
20613 property, and handle its changed format.
20614 Look for the correct line number.
20615 Use file's line contents (but not past first =) to find
20616 correct line in message.
20617
20618 2011-07-07 Kenichi Handa <handa@m17n.org>
20619
20620 * international/characters.el (build-unicode-category-table):
20621 Delete it.
20622 (unicode-category-table): Set it by unicode-property-table-internal.
20623
20624 * international/mule-cmds.el (char-code-property-alist): Move to
20625 to src/chartab.c.
20626 (get-char-code-property): Call unicode-property-table-internal to
20627 load a file. Call get-unicode-property-internal where necessary.
20628 (put-char-code-property): Call unicode-property-table-internal to
20629 load a file. Call put-unicode-property-internal where necessary.
20630 put-unicode-property-internal where necessary.
20631 (char-code-property-description):
20632 Call unicode-property-table-internal to load a file.
20633
20634 * international/charprop.el:
20635 * international/uni-bidi.el:
20636 * international/uni-category.el:
20637 * international/uni-combining.el:
20638 * international/uni-comment.el:
20639 * international/uni-decimal.el:
20640 * international/uni-decomposition.el:
20641 * international/uni-digit.el:
20642 * international/uni-lowercase.el:
20643 * international/uni-mirrored.el:
20644 * international/uni-name.el:
20645 * international/uni-numeric.el:
20646 * international/uni-old-name.el:
20647 * international/uni-titlecase.el:
20648 * international/uni-uppercase.el: Regenerate.
20649
20650 * loadup.el: Load international/charprop.el before
20651 international/characters.
20652
20653 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
20654
20655 * window.el (next-buffer, previous-buffer): Signal an error if
20656 called from a minibuffer window.
20657
20658 * bindings.el: Revert 2011-07-04 change.
20659
20660 2011-07-06 Richard Stallman <rms@gnu.org>
20661
20662 * mail/rmailmm.el (rmail-mime-process): Use markers for buf positions.
20663 (rmail-mime-insert-bulk, rmail-mime-insert-text):
20664 Treat markers like ints.
20665 (rmail-mime-entity): Doc fix.
20666
20667 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
20668
20669 * mail/smtpmail.el (smtpmail-default-smtp-server): Made into a
20670 defcustom again for backwards compatibility.
20671
20672 * simple.el (shell-command-on-region): Fill.
20673
20674 * dired-aux.el (dired-kill-line): Add a doc string.
20675
20676 * dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults
20677 to "\\sw\\|\\s_" (bug#358).
20678
20679 * dired.el (dired-mode): Clarify "unmark or unflag" (bug#8770).
20680 (dired-unmark-backward): Ditto.
20681 (dired-flag-backup-files): Ditto.
20682
20683 * dired-x.el (dired-mark-sexp): Ditto.
20684
20685 2011-07-06 Richard Stallman <rms@gnu.org>
20686
20687 * mail/rmailmm.el: Give entity a new slot, TRUNCATED.
20688 (rmail-mime-entity): New arg TRUNCATED.
20689 (rmail-mime-entity-truncated, rmail-mime-entity-set-truncated):
20690 New functions.
20691 (rmail-mime-save): Warn if entity is truncated.
20692 (rmail-mime-toggle-hidden): Likewise, for showing.
20693 (rmail-mime-process-multipart): Record when an entity is truncated.
20694
20695 * mail/rmailmm.el (rmail-search-mime-message): Don't get confused
20696 if ENTITY is a string.
20697
20698 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
20699
20700 * emacs-lisp/lisp-mode.el (eval-defun-1): Update the documentation
20701 of faces when `M-C-x'-ing their definitions (bug#8378).
20702 Also clean up the code slightly.
20703
20704 * progmodes/grep.el (rgrep): Don't bind `process-connection-type',
20705 because that makes the colors go away.
20706
20707 * mail/sendmail.el (send-mail-function): Change the default to
20708 `sendmail-query-once'.
20709 (sendmail-query-once): Add an autoload cookie.
20710
20711 * net/network-stream.el (network-stream-open-starttls): Try using
20712 a plain connection even if the server offered STARTTLS, and we
20713 kinda wanted to use it, if Emacs doesn't have any STARTTLS
20714 capability. This should make smtpmail.el work in slightly more
20715 configurations.
20716
20717 2011-07-06 Michael Albinus <michael.albinus@gmx.de>
20718
20719 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
20720 New defun.
20721 * net/tramp-cmds.el (tramp-append-tramp-buffers): Use it.
20722
20723 2011-07-06 Michael R. Mauger <mmaug@yahoo.com>
20724
20725 * progmodes/sql.el: Version 3.0
20726 (sql-product-alist): Add product :completion-object,
20727 :completion-column, and :statement attributes.
20728 (sql-mode-menu, sql-interactive-mode-map): Fix List entries.
20729 (sql-mode-syntax-table): Mark all punctuation.
20730 (sql-font-lock-keywords-builder): Temporarily remove fallback on
20731 ansi keywords.
20732 (sql-regexp-abbrev, sql-regexp-abbrev-list): New functions.
20733 (sql-mode-oracle-font-lock-keywords): Improve.
20734 (sql-oracle-show-reserved-words): New function for development.
20735 (sql-product-font-lock): Simplify for source code buffers.
20736 (sql-product-syntax-table, sql-product-font-lock-syntax-alist):
20737 New functions.
20738 (sql-highlight-product): Set product specific syntax table.
20739 (sql-mode-map): Add statement movement functions.
20740 (sql-ansi-statement-starters, sql-oracle-statement-starters):
20741 New variable.
20742 (sql-statement-regexp, sql-beginning-of-statement)
20743 (sql-end-of-statement, sql-signum): New functions.
20744 (sql-buffer-live-p, sql=find-sqli-buffer): Add CONNECTION parameter.
20745 (sql-show-sqli-buffer): Bug fix.
20746 (sql-interactive-mode): Store connection data as buffer local.
20747 (sql-connect): Add NEW-NAME parameter. Redesign interaction
20748 with sql-interactive-mode.
20749 (sql-save-connection): Save buffer local settings.
20750 (sql-connection-menu-filter): Change menu entry name.
20751 (sql-product-interactive): Bug fix.
20752 (sql-preoutput-hold): New variable.
20753 (sql-interactive-remove-continuation-prompt): Bug fixes.
20754 (sql-debug-redirect): New variable.
20755 (sql-str-literal): New function.
20756 (sql-redirect, sql-redirect-one, sql-redirect-value, sql-execute):
20757 Redesign.
20758 (sql-oracle-save-settings, sql-oracle-restore-settings)
20759 (sql-oracle-list-all, sql-oracle-list-table): New functions.
20760 (sql-completion-object, sql-completion-column)
20761 (sql-completion-sqlbuf): New variables.
20762 (sql-build-completions-1, sql-build-completions)
20763 (sql-try-completion): New functions.
20764 (sql-read-table-name): Use them.
20765 (sql-contains-names): New buffer local variable.
20766 (sql-list-all, sql-list-table): Use it.
20767 (sql-oracle-completion-types): New variable.
20768 (sql-oracle-completion-object, sql-sqlite-completion-object)
20769 (sql-postgres-completion-object): New functions.
20770
20771 2011-07-06 Glenn Morris <rgm@gnu.org>
20772
20773 * window.el (pop-to-buffer): Doc fix.
20774
20775 2011-07-06 Markus Heiser <markus.heiser@darmarit.de> (tiny change)
20776
20777 * progmodes/gud.el (gud-pdb-marker-regexp): Accept \r char (Bug#5653).
20778
20779 2011-07-06 Chong Yidong <cyd@stupidchicken.com>
20780
20781 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
20782
20783 * info.el (Info-directory-toc-nodes): Minor doc fix (Bug#8833).
20784
20785 2011-07-05 Chong Yidong <cyd@stupidchicken.com>
20786
20787 * button.el (button): Inherit from link face. Suggested by Dan
20788 Nicolaescu.
20789
20790 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
20791
20792 * progmodes/gdb-mi.el: Fit in 80 columns.
20793 (gdb-setup-windows, gdb-restore-windows): Avoid other-window and
20794 switch-to-buffer.
20795
20796 * progmodes/which-func.el (which-func-ff-hook): Don't output a message
20797 if imenu is simply not configured (bug#8941).
20798
20799 2011-07-05 Ken Manheimer <ken.manheimer@gmail.com>
20800
20801 * allout.el (allout-post-undo-hook): New allout outline-change
20802 event hook to signal undo activity.
20803 (allout-post-command-business): Run allout-post-undo-hook if an
20804 undo just occurred.
20805 (allout-after-copy-or-kill-hook, allout-mode): Minor docstring changes.
20806 * allout-widgets.el (allout-widgets-after-undo-function):
20807 Ensure the integrity of the current item's decoration after it has been
20808 in the vicinity of an undo.
20809 (allout-widgets-mode): Include allout-widgets-after-undo-function
20810 on the new allout-post-undo-hook.
20811
20812 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
20813
20814 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-abbrev-table):
20815 Let define-derived-mode define it.
20816 * emacs-lisp/derived.el (define-derived-mode): Try to avoid creating
20817 cycles of abbrev-table inheritance (bug#8998).
20818
20819 2011-07-05 Roland Winkler <winkler@gnu.org>
20820
20821 * textmodes/bibtex.el: Add support for biblatex.
20822 (bibtex-BibTeX-entry-alist, bibtex-biblatex-entry-alist)
20823 (bibtex-BibTeX-field-alist, bibtex-biblatex-field-alist)
20824 (bibtex-dialect-list, bibtex-dialect, bibtex-no-opt-remove-re)
20825 (bibtex-entry-alist, bibtex-field-alist): New variables.
20826 (bibtex-entry-field-alist): Obsolete alias for
20827 bibtex-BibTeX-entry-alist.
20828 (bibtex-entry-alist, bibtex-field-alist): New widgets.
20829 (bibtex-set-dialect): New command.
20830 (bibtex-entry-type, bibtex-entry-head)
20831 (bibtex-entry-maybe-empty-head, bibtex-any-valid-entry-type):
20832 Bind via bibtex-set-dialect.
20833 (bibtex-Article, bibtex-Book, bibtex-Booklet, bibtex-InBook)
20834 (bibtex-InCollection, bibtex-InProceedings, bibtex-Manual)
20835 (bibtex-MastersThesis, bibtex-Misc, bibtex-PhdThesis)
20836 (bibtex-Proceedings, bibtex-TechReport, bibtex-Unpublished):
20837 Define via bibtex-set-dialect.
20838 (bibtex-name-in-field, bibtex-remove-OPT-or-ALT):
20839 Obey bibtex-no-opt-remove-re.
20840 (bibtex-vec-push, bibtex-vec-incr): New functions.
20841 (bibtex-format-entry, bibtex-field-list)
20842 (bibtex-print-help-message, bibtex-validate)
20843 (bibtex-search-entries): Use new format of bibtex-entry-alist.
20844
20845 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
20846
20847 * progmodes/compile.el (compilation-goto-locus):
20848 * net/tramp-cmds.el (tramp-append-tramp-buffers):
20849 * bs.el (bs-cycle-next, bs-cycle-previous):
20850 * bookmark.el (bookmark-bmenu-list, bookmark-bmenu-2-window):
20851 * bindings.el (mode-line-other-buffer):
20852 * autoinsert.el (auto-insert):
20853 * arc-mode.el (archive-extract):
20854 * abbrev.el (edit-abbrevs): Fix some uses of switch-to-buffer.
20855
20856 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
20857
20858 * emacs-lock.el (emacs-lock-mode): Fix typo in variable name.
20859 Fix check of `emacs-lock-unlockable-modes'.
20860 Coerce true values of `emacs-lock--try-unlocking' to t.
20861
20862 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
20863
20864 * obsolete/old-emacs-lock.el: Rename from emacs-lock.el.
20865 * emacs-lock.el: New file.
20866
20867 2011-07-05 Julien Danjou <julien@danjou.info>
20868
20869 * textmodes/rst.el (rst-define-level-faces): Use `facep' rather
20870 than `boundp' to check if face is set.
20871
20872 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
20873
20874 * register.el (registerv-make):
20875 * window.el (window-min-height): Fix typos in docstrings.
20876
20877 2011-07-05 Jan Djärv <jan.h.d@swipnet.se>
20878
20879 * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
20880 Update doc string.
20881
20882 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
20883
20884 * server.el (server-execute): Catch quit and call
20885 `server-return-error' to pass the error back to emacsclient and
20886 close the connection (bug#8942).
20887
20888 2011-07-04 Ken Manheimer <ken.manheimer@gmail.com>
20889
20890 * allout.el (allout-encrypt-unencrypted-on-saves): Do not provide
20891 insecure exception for current topic. Also note that auto-saves
20892 are handled differently.
20893
20894 (allout-auto-save-temporarily-disabled, allout-just-did-undo):
20895 State variables for tracking auto-save inhibition situation.
20896
20897 (allout-write-contents-hook-handler): Rename from
20898 'allout-write-file-hook-handler', and describe how it depends on
20899 write-contents-functions sensitivity to non-nil value to prevent
20900 file write.
20901
20902 (allout-auto-save-hook-handler): Remove. auto-save does not check
20903 this in individual buffers, only in the starting buffer, so this
20904 is not the right way for us to inhibit auto-save in a buffer
20905 according to its condition.
20906
20907 (allout-mode): Use new allout-write-contents-hook-handler, and
20908 only with write-contents-functions. Remove auto-save provisions -
20909 they're implemented elsewhere.
20910
20911 (allout-before-change-handler): If undo is in progress, note that
20912 for attention of allout-post-command-business.
20913
20914 (allout-post-command-business): If the command we're following was
20915 an undo, check for change in the status of encrypted items and
20916 adjust auto-save inhibitions accordingly.
20917
20918 (allout-toggle-subtree-encryption): Adjust auto-save inhibition
20919 according to whether there are or aren't any plain-text topics
20920 pending encryption.
20921
20922 (allout-inhibit-auto-save-info-for-decryption):
20923 Adjust buffer-saved-size and some allout state to inhibit auto-saves
20924 if there are plain-text topics pending encryption.
20925
20926 (allout-maybe-resume-auto-save-info-after-encryption): Adjust
20927 buffer-saved-size and some allout state to not inhibit auto-saves
20928 if there are no longer any plain-text topics pending encryption.
20929
20930 (allout-next-topic-pending-encryption, allout-encrypt-decrypted):
20931 No longer provide for exemption of the current topic.
20932
20933 2011-07-04 Juri Linkov <juri@jurta.org>
20934
20935 Add 7z operations to delete and save changed members (bug#8968).
20936 * arc-mode.el (archive-7z-expunge, archive-7z-update):
20937 New defcustoms.
20938 (archive-7z-write-file-member): New function.
20939 (archive-7z-summarize): Fix the number of dashes in the
20940 listing output.
20941
20942 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
20943
20944 * pcmpl-linux.el (pcomplete-pare-list): Re-add, from pcomplete.el
20945 (bug#8958).
20946
20947 2011-07-04 Chong Yidong <cyd@stupidchicken.com>
20948
20949 * bindings.el: Ignore next-buffer and previous-buffer in
20950 minibuffer-local-map.
20951
20952 * font-lock.el (font-lock-builtin-face): Change light background
20953 color to dark slate blue (Bug#6693).
20954
20955 2011-07-04 Wang Diancheng <dcwang@kingbase.com.cn> (tiny change)
20956
20957 * progmodes/gdb-mi.el (gdb): Use completion-at-point.
20958
20959 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
20960
20961 * files.el (find-file): Use pop-to-buffer-same-window (bug#8911).
20962 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
20963 Add switch-to-buffer.
20964
20965 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
20966
20967 * isearch.el (isearch-search-fun-function): Clarify further the
20968 meaning of the function returned.
20969
20970 2011-07-04 Michael Albinus <michael.albinus@gmx.de>
20971
20972 * net/tramp-cmds.el (tramp-cleanup-this-connection): New command.
20973
20974 * net/tramp-sh.el (tramp-color-escape-sequence-regexp): New defconst.
20975 (tramp-sh-handle-insert-directory, tramp-convert-file-attributes):
20976 Use it.
20977 (tramp-remote-path): Add "/bin" and "/usr/bin". On busyboxes,
20978 `tramp-default-remote-path' does not exist.
20979 (tramp-send-command-and-read): New optional argument NOERROR.
20980 (tramp-open-connection-setup-interactive-shell)
20981 (tramp-get-remote-path, tramp-get-remote-stat): Use it.
20982 (tramp-get-remote-readlink): Do not mask with `ignore-errors'.
20983 (tramp-process-sentinel): Flush also process' connection property.
20984 (tramp-sh-handle-start-file-process): Do not set process
20985 sentinel. It is done now ...
20986 (tramp-maybe-open-connection): ... here. (Bug#8929)
20987
20988 2011-07-04 MON KEY <monkey@sandpframing.com>
20989
20990 * play/animate.el (animate-string): Doc fixes and allow changing
20991 the buffer name (bug#5417).
20992
20993 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
20994
20995 * play/animate.el (animation-buffer-name): Rename from *animate*.
20996
20997 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
20998
20999 * emacs-lisp/timer.el: Use time-date fns rather than rolling our own.
21000 This is simpler and helps future-proof the code.
21001 (timer-until): Use time-subtract and float-time.
21002 (timer--time-less-p): Use time-less-p.
21003
21004 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
21005
21006 * type-break.el (timep): Use the value of `float-time' to avoid a
21007 byte-compiler warning.
21008
21009 * server.el (server-eval-and-print): Return any result, even nil.
21010
21011 2011-07-03 Paul Eggert <eggert@cs.ucla.edu>
21012
21013 * type-break.el: Accept time formats that the builtins accept.
21014 (timep, type-break-time-difference): Accept any format that
21015 float-time accepts, rather than insisting on (HIGH LOW USECS) format.
21016 This is simpler and helps future-proof the code.
21017 (type-break-time-difference): Round rather than ignoring
21018 subseconds components.
21019
21020 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
21021
21022 * info.el (Info-apropos-matches): Make non-interactive, since it
21023 doesn't seem to do anything useful as a command (bug#8829).
21024
21025 2011-07-03 Chong Yidong <cyd@stupidchicken.com>
21026
21027 * frame.el (frame-background-mode, frame-set-background-mode):
21028 Move from faces.el.
21029 (frame-default-terminal-background): New function.
21030
21031 * custom.el (custom-push-theme): Don't record faces in `changed'
21032 theme; this doesn't work correctly for per-frame face settings.
21033 (disable-theme): Use face-set-after-frame-default to reset faces.
21034 (custom--frame-color-default): New function.
21035
21036 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
21037
21038 * dired.el (dired-flagging-regexp): Remove unused variable
21039 (bug#8769).
21040
21041 2011-03-29 Kevin Ryde <user42@zip.com.au>
21042
21043 * progmodes/compile.el (compilation-error-regexp-alist-alist):
21044 `perl-Test2' extend to match possible "fail #N" rep count
21045 (bug#8377).
21046
21047 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
21048
21049 * mail/feedmail.el (feedmail-buffer-to-smtpmail):
21050 `smtpmail-via-smtp' now returns the error instead of nil.
21051
21052 * isearch.el (isearch-search-fun-function): Clarify the doc string
21053 (bug#8101).
21054
21055 2011-07-03 Richard Kim <emacs18@gmail.com> (tiny change)
21056
21057 * textmodes/texnfo-upd.el (texinfo-insert-menu): Don't insert
21058 unnecessary spaces (bug#8987).
21059
21060 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
21061
21062 * net/network-stream.el (open-network-stream): Use the
21063 :end-of-capability command thoughout.
21064
21065 2011-07-03 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
21066
21067 * net/network-stream.el (open-network-stream): Add the
21068 :end-of-capability command parameter, used by pop3.el.
21069
21070 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
21071
21072 * dired.el (dired-map-over-marks): Refill the doc string (bug#6814).
21073
21074 * fringe.el (fringe-query-style): Remove redundant text " (type ?
21075 for list)" (bug#6475).
21076
21077 * files.el (file-expand-wildcards): Ignore non-readable
21078 sub-directories while trying to find matches instead of signaling
21079 an error (bug#6297).
21080
21081 * man.el (Man-reference-regexp): Allow matching possible
21082 word-wrapped references (bug#6289).
21083
21084 * vc/vc.el (vc-modify-change-comment): Change *VC-log* to *vc-log*
21085 for consistency with the other vc buffers (bug#6197).
21086 (vc-checkin): Ditto.
21087
21088 * vc/vc-arch.el: Fix comments to match the *VC-log* name change.
21089
21090 * longlines.el (longlines-mode): Document what ARG does (bug#6150).
21091
21092 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
21093
21094 * custom.el (defcustom): Clarify that :set is only used in the
21095 Customize user interface (bug#6089).
21096
21097 * progmodes/flymake.el (flymake-mode): If the buffer isn't
21098 associated with a file, refuse to run instead of erroring out
21099 (bug#6084).
21100
21101 * textmodes/fill.el (fill-region): Remove the "Ordinarily" from
21102 the doc string, since it appears that using `fill-column' always
21103 controls the width (bug#7845).
21104
21105 * simple.el (shell-command-on-region): Say where the error output
21106 went if `shell-command-default-error-buffer' is set (bug#6857).
21107
21108 2011-07-02 Ken Manheimer <ken.manheimer@gmail.com>
21109
21110 * allout.el (allout-yank-processing): Adjust cursor position for
21111 backwards-deleted space.
21112
21113 (allout-rebullet-heading): Register changes with
21114 allout-exposure-changed-hook, so the modified topic is properly
21115 decorated.
21116
21117 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
21118
21119 * minibuffer.el (completion-in-region): Document PREDICATE
21120 (bug#7136).
21121
21122 * info-look.el (info-lookup-add-help): Clarify that ARGS is a list
21123 of keyword/argument pairs (bug#6904).
21124
21125 * replace.el (multi-occur):
21126 Mention `multi-occur-in-matching-buffers' in the doc string (bug#7566).
21127
21128 2011-07-02 Drew Adams <drew.adams@oracle.com>
21129
21130 * dired.el (dired-mark-if): Make the message about whether it's
21131 marking or unmarking clearer (bug#8523).
21132
21133 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
21134
21135 * disp-table.el (display-table-print-array): New function.
21136 (describe-display-table): Use it to print the vectors more pretty
21137 (Bug#8859).
21138
21139 2011-07-02 Martin Rudalics <rudalics@gmx.at>
21140
21141 * window.el (window-state-get-1): Don't assign clone numbers.
21142 Add clone-of item to list of window parameters.
21143 (window-state-put-2): Don't process clone numbers.
21144 (display-buffer-alist): Fix doc-string.
21145
21146 2011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
21147
21148 * subr.el (remq): Don't allocate if it's not needed.
21149 (keymap--menu-item-binding, keymap--menu-item-with-binding)
21150 (keymap--merge-bindings): New functions.
21151 (keymap-canonicalize): Use them to refine the canonicalization.
21152 * minibuffer.el (minibuffer-local-completion-map)
21153 (minibuffer-local-must-match-map): Move initialization from C.
21154 (minibuffer-local-filename-completion-map): Move initialization from C;
21155 don't inherit from anything here.
21156 (minibuffer-local-filename-must-match-map): Make obsolete.
21157 (completing-read-default): Use make-composed-keymap to combine
21158 minibuffer-local-filename-completion-map with either
21159 minibuffer-local-must-match-map or
21160 minibuffer-local-filename-completion-map.
21161
21162 2011-07-01 Glenn Morris <rgm@gnu.org>
21163
21164 * type-break.el (type-break-time-sum): Use dolist.
21165
21166 * textmodes/flyspell.el (flyspell-word-search-backward):
21167 Replace CL function.
21168
21169 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
21170
21171 * mouse.el (mouse--strip-first-event): New function.
21172 (function-key-map): Use it to map fringe clicks to normal clicks
21173 by default.
21174
21175 * vc/vc-bzr.el (vc-bzr-revision-keywords): Update.
21176 (vc-bzr-revision-completion-table): Add support for annotate and date.
21177
21178 * emacs-lisp/derived.el (define-derived-mode): Make abbrev-table
21179 inherit from parent.
21180
21181 2011-07-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
21182
21183 * dired-aux.el (dired-diff): Doc fixup (bug#8816).
21184 (dired-show-file-type): Doc fixup (bug#8818).
21185
21186 * dired.el (dired-mode): Fix up the doc string as suggested by
21187 Drew Adams (bug#8817).
21188
21189 * progmodes/flymake.el (flymake-find-file-hook): Add an `autoload'
21190 cookie, since the manual says that it should be possible to add
21191 this function to `find-file-hook' (bug#8709).
21192
21193 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
21194
21195 * progmodes/cfengine.el: Moved all cfengine3.el functionality
21196 here. Noted Ted Zlatanov as the maintainer.
21197 (cfengine-common-settings, cfengine-common-syntax): New functions
21198 to set up common things between `cfengine-mode' and
21199 `cfengine3-mode'.
21200 (cfengine3-mode): New mode.
21201 (cfengine3-defuns cfengine3-defuns-regex
21202 (cfengine3-class-selector-regex cfengine3-category-regex)
21203 (cfengine3-vartypes cfengine3-font-lock-keywords)
21204 (cfengine3-beginning-of-defun, cfengine3-end-of-defun)
21205 (cfengine3-indent-line): Add from cfengine3.el.
21206
21207 2011-07-01 Michael Albinus <michael.albinus@gmx.de>
21208
21209 * net/tramp.el (tramp-encoding-command-interactive): New defcustom.
21210
21211 * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
21212
21213 2011-07-01 Martin Rudalics <rudalics@gmx.at>
21214
21215 * window.el (same-window-buffer-names, same-window-regexps)
21216 (same-window-p, special-display-frame-alist)
21217 (special-display-popup-frame, special-display-function)
21218 (special-display-buffer-names, special-display-regexps)
21219 (special-display-p, pop-up-frame-alist, pop-up-frame-function)
21220 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
21221 (split-window-preferred-function, split-height-threshold)
21222 (split-width-threshold, even-window-heights)
21223 (display-buffer-mark-dedicated, window-splittable-p)
21224 (split-window-sensibly, window-safely-shrinkable-p):
21225 Un-obsolete.
21226 (display-buffer): Don't spread args with function specifier
21227 because special-display-popup-frame won't like it.
21228
21229 2011-07-01 Paul Eggert <eggert@cs.ucla.edu>
21230
21231 Time-stamp simplifications and fixes.
21232 These improve accuracy slightly, and future-proof the code
21233 against some potential changes to current-time format.
21234
21235 * woman.el (woman-decode-buffer, WoMan-log-end): Log fractional secs
21236 by using time-since and float-time.
21237
21238 * vc/ediff-util.el (ediff-calc-command-time): Use time-since
21239 and float-time. Say "NNN.NNN seconds" rather than "NNN seconds
21240 + NNN microseconds".
21241
21242 * type-break.el (type-break-time-sum): Rewrite using time-add.
21243
21244 * play/hanoi.el (hanoi-current-time-float): Remove.
21245 All uses replaced by float-time.
21246
21247 * nxml/rng-maint.el (rng-time-function): Rewrite using time-subtract.
21248 This yields a more-accurate answer.
21249 (rng-time-to-float): Remove; no longer needed.
21250
21251 * emacs-lisp/timer.el (timer-relative-time): Use time-add.
21252
21253 * calendar/timeclock.el (timeclock-seconds-to-time):
21254 Defalias to seconds-to-time, since they're the same thing.
21255
21256 * emacs-lisp/elp.el (elp-elapsed-time):
21257 * emacs-lisp/benchmark.el (benchmark-elapse):
21258 * allout-widgets.el (allout-elapsed-time-seconds): Use float-time.
21259
21260 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
21261
21262 * window.el (bury-buffer): Don't iconify the only frame.
21263 (switch-to-buffer): Revert to Emacs<23 behavior, i.e. do not fallback
21264 to pop-to-buffer. Use pop-to-buffer-same-frame if you don't like that.
21265
21266 2011-07-01 Chong Yidong <cyd@stupidchicken.com>
21267
21268 * eshell/em-smart.el (eshell-smart-display-navigate-list):
21269 Add mouse-yank-primary.
21270
21271 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
21272
21273 * progmodes/cfengine3.el: New file to support CFEngine 3.x.
21274
21275 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
21276
21277 * emacs-lisp/find-func.el (find-library--load-name): New fun.
21278 (find-library-name): Use it to find relative load names when provided
21279 absolute file name (bug#8803).
21280
21281 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
21282
21283 * textmodes/flyspell.el (flyspell-word): Consider words that
21284 differ only in case as potential doublons (bug#5687).
21285
21286 * net/soap-client.el (soap-invoke, soap-wsdl-resolve-references):
21287 Remove two rather uninteresting debugging-like messages to make
21288 debbugs.el more silent.
21289
21290 * comint.el (comint-password-prompt-regexp): Accept "Response" as
21291 a password-like phrase.
21292
21293 2011-06-30 Masatake YAMATO <yamato@redhat.com>
21294
21295 * progmodes/cc-guess.el: New file.
21296
21297 * progmodes/cc-langs.el (c-mode-menu): Add "Style..." submenu.
21298
21299 * progmodes/cc-styles.el (cc-choose-style-for-mode): New function
21300 derived from `c-basic-common-init'.
21301
21302 * progmodes/cc-mode.el (top-level): Require cc-guess.
21303 (c-basic-common-init): Use `cc-choose-style-for-mode'.
21304
21305 2011-06-30 Lawrence Mitchell <wence@gmx.li>
21306
21307 * progmodes/js.el (js-mode): Don't stomp on global settings (bug#8933).
21308
21309 2011-06-30 Alan Mackenzie <acm@muc.de>
21310
21311 * progmodes/cc-engine.el (c-guess-continued-construct):
21312 Correct the handling of template-args-cont, particularly for when font
21313 lock is disabled. Name this case as "CASE G".
21314
21315 2011-06-30 Ken Manheimer <ken.manheimer@gmail.com>
21316
21317 * allout.el (allout-yank-processing): Fix injection of extra space
21318 between bullet and non-whitespace character in first topic when
21319 pasting, ensuring that the actual spacing in the pasted topic
21320 following the bullet char is preserved. This extra space was
21321 causing pasted encrypted topics to get a decrypted status even
21322 when the content was actually still encrypted. Now the decryption
21323 status from before the paste is preserved.
21324
21325 (allout-flag-region): Set all allout overlays so they evaporate
21326 when reduced to zero length (evanescent), to prevent overlay
21327 leakage.
21328
21329 2011-06-30 Glenn Morris <rgm@gnu.org>
21330
21331 * w32-fns.el (w32-charset-info-alist): Declare.
21332
21333 * find-dired.el (find-grep-options): Simplify.
21334
21335 * term/ns-win.el (ns-set-resource): Declare.
21336
21337 * ses.el (row, col): Declare dynamic variables honestly.
21338
21339 * textmodes/reftex-parse.el (index-tags): Declare.
21340
21341 2011-06-30 Chong Yidong <cyd@stupidchicken.com>
21342
21343 * cus-edit.el (customize-push-and-save): New function.
21344
21345 * files.el (hack-local-variables-confirm): Use it.
21346
21347 * custom.el (load-theme): New arg NO-CONFIRM.
21348 Use customize-push-and-save (Bug#8720).
21349 (custom-enabled-themes): Doc fix.
21350
21351 * cus-theme.el (customize-create-theme)
21352 (custom-theme-merge-theme): Callers to load-theme changed.
21353
21354 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
21355
21356 * thingatpt.el (thing-at-point-short-url-regexp): Require that
21357 short URLs have at least one dot in them (bug #7614).
21358
21359 * progmodes/grep.el (rgrep): Bind `process-connection-type' to
21360 nil, because using a pty is apparently too slow (bug #895).
21361
21362 2011-06-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
21363
21364 * mail/sendmail.el (sendmail-query-once): New function.
21365 (sendmail-query-once-function): New variable.
21366
21367 2011-06-29 Glenn Morris <rgm@gnu.org>
21368
21369 * files.el (auto-mode-alist): Add .f03, .f08 for f90-mode.
21370
21371 * ses.el (top-level): Require cl when compiling.
21372 (ses-set-localvars): Fix error statement.
21373 Call it at compile time to silence a storm of warnings.
21374
21375 2011-06-29 Martin Rudalics <rudalics@gmx.at>
21376
21377 * window.el (normalize-live-buffer): Rename to
21378 window-normalize-buffer.
21379 (normalize-live-frame): Rename to window-normalize-frame.
21380 (normalize-any-window): Rename to window-normalize-any-window.
21381 (normalize-live-window): Rename to window-normalize-live-window.
21382 (make-window-atom): Rename to window-make-atom.
21383 (window-resize-reset): Rename to window--resize-reset.
21384 (window-resize-reset-1): Rename to window--resize-reset-1.
21385 (resize-mini-window): Rename to window--resize-mini-window.
21386 (resize-subwindows-skip-p): Rename to
21387 window--resize-subwindows-skip-p.
21388 (resize-subwindows-normal): Rename to
21389 window--resize-subwindows-normal.
21390 (resize-subwindows): Rename to window--resize-subwindows.
21391 (resize-other-windows): Rename to window--resize-siblings.
21392 (resize-this-window): Rename to window--resize-this-window.
21393 (resize-root-window): Rename to window--resize-root-window.
21394 (resize-root-window-vertically): Rename to
21395 window--resize-root-window-vertically.
21396 (normalize-buffer-to-display): Rename to
21397 window-normalize-buffer-to-display.
21398 (normalize-buffer-to-switch-to): Rename to
21399 window-normalize-buffer-to-switch-to.
21400 Correspondingly update all callers of the functions listed
21401 above.
21402 (display-buffer-alist, display-buffer-normalize-arguments)
21403 (display-buffer-normalize-options, display-buffer)
21404 (display-buffer-alist-set): Use "function" instead of
21405 "fun-with-args".
21406
21407 2011-06-28 Chong Yidong <cyd@stupidchicken.com>
21408
21409 * mail/emacsbug.el (report-emacs-bug): Handle non-gnu bug
21410 addresses more clearly. Add hyperlinks for bug-gnu-emacs and
21411 debbugs.gnu.org. Mention acknowledgment email.
21412
21413 2011-06-28 Lars Magne Ingebrigtsen <larsi@gnus.org>
21414
21415 * mail/smtpmail.el (smtpmail-send-it): Leave off changing the
21416 buffer multibyteness, since it shouldn't matter.
21417
21418 2011-06-28 Martin Rudalics <rudalics@gmx.at>
21419
21420 * window.el (display-buffer-in-side-window): Handle dedicated
21421 windows as in display-buffer-reuse-window.
21422 (display-buffer-normalize-alist): Use value of override
21423 specifier.
21424 (display-buffer-normalize-specifiers): Use value of
21425 other-window-means-other-frame specifier.
21426 (display-buffer-alist): Rewrite some texts in widgets.
21427 (display-buffer): Spread arguments when calling function
21428 specified by fun-with-args.
21429
21430 2011-06-28 Deniz Dogan <deniz@dogan.se>
21431
21432 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
21433 Unnest `let'.
21434
21435 * textmodes/css-mode.el (css-font-lock-keywords): Fix grouped
21436 selectors (Bug#5732).
21437 (css-proprietary-nmstart-re): Use `regexp-opt'.
21438
21439 2011-06-27 Jari Aalto <jari.aalto@cante.net>
21440
21441 * eshell/em-ls.el: Display `ls -l' dates in ISO format (Bug#8440).
21442 (eshell-ls-date-format): New defcustom.
21443 (eshell-ls-file): Use it.
21444
21445 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
21446
21447 * help-fns.el (describe-variable): Fix message for terminal-local vars.
21448
21449 2011-06-27 Katsumi Yamaoka <yamaoka@jpl.org>
21450
21451 * net/ange-ftp.el: Allow loading .gz files (Bug#6923).
21452 (ange-ftp-make-tmp-name): New arg.
21453 (ange-ftp-file-local-copy): Use it.
21454
21455 2011-06-27 Jambunathan K <kjambunathan@gmail.com>
21456
21457 * tar-mode.el (tar-untar-buffer): Set coding-system-for-write to
21458 no-conversion (Bug#8870).
21459
21460 2011-06-27 Martin Rudalics <rudalics@gmx.at>
21461
21462 * window.el (window-right, window-left, window-child)
21463 (window-child-count, window-last-child)
21464 (window-iso-combination-p, walk-window-tree-1)
21465 (window-atom-check-1, window-tree-1, delete-window)
21466 (window-state-get-1, display-buffer-even-window-sizes): Adapt to
21467 new naming conventions - window-vchild, window-hchild,
21468 window-next and window-prev are now called window-top-child,
21469 window-left-child, window-next-sibling and window-prev-sibling
21470 respectively.
21471 (resize-window-reset): Rename to window-resize-reset.
21472 (resize-window-reset-1): Rename to window-resize-reset-1.
21473 (resize-window): Rename to window-resize.
21474 (window-min-height, window-min-width)
21475 (resize-mini-window, resize-this-window, resize-root-window)
21476 (resize-root-window-vertically, adjust-window-trailing-edge)
21477 (enlarge-window, shrink-window, maximize-window)
21478 (minimize-window, delete-window, quit-restore-window)
21479 (split-window, balance-windows, balance-windows-area-adjust)
21480 (balance-windows-area, window-state-put-2)
21481 (display-buffer-even-window-sizes, display-buffer-set-height)
21482 (display-buffer-set-width, set-window-text-height)
21483 (fit-window-to-buffer): Rename all "resize-window" prefixed
21484 calls to use the "window-resize" prefix convention.
21485 (display-buffer-alist): Fix symbol for label specifier.
21486 (display-buffer-reuse-window): Set reuse-dedicated to cdr of
21487 corresponding specifier.
21488 Reported by Juanma Barranquero <lekktu@gmail.com>.
21489
21490 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
21491
21492 * ses.el (ses-destroy-cell-variable-range): Fix heading comment
21493 convention.
21494 (ses-call-printer): Does not pass an empty string to formatter when the
21495 cell is empty to keep from barking printer Calc math-format-value.
21496
21497 2011-06-27 Richard Stallman <rms@gnu.org>
21498
21499 * battery.el (battery-mode-line-limit): New variable.
21500 (battery-update): Handle it.
21501
21502 * mail/rmailmm.el (rmail-mime-process-multipart):
21503 Handle truncated messages.
21504
21505 2011-06-27 Glenn Morris <rgm@gnu.org>
21506
21507 * progmodes/flymake.el (flymake-err-line-patterns):
21508 Allow for column numbers in the ant/javac pattern. (Bug#8866)
21509
21510 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
21511
21512 * ses.el (ses-relocate-range): Keep rest of arguments for ses-range.
21513 (ses--clean-!, ses--clean-_): New functions.
21514 (ses-range): Add configurability of readout order, and conversion
21515 to Calc vector.
21516
21517 * ses.el (ses-repair-cell-reference-all): New function.
21518 (ses-cell-symbol): Set macro as safe, so that it can be used in
21519 formulas.
21520
21521 * ses.el: Update cycle detection algorithm.
21522 (ses-localvars): Add ses--Dijkstra-attempt-nb and
21523 ses--Dijkstra-weight-bound, and initial values thereof when applicable.
21524 (ses-set-localvars): New function.
21525 (ses-make-cell): Add property-list as a cell element.
21526 (ses-cell-property-get-fun, ses-cell-property-get)
21527 (ses-cell-property-delq-fun, ses-cell-property-set-fun)
21528 (ses-cell-property-pop-fun, ses-cell-property-get-handle-fun):
21529 New functions.
21530 (ses-cell-property-set, ses-cell-property-pop)
21531 (ses-cell-property-get-handle): New macro.
21532 (ses-cell-property-handle-car, ses-cell-property-handle-setcar):
21533 New aliases, used for code readability.
21534 (ses-calculate-cell, ses-update-cells): Use Dijkstra algorithm for
21535 cycle detection.
21536 (ses-self-reference-early-detection): New defcustom.
21537 (ses-formula-references): Robustify against self-referring cells.
21538 (ses-mode): Use ses-set-localvars.
21539 (ses-command-hook): Add call to ses-initialize-Dijkstra-attempt
21540 before lauching the update processing.
21541 (ses-initialize-Dijkstra-attempt): New function.
21542 (ses-recalculate-cell): Update for cycle detection based on
21543 Dijkstra algorithm.
21544
21545 * ses.el: Fix commenting and indenting convention.
21546
21547 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
21548
21549 * bs.el (bs-cycle-next): Complete last change.
21550
21551 2011-06-27 Drew Adams <drew.adams@oracle.com>
21552
21553 * faces.el (list-faces-display): Add help-mode-map to output (bug#8939).
21554
21555 2011-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
21556
21557 * net/network-stream.el (network-stream-open-starttls):
21558 Don't re-get capabilities unless we've reestablished connection.
21559 (network-stream-open-starttls): Fix stupid typo with gnutls-clii.
21560
21561 * mail/smtpmail.el (smtpmail-via-smtp): Bind coding-system-for-*
21562 to binary to possibly avoid line encoding issues on Windows (among
21563 other things).
21564
21565 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
21566
21567 * net/network-stream.el (open-network-stream): Return an :error
21568 saying what the problem was, if possible.
21569
21570 * mail/smtpmail.el (smtpmail-via-smtp): Report the error from the
21571 server.
21572
21573 * net/network-stream.el (network-stream-open-starttls): If we
21574 wanted to use STARTTLS, and the server offered it, but we weren't
21575 able to because we had no STARTTLS support, then close the connection.
21576 (open-network-stream): Return an :error element, if present.
21577
21578 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
21579
21580 * hl-line.el (hl-line-sticky-flag): Doc fix.
21581 (global-hl-line-sticky-flag): New option (Bug#8323).
21582 (global-hl-line-highlight): Obey it.
21583
21584 * vc/vc.el (vc-revert-show-diff): Default to t.
21585
21586 2011-06-26 Ken Manheimer <ken.manheimer@gmail.com>
21587
21588 * allout-widgets.el (allout-widgets-post-command-business):
21589 Stop decorating intermediate isearch matches. They're not being
21590 undecorated when an isearch is continued past, and isearch
21591 automatically collapses them. This leads to "widget leaks", where
21592 decorated items accumulate in collapsed areas. Lines with lots of
21593 hidden widgets can slow down cursor travel, substantially.
21594 Too much complicated machinery would be needed to ensure undecoration,
21595 so we're doing without this nicety.
21596
21597 (allout-widgets-tally-string): Don't try to do a hash-table-count
21598 of allout-widgets-tally when it's nil. This eliminates spurious "Error
21599 during redisplay: (wrong-type-argument hash-table-p nil)" warnings in
21600 *Messages* when allout-widgets-maintain-tally is t.
21601
21602 2011-06-26 Martin Rudalics <rudalics@gmx.at>
21603
21604 * window.el (display-buffer-normalize-argument): Rename to
21605 display-buffer-normalize-arguments. Handle special meaning of
21606 LABEL argument. Respect special-display-function when popping up
21607 a new frame. Fix code searching for a window showing the buffer
21608 on another frame.
21609 (display-buffer-normalize-specifiers):
21610 Call display-buffer-normalize-arguments.
21611 (display-buffer-in-window): Don't undedicate the window if its
21612 buffer remains the same.
21613 Reported by Drew Adams <drew.adams@oracle.com>.
21614 (display-buffer-alist): Add choice for same-window macro
21615 specfier.
21616 (display-buffer): Mention special meaning of LABEL argument in
21617 doc-string. Fix quoting. Don't pop up a new frame even as
21618 fallback.
21619
21620 2011-06-26 Juanma Barranquero <lekktu@gmail.com>
21621
21622 * bs.el (bs-cycle-next): Pass current buffer to `bury-buffer' to
21623 avoid deleting the current window in some cases (bug#8911).
21624
21625 2011-06-26 Andreas Schwab <schwab@linux-m68k.org>
21626
21627 * emacs-lisp/smie.el (smie-bnf->prec2): Fix last change.
21628 (Bug#8934)
21629
21630 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
21631
21632 * net/network-stream.el (network-stream-open-starttls):
21633 Use built-in TLS support if `gnutls-available-p' is true.
21634 (network-stream-open-tls): Ditto.
21635
21636 2011-06-26 Leo Liu <sdl.web@gmail.com>
21637
21638 * register.el (registerv): New struct.
21639 (registerv-make): New function.
21640 (jump-to-register, describe-register-1, insert-register):
21641 Support the jump-func, print-func and insert-func slot of a registerv
21642 struct. (Bug#8415)
21643
21644 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
21645
21646 * vc/vc.el (vc-revert-show-diff): New defcustom.
21647 (vc-diff-internal): New arg specifying diff buffer.
21648 (vc-revert): Obey vc-revert-show-diff. If we show a diff, don't
21649 reuse an existing *vc-diff* buffer (Bug#8927).
21650
21651 * progmodes/cperl-mode.el (cperl-mode): Derive from prog-mode.
21652
21653 2011-06-26 Glenn Morris <rgm@gnu.org>
21654
21655 * progmodes/f90.el (f90-critical-indent): New option.
21656 (f90-font-lock-keywords-2, f90-blocks-re, f90-end-block-re)
21657 (f90-start-block-re, f90-mode-abbrev-table): Add block, critical.
21658 (f90-mode): Doc fix.
21659 (f90-looking-at-critical, f90-looking-at-end-critical): New funcs.
21660 (f90-no-block-limit, f90-calculate-indent, f90-end-of-block)
21661 (f90-beginning-of-block, f90-next-block, f90-indent-region)
21662 (f90-match-end): Handle block, critical.
21663
21664 2011-06-25 Glenn Morris <rgm@gnu.org>
21665
21666 * calendar/diary-lib.el (diary-included-files): Doc fix.
21667 (diary-include-files): New function, extracted from
21668 diary-include-other-diary-files and diary-mark-included-diary-files.
21669 (diary-include-other-diary-files, diary-mark-included-diary-files):
21670 Just call diary-include-files.
21671 (diary-mark-entries): Reset diary-included-files on first call.
21672
21673 * calendar/diary-lib.el (diary-mark-entries)
21674 (diary-mark-included-diary-files):
21675 Visit included diary-files in temp buffers.
21676
21677 * progmodes/f90.el (f90-keywords-re, f90-font-lock-keywords-1)
21678 (f90-blocks-re, f90-program-block-re, f90-end-block-re)
21679 (f90-start-block-re, f90-imenu-generic-expression)
21680 (f90-looking-at-program-block-start, f90-no-block-limit):
21681 Add support for submodules.
21682
21683 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
21684 (f90-procedures-re, f90-constants-re): Add some F2008 stuff.
21685
21686 2011-06-25 Eli Zaretskii <eliz@gnu.org>
21687
21688 * net/ange-ftp.el (ange-ftp-insert-file-contents): Let-bind
21689 buffer-file-type before setting its value, to avoid disastrous
21690 global effects on decoding files for DOS/Windows systems. (Bug#8780)
21691
21692 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
21693
21694 * allout.el (allout-unload-function): Pass -1 to `allout-mode'.
21695
21696 * ses.el (ses-unload-function):
21697 * emacs-lisp/re-builder.el (re-builder-unload-function): Simplify.
21698
21699 * proced.el (proced-unload-function):
21700 * progmodes/cperl-mode.el (cperl-mode-unload-function): Remove.
21701
21702 2011-06-25 Andreas Rottmann <a.rottmann@gmx.at>
21703
21704 * server.el (server-create-window-system-frame): Add parameters arg.
21705 (server-process-filter): Doc fix. Handle frame-parameters.
21706
21707 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
21708
21709 Fix bug#8730, bug#8781.
21710
21711 * loadhist.el (unload--set-major-mode): New function.
21712 (unload-feature): Use it.
21713
21714 * progmodes/python.el (python-after-info-look): Add autoload cookie.
21715 (python-unload-function): New function.
21716
21717 2011-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
21718
21719 * mail/rmail.el (rmail-show-message-1): Use restore-buffer-modified-p.
21720
21721 2011-06-25 Giuseppe Scrivano <gscrivano@gnu.org>
21722
21723 * net/browse-url.el (browse-url-firefox-program): Add icecat to
21724 the candidates list.
21725
21726 2011-06-24 Juanma Barranquero <lekktu@gmail.com>
21727
21728 * progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
21729
21730 2011-06-23 Richard Stallman <rms@gnu.org>
21731
21732 * mail/rmail.el: Going to grep hit in Rmail buffer finds the message.
21733 (rmail-variables): Set next-error-move-function.
21734 (rmail-what-message): Take argument POS.
21735 (rmail-next-error-move): New function.
21736
21737 2011-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
21738
21739 * emacs-lisp/smie.el (smie-bnf->prec2): Give more understandable error
21740 messages for adjacent non-terminals.
21741
21742 2011-06-23 Richard Stallman <rms@gnu.org>
21743
21744 * mail/rmail.el (rmail-retry-ignored-headers): Add message-id.
21745 (rmail-show-message-1): Preserve buffer modified flag.
21746 (rmail-start-mail): Don't specify use of rmail-mail-return;
21747 that's done by mail-bury now.
21748 (rmail-mail-return): Handle arg NEWBUF.
21749
21750 2011-06-23 Michael Albinus <michael.albinus@gmx.de>
21751
21752 * net/tramp-sh.el (tramp-method-out-of-band-p): Check, whether
21753 SIZE is a number.
21754
21755 2011-06-23 Martin Rudalics <rudalics@gmx.at>
21756
21757 * window.el (get-lru-window, get-mru-window)
21758 (get-largest-window): Never return a minibuffer window.
21759 (display-buffer-pop-up-window): Fix a bug that could lead to
21760 reusing the minibuffer window.
21761 (display-buffer): Pass original specifier argument to
21762 display-buffer-function instead of the normalized one.
21763 Reported by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
21764
21765 2011-06-22 Leo Liu <sdl.web@gmail.com>
21766
21767 * minibuffer.el (completing-read-function)
21768 (completing-read-default): Move from minibuf.c.
21769
21770 2011-06-22 Richard Stallman <rms@gnu.org>
21771
21772 * mail/sendmail.el (mail-bury): If Rmail is in use, return nicely
21773 to Rmail even if not started by a special Rmail command.
21774
21775 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
21776 Copy the buffer currently showing just one message.
21777
21778 2011-06-22 Roland Winkler <winkler@gnu.org>
21779
21780 * textmodes/bibtex.el (bibtex-entry-update): Use mapc.
21781 (bibtex-clean-entry): First delete the old key so that a
21782 customized algorithm for generating the new key does not get
21783 confused by the old key.
21784 (bibtex-url): Obey regexp of first step.
21785 (bibtex-search-entries): Do not use add-to-list with local
21786 list-var.
21787
21788 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
21789
21790 * mail/smtpmail.el (smtpmail-try-auth-methods): If the user has
21791 stored a user name, then query for the password first, instead of
21792 waiting for SMTP to give an error message and the trying again.
21793
21794 2011-06-22 Lawrence Mitchell <wence@gmx.li>
21795
21796 * net/browse-url.el (browse-url-xdg-open): Use 0, rather than nil
21797 BUFFER in call-process.
21798
21799 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
21800
21801 * mail/smtpmail.el (smtpmail-via-smtp): Make sure we don't send
21802 QUIT twice.
21803 (smtpmail-try-auth-methods): Require user name and password from
21804 auth-source.
21805
21806 2011-06-22 Martin Rudalics <rudalics@gmx.at>
21807
21808 * window.el (display-buffer-default-specifiers)
21809 (display-buffer-alist): Remove entries for pop-up-frame-alist.
21810 Suggested by Katsumi Yamaoka <yamaoka@jpl.org>.
21811 (split-window): Normalize SIDE argument (Bug#8916).
21812
21813 * frame.el (pop-up-frame-alist, pop-up-frame-function)
21814 (special-display-frame-alist, special-display-popup-frame):
21815 Remove duplicate declarations. These are now in window.el.
21816
21817 2011-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
21818
21819 * mail/smtpmail.el (smtpmail-via-smtp):
21820 Set :use-starttls-if-possible so that we always use STARTTLS if the
21821 server supports it. SMTP servers that support STARTTLS commonly
21822 require it.
21823
21824 * net/network-stream.el (network-stream-open-starttls): Support
21825 upgrading to STARTTLS always, even if we don't have built-in support.
21826 (open-network-stream): Add the :always-query-capabilities keyword.
21827
21828 * mail/smtpmail.el: Rewritten to do opportunistic STARTTLS
21829 upgrades with `open-network-stream', and rely solely on
21830 auth-source for all credentials. Big changes throughout the file,
21831 but in particular:
21832 (smtpmail-auth-credentials): Remove.
21833 (smtpmail-starttls-credentials): Remove.
21834 (smtpmail-via-smtp): Check for servers saying they want AUTH after
21835 MAIL FROM, too.
21836
21837 * net/network-stream.el (network-stream-open-starttls):
21838 Provide support for client certificates both for external and built-in
21839 STARTTLS.
21840 (auth-source): Require.
21841 (open-network-stream): Document the :client-certificate keyword.
21842 (network-stream-certificate): Change cert-cert to cert and
21843 cert-key to key.
21844
21845 2011-06-21 Michael Albinus <michael.albinus@gmx.de>
21846
21847 * net/tramp-cache.el (top): Don't load the persistency file when
21848 "emacs -Q" has been called.
21849
21850 2011-06-21 Tim Harper <timcharper@gmail.com>
21851
21852 * term/ns-win.el (ns-initialize-window-system):
21853 Set application-specific `ApplePressAndHoldEnabled' system
21854 resource to NO as it is not yet supported by the NS port.
21855
21856 2011-06-21 Juanma Barranquero <lekktu@gmail.com>
21857
21858 * misc.el (list-dynamic-libraries--refresh): Compute header here...
21859 (list-dynamic-libraries): ...not here.
21860
21861 2011-06-21 Leo Liu <sdl.web@gmail.com>
21862
21863 * subr.el (sha1): Implement sha1 using secure-hash.
21864
21865 2011-06-21 Martin Rudalics <rudalics@gmx.at>
21866
21867 * window.el (display-buffer-alist): In default value do not
21868 enforce searching a window on any but the selected frame.
21869 Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
21870 (display-buffer-select-window): Remove function.
21871 (display-buffer-in-window): When a window on another frame gets
21872 reused, do not select it any more but just raise its frame if
21873 necessary (Bug#8851) and (Bug#8856).
21874 (display-buffer-normalize-options): Handle pop-up-frames related
21875 options more faithfully.
21876 (pop-to-buffer): Don't rely on `display-buffer' selecting the
21877 window if it is on another frame.
21878 (display-buffer-alist, display-buffer-default-specifiers):
21879 Don't make new frame unsplittable by default.
21880 (display-buffer-normalize-argument): Fix doc-string typo and use
21881 'same-frame-other-window instead of 'other-window when associating
21882 with display-buffer-macro-specifiers.
21883
21884 2011-06-21 Vincent Belaïche <vincent.b.1@hotmail.fr>
21885
21886 * play/5x5.el (5x5-solve-rotate-left, 5x5-solve-rotate-right):
21887 New functions.
21888 (5x5-mode-map, 5x5-mode-menu): Bind them.
21889 (5x5-draw-grid): Tweak the solver's rendering.
21890
21891 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
21892
21893 * progmodes/compile.el (compilation-error-regexp-alist-alist): Rename
21894 `caml' to `python-tracebacks-and-caml'; allow leading tabs (bug#8585).
21895
21896 2011-06-21 Drew Adams <drew.adams@oracle.com>
21897
21898 * menu-bar.el: Use function variable instead of switch-to-buffer.
21899 (menu-bar-select-buffer-function): New variable.
21900 (menu-bar-update-buffers): Use it (bug#8876).
21901
21902 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
21903
21904 * emacs-lisp/bytecomp.el (add-to-list): Add handler to check the
21905 variable's status.
21906
21907 2011-06-20 Jan Djärv <jan.h.d@swipnet.se>
21908
21909 * x-dnd.el (x-dnd-version-from-flags)
21910 (x-dnd-more-than-3-from-flags): New functions that handle long-as-cons
21911 and long as number (Bug#8899).
21912 (x-dnd-handle-xdnd): Call functions above (Bug#8899).
21913
21914 2011-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
21915
21916 * minibuffer.el (completion-metadata): Add `metadata' to the alist.
21917 (completion-try-completion, completion-all-completions): Compute the
21918 metadata argument if it's missing; make it optional (bug#8795).
21919
21920 * wid-edit.el: Use lex-bind and move towards completion-at-point.
21921 (widget-complete): Use new :completion-function property.
21922 (widget-completions-at-point): New function.
21923 (default): Use :completion-function instead of :complete.
21924 (widget-default-completions): Rename from widget-default-complete;
21925 Rewrite.
21926 (widget-string-complete, widget-file-complete, widget-color-complete):
21927 Remove functions.
21928 (file, symbol, function, variable, coding-system, color):
21929 * international/mule-cmds.el (default-input-method, charset)
21930 (language-info-custom-alist):
21931 * cus-edit.el (face): Use new property :completions.
21932
21933 * progmodes/pascal.el (pascal-completions-at-point): New function.
21934 (pascal-mode): Use it.
21935 (pascal-mode-map): Use completion-at-point.
21936 (pascal-toggle-completions): Make obsolete.
21937 (pascal-complete-word, pascal-show-completions):
21938 * progmodes/octave-mod.el (octave-complete-symbol):
21939 Redefine as obsolete alias.
21940 * progmodes/octave-inf.el (inferior-octave-completion-at-point):
21941 Signal absence of completion info for old Octave,
21942 (inferior-octave-complete): Redefine as obsolete alias.
21943 * progmodes/meta-mode.el: Use lexical-binding and completion-at-point.
21944 (meta-completions-at-point): Rename from meta-complete-symbol and
21945 adapt it for use on completion-at-point-functions.
21946 (meta-common-mode): Use it.
21947 (meta-looking-at-backward, meta-match-buffer): Remove.
21948 (meta-complete-symbol): Redefine as obsolete alias.
21949 (meta-common-mode-map): Use completion-at-point.
21950 * progmodes/make-mode.el: Use lexical-binding and completion-at-point.
21951 (makefile-mode-map): Use completion-at-point.
21952 (makefile-completions-at-point): Rename from makefile-complete and
21953 adapt it for use on completion-at-point-functions.
21954 (makefile-mode): Use it.
21955 (makefile-complete): Redefine as obsolete alias.
21956
21957 2011-06-20 Deniz Dogan <deniz@dogan.se>
21958
21959 * net/rcirc.el: Delete trailing whitespaces once and for all.
21960
21961 2011-06-20 Daniel Colascione <dan.colascione@gmail.com>
21962
21963 * emacs-lisp/syntax.el (syntax-ppss): Further improve docstring.
21964
21965 2011-06-19 Chong Yidong <cyd@stupidchicken.com>
21966
21967 * files.el (auto-mode-alist): Entry for m2-mode (Bug#8852).
21968
21969 * info.el (Info-apropos-toc-nodes): Minor doc fix (Bug#8833).
21970
21971 2011-06-19 Martin Rudalics <rudalics@gmx.at>
21972
21973 * window.el (display-buffer-other-window-means-other-frame):
21974 Call display-buffer-normalize-alist.
21975 (display-buffer-normalize-specifiers-1): Rename to
21976 display-buffer-normalize-argument. New argument other-frame.
21977 Rewrite.
21978 (display-buffer-normalize-specifiers-2): Rename to
21979 display-buffer-normalize-options.
21980 (display-buffer-normalize-alist-1): New function.
21981 (display-buffer-normalize-specifiers-3): Rename to
21982 display-buffer-normalize-alist.
21983 Call display-buffer-normalize-alist-1.
21984 (display-buffer-normalize-options-inhibit): New variable.
21985 (display-buffer-normalize-specifiers): Rewrite calling
21986 display-buffer-normalize-alist,
21987 display-buffer-normalize-argument, and
21988 display-buffer-normalize-options. Don't call the latter if
21989 display-buffer-normalize-options-inhibit is non-nil.
21990 (frame-auto-delete): New option.
21991 (window-deletable-p): Use frame-auto-delete.
21992 (window-list-no-nils, window-state-ignored-parameters)
21993 (window-state-get-1, window-state-get, window-state-put-list)
21994 (window-state-put-1, window-state-put-2, window-state-put):
21995 New functions.
21996 (display-buffer-normalize-options): Move special-display-p group
21997 after pop-up-frame group (Bug#8851) and (Bug#8856).
21998
21999 2011-06-18 Chong Yidong <cyd@stupidchicken.com>
22000
22001 * emacs-lisp/rx.el (rx-constituents): Add support for numbered
22002 groups (Bug#8776).
22003 (rx-submatch-n): New function.
22004 (rx): Document it.
22005
22006 * dired-x.el (dired-mark-unmarked-files): Fix interactive spec
22007 (Bug#8768).
22008
22009 * replace.el (occur-mode-map): Set occur-edit-mode binding to "e".
22010
22011 * textmodes/fill.el (default-justification): Add :safe (Bug#8879).
22012
22013 * cus-face.el (custom-declare-face): Call custom-theme-recalc face
22014 anytime existing face settings are present (Bug#8889).
22015
22016 * progmodes/delphi.el (delphi-mode-syntax-table): Use defvar.
22017 (delphi-mode): Use define-derived-mode to inherit from prog-mode.
22018 Remove unused argument.
22019
22020 2011-06-18 Martin Rudalics <rudalics@gmx.at>
22021
22022 * window.el (display-buffer-default-specifiers):
22023 Remove pop-up-frame. Add pop-up-window-min-height,
22024 pop-up-window-min-width, and another reuse-window specifier
22025 (Bug#8882). Reported by Dan Nicolaescu <dann@gnu.org>.
22026 (display-buffer-normalize-specifiers-2):
22027 Handle split-height-threshold and split-width-threshold also when
22028 pop-up-windows is unset. Add a reuse-window specifier for the
22029 case popping up a new window fails.
22030 (special-display-popup-frame): Remove double quoting.
22031 (display-buffer-normalize-specifiers-1): Fix thinko.
22032
22033 2011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
22034
22035 * shell.el (shell-completion-vars): Set pcomplete-termination-string
22036 according to comint-completion-addsuffix.
22037
22038 * pcomplete.el: Convert to lexical binding and fix bug#8819.
22039 (pcomplete-suffix-list): Mark as obsolete.
22040 (pcomplete-completions-at-point): Capture pcomplete-norm-func and
22041 pcomplete-seen in the closure.
22042 (pcomplete-comint-setup): Setup completion-at-point as well.
22043 (pcomplete--entries): New function.
22044 (pcomplete--env-regexp): New var.
22045 (pcomplete-entries): Rewrite to work with partial-completion and
22046 without relying on pcomplete-suffix-list.
22047 (pcomplete-pare-list): Remove, unused.
22048
22049 2011-06-17 Martin Rudalics <rudalics@gmx.at>
22050
22051 * window.el (display-buffer-alist): Set pop-up-window-min-height
22052 and pop-up-window-min-width in default value. Reported by
22053 Thierry Volpiatto <thierry.volpiatto@gmail.com>. New specifier
22054 other-window-means-other-frame.
22055 (display-buffer-macro-specifiers): Comment out entry for
22056 other-window specifier.
22057 (display-buffer-other-window-means-other-frame): New function.
22058 (display-buffer-normalize-specifiers-1): New arguments
22059 buffer-name and label. Treat other-window case specially.
22060 (display-buffer-normalize-specifiers-2): Treat other-window case
22061 specially.
22062 (display-buffer-normalize-specifiers-3): New function.
22063 (display-buffer-normalize-specifiers):
22064 Call display-buffer-normalize-specifiers-3.
22065
22066 2011-06-17 Martin Rudalics <rudalics@gmx.at>
22067
22068 * window.el (same-window-p): Fix two typos introduced when
22069 adding with-no-warnings.
22070 (display-buffer-normalize-specifiers-1): Don't check
22071 pop-up-frames for 'unset initialization.
22072 (display-buffer-normalize-specifiers-2): Major rewrite using
22073 special-display-p and same-window-p (Bug#8851) and (Bug#8856).
22074 (pop-up-frames, display-buffer-reuse-frames)
22075 (display-buffer-mark-dedicated): Don't initialize to 'unset.
22076 Suggested by David Engster <deng@randomsample.de>.
22077 (even-window-heights): Initialize to 'unset.
22078 (display-buffer-alist-set): Handle new 'unset initializations.
22079 (display-buffer-macro-specifiers): Don't pop up a new frame in the
22080 other window case.
22081
22082 2011-06-16 Martin Rudalics <rudalics@gmx.at>
22083
22084 * window.el (display-buffer-normalize-specifiers-1):
22085 Respect current value of pop-up-frames for most reasonable values of
22086 second argument of display-buffer (Bug#8865).
22087 (switch-to-buffer-same-frame, switch-to-buffer-other-window)
22088 (switch-to-buffer-other-window-same-frame)
22089 (switch-to-buffer-other-frame): Fix doc-strings. Reported by Drew
22090 Adams (Bug#8875).
22091 (display-buffer): Don't check noninteractive when calling
22092 display-buffer-pop-up-frame.
22093 (display-buffer-pop-up-frame): Never pop up a frame in
22094 noninteractive mode (Bug#8857).
22095 (enlarge-window, shrink-window): Don't report an error when the
22096 window can't be resized as requested (Bug#8862).
22097
22098 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
22099
22100 * pcmpl-rpm.el (pcomplete/rpm): Minor simplification.
22101
22102 * emacs-lisp/debug.el (debug): Don't leave the buffer in Debugger.
22103
22104 * abbrev.el (define-abbrev-table): Don't add a table multiple times.
22105
22106 2011-06-15 Alan Mackenzie <acm@muc.de>
22107
22108 * progmodes/cc-fonts.el (c-font-lock-declarations): 1: Whilst checking
22109 for declarators, disable knr checking to speed up for normal files.
22110 2: Refactor, replacing a sequence of nested if forms by a cond form.
22111
22112 2011-06-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
22113
22114 * net/network-stream.el (open-network-stream): Add the keyword
22115 :always-query-capabilities for the case where you want to force a
22116 `plain' network connection, but the protocol still requires the
22117 capabilitiy command (i.e., SMTP and EHLO).
22118
22119 * subr.el (process-live-p): Rename from `process-alive-p' for
22120 consistency with other `-live-p' functions.
22121
22122 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
22123
22124 * window.el (same-window-buffer-names, same-window-regexps)
22125 (special-display-frame-alist, special-display-popup-frame)
22126 (special-display-function, special-display-buffer-names)
22127 (special-display-regexps, pop-up-frame-alist)
22128 (pop-up-frame-function, pop-up-frames, display-buffer-reuse-frames)
22129 (pop-up-windows, split-window-preferred-function)
22130 (split-height-threshold, split-width-threshold, even-window-heights)
22131 (display-buffer-mark-dedicated): Don't encourage the use of
22132 display-buffer-alist from Elisp code.
22133
22134 2011-06-15 Dan Nicolaescu <dann@ics.uci.edu>
22135
22136 * progmodes/python.el (python-mode): Derive from prog-mode.
22137 * progmodes/ps-mode.el (ps-mode):
22138 * progmodes/mixal-mode.el (mixal-mode):
22139 * progmodes/cfengine.el (cfengine-mode):
22140 * progmodes/ld-script.el (ld-script-mode): Likewise.
22141
22142 2011-06-15 Martin Rudalics <rudalics@gmx.at>
22143
22144 * window.el (display-buffer-alist): Trim default value to avoid
22145 popping up a new frame (Bug#8857) or reusing an arbitrary window
22146 on another frame.
22147 (display-buffer): Do not fall back on popping up a new frame in
22148 batch mode (Bug#8857).
22149
22150 2011-06-14 Chong Yidong <cyd@stupidchicken.com>
22151
22152 * cus-theme.el (describe-theme-1): Use custom-theme-p.
22153 (custom-theme-summary): New function.
22154 (customize-themes): Use it.
22155
22156 2011-06-13 Glenn Morris <rgm@gnu.org>
22157
22158 * cus-dep.el (custom-make-dependencies): Use up command-line-args-left.
22159
22160 2011-06-13 Martin Rudalics <rudalics@gmx.at>
22161
22162 * help.el (help-window): Remove variable.
22163 (help-window-point-marker, temp-buffer-max-height)
22164 (temp-buffer-resize-mode, help-window-select): Rewrite doc-strings.
22165 (help-print-return-message): Don't set help-window.
22166 (resize-temp-buffer-window): Rewrite cod eand doc-string.
22167 (help-window-setup-finish): Remove.
22168 (help-window-display-message, help-window-setup)
22169 (with-help-window): Major rewrite based on new
22170 display-buffer-window variable.
22171
22172 * help-mode.el (help-mode-finish): Remove help-window related
22173 code.
22174
22175 * view.el (view-exits-all-viewing-windows): Remove reference to
22176 view-return-to-alist in doc-string.
22177 (view-return-to-alist): Make obsolete.
22178 (view-buffer): Call pop-to-buffer-same-window and remove
22179 undo-window code.
22180 (view-buffer-other-window): Call pop-to-buffer-other-window and
22181 simplify code. Ignore second argument.
22182 (view-buffer-other-frame): Call pop-to-buffer-other-frame and
22183 simplify code. Ignore second argument.
22184 (view-return-to-alist-update): Make obsolete.
22185 (view-mode-enter): Rename second argument to QUIT-RESTORE.
22186 Rewrite using quit-restore window parameters.
22187 (view-mode-exit): Rename second argument to EXIT-ONLY.
22188 Rewrite using quit-restore-window.
22189 (View-exit, View-exit-and-edit, View-leave, View-quit)
22190 (View-quit-all, View-kill-and-leave): Call view-mode-exit with
22191 appropriate arguments.
22192 (view-end-message): Use quit-restore window parameter.
22193
22194 * window.el (display-buffer-function): Rewrite doc-string.
22195 (display-buffer-window, display-buffer-alist): New variables.
22196 (display-buffer-split-specifiers)
22197 (display-buffer-side-specifiers)
22198 (display-buffer-macro-specifiers): New constants.
22199 (display-buffer-even-window-sizes, display-buffer-set-height)
22200 (display-buffer-set-width, display-buffer-select-window)
22201 (display-buffer-in-window, display-buffer-reuse-window)
22202 (display-buffer-split-window-1, display-buffer-split-window)
22203 (display-buffer-split-atom-window, display-buffer-pop-up-window)
22204 (display-buffer-pop-up-frame, display-buffer-pop-up-side-window)
22205 (display-buffer-in-side-window, normalize-buffer-to-display)
22206 (display-buffer-normalize-specifiers-1)
22207 (display-buffer-normalize-specifiers-2)
22208 (display-buffer-normalize-specifiers, display-buffer-frame):
22209 New functions.
22210 (display-buffer): Major rewrite.
22211 (display-buffer-other-window, display-buffer-other-frame)
22212 (pop-to-buffer, switch-to-buffer-other-window)
22213 (switch-to-buffer-other-frame): Rewrite.
22214 (display-buffer-same-window, display-buffer-same-frame)
22215 (display-buffer-same-frame-other-window)
22216 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
22217 (pop-to-buffer-other-window)
22218 (pop-to-buffer-same-frame-other-window)
22219 (pop-to-buffer-other-frame, switch-to-buffer-same-frame)
22220 (switch-to-buffer-other-window-same-frame): New functions.
22221 (same-window-p, special-display-p): Rewrite disabling warnings.
22222 Make obsolete.
22223 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
22224 (display-buffer-mark-dedicated): Initialize to symbol 'unset.
22225 Make obsolete
22226 (same-window-buffer-names, same-window-regexps)
22227 (special-display-frame-alist, special-display-popup-frame)
22228 (special-display-function, special-display-buffer-names)
22229 (special-display-regexps, pop-up-frame-alist)
22230 (pop-up-frame-function, split-window-preferred-function)
22231 (split-height-threshold, split-width-threshold)
22232 (even-window-heights): Make obsolete.
22233
22234 2011-06-12 Glenn Morris <rgm@gnu.org>
22235
22236 * term/xterm.el (terminal-init-xterm): `version' may be nil. (Bug#8838)
22237 Misc simplifications.
22238
22239 2011-06-12 Martin Rudalics <rudalics@gmx.at>
22240
22241 * window.el (window-safely-shrinkable-p): Restore function which
22242 was inadvertently removed in change from 2011-06-11. Declare as
22243 obsolete.
22244
22245 * calendar/calendar.el (calendar-generate-window):
22246 Use window-iso-combined-p instead of combination of one-window-p and
22247 window-safely-shrinkable-p.
22248
22249 2011-06-12 Glenn Morris <rgm@gnu.org>
22250
22251 * progmodes/fortran.el (fortran-mode-syntax-table):
22252 * progmodes/f90.el (f90-mode-syntax-table):
22253 Set % to punctuation. (Bug#8820)
22254 (f90-find-tag-default): Remove, no longer needed.
22255
22256 2011-06-12 Daniel Colascione <dan.colascione@gmail.com>
22257
22258 * emacs-lisp/syntax.el (syntax-ppss): Clarify which items are invalid.
22259
22260 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
22261
22262 * image.el (image-animated-p): Return animation delay in seconds.
22263 Avoid bit manipulation in Lisp; use `delay' entry in the metadata.
22264 (image-animate-timeout): Remove DELAY argument. Don't assume
22265 every subimage has the same delay; get it from image-animated-p.
22266 (image-animate): Caller changed.
22267
22268 2011-06-11 Michael Albinus <michael.albinus@gmx.de>
22269
22270 * net/tramp.el (tramp-debug-message): Add `tramp-with-progress-reporter'
22271 to ignored backtrace functions.
22272
22273 2011-06-11 Glenn Morris <rgm@gnu.org>
22274
22275 * calendar/appt.el (appt-disp-window-function): Doc fix.
22276 (appt-check): Handle overlapping appointments. (Bug#8337)
22277
22278 2011-06-11 Martin Rudalics <rudalics@gmx.at>
22279
22280 * window.el (window-tree-1, window-tree): New functions, moving
22281 the latter to window.el.
22282 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
22283 (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
22284 (bw-refresh-edges): Remove.
22285 (balance-windows-1, balance-windows-2): New functions.
22286 (balance-windows): Rewrite in terms of window tree functions,
22287 balance-windows-1 and balance-windows-2.
22288 (bw-adjust-window): Remove.
22289 (balance-windows-area-adjust): New function with functionality of
22290 bw-adjust-window but using resize-window.
22291 (set-window-text-height): Rewrite doc-string.
22292 Use normalize-live-window and resize-window.
22293 (enlarge-window-horizontally, shrink-window-horizontally):
22294 Rename argument to DELTA.
22295 (window-buffer-height): New function.
22296 (fit-window-to-buffer, shrink-window-if-larger-than-buffer):
22297 Rewrite using new window resize routines.
22298 (kill-buffer-and-window, mouse-autoselect-window-select):
22299 Use ignore-errors instead of condition-case.
22300 (quit-window): Call delete-frame instead of delete-windows-on
22301 for the only buffer on frame.
22302
22303 2011-06-10 Martin Rudalics <rudalics@gmx.at>
22304
22305 * loadup.el (top-level): Load window before files for the sake
22306 of replace-buffer-in-windows.
22307
22308 * files.el (read-buffer-to-switch)
22309 (switch-to-buffer-other-window)
22310 (switch-to-buffer-other-frame, display-buffer-other-frame):
22311 Move to window.el.
22312
22313 * simple.el (get-next-valid-buffer, last-buffer, next-buffer)
22314 (previous-buffer): Move to window.el.
22315
22316 * bindings.el (unbury-buffer): Move to window.el.
22317
22318 * window.el (delete-other-windows-vertically): Move after
22319 definition of delete-other-windows.
22320 (other-window, delete-windows-on, replace-buffer-in-windows):
22321 Move here from window.c.
22322 (record-window-buffer, unrecord-window-buffer)
22323 (set-window-buffer-start-and-point, switch-to-prev-buffer)
22324 (switch-to-next-buffer): New functions.
22325 (get-next-valid-buffer, last-buffer, next-buffer): Move here
22326 from simple.el. Call switch-to-next-buffer.
22327 (previous-buffer): Move here from simple.el.
22328 Call switch-to-prev-buffer.
22329 (bury-buffer): Move here from buffer.c. Switch to previous
22330 buffer when window cannot be deleted.
22331 (unbury-buffer): Move here from bindings.el.
22332 (ctl-x-map): Move binding for other-window from window.c to
22333 here.
22334 (read-buffer-to-switch, switch-to-buffer-other-window)
22335 (switch-to-buffer-other-frame): Move here from files.el.
22336 (normalize-buffer-to-switch-to): New functions.
22337 (switch-to-buffer): Move here from buffer.c.
22338 Use read-buffer-to-switch and normalize-buffer-to-switch-to.
22339
22340 2011-06-10 Martin Rudalics <rudalics@gmx.at>
22341
22342 * window.el (window-min-height, window-min-width): Move here
22343 from window.c. Add defcustoms and rewrite doc-strings.
22344 (resize-mini-window, resize-window): New functions.
22345 (adjust-window-trailing-edge, enlarge-window, shrink-window):
22346 Move here from window.c.
22347 (maximize-window, minimize-window): New functions.
22348 (delete-window, delete-other-windows, split-window): Move here
22349 from window.c.
22350 (window-split-min-size): New function.
22351 (split-window-keep-point): Mention split-window-above-each-other
22352 instead of split-window-vertically.
22353 (split-window-above-each-other, split-window-vertically):
22354 Rename split-window-vertically to split-window-above-each-other
22355 and provide defalias for old definition.
22356 (split-window-side-by-side, split-window-horizontally):
22357 Rename split-window-horizontally to split-window-side-by-side
22358 and provide defalias for the old definition.
22359 (ctl-x-map): Move bindings for delete-window,
22360 delete-other-windows and enlarge-window here from window.c.
22361 Replace bindings for split-window-vertically and
22362 split-window-horizontally by bindings for
22363 split-window-above-each-other and split-window-side-by-side.
22364
22365 * cus-start.el (all): Remove entries for window-min-height and
22366 window-min-width. Add entries for window-splits and
22367 window-nest.
22368
22369 2011-06-09 Glenn Morris <rgm@gnu.org>
22370
22371 * calendar/appt.el (appt-mode-line): New function.
22372 (appt-check, appt-disp-window): Use it.
22373
22374 * files.el (hack-one-local-variable-eval-safep):
22375 Allow minor-modes with explicit +/-1 arguments.
22376
22377 2011-06-09 Teodor Zlatanov <tzz@lifelogs.com>
22378
22379 * term/xterm.el (xterm): Add defgroup.
22380 (xterm-extra-capabilities): Add defcustom to supply known xterm
22381 capabilities, skip querying them, or query them (default).
22382 (terminal-init-xterm): Use it.
22383 (terminal-init-xterm-modify-other-keys): New function to set up
22384 modifyOtherKeys support to simplify `terminal-init-xterm'.
22385
22386 2011-06-09 Martin Rudalics <rudalics@gmx.at>
22387
22388 * window.el (resize-window-reset, resize-window-reset-1)
22389 (resize-subwindows-skip-p, resize-subwindows-normal)
22390 (resize-subwindows, resize-other-windows, resize-this-window)
22391 (resize-root-window, resize-root-window-vertically)
22392 (window-deletable-p, window-or-subwindow-p)
22393 (frame-root-window-p): New functions.
22394
22395 2011-06-09 Glenn Morris <rgm@gnu.org>
22396
22397 * net/ange-ftp.el (ange-ftp-switches-ok): New function.
22398 (ange-ftp-get-files): Use it.
22399
22400 2011-06-09 Alexander Klimov <alserkli@inbox.ru> (tiny change)
22401
22402 * mail/sendmail.el (mail-recover-1, mail-recover):
22403 * files.el (recover-file, recover-session):
22404 Handle dired-listing-switches not being just a single short option.
22405
22406 2011-06-09 Glenn Morris <rgm@gnu.org>
22407
22408 * calendar/appt.el (appt-display-message, appt-disp-window):
22409 Handle lists of appointments.
22410
22411 2011-06-08 Martin Rudalics <rudalics@gmx.at>
22412
22413 * window.el (one-window-p): Move down in code.
22414 Rewrite doc-string.
22415 (window-current-scroll-bars): Rewrite doc-string.
22416 Normalize live window argument.
22417 (walk-windows, get-window-with-predicate, count-windows):
22418 Rewrite doc-string. Use window-list-1.
22419 (window-in-direction-2, window-in-direction, get-mru-window):
22420 New functions.
22421
22422 2011-06-08 Reuben Thomas <rrt@sc3d.org>
22423
22424 * progmodes/flymake.el (flymake-compilation-prevents-syntax-check):
22425 Doc fix (Bug#8713).
22426
22427 2011-06-08 Chong Yidong <cyd@stupidchicken.com>
22428
22429 * repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
22430
22431 2011-06-08 Juanma Barranquero <lekktu@gmail.com>
22432
22433 * loadhist.el (unload-feature-special-hooks):
22434 Add `comint-output-filter-functions'.
22435
22436 2011-06-08 Ivan Kanis <gnu@kanis.fr>
22437
22438 * calendar/appt.el (appt-check): Move some initializations into the let.
22439
22440 2011-06-08 Martin Rudalics <rudalics@gmx.at>
22441
22442 * window.el (window-height): Defalias to window-total-height.
22443 (window-width): Defalias to window-body-width.
22444
22445 2011-06-07 Chong Yidong <cyd@stupidchicken.com>
22446
22447 * image-mode.el (image-toggle-animation): New command.
22448 (image-mode-map): Bind it to RET.
22449 (image-mode): Update message.
22450 (image-toggle-display-image): Avoid a spurious cache flush.
22451 (image-transform-rotation): Doc fix.
22452 (image-transform-properties): Return quickly in the normal case.
22453 (image-animate-loop): Rename from image-animate-max-time.
22454
22455 * image.el (image-animate-max-time): Move to image-mode.el.
22456 (create-animated-image): Remove unnecessary function.
22457 (image-animate): Rename from image-animate-start. New arg.
22458 (image-animate-stop): Remove; just use image-animate-timer.
22459 (image-animate-timer): Use car-safe.
22460 (image-animate-timeout): Rename argument.
22461
22462 2011-06-07 Martin Rudalics <rudalics@gmx.at>
22463
22464 * window.el (get-lru-window, get-largest-window): Move here from
22465 window.c. Rename first argument to ALL-FRAMES.
22466 Rephrase doc-strings.
22467 (get-buffer-window-list): Rewrite using window-list-1.
22468 Rephrase doc-string.
22469 (window-safe-min-height, window-safe-min-width): New constants.
22470 (window-size-ignore, window-min-size, window-min-size-1)
22471 (window-sizable, window-sizable-p, window-size-fixed-1)
22472 (window-size-fixed-p, window-min-delta-1, window-min-delta)
22473 (window-max-delta-1, window-max-delta, window-resizable)
22474 (window-resizable-p, window-total-height, window-total-width)
22475 (window-body-width): New functions.
22476 (window-full-height-p, window-full-width-p): Rewrite using
22477 window-total-size.
22478 (window-body-height): Rewrite using window-body-size.
22479
22480 2011-06-06 Martin Rudalics <rudalics@gmx.at>
22481
22482 * window.el (window-right, window-left, window-child)
22483 (window-child-count, window-last-child, window-any-p)
22484 (normalize-live-buffer, normalize-live-frame)
22485 (normalize-any-window, normalize-live-window)
22486 (window-iso-combination-p, window-iso-combined-p)
22487 (window-iso-combinations)
22488 (walk-window-tree-1, walk-window-tree, walk-window-subtree)
22489 (windows-with-parameter, window-with-parameter)
22490 (window-atom-root, make-window-atom, window-atom-check-1)
22491 (window-atom-check, window-side-check, window-check):
22492 New functions.
22493 (ignore-window-parameters, window-sides, window-sides-vertical)
22494 (window-sides-slots): New variables.
22495 (window-size-fixed): Move down in code. Minor doc-string fix.
22496
22497 2011-06-05 Andreas Schwab <schwab@linux-m68k.org>
22498
22499 * comint.el (comint-dynamic-complete-as-filename)
22500 (comint-dynamic-complete-filename): Correctly call
22501 completion-in-region.
22502
22503 2011-06-05 Deniz Dogan <deniz@dogan.se>
22504
22505 * net/rcirc.el (rcirc-prompt-for-encryption): Fix bug introduced
22506 in last change.
22507
22508 2011-06-05 Deniz Dogan <deniz@dogan.se>
22509
22510 * net/rcirc.el (rcirc-prompt-for-encryption): New function.
22511 (rcirc): Use it to prompt for encryption.
22512
22513 2011-06-05 Roland Winkler <winkler@gnu.org>
22514
22515 * textmodes/bibtex.el (bibtex-search-buffer): New variable.
22516 (bibtex-search-entries): New command bound to C-c C-a.
22517 (bibtex-display-entries): New function.
22518
22519 2011-06-05 Roland Winkler <winkler@gnu.org>
22520
22521 * textmodes/bibtex.el (bibtex-generate-url-list): Fix docstring.
22522 (bibtex-insert-kill): After yanking insert newline if necessary.
22523 (bibtex-initialize): Call bibtex-string-files-init only once.
22524 (bibtex-mode): Do not call easy-menu-add.
22525 (bibtex-validate-globally): Use save-excursion in bibtex buffers.
22526 (bibtex-yank): Set arg properly if nil.
22527
22528 2011-06-05 Roland Winkler <winkler@gnu.org>
22529
22530 * textmodes/bibtex.el (bibtex-search-entry-globally):
22531 New variable.
22532 (bibtex-search-entry): Use it.
22533
22534 2011-06-05 Roland Winkler <winkler@gnu.org>
22535
22536 * textmodes/bibtex.el (bibtex-entry-format): New option
22537 sort-fields.
22538 (bibtex-format-entry, bibtex-reformat): Honor this option.
22539 (bibtex-parse-entry): Return fields in proper order.
22540
22541 2011-06-05 Juanma Barranquero <lekktu@gmail.com>
22542
22543 * doc-view.el (doc-view-remove-if): Move computation of result out
22544 of `dolist' to silence misleading lexical-binding warning.
22545
22546 2011-06-04 Chong Yidong <cyd@stupidchicken.com>
22547
22548 * emacs-lisp/timer.el (timer-activate): Remove unused arg.
22549 (timer-activate, timer-activate-when-idle): Doc fix (Bug#8793).
22550
22551 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
22552
22553 * net/tramp-sh.el (tramp-find-shell): Apply workaround also for
22554 "SunOS 5.10".
22555
22556 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
22557
22558 * net/tramp.el (tramp-set-completion-function, tramp-parse-rhosts)
22559 (tramp-parse-shosts, tramp-parse-sconfig, tramp-parse-shostkeys)
22560 (tramp-parse-hosts, tramp-parse-passwd, tramp-parse-netrc)
22561 (tramp-parse-putty):
22562 * net/tramp-sh.el (tramp-completion-function-alist-rsh)
22563 (tramp-completion-function-alist-ssh)
22564 (tramp-completion-function-alist-telnet)
22565 (tramp-completion-function-alist-su)
22566 (tramp-completion-function-alist-putty): Set `tramp-autoload'
22567 cookie.
22568
22569 * net/tramp-ftp.el:
22570 * net/tramp-sh.el:
22571 * net/tramp-smb.el: Set `tramp-autoload' cookie, and eval after
22572 load "tramp.el" `tramp-set-completion-function'.
22573
22574 2011-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
22575
22576 * shell.el: Require and use pcomplete.
22577 (shell-dynamic-complete-functions): Add pcomplete-completions-at-point.
22578 (shell-completion-vars): Set pcomplete-default-completion-function.
22579
22580 2011-06-04 Deniz Dogan <deniz@dogan.se>
22581
22582 * iswitchb.el (iswitchb-window-buffer-p): Use `member' instead of
22583 `memq' (Bug#8799).
22584
22585 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
22586
22587 * subr.el (make-progress-reporter): Add "..." by default (bug#8785).
22588
22589 2011-06-02 Juanma Barranquero <lekktu@gmail.com>
22590
22591 * bs.el (bs--mark-unmark, bs--nth-wrapper):
22592 * mpc.el (mpc-select-extend, mpc-songpointer-context):
22593 * vc/log-view.el (log-view-beginning-of-defun):
22594 * vc/smerge-mode.el (smerge-apply-resolution-patch)
22595 (smerge-refine-forward, smerge-refine-chopup-region):
22596 Silence warning for unused `dotimes' counter variables.
22597
22598 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
22599
22600 * net/tramp.el (tramp-with-progress-reporter): Rename from
22601 with-progress-reporter. Use `declare'.
22602 * net/tramp-smb.el:
22603 * net/tramp-sh.el:
22604 * net/tramp-gvfs.el: Update all uses.
22605
22606 2011-06-02 Jay Belanger <jay.p.belanger@gmail.com>
22607
22608 * calc/calc.el (calc-kill-stack-buffer): Make sure that the trail
22609 buffer isn't killed before making it current.
22610
22611 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
22612
22613 Silence various byte-compiler warnings.
22614 * emacs-lisp/byte-run.el (make-obsolete-variable): New argument
22615 `access-type' and new obsolescence format.
22616 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): Adjust to
22617 new format.
22618 (byte-compile-check-variable): New `access-type' argument.
22619 Only warn if the access-type is obsolete.
22620 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
22621 (byte-compile-variable-set): Adjust callers.
22622 * help-fns.el (describe-variable): Adjust to new obsolescence format.
22623 * mail/sendmail.el (mail-mailer-swallows-blank-line): Only mark
22624 setting it as obsolete.
22625 * simple.el (minibuffer-completing-symbol):
22626 * font-lock.el (font-lock-beginning-of-syntax-function): Only mark read
22627 access as obsolete.
22628 * minibuffer.el (minibuffer-completing-file-name): Don't make it
22629 obsolete yet.
22630 * international/quail.el (quail-mouse-choose-completion): Remove unused
22631 code referring to obsolete var.
22632 (quail-choose-completion-string): Remove.
22633 * server.el (server-clients-with, server-kill-buffer-query-function)
22634 (server-kill-emacs-query-function): Silence "unused `proc'" warnings.
22635 * proced.el (proced-send-signal):
22636 * emacs-lisp/lisp.el (lisp-complete-symbol):
22637 Replace completion-annotate-function with completion-extra-properties.
22638
22639 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
22640
22641 * simple.el (goto-line): Use read-number.
22642 (overriding-map-is-bound): Remove.
22643 (saved-overriding-map): Change default.
22644 (save&set-overriding-map): Rename from ensure-overriding-map-is-bound;
22645 Take the map as argument.
22646 (universal-argument, negative-argument, digit-argument): Use it.
22647 (restore-overriding-map): Adjust.
22648 (do-auto-fill): Use fill-forward-paragraph.
22649 (keyboard-quit): Don't signal an error when debug-on-quit is non-nil.
22650
22651 * minibuffer.el (minibuffer-inactive-mode-map): New var.
22652 (minibuffer-inactive-mode): New major mode.
22653 * mouse.el (mouse-drag-region): Remove the "mouse-1 pops up
22654 the *Messages* buffer" hack.
22655 (mouse-popup-menubar): Don't burp if the event is a normal key.
22656
22657 Miscellaneous tweaks.
22658 * emacs-lisp/cl-macs.el (dolist, dotimes): Use the same strategy for
22659 lexical scoping as in subr.el's dolist and dotimes.
22660 * emacs-lisp/bytecomp.el (byte-compile-unfold-bcf):
22661 Silence compiler warning.
22662 * thingatpt.el (forward-whitespace): Trivial coding style fix.
22663 * subr.el (with-output-to-temp-buffer): Provide an edebug spec.
22664 * international/ccl.el (ccl-compile): Trivial simplification.
22665 * help-fns.el (help-do-arg-highlight): Silence compiler warning.
22666 * emacs-lisp/testcover.el (testcover-end): Remove spurious
22667 `printflag' argument.
22668 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
22669 Purecopy the whole obsolescence data.
22670
22671 2011-06-01 Leo Liu <sdl.web@gmail.com>
22672
22673 * net/rcirc.el (rcirc-decode-coding-system): Revert last change;
22674 improve doc-string as suggested by Marco Pessotto
22675 <melmothx@gmail.com>.
22676 (rcirc-print): Fix last change.
22677
22678 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
22679
22680 * minibuffer.el (complete-with-action): Return nil for the metadata and
22681 boundaries of non-functional tables.
22682 (completion-table-dynamic): Return nil for the metadata.
22683 (completion-table-with-terminator): Add default case, using
22684 complete-with-action.
22685 (completion--metadata): New function.
22686 (completion-all-sorted-completions, minibuffer-completion-help): Use it
22687 to try and avoid pathological performance problems.
22688 (completion--embedded-envvar-table): Return `category' metadata.
22689
22690 2011-05-31 Lars Magne Ingebrigtsen <larsi@gnus.org>
22691
22692 * subr.el (process-alive-p): New tiny convenience function.
22693
22694 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
22695
22696 * emacs-lisp/debug.el (debug): Save&restore not just the buffer's
22697 content but also its previous major mode.
22698
22699 2011-05-31 Helmut Eller <eller.helmut@gmail.com>
22700
22701 * emacs-lisp/debug.el (debug): Restore the previous content of the
22702 *Backtrace* buffer when we exit with C-M-c.
22703
22704 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
22705
22706 * minibuffer.el: Add metadata method to completion tables.
22707 (completion-category-overrides): New defcustom.
22708 (completion-metadata, completion--field-metadata)
22709 (completion-metadata-get, completion--styles)
22710 (completion--cycle-threshold): New functions.
22711 (completion-try-completion, completion-all-completions):
22712 Add `metadata' argument to choose completion-styles.
22713 (completion--do-completion): Use metadata to choose cycling.
22714 (completion-all-sorted-completions): Use metadata for sorting.
22715 Remove :completion-cycle-penalty which is not needed any more.
22716 (completion--try-word-completion): Add `metadata' argument.
22717 (minibuffer-completion-help): Check metadata for annotation function
22718 and sorting.
22719 (completion-file-name-table): Return `category' metadata.
22720 (minibuffer-completing-file-name): Make obsolete.
22721 * simple.el (minibuffer-completing-symbol): Make obsolete.
22722 * icomplete.el (icomplete-completions): Pass new `metadata' param to
22723 completion-try-completion.
22724
22725 2011-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
22726
22727 * mail/smtpmail.el (smtpmail-send-data): Add progress reporter.
22728
22729 2011-05-30 Leo Liu <sdl.web@gmail.com>
22730
22731 * net/rcirc.el (rcirc-debug-buffer): Use visible buffer name.
22732 (rcirc-print): Decode all incoming messages (bug#8744).
22733 (rcirc-decode-coding-system): Allow value nil for automatic coding
22734 system detection.
22735
22736 2011-06-01 Glenn Morris <rgm@gnu.org>
22737
22738 * mail/emacsbug.el (report-emacs-bug-hook): Mailclient ignores From.
22739
22740 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
22741
22742 * image.el (image-animate-max-time): Allow nil and t values.
22743 Default to nil.
22744 (create-animated-image): Doc fix.
22745 (image-animate-start): Remove second arg; just use
22746 image-animate-max-time.
22747 (image-animate-timeout): Doc fix. Args changed.
22748
22749 * image-mode.el (image-toggle-display-image): Ensure that the
22750 image spec passed to the animate timer is the same object as in
22751 the buffer's display property (Bug#6981).
22752 (image-transform-properties): Doc fix.
22753
22754 * image.el (image-animate-max-time): Default to nil.
22755
22756 2011-05-29 Martin Rudalics <rudalics@gmx.at>
22757
22758 * menu-bar.el (kill-this-buffer-enabled-p): Avoid looping over
22759 entire buffer list (Bug#8184).
22760
22761 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
22762
22763 * image.el (imagemagick-types-inhibit)
22764 (imagemagick-register-types): Doc fix.
22765
22766 2011-05-29 Deniz Dogan <deniz@dogan.se>
22767
22768 * net/rcirc.el (rcirc): Use the user's stored encryption method by
22769 default.
22770
22771 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
22772
22773 * select.el: Don't perform clipboard-manager saving in hooks;
22774 leave the hooks empty.
22775
22776 2011-05-28 Leo Liu <sdl.web@gmail.com>
22777
22778 * replace.el (occur-menu-map, occur-edit-mode-map): New vars.
22779 (occur-mode-map): Bind occur-edit-mode. Use occur-menu-map.
22780 (occur-edit-mode): New major mode (Bug#8463).
22781 (occur-after-change-function): New function.
22782 (occur-engine): Give Occur tags a read-only property.
22783
22784 2011-05-28 Kevin Ryde <user42@zip.com.au>
22785
22786 * subr.el (def-edebug-spec): Doc fix (Bug#8430).
22787
22788 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
22789
22790 * bindings.el (help-echo): Make the initial non-indicator dash
22791 empty on graphical terminals (Bug#7295).
22792
22793 * files.el (auto-mode-alist): Move config rule after the
22794 in-stripping one (Bug#8547).
22795
22796 * newcomment.el (comment-end-skip): Doc fix (Bug#8659).
22797
22798 * startup.el (normal-splash-screen): Remove gratuitous mode-line
22799 setting (Bug#8740).
22800
22801 2011-05-28 Alp Aker <aker@pitt.edu> (tiny change)
22802
22803 * buff-menu.el (Buffer-menu-revert-function, Buffer-menu-sort)
22804 (Buffer-menu-buffer+size): Use Buffer-menu-buffer-column
22805 (Bug#8539).
22806
22807 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
22808
22809 * emacs-lisp/re-builder.el (re-builder): Improve doc (Bug#8286).
22810
22811 2011-05-28 Dima Kogan <dkogan@cds.caltech.edu> (tiny change)
22812
22813 * progmodes/hideshow.el (hs-looking-at-block-start-p): New fun.
22814 (hs-hide-block-at-point, hs-find-block-beginning)
22815 (hs-already-hidden-p, hs-hide-block, hs-show-block): Use it
22816 (Bug#8279).
22817
22818 2011-05-28 Glenn Morris <rgm@gnu.org>
22819
22820 * startup.el (fancy-about-screen): Use standard mode line. (Bug#8740)
22821
22822 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
22823
22824 * help-fns.el (describe-function-1): If the function is a derived
22825 major mode, print the parent mode.
22826
22827 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode, java-mode)
22828 (idl-mode, pike-mode, awk-mode): Inherit from prog-mode.
22829
22830 2011-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
22831
22832 * minibuffer.el (completion--capf-wrapper): Check applicability before
22833 returning non-nil for non-exclusive completion data.
22834 * progmodes/etags.el (tags-completion-at-point-function):
22835 * info-look.el (info-lookup-completions-at-point): Mark as
22836 non-exclusive.
22837 (info-complete): Adjust accordingly.
22838
22839 * info-look.el: Convert to lexical-binding and completion-at-point.
22840 (info-lookup-completions-at-point): New function.
22841 (info-complete): Use it and completion-in-region.
22842
22843 2011-05-28 Drew Adams <drew.adams@oracle.com>
22844
22845 * isearch.el: Let M-e start with point at the first mismatched char.
22846 (isearch-fail-pos): New function.
22847 (isearch-edit-string): Use it.
22848
22849 2011-05-28 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
22850
22851 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
22852
22853 2011-05-27 Toby Cubitt <toby-predictive@dr-qubit.org>
22854
22855 * emacs-lisp/avl-tree.el: New avl-tree-stack datatype. Add new
22856 traversal functions for avl-trees.
22857 (avl-tree--stack): New struct.
22858 (avl-tree-stack-p, avl-tree--stack-repopulate): New funs.
22859 (avl-tree-enter): Add optional `updatefun' arg.
22860 (avl-tree--do-enter): Add optional `updatefun' arg.
22861 Change return value.
22862 (avl-tree-delete): Add optional `test' and `nilflag' args.
22863 (avl-tree--do-delete): Add `test' and `nilflag' args.
22864 Change return value.
22865 (avl-tree-member): Add optional `nilflag'
22866 (avl-tree-member-p): New function.
22867 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar): New functions.
22868 (avl-tree-stack, avl-tree-stack-pop, avl-tree-stack-first)
22869 (avl-tree-stack-empty-p): New functions.
22870
22871 * emacs-lisp/avl-tree.el (avl-tree--del-balance): Rename from
22872 avl-tree--del-balance1 and make it work both ways.
22873 (avl-tree--del-balance2): Remove.
22874 (avl-tree--enter-balance): Rename from avl-tree--enter-balance1 and
22875 make it work both ways.
22876 (avl-tree--enter-balance2): Remove.
22877 (avl-tree--switch-dir, avl-tree--dir-to-sign, avl-tree--sign-to-dir):
22878 New macros.
22879 (avl-tree--mapc, avl-tree-map): Add direction argument.
22880
22881 2011-05-27 David Michael <fedora.dm0@gmail.com> (tiny change)
22882
22883 * files.el (interpreter-mode-alist): Add rbash (bug#8745).
22884
22885 2011-05-27 Chong Yidong <cyd@stupidchicken.com>
22886
22887 * select.el: Support clipboard managers with built-in function
22888 x-clipboard-manager-save, via delete-frame-functions and
22889 kill-emacs-hook.
22890 (xselect-convert-to-targets): Add MULTIPLE target to list.
22891 (xselect-convert-to-save-targets): New function.
22892
22893 2011-05-27 Kenichi Handa <handa@m17n.org>
22894
22895 * mail/sendmail.el (mail-encode-header): Avoid double encoding by
22896 let-binding rfc2047-encode-encoded-words to nil.
22897
22898 2011-05-27 Glenn Morris <rgm@gnu.org>
22899
22900 * mail/emacsbug.el: Don't require url-util.
22901
22902 * shell.el (shell-directory-tracker): Case matters. (Bug#8735)
22903
22904 * files.el (set-auto-mode):
22905 Also respect mode: entries at the end of the file. (Bug#8586)
22906
22907 2011-05-26 Glenn Morris <rgm@gnu.org>
22908
22909 * files.el (hack-local-variables-prop-line, hack-local-variables):
22910 Downcase mode names, as seems to be traditional.
22911 (hack-local-variables, hack-local-variables-apply): Doc fixes.
22912
22913 * mail/emacsbug.el (report-emacs-bug): Mention checking From address.
22914 (report-emacs-bug-hook): Try to validate the From address. (Bug#8038)
22915
22916 2011-05-25 Julien Danjou <julien@danjou.info>
22917
22918 * textmodes/rst.el (rst-define-level-faces): Do not define face
22919 symbol if it is already defined.
22920
22921 2011-05-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
22922
22923 * play/5x5.el (5x5-new-game, 5x5-randomize):
22924 Reset 5x5-solver-output to nil when a new grid is cast.
22925 (5x5-log-init, 5x5-log): Use defsubst instead of defmacro to shunt
22926 these debugging traces, as defmacro breaks the compiled code.
22927
22928 2011-05-24 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
22929
22930 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
22931
22932 2011-05-24 Leo Liu <sdl.web@gmail.com>
22933
22934 * vc/vc-bzr.el (vc-bzr-sha1-program): Rename from sha1-program.
22935 (vc-bzr-sha1): Adapt.
22936
22937 * sha1.el: Remove. Function `sha1' is now builtin.
22938
22939 * bindings.el: Provide sha1 feature.
22940
22941 2011-05-24 Kenichi Handa <handa@m17n.org>
22942
22943 * mail/sendmail.el: Require `rfc2047'.
22944 (mail-insert-from-field): Do not perform RFC2047 encoding.
22945 (mail-encode-header): New function.
22946 (sendmail-send-it): Set buffer-file-coding-system of the work
22947 buffer to the return value of select-message-coding-system.
22948 Call mail-encode-header.
22949
22950 * mail/smtpmail.el (smtpmail-send-it): Call mail-encode-header.
22951
22952 2011-05-24 Sean Neakums <sneakums@zork.net> (tiny change)
22953
22954 * mail/supercite.el (sc-default-cite-frame):
22955 Handle sc-nested-citation-p when sc-cite-blank-lines-p is non-nil.
22956
22957 2011-05-24 Glenn Morris <rgm@gnu.org>
22958
22959 * progmodes/python.el (brm-menu): Declare.
22960
22961 * emulation/viper.el (viper-set-hooks): Declare.
22962
22963 * play/5x5.el (5x5-log-init, 5x5-log): Evaluate when compiling.
22964 (5x5-log-init, 5x5-log, 5x5-solver): Doc fixes.
22965 (math-map-vec, math-sub, math-mul, math-make-intv, math-reduce-vec)
22966 (math-format-number, math-pow, calcFunc-arrange, calcFunc-cvec)
22967 (calcFunc-diag, calcFunc-trn, calcFunc-inv, calcFunc-mrow)
22968 (calcFunc-mcol, calcFunc-vconcat, calcFunc-index): Declare.
22969
22970 2011-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
22971
22972 Add an :exit-function for completion-at-point.
22973
22974 * minibuffer.el (completion--done): New fun.
22975 (completion--do-completion): Use it. New arg `expect-exact'.
22976 (minibuffer-complete, minibuffer-complete-word): Don't output message,
22977 since completion--do-completion does it for us now.
22978 (minibuffer-force-complete): Use completion--done and
22979 completion--replace. Handle sole-completion case with more care.
22980 (minibuffer-complete-and-exit): Use new `expect-exact' arg.
22981 (completion-extra-properties): New var.
22982 (completion-annotate-function): Make obsolete.
22983 (minibuffer-completion-help): Adjust accordingly.
22984 Use completion-list-insert-choice-function.
22985 (completion-at-point, completion-help-at-point):
22986 Bind completion-extra-properties.
22987 (completion-pcm-word-delimiters): Add | (for uniquify, for example).
22988 * simple.el (completion-list-insert-choice-function): New var.
22989 (completion-setup-function): Preserve it.
22990 (choose-completion): Pay attention to it, shuffle the code a bit.
22991 (choose-completion-string): New arg `insert-function'.
22992
22993 * textmodes/bibtex.el: Convert to lexical binding.
22994 (bibtex-mode-map): Use completion-at-point.
22995 (bibtex-mode): Use define-derived-mode&completion-at-point-functions.
22996 (bibtex-completion-at-point-function): New fun, from bibtex-complete.
22997 (bibtex-complete): Define as obsolete alias.
22998 (bibtex-complete-internal): Remove.
22999 (bibtex-format-entry): Remove unused sub-group in regexp.
23000 * shell.el (shell--command-completion-data)
23001 (shell-environment-variable-completion):
23002 * pcomplete.el (pcomplete-completions-at-point):
23003 * comint.el (comint--complete-file-name-data): Use :exit-function
23004 instead of completion-table-with-terminator so it also works for
23005 choose-completion.
23006
23007 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
23008
23009 * <lots-of-files>.el: Don't quote lambda expressions with `quote'.
23010
23011 * vc/smerge-mode.el (smerge-refine-subst): Don't deactivate the mark
23012 (bug#8710).
23013
23014 * emacs-lisp/lisp.el (up-list): Fix forward movement (bug#8708).
23015
23016 2011-05-23 Ken Manheimer <ken.manheimer@gmail.com>
23017
23018 * allout.el (allout-inhibit-auto-fill-on-headline): Create new
23019 customization variable and implement: If non-nil, auto-fill will
23020 be inhibited while on topic's header line.
23021
23022 2011-05-23 Vincent Belaïche <vincentb1@users.sourceforge.net>
23023
23024 * play/5x5.el: I/ Add an arithmetic solver to suggest positions to
23025 click on. II/ Make 5x5 multisession. III/ Ensure that random grids
23026 always have a solution in grid size = 5 cases.
23027 (5x5-mode-map): Add keybinding to function `5x5-solve-suggest'.
23028 (5x5-solver-output, 5x5-log-buffer): New vars.
23029 (5x5-grid, 5x5-x-pos, 5x5-y-pos, 5x5-moves, 5x5-cracking):
23030 Make these variables buffer local to achieve 5x5 multi-session-ness.
23031 (5x5): Set 5x5-grid-size only if SIZE is non-negative.
23032 (5x5-grid-to-vec, 5x5-vec-to-grid, 5x5-log-init, 5x5-log, 5x5-solver)
23033 (5x5-solve-suggest): New funs.
23034 (5x5-randomize): Use 5x5-make-move instead of 5x5-flip-cell to
23035 randomize a grid so that we ensure that there is always a solution.
23036 (5x5-make-random-grid): Allow other movement than flipping.
23037
23038 2011-05-23 Kevin Ryde <user42@zip.com.au>
23039
23040 * emacs-lisp/advice.el (ad-read-advised-function):
23041 Use `function-called-at-point' as the default, if it has
23042 advice and passes PREDICATE.
23043
23044 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
23045
23046 * emacs-lisp/bytecomp.el (byte-compile-function-form): Only call
23047 byte-compile-lambda if it's actually a lambda.
23048
23049 * emacs-lisp/eieio.el (eieio-defgeneric-form-primary-only-one):
23050 Fix function quoting. Use backquote better.
23051
23052 2011-05-22 Yuanle Song <sylecn@gmail.com>
23053
23054 * nxml/rng-xsd.el (rng-xsd-check-pattern): Use case-sensitive
23055 matching (Bug#8516).
23056
23057 2011-05-22 Jari Aalto <jari.aalto@cante.net>
23058
23059 * vc/vc-dir.el (vc-default-dir-printer): Give edited tag a
23060 different face (Bug#8178).
23061
23062 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
23063
23064 * vc/diff-mode.el (diff-changed): Don't use terminal specs for
23065 defface (Bug#8144).
23066
23067 2011-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
23068
23069 * emacs-lisp/macroexp.el (macroexpand-all-1): Convert ' to #' for
23070 funcall as well (bug#8712). Warn when performing those conversions.
23071 * emacs-lisp/bytecomp.el (byte-compile-form): Fix error report.
23072
23073 * progmodes/grep.el (grep-mode): Fix it for good (bug#8684)!
23074
23075 2011-05-22 Glenn Morris <rgm@gnu.org>
23076
23077 * files.el (hack-local-variables-prop-line): Small simplifications.
23078 (hack-local-variables, hack-local-variables-prop-line):
23079 If MODE-ONLY, return the mode, rather than just `t'.
23080
23081 2011-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
23082
23083 * progmodes/grep.el (grep-mode): Fix last change (bug#8684).
23084
23085 2011-05-21 Glenn Morris <rgm@gnu.org>
23086
23087 * files.el (hack-local-variables-prop-line, hack-local-variables):
23088 If only interested in the mode, don't bother doing the other stuff.
23089
23090 * image-mode.el (image-after-revert-hook):
23091 Redraw all frames on which the image is visible. (Bug#8567)
23092
23093 * dired-aux.el (dired-touch-initial): Just use current-time. (Bug#6887)
23094
23095 * wid-edit.el (widget-checklist-match-inline):
23096 Fix 2011-04-19 change. (Bug#8649)
23097
23098 2011-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
23099
23100 * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
23101 Also allow singlespace after single-letter capitals followed by a dot.
23102
23103 * nxml/nxml-mode.el (nxml-electric-slash): Reindent when completion is
23104 enabled. Suggested by James Ahlborn <jahlborn@gmail.com> (bug#8704).
23105
23106 2011-05-20 Nix <nix@esperi.org.uk>
23107
23108 * files.el (basic-save-buffer-2):
23109 Fix handling of break-hardlink-on-save with non-existent files.
23110
23111 2011-05-19 Deniz Dogan <deniz@dogan.se>
23112
23113 * net/rcirc.el (rcirc-mode): Initialize rcirc-urls to nil.
23114 (rcirc-markup-urls): Check if rcirc-url-regexp is nil.
23115
23116 2011-05-19 Glenn Morris <rgm@gnu.org>
23117
23118 * progmodes/f90.el (f90-type-def-re):
23119 Handle "type, bind(c)". (Bug#8691)
23120
23121 * emacs-lisp/autoload.el (batch-update-autoloads):
23122 Set autoload-excludes by parsing loadup.el rather than Makefiles.
23123
23124 2011-05-18 Michael Albinus <michael.albinus@gmx.de>
23125
23126 * net/tramp.el (tramp-process-actions): Set "first-password-request"
23127 property for the correct connection in case of multihops.
23128
23129 2011-05-18 Glenn Morris <rgm@gnu.org>
23130
23131 * emacs-lisp/authors.el (authors-fixed-entries): Remove fakemail.c.
23132 * mail/sendmail.el (sendmail-program): Fall back to just "sendmail".
23133
23134 Rationalize calendar handling of day and month abbrev-arrays.
23135 * calendar/calendar.el (calendar-customized-p): New function.
23136 (calendar-abbrev-construct, calendar-make-alist): Change what it does.
23137 (calendar-day-name-array, calendar-month-name-array): Doc fix.
23138 Add :set function.
23139 (calendar-abbrev-length, calendar-day-abbrev-array)
23140 (calendar-month-abbrev-array): Make defcustoms, with appropriate :set.
23141 (calendar-day-abbrev-array, calendar-month-abbrev-array):
23142 Elements may no longer be nil.
23143 (calendar-day-name, calendar-month-name):
23144 Update for changed nature of abbrev arrays.
23145 * calendar/diary-lib.el (diary-name-pattern):
23146 Update for changed nature of abbrev arrays.
23147 (diary-mark-entries-1): Update calendar-make-alist calls.
23148 (diary-font-lock-date-forms): Doc fix for changed abbrev arrays.
23149 * calendar/cal-html.el (cal-html-day-abbrev-array):
23150 Simply inherit from calendar-day-abbrev-array.
23151
23152 2011-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
23153
23154 * progmodes/grep.el (grep-mode): Disable default
23155 compilation-directory-matcher setting (bug#8684).
23156
23157 2011-05-17 Michael Albinus <michael.albinus@gmx.de>
23158
23159 * net/tramp.el (tramp-handle-insert-file-contents): Use "dd"
23160 instead of "head" and "tail". There were problems with SunOS 5.9,
23161 and it performs better.
23162
23163 2011-05-17 Glenn Morris <rgm@gnu.org>
23164
23165 * mail/mail-utils.el (mail-dont-reply-to): Silence compiler.
23166
23167 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
23168 Replace obsolete function.
23169
23170 * shell.el (pcomplete-parse-arguments-function): Declare.
23171
23172 * calendar/appt.el (appt-message-warning-time, appt-display-mode-line)
23173 (appt-display-diary, appt-display-interval, appt-prev-comp-time)
23174 (appt-check): Doc fixes.
23175 (appt-disp-window-function, appt-delete-window-function):
23176 Remove needless special case in custom :type.
23177 (appt-display-count): Default to 0, not nil.
23178 (appt-check): Reset appt-display-count to 0, not nil.
23179
23180 2011-05-17 Juanma Barranquero <lekktu@gmail.com>
23181
23182 * progmodes/python.el (python-font-lock-keywords):
23183 Add the Python 3.X keyword "nonlocal" (bug#8639).
23184
23185 2011-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
23186
23187 * emacs-lisp/eieio.el (defmethod): Fix quoting of code (bug#8677).
23188
23189 2011-05-16 Kevin Ryde <user42@zip.com.au>
23190
23191 * info-look.el (makefile-automake-mode): New setups, looking in
23192 automake manual, then makefile-mode.
23193 (makefile-mode): Remove automake manual, have it just in
23194 makefile-automake-mode since there's various things different or
23195 not relevant to plain make.
23196 (makefile-mode): Remove "other-modes" non-existent automake-mode,
23197 believe a hypothetical automake-mode would go to makefile-mode,
23198 not the other way around.
23199
23200 2011-05-15 Chong Yidong <cyd@stupidchicken.com>
23201
23202 * vc/diff-mode.el (diff-fixup-modifs): Locate correct position for
23203 hunk-end tags (Bug#8672).
23204
23205 * vc/vc-annotate.el (vc-annotate-mode-map): Bind = to
23206 vc-annotate-show-diff-revision-at-line (Bug#8671).
23207
23208 2011-05-14 Glenn Morris <rgm@gnu.org>
23209
23210 * vc/add-log.el (add-change-log-entry): Don't start adding a new entry
23211 in the middle of an existing one with multiple authors. (Bug#8645)
23212 (change-log-font-lock-keywords): Also handle multiple author lines
23213 with leading tabs. (Bug#8644)
23214
23215 * calendar/appt.el (appt-check): Rename some local variables.
23216 Some simplification/reordering.
23217
23218 * mail/feedmail.el (feedmail-confirm-outgoing-timeout)
23219 (feedmail-sendmail-f-doesnt-sell-me-out)
23220 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
23221 (feedmail-debug-sit-for, feedmail-queue-express-hook)
23222 (feedmail-queue-runner-message-sender): Set :version.
23223 (bbdb-search, bbdb-records, smtp-via-smtp, smtp-server)
23224 (bbdb-dwim-net-address, vm-mail): Declare.
23225 (feedmail-binmail-gnulinuxish-template):
23226 Rename from feedmail-binmail-linuxish-template.
23227 (feedmail-buffer-to-smtp, feedmail-vm-mail-mode):
23228 Use insert-buffer-substring.
23229
23230 2011-05-14 Bill Carpenter <bill@carpenter.org>
23231
23232 * mail/feedmail.el (feedmail-patch-level): Increase.
23233 (feedmail-debug): New custom group.
23234 (feedmail-confirm-outgoing-timeout)
23235 (feedmail-sendmail-f-doesnt-sell-me-out)
23236 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
23237 (feedmail-debug-sit-for, feedmail-queue-express-hook): New options.
23238 (feedmail-sender-line, feedmail-from-line)
23239 (feedmail-fiddle-headers-upwardly, feedmail-enable-spray)
23240 (feedmail-spray-this-address)
23241 (feedmail-spray-address-fiddle-plex-list)
23242 (feedmail-queue-use-send-time-for-date)
23243 (feedmail-queue-use-send-time-for-message-id)
23244 (feedmail-last-chance-hook, feedmail-queue-runner-mode-setter)
23245 (feedmail-buffer-eating-function):
23246 Doc fixes.
23247 (feedmail-spray-via-bbdb, feedmail-buffer-to-smtp)
23248 (feedmail-vm-mail-mode, feedmail-message-action-scroll-up)
23249 (feedmail-message-action-scroll-down): New functions.
23250 (feedmail-queue-directory, feedmail-queue-draft-directory):
23251 Use expand-file-name.
23252 (feedmail-prompt-before-queue-standard-alist): Add scroll entries.
23253 Remove C-v help entry.
23254 (feedmail-queue-buffer-file-name): New variable.
23255 (feedmail-mail-send-hook-splitter, feedmail-buffer-to-binmail)
23256 (feedmail-buffer-to-smtpmail, feedmail-queue-express-to-draft)
23257 (feedmail-message-action-send-strong, feedmail-message-action-edit)
23258 (feedmail-message-action-draft, feedmail-message-action-draft-strong)
23259 (feedmail-message-action-queue, feedmail-message-action-queue-strong)
23260 (feedmail-message-action-toggle-spray)
23261 (feedmail-run-the-queue-no-prompts)
23262 (feedmail-run-the-queue-global-prompt, feedmail-queue-reminder)
23263 (feedmail-look-at-queue-directory, feedmail-queue-subject-slug-maker)
23264 (feedmail-create-queue-filename, feedmail-rfc822-time-zone):
23265 (feedmail-fiddle-header, feedmail-give-it-to-buffer-eater)
23266 (feedmail-envelope-deducer, feedmail-fiddle-from)
23267 (feedmail-fiddle-sender, feedmail-default-date-generator)
23268 (feedmail-fiddle-date, feedmail-fiddle-message-id)
23269 (feedmail-fiddle-spray-address)
23270 (feedmail-fiddle-list-of-spray-fiddle-plexes)
23271 (feedmail-fiddle-list-of-fiddle-plexes)
23272 (feedmail-fill-to-cc-function, feedmail-fill-this-one)
23273 (feedmail-one-last-look, feedmail-fqm-p): Add debug calls.
23274 (feedmail-queue-runner-message-sender, feedmail-binmail-template):
23275 Change default. Doc fix.
23276 (feedmail-queue-runner-cleaner-upper): Use feedmail-say-chatter.
23277 (feedmail-binmail-linuxish-template): New constant.
23278 (feedmail-buffer-to-sendmail): Doc fix. Add debug call.
23279 Respect feedmail-sendmail-f-doesnt-sell-me-out.
23280 (feedmail-send-it): Add debug call.
23281 Use feedmail-queue-buffer-file-name, and
23282 feedmail-send-it-immediately-wrapper.
23283 (feedmail-message-action-send): Add debug call.
23284 Use feedmail-send-it-immediately-wrapper.
23285 (feedmail-queue-express-to-queue): Add debug call.
23286 Run feedmail-queue-express-hook.
23287 (feedmail-message-action-help): Add debug call. Use feedmail-p-h-b-n.
23288 (feedmail-message-action-help-blat):
23289 Rename from feedmail-queue-send-edit-prompt-help-first.
23290 (feedmail-run-the-queue): Add debug call. Set buffer-file-type.
23291 Check line-endings. Handle errors better.
23292 (feedmail-queue-reminder-brief, feedmail-queue-reminder-medium):
23293 Doc fix. Add debug call.
23294 (feedmail-queue-send-edit-prompt): Doc fix. Add debug call.
23295 Use feedmail-queue-send-edit-prompt-inner.
23296 (feedmail-queue-runner-prompt, feedmail-scroll-buffer): New functions.
23297 (feedmail-queue-send-edit-prompt-inner): New function, extracted
23298 from feedmail-queue-send-edit-prompt.
23299 (feedmail-queue-send-edit-prompt-help)
23300 (feedmail-queue-send-edit-prompt-help-later): Remove functions.
23301 (feedmail-tidy-up-slug): Add debug call.
23302 Respect feedmail-queue-slug-suspect-regexp.
23303 (feedmail-queue-subject-slug-maker): Use buffer-substring-no-properties.
23304 (feedmail-dump-message-to-queue): Add debug call.
23305 Expand queue-directory.
23306 (feedmail-dump-message-to-queue): Change message slightly.
23307 Use feedmail-say-chatter.
23308 (feedmail-rfc822-date): Add debug call. Bind system-time-locale.
23309 (feedmail-send-it-immediately-wrapper): New function.
23310 (feedmail-send-it-immediately): Add debug calls. Use let not let*.
23311 Insert empty string rather than newline. Handle full-frame case.
23312 Use catch/throw. Use feedmail-say-chatter.
23313 (feedmail-fiddle-from): Try mail-host-address.
23314 (feedmail-default-message-id-generator): Doc fix.
23315 Bind system-time-locale. Handle missing end.
23316 (feedmail-fiddle-x-mailer): Add debug call.
23317 Handle feedmail-x-mailer-line being nil.
23318 (feedmail-accume-n-nuke-header, feedmail-deduce-address-list):
23319 Add debug call. Use buffer-substring-no-properties.
23320 (feedmail-say-debug, feedmail-say-chatter): New functions.
23321 (feedmail-find-eoh): Give an explicit error.
23322
23323 2011-05-13 Ulf Jasper <ulf.jasper@web.de>
23324
23325 * net/newst-treeview.el (newsticker-treeview-face): Change default
23326 family from helvetica to sans.
23327 (newsticker-treeview-tool-bar-map): Move tool-bar icons to
23328 etc/images/newsticker.
23329
23330 * net/newst-reader.el (newsticker-feed-face): Change default
23331 family from helvetica to sans.
23332
23333 * net/newst-plainview.el (newsticker-new-item-face)
23334 (newsticker-old-item-face, newsticker-immortal-item-face)
23335 (newsticker-obsolete-item-face, newsticker-date-face)
23336 (newsticker-statistics-face): Change default family from
23337 helvetica to sans.
23338 (newsticker--plainview-tool-bar-map): Move tool-bar icons to
23339 etc/images/newsticker.
23340
23341 * net/newst-backend.el (newsticker--do-run-auto-mark-filter)
23342 (newsticker--process-auto-mark-filter-match): Tell user about
23343 auto-marking.
23344
23345 2011-05-13 Didier Verna <didier@xemacs.org>
23346
23347 Common Lisp indentation improvements on defmethod and lambda-lists.
23348 * emacs-lisp/cl-indent.el: Advertise the changes and remove obsolete
23349 TODO entries.
23350 (lisp-lambda-list-keyword-parameter-indentation)
23351 (lisp-lambda-list-keyword-parameter-alignment)
23352 (lisp-lambda-list-keyword-alignment): New customizable user options.
23353 (lisp-indent-defun-method): Improve docstring.
23354 (extended-loop-p): Fix comment.
23355 (lisp-indent-lambda-list-keywords-regexp): New variable.
23356 (lisp-indent-lambda-list): New function.
23357 (lisp-indent-259): Use it.
23358 (lisp-indent-defmethod): Support for more than one
23359 method qualifier and properly indent methods lambda-lists.
23360 (defgeneric): Provide a missing common-lisp-indent-function property.
23361
23362 2011-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
23363
23364 * thingatpt.el (bounds-of-thing-at-point): Return nil rather than
23365 bounds for the empty string (bug#8667).
23366
23367 2011-05-13 Glenn Morris <rgm@gnu.org>
23368
23369 * mail/feedmail.el (feedmail-buffer-to-sendmail): Require sendmail.
23370
23371 * mail/sendmail.el (sendmail-program): Try executable-find first.
23372 (sendmail-send-it): `sendmail-program' cannot be unbound.
23373
23374 * calendar/appt.el (appt-make-list): Simplify.
23375 (appt-time-msg-list): Doc fix.
23376 (appt-check): Change mode-line message at the time of the appointment.
23377
23378 2011-05-12 Andreas Schwab <schwab@linux-m68k.org>
23379
23380 * progmodes/ld-script.el (ld-script-keywords)
23381 (ld-script-builtins): Update keywords list.
23382
23383 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
23384
23385 * progmodes/grep.el (grep-filter): Don't trip on partial lines.
23386
23387 * shell.el (shell-completion-vars): New function.
23388 (shell-mode):
23389 * simple.el (read-shell-command): Use it.
23390 (blink-matching-open): No need for " [...]" in minibuffer-message.
23391
23392 2011-05-12 Glenn Morris <rgm@gnu.org>
23393
23394 * calendar/appt.el (appt-now-displayed): Remove pointless variable.
23395 (appt-check): Simplify.
23396
23397 2011-05-12 Eli Zaretskii <eliz@gnu.org>
23398
23399 * vc/smerge-mode.el (smerge-resolve): Use null-device rather than a
23400 literal "/dev/null".
23401
23402 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
23403
23404 * emacs-lisp/lisp.el (lisp-complete-symbol, lisp-completion-at-point):
23405 Fix typo.
23406
23407 2011-05-12 Ralph Schleicher <rs@ralph-schleicher.de>
23408
23409 * progmodes/which-func.el (which-function):
23410 Use add-log-current-defun instead of add-log-current-defun-function,
23411 which might not be defined (Bug#8260).
23412
23413 2011-05-12 Glenn Morris <rgm@gnu.org>
23414
23415 * emacs-lisp/bytecomp.el (byte-compile-file-form-defmumble):
23416 Let byte-compile-initial-macro-environment always take precedence.
23417
23418 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
23419
23420 * net/rcirc.el: Add support for SSL/TLS connections.
23421 (rcirc-server-alist): New field `encryption'.
23422 (rcirc): Check `encryption' settings.
23423 (rcirc-connect): New arg `encryption'. Use open-network-stream.
23424 Merge make-local-variable into `set'.
23425 (rcirc--connection-open-p): New function.
23426 (rcirc-send-string, rcirc-clean-up-buffer): Use it to handle case where
23427 the process is not a network process (e.g. running gnutls-cli).
23428 (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
23429 Make rcirc-(en|de)code-coding-system local here.
23430 (rcirc-mode): Merge make-local-variable into `set'.
23431 (rcirc-parent-buffer): Make permanent buffer-local.
23432 (rcirc-multiline-minor-mode): Don't do it here.
23433 (rcirc-switch-to-server-buffer): Don't switch to a random buffer if
23434 there's no server buffer.
23435
23436 2011-05-11 Glenn Morris <rgm@gnu.org>
23437
23438 * newcomment.el (comment-kill): Prefix "unused" local.
23439
23440 * term/w32console.el (get-screen-color): Declare.
23441
23442 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
23443 Handle symbol elements of byte-compile-initial-macro-environment.
23444
23445 2011-05-10 Leo Liu <sdl.web@gmail.com>
23446
23447 * bookmark.el (bookmark-bmenu-mode-map):
23448 Bind bookmark-bmenu-search to `/'.
23449
23450 * mail/footnote.el: Convert to utf-8 encoding.
23451 (footnote-unicode-string, footnote-unicode-regexp): New variable.
23452 (Footnote-unicode): New function.
23453 (footnote-style-alist): Add unicode style to the list.
23454 (footnote-style): Doc fix.
23455
23456 2011-05-10 Jim Meyering <meyering@redhat.com>
23457
23458 Fix doubled-word typos.
23459 * international/quail.el (quail-insert-kbd-layout): and and -> and
23460 * kermit.el: and and -> and
23461 * net/ldap.el (ldap-search-internal): to to -> to
23462 * progmodes/vhdl-mode.el (vhdl-offsets-alist): Likewise.
23463 * progmodes/js.el (js-mode): and and -> and
23464 * textmodes/artist.el (artist-move-to-xy): at at -> at
23465 (artist-draw-region-trim-line-endings): if if -> if
23466 And Safetyc -> Safety.
23467 * textmodes/reftex-dcr.el (reftex-view-crossref): at at -> at a
23468
23469 2011-05-10 Glenn Morris <rgm@gnu.org>
23470 Stefan Monnier <monnier@iro.umontreal.ca>
23471
23472 * files.el (hack-one-local-variable-eval-safep):
23473 Consider "eval: (foo-mode)" to be safe. (Bug#8613)
23474
23475 2011-05-10 Glenn Morris <rgm@gnu.org>
23476
23477 * calendar/diary-lib.el (diary-list-entries-hook)
23478 (diary-mark-entries-hook, diary-nongregorian-listing-hook)
23479 (diary-nongregorian-marking-hook, diary-list-entries)
23480 (diary-include-other-diary-files, diary-mark-entries)
23481 (diary-mark-included-diary-files): Doc fixes.
23482
23483 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
23484
23485 * misc.el: Require tabulated-list.el during compilation.
23486
23487 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
23488
23489 * progmodes/compile.el (compilation-start):
23490 Run compilation-filter-hook for the async case too.
23491 (compilation-filter-hook): Doc fix.
23492
23493 2011-05-09 Deniz Dogan <deniz@dogan.se>
23494
23495 * wdired.el: Remove outdated installation comment. Fix usage
23496 comment.
23497
23498 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
23499
23500 * misc.el: Implement new command `list-dynamic-libraries'.
23501 (list-dynamic-libraries--loaded-only-p): New variable.
23502 (list-dynamic-libraries--refresh): New function.
23503 (list-dynamic-libraries): New command.
23504
23505 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
23506
23507 * progmodes/compile.el (compilation-error-regexp-alist-alist):
23508 Fix the ant regexp to handle end-line and end-column info from jikes.
23509 Re-introduce maven regexp. Give the ruby-Test::Unit regexp a
23510 higher priority to avoid clobbering by gnu.
23511
23512 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
23513
23514 * cus-face.el (custom-declare-face): Call custom-theme-recalc-face
23515 if the face has existing theme settings (Bug#8454).
23516
23517 2011-05-08 Ralph Schleicher <rs@ralph-schleicher.de>
23518
23519 * progmodes/perl-mode.el (perl-imenu-generic-expression):
23520 Only match variables declared via `my' or `our' (Bug#8261).
23521
23522 * net/browse-url.el (browse-url-of-dired-file): Allow browsing of
23523 special file names `.' and `..' (Bug#8259).
23524
23525 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
23526
23527 * progmodes/grep.el (grep-mode-font-lock-keywords):
23528 Remove buffer-changing entries.
23529 (grep-filter): New function.
23530 (grep-mode): Add it to compilation-filter-hook.
23531
23532 * progmodes/compile.el (compilation-filter-hook)
23533 (compilation-filter-start): New defvars.
23534 (compilation-filter): Call compilation-filter-hook prior to
23535 updating the process mark.
23536
23537 2011-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
23538
23539 * emacs-lisp/eieio.el (defmethod): Fix typo in last change.
23540
23541 2011-05-07 Eli Zaretskii <eliz@gnu.org>
23542
23543 * mail/sendmail.el (send-mail-function): On MS-Windows, default to
23544 mailclient-send-it even if window-system is nil. (Bug#8595)
23545
23546 * term/w32console.el (terminal-init-w32console):
23547 Call get-screen-color and use its output to set the frame
23548 background-mode. (Bug#8597)
23549
23550 2011-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
23551
23552 Make bytecomp.el understand that defmethod defines funs (bug#8631).
23553 * emacs-lisp/eieio.el (eieio--defalias, eieio--defgeneric-init-form):
23554 New functions.
23555 (defgeneric, eieio--defmethod): Use them.
23556 (eieio-defgeneric): Remove.
23557 (defmethod): Call defgeneric in a way visible to the byte-compiler.
23558
23559 2011-05-07 Glenn Morris <rgm@gnu.org>
23560
23561 * calendar/timeclock.el (timeclock-log-data): Remove unused local.
23562 Use let rather than let*.
23563 (timeclock-find-discrep): Remove unused local.
23564
23565 * calendar/diary-lib.el (diary-comment-start): Doc fix.
23566
23567 * calendar/appt.el (appt-time-msg-list): Doc fix.
23568
23569 2011-05-06 Noah Friedman <friedman@splode.com>
23570
23571 * apropos.el (apropos-print-doc): Only use
23572 emacs-lisp-docstring-fill-column when it is bound to an integer,
23573 per that variable's documentation.
23574
23575 2011-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
23576
23577 * lpr.el (print-region-1): Echo lpr-program's output, so error messages
23578 and warnings are not silently discarded (e.g. use -d instead of -P).
23579
23580 2011-05-06 Glenn Morris <rgm@gnu.org>
23581
23582 * calendar/appt.el (appt-message-warning-time): Doc fix.
23583 (appt-warning-time-regexp): New option.
23584 (appt-make-list): Respect appt-message-warning-time.
23585
23586 * calendar/diary-lib.el (diary-comment-start, diary-comment-end):
23587 New options.
23588 (diary-add-to-list): Strip comments from the displayed string.
23589 (diary-mode): Set comment-start and comment-end.
23590
23591 * vc/diff-mode.el (smerge-refine-subst): Declare.
23592 (diff-refine-hunk): Don't require smerge-mode when compiling.
23593
23594 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
23595
23596 * simple.el (list-processes): Return nil as the docstring says.
23597
23598 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
23599
23600 * net/ange-ftp.el (ange-ftp-binary-file-name-regexp): Set default
23601 to "".
23602 (ange-ftp-write-region, ange-ftp-insert-file-contents)
23603 (ange-ftp-copy-file-internal): Use only `ange-ftp-binary-file' for
23604 determining of binary transfer. (Bug#7383)
23605
23606 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
23607
23608 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
23609 Fix port computation bug. (Bug#8618)
23610
23611 2011-05-05 Glenn Morris <rgm@gnu.org>
23612
23613 * allout-widgets.el (allout-widgets-mode-inhibit): Declare before use.
23614
23615 * simple.el (shell-dynamic-complete-functions)
23616 (comint-dynamic-complete-functions): Declare.
23617
23618 * net/network-stream.el (gnutls-negotiate):
23619 * simple.el (tabulated-list-print): Fix declarations.
23620
23621 * progmodes/gud.el (syntax-symbol, syntax-point):
23622 Remove unnecessary and incorrect declarations.
23623
23624 * emacs-lisp/check-declare.el (check-declare-scan):
23625 Handle byte-compile-initial-macro-environment in bytecomp.el.
23626
23627 2011-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
23628
23629 Fix earlier half-done eieio-defmethod change (bug#8338).
23630 * emacs-lisp/eieio.el (eieio--defmethod): Rename from eieio-defmethod.
23631 Streamline and change calling convention.
23632 (defmethod): Adjust accordingly and simplify.
23633 (eieio-defclass): Fix broken calls to eieio-defmethod and redirect to
23634 new eieio--defmethod.
23635 (slot-boundp): Minor CSE simplification.
23636
23637 2011-05-05 Milan Zamazal <pdm@zamazal.org>
23638
23639 * progmodes/glasses.el (glasses-separate-capital-groups): New option.
23640 (glasses-make-readable): Use glasses-separate-capital-groups.
23641
23642 2011-05-05 Juanma Barranquero <lekktu@gmail.com>
23643
23644 * emacs-lisp/warnings.el (warning-level-aliases): Reflow docstring.
23645 (warning-series): Doc fix.
23646 (display-warning): Don't try to create the buffer if we just found it.
23647
23648 2011-05-04 Chong Yidong <cyd@stupidchicken.com>
23649
23650 * emacs-lisp/autoload.el (generated-autoload-file): Set to nil.
23651 (autoload-find-generated-file): New function.
23652 (generate-file-autoloads): Bind generated-autoload-file to
23653 buffer-file-name.
23654 (update-file-autoloads, update-directory-autoloads):
23655 Use autoload-find-generated-file. If called interactively, prompt for
23656 output file (Bug#7989).
23657 (batch-update-autoloads): Doc fix.
23658
23659 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
23660
23661 * term/w32-win.el (dynamic-library-alist): Add `gnutls'.
23662
23663 2011-05-04 Glenn Morris <rgm@gnu.org>
23664
23665 * calendar/diary-lib.el (diary-fancy-date-pattern): Turn it into a
23666 function, so it follows changes in calendar-date-style.
23667 (diary-fancy-date-matcher): New function.
23668 (diary-fancy-font-lock-keywords): Use diary-fancy-date-matcher.
23669 (diary-fancy-font-lock-fontify-region-function):
23670 Use diary-fancy-date-pattern as a function.
23671
23672 * calendar/diary-lib.el (diary-fancy-date-pattern): Do not use
23673 non-numbers for `year' etc pseudo-variables. (Bug#8583)
23674
23675 2011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
23676
23677 * net/gnutls.el (gnutls-negotiate): Use CL-style keyword arguments
23678 instead of positional arguments. Allow :keylist and :crlfiles
23679 arguments.
23680 (open-gnutls-stream): Call it.
23681
23682 * net/network-stream.el (network-stream-open-starttls): Adjust to
23683 call `gnutls-negotiate' with :process and :hostname arguments.
23684
23685 2011-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
23686
23687 * minibuffer.el (completion--message): New function.
23688 (completion--do-completion, minibuffer-complete)
23689 (minibuffer-force-complete, minibuffer-complete-word): Use it.
23690 (completion--do-completion): Don't ignore completion-auto-help when in
23691 icomplete-mode.
23692
23693 * whitespace.el (whitespace-trailing-regexp): Don't rely on the
23694 internal encoding (e.g. tibetan zero is not whitespace).
23695 (global-whitespace-mode): Prefer save-current-buffer.
23696 (whitespace-trailing-regexp): Remove useless save-match-data.
23697 (whitespace-empty-at-bob-regexp): Minor simplification.
23698
23699 2011-05-03 Chong Yidong <cyd@stupidchicken.com>
23700
23701 * emacs-lisp/autoload.el (generated-autoload-file): Doc fix (Bug#7989).
23702
23703 2011-05-03 Agustín Martín Domingo <agustin.martin@hispalinux.es>
23704
23705 * textmodes/ispell.el (ispell-add-per-file-word-list):
23706 Use `concat' to create string for insertion.
23707
23708 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
23709
23710 * textmodes/bibtex.el (bibtex-fill-field-bounds, bibtex-fill-entry):
23711 Avoid open-line which runs post-self-insert-hook.
23712 (bibtex-fill-entry): Remove unused `end' var.
23713
23714 2011-05-03 Dirk Ullrich <dirk.ullrich@googlemail.com> (tiny change)
23715
23716 * textmodes/ispell.el (ispell-add-per-file-word-list):
23717 Protect against `nil' value of `comment-start' (Bug#8579).
23718
23719 2011-05-03 Leo Liu <sdl.web@gmail.com>
23720
23721 * isearch.el (isearch-yank-pop): New command.
23722 (isearch-mode-map): Bind it to `M-y'.
23723 (isearch-forward): Mention it.
23724
23725 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
23726
23727 * simple.el (minibuffer-complete-shell-command): Remove.
23728 (minibuffer-local-shell-command-map): Use completion-at-point.
23729 (read-shell-command): Setup completion vars here instead.
23730 (read-expression-map): Bind TAB to symbol completion.
23731
23732 * textmodes/ispell.el (lookup-words): Use with-temp-buffer; signal
23733 error directly rather via storing it into `results'.
23734
23735 2011-05-02 Leo Liu <sdl.web@gmail.com>
23736
23737 * vc/diff.el: Fix description.
23738
23739 2011-05-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
23740
23741 * server.el (server-eval-at): New function.
23742
23743 2011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
23744
23745 * net/network-stream.el (open-network-stream): Take a :nowait
23746 parameter and pass it on to `make-network-process'.
23747 (network-stream-open-plain): Ditto.
23748
23749 2011-04-30 Andreas Schwab <schwab@linux-m68k.org>
23750
23751 * faces.el (face-spec-set-match-display): Don't match toolkit
23752 options on terminal frames.
23753
23754 2011-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
23755
23756 * progmodes/pascal.el: Use lexical binding.
23757 (pascal-mode-map): Remove author preferences.
23758
23759 * pcomplete.el (pcomplete-std-complete): Don't abuse
23760 completion-at-point.
23761
23762 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
23763
23764 * calc/calccomp.el (math-comp-to-string-flat-term): Simplify by
23765 removing code that has been dead since 1991 or so.
23766
23767 * startup.el (command-line): When warning about "_emacs", use a
23768 delayed warning to allow the user to filter it out.
23769
23770 2011-04-28 Deniz Dogan <deniz@dogan.se>
23771
23772 * net/rcirc.el (rcirc-handler-353): Fix bug for channels which the
23773 user has not joined.
23774
23775 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
23776
23777 * pcomplete.el (pcomplete-completions-at-point): Return nil if there
23778 aren't any completions at point.
23779
23780 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
23781
23782 * subr.el (display-delayed-warnings): New function.
23783 (delayed-warnings-hook): New variable.
23784
23785 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
23786
23787 * minibuffer.el (completion-at-point, completion-help-at-point):
23788 Don't presume that a given completion-at-point-function will always
23789 use the same calling convention.
23790
23791 * pcomplete.el (pcomplete-completions-at-point):
23792 Obey pcomplete-ignore-case. Don't call pcomplete-norm-func unless
23793 pcomplete-seen is non-nil.
23794 (pcomplete-comint-setup): Also recognize the new comint/shell
23795 completion functions.
23796 (pcomplete-do-complete): Don't call pcomplete-norm-func unless
23797 pcomplete-seen is non-nil.
23798
23799 2011-04-27 Niels Giesen <niels.giesen@gmail.com>
23800
23801 * calendar/icalendar.el (diary-lib): Add require statement.
23802 (icalendar--create-uid): Read out a uid from a text-property on
23803 the first character in the entry. This allows for code to add its
23804 own uid to the entry.
23805 (icalendar--convert-float-to-ical): Add export of
23806 `diary-float'-entries save for those with the optional DAY
23807 argument.
23808
23809 2011-04-27 Daniel Colascione <dan.colascione@gmail.com>
23810
23811 * subr.el (shell-quote-argument): Use alternate escaping strategy
23812 when we spot a variable reference in a string.
23813
23814 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
23815
23816 * cus-start.el (all): Define customization for debug-on-event.
23817
23818 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
23819
23820 * subr.el (shell-quote-argument): Escape correctly under Windows.
23821
23822 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
23823
23824 * emulation/cua-base.el (cua-selection-mode): Make it toggle again.
23825
23826 2011-04-25 Michael Albinus <michael.albinus@gmx.de>
23827
23828 * net/tramp.el (tramp-process-actions): Add POS argument.
23829 Delete region between POS and (pos).
23830
23831 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
23832 Use `nil' position in `tramp-process-actions' call.
23833 (tramp-maybe-open-connection): Call `tramp-process-actions' with pos.
23834
23835 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Use `nil'
23836 position in `tramp-process-actions' call.
23837
23838 * net/trampver.el: Update release number.
23839
23840 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
23841
23842 * custom.el (defcustom): Obey lexical-binding.
23843
23844 Fix octave-inf completion problems reported by Alexander Klimov.
23845 * progmodes/octave-inf.el (inferior-octave-mode-syntax-table):
23846 Inherit from octave-mode-syntax-table.
23847 (inferior-octave-mode): Set info-lookup-mode.
23848 (inferior-octave-completion-at-point): New function.
23849 (inferior-octave-complete): Use it and completion-in-region.
23850 (inferior-octave-dynamic-complete-functions): Use it as well, and use
23851 comint-filename-completion.
23852 * progmodes/octave-mod.el (octave-mode-syntax-table): Use _ syntax for
23853 symbol elements which shouldn't be word elements.
23854 (octave-font-lock-keywords, octave-beginning-of-defun)
23855 (octave-function-header-regexp): Adjust regexps accordingly.
23856 (octave-mode-map): Also use info-lookup-symbol for C-c C-h.
23857
23858 2011-04-25 Juanma Barranquero <lekktu@gmail.com>
23859
23860 * net/gnutls.el (gnutls-errorp): Declare before first use.
23861
23862 2011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
23863
23864 * net/gnutls.el (gnutls-negotiate): Add hostname, verify-flags,
23865 verify-error, and verify-hostname-error parameters. Check whether
23866 default trustfile exists before going to use it. Add missing
23867 argument to gnutls-message-maybe call. Return value.
23868 Reported by Claudio Bley <claudio.bley@gmail.com>.
23869 (open-gnutls-stream): Add usage example.
23870
23871 * net/network-stream.el (network-stream-open-starttls): Give host
23872 parameter to `gnutls-negotiate'.
23873 (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
23874 * subr.el (shell-quote-argument): Escape correctly under Windows.
23875
23876 2011-04-24 Daniel Colascione <dan.colascione@gmail.com>
23877
23878 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
23879 Use correct match group (bug#8438).
23880
23881 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
23882
23883 * emacs-lisp/package.el (package-built-in-p): Fix typo.
23884 (package-menu--generate): New arg specifying packages to show.
23885 (package-menu-refresh, package-menu-execute, list-packages):
23886 Callers changed.
23887 (package-show-package-list): New function, replacing deleted
23888 package--list-packages (renamed because it is non-internal).
23889
23890 * finder.el (finder-list-matches): Use package-show-package-list
23891 instead of deleted package--list-packages.
23892
23893 * vc/vc-annotate.el (vc-annotate-goto-line): New command.
23894 Based on a previous implementation by Juanma Barranquero (Bug#8366).
23895 (vc-annotate-mode-map): Bind it to RET.
23896
23897 2011-04-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
23898
23899 * progmodes/etags.el (next-file): Don't use set-buffer to change
23900 buffers (Bug#8478).
23901
23902 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
23903
23904 * files.el (auto-mode-alist): Use js-mode for .json (Bug#8529).
23905
23906 * apropos.el (apropos-label-face): Avoid variable-pitch face.
23907 (apropos-accumulator): Doc fix.
23908 (apropos-function, apropos-macro, apropos-command)
23909 (apropos-variable, apropos-face, apropos-group, apropos-widget)
23910 (apropos-plist): Add face property.
23911 (apropos-symbols-internal): Fix indentation.
23912 (apropos-print): Simplify help, and recognize apropos-multi-type.
23913 (apropos-print-doc): Use button-type-get to extract the button's
23914 face property. Fill docstring (Bug#8352).
23915
23916 2011-04-23 Juanma Barranquero <lekktu@gmail.com>
23917
23918 * buff-menu.el (Buffer-menu--buffers): Fix typo in docstring (bug#8535).
23919
23920 * play/mpuz.el (mpuz-silent): Doc fix.
23921 (mpuz-mode-map): Use mapc.
23922 (mpuz-put-number-on-board): Rename parameter L to COLUMNS.
23923 (mpuz-letter-to-digit, mpuz-check-all-solved, mpuz-create-buffer):
23924 Fix typos in docstrings.
23925
23926 * play/doctor.el (doc$, doctor-$, doctor-read-print, doctor-read-token)
23927 (doctor-nounp, doctor-pronounp): Fix typos in docstrings.
23928
23929 * mouse-drag.el (mouse-drag-throw): Fix typo in docstring.
23930
23931 2011-04-23 Chong Yidong <cyd@stupidchicken.com>
23932
23933 * minibuffer.el (completion--do-completion): Avoid the "Next char
23934 not unique" prompt if icomplete-mode is enabled (Bug#5849).
23935
23936 * mouse.el (mouse-drag-mode-line-1): Make sure that if we push
23937 mouse-2 into unread-command-events, it is interpreted correctly.
23938
23939 * image-mode.el (image-type, image-mode-map, image-minor-mode-map)
23940 (image-toggle-display): Doc fix.
23941
23942 2011-04-23 Stephen Berman <stephen.berman@gmx.net>
23943
23944 * textmodes/page.el (what-page): Use line-number-at-pos to
23945 calculate line number (Bug#6825).
23946
23947 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
23948
23949 * eshell/esh-mode.el (find-tag-interactive): Declare function.
23950 (eshell-find-tag): Remove `with-no-warnings', unneeded now.
23951 Pass argument NO-DEFAULT to `find-tag-interactive'.
23952
23953 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
23954
23955 Lexical-binding cleanup.
23956
23957 * progmodes/ada-mode.el (ada-after-change-function, ada-loose-case-word)
23958 (ada-no-auto-case, ada-capitalize-word, ada-untab, ada-narrow-to-defun):
23959 * progmodes/ada-prj.el (ada-prj-initialize-values)
23960 (ada-prj-display-page, ada-prj-field-modified, ada-prj-display-help)
23961 (ada-prj-show-value):
23962 * progmodes/ada-xref.el (ada-find-any-references, ada-gdb-application):
23963 * progmodes/antlr-mode.el (antlr-with-displaying-help-buffer)
23964 (antlr-invalidate-context-cache, antlr-options-menu-filter)
23965 (antlr-language-option-extra, antlr-c++-mode-extra, antlr-run-tool):
23966 * progmodes/bug-reference.el (bug-reference-push-button):
23967 * progmodes/fortran.el (fortran-line-length):
23968 * progmodes/glasses.el (glasses-change):
23969 * progmodes/octave-mod.el (octave-fill-paragraph):
23970 * progmodes/python.el (python-mode, python-pdbtrack-track-stack-file)
23971 (python-pdbtrack-grub-for-buffer, python-sentinel):
23972 * progmodes/sql.el (sql-save-connection):
23973 * progmodes/tcl.el (tcl-indent-command, tcl-popup-menu):
23974 * progmodes/xscheme.el (xscheme-enter-debugger-mode):
23975 Mark unused parameters.
23976
23977 * progmodes/compile.el (compilation--flush-directory-cache)
23978 (compilation--flush-parse, compile-internal): Mark unused parameters.
23979 (compilation-buffer-name): Rename parameter MODE-NAME to NAME-OF-MODE.
23980 (compilation-next-error-function): Remove unused variable `timestamp'.
23981
23982 * progmodes/cpp.el (cpp-parse-close): Remove unused variable `begin'.
23983 (cpp-signal-read-only, cpp-grow-overlay): Mark unused parameters.
23984
23985 * progmodes/dcl-mode.el (dcl-end-of-command):
23986 Remove unused variable `start'.
23987 (dcl-calc-command-indent-multiple, dcl-calc-cont-indent-relative)
23988 (dcl-option-value-basic, dcl-option-value-offset)
23989 (dcl-option-value-margin-offset, dcl-option-value-comment-line):
23990 Mark unused parameters.
23991 (dcl-save-local-variable): Remove unused variable `val'.
23992 (mode): Declare.
23993
23994 * progmodes/delphi.el (delphi-save-state, delphi-after-change):
23995 Mark unused parameters.
23996 (delphi-ignore-changes): Move before first use.
23997 (delphi-charset-token-at): Remove unused variable `start'.
23998 (delphi-else-start): Remove unused variable `if-count'.
23999 (delphi-comment-block-start, delphi-comment-block-end):
24000 Remove unused variable `kind'.
24001 (delphi-indent-line): Remove unused variable `new-point'.
24002
24003 * progmodes/ebrowse.el (ebrowse-files-list)
24004 (ebrowse-list-of-matching-members, ebrowse-tags-list-members-in-file):
24005 Mark unused parameters. Don't quote `lambda'.
24006 (ebrowse-sort-tree-list, ebrowse-same-tree-member-buffer-list):
24007 Don't quote `lambda'.
24008 (ebrowse-revert-tree-buffer-from-file, ebrowse-tags-choose-class)
24009 (ebrowse-goto-visible-member/all-member-lists): Mark unused parameters.
24010 (ebrowse-create-tree-buffer): Rename parameter OBARRAY to CLASSES.
24011 (ebrowse-toggle-mark-at-point): Remove unused variable `pnt'.
24012 Use `ignore-errors'.
24013 (ebrowse-frozen-tree-buffer-name, ebrowse-find-source-file)
24014 (ebrowse-view/find-file-and-search-pattern)
24015 (ebrowse-view/find-member-declaration/definition):
24016 Rename parameter TAGS-FILE-NAME to TAGS-FILE.
24017 (ebrowse-find-class-declaration, ebrowse-view-class-declaration):
24018 Rename parameter PREFIX-ARG to PREFIX.
24019 (ebrowse-tags-read-name): Remove unused variables `start' and
24020 `member-info'.
24021 (ebrowse-display-member-buffer): Rename variable `tags-file-name'
24022 to `tags-file'.
24023
24024 * progmodes/etags.el (local-find-tag-hook): Declare.
24025 (tag-partial-file-name-match-p, tag-any-match-p, list-tags):
24026 Mark unused parameters.
24027
24028 * progmodes/executable.el (compilation-error-regexp-alist): Declare.
24029 (executable-interpret): Mark unused parameter.
24030
24031 * progmodes/flymake.el (flymake-process-sentinel)
24032 (flymake-after-change-function)
24033 (flymake-create-temp-with-folder-structure)
24034 (flymake-get-include-dirs-dot): Mark unused parameters.
24035 (flymake-safe-delete-directory): Remove unused variable `err'.
24036
24037 * progmodes/gdb-mi.el (speedbar-change-initial-expansion-list)
24038 (speedbar-timer-fn, speedbar-line-text)
24039 (speedbar-change-expand-button-char, speedbar-delete-subblock)
24040 (speedbar-center-buffer-smartly): Declare functions.
24041 (gdb-find-watch-expression): Remove unused variable `array'.
24042 (gdb-edit-value, gdb-gdb, gdb-ignored-notification, gdb-thread-created)
24043 (gdb-starting): Mark unused parameters.
24044 (gud-gdbmi-marker-filter): Remove unused variable `output-record'.
24045 (gdb-table-string): Remove unused variable `res'.
24046 (gdb-place-breakpoints): Remove unused variables `flag' and `bptno'.
24047 (gdb-disassembly-handler-custom): Remove unused variable `pos'.
24048 (gdb-display-buffer): Remove unused variable `cur-size'.
24049
24050 * progmodes/gud.el (gud-def): Use `defalias' instead of `defun' to
24051 allow lexical-binding compilation.
24052 (gud-expansion-speedbar-buttons, gud-gdb-goto-stackframe)
24053 (gud-dbx-massage-args, gud-xdb-massage-args, gud-perldb-massage-args)
24054 (gud-jdb-massage-args, gud-jdb-find-source, gud-find-class):
24055 Mark unused parameters.
24056 (gud-gdb-marker-filter): Remove unused variable `match'.
24057 (gud-find-class): Bind `syntax-symbol' and `syntax-point' to suitable
24058 lambda expressions and funcall them, instead of using `fset'.
24059
24060 * progmodes/hideif.el (hif-parse-if-exp): Rename parameter
24061 HIF-TOKEN-LIST to TOKEN-LIST and let-bind `hif-token-list'.
24062
24063 * progmodes/hideshow.el (hs-hide-block-at-point): Remove unused
24064 variable `header-beg'; use `let'.
24065
24066 * progmodes/icon.el (indent-icon-exp): Remove unused variables
24067 `restart', `last-sexp' and `at-do'.
24068
24069 * progmodes/js.el (js--debug): Mark unused parameter.
24070 (js--parse-state-at-point): Remove unused variable `bound'; use `let'.
24071 (js--splice-into-items): Remove unused variable `item'.
24072 (js--read-symbol, js--read-tab): Pass 1/-1 to `ido-mode', not t/nil.
24073
24074 * progmodes/make-mode.el (makefile-make-font-lock-keywords):
24075 Rename parameter FONT-LOCK-KEYWORDS to FL-KEYWORDS.
24076 (makefile-complete): Remove unused variable `try'.
24077 (makefile-fill-paragraph, makefile-match-function-end):
24078 Mark unused parameters.
24079
24080 * progmodes/octave-inf.el (inferior-octave-complete):
24081 Remove unused variable `proc'.
24082 (inferior-octave-output-digest): Mark unused parameter.
24083
24084 * progmodes/perl-mode.el (perl-calculate-indent):
24085 Remove unused variable `err'.
24086
24087 * progmodes/prolog.el (prolog-mode-keybindings-inferior)
24088 (prolog-indent-line): Mark unused parameters.
24089 (prolog-indent-line): Remove unused variable `beg'.
24090
24091 * progmodes/ps-mode.el (reporter-prompt-for-summary-p)
24092 (reporter-dont-compact-list): Declare.
24093
24094 * progmodes/sh-script.el (sh-font-lock-quoted-subshell):
24095 Remove unused variable `char'.
24096 (sh-debug): Mark unused parameter.
24097 (sh-get-indent-info): Remove unused variable `start'.
24098 (sh-calculate-indent): Remove unused variable `var'.
24099
24100 * progmodes/simula.el (simula-popup-menu): Mark unused parameter.
24101 (simula-electric-keyword): Remove unused variable `null'.
24102 (simula-search-backward, simula-search-forward): Remove unused
24103 variables `begin' and `end'.
24104
24105 * progmodes/vera-mode.el (vera-guess-basic-syntax):
24106 Remove unused variable `pos'.
24107 (vera-electric-tab, vera-comment-uncomment-region):
24108 Mark unused parameters.
24109 (vera-electric-tab): Rename parameter PREFIX-ARG to PREFIX.
24110
24111 2011-04-22 Chong Yidong <cyd@stupidchicken.com>
24112
24113 * emacs-lisp/package.el (package--builtins, package-alist)
24114 (package-load-descriptor, package-built-in-p, package-activate)
24115 (define-package, package-installed-p)
24116 (package-compute-transaction, package-buffer-info)
24117 (package--push): Doc fix. Distinguish more clearly between
24118 version strings and version lists.
24119
24120 2011-04-21 Juanma Barranquero <lekktu@gmail.com>
24121
24122 Lexical-binding cleanup.
24123
24124 * play/5x5.el (5x5-make-random-solution, 5x5-make-mutate-current)
24125 (5x5-make-mutate-best):
24126 * play/fortune.el (fortune-in-buffer):
24127 * play/gomoku.el (gomoku-init-display):
24128 * play/solitaire.el (solitaire, solitaire-do-check):
24129 * play/tetris.el (tetris-default-update-speed-function):
24130 Mark unused parameters.
24131
24132 * play/bubbles.el (bubbles-mode): Set `show-trailing-whitespace'.
24133 (bubbles--shift): Remove unused variable `char-org'.
24134 (bubbles--set-faces): Remove unused variable `fg-col'. Simplify.
24135 (bubbles--show-images): Remove unused variable `char'.
24136
24137 * play/decipher.el (decipher-keypress, decipher-alphabet-keypress)
24138 (decipher-get-undo, decipher-set-map, decipher-complete-alphabet)
24139 (decipher-resync, decipher-loop-with-breaks, decipher--analyze)
24140 (decipher-analyze-buffer): Use ?\s.
24141 (decipher-make-checkpoint): Remove unused variable `mapping'.
24142
24143 * play/doctor.el (doctor-doc): Rename parameter DOCTOR-SENT to SENT.
24144
24145 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
24146 Remove unused variable `result'; use `let'.
24147
24148 * play/gametree.el (gametree-current-layout, gametree-apply-layout):
24149 Rename parameter TOP-LEVEL to FROM-TOP-LEVEL; use `ignore-errors'.
24150 (gametree-children-shown-p, gametree-compute-reduced-score):
24151 Use `ignore-errors'.
24152
24153 * play/handwrite.el (ps-lpr-switches): Declare.
24154 (handwrite): Remove unused variables `pmin' and `lastp'.
24155
24156 * play/hanoi.el (hanoi-move-ring): Remove unused variable `total-steps'.
24157
24158 * play/landmark.el (landmark-init-display)
24159 (landmark-update-naught-weights): Mark unused parameters.
24160 (landmark-y): Remove unused variable `noise'. Simplify.
24161 (landmark-human-plays): Remove unused variable `score'.
24162
24163 * play/mpuz.el (mpuz-try-letter): Remove unused variable `message'.
24164 (mpuz-try-proposal): Remove unused variable `game'.
24165
24166 * play/zone.el (life-patterns): Declare.
24167
24168 2011-04-20 Juanma Barranquero <lekktu@gmail.com>
24169
24170 * vc/vc.el (ediff-vc-internal): Declare function.
24171
24172 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
24173
24174 * shell.el: Use lexical-binding and std completion UI.
24175 (shell-filter-ctrl-a-ctrl-b): Work as a preoutput filter.
24176 (shell-mode): Put shell-filter-ctrl-a-ctrl-b on
24177 comint-preoutput-filter-functions rather than on
24178 comint-output-filter-functions.
24179 (shell-command-completion, shell--command-completion-data)
24180 (shell-filename-completion, shell-environment-variable-completion)
24181 (shell-c-a-p-replace-by-expanded-directory): New functions.
24182 (shell-dynamic-complete-functions, shell-dynamic-complete-command)
24183 (shell-dynamic-complete-filename, shell-replace-by-expanded-directory)
24184 (shell-dynamic-complete-environment-variable): Use them.
24185 (shell-dynamic-complete-as-environment-variable)
24186 (shell-dynamic-complete-as-command): Remove.
24187 (shell-match-partial-variable): Match past point.
24188 * comint.el: Clean up use of completion-at-point-functions.
24189 (comint-completion-at-point): New function.
24190 (comint-mode): Use it completion-at-point-functions.
24191 (comint-dynamic-complete): Make it obsolete.
24192 (comint-replace-by-expanded-history-before-point): Add dry-run arg.
24193 (comint-c-a-p-replace-by-expanded-history): New function.
24194 (comint-dynamic-complete-functions)
24195 (comint-replace-by-expanded-history): Use it.
24196 * minibuffer.el (completion-table-with-terminator): Allow dynamic
24197 termination strings. Try harder to avoid second try-completion.
24198 (completion-in-region-mode-map): Disable bindings that don't work yet.
24199
24200 * comint.el: Use lexical-binding. Require CL.
24201 (comint-dynamic-complete-functions): Use comint-filename-completion.
24202 (comint-completion-addsuffix): Tweak custom type.
24203 (comint-filename-completion, comint--common-suffix)
24204 (comint--common-quoted-suffix, comint--table-subvert)
24205 (comint--complete-file-name-data): New functions.
24206 (comint-dynamic-complete-as-filename, comint-dynamic-complete-filename)
24207 (comint-dynamic-list-filename-completions): Use them.
24208 (comint-dynamic-simple-complete): Make obsolete.
24209
24210 * minibuffer.el (completion-in-region-mode):
24211 Keep completion-in-region-mode--predicate global.
24212 (completion-in-region--postch):
24213 Assume completion-in-region-mode--predicate is not null.
24214
24215 * progmodes/flymake.el (flymake-start-syntax-check-process):
24216 Obey `dir'. Simplify.
24217
24218 * vc/vc.el (vc-version-ediff): Call ediff-vc-internal directly, since
24219 we're in VC after all.
24220
24221 2011-04-20 Christoph Scholtes <cschol2112@googlemail.com>
24222
24223 * vc/vc.el (vc-diff-build-argument-list-internal)
24224 (vc-version-ediff, vc-ediff): New commands.
24225 (vc-version-diff): Use vc-diff-build-argument-list-internal.
24226
24227 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
24228
24229 * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Remove dead code,
24230 add sanity check.
24231
24232 * obsolete/erc-hecomplete.el: Make obsolete.
24233 * obsolete/: Standardize obsolescence info in the header.
24234
24235 2011-04-20 Glenn Morris <rgm@gnu.org>
24236
24237 * calendar/solar.el (solar-horizontal-coordinates):
24238 Use the longitude argument rather than `calendar-longitude'.
24239 (solar-date-next-longitude): Remove unused locals.
24240
24241 2011-04-20 Vinicius Jose Latorre <viniciusjl@ig.com.br>
24242
24243 * whitespace.el: New version 13.2.1.
24244
24245 2011-04-20 felix <EmacsWiki> (tiny change)
24246
24247 * whitespace.el (global-whitespace-mode): Keep highlight when
24248 switching between major modes on a file.
24249
24250 2011-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
24251
24252 * progmodes/octave-mod.el (octave-in-comment-p, octave-in-string-p)
24253 (octave-not-in-string-or-comment-p): Use syntax-ppss so it works with
24254 multi-line comments as well.
24255
24256 2011-04-19 Juanma Barranquero <lekktu@gmail.com>
24257
24258 Lexical-binding cleanup.
24259
24260 * arc-mode.el (archive-mode-revert):
24261 * cmuscheme.el (scheme-interactively-start-process):
24262 * custom.el (custom-initialize-delay):
24263 * dnd.el (dnd-open-local-file, dnd-open-remote-url):
24264 * dos-w32.el (direct-print-region-helper, direct-print-region-function):
24265 * emacs-lock.el (emacs-lock-clear-sentinel):
24266 * ezimage.el (defezimage):
24267 * follow.el (follow-avoid-tail-recenter):
24268 * fringe.el (set-fringe-mode-1):
24269 * generic-x.el (bat-generic-mode-compile):
24270 * help-mode.el (help-info-variable, help-do-xref)
24271 (help-mode-revert-buffer):
24272 * help.el (view-emacs-todo):
24273 * iswitchb.el (iswitchb-completion-help):
24274 * jka-compr.el (jka-compr-make-temp-name, jka-compr-load):
24275 * kmacro.el (kmacro-cycle-ring-next, kmacro-cycle-ring-previous)
24276 (kmacro-delete-ring-head, kmacro-bind-to-key, kmacro-view-macro):
24277 * locate.el (locate-update):
24278 * longlines.el (longlines-encode-region)
24279 (longlines-after-change-function):
24280 * outline.el (outline-isearch-open-invisible):
24281 * ps-def.el (declare-function, charset-dimension, char-width)
24282 (encode-char):
24283 * ps-mule.el (ps-mule-plot-string):
24284 * recentf.el (recentf-make-menu-items, recentf-cancel-dialog)
24285 (recentf-edit-list-select, recentf-edit-list-validate)
24286 (recentf-open-files-action):
24287 * rect.el (delete-whitespace-rectangle-line)
24288 (rectangle-number-line-callback):
24289 * register.el (window-configuration-to-register)
24290 (frame-configuration-to-register):
24291 * scroll-bar.el (scroll-bar-mode, toggle-horizontal-scroll-bar):
24292 * select.el (xselect-convert-to-string, xselect-convert-to-length)
24293 (xselect-convert-to-targets, xselect-convert-to-delete)
24294 (xselect-convert-to-filename, xselect-convert-to-charpos)
24295 (xselect-convert-to-lineno, xselect-convert-to-colno)
24296 (xselect-convert-to-os, xselect-convert-to-host)
24297 (xselect-convert-to-user, xselect-convert-to-class)
24298 (xselect-convert-to-name, xselect-convert-to-integer)
24299 (xselect-convert-to-atom, xselect-convert-to-identity):
24300 * subr.el (declare, ignore, process-kill-without-query)
24301 (text-clone-maintain):
24302 * terminal.el (te-get-char, te-tic-sentinel):
24303 * tool-bar.el (tool-bar-make-keymap):
24304 * tooltip.el (tooltip-timeout, tooltip-hide, tooltip-help-tips):
24305 * type-break.el (type-break-mode, type-break-noninteractive-query):
24306 * view.el (View-back-to-mark):
24307 * wid-browse.el (widget-browse-action, widget-browse-widget)
24308 (widget-browse-widgets, widget-browse-sexp):
24309 * widget.el (define-widget-keywords):
24310 * xt-mouse.el (xterm-mouse-translate, turn-off-xterm-mouse-tracking):
24311 Mark unused parameters.
24312
24313 * align.el (align-adjust-col-for-rule): Mark unused parameter.
24314 (align-areas): Remove unused variable `look'.
24315 (align-region): Remove unused variables `real-end' and `pos-list'.
24316
24317 * apropos.el (apropos-score-doc): Remove unused variable `i'.
24318
24319 * bindings.el (mode-line-modified, mode-line-remote):
24320 Mark unused parameters.
24321 (mode-line-mule-info): Mark unused parameter; don't quote `lambda'.
24322
24323 * buff-menu.el (Buffer-menu-revert-function): Mark unused parameters.
24324 (Buffer-menu-mode): Mark unused parameter; don't quote `lambda'.
24325
24326 * comint.el (comint-history-isearch-pop-state)
24327 (comint-postoutput-scroll-to-bottom, comint-truncate-buffer)
24328 (comint-strip-ctrl-m, comint-read-noecho): Mark unused parameters.
24329 (comint-substitute-in-file-name): Doc fix.
24330
24331 * completion.el (cmpl-statistics-block): Mark unused parameter.
24332 (add-completions-from-tags-table, add-completions-from-lisp-buffer)
24333 (save-completions-to-file, load-completions-from-file):
24334 Remove unused local variable `e'.
24335
24336 * composite.el (compose-chars): Remove unused variable `len'.
24337 (lgstring-insert-glyph): Remove unused variable `g'.
24338 (compose-glyph-string): Remove unused variables `ascent',
24339 `descent', `lbearing' and `rbearing'.
24340 (compose-glyph-string-relative): Remove unused variables
24341 `lbearing', `rbearing' and `wadjust'.
24342 (compose-gstring-for-graphic): Remove unused variables `header',
24343 `wadjust', `xoff' and `yoff'. Use `let', not `let*'.
24344 (compose-gstring-for-terminal): Remove unused variables `header'
24345 and `nchars'. Use `let', not `let*'.
24346
24347 * cus-edit.el (Custom-set, Custom-save, custom-reset)
24348 (Custom-reset-current, Custom-reset-saved, Custom-reset-standard)
24349 (Custom-buffer-done, custom-buffer-create-internal)
24350 (custom-browse-visibility-action, custom-browse-group-tag-action)
24351 (custom-browse-variable-tag-action, custom-browse-face-tag-action)
24352 (widget-magic-mouse-down-action, custom-toggle-parent)
24353 (custom-add-parent-links, custom-toggle-hide-variable)
24354 (custom-face-edit-value-visibility-action, custom-face-edit-fix-value)
24355 (custom-toggle-hide-face, face, hook, custom-group-link-action)
24356 (custom-face-menu-create, custom-variable-menu-create, get)
24357 (custom-group-menu-create, Custom-no-edit): Mark unused parameters.
24358 (custom-reset-standard-save-and-update): Remove unused variable `value'.
24359 (customize-apropos): Remove unused variable `tests'.
24360 (custom-group-value-create): Remove unused variable `hidden-p'.
24361 (sort-fold-case): Declare.
24362
24363 * cus-theme.el (custom-reset-standard-faces-list)
24364 (custom-reset-standard-variables-list): Declare.
24365 (customize-create-theme, custom-theme-revert, custom-theme-write)
24366 (custom-theme-choose-mode, customize-themes, custom-theme-save):
24367 Mark unused parameters.
24368
24369 * dabbrev.el (dabbrev-completion): Remove unused variable `init'.
24370
24371 * delim-col.el (delimit-columns-max): Move defvar before first use.
24372
24373 * descr-text.el (describe-char-categories): Don't quote `lambda'.
24374 (describe-char): Don't quote `lambda'. Mark unused parameter.
24375
24376 * desktop.el (desktop-save-buffer-p): Mark unused parameter.
24377 (auto-insert): Declare.
24378 (desktop-restore-file-buffer): Rename desktop-* parameters;
24379 mark unused ones.
24380 (desktop-create-buffer): Rename desktop-* parameters and bind them.
24381 (desktop-buffer): Rename desktop-* parameters.
24382
24383 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
24384 (dframe-reposition-frame-xemacs, dframe-help-echo)
24385 (dframe-hack-buffer-menu, dframe-set-timer, dframe-set-timer-internal):
24386 Mark unused parameters.
24387
24388 * dired-aux.el (backup-extract-version-start, overwrite-query)
24389 (overwrite-backup-query, rename-regexp-query)
24390 (rename-non-directory-query): Declare.
24391 (dired-shell-stuff-it, dired-do-create-files): Mark unused parameters.
24392 (dired-add-entry): Remove unused variable `orig-file-name'.
24393 (dired-copy-file-recursive): Remove unused variable `dirfailed'.
24394 Use parameter PRESERVE-TIME instead of accessing dynamic variable
24395 `dired-copy-preserve-time' directly.
24396 (dired-do-create-files-regexp): Remove unused variable `fn-count'.
24397 (dired-insert-subdir-newpos): Rename unused variable `pos'.
24398
24399 * dired-x.el (dired-omit-size-limit): Move defcustom before first use.
24400 (dired-virtual-revert, dired-make-relative-symlink):
24401 Mark unused parameters.
24402 (manual-program): Declare.
24403 (dired-x-hands-off-my-keys): Rename parameters of lambda expression.
24404 (inode, s, mode, nlink, uid, gid, size, time, name, sym): Declare them,
24405 wrapped in `with-no-warnings' to avoid replacing one warning by another.
24406
24407 * dirtrack.el (dirtrack): Remove unused variable `multi-line'.
24408
24409 * dos-fns.el (dos-8+3-filename): Remove unused variable `i'.
24410
24411 * echistory.el (electric-history-in-progress, Helper-return-blurb):
24412 Declare.
24413
24414 * edmacro.el (edmacro-finish-edit): Remove unused variable `kmacro'.
24415
24416 * electric.el (Electric-command-loop): Rename parameter
24417 INHIBIT-QUIT to INHIBIT-QUITTING and bind `inhibit-quit'.
24418
24419 * expand.el (expand-in-literal): Remove unused variable `here'.
24420
24421 * facemenu.el (facemenu-add-new-color):
24422 Remove unused variable `docstring'.
24423
24424 * faces.el (face-id, make-face-bold, make-face-unbold, make-face-italic)
24425 (make-face-unitalic, make-face-bold-italic): Mark unused parameters.
24426 (face-attr-construct): Mark unused parameter. Doc fix.
24427 (read-color): Remove unused variable `hex-string'.
24428
24429 * files.el (parse-colon-path): Rename argument CD-PATH to SEARCH-PATH.
24430 (locate-dominating-file): Remove unused vars `prev-file' and `user'.
24431 (remote-file-name-inhibit-cache, revert-buffer): Clean up docstrings.
24432 (display-buffer-other-frame): Remove unused variable `old-window'.
24433 (kill-buffer-hook): Declare.
24434 (insert-file-contents-literally, set-auto-mode, risky-local-variable-p):
24435 Mark unused parameters.
24436 (after-find-file): Pass 1 to `auto-save-mode', not t.
24437
24438 * files-x.el (auto-insert): Declare.
24439 (modify-file-local-variable-prop-line): Remove unused variable `val'.
24440
24441 * find-lisp.el (find-lisp-find-dired-internal): Remove unused
24442 variable `buf'. Mark unused parameter.
24443 (find-lisp-insert-directory): Mark unused parameter.
24444
24445 * format.el (format-decode-run-method): Mark unused parameter; doc fix.
24446 (format-encode-region): Remove unused variables `cur-buf' and `result'.
24447 (format-common-tail): Remove, unused.
24448 (format-deannotate-region): Remove unused variable `loc'.
24449 (format-annotate-region): Remove unused variable `p'.
24450 (format-annotate-single-property-change): Remove unused variables
24451 `default' and `tail'.
24452
24453 * forms.el (read-file-filter): Declare.
24454 (forms--iif-hook, forms--revert-buffer): Mark unused parameters.
24455
24456 * frame.el (frame-creation-function-alist): Mark unused parameter.
24457 (frame-geom-spec-cons): Pass FRAME to `frame-geom-value-cons'.
24458
24459 * hilit-chg.el (hilit-chg-cust-fix-changes-face-list, hilit-chg-clear):
24460 Remove unused parameters.
24461 (hilit-chg-set-face-on-change): Remove unused variable `beg-decr'.
24462 (highlight-compare-with-file): Remove unused variable `buf-b-read-only'.
24463
24464 * htmlfontify.el (hfy-default-footer, hfy-decor, hfy-invisible)
24465 (hfy-parse-tags-buffer, hfy-prepare-index-i, hfy-prepare-index)
24466 (hfy-prepare-tag-map): Mark unused parameters.
24467 (htmlfontify-buffer): Use `called-interactively-p'.
24468
24469 * ibuf-ext.el (ibuffer-do-kill-lines, ibuffer-jump-to-buffer)
24470 (ibuffer-copy-filename-as-kill, ibuffer-mark-on-buffer)
24471 (ibuffer-do-occur): Mark unused parameters.
24472 (ibuffer-forward-next-marked): Remove unused variable `curmark'.
24473 (ibuffer-diff-buffer-with-file-1): Remove unused variable `proc'.
24474
24475 * ibuffer.el: Don't quote `lambda'.
24476 (ibuffer-count-marked-lines, ibuffer-count-deletion-lines)
24477 (ibuffer-unmark-all, ibuffer-toggle-marks, ibuffer-redisplay-engine):
24478 Mark unused parameters.
24479
24480 * ido.el (ido-mode, ido-wide-find-dir-or-delete-dir)
24481 (ido-completing-read): Mark unused parameters.
24482 (ido-copy-current-word): Mark unused parameters;
24483 remove unused variable `name'.
24484 (ido-sort-merged-list): Remove unused parameter `dirs'.
24485
24486 * ielm.el (ielm-input-sender): Mark unused parameter.
24487 (ielm-string, ielm-form, ielm-pos, ielm-result, ielm-error-type)
24488 (ielm-output, ielm-wbuf, ielm-pmark): Declare.
24489 (ielm-eval-input): Rename argument IELM-STRING to INPUT-STRING to keep
24490 `ielm-string' as a dynamic variable accessible from the IELM prompt.
24491 Bind `ielm-string' to INPUT-STRING. Remove unused variable `err'.
24492
24493 * image-dired.el (image-dired-display-thumbs): Remove unused
24494 variables `curr-file' and `count'.
24495 (image-dired-remove-tag): Remove unused variable `start'.
24496 (image-dired-tag-files, image-dired-create-thumbs): Remove unused
24497 variable `curr-file'
24498 (image-dired-rotate-original): Remove unused variable `temp-file'.
24499 (image-dired-mouse-select-thumbnail, image-dired-mouse-toggle-mark):
24500 Remove unused variable `file'.
24501 (image-dired-gallery-generate): Remove unused variable `curr'.
24502 (image-dired-dired-edit-comment-and-tags): Mark unused parameters.
24503
24504 * indent.el (tab-to-tab-stop): Remove unused variable `opoint'.
24505
24506 * info-xref.el (info-xref-goto-node-p): Remove unused variable `err'.
24507
24508 * informat.el (texinfo-command-start, texinfo-command-end): Declare.
24509
24510 * isearch.el (minibuffer-history-symbol): Declare.
24511 (isearch-edit-string): Remove unused variable `err'.
24512 (isearch-message-prefix, isearch-message-suffix):
24513 Mark unused parameters.
24514
24515 * ls-lisp.el (ls-lisp-insert-directory): Remove unused variable `fil'.
24516
24517 * macros.el (insert-kbd-macro): Remove unused variable `mods'.
24518
24519 * makesum.el (double-column): Remove unused variable `cnt'.
24520
24521 * misearch.el (multi-isearch-pop-state): Mark unused parameter.
24522 (ido-ignore-item-temp-list): Declare.
24523
24524 * mouse-drag.el (mouse-drag-throw): Remove unused variables
24525 `mouse-delta', `window-last-row', `mouse-col-delta', `window-last-col',
24526 `adjusted-mouse-col-delta' and `adjusted-mouse-delta'.
24527 (mouse-drag-drag): Remove unused variables `mouse-delta' and
24528 `mouse-col-delta'.
24529
24530 * mouse-sel.el (mouse-extend-internal):
24531 Remove unused variable `orig-window-frame'.
24532
24533 * pcomplete.el (pcomplete-args, pcomplete-begins, pcomplete-last)
24534 (pcomplete-index, pcomplete-stub, pcomplete-seen, pcomplete-norm-func):
24535 Move declarations before first use.
24536 (pcomplete-opt): Mark unused parameters; doc fix.
24537
24538 * proced.el (proced-revert): Mark unused parameter.
24539 (proced-send-signal): Remove unused variable `err'.
24540
24541 * ps-print.el (ps-print-preprint-region, ps-print-preprint):
24542 Rename parameter PREFIX-ARG to ARG.
24543 (ps-basic-plot-string, ps-basic-plot-whitespace):
24544 Mark unused parameters.
24545
24546 * replace.el (replace-count): Define.
24547 (occur-revert-function): Mark unused parameters.
24548 (ido-ignore-item-temp-list, isearch-error, isearch-forward)
24549 (isearch-case-fold-search, isearch-string): Declare.
24550 (occur-engine): Rename parameter CASE-FOLD-SEARCH to CASE-FOLD and
24551 bind `case-fold-search'. Remove unused variables `beg' and `end',
24552 and simplify.
24553 (replace-eval-replacement): Rename parameter REPLACE-COUNT to
24554 COUNT and bind `replace-count'.
24555 (replace-loop-through-replacements): Rename parameter REPLACE-COUNT
24556 to COUNT.
24557
24558 * savehist.el (print-readably, print-string-length): Declare.
24559
24560 * shadowfile.el (shadow-expand-cluster-in-file-name):
24561 Remove unused variable `cluster'.
24562 (shadow-copy-file): Remove unused variable `i'.
24563 (shadow-noquery, shadow-clusters, shadow-site-cluster)
24564 (shadow-parse-fullname, shadow-parse-name, shadow-define-cluster)
24565 (shadow-define-literal-group, shadow-define-regexp-group)
24566 (shadow-make-group, shadow-shadows-of): Clean up docstrings.
24567
24568 * shell.el (shell-filter-ctrl-a-ctrl-b): Mark unused parameter.
24569 (shell): Use `called-interactively-p'.
24570 (shell-directory-tracker): Remove unused variable `chdir-failure'.
24571
24572 * simple.el (compilation-context-lines, comint-file-name-quote-list)
24573 (comint-file-name-chars, comint-delimiter-argument-list): Declare.
24574 (delete-backward-char): Remove unused variable `ocol'.
24575 (minibuffer-avoid-prompt, minibuffer-history-isearch-pop-state)
24576 (line-move-1, event-apply-alt-modifier, event-apply-super-modifier)
24577 (event-apply-hyper-modifier, event-apply-shift-modifier)
24578 (event-apply-control-modifier, event-apply-meta-modifier):
24579 Mark unused parameters.
24580 (undo-make-selective-list): Remove duplicate variable `undo-elt'.
24581 (normal-erase-is-backspace-mode): Remove unused variable `old-state'.
24582
24583 * speedbar.el (speedbar-ignored-directory-expressions)
24584 (speedbar-supported-extension-expressions, speedbar-directory-buttons)
24585 (speedbar-find-file, speedbar-dir-follow)
24586 (speedbar-directory-buttons-follow, speedbar-tag-find)
24587 (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
24588 (speedbar-buffers-line-directory, speedbar-buffer-click):
24589 Mark unused parameters.
24590 (speedbar-tag-file): Remove unused variable `mode'.
24591 (speedbar-buffers-tail-notes): Remove unused variable `mod'; simplify.
24592
24593 * strokes.el (strokes-decode-buffer): Remove unused variable `ext'.
24594
24595 * talk.el (talk): Remove unused variable `display'.
24596
24597 * tar-mode.el (tar-subfile-save-buffer): Remove unused variable `name'.
24598 (tar-write-region-annotate): Mark unused parameter.
24599
24600 * time.el (now, time, load, mail, 24-hours, hour, 12-hours, am-pm)
24601 (minutes, seconds, time-zone, day, year, monthname, month, dayname):
24602 Declare them, wrapped in `with-no-warnings' to avoid replacing one
24603 warning by another.
24604
24605 * time-stamp.el (time-stamp-string-preprocess):
24606 Remove unused variable `require-padding'.
24607
24608 * tree-widget.el (widget-glyph-enable): Declare.
24609 (tree-widget-action): Mark unused parameter.
24610
24611 * w32-fns.el (x-get-selection): Mark unused parameter.
24612 (autoload-make-program, generated-autoload-file): Declare.
24613
24614 * wdired.el (wdired-revert): Mark unused parameters.
24615 (wdired-xcase-word): Remove unused variable `err'.
24616
24617 * whitespace.el (whitespace-buffer-changed): Mark unused parameters.
24618 (whitespace-help-scroll): Remove unused variable `data-help'.
24619
24620 * wid-edit.el (widget-mouse-help, widget-overlay-inactive)
24621 (widget-image-insert, widget-after-change, default)
24622 (widget-default-format-handler, widget-default-notify)
24623 (widget-default-prompt-value, widget-info-link-action)
24624 (widget-url-link-action, widget-function-link-action)
24625 (widget-variable-link-action, widget-file-link-action)
24626 (widget-emacs-library-link-action, widget-emacs-commentary-link-action)
24627 (widget-field-prompt-internal, widget-field-action, widget-field-match)
24628 (widget-choice-mouse-down-action, toggle, widget-radio-button-notify)
24629 (widget-insert-button-action, widget-delete-button-action, visibility)
24630 (widget-documentation-link-action, widget-documentation-string-action)
24631 (widget-const-prompt-value, widget-regexp-match, symbol)
24632 (widget-coding-system-prompt-value)
24633 (widget-key-sequence-value-to-external, sexp)
24634 (widget-sexp-value-to-internal, character, vector, cons)
24635 (widget-choice-prompt-value, widget-boolean-prompt-value)
24636 (widget-color--choose-action): Mark unused parameters.
24637 (widget-item-match-inline, widget-choice-match-inline)
24638 (widget-checklist-match, widget-checklist-match-inline)
24639 (widget-group-match): Rename parameter VALUES to VALS.
24640 (widget-field-value-set): Remove unused variable `size'.
24641 (widget-color-action): Remove unused variables `value' and `start'.
24642
24643 * windmove.el (windmove-wrap-loc-for-movement): Remove unused
24644 variable `dir'. Doc fix.
24645 (windmove-find-other-window): Don't pass it.
24646
24647 * window.el (count-windows): Mark unused parameter.
24648 (bw-adjust-window): Remove unused variable `err'.
24649
24650 * woman.el (woman-file-name): Remove unused variable `default'.
24651 (woman-expand-directory-path): Rename parameters WOMAN-MANPATH and
24652 WOMAN-PATH to PATH-DIRS and PATH-REGEXPS, respectively.
24653 (global-font-lock-mode): Declare.
24654 (woman-decode-region): Mark unused parameter.
24655 (woman-get-tab-stop): Rename parameter TAB-STOP-LIST to TAB-STOPS.
24656
24657 * x-dnd.el (x-dnd-default-test-function, x-dnd-handle-old-kde)
24658 (x-dnd-handle-xdnd, x-dnd-handle-motif): Mark unused parameters.
24659 (x-dnd-handle-moz-url): Remove unused variable `title'.
24660 (x-dnd-handle-xdnd): Remove unused variables `x', `y' and `ret-action'.
24661
24662 * xml.el (xml-parse-tag, xml-parse-attlist):
24663 Remove unused variable `pos'.
24664
24665 2011-04-19 Glenn Morris <rgm@gnu.org>
24666
24667 * calendar/cal-tex.el (cal-tex-list-holidays, cal-tex-cursor-month)
24668 (cal-tex-cursor-week, cal-tex-cursor-week2, cal-tex-cursor-week-iso)
24669 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
24670 (cal-tex-cursor-filofax-daily, cal-tex-mini-calendar)
24671 * calendar/cal-html.el (cal-html-insert-minical):
24672 * calendar/diary-lib.el (diary-list-entries-1, diary-list-entries)
24673 (calendar-mark-date-pattern):
24674 Prefix "unused" locals.
24675
24676 * calendar/cal-dst.el (dst-adjust-time): Remove never-implemented
24677 optional argument `style'.
24678
24679 * calendar/appt.el (appt-make-list):
24680 * calendar/cal-china.el (calendar-chinese-date-string):
24681 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits)
24682 (diary-hebrew-yahrzeit):
24683 * calendar/cal-tex.el (cal-tex-last-blank-p, cal-tex-cursor-week2):
24684 * calendar/calendar.el (calendar-generate-window):
24685 * calendar/time-date.el (time-to-days):
24686 Remove unused local variables.
24687
24688 2011-04-18 Chong Yidong <cyd@stupidchicken.com>
24689
24690 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Use a custom
24691 glyphless-char-display table.
24692 (tabulated-list-glyphless-char-display): New var.
24693
24694 2011-04-18 Sam Steingold <sds@gnu.org>
24695
24696 * vc/add-log.el (change-log-font-lock-keywords): Add "Thanks to"
24697 to acknowledgments.
24698
24699 2011-04-17 Glenn Morris <rgm@gnu.org>
24700
24701 * calendar/diary-lib.el (diary-sexp-entry):
24702 * calendar/holidays.el (holiday-sexp):
24703 Set debug-on-error rather than the removed stack-trace-on-error.
24704
24705 2011-04-16 Glenn Morris <rgm@gnu.org>
24706
24707 * progmodes/f90.el: Use lexical-binding.
24708 (f90-get-correct-indent): Remove unnecessary local variable `cont'.
24709
24710 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
24711
24712 * mail/sendmail.el (mail-mode-map): Use completion-at-point.
24713 (mail-mode): Setup mailalias completion here instead.
24714 * mail/mailalias.el: Use lexical-binding.
24715 (pattern, mailalias-done): Declare dynamic.
24716 (mail-completion-at-point-function): New function, from mail-complete.
24717 (mail-complete): Use it.
24718 (mail-completion-expand): New function.
24719 (mail-get-names): Use it.
24720 (mail-directory, mail-directory-process, mail-directory-stream):
24721 Don't use `pattern' for lexically bound arg.
24722
24723 * emacs-lisp/lisp-mode.el (eval-defun-2): Use eval-sexp-add-defvars.
24724
24725 * htmlfontify.el (hfy-etags-cmd): Remove inoperant eval-and-compile.
24726 (hfy-e2x-etags-cmd, hfy-etags-cmd-alist-default)
24727 (hfy-etags-cmd-alist): Don't eval-and-compile any more.
24728
24729 * emacs-lisp/bytecomp.el (byte-temp-output-buffer-show)
24730 (byte-save-window-excursion, byte-temp-output-buffer-setup)
24731 (byte-interactive-p): Define them again, for use when inlining
24732 old code.
24733
24734 2011-04-15 Juanma Barranquero <lekktu@gmail.com>
24735
24736 * loadup.el: Use `string-to-number', not `string-to-int'.
24737
24738 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
24739
24740 * progmodes/gud.el (gud-gdb): Use completion-at-point instead of
24741 gud-gdb-complete-command.
24742 (gud-gdb-completions): New function, from gud-gdb-complete-command.
24743 (gud-gdb-completion-at-point): New function.
24744 (gud-gdb-completions): Remove.
24745
24746 2011-04-14 Michael Albinus <michael.albinus@gmx.de>
24747
24748 * net/tramp-sh.el (tramp-sh-handle-file-attributes): Handle the case
24749 when the scripts fail. Use `tramp-do-file-attributes-with-ls' then.
24750 (tramp-do-copy-or-rename-file-out-of-band): Do not check any longer
24751 whether `executable-find' is bound.
24752
24753 * net/tramp-smb.el (tramp-smb-handle-copy-file): Fix docstring.
24754
24755 2011-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
24756
24757 * minibuffer.el (completion-in-region-mode-predicate)
24758 (completion-in-region-mode--predicate): New vars.
24759 (completion-in-region, completion-in-region--postch)
24760 (completion-in-region-mode): Use them.
24761 (completion--capf-wrapper): Also return the hook function.
24762 (completion-at-point, completion-help-at-point):
24763 Adjust and provide a predicate.
24764
24765 Preserve arg names for advice of subr and lexical functions (bug#8457).
24766 * help-fns.el (help-function-arglist): Consolidate the subr and
24767 new-byte-code cases. Add argument `preserve-names' to extract names
24768 from the docstring when needed.
24769 * emacs-lisp/advice.el (ad-define-subr-args, ad-undefine-subr-args)
24770 (ad-subr-args-defined-p, ad-get-subr-args, ad-subr-arglist): Remove.
24771 (ad-arglist): Use help-function-arglist's new arg.
24772 (ad-definition-type): Use cond.
24773
24774 2011-04-13 Juanma Barranquero <lekktu@gmail.com>
24775
24776 * autorevert.el (auto-revert-handler):
24777 Bind `remote-file-name-inhibit-cache', not `tramp-cache-inhibit-cache',
24778 which was removed in 2010-10-02T13:21:43Z!michael.albinus@gmx.de.
24779 Don't quote lambda.
24780
24781 * image-mode.el (image-transform-set-scale):
24782 Fix change in 2011-04-09T20:28:01Z!cyd@stupidchicken.com.
24783
24784 2011-04-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
24785
24786 * net/network-stream.el (network-stream-open-starttls): Only do
24787 opportunistic STARTTLS upgrades if we have built-in GnuTLS support.
24788 Upgrades via gnutls-cli are too slow to be done opportunistically.
24789
24790 2011-04-12 Juanma Barranquero <lekktu@gmail.com>
24791
24792 * dframe.el (dframe-current-frame): Remove spurious quote.
24793
24794 2011-04-12 Glenn Morris <rgm@gnu.org>
24795
24796 * calendar/cal-tex.el (cal-tex-end-document):
24797 Try to automatically use latin1 input if needed.
24798
24799 * calendar/cal-hebrew.el (diary-hebrew-rosh-hodesh):
24800 Don't try to cons a mark onto an empty element.
24801
24802 2011-04-11 Leo Liu <sdl.web@gmail.com>
24803
24804 * ido.el (ido-buffer-internal): Allow method 'kill for virtual
24805 buffers.
24806 (ido-kill-buffer-at-head): Support killing virtual buffers.
24807
24808 2011-04-10 Chong Yidong <cyd@stupidchicken.com>
24809
24810 * minibuffer.el (completion-show-inline-help): New var.
24811 (completion--do-completion, minibuffer-complete)
24812 (minibuffer-force-complete, minibuffer-complete-word):
24813 Inhibit minibuffer messages if completion-show-inline-help is nil.
24814
24815 * icomplete.el (icomplete-mode): Bind completion-show-inline-help
24816 to avoid interference from inline help (Bug#5849).
24817
24818 2011-04-10 Leo Liu <sdl.web@gmail.com>
24819
24820 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
24821 Fix typo.
24822
24823 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
24824
24825 * image-mode.el (image-toggle-display-image): Signal an error if
24826 not in Image mode.
24827 (image-transform-mode, image-transform-resize)
24828 (image-transform-set-rotation): Doc fix.
24829 (image-transform-set-resize): Delete.
24830 (image-transform-set-scale, image-transform-fit-to-height)
24831 (image-transform-fit-to-width): Handle image-toggle-display-image
24832 and image-transform-resize directly.
24833
24834 2011-04-08 Sho Nakatani <lay.sakura@gmail.com>
24835
24836 * doc-view.el (doc-view-fit-width-to-window)
24837 (doc-view-fit-height-to-window, doc-view-fit-page-to-window):
24838 New functions for fitting the shown image to the Emacs window size.
24839 (doc-view-mode-map): Add bindings for the new functions.
24840
24841 2011-04-08 Juanma Barranquero <lekktu@gmail.com>
24842
24843 * vc/vc-annotate.el (vc-annotate-show-log-revision-at-line):
24844 Fix typo in docstring.
24845
24846 2011-04-08 Eli Zaretskii <eliz@gnu.org>
24847
24848 * files.el (file-size-human-readable): Produce one digit after
24849 decimal, like "ls -lh" does.
24850
24851 * ls-lisp.el (ls-lisp-format-file-size): Allow for 7 characters in
24852 the file size representation.
24853
24854 * simple.el (list-processes): If async subprocesses are not
24855 available, error out with a clear error message.
24856
24857 2011-04-08 Chong Yidong <cyd@stupidchicken.com>
24858
24859 * help.el (help-form-show): New function, to be called from C.
24860 Put help-form output in a buffer named differently than *Help*.
24861
24862 2011-04-08 Eli Zaretskii <eliz@gnu.org>
24863
24864 * files.el (file-size-human-readable): New function.
24865
24866 * ls-lisp.el (ls-lisp-format-file-size): Use it, instead of
24867 computing the representation inline. Don't require `cl'.
24868
24869 2011-04-08 Glenn Morris <rgm@gnu.org>
24870
24871 * man.el (Man-page-header-regexp): Solaris < 2.6 no longer supported.
24872
24873 * net/browse-url.el (browse-url-firefox):
24874 Test system-type, not system-configuration.
24875
24876 * vc/log-edit.el (log-edit-empty-buffer-p): New function.
24877 (log-edit-insert-cvs-template, log-edit-insert-cvs-rcstemplate):
24878 Use log-edit-empty-buffer-p. (Bug#7598)
24879
24880 * net/rlogin.el (rlogin-process-connection-type): Simplify.
24881 (rlogin-mode-map): Initialize in the defvar.
24882 (rlogin): Use ignore-errors.
24883
24884 * replace.el (occur-mode-map): Some fixes for menu items.
24885
24886 2011-04-07 Aaron S. Hawley <aaron.s.hawley@gmail.com>
24887
24888 * play/morse.el (denato-region): Handle varying case. (Bug#8386)
24889
24890 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
24891
24892 * emacs-lisp/cconv.el (cconv--analyse-use): Ignore "ignored" when
24893 issuing unused warnings.
24894
24895 * emacs-lisp/tabulated-list.el (tabulated-list-print): Use lambda
24896 macro directly.
24897
24898 * simple.el: Lisp reimplement of list-processes. Based on an
24899 earlier reimplementation by Leo Liu, but using tabulated-list.el.
24900 (process-menu-mode): New major mode.
24901 (list-processes--refresh, list-processes):
24902 (process-menu-visit-buffer): New functions.
24903
24904 * files.el (save-buffers-kill-emacs): Don't assume any return
24905 value of list-processes, which is undocumented anyway.
24906
24907 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
24908
24909 * emacs-lisp/tabulated-list.el: New file.
24910
24911 * emacs-lisp/package.el: Use Tabulated List mode.
24912 (package-menu-mode-map): Inherit from tabulated-list-mode-map.
24913 (package-menu-mode): Derive from tabulated-list-mode. Set up the
24914 table format using Tabulated List mode variables.
24915 (package--push): New macro, replacing package-list-maybe-add.
24916 (package-menu--generate): Use package--push. Renamed from
24917 package--generate-package-list.
24918 (package-menu-refresh, list-packages): Use it.
24919 (package-menu--print-info): Rename from package-print-package.
24920 Return insertion data instead of inserting it directly.
24921 (package-menu-describe-package, package-menu-execute):
24922 Use tabulated-list-get-id.
24923 (package-menu-mark-delete, package-menu-mark-install)
24924 (package-menu-mark-unmark, package-menu-backup-unmark)
24925 (package-menu-mark-obsolete-for-deletion):
24926 Use tabulated-list-put-tag.
24927 (package--list-packages, package-menu-revert)
24928 (package-menu-get-package, package-menu-get-version)
24929 (package-menu-sort-by-column): Functions deleted.
24930 (package-menu-package-list, package-menu-sort-key): Vars deleted.
24931 (package-menu--status-predicate, package-menu--version-predicate)
24932 (package-menu--name-predicate)
24933 (package-menu--description-predicate): Handle arguments in the
24934 Tabulated List format.
24935 (package-list-packages-no-fetch): Call list-packages.
24936
24937 2011-04-06 Juanma Barranquero <lekktu@gmail.com>
24938
24939 * files.el (after-find-file-from-revert-buffer): Remove variable.
24940 (after-find-file): Don't bind it.
24941 (revert-buffer-in-progress-p): New variable.
24942 (revert-buffer): Bind it.
24943 Pass nil for `after-find-file-from-revert-buffer'.
24944
24945 * saveplace.el (save-place-find-file-hook): Use new variable
24946 `rever-buffer-in-progress-p', not `after-find-file-from-revert-buffer'.
24947
24948 2011-04-06 Glenn Morris <rgm@gnu.org>
24949
24950 * Makefile.in (AUTOGEN_VCS): New variable.
24951 (autoloads): Use $AUTOGEN_VCS.
24952
24953 * calendar/cal-move.el (calendar-scroll-toolkit-scroll): New function.
24954 * calendar/calendar.el (calendar-mode-map):
24955 Check for toolkit scroll bars. (Bug#8305)
24956
24957 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
24958
24959 * minibuffer.el (completion-in-region--postch)
24960 (completion-in-region-mode): Remove unnecessary messages.
24961
24962 2011-04-05 Juanma Barranquero <lekktu@gmail.com>
24963
24964 * font-lock.el (font-lock-refresh-defaults):
24965 Don't bind `hi-lock--inhibit-font-lock-hook', removed in
24966 2010-10-09T04:09:19Z!cyd@stupidchicken.com and 2010-10-11T23:57:49Z!lekktu@gmail.com (2010-10-12).
24967
24968 * info.el (Info-directory-list, Info-read-node-name-2)
24969 (Info-split-parameter-string): Doc fixes.
24970 (Info-virtual-nodes): Reflow docstring.
24971 (Info-find-file, Info-directory-toc-nodes, Info-history-toc-nodes)
24972 (Info-apropos-toc-nodes, info-finder, Info-get-token)
24973 (Info-find-emacs-command-nodes, Info-speedbar-key-map):
24974 Fix typos in docstrings.
24975 (Info-revert-buffer-function, Info-search, Info-isearch-pop-state)
24976 (Info-speedbar-hierarchy-buttons, Info-speedbar-goto-node)
24977 (Info-speedbar-buttons, Info-desktop-buffer-misc-data)
24978 (Info-restore-desktop-buffer): Mark unused parameters.
24979 (Info-directory-find-file, Info-directory-find-node)
24980 (Info-history-find-file, Info-history-find-node, Info-toc-find-node)
24981 (Info-virtual-index-find-node, Info-apropos-find-file)
24982 (Info-apropos-find-node, Info-finder-find-file, Info-finder-find-node):
24983 Mark unused parameters; fix typos in docstrings.
24984 (Info-virtual-index): Remove unused local variable `nodename'.
24985
24986 2011-04-05 Deniz Dogan <deniz@dogan.se>
24987
24988 * net/rcirc.el: Update my e-mail address.
24989 (rcirc-mode-map): Remove M-o binding.
24990
24991 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
24992
24993 * startup.el (command-line): Save the cursor's theme-face
24994 directly, instead of using face-override-spec.
24995
24996 * custom.el (load-theme): Minor optimization in assigning faces.
24997
24998 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
24999
25000 * help-fns.el (describe-variable): Complete all variables having
25001 documentation, including keywords.
25002 http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00112.html
25003
25004 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
25005
25006 Convert to lexical-binding.
25007
25008 * bs.el (bs-refresh, bs-sort-buffer-interns-are-last)
25009 (bs--get-marked-string, bs--get-modified-string)
25010 (bs--get-readonly-string, bs--get-size-string, bs--get-name)
25011 (bs--get-mode-name, bs--get-file-name): Mark unused arguments.
25012 (bs--configuration-name-for-prefix-arg): Rename argument PREFIX-ARG.
25013
25014 * ehelp.el (electric-help-execute-extended)
25015 (electric-help-ctrl-x-prefix):
25016 * hexl.el (hexl-revert-buffer-function):
25017 * linum.el (linum-after-change, linum-after-scroll):
25018 * emacs-lisp/re-builder.el (reb-auto-update): Mark unused arguments.
25019
25020 * help-fns.el (help-describe-category-set): Remove unused ERR variable.
25021
25022 2011-04-04 Daiki Ueno <ueno@unixuser.org>
25023
25024 * epa-dired.el:
25025 * epa-mail.el:
25026 * epa-hook.el:
25027 * epa-file.el:
25028 * epa.el:
25029 * epg.el: Use lexical binding.
25030
25031 2011-04-03 Chong Yidong <cyd@stupidchicken.com>
25032
25033 * dired-aux.el (dired-create-files): Add docstring (Bug#7970).
25034
25035 * textmodes/flyspell.el (flyspell-word): Recognize default
25036 dictionary case for flyspell-mark-duplications-exceptions.
25037 Use regexp matching for languages.
25038 (flyspell-mark-duplications-exceptions): Add "that" and "had" for
25039 default dictionary (Bug#7926).
25040
25041 2011-04-02 Chong Yidong <cyd@stupidchicken.com>
25042
25043 * emacs-lisp/package.el (package--with-work-buffer):
25044 Recognize https URLs.
25045
25046 * net/network-stream.el: Move from gnus/proto-stream.el.
25047 Change prefix to network-stream throughout.
25048 (open-protocol-stream): Merge into open-network-stream, leaving
25049 open-protocol-stream as an alias. Handle nil BUFFER args.
25050
25051 * subr.el (open-network-stream): Move to net/network-stream.el.
25052
25053 2011-04-02 Glenn Morris <rgm@gnu.org>
25054
25055 * find-dired.el (find-exec-terminator): New option.
25056 (find-ls-option): Test for -ls support.
25057 (find-ls-subdir-switches): Test for -b in find-ls-option.
25058 (find-dired, find-grep-dired): Doc fixes.
25059 (find-dired): Use find-exec-terminator.
25060
25061 * find-dired.el (find-ls-option, find-ls-subdir-switches)
25062 (find-grep-options): Do not autoload these defcustoms, remove purecopy.
25063 (find-name-arg): Remove purecopy.
25064
25065 * progmodes/grep.el (grep-find-use-xargs): Doc fix.
25066 (grep-compute-defaults): Check for `-exec COMMAND +' support.
25067 Set grep-find-use-xargs, grep-find-command, and grep-find-template
25068 accordingly. Don't add the null-device if not needed.
25069
25070 * files.el (save-some-buffers): Doc fix.
25071
25072 2011-04-02 Eli Zaretskii <eliz@gnu.org>
25073
25074 * makefile.w32-in (EMACS): Default to ../src/$(BLD)/emacs.exe.
25075
25076 2011-04-01 Juanma Barranquero <lekktu@gmail.com>
25077
25078 * progmodes/idlwave.el (idlwave-one-key-select, idlwave-list-abbrevs):
25079 Use `dolist' rather than `mapcar'.
25080
25081 2011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
25082
25083 Add lexical binding.
25084
25085 * subr.el (apply-partially): Use new closures rather than CL.
25086 (--dolist-tail--, --dotimes-limit--): Don't declare dynamic.
25087 (dolist, dotimes): Use slightly different expansion for lexical code.
25088 (functionp): Move to C.
25089 (letrec): New macro.
25090 (with-wrapper-hook): Use it and apply-partially instead of CL.
25091 (eval-after-load): Preserve lexical-binding.
25092 (save-window-excursion, with-output-to-temp-buffer): Turn them
25093 into macros.
25094
25095 * simple.el (with-wrapper-hook, apply-partially): Move to subr.el.
25096
25097 * help-fns.el (help-split-fundoc): Return nil if there's nothing else
25098 than the arglist.
25099 (help-add-fundoc-usage): Don't add `Not documented'.
25100 (help-function-arglist): Handle closures, subroutines, and new
25101 byte-code-functions.
25102 (help-make-usage): Remove leading underscores.
25103 (describe-function-1): Handle closures.
25104 (describe-variable): Use special-variable-p for completion.
25105
25106 * files.el (lexical-binding): Declare safe.
25107
25108 * emacs-lisp/pcase.el: Don't use destructuring-bind.
25109 (pcase--memoize): Rename from pcase-memoize. Change weakness.
25110 (pcase): Add `let' pattern.
25111 Change memoization so it actually works.
25112 (pcase-mutually-exclusive-predicates): Add byte-code-function-p.
25113 (pcase--u1) <guard, pred>: Fix possible shadowing problem.
25114 <let>: New case.
25115
25116 * emacs-lisp/macroexp.el: Use lexical binding.
25117 (macroexpand-all-1): Check obsolete macros. Expand compiler-macros.
25118 Don't convert ' to #' without checking that it's indeed quoting
25119 a lambda.
25120
25121 * emacs-lisp/lisp-mode.el (eval-last-sexp-1):
25122 Use eval-sexp-add-defvars.
25123 (eval-sexp-add-defvars): New fun.
25124
25125 * emacs-lisp/float-sup.el (pi): Don't declare as dynamically bound.
25126
25127 * emacs-lisp/eieio.el (byte-compile-file-form-defmethod):
25128 Don't autoload.
25129 (eieio-defgeneric-form-primary-only-one): Use `byte-compile' rather
25130 than the internal `byte-compile-lambda'.
25131 (defmethod): Don't hide code under quotes.
25132 (eieio-defmethod): New `code' argument.
25133
25134 * emacs-lisp/eieio-comp.el: Remove.
25135
25136 * emacs-lisp/edebug.el (edebug-eval-defun)
25137 (edebug-eval-top-level-form): Use eval-sexp-add-defvars.
25138 (edebug-toggle): Avoid `eval'.
25139
25140 * emacs-lisp/disass.el (disassemble-internal): Handle new
25141 `closure' objects.
25142 (disassemble-1): Handle new byte codes.
25143
25144 * emacs-lisp/cl.el (pushnew): Silence warning.
25145
25146 * emacs-lisp/cl-macs.el (cl-byte-compile-block)
25147 (cl-byte-compile-throw): Remove.
25148 (cl-block-wrapper, cl-block-throw): Use compiler-macros instead.
25149
25150 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Properly quote CL
25151 closures.
25152
25153 * emacs-lisp/cconv.el: New file.
25154
25155 * emacs-lisp/bytecomp.el: Use lexical binding instead of
25156 a "bytecomp-" prefix. Macroexpand everything as a separate phase.
25157 (byte-compile-initial-macro-environment):
25158 Handle declare-function here.
25159 (byte-compile--lexical-environment): New var.
25160 (byte-stack-ref, byte-stack-set, byte-discardN)
25161 (byte-discardN-preserve-tos): New lap codes.
25162 (byte-interactive-p): Don't use any more.
25163 (byte-compile-push-bytecodes, byte-compile-push-bytecode-const2):
25164 New macros.
25165 (byte-compile-lapcode): Use them and handle new lap codes.
25166 (byte-compile-obsolete): Remove.
25167 (byte-compile-arglist-signature): Handle new byte-code arg"lists".
25168 (byte-compile-arglist-warn): Check late def of inlinable funs.
25169 (byte-compile-cl-warn): Don't silence warnings for compiler-macros
25170 since they should have been expanded by now.
25171 (byte-compile--outbuffer): Rename from bytecomp-outbuffer.
25172 (byte-compile-from-buffer): Remove unused second arg.
25173 (byte-compile-preprocess): New function.
25174 (byte-compile-toplevel-file-form): New function to distinguish
25175 file-form calls from outside from file-form calls from hunk-handlers.
25176 (byte-compile-file-form): Simplify.
25177 (byte-compile-file-form-defsubst): Remove.
25178 (byte-compile-file-form-defmumble): Simplify now that
25179 byte-compile-lambda always returns a byte-code-function.
25180 (byte-compile): Preprocess.
25181 (byte-compile-byte-code-maker, byte-compile-byte-code-unmake):
25182 Remove, not used any more.
25183 (byte-compile-arglist-vars, byte-compile-make-lambda-lexenv)
25184 (byte-compile-make-args-desc): New funs.
25185 (byte-compile-lambda): Handle lexical functions. Always return
25186 a byte-code-function.
25187 (byte-compile-reserved-constants): New var, to make up room for
25188 closed-over variables.
25189 (byte-compile-constants-vector): Obey it.
25190 (byte-compile-top-level): New args `lexenv' and `reserved-csts'.
25191 (byte-compile-macroexpand-declare-function): New function.
25192 (byte-compile-form): Call byte-compile-unfold-bcf to inline immediate
25193 byte-code-functions.
25194 (byte-compile-form): Check obsolescence here.
25195 (byte-compile-inline-lapcode, byte-compile-unfold-bcf): New functions.
25196 (byte-compile-variable-ref): Remove.
25197 (byte-compile-dynamic-variable-op): New fun.
25198 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
25199 (byte-compile-variable-set): New funs.
25200 (byte-compile-discard): Add 2 args.
25201 (byte-compile-stack-ref, byte-compile-stack-set)
25202 (byte-compile-make-closure, byte-compile-get-closed-var): New funs.
25203 (byte-compile-funarg, byte-compile-funarg-2): Remove, handled in
25204 macroexpand-all instead.
25205 (byte-compile-quote-form): Remove.
25206 (byte-compile-push-binding-init, byte-compile-not-lexical-var-p)
25207 (byte-compile-bind, byte-compile-unbind): New funs.
25208 (byte-compile-let): Handle let* and lexical binding.
25209 (byte-compile-let*): Remove.
25210 (byte-compile-catch, byte-compile-unwind-protect)
25211 (byte-compile-track-mouse, byte-compile-condition-case):
25212 Handle a new :fun-body form, used for lexical scoping.
25213 (byte-compile-save-window-excursion)
25214 (byte-compile-with-output-to-temp-buffer): Remove.
25215 (byte-compile-defun): Simplify.
25216 (byte-compile-stack-adjustment): New fun.
25217 (byte-compile-out): Use it.
25218 (byte-compile-refresh-preloaded): Don't reload byte-compiler files.
25219
25220 * emacs-lisp/byte-run.el (make-obsolete): Don't set the `byte-compile'
25221 handler any more.
25222
25223 * emacs-lisp/byte-opt.el: Use lexical binding.
25224 (byte-inline-lapcode): Remove (to bytecomp).
25225 (byte-compile-inline-expand): Pay attention to inlining to/from
25226 lexically bound code.
25227 (byte-compile-unfold-lambda): Don't handle byte-code-functions
25228 any more.
25229 (byte-optimize-form-code-walker): Don't handle save-window-excursion
25230 any more and don't call compiler-macros.
25231 (byte-compile-splice-in-already-compiled-code): Remove.
25232 (byte-code): Don't inline any more.
25233 (disassemble-offset): Receive `bytes' as argument rather than via
25234 dynamic scoping.
25235 (byte-compile-tag-number): Declare before first use.
25236 (byte-decompile-bytecode-1): Handle new byte-codes, don't change
25237 `return' even if make-spliceable.
25238 (byte-compile-side-effect-and-error-free-ops): Add stack-ref, remove
25239 obsolete interactive-p.
25240 (byte-optimize-lapcode): Optimize new lap-codes.
25241 Don't trip up on new form of `byte-constant' lap code.
25242
25243 * emacs-lisp/autoload.el (make-autoload): Don't burp on trivial macros.
25244
25245 * emacs-lisp/advice.el (ad-arglist): Use help-function-arglist.
25246
25247 * custom.el (custom-initialize-default, custom-declare-variable):
25248 Use `defvar'.
25249
25250 * Makefile.in (BIG_STACK_DEPTH, BIG_STACK_OPTS, BYTE_COMPILE_FLAGS):
25251 New variables.
25252 (compile-onefile, .el.elc, compile-calc, recompile): Use them.
25253 (COMPILE_FIRST): Add macroexp and cconv.
25254 * makefile.w32-in: Mirror changes in Makefile.in.
25255
25256 * vc/cvs-status.el:
25257 * vc/diff-mode.el:
25258 * vc/log-edit.el:
25259 * vc/log-view.el:
25260 * vc/smerge-mode.el:
25261 * textmodes/bibtex-style.el:
25262 * textmodes/css-mode.el:
25263 * startup.el:
25264 * uniquify.el:
25265 * minibuffer.el:
25266 * newcomment.el:
25267 * reveal.el:
25268 * server.el:
25269 * mpc.el:
25270 * emacs-lisp/smie.el:
25271 * doc-view.el:
25272 * dired.el:
25273 * abbrev.el: Use lexical binding.
25274
25275 2011-04-01 Eli Zaretskii <eliz@gnu.org>
25276
25277 * info.el (info-display-manual): New function.
25278
25279 2011-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
25280
25281 * loadup.el: Load minibuffer after loaddefs, to use define-minor-mode.
25282
25283 2011-03-31 Tassilo Horn <tassilo@member.fsf.org>
25284
25285 * net/rcirc.el (rcirc-handler-001): Only authenticate, if there's
25286 an entry for that server in rcirc-authinfo. (Bug#8385)
25287
25288 2011-03-31 Glenn Morris <rgm@gnu.org>
25289
25290 * progmodes/f90.el (f90-find-tag-default): Handle multiple `%'.
25291
25292 * generic-x.el (etc-fstab-generic-mode): Add ext4, sysfs keywords.
25293
25294 2011-03-30 Christoph Scholtes <cschol2112@googlemail.com>
25295
25296 * progmodes/python.el (python-default-interpreter)
25297 (python-python-command-args, python-jython-command-args)
25298 (python-which-shell, python-which-args, python-which-bufname)
25299 (python-file-queue, python-comint-output-filter-function)
25300 (python-toggle-shells, python-shell): Remove obsolete defcustoms,
25301 variables and functions.
25302
25303 2011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
25304
25305 * minibuffer.el (completion-table-dynamic): Optimize `boundaries'.
25306 (completion-in-region-mode): New minor mode.
25307 (completion-in-region): Use it.
25308 (completion-in-region--data, completion-in-region-mode-map): New vars.
25309 (completion-in-region--postch): New function.
25310 (completion--capf-misbehave-funs, completion--capf-safe-funs):
25311 New vars.
25312 (completion--capf-wrapper): New function.
25313 (completion-at-point): Use it to track well-behavedness of
25314 hook functions.
25315 (completion-help-at-point): New command.
25316
25317 2011-03-30 Jason Merrill <jason@redhat.com> (tiny change)
25318
25319 * vc/add-log.el (add-change-log-entry): Don't use whitespace
25320 syntax class to search for whitespace on a single line
25321 (Message-ID: <4D938140.4030905@redhat.com>).
25322
25323 2011-03-30 Leo Liu <sdl.web@gmail.com>
25324
25325 * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
25326 New commands.
25327 (edit-abbrevs-map): Bind them here.
25328 (write-abbrev-file): New optinal arg VERBOSE. (Bug#5937)
25329
25330 2011-03-29 Ken Manheimer <ken.manheimer@gmail.com>
25331
25332 * allout.el (allout-hide-by-annotation, allout-flag-region):
25333 Reduce possibility of overlay leakage by making them volatile.
25334
25335 * allout-widgets.el (allout-widgets-tally): Define as nil so the
25336 hash is not shared between buffers. Mode initialization is
25337 responsible for giving it a useful starting value.
25338 (allout-item-span): Reduce possibility of overlay leakage by
25339 making them volatile.
25340 (allout-widgets-count-buttons-in-region): Add diagnostic function
25341 for tracking down button overlay leaks.
25342
25343 2011-03-29 Leo Liu <sdl.web@gmail.com>
25344
25345 * ido.el (ido-read-internal): Use the default history var
25346 minibuffer-history if no HISTORY is specified.
25347
25348 2011-03-28 Brian T. Sniffen <bsniffen@akamai.com> (tiny change)
25349
25350 * net/imap.el (imap-shell-open, imap-process-connection-type):
25351 Use imap-process-connection-type for 'shell' streams as well as
25352 Kerberos, SSL, other subprocesses.
25353
25354 2011-03-28 Leo Liu <sdl.web@gmail.com>
25355
25356 * abbrev.el (abbrev-table-empty-p): New function.
25357 (prepare-abbrev-list-buffer): Place empty abbrev tables after
25358 nonempty ones. (Bug#5937)
25359
25360 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
25361
25362 * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
25363
25364 2011-03-27 Leo Liu <sdl.web@gmail.com>
25365
25366 * ansi-color.el (ansi-color-names-vector): Allow cons cell value
25367 for foreground and background colors.
25368 (ansi-color-make-color-map): Adapt.
25369
25370 2011-03-25 Leo Liu <sdl.web@gmail.com>
25371
25372 * midnight.el (midnight-time-float): Remove. Note it calculates
25373 the microsecond component incorrectly and seconds-to-time does the
25374 same job.
25375 Remove redundant (require 'timer).
25376
25377 * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
25378 (ido-completions): Remove unused arguments. (Bug#8329)
25379
25380 2011-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
25381
25382 * minibuffer.el (completion--flush-all-sorted-completions):
25383 Remove itself from hook.
25384 (completion-at-point): Let the functions perform the completion
25385 immediately and return nil or t.
25386 * comint.el (comint-dynamic-complete-functions): Now identical to
25387 completion-at-point-functions.
25388 (comint-dynamic-list-input-ring): Remove unused var `index'.
25389 (comint--match-partial-filename, comint--unquote&expand-filename):
25390 New funs, split from comint-match-partial-filename.
25391 (comint-dynamic-complete): Use completion-at-point.
25392 (comint-dynamic-complete-filename): Use comint--match-partial-filename.
25393
25394 2011-03-24 Drew Adams <drew.adams@oracle.com>
25395
25396 * thingatpt.el: Support `defun'.
25397
25398 2011-03-23 Leo Liu <sdl.web@gmail.com>
25399
25400 * abbrevlist.el: Move to obsolete/abbrevlist.el.
25401
25402 * help-mode.el (help-mode-finish): Tweak regexp.
25403
25404 2011-03-23 Glenn Morris <rgm@gnu.org>
25405
25406 * eshell/esh-opt.el (eshell-eval-using-options):
25407 Do not bind unused local variable `eshell-option-stub'.
25408
25409 * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
25410
25411 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
25412
25413 * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
25414 keymap variable in `with-no-warnings' to avoid a warning when the
25415 keymap has been already `defconst'ed.
25416
25417 2011-03-22 Leo Liu <sdl.web@gmail.com>
25418
25419 * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
25420 encode all chars in abbrevs; otherwise use emacs-mule or
25421 utf-8-emacs. (Bug#8308)
25422
25423 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
25424
25425 * simple.el (backward-delete-char-untabify):
25426 Avoid warning about using `delete-backward-char'.
25427
25428 * image.el (image-type-file-name-regexps): Make it variable.
25429 `imagemagick-register-types' modifies it, and the user may want
25430 to add new extensions for known image types.
25431 (imagemagick-register-types): Throw error if not using ImageMagick.
25432
25433 2011-03-22 Leo Liu <sdl.web@gmail.com>
25434
25435 * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
25436 located before rcirc-prompt-end-marker.
25437 (rcirc-complete): Error if point is not after rcirc prompt.
25438 Handle the case when table is nil.
25439 (rcirc-user-authenticated): Define to fix compiler warning.
25440
25441 2011-03-22 Chong Yidong <cyd@stupidchicken.com>
25442
25443 * custom.el (custom--inhibit-theme-enable): Make it affect only
25444 custom-theme-set-variables and custom-theme-set-faces.
25445 (provide-theme): Ignore custom--inhibit-theme-enable.
25446 (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
25447 (custom-enabling-themes): Delete variable.
25448 (enable-theme): Accept only loaded themes as arguments.
25449 Ignore the special custom-enabled-themes variable.
25450 (custom-enabled-themes): Forbid themes from setting this.
25451 Eliminate use of custom-enabling-themes.
25452 (custom-push-theme): Quote "changed" custom var entry.
25453
25454 2011-03-21 Leo Liu <sdl.web@gmail.com>
25455
25456 * ido.el (ido-read-internal): Add ido-selected to history instead
25457 of user input.
25458
25459 2011-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
25460
25461 * subr.el (deferred-action-list, deferred-action-function):
25462 Mark obsolete.
25463
25464 2011-03-21 Leo Liu <sdl.web@gmail.com>
25465
25466 * vc/log-view.el: Remove (require 'wid-edit), not needed after the
25467 change on 2011-02-13 (bug#8309).
25468
25469 * minibuffer.el (read-file-name-function): Change default value.
25470 (read-file-name--defaults): Rename from read-file-name-defaults.
25471 (read-file-name-default): Rename from read-file-name.
25472 (read-file-name): Call read-file-name-function.
25473
25474 2011-03-21 Glenn Morris <rgm@gnu.org>
25475
25476 * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
25477 Doc fixes.
25478
25479 2011-03-21 Chong Yidong <cyd@stupidchicken.com>
25480
25481 * cus-theme.el: Add missing provide statement.
25482 (customize-create-theme): Extract theme value correctly.
25483 (custom-theme-visit-theme): Autoload.
25484 (customize-create-theme): Prompt before inserting default faces.
25485
25486 2011-03-20 Jay Belanger <jay.p.belanger@gmail.com>
25487
25488 * calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
25489 units and musical notes.
25490
25491 2011-03-20 Leo Liu <sdl.web@gmail.com>
25492
25493 * ido.el (ido-read-internal): Use completing-read-default.
25494 (ido-completing-read): Fix compatibility with completing-read.
25495
25496 2011-03-20 Christian Ohler <ohler@gnu.org>
25497
25498 * emacs-lisp/ert.el (ert-run-tests-batch): Remove unused variable.
25499 (ert-delete-all-tests): Use `called-interactively-p' rather than
25500 `interactive-p'.
25501 (ert--make-xrefs-region): Respect END.
25502
25503 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
25504
25505 * dired-aux.el (dired-create-directory): Signal an error if the
25506 directory already exists (Bug#8246).
25507
25508 * facemenu.el (list-colors-display): Call list-faces-display
25509 inside with-help-window.
25510 (list-colors-print): Use display property to align the final
25511 column, instead of checking window-width.
25512
25513 2011-03-19 Eli Zaretskii <eliz@gnu.org>
25514
25515 * vc/emerge.el (emerge-metachars): Separate value for ms-dos and
25516 windows-nt systems.
25517 (emerge-protect-metachars): Quote correctly for ms-dos and
25518 windows-nt systems.
25519
25520 2011-03-19 Ralph Schleicher <rs@ralph-schleicher.de>
25521
25522 * info.el (info-initialize): Replace all uses of `:' with
25523 path-separator for compatibility with non-Unix systems.
25524 Cache quoting of path-separator. (Bug#8258)
25525
25526 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
25527
25528 * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
25529 (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
25530 (mouse-avoidance-mode): Fix typos in docstrings.
25531
25532 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
25533
25534 * startup.el (package-subdirectory-regexp): Move from package.el.
25535 Omit \\` and \\', and let callers add them.
25536
25537 * emacs-lisp/package.el (package-strip-version)
25538 (package-load-all-descriptors): Add \\` and \\' to
25539 package-subdirectory-regexp before using it.
25540 (package-untar-buffer): New arg DIR; ensure that file untars only
25541 into this expected directory. Remove superfluous delete-region.
25542 (package-unpack): Caller changed.
25543 (package-tar-file-info): Use package-subdirectory-regexp.
25544
25545 2011-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
25546
25547 * vc/diff-mode.el (diff-mode-map): Shadow problematic bindings from
25548 diff-mode-shared-map (bug#8284).
25549 (diff-mode-shared-map): Re-introduce some bindings that were problematic.
25550
25551 2011-03-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
25552
25553 * calendar/time-date.el (format-seconds): Use assoc instead of
25554 assoc-string, since assoc-string doesn't exist in XEmacs.
25555
25556 2011-03-17 Juanma Barranquero <lekktu@gmail.com>
25557
25558 * custom.el (custom-known-themes): Reflow docstring.
25559 (custom-theme-load-path): Fix typo in docstring.
25560 (load-theme): Fix typo in error message.
25561 (custom-available-themes, custom-variable-theme-value):
25562 Use `let', not `let*'.
25563
25564 2011-03-17 Jay Belanger <jay.p.belanger@gmail.com>
25565
25566 * calc/README: Mention inclusion of musical notes.
25567
25568 * calc/calc-units.el (calc-lu-quant): Rename from
25569 `calc-logunits-quantity'.
25570 (calcFunc-lupquant): Rename from `calcFunc-powerquant'.
25571 (calcFunc-lufquant): Rename from `calcFunc-fieldquant'.
25572 (calc-db): Rename from `calc-dblevel'.
25573 (calcFunc-dbpower): Rename from `calcFunc-dbpowerlevel'.
25574 (calcFunc-dbfield): Rename from `calcFunc-dbfieldlevel'.
25575 (calc-np): Rename from `calc-nplevel'.
25576 (calcFunc-nppower): Rename from `calcFunc-nppowerlevel'.
25577 (calcFunc-npfield): Rename from `calcFunc-npfieldlevel'.
25578 (calc-lu-plus): Rename from `calc-logunits-add'.
25579 (calcFunc-lupadd): Rename from `calcFunc-lupoweradd'.
25580 (calcFunc-lufadd): Rename from `calcFunc-lufieldadd'.
25581 (calc-lu-minus): Rename from `calc-logunits-sub'.
25582 (calcFunc-lupsub): Rename from `calcFunc-lupowersub'.
25583 (calcFunc-lufsub): Rename from `calcFunc-lufieldsub'.
25584 (calc-lu-times): Rename from `calc-logunits-mul'.
25585 (calcFunc-lupmul): Rename from `calcFunc-lupowermul'.
25586 (calcFunc-lufmul): Rename from `calcFunc-lufieldmul'.
25587 (calc-lu-divide): Rename from `calc-logunits-div'.
25588 (calcFunc-lupdiv): Rename from `calcFunc-lupowerdiv'.
25589 (calcFunc-lufdiv): Rename from `calcFunc-lufielddiv'.
25590
25591 * calc/calc-ext.el (calc-init-extensions): Update the names of the
25592 functions being autoloaded.
25593
25594 * calc/calc.el (calc-lu-power-reference): Rename from
25595 `calc-logunits-power-reference'.
25596 (calc-lu-field-reference): Rename from
25597 `calc-logunits-field-reference'.
25598
25599 * calc/calc-help.el (calc-l-prefix-help):
25600 Mention musical note functions.
25601
25602 2011-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
25603
25604 * minibuffer.el (completion-all-sorted-completions):
25605 Use :completion-cycle-penalty text property if present.
25606
25607 2011-03-16 Ken Manheimer <ken.manheimer@gmail.com>
25608
25609 * allout.el (allout-yank-processing): Adjust for new rebulleting
25610 regime so bullet being yanked is used without prompting the user
25611 for a choice.
25612
25613 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
25614
25615 * startup.el (command-line): Warn the user that _emacs is deprecated.
25616
25617 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
25618
25619 * progmodes/delphi.el (delphi-search-path, delphi-indent-level)
25620 (delphi-verbose, delphi-comment-face, delphi-string-face)
25621 (delphi-keyword-face, delphi-ignore-changes, delphi-indent-line)
25622 (delphi-mode-abbrev-table, delphi-debug-buffer, delphi-tab)
25623 (delphi-find-unit, delphi-find-current-xdef, delphi-fill-comment)
25624 (delphi-new-comment-line, delphi-font-lock-defaults)
25625 (delphi-debug-mode-map, delphi-mode-syntax-table, delphi-mode):
25626 Fix typos in docstrings.
25627
25628 2011-03-15 Ken Manheimer <ken.manheimer@gmail.com>
25629
25630 * allout.el (allout-make-topic-prefix, allout-rebullet-heading):
25631 Invert the roles of character and string values for INSTEAD, so a
25632 string is used for the more common case of a defaulting prompt.
25633
25634 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
25635
25636 * progmodes/ruby-mode.el (ruby-backward-sexp):
25637 * progmodes/ebrowse.el (ebrowse-draw-file-member-info):
25638 * play/gamegrid.el (gamegrid-make-face):
25639 * play/bubbles.el (bubbles--grid-width, bubbles--grid-height)
25640 (bubbles--colors, bubbles--shift-mode, bubbles--initialize-images):
25641 * notifications.el (notifications-notify):
25642 * net/xesam.el (xesam-search-engines):
25643 * net/quickurl.el (quickurl-list-insert):
25644 * vc/vc-hg.el (vc-hg-dir-printer): Fix use of case.
25645
25646 2011-03-15 Chong Yidong <cyd@stupidchicken.com>
25647
25648 * startup.el (command-line): Update package subdirectory regexp.
25649
25650 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
25651
25652 * allout.el (allout-abbreviate-flattened-numbering)
25653 (allout-mode-deactivate-hook): Fix up obsolescence "date".
25654
25655 * subr.el (read-char-choice): Only show the cursor after the prompt,
25656 not after the answer.
25657
25658 2011-03-15 Kevin Ryde <user42@zip.com.au>
25659
25660 * help-fns.el (variable-at-point): Skip leading quotes, if any
25661 (bug#8253).
25662
25663 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
25664
25665 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
25666 warning message.
25667
25668 2011-03-14 Michael Albinus <michael.albinus@gmx.de>
25669
25670 * shell.el (shell): When called interactively, offer to change the
25671 shell file name on remote hosts.
25672
25673 2011-03-13 Teodor Zlatanov <tzz@lifelogs.com>
25674
25675 * net/ldap.el (ldap-search-internal): Add `auth-source-search'
25676 integration for LDAP parameters. The host, base, user or binddn,
25677 and secret tokens can be specified in a netrc file, for instance.
25678 This is optional because an `auth-source' parameter must be
25679 specified in the search attributes.
25680
25681 2011-03-13 Juanma Barranquero <lekktu@gmail.com>
25682
25683 * help.el (describe-mode): Link to the mode's definition (bug#8185).
25684
25685 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
25686
25687 * ebuff-menu.el (electric-buffer-menu-mode-map): Move initialization
25688 into declaration. Remove redundant and harmful binding.
25689
25690 2011-03-12 Eli Zaretskii <eliz@gnu.org>
25691
25692 * files.el (file-ownership-preserved-p): Pass `integer' as an
25693 explicit 2nd argument to `file-attributes'. If the file's owner
25694 is the Administrators group on Windows, and the current user is
25695 Administrator, consider that a match.
25696
25697 * server.el (server-ensure-safe-dir): Consider server directory
25698 safe on MS-Windows if its owner is the Administrators group while
25699 the current Emacs user is Administrator. Use `=' to compare
25700 numerical UIDs, since they could be integers or floats.
25701
25702 2011-03-12 Juanma Barranquero <lekktu@gmail.com>
25703
25704 * vc/vc-bzr.el (vc-bzr-state): Handle bzr 2.3.0 (follow-up to bug#8170).
25705
25706 2011-03-12 Michael Albinus <michael.albinus@gmx.de>
25707
25708 Sync with Tramp 2.2.1.
25709
25710 * net/tramp-sh.el (tramp-methods): Exchange "%k" marker with options.
25711
25712 * net/trampver.el: Update release number.
25713
25714 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
25715
25716 * progmodes/compile.el (compilation--previous-directory): Fix up
25717 various nil/dead-marker mismatches (bug#8014).
25718 (compilation-directory-properties, compilation-error-properties):
25719 Don't call it at a position past the one we're about to change.
25720
25721 * emacs-lisp/bytecomp.el (byte-compile-make-obsolete-variable):
25722 Disable obsolescence warnings in the file that declares it.
25723
25724 2011-03-11 Ken Manheimer <ken.manheimer@gmail.com>
25725
25726 * allout-widgets.el (allout-widgets-tally):
25727 Initialize allout-widgets-tally as a hash table rather than nil to
25728 prevent mode-line redisplay warnings. Also, clarify the module
25729 description and fix a comment typo.
25730
25731 2011-03-11 Juanma Barranquero <lekktu@gmail.com>
25732
25733 * help-fns.el (describe-variable): Don't complete keywords.
25734 Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
25735
25736 2011-03-10 Chong Yidong <cyd@stupidchicken.com>
25737
25738 * emacs-lisp/package.el (package-version-join): Impose a standard
25739 string representation for pre/alpha/beta version lists.
25740 (package-unpack-single): Standardize the directory name by passing
25741 it through package-version-join.
25742 (package-strip-rcs-id): Accept any version string that does not
25743 signal an error in version-to-list.
25744
25745 2011-03-10 Michael Albinus <michael.albinus@gmx.de>
25746
25747 * simple.el (delete-trailing-whitespace): Return nil for the
25748 benefit of `write-file-functions'.
25749
25750 2011-03-10 Glenn Morris <rgm@gnu.org>
25751
25752 * vc/vc-hg.el (vc-hg-pull, vc-hg-merge-branch): Use vc-hg-program.
25753
25754 * vc/vc-git.el (vc-git-program): New option.
25755 (vc-git-branches, vc-git-pull, vc-git-merge-branch, vc-git-command)
25756 (vc-git--call): Use it.
25757
25758 * eshell/esh-util.el (eshell-condition-case): Doc fix.
25759
25760 * cus-edit.el (Custom-newline): If no button at point, look
25761 for a subgroup button at start-of-line. (Bug#2298)
25762
25763 * mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
25764
25765 2011-03-10 Julien Danjou <julien@danjou.info>
25766
25767 * avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if
25768 `cursor-type' is nil.
25769
25770 2011-03-09 Jay Belanger <jay.p.belanger@gmail.com>
25771
25772 * calc/calc.el (calc-mode-map): Don't bind "C-_" to `calc-missing-key'.
25773
25774 2011-03-09 Ken Manheimer <ken.manheimer@gmail.com>
25775
25776 * allout.el: Change so yank of distinctive-bullet items
25777 preserves the existing header prefix, rebulleting it if necessary,
25778 rather than replacing it. This is necessary for proper operation
25779 of cooperative addons like allout-widgets.
25780 (allout-make-topic-prefix, allout-rebullet-heading):
25781 Change SOLICIT arg to INSTEAD, and interpret additionally a string
25782 value as alternate bullet to be used, instead of prompting the user
25783 for a bullet character.
25784
25785 2011-03-09 Michael Albinus <michael.albinus@gmx.de>
25786
25787 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
25788 Do not use `tramp-file-name-port', because this returns also
25789 `tramp-default-port'.
25790
25791 2011-03-09 Deniz Dogan <deniz.a.m.dogan@gmail.com>
25792
25793 * net/rcirc.el (rcirc-handler-001): Remove useless
25794 with-rcirc-process-buffer.
25795 (rcirc-check-auth-status): Swap arguments to string-match.
25796
25797 2011-03-09 Glenn Morris <rgm@gnu.org>
25798
25799 * shell.el (shell-mode):
25800 Set comint-input-ring-size from HISTSIZE. (Bug#7889)
25801
25802 * progmodes/gdb-mi.el (gdb): Improve 2010-12-08 change.
25803 Check for GDBHISTFILE, HISTSIZE, etc. (Bug#7889)
25804
25805 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
25806
25807 * emacs-lisp/package.el (package-refresh-contents)
25808 (package-menu-execute): Use condition-case-no-debug.
25809
25810 2011-03-08 Michael Albinus <michael.albinus@gmx.de>
25811
25812 * simple.el (shell-command-to-string): Use `process-file'.
25813
25814 * emacs-lisp/package.el (package-tar-file-info): Handle also
25815 remote files.
25816
25817 * emacs-lisp/package-x.el (package-upload-buffer-internal):
25818 Use `equal' for upload base check.
25819
25820 2011-03-08 Arni Magnusson <arnima@hafro.is> (tiny change)
25821
25822 * textmodes/texinfo.el (texinfo-environments):
25823 Add deftypecv, deftypeivar, deftypemethod, deftypeop, html. (Bug#2783)
25824
25825 2011-03-08 Glenn Morris <rgm@gnu.org>
25826
25827 * cus-start.el (cursor-in-non-selected-windows):
25828 Fix :set quoting oddness. (Bug#8192)
25829
25830 * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
25831 in some setf expressions. (Bug#2159)
25832
25833 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
25834
25835 * custom.el (custom-available-themes): Return themes in
25836 alphabetical order.
25837
25838 See ChangeLog.15 for earlier changes.
25839
25840 ;; Local Variables:
25841 ;; coding: utf-8
25842 ;; End:
25843
25844 Copyright (C) 2011-2013 Free Software Foundation, Inc.
25845
25846 This file is part of GNU Emacs.
25847
25848 GNU Emacs is free software: you can redistribute it and/or modify
25849 it under the terms of the GNU General Public License as published by
25850 the Free Software Foundation, either version 3 of the License, or
25851 (at your option) any later version.
25852
25853 GNU Emacs is distributed in the hope that it will be useful,
25854 but WITHOUT ANY WARRANTY; without even the implied warranty of
25855 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25856 GNU General Public License for more details.
25857
25858 You should have received a copy of the GNU General Public License
25859 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.