* lisp/files.el (basic-save-buffer): Move check for existing parent directory
[bpt/emacs.git] / lisp / ChangeLog
1 2013-02-21 Glenn Morris <rgm@gnu.org>
2
3 * files.el (basic-save-buffer): Move check for existing parent
4 directory after hooks. (Bug#13773)
5
6 2013-02-20 Stefan Monnier <monnier@iro.umontreal.ca>
7
8 * simple.el (command-execute): Move from C. Add obsolete check.
9 (extended-command-history): Move from C.
10
11 2013-02-20 Ulrich Müller <ulm@gentoo.org>
12
13 * jka-cmpr-hook.el (jka-compr-compression-info-list)
14 (jka-compr-mode-alist-additions): Handle .txz suffix for
15 XZ-compressed tar archives (bug#13770).
16
17 2013-02-20 Bastien Guerry <bzg@gnu.org>
18
19 * outline.el (outline-regexp, outline-heading-end-regexp):
20 Make variables, not options (bug#13731).
21
22 2013-02-20 Glenn Morris <rgm@gnu.org>
23
24 * image.el (image-current-frame): Change from variable to function.
25 (image-show-frame): Rename from image-nth-frame. Update callers.
26 * image-mode.el (image-multi-frame): New variable.
27 (image-mode-map, image-mode, image-goto-frame):
28 Use image-multi-frame rather than image-current-frame.
29 (image-mode, image-goto-frame): Use image-current-frame as
30 function rather than as variable.
31
32 * emacs-lisp/cl-lib.el (cl-floatp-safe): Make it an alias for floatp.
33 * emacs-lisp/cl-macs.el (cl--make-type-test)
34 (cl--compiler-macro-assoc): Use floatp rather than cl-floatp-safe.
35
36 2013-02-19 Michael Albinus <michael.albinus@gmx.de>
37
38 * net/tramp-cache.el (tramp-get-hash-table): New defun.
39 (tramp-get-file-property, tramp-set-file-property)
40 (tramp-get-connection-property, tramp-set-connection-property): Use it.
41 (tramp-flush-file-property, tramp-flush-directory-property):
42 Rename argument to KEY.
43 (tramp-flush-connection-property): Simplify a little bit.
44 (tramp-connection-property-p): New defun.
45 (top): Reapply saved values only if there isn't a corresponding
46 entry in `tramp-connection-properties'.
47
48 2013-02-19 Fabián Ezequiel Gallina <fgallina@cuca>
49
50 * progmodes/python.el (python-indent-context):
51 Fix python-info-line-ends-backslash-p call.
52 (python-info-line-ends-backslash-p)
53 (python-info-beginning-of-backslash): Respect line-number argument.
54 (python-info-current-line-comment-p):
55 Fix behavior when not at beginning-of-line.
56 (python-util-position): Remove function.
57 (python-util-goto-line): New function.
58
59 2013-02-19 Michael Albinus <michael.albinus@gmx.de>
60
61 * eshell/em-unix.el (eshell/su): Require tramp.
62 (eshell/sudo): Require tramp. Remove now unnecessary check.
63
64 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Let-bind
65 `tramp-current-connection' in order to avoid an error when several
66 commands are invoked in a short time in eshell and friends.
67
68 2013-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
69
70 Cleanup some of EIEIO's namespace.
71 * emacs-lisp/eieio.el (eieio--define-field-accessors): New macro.
72 Use it to define all the class-* and object-* field accessors (renamed
73 to eieio--class-* and eieio--object-*). Update all uses.
74 (eieio--class-num-slots, eieio--object-num-slots): Rename from
75 class-num-slots and object-num-slots.
76 (eieio--check-type): New macro.
77 (eieio-defclass, eieio-oref, eieio-oref-default, same-class-p)
78 (object-of-class-p, child-of-class-p, object-slots, class-slot-initarg)
79 (eieio-oset, eieio-oset-default, object-assoc, object-assoc-list)
80 (object-assoc-list-safe): Use it.
81 (eieio-defclass): Tighten regexp.
82 (eieio--defmethod): Use `memq'. Signal an error for unknown method kind.
83 Remove unreachable code.
84 (object-class-fast): Declare obsolete.
85 (eieio-class-name, eieio-object-name, eieio-object-set-name-string)
86 (eieio-object-class, eieio-object-class-name, eieio-class-parents)
87 (eieio-class-children, eieio-class-precedence-list, eieio-class-parent):
88 Rename from class-name, object-name, object-set-name-string,
89 object-class, object-class-name, class-parents, class-children,
90 class-precedence-list, class-parent; with obsolete alias.
91 (class-of, class-direct-superclasses, class-direct-subclasses):
92 Declare obsolete.
93 (eieio-defmethod): Use `memq'; remove unreachable code.
94 * emacs-lisp/eieio-base.el (eieio-persistent-read):
95 * emacs-lisp/eieio-opt.el (eieio-class-button, eieio-describe-generic)
96 (eieio-browse-tree, eieio-browse): Use eieio--check-type.
97
98
99 2013-02-18 Michael Heerdegen <michael_heerdegen@web.de>
100
101 * emacs-lisp/eldoc.el (eldoc-highlight-function-argument):
102 Use font-lock-keyword-face for macros and special forms (bug#8345).
103
104 2013-02-17 Didier Verna <didier@didierverna.net>
105
106 * net/network-stream.el (network-stream-open-starttls):
107 Check that response to the starttls-command is non-nil. (Bug#13706)
108
109 2013-02-17 Stefan Monnier <monnier@iro.umontreal.ca>
110
111 * font-lock.el (lisp-font-lock-keywords-1, lisp-font-lock-keywords-2):
112 Don't assume all identifier chars have syntax word.
113 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
114 Remove bar-not-symbol. Adjust callers.
115 (lisp-mode-variables): Don't set a font-lock-syntax-table.
116
117 2013-02-17 Leo Liu <sdl.web@gmail.com>
118
119 * net/rcirc.el (rcirc-keepalive): Fix invalid timer error.
120
121 2013-02-17 Glenn Morris <rgm@gnu.org>
122
123 * menu-bar.el (menu-bar-tools-menu): Fix case of EDE entry.
124
125 * image-mode.el (image-mode-map): Add image-dired menu entry.
126
127 * image-dired.el (tumme): Make this alias obsolete.
128
129 2013-02-16 Glenn Morris <rgm@gnu.org>
130
131 * image.el (image-animated-types): Remove.
132 (image-multi-frame-p): Rename from image-animated-p, and generalize.
133 (image-animated-p): Make obsolete alias.
134 (image-animate, image-nth-frame, image-animate-timeout):
135 Use image-multi-frame-p.
136 (image-animate-timeout): If no delay, use image-default-frame-delay.
137 * image-mode.el (image-mode, image-toggle-animation):
138 Use image-multi-frame-p. (Bug#763, bug#10739)
139 (image-mode): Adjust startup message for a multi-frame image.
140
141 * image-mode.el (image-mode-map): Give it a menu.
142
143 2013-02-16 Michael Albinus <michael.albinus@gmx.de>
144
145 * net/tramp-cache.el (tramp-connection-properties): New customer
146 option.
147 (tramp-get-connection-property): Use it.
148
149 * net/tramp-compat.el (top): Require 'trampver.
150
151 * net/tramp-sh.el (tramp-remote-process-environment):
152 Set tramp-autoload cookie.
153
154 2013-02-16 Kevin Ryde <user42@zip.com.au>
155
156 * info-look.el (info-lookup-select-mode): If major-mode has no
157 info-lookup-alist entry then search up derived-mode-parent (bug#8660).
158
159 2013-02-16 Jambunathan K <kjambunathan@gmail.com>
160
161 * replace.el (read-regexp): Tighten the regexp that matches tag.
162 When tag is retrieved with `find-tag-default', use regexp that
163 matches tag at point. Also update docstring (Bug#13687).
164
165 2013-02-16 Eli Zaretskii <eliz@gnu.org>
166
167 * autorevert.el (auto-revert-notify-add-watch): With 'w32notify',
168 add watch for the file, not its parent directory, since w32notify
169 sets up the watch for the directory internally. (Bug#13725)
170
171 2013-02-16 Glenn Morris <rgm@gnu.org>
172
173 * image.el (image-default-frame-delay): New variable.
174 (image-animated-p): Use image-default-frame-delay.
175 (image-minimum-frame-delay): New constant.
176 (image-animate-timeout): Use image-minimum-frame-delay.
177
178 * image.el (image-nth-frame): New, split from image-animate-timeout.
179 (image-animate-timeout): Use image-nth-frame.
180 * image-mode.el (image-goto-frame, image-next-frame)
181 (image-previous-frame): New commands.
182 (image-mode-map): Add new frame commands.
183
184 2013-02-16 Jonas Bernoulli <jonas@bernoul.li>
185
186 * emacs-lisp/tabulated-list.el (tabulated-list-print-col):
187 If col-desc already has help-echo, use it. (Bug#13563)
188
189 2013-02-16 Glenn Morris <rgm@gnu.org>
190
191 * image.el (image-current-frame): New variable.
192 (image-animate-timeout): Set image-current-frame.
193 * image-mode.el (image-mode): For animated images,
194 display a frame counter via mode-line-process.
195
196 * font-lock.el (lisp-font-lock-keywords-1): Add defvar-local.
197
198 2013-02-15 Stefan Monnier <monnier@iro.umontreal.ca>
199
200 * simple.el (eval-expression): Let `exp' set the mark (bug#13724).
201
202 2013-02-15 Alan Mackenzie <acm@muc.de>
203
204 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode): When a
205 global minor mode has been enabled, call the minor mode function
206 for a new buffer once only, after the major mode hook, whilst
207 allowing that hook explicitly to disable the minor mode.
208 (MODE-disable-in-buffer): New (generated) function.
209 (disable-MODE): New (generated) buffer local variable.
210
211 2013-02-15 Jambunathan K <kjambunathan@gmail.com>
212
213 * iswitchb.el (iswitchb-read-buffer): Bind `C-.' and `C-,' to
214 `iswitchb-next-match' and `iswitchb-prev-match' resply.
215 * ido.el (ido-init-completion-maps): Bind `C-.' and `C-,' to
216 `ido-next-match' and `ido-prev-match' resply.
217 * icomplete.el (icomplete-minibuffer-map): Unbind `C-s' and `C-r'.
218 Bind `C-.' and `C-,' to `icomplete-forward-completions' and
219 `icomplete-backward-completions' (Bug#13708).
220
221 2013-02-15 Glenn Morris <rgm@gnu.org>
222
223 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
224
225 2013-02-15 Stefan Monnier <monnier@iro.umontreal.ca>
226
227 * net/goto-addr.el (goto-address-fontify): Add start and end args.
228 (goto-address-fontify-region): Use them instead of narrowing, so
229 syntax-ppss has access to the whole buffer.
230
231 2013-02-15 Fabián Ezequiel Gallina <fgallina@cuca>
232
233 * progmodes/python.el: Explain how to restore "cc-mode"-like
234 forward-sexp movement in header documentation (Bug#13642).
235 (python-nav--forward-sexp): Behave like emacs-lisp-mode in
236 comments and strings (GH bug 114).
237
238 2013-02-15 Fabián Ezequiel Gallina <fgallina@cuca>
239
240 * progmodes/python.el (python-info-current-defun): Fix current
241 defun detection (Bug#13618).
242
243 2013-02-15 Chong Yidong <cyd@gnu.org>
244
245 * xml.el (xml-parse-string): Fix typo in handling of bad character
246 references.
247
248 2013-02-15 Glenn Morris <rgm@gnu.org>
249
250 * play/fortune.el (fortune-compile): Simplify and fix previous change.
251
252 2013-02-14 Michael Albinus <michael.albinus@gmx.de>
253
254 * net/tramp.el (tramp-debug-message):
255 Add `tramp-condition-case-unless-debug'.
256 (tramp-debug-on-error): New defvar.
257 (tramp-condition-case-unless-debug): New defun.
258 (tramp-file-name-handler): Use it.
259
260 2013-02-14 Juri Linkov <juri@jurta.org>
261
262 * info.el (Info-isearch-filter): Treat non-nil values of
263 `search-invisible' including its default value `open'
264 like the value `t' to match hidden text. (Bug#13402)
265
266 2013-02-14 Glenn Morris <rgm@gnu.org>
267
268 * help-fns.el (find-lisp-object-file-name): Give special treatment
269 to all ~/.foo.elc files, not just ~/.emacs. (Bug#9007)
270
271 2013-02-14 David Biesack <sasdjb@d72933.na.sas.com> (tiny change)
272
273 * net/quickurl.el (quickurl-save-urls):
274 Ensure quickurl-urls is not truncated on printing. (Bug#9276)
275
276 2013-02-14 Dmitry Gutov <dgutov@yandex.ru>
277
278 * progmodes/ruby-mode.el (ruby-parse-partial): Don't increase
279 depth for unfinished percent literal. Not using it in the caller.
280 (ruby-move-to-block): Jump over multiline literals of all types,
281 ignoring code-looking contents inside them.
282 (ruby-add-log-current-method): Improve performance at the expense
283 of accuracy. `ruby-block-contains-point' is relatively slow, so
284 only use it for method and singleton class blocks.
285
286 2013-02-13 Michael Albinus <michael.albinus@gmx.de>
287
288 Use ControlMaster where applicable. (Bug#13677)
289
290 * net/tramp.el (tramp-ssh-controlmaster-template): New defvar,
291 replacing `tramp-detect-ssh-controlmaster'.
292 (tramp-default-method): Use it.
293
294 * net/tramp-sh.el (tramp-methods) [scp, scp1, scp2, scpx, sftp]:
295 [rsync, ssh, ssh1, ssh2, sshx]: Add ControlPath and ControlMaster
296 arguments.
297 [scpc, rsyncc]: Remove methods.
298 (top): Remove completion functions for "scpc", "rsyncc", "ssh1_old"
299 and "ssh2_old".
300 (tramp-do-copy-or-rename-file-out-of-band): Change trace level.
301 (tramp-maybe-open-connection): Reuse tmpfile for ControlPath.
302
303 2013-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
304
305 * emacs-lisp/package.el (package--initialized): Move before first use.
306
307 2013-02-13 Jambunathan K <kjambunathan@gmail.com>
308
309 * icomplete.el (icomplete-hide-common-prefix): New user option.
310 (icomplete-first-match): New face.
311 (icomplete-completions): Correct handling of "complete but not
312 unique" (Bug#12638).
313
314 2013-02-13 YE Qianchuan <stool.ye@gmail.com> (tiny change)
315
316 * descr-text.el (describe-char): Display the script (bug#13698).
317
318 2013-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
319
320 * tmm.el: Use lexical-binding and current-active-maps.
321 (tmm-menubar): Use map-keymap and pcase.
322 (tmm--completion-table): New function.
323 (tmm-prompt): Use it to fix the menu order.
324 (tmm-get-keybind): Use current-active-maps.
325
326 2013-02-12 Christopher Schmidt <christopher@ch.ristopher.com>
327
328 Add dired-hide-details-mode. (Bug#6799)
329
330 * locate.el (locate-mode): Set parent mode property to dired-mode.
331
332 * find-dired.el (find-dired): Call dired-insert-set-properties on
333 initial information line. Set process mark on end of buffer.
334 (find-dired-sentinel):
335 Call dired-insert-set-properties on summary.
336
337 * dired.el (dired-hide-details-hide-symlink-targets)
338 (dired-hide-details-hide-information-lines): New options.
339 (dired-insert-directory):
340 Set properties after final treatment of output.
341 (dired-insert-set-properties):
342 Set dired-hide-details-* properties.
343 (dired-mode-map): Bind dired-hide-details-mode.
344 (dired-mode): Set buffer-invisibility-spec to a list.
345 (dired-next-line): Skip hidden lines.
346 (dired-previous-line): Use dired-next-line.
347 (dired-hide-details-mode): New minor mode.
348 (dired-hide-details-update-invisibility-spec): New function.
349
350 2013-02-13 Glenn Morris <rgm@gnu.org>
351
352 * play/yow.el: Move to obsolete/. (Bug#9384)
353
354 2013-02-13 Juri Linkov <juri@jurta.org>
355
356 * vc/ediff-util.el (ediff-recenter): Use `select-frame-set-input-focus'
357 to select `ediff-control-frame' and set input focus correctly on Xfce.
358 (Bug#12218)
359
360 2013-02-13 Juri Linkov <juri@jurta.org>
361
362 * image-mode.el (image-mode-map):
363 * doc-view.el (doc-view-mode-map):
364 * vc/ediff-util.el (ediff-setup-keymap):
365 Make S-SPC scroll in the opposite sense to SPC. (Bug#2145)
366
367 2013-02-13 Dmitry Gutov <dgutov@yandex.ru>
368
369 * progmodes/ruby-mode.el (ruby-move-to-block): Improve
370 performance. Instead of recalculating indentation fully for each
371 line, sum up indentation depth based only on visited lines.
372 (ruby-parse-partial): Increase the depth after "do" even when END
373 is right after it.
374 (ruby-parse-partial): When END is in the middle of a percent
375 literal, increase the depth if the delimiter chars belong to the
376 paren syntax class.
377
378 2013-02-13 Kirill A. Korinskiy <catap@catap.ru>
379
380 * play/fortune.el (fortune-compile): Also make the compiled file
381 if it does not exist at all, not just if it is old. (Bug#5338)
382
383 2013-02-13 Glenn Morris <rgm@gnu.org>
384
385 * emacs-lisp/package.el (package-menu-execute): Doc fix.
386
387 2013-02-13 Yves Baumes <ybaumes@gmail.com> (tiny change)
388
389 * lisp/emacs-lisp/package.el (package-menu-execute):
390 Add optional noquery argument. (Bug#13625)
391
392 2013-02-13 Michael Albinus <michael.albinus@gmx.de>
393
394 * net/ange-ftp.el (ange-ftp-make-directory): Don't raise an error,
395 if DIR exists and PARENTS is non-nil.
396
397 2013-02-13 Juanma Barranquero <lekktu@gmail.com>
398
399 * progmodes/js.el (js--multi-line-declaration-indentation):
400 Silence byte-compiler warning.
401
402 2013-02-12 Michael Albinus <michael.albinus@gmx.de>
403
404 * net/tramp-adb.el (tramp-adb-handle-start-file-process): Rewrite.
405
406 * net/tramp-compat.el (top): Declare `remote-file-name-inhibit-cache'
407 only if it doesn't exist.
408
409 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
410 Set process marker.
411
412 2013-02-12 Tassilo Horn <tsdh@gnu.org>
413
414 * doc-view.el (doc-view-odf->pdf-converter-soffice): Use separate
415 UserInstallation when calling soffice to work around LibreOffice
416 bug 37531.
417
418 2013-02-12 Glenn Morris <rgm@gnu.org>
419
420 * files.el (basic-save-buffer):
421 Offer to create a non-existing directory. (Bug#3016)
422
423 * calc/calc-graph.el (calc-graph-show-dumb):
424 * calendar/calendar.el (calendar-mode-map):
425 * cus-edit.el (custom-mode-map):
426 * ehelp.el (electric-help-map):
427 * emulation/vip.el (vip-mode-map):
428 * epa.el (epa-key-list-mode-map):
429 * info.el (Info-mode-map):
430 * mail/rmail.el (rmail-mode-map):
431 * mail/rmailsum.el (rmail-summary-mode-map):
432 * man.el (Man-mode-map):
433 * net/newst-plainview.el (newsticker-mode-map):
434 * progmodes/cpp.el (cpp-edit-mode-map):
435 * progmodes/grep.el (grep-mode-map):
436 * progmodes/idlw-help.el (idlwave-help-mode-map):
437 * simple.el (special-mode-map):
438 * startup.el (splash-screen-keymap):
439 * view.el (view-mode-map):
440 Make S-SPC scroll in the opposite sense to SPC. (Bug#2145)
441
442 2013-02-11 Elias Pipping <pipping@lavabit.com>
443
444 * doc-view.el (doc-view-current-cache-dir): Beware % escapes
445 (bug#13679).
446
447 2013-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
448
449 * cus-start.el (all): Remove inhibit-local-menu-bar-menus.
450
451 2013-02-11 Glenn Morris <rgm@gnu.org>
452
453 * vc/diff.el (diff-use-labels): New variable.
454 (diff-no-select): Use --label rather than -L, and first
455 check that it is supported. (Bug#11067)
456
457 * files.el (enable-dir-local-variables): New variable.
458 (hack-dir-local-variables): Respect enable-dir-local-variables.
459 * tutorial.el (help-with-tutorial):
460 Ignore directory-local variables. (Bug#11127)
461
462 * vc/vc-svn.el (vc-svn-command): Move --non-interactive from here...
463 (vc-svn-global-switches): ... to here. (Bug#13513)
464
465 2013-02-10 Christopher Schmidt <christopher@ch.ristopher.com>
466
467 * minibuf-eldef.el (minibuffer-default--in-prompt-regexps):
468 Handle "foo (bar, default: xxx): " prompts.
469
470 2013-02-10 Chong Yidong <cyd@gnu.org>
471
472 * files.el (basic-save-buffer-1): Do not set
473 buffer-file-coding-system-explicit (Bug#4533).
474
475 * mail/emacsbug.el (report-emacs-bug): Change binding of
476 report-emacs-bug-insert-to-mailer to C-c M-i (Bug#13510).
477
478 2013-02-09 Jay Belanger <jay.p.belanger@gmail.com>
479
480 * calc/calc.el (calc-allow-units-as-numbers): New variable.
481 * calc/calc-units.el (calc-convert-units): Use new variable.
482
483 2013-02-09 Eli Zaretskii <eliz@gnu.org>
484
485 * subr.el (buffer-file-type, default-buffer-file-type): Remove.
486
487 * net/ange-ftp.el (ange-ftp-insert-file-contents): Don't reference
488 buffer-file-type.
489
490 * mail/feedmail.el (feedmail-force-binary-write): Doc fix.
491 (feedmail-run-the-queue, feedmail-dump-message-to-queue)
492 (feedmail-send-it-immediately): Don't bind buffer-file-type, bind
493 coding-system-for-write instead.
494
495 * jka-compr.el (jka-compr-write-region): Don't bind
496 buffer-file-type.
497
498 * emacs-lisp/bytecomp.el (byte-compile-file): Don't bind
499 buffer-file-type.
500
501 * files.el (file-name-buffer-file-type-alist): Remove defvar.
502 (insert-file-contents-literally): Remove reference to
503 file-name-buffer-file-type-alist.
504
505 * dos-w32.el (file-name-buffer-file-type-alist): Deprecate and
506 make-obsolete.
507 (find-buffer-file-type-match, find-buffer-file-type): Remove.
508 (find-buffer-file-type-coding-system): Remove references to
509 find-buffer-file-type-match, find-buffer-file-type, and
510 buffer-file-type.
511 Don't put find-buffer-file-type-coding-system into
512 file-coding-system-alist.
513 (find-file-binary, find-file-text): Bind coding-system-for-read
514 instead of file-name-buffer-file-type-alist.
515
516 2013-02-09 Jambunathan K <kjambunathan@gmail.com>
517
518 * doc-view.el: Use (and prefer) soffice as default ODF->PDF
519 converter (Bug#13622).
520 (doc-view-unoconv-program): Make obsolete alias.
521 (doc-view-odf->pdf-converter-program): New variable.
522 (doc-view-odf->pdf-converter-function): New variable.
523 (doc-view-mode-p): Use it.
524 (doc-view-odf->pdf-converter-unoconv):
525 Rename from `doc-view-odf->pdf-converter-unoconv'.
526 (doc-view-odf->pdf-converter-soffice): New function.
527 (doc-view-convert-current-doc):
528 Use `doc-view-odf->pdf-converter-function'.
529
530 2013-02-09 Chong Yidong <cyd@gnu.org>
531
532 * minibuffer.el (minibuffer-inactive-mode-map): Bind mouse-1 to
533 view-echo-area-messages (Bug#13340).
534
535 * help.el (view-echo-area-messages): Use display-buffer.
536
537 * dired-x.el (dired-do-run-mail): Prompt for confirmation
538 (Bug#13561).
539
540 2013-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
541
542 * emacs-lisp/byte-run.el (eval-when-compile, eval-and-compile):
543 Eval body right away, now that we do eager macroexpansion (bug#13605).
544
545 * simple.el (end-of-buffer): Don't touch unrelated windows (bug#13466).
546 (fundamental-mode): Use run-mode-hooks.
547
548 * eshell/esh-proc.el (eshell/kill): Fix last change.
549 * eshell/em-ls.el (eshell-ls-dir): Fix use of CL in last change.
550
551 2013-02-08 Aidan Gauland <aidalgol@no8wireless.co.nz>
552
553 * eshell/esh-proc.el (eshell/kill): Rewrite.
554
555 * eshell/em-ls.el (show-almost-all): Declare.
556 (eshell-do-ls): Add support for -A argument.
557
558 2013-02-08 Jambunathan K <kjambunathan@gmail.com>
559
560 * icomplete.el (icomplete-forward-completions)
561 (icomplete-backward-completions): Handle corner case (bug#13602).
562
563 2013-02-07 Michael Albinus <michael.albinus@gmx.de>
564
565 * vc/vc-hooks.el (vc-find-file-hook): `buffer-file-truename' can
566 be nil. Handle this. (Bug#13636)
567
568 2013-02-07 Richard Stallman <rms@gnu.org>
569
570 * mail/rmail.el (rmail-variables): Specify `no-conversion' for
571 `save-buffer-coding-system'.
572
573 2013-02-07 Alan Mackenzie <acm@muc.de>
574
575 Fix bug in state cache mechanism. Remove 'BOD "strategy". Refactor.
576 * progmodes/cc-engine.el (c-get-fallback-scan-pos): Remove.
577 (c-parse-state-get-strategy): Don't return 'BOD any more.
578 (c-append-lower-brace-pair-to-state-cache):
579 Extra parameter HERE instead of narrowing.
580 Widen to top of buffer before searching backwards for a brace pair.
581 (c-state-push-any-brace-pair): Add HERE parameter to function call.
582 (c-append-to-state-cache): Extra parameter HERE in place of narrowing.
583 Narrow to parameter HERE, in place of being called narrowed.
584 (c-remove-stale-state-cache): Extra parameter HERE in place of
585 narrowing. Check there's an open brace in the cache before
586 searching for its match.
587 (c-invalidate-state-cache-1): Add HERE parameter to function call.
588 (c-parse-state-1): Don't narrow here for 'forward strategy,
589 instead passing extra parameter HERE to several functions.
590 Remove 'BOD strategy.
591
592 2013-02-06 Nicolas Richard <theonewiththeevillook@yahoo.fr> (tiny change)
593
594 * emacs-lisp/package.el (describe-package-1): Tell what archive is
595 used to install the package.
596
597 2013-02-06 Glenn Morris <rgm@gnu.org>
598
599 * vc/vc-hooks.el (vc-find-file-hook): Don't ask about following links
600 if we can't get user input. (Bug#6567)
601
602 * startup.el (command-line): If simple.el is missing,
603 test and warn about for some possible causes.
604
605 2013-02-05 Jan Djärv <jan.h.d@swipnet.se>
606
607 * cus-start.el (all): Add ns-use-native-fullscreen.
608
609 2013-02-05 Glenn Morris <rgm@gnu.org>
610
611 * profiler.el (profiler-report-mode-map): Add a restart menu entry.
612
613 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
614 Fix directory creation in fallback case.
615
616 2013-02-04 Thierry Volpiatto <thierry.volpiatto@gmail.com>
617
618 * vc/vc.el (vc-next-action): Fix inf-loop (bug#13610).
619 (vc-update-change-log): Use dolist.
620
621 2013-02-04 Chong Yidong <cyd@gnu.org>
622
623 * thingatpt.el: Rewrite the URL detection routines, absorbing some
624 code from ffap.el.
625 (thing-at-point-beginning-of-url-regexp): New var.
626 (thing-at-point-uri-schemes): Update list of URI schemes.
627 (thing-at-point-url-regexp): Variable deleted.
628 (thing-at-point-markedup-url-regexp): Disallow newlines.
629 (thing-at-point-newsgroup-regexp)
630 (thing-at-point-newsgroup-heads)
631 (thing-at-point-default-mail-uri-scheme): New variables.
632 (thing-at-point-bounds-of-url-at-point): Rewrite. Use ffap's
633 method to find the possible bounds of the URI at point.
634 New optional argument to find ill-formed URIs.
635 (thing-at-point-url-at-point): Rewrite. New arguments for finding
636 ill-formed URIs. Use thing-at-point-bounds-of-url-at-point, and
637 the scheme-adding heuristics from ffap-url-at-point.
638 (thing-at-point--bounds-of-well-formed-url): New function.
639 Do parens matching to decide whether to include parens in the URI
640 (Bug#9153).
641
642 * ffap.el: Require thingatpt.
643 (ffap-url-at-point): Delegate URI detection to thing-at-point.
644 All URI-valid characters are now recognized (Bug#5673).
645 (ffap-string-at-point): Use use-region-p.
646 (ffap-url-regexp): Extra character is handled by thing-at-point.
647 (ffap-string-at-point-mode-alist): Allow parentheses.
648 (ffap-newsgroup-regexp, ffap-newsgroup-heads, ffap-newsgroup-p):
649 Convert to aliases; code moved to thingatpt.el.
650 (ffap-gnus-hook): Use setq-local.
651
652 2013-02-04 Glenn Morris <rgm@gnu.org>
653
654 * emacs-lisp/ert.el (ert--explain-format-atom):
655 Don't try to print non-characters as characters. (Bug#13543)
656
657 2013-02-03 Michael Albinus <michael.albinus@gmx.de>
658
659 * net/tramp.el (tramp-debug-message): Extend function exclude list.
660 (tramp-backtrace): New defun.
661 (tramp-handle-insert-file-contents): Use `visit' when inserting
662 the local copy.
663
664 * net/tramp-sh.el (tramp-sh-handle-set-visited-file-modtime):
665 Use `remote-file-name-inhibit-cache'.
666
667 2013-02-03 Stefan Monnier <monnier@iro.umontreal.ca>
668
669 * progmodes/cperl-mode.el (cperl-mode): Avoid byte-compile warning
670 (bug#13614).
671
672 * subr.el (internal--called-interactively-p--get-frame): Avoid filling
673 current-load-list (bug#13366).
674
675 2013-02-02 Christopher Schmidt <christopher@ch.ristopher.com>
676
677 * progmodes/compile.el (compilation-error-regexp-alist-alist):
678 Identify g++ template instantiation trace. (Bug#12287)
679 (compilation-mode-hook, compilation-start-hook)
680 (compilation-window-height): Simplify docstrings. (Bug#13379)
681
682 2013-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
683
684 * mouse.el (mouse-drag-track): Always deactivate the mark before
685 running the final event's command since that command is in charge of
686 activating the mark if needed (bug#13523).
687
688 2013-02-02 Juri Linkov <juri@jurta.org>
689
690 * replace.el (perform-replace): Move let-bindings of isearch-*
691 variables deeper to the loop that searches for the next match.
692 Add bindings for `isearch-nonincremental' and `isearch-adjusted'.
693 Use `isearch-search-fun-default' instead of `isearch-search-fun'.
694 (Bug#13579)
695
696 * isearch.el (isearch-search-fun-default): Check for null
697 first element of isearch-cmds as a precaution when it's used
698 with inactive isearch.
699
700 2013-02-02 Andrew W. Nosenko <andrew.w.nosenko@gmail.com> (tiny change)
701
702 * net/tramp.el (tramp-check-for-regexp): Avoid "Args out of range"
703 error when buffer in question is narrowed so position 1 is out of
704 visible part.
705
706 2013-02-02 Glenn Morris <rgm@gnu.org>
707
708 * textmodes/remember.el (remember-clipboard): Doc fix.
709
710 2013-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
711
712 * progmodes/make-mode.el (makefile-fill-paragraph): Reset syntax-table
713 properties (bug#13179).
714
715 2013-02-02 Juri Linkov <juri@jurta.org>
716
717 * progmodes/grep.el (grep-regexp-alist): Use variable grep-match-face
718 instead of hard-coded default face `match'. (Bug#9438)
719
720 2012-02-01 Christopher Schmidt <christopher@ch.ristopher.com>
721
722 * vc/vc-arch.el (vc-arch-registered):
723 * vc/vc-bzr.el (vc-bzr-registered):
724 * vc/vc-cvs.el (vc-cvs-registered):
725 * vc/vc-git.el (vc-git-registered):
726 * vc/vc-hg.el (vc-hg-registered):
727 * vc/vc-mtn.el (vc-mtn-registered):
728 * vc/vc-svn.el (vc-svn-registered): Suppress load messages.
729 (Bug#13139)
730
731 * info.el (Info-next-reference, Info-prev-reference): Add numeric
732 prefix argument. (Bug#11656)
733
734 2013-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
735
736 * help-fns.el (help-split-fundoc): Don't insert byte-compiled body.
737
738 2013-02-01 Glenn Morris <rgm@gnu.org>
739
740 * vc/vc-hooks.el (vc-menu-map): Disable vc-rollback menu item
741 if the backend is known not to support it.
742
743 * imenu.el (imenu-default-create-index-function):
744 Tweak infinite loop test to check for forward motion as well as none.
745
746 2013-02-01 Alex Harsanyi <AlexHarsanyi@gmail.com>
747
748 * net/soap-client.el (soap-invoke): Encode the string for
749 `url-request-data' as UTF-8.
750 Fixes <http://code.google.com/p/emacs-soap-client/issues/detail?id=16>.
751
752 2013-02-01 Glenn Morris <rgm@gnu.org>
753
754 * calc/calc-help.el (calc-view-news): Use view-emacs-news.
755
756 * calc/README, calc/README.prev: Rename/merge to etc/CALC-NEWS.
757
758 2013-01-31 Michael Albinus <michael.albinus@gmx.de>
759
760 * net/tramp.el (tramp-tramp-file-p): Comment check for
761 `string-as-unibyte'. The function does not exist on XEmacs, and
762 likely we need another approach.
763
764 * net/tramp-sh.el (tramp-compute-multi-hops): Check, whether
765 `tramp-gw-*' variables are bound.
766
767 2013-01-31 Glenn Morris <rgm@gnu.org>
768
769 * files.el (basic-save-buffer-2): Choose coding system for
770 writing the file before backing it up, to reduce delay between
771 backing up and writing the new version. (Bug#13522)
772
773 2013-01-31 Michal Nazarewicz <mina86@mina86.com>
774
775 * simple.el (cycle-spacing): New command.
776 (just-one-space): Use it.
777
778 2013-01-31 Stefan Monnier <monnier@iro.umontreal.ca>
779
780 * progmodes/opascal.el: Rename from delphi.el. Use lexical-binding.
781 (opascal-newline-always-indents): Remove custom.
782 (opascal-tab, opascal-newline): Remove commands.
783 (opascal-new-comment-line): Insert "\n" instead of calling newline.
784 (opascal-mode-map): Keep default bindings for RET and TAB and DEL.
785 (opascal-save-match-data): Remove, use save-match-data instead.
786 (opascal-save-state): Use with-silent-modifications.
787
788 * progmodes/pascal.el (pascal-mode-syntax-table): Accept //..\n comments
789 (bug#13585).
790
791 2013-01-30 Juri Linkov <juri@jurta.org>
792
793 * frame.el (toggle-frame-maximized, toggle-frame-fullscreen):
794 Use fullboth as an alias for fullscreen. Suggested by Jan Djärv in
795 <http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00203.html>.
796
797 2013-01-30 Stefan Monnier <monnier@iro.umontreal.ca>
798
799 * progmodes/make-mode.el (makefile-backslash-region): Don't compute
800 column if we're just deleting the backslashes.
801 (makefile-fill-paragraph): Use eolp.
802
803 2013-01-30 Michael Albinus <michael.albinus@gmx.de>
804
805 * autorevert.el (auto-revert-use-notify): Fix docstring.
806
807 2013-01-30 Leo Liu <sdl.web@gmail.com>
808
809 * imenu.el (imenu--truncate-items): Fix subalist checking (bug#13576).
810
811 2013-01-30 Glenn Morris <rgm@gnu.org>
812
813 * mouse.el (mouse-drag-line): Avoid pushing same event onto
814 unread-command-events twice in some cases. This tries to implement
815 the 2012-07-26 changes in a different way. (Bug#13560)
816
817 2013-01-30 Fabián Ezequiel Gallina <fgallina@cuca>
818
819 * progmodes/python.el
820 (python-pdbtrack-comint-output-filter-function): Enhancements on
821 stacktrace detection. (thanks @gnovak)
822
823 2013-01-30 Stefan Monnier <monnier@iro.umontreal.ca>
824
825 * jit-lock.el (jit-lock-stealth-chunk-start): Don't widen (bug#13542).
826 (jit-lock-mode, jit-lock-functions, jit-lock-context-unfontify-pos):
827 Use defvar-local.
828 (jit-lock-register): Use setq-local.
829
830 2013-01-30 Jay Belanger <jay.p.belanger@gmail.com>
831
832 * calc-units.el (math-default-units-table): Remove initial value.
833 (calc-convert-units): Treat expressions where all the units cancel as
834 if they didn't have units.
835
836 2013-01-30 Michael Albinus <michael.albinus@gmx.de>
837
838 * net/tramp.el (tramp-process-connection-type): Fix docstring.
839 (tramp-completion-reread-directory-timeout): Fix type.
840 (tramp-connection-min-time-diff): New defcustom.
841
842 * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
843
844 2013-01-30 Glenn Morris <rgm@gnu.org>
845
846 * imenu.el (imenu-default-create-index-function):
847 Put back a version of the infinite loop test removed 2013-01-23.
848
849 2013-01-30 Fabián Ezequiel Gallina <fgallina@cuca>
850
851 * progmodes/python.el (python-shell-parse-command):
852 Find python-shell-interpreter with modified environment.
853
854 2013-01-30 Stefan Monnier <monnier@iro.umontreal.ca>
855
856 * emacs-lisp/cl.el (cl-set-getf): Add compatibility alias.
857
858 2013-01-29 Alan Mackenzie <acm@muc.de>
859
860 Amend to fontify /regexp/s in actions correctly.
861 * cc-awk.el (c-awk-harmless-char-re, c-awk-harmless-string*-re):
862 (c-awk-harmless-string*-here-re): Braces, parens and semicolons
863 are no longer included.
864 (c-awk-harmless-line-char-re, c-awk-harmless-line-string*-re):
865 What used to be these variables without "-line" in the name.
866 (c-awk-neutral-re): { is no longer neutral. Escaped newlines now are.
867 (c-awk-non-arith-op-bra-re): Now also matches {.
868 (c-awk-pre-exp-alphanum-kwd-re): New regexp to match "print",
869 "return", and "case".
870 (c-awk-kwd-regexp-sign-re): New, to match "print", etc., followed
871 by /.
872 (c-awk-syntax-tablify-/): Check special cases "print /re/", etc.
873 (c-awk-set-syntax-table-properties): Extend FSM to handle {,},(,),;.
874
875 2013-01-29 Michael Albinus <michael.albinus@gmx.de>
876
877 * autorevert.el (auto-revert-use-notify):
878 Use `custom-initialize-default' for initialization. (Bug#13583)
879
880 * net/ange-ftp.el (ange-ftp-skip-msgs): Add another message.
881
882 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
883 Catch `suppress'. Otherwise, `tramp-run-real-handler' might be called
884 in `tramp-file-name-handler'.
885 (tramp-gw-tunnel-method, tramp-gw-socks-method): Declare for
886 compatibility.
887 (tramp-compute-multi-hops): Check, whether
888 `tramp-gw-tunnel-method' and `tramp-gw-socks-method' are non-nil.
889
890 2013-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
891
892 * hi-lock.el (hi-lock-unface-buffer): Don't assume `face' is a symbol
893 (bug#13297).
894
895 2013-01-27 Dmitry Gutov <dgutov@yandex.ru>
896
897 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Remove some
898 checks made superfluous by the \_< operator.
899 * progmodes/ruby-mode.el (ruby-move-to-block): Work with (maybe
900 temporarily) broken indentation.
901 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
902 Highlight nested constants, too. \_< broke that.
903
904 2013-01-27 Nobuyoshi Nakada <nobu@ruby-lang.org>
905
906 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Use "\\_<"
907 instead of "\\b".
908
909 2013-01-27 Michael Albinus <michael.albinus@gmx.de>
910
911 * autorevert.el (auto-revert-handler): Notifications which result
912 from a saved file shall not be taken into account. (Bug#13557)
913
914 2013-01-26 Andreas Schwab <schwab@linux-m68k.org>
915
916 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Add optional
917 parameter BAR-NOT-SYMBOL to control syntax of | for font-lock.
918 (lisp-mode): Pass t for it. (Bug#13556)
919
920 2013-01-25 Alan Mackenzie <acm@muc.de>
921
922 AWK Mode: Fix indentation bug at top level. Bug #12274.
923
924 * progmodes/cc-engine.el (c-guess-basic-syntax): Move CASE 5P to
925 just before CASE 5D.
926
927 2013-01-25 Dmitry Antipov <dmantipov@yandex.ru>
928
929 * net/socks.el (socks-nslookup-host): Use string-to-number.
930
931 2013-01-25 Michael Albinus <michael.albinus@gmx.de>
932
933 * autorevert.el (auto-revert-remote-files)
934 (auto-revert-notify-exclude-dir-regexp): New defcustoms.
935 (auto-revert-notify-enabled, auto-revert-use-notify)
936 (auto-revert-notify-watch-descriptor-hash-list)
937 (auto-revert-notify-modified-p, auto-revert-notify-event-p)
938 (auto-revert-notify-event-descriptor)
939 (auto-revert-notify-event-action)
940 (auto-revert-notify-event-file-name): Doc fix.
941 (global-auto-revert-mode): Reorder checks.
942 (auto-revert-notify-rm-watch): Respect changed values of
943 `auto-revert-notify-watch-descriptor-hash-list'.
944 (auto-revert-notify-add-watch): Check for
945 `auto-revert-notify-exclude-dir-regexp'. Adapt filters for
946 `inotify-add-watch'. Watch `default-directory' instead of
947 `buffer-file-name'. `auto-revert-notify-watch-descriptor-hash-list'
948 has a changed meaning now. (Bug#13540)
949 (auto-revert-notify-handler): Change implementation wrt events
950 returning from a directory.
951 (auto-revert-handler): Reorder implementation for checks of remote
952 files.
953 (auto-revert-buffers): Fix parentheses error.
954
955 2013-01-25 Fabián Ezequiel Gallina <fgallina@cuca>
956
957 * progmodes/python.el: Enhancements to header documentation about
958 skeletons. (Bug#5716)
959
960 * imenu.el (imenu-default-create-index-function): Remove useless
961 infinite loop check. (Bug#13438)
962
963 2013-01-25 Alan Mackenzie <acm@muc.de>
964
965 Fix a bug in the state cache mechanism. Refactor this a bit.
966
967 * progmodes/cc-engine.el (c-parse-state-get-strategy): Remove the
968 `cache-pos' element from the return value.
969 (c-append-lower-brace-pair-to-state-cache): "Narrow" to end of
970 buffer to enable proper searching from beyond HERE. Amend the
971 test for detecting the sought brace pair. Amend the value written
972 to the "brace desert cache" when the brace isn't found.
973 (c-remove-stale-state-cache): Rename `good-pos' to `start-point',
974 and several other variables analogously.
975 (c-remove-stale-state-cache-backwards): Change `cache-pos' from a
976 parameter to a locally calculated variable.
977 (c-parse-state-1): Change the calling conventions to the two
978 defuns involving `cache-pos'.
979
980 2013-01-25 Chong Yidong <cyd@gnu.org>
981
982 * xml.el (xml-entity-or-char-ref-re): Fix regexp.
983
984 2013-01-24 Aaron Ecay <aaronecay@gmail.com> (tiny change)
985
986 * paren.el (show-paren-function): Make sure to set 'priority and
987 'face only if the overlay does exist.
988
989 2013-01-24 Michael Albinus <michael.albinus@gmx.de>
990
991 * net/tramp.el (tramp-tramp-file-p): Check, whether NAME is unibyte.
992
993 * net/tramp-sh.el (tramp-sh-handle-set-file-acl): Do not suppress
994 basic attributes.
995 (tramp-sh-handle-set-file-acl): Improve error checking.
996
997 2013-01-24 Dmitry Antipov <dmantipov@yandex.ru>
998
999 * doc-view.el (doc-view-display): Force mode line update until all
1000 document is converted. Suggested by Stefan Monnier (Bug#13164).
1001
1002 2013-01-23 Bastien Guerry <bzg@gnu.org>
1003
1004 * paren.el (show-paren-function): Make sure an overlay exists
1005 before trying to delete it. Also use `pos' as a position only
1006 when it is an integer.
1007
1008 2013-01-23 Dmitry Antipov <dmantipov@yandex.ru>
1009
1010 * play/gametree.el (gametree-break-line-here): Use point-marker.
1011
1012 2013-01-22 Michael Albinus <michael.albinus@gmx.de>
1013
1014 * net/tramp-cmds.el (tramp-bug, tramp-append-tramp-buffers):
1015 Mark descriptive parts with `display' property.
1016
1017 2013-01-21 Agustín Martín Domingo <agustin.martin@hispalinux.es>
1018
1019 * textmodes/ispell.el (ispell-hunspell-dictionary-equivs-alist):
1020 New variable to map standard dict names to hunspell ones.
1021 (ispell-set-spellchecker-params): Make sure specific dict names
1022 are used for standard dicts with hunspell.
1023
1024 2013-01-21 Tassilo Horn <tsdh@gnu.org>
1025
1026 * textmodes/reftex-cite.el (reftex-format-citation): Add format
1027 chars for note (%N) and url (%U).
1028 * textmodes/reftex-vars.el (reftex-cite-format): Document them.
1029
1030 2013-01-21 Juri Linkov <juri@jurta.org>
1031
1032 * frame.el: Bind `f10' in `esc-map' to `toggle-frame-maximized'
1033 in addition to existing separate binding `meta f10' in `global-map'.
1034 (Bug#13484)
1035
1036 2013-01-21 Michael Albinus <michael.albinus@gmx.de>
1037
1038 Improve XEmacs compatibility.
1039
1040 * net/tramp.el (tramp-replace-environment-variables): Make it a defun.
1041
1042 * net/tramp-adb.el (top): Require `time-date'.
1043 (tramp-adb-ls-output-time-less-p): Use `tramp-time-less-p'.
1044 (tramp-adb-handle-copy-file, tramp-adb-handle-rename-file):
1045 Use `tramp-file-name-handler'.
1046 (tramp-adb-maybe-open-connection):
1047 Use `tramp-compat-set-process-query-on-exit-flag'.
1048
1049 * net/tramp-sh.el (tramp-sh-handle-file-acl):
1050 Use `tramp-compat-funcall'.
1051
1052 * net/tramp-smb.el (tramp-smb-handle-file-acl): Use `looking-at' and
1053 `tramp-compat-funcall'.
1054
1055 2013-01-21 Jürgen Hötzel <juergen@archlinux.org>
1056
1057 * net/tramp-adb.el (tramp-adb-handle-start-file-process): Complete
1058 reimplementation using "adb shell command ..." instead of running
1059 remote shell interactively.
1060
1061 2013-01-20 Glenn Morris <rgm@gnu.org>
1062
1063 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
1064 Add native profiler menu entries.
1065
1066 * profiler.el (profiler-running-p): New function.
1067 (profiler-cpu-profile): Use profiler-running-p.
1068 (profiler-report-mode-map): Add some more menu entries.
1069
1070 2013-01-19 Glenn Morris <rgm@gnu.org>
1071
1072 * mail/unrmail.el (unrmail): Do not mangle the mbox From line;
1073 fixes 2012-12-07 change. (Bug#13499)
1074
1075 2013-01-19 Leo Liu <sdl.web@gmail.com>
1076
1077 * dired.el (dired-get-marked-files): Prune erroneous values due to
1078 last change. (Bug#13152)
1079
1080 2013-01-19 Glenn Morris <rgm@gnu.org>
1081
1082 * progmodes/etags.el (tags-table-check-computed-list):
1083 Preserve point in tags buffer. (Bug#13412)
1084
1085 * emacs-lisp/lisp-mode.el (lisp-indent-function): Doc fix.
1086
1087 2013-01-19 Christian Wittern <cwittern@gmail.com> (tiny change)
1088 Chong Yidong <cyd@gnu.org>
1089
1090 * image-mode.el (image-next-file, image-previous-file):
1091 New commands (Bug#8453).
1092 (image-mode-map): Bind them to n and p.
1093 (image-mode--images-in-directory): New helper function.
1094
1095 2013-01-19 Chong Yidong <cyd@gnu.org>
1096
1097 * image-mode.el (image-mode-fit-frame): Add a frame argument.
1098 Suggested by Drew Adams (Bug#7730). Handle window decorations;
1099 save and restore the old window configuration.
1100
1101 2013-01-18 Leo Liu <sdl.web@gmail.com>
1102
1103 * progmodes/js.el: Tweak autoload cookie for alias.
1104
1105 2013-01-17 Michael Albinus <michael.albinus@gmx.de>
1106
1107 * autorevert.el (auto-revert-notify-watch-descriptor): Make it
1108 buffer local, again. This was lost with the fix on 2013-01-12.
1109
1110 2013-01-17 Jürgen Hötzel <juergen@archlinux.org>
1111
1112 * eshell/esh-util.el (eshell-path-env): Make it buffer local, in
1113 order to support several eshell buffers in parallel.
1114
1115 2013-01-17 Michael Albinus <michael.albinus@gmx.de>
1116
1117 * autorevert.el (auto-revert-use-notify): In the :set function, do
1118 not modify `kill-buffer-hook'.
1119 (auto-revert-notify-rm-watch):
1120 Remove `auto-revert-notify-rm-watch' from `kill-buffer-hook'.
1121 (auto-revert-notify-add-watch): Do not call
1122 `auto-revert-notify-rm-watch', but add it to a buffer local
1123 `kill-buffer-hook'.
1124
1125 2013-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
1126
1127 * emacs-lisp/trace.el (trace--read-args): Use a closure and an honest
1128 call to `eval' rather than a backquoted lambda.
1129
1130 2013-01-15 Stefan Monnier <monnier@iro.umontreal.ca>
1131
1132 * emacs-lisp/nadvice.el (advice--tweak): Make it possible for `tweak'
1133 to return an explicit nil.
1134 (advice--remove-function): Change accordingly.
1135
1136 * emacs-lisp/advice.el (ad-preactivate-advice): Adjust the cleanup to
1137 the use of nadvice.el.
1138
1139 * progmodes/which-func.el (which-function): Silence imenu errors
1140 (bug#13433).
1141
1142 2013-01-15 Michael R. Mauger <mmaug@yahoo.com>
1143
1144 * progmodes/sql.el: (sql-imenu-generic-expression):
1145 (sql-mode-font-lock-object-name): Match schema qualified names.
1146 (sql-connect): Use string keys.
1147 (sql-product-interactive): Wait for interpreter prompt.
1148 (sql-comint-oracle): Set process coding based on NLS_LANG.
1149
1150 2013-01-15 Michael R. Mauger <mmaug@yahoo.com>
1151
1152 * progmodes/sql.el (sql-output-to-send): Remove, unused.
1153 (sql-interactive-remove-continuation-prompt):
1154 (sql-send-magic-terminator, sql-interactive-mode): Remove references.
1155
1156 2013-01-14 Leo Liu <sdl.web@gmail.com>
1157
1158 * calendar/calendar.el (calendar-redraw): Sync window-point and point.
1159 (Bug#13420)
1160
1161 2013-01-14 Glenn Morris <rgm@gnu.org>
1162
1163 * progmodes/compile.el (compilation-error-regexp-alist-alist):
1164 Fix interpretation of gnu line.col1-col2 format. (Bug#13335)
1165
1166 2013-01-13 Fabián Ezequiel Gallina <fgallina@cuca>
1167
1168 * progmodes/python.el (python-nav-end-of-statement):
1169 Fix cornercase when handling multiline strings.
1170
1171 2013-01-13 Richard Stallman <rms@gnu.org>
1172
1173 * mail/sendmail.el (mail-position-on-field): Add doc string.
1174
1175 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
1176 Get current message boundaries and pass them to
1177 message-forward-make-body-mime. Minor style changes.
1178
1179 2013-01-13 Eli Zaretskii <eliz@gnu.org>
1180
1181 * cus-start.el (all): Avoid warnings about
1182 scroll-bar-adjust-thumb-portion on platforms where it is not defined.
1183
1184 2013-01-11 Jan Djärv <jan.h.d@swipnet.se>
1185
1186 * cus-start.el (all): Add scroll-bar-adjust-thumb-portion.
1187
1188 2013-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
1189
1190 * jit-lock.el (jit-lock-debug-mode): New minor mode.
1191 (jit-lock--debug-fontifying): New var.
1192 (jit-lock--debug-fontify): New function.
1193 * subr.el (condition-case-unless-debug): Don't prevent catching the
1194 error, just let the debbugger run.
1195 * emacs-lisp/timer.el (timer-event-handler): Don't prevent debugging
1196 timer code and don't drop errors silently.
1197
1198 2013-01-12 Michael Albinus <michael.albinus@gmx.de>
1199
1200 * autorevert.el (auto-revert-notify-watch-descriptor): Give it
1201 `permanent-local' property.
1202 (auto-revert-notify-handler): Use `file-equal-p'.
1203
1204 2013-01-12 Eli Zaretskii <eliz@gnu.org>
1205
1206 * autorevert.el (auto-revert-notify-handler): Fix filtering of
1207 file notification by ACTION. For filtering by file name, compare
1208 only the non-directory part of the file name.
1209
1210 2013-01-12 Stefan Monnier <monnier@iro.umontreal.ca>
1211
1212 * autorevert.el: Use cl-lib instead of cl.
1213
1214 * vc/vc-bzr.el (vc-bzr--sanitize-header): New function (bug#13307).
1215 (vc-bzr-checkin): Use it.
1216 * vc/log-edit.el (log-edit-extract-headers): Don't presume FUNCTION
1217 will preserve match-data.
1218
1219 2013-01-11 Felix H. Dahlke <fhd@ubercode.de>
1220
1221 * progmodes/js.el: Fix multiline declarations's indentation (bug#8576).
1222 (js--declaration-keyword-re): New var.
1223 (js--multi-line-declaration-indentation): New function.
1224 (js--proper-indentation): Use it.
1225
1226 2013-01-11 Aaron S. Hawley <Aaron.Hawley@vtinfo.com>
1227
1228 * calc/calc.el (calc-highlight-selections-with-faces)
1229 (calc-dispatch):
1230 * comint.el (comint-history-isearch-message):
1231 * emacs-lisp/edebug.el (edebug-read, edebug-eval-defun):
1232 * ffap.el (ffap-string-at-point-region, ffap-next)
1233 (ffap-string-at-point, ffap-string-around)
1234 (ffap-copy-string-as-kill, ffap-highlight-overlay)
1235 (ffap-literally):
1236 * font-lock.el (font-lock-keywords-alist)
1237 (font-lock-removed-keywords-alist):
1238 * help-mode.el (help-xref-symbol-regexp):
1239 * info.el (Info-find-emacs-command-nodes):
1240 * international/mule.el (add-to-coding-system-list):
1241 * isearch.el (isearch-message-function, isearch-fail-pos):
1242 * misearch.el (multi-isearch-next-buffer-function):
1243 * newcomment.el (comment-box):
1244 * printing.el (pr-txt-printer-alist, pr-ps-printer-alist)
1245 (pr-setting-database):
1246 * progmodes/cc-fonts.el (c-font-lock-keywords-3)
1247 (c++-font-lock-keywords-3, objc-font-lock-keywords-3)
1248 (java-font-lock-keywords-3, idl-font-lock-keywords-3)
1249 (pike-font-lock-keywords-3):
1250 * progmodes/compile.el (compile):
1251 * progmodes/etags.el (tags-table-files)
1252 (tags-table-files-function, tags-included-tables-function):
1253 * progmodes/gdb-mi.el (gdb, gdb-setup-windows)
1254 (gdb-restore-windows):
1255 * ps-print.el (ps-even-or-odd-pages, ps-spool-buffer-with-faces)
1256 (ps-n-up-filling-database):
1257 * server.el (server-buffer, server-log):
1258 * simple.el (newline, delete-backward-char, delete-forward-char)
1259 (minibuffer-history-isearch-message, kill-line, track-eol)
1260 (temporary-goal-column):
1261 * textmodes/flyspell.el (flyspell-mark-duplications-flag)
1262 (flyspell-default-deplacement-commands):
1263 * textmodes/ispell.el (ispell-accept-output):
1264 * textmodes/sgml-mode.el (html-tag-help):
1265 * vc/compare-w.el (compare-ignore-whitespace)
1266 (compare-ignore-case, compare-windows-dehighlight):
1267 * vc/diff.el (diff):
1268 * whitespace.el (whitespace-point)
1269 (whitespace-font-lock-refontify, whitespace-bob-marker)
1270 (whitespace-eob-marker): Fix ambiguous doc string cross-reference(s).
1271
1272 2013-01-11 Michael Albinus <michael.albinus@gmx.de>
1273
1274 * autorevert.el (top): Require 'cl in order to pacify byte compiler.
1275 (auto-revert-notify-rm-watch): Ignore errors.
1276 (auto-revert-notify-add-watch): Ignore errors. Use '(modify) for
1277 inotify, and '(size last-write-time) for w32notify.
1278 Set buffer-local `auto-revert-use-notify' to nil when adding a file
1279 watch fails - this is a fallback to the file modification check.
1280 (auto-revert-notify-event-p, auto-revert-notify-event-descriptor)
1281 (auto-revert-notify-event-action)
1282 (auto-revert-notify-event-file-name): New defuns.
1283 (auto-revert-notify-handler): Use them. Implement first
1284 plausibility checks.
1285 (auto-revert-handler): Handle also `auto-revert-tail-mode'.
1286
1287 2013-01-11 Julien Danjou <julien@danjou.info>
1288
1289 * color.el (color-rgb-to-hsv): Fix conversion computing in case min and
1290 max are almost equal. Also return the correct value for V which is
1291 already between 0 and 1.
1292
1293 2013-01-11 Dmitry Antipov <dmantipov@yandex.ru>
1294
1295 * emacs-lisp/ert.el (ert-run-test): Use point-max-marker.
1296
1297 2013-01-11 Eli Zaretskii <eliz@gnu.org>
1298
1299 * autorevert.el (auto-revert-notify-rm-watch)
1300 (auto-revert-notify-add-watch): Fix typos in w32notify function
1301 names.
1302
1303 2013-01-10 Michael Albinus <michael.albinus@gmx.de>
1304
1305 * autorevert.el (auto-revert-notify-enabled): Move up.
1306 (auto-revert-use-notify): New defcustom.
1307 (auto-revert-mode, global-auto-revert-mode)
1308 (auto-revert-notify-add-watch, auto-revert-handler)
1309 (auto-revert-buffers): Use `auto-revert-use-notify' instead of
1310 `auto-revert-notify-enabled'.
1311
1312 2013-01-10 Elias Pipping <pipping@exherbo.org>
1313
1314 * files.el (auto-mode-alist): Use doc-view for djvu files (bug#13164).
1315 * doc-view.el (doc-view-document->bitmap):
1316 Use doc-view-single-page-converter-function instead of
1317 single-page-converter arg; adjust callers.
1318
1319 2013-01-10 Feng Li <fengli@gmail.com> (tiny change)
1320
1321 * progmodes/which-func.el (which-function): Understand Semantic's use
1322 of overlays in imenu--index-alist.
1323
1324 2013-01-10 Wolfgang Jenkner <wjenkner@inode.at>
1325
1326 * man.el: Handle different "man -k" behaviors (bug#13160). Use utf-8.
1327 (Man-man-k-use-anchor): New var.
1328 (Man-parse-man-k): New function.
1329 (Man-completion-table): Use it.
1330 (man): Flush the completion cache between uses.
1331
1332 2013-01-10 Michael Albinus <michael.albinus@gmx.de>
1333
1334 * autorevert.el: Add file watch support.
1335 (auto-revert-notify-enabled): New defconst.
1336 (auto-revert-notify-watch-descriptor-hash-list)
1337 (auto-revert-notify-watch-descriptor)
1338 (auto-revert-notify-modified-p): New defvars.
1339 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
1340 (auto-revert-notify-handler): New defuns.
1341 (auto-revert-mode, global-auto-revert-mode): Remove file watches
1342 when mode is disabled.
1343 (auto-revert-handler): Check for `auto-revert-notify-modified-p'.
1344 (auto-revert-buffers): Add file watches for active buffers.
1345
1346 2013-01-10 Dmitry Antipov <dmantipov@yandex.ru>
1347
1348 * cus-start.el (toplevel): Only allow float values for
1349 scroll-up-aggressively and scroll-down-aggressively.
1350 Allow any number for line-spacing.
1351
1352 2013-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
1353
1354 * doc-view.el (doc-view-pdfdraw-program): Allow "pdfdraw" name.
1355 (doc-view-pdf->png-converter-function): Use mupdf if available.
1356 (doc-view-djvu->png-converter-function)
1357 (doc-view-ps->png-converter-function): Remove.
1358 (doc-view--image-file-pattern): Replace doc-view--image-file-extension.
1359 (doc-view-goto-page, doc-view-convert-current-doc, doc-view-display)
1360 (doc-view-already-converted-p): Adjust accordingly.
1361 (doc-view-mode-p): Simplify.
1362 (doc-view-enlarge): Use setq-local.
1363 (doc-view-pdf->png-converter-ghostscript)
1364 (doc-view-djvu->png-converter-ddjvu)
1365 (doc-view-pdf->png-converter-mupdf): Rework to call
1366 doc-view-start-process directly.
1367 (doc-view-pdf/ps->png): Simplify accordingly.
1368 (doc-view-pdf->png-1, doc-view-djvu->png-1): Remove.
1369 (doc-view-document->bitmap): Rename from doc-view-document->png.
1370 (doc-view-convert-current-doc): Merge pdf and djvu cases.
1371 (doc-view-set-slice-from-bounding-box): Fix completion table.
1372 (doc-view-mode): Use add-hook for after-revert-hook.
1373
1374 2013-01-10 Glenn Morris <rgm@gnu.org>
1375
1376 * emacs-lisp/authors.el (authors-ignored-files)
1377 (authors-valid-file-names, authors-renamed-files-alist):
1378 Add some more entries.
1379
1380 2013-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
1381
1382 * image-mode.el (image-mode-winprops): Don't throw away the fallback
1383 `t' pseudo-window entry.
1384
1385 2013-01-10 Alan Mackenzie <acm@muc.de>
1386
1387 Fix bugs in the c-parse-state mechanism. Reuse some markers
1388 instead of continually generating new ones.
1389
1390 * progmodes/cc-engine.el (c-state-old-cpp-beg-marker)
1391 (c-state-old-cpp-end-marker): New variables.
1392 (c-append-lower-brace-pair-to-state-cache): Start a backward
1393 search for "}" definitively outside CPP constructs.
1394 (c-remove-stale-state-cache): Inform the caller of a need to
1395 search back for a brace pair in certain circumstances.
1396 (c-state-maybe-marker): New macro.
1397 (c-parse-state): Reuse markers when appropriate.
1398
1399 2013-01-10 Glenn Morris <rgm@gnu.org>
1400
1401 * simple.el (execute-extended-command): Doc fix.
1402 Bind prefix-arg around read-extended-command, for prompt. (Bug#13395)
1403
1404 2013-01-10 Chong Yidong <cyd@gnu.org>
1405
1406 * faces.el (read-face-name): Doc fix.
1407
1408 2013-01-10 Roland Winkler <winkler@gnu.org>
1409
1410 * emacs-lisp/crm.el: Allow any regexp for separators.
1411 (crm-default-separator): All spaces around the default comma separator.
1412 (crm--completion-command): New macro.
1413 (crm-completion-help, crm-complete, crm-complete-word): Use it.
1414 (crm-complete-and-exit): Handle non-single-char separators.
1415
1416 2013-01-09 Elias Pipping <pipping@lavabit.com>
1417
1418 * doc-view.el: Add support for DjVu (bug#13164).
1419 (doc-view-djvu->png-converter-function): New config var.
1420 (doc-view-single-page-converter-function, doc-view--image-type)
1421 (doc-view--image-file-extension): New vars.
1422 (doc-view-mode): Initialize them.
1423 (doc-view-goto-page): Use them.
1424 (doc-view-mode-p): Add support for ddjvu.
1425 (doc-view-djvu->png-converter-ddjvu, doc-view-djvu->png-1)
1426 (doc-view-set-up-single-converter): New funs.
1427 (doc-view-pdf/ps->png): Extend for djvu.
1428 (doc-view-document->png): Rename from doc-view-pdf->png.
1429 (doc-view-convert-current-doc): Handle djvu.
1430 (doc-view-insert-image, doc-view-display)
1431 (doc-view-already-converted-p): Don't hardcode png.
1432 (doc-view-set-doc-type): Recognize djvu docs.
1433
1434 2013-01-09 Elias Pipping <pipping@lavabit.com>
1435
1436 * doc-view.el: Add support for mupdf converter (bug#13164).
1437 (doc-view-pdfdraw-program, doc-view-pdf->png-converter-function)
1438 (doc-view-ps->png-converter-function): New config vars.
1439 (doc-view-pdf->png-converter-ghostscript)
1440 (doc-view-ps->png-converter-ghostscript)
1441 (doc-view-pdf->png-converter-mupdf): New functions.
1442 (doc-view-pdf/ps->png, doc-view-pdf->png-1): Use them.
1443
1444 2013-01-09 Jürgen Hötzel <juergen@archlinux.org>
1445
1446 * net/tramp.el (tramp-eshell-directory-change): Check remote-path
1447 first in session cache: When `tramp-own-remote-path' is in
1448 `tramp-remote-path', the remote path is only set in the session
1449 cache.
1450
1451 2013-01-09 Glenn Morris <rgm@gnu.org>
1452
1453 * emacs-lisp/trace.el (trace-function-foreground)
1454 (trace-function-background): Doc fix.
1455
1456 2013-01-09 Juri Linkov <juri@jurta.org>
1457
1458 * international/mule-cmds.el (read-char-by-name): Move let-binding
1459 of completion-ignore-case around completing-read to fix regression
1460 exhibited by the test case `C-x 8 RET *acc TAB' and caused by
1461 `string-match-p' using the nil value of `case-fold-search' and
1462 `completion-ignore-case' in `completion-pcm--all-completions'.
1463 (Bug#12615).
1464
1465 2013-01-09 Glenn Morris <rgm@gnu.org>
1466
1467 * progmodes/compile.el (compilation-parse-errors):
1468 Fix typo. (Bug#13369)
1469
1470 2013-01-09 Vitalie Spinu <spinuvit@gmail.com> (tiny change)
1471
1472 * comint.el (comint-send-input): Check size of buffer before
1473 waiting for process output, in case already accepted. (Bug#13290)
1474
1475 2013-01-09 Paul Eggert <eggert@cs.ucla.edu>
1476
1477 Spelling fixes.
1478 * net/tramp-adb.el (tramp-adb-get-toolbox):
1479 Fix misspelling of 'unknown'.
1480
1481 2013-01-08 Juri Linkov <juri@jurta.org>
1482
1483 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
1484 * progmodes/flymake.el (flymake-errline, flymake-warnline):
1485 Use underline style wave on terminals that support it. (Bug#13000)
1486
1487 2013-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
1488
1489 * emacs-lisp/pcase.el (pcase--split-equal): Also take advantage if
1490 the predicate returns nil.
1491
1492 * simple.el: Use lexical-binding.
1493 (primitive-undo): Use pcase.
1494 (minibuffer-history-isearch-push-state): Use a closure.
1495
1496 2013-01-08 Aaron S. Hawley <aaron.s.hawley@gmail.com>
1497
1498 * simple.el (primitive-undo): Move from undo.c.
1499
1500 2013-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
1501
1502 * vc/pcvs.el (cvs-cleanup-collection): Extend meaning of `rm-handled'.
1503 (cvs-mode-remove-handled): Use it (bug#13380).
1504
1505 * emacs-lisp/nadvice.el (advice--tweak): New function.
1506 (advice--remove-function, advice--subst-main): Use it.
1507
1508 * emacs-lisp/advice.el: Update commentary.
1509
1510 2013-01-08 Michael Albinus <michael.albinus@gmx.de>
1511
1512 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
1513 Remove spurious entry.
1514
1515 2013-01-08 Glenn Morris <rgm@gnu.org>
1516
1517 * net/tramp.el (tramp-default-host-alist): Add :version.
1518
1519 2013-01-08 Juri Linkov <juri@jurta.org>
1520
1521 * info.el (Info-read-node-name-2): Don't duplicate suffixes for
1522 single completion. (Bug#12456)
1523 (info--manual-names): Expand node completions into an explicit list
1524 before appending it to another list. Filter out internal buffers
1525 with the leading space in the buffer name. (Bug#10771)
1526
1527 2013-01-08 Juri Linkov <juri@jurta.org>
1528
1529 * info.el (Info-read-node-name-1): Allow empty node name in (FILENAME)
1530 that defaults to the Top node.
1531 (Info-goto-node, Info-read-node-name): Doc fix to mention that
1532 the short format (FILENAME) goes to the Top node.
1533 (Info-build-node-completions): Rename arg `file' to `filename'.
1534 (Bug#13365)
1535
1536 2013-01-07 Bastien Guerry <bzg@gnu.org>
1537
1538 * menu-bar.el (menu-bar-search-documentation-menu):
1539 Use `apropos-user-option' and fix the help message.
1540
1541 2013-01-07 Bastien Guerry <bzg@gnu.org>
1542
1543 * apropos.el (apropos-do-all): Update docstring.
1544 (apropos-user-option-button): New face.
1545 (apropos-user-option): Rename from `apropos-variable' and update
1546 docstring.
1547 (apropos-variable): Rewrite, now show all variables by default.
1548 (apropos-print): Mention "User option" instead of "Variable" when
1549 printing doc for user options. (Bug#13276)
1550
1551 2013-01-07 Jürgen Hötzel <juergen@archlinux.org>
1552
1553 * net/tramp-adb.el (tramp-do-parse-file-attributes-with-ls):
1554 Handle filename correctly, when parsing "source -> target" symlink
1555 output.
1556 (tramp-adb-handle-set-file-times): New defun.
1557
1558 2013-01-07 Stefan Monnier <monnier@iro.umontreal.ca>
1559
1560 * emacs-lisp/advice.el (ad-activate-advised-definition): Refresh the
1561 advice list when the interactive-spec of ad-Advice-* changes.
1562
1563 2013-01-07 Katsumi Yamaoka <yamaoka@jpl.org>
1564
1565 * wid-edit.el (widget-default-get): Work for inlined elements.
1566 (Bug#12670)
1567
1568 2013-01-07 Michael Albinus <michael.albinus@gmx.de>
1569
1570 * net/tramp.el (tramp-default-host-alist): New defcustom.
1571 (tramp-find-host): Use it.
1572 (tramp-eshell-directory-change): Move from tramp-sh.el. Add to
1573 `eshell-directory-change-hook'.
1574
1575 * net/tramp-adb.el (top): Add adb specific entry in
1576 `tramp-default-host-alist'.
1577 (tramp-adb-file-name-host): Remove function.
1578 (tramp-adb-execute-adb-command, tramp-adb-maybe-open-connection):
1579 Use `tramp-file-name-host' instead of `tramp-adb-file-name-host'.
1580
1581 * net/tramp-sh.el: Move eshell integration code to tramp.el.
1582
1583 2013-01-06 Jürgen Hötzel <juergen@archlinux.org>
1584
1585 * net/tramp-adb.el (tramp-methods): Add `tramp-tmpdir' entry.
1586
1587 2013-01-06 Michael Albinus <michael.albinus@gmx.de>
1588
1589 * net/tramp-adb.el (tramp-adb-ls-toolbox-regexp): The file size can
1590 consist of more than one digit.
1591 (tramp-adb-file-name-handler-alist):
1592 Use `tramp-handle-file-exists-p' consistently.
1593 (tramp-adb-file-name-handler): Don't tweak `tramp-default-host'.
1594 (tramp-adb-handle-file-exists-p): Remove function.
1595 (tramp-adb-file-name-host): New defun.
1596 (tramp-adb-execute-adb-command, tramp-adb-maybe-open-connection):
1597 Use it.
1598 (tramp-adb-maybe-open-connection): Set "remote-path" property.
1599
1600 2013-01-06 Chong Yidong <cyd@gnu.org>
1601
1602 * vc/vc.el (vc-next-action): Detect buffer modifications
1603 conflicting with locking VCS operation (Bug#11490).
1604
1605 * vc/vc-hooks.el (vc-after-save): DTRT for locking VCSes.
1606
1607 2013-01-05 Michael Albinus <michael.albinus@gmx.de>
1608
1609 * net/tramp-adb.el (tramp-do-parse-file-attributes-with-ls):
1610 (tramp-adb-handle-directory-files-and-attributes): Fix typos.
1611
1612 2013-01-05 Jürgen Hötzel <juergen@archlinux.org>
1613
1614 * net/tramp-adb.el (tramp-adb-handle-file-attributes): More robust
1615 parsing of ls output using regular expression (handle filenames
1616 with spaces). Use virtual device number.
1617 (tramp-do-parse-file-attributes-with-ls): New defun (Code
1618 cleanup).
1619
1620 2013-01-04 Daiki Ueno <ueno@gnu.org>
1621
1622 * epg.el: Silence byte-compiler warnings.
1623 (epg--start): Use delete-char instead of delete-backward-char.
1624 (epg-wait-for-completion): Pass FRAME arg to redraw-frame.
1625
1626 2013-01-04 Daiki Ueno <ueno@gnu.org>
1627
1628 * epg.el (epg--start): Don't call "tty" program on W32 platforms.
1629 Suggested by Eli Zaretskii <eliz@gnu.org>.
1630
1631 2013-01-04 Michael Albinus <michael.albinus@gmx.de>
1632
1633 * net/tramp-sh.el (tramp-set-file-uid-gid): UID and GID must be
1634 non-negative integers. Otherwise, the default values are used.
1635 (tramp-convert-file-attributes): Convert uid and gid to integers.
1636
1637 2013-01-04 Glenn Morris <rgm@gnu.org>
1638
1639 * term.el (term-handle-colors-array): Ensure face attributes
1640 are fully specified, not nil. (Bug#13337)
1641
1642 * term.el (term-default-fg-color, term-default-bg-color):
1643 Fix custom type.
1644
1645 * progmodes/etags.el (tags-compression-info-list): Doc fix.
1646 (tag-find-file-of-tag-noselect): Check auto-compression-mode
1647 rather than 'jka-compr being loaded. (Bug#13338)
1648
1649 2013-01-04 Wesley Dawson <whd@lavabit.com> (tiny change)
1650
1651 * icomplete.el (icomplete-completions):
1652 Honor icomplete-prospects-height once more following
1653 2012-11-29 changes. (Bug#13224)
1654
1655 2013-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
1656
1657 * subr.el (internal--called-interactively-p--get-frame): Find aliases
1658 of called-interactively-p as well (bug#13237).
1659
1660 * view.el (view--enable, view--disable): Rename from view-mode-enable
1661 and view-mode-disable and assume it's called from view-mode.
1662 (view-mode-enable, view-mode-disable): Redefine as obsolete
1663 compatibility layer above view-mode.
1664 (view-mode-enter): Call `view-mode'.
1665
1666 * files.el (after-find-file): Call `view-mode'.
1667
1668 * doc-view.el (doc-view-scale-internally): New var.
1669 (doc-view-enlarge, doc-view-insert-image): Obey it.
1670
1671 2013-01-03 Daiki Ueno <ueno@gnu.org>
1672
1673 * epg.el (epg--start): Ignore errors when /dev/fd/0 does not
1674 exist. (Bug#13344)
1675
1676 2013-01-03 Glenn Morris <rgm@gnu.org>
1677
1678 * mail/rmail.el (rmail-set-header-1): Ignore case.
1679 Handle multi-line headers. (Bug#13330)
1680
1681 * progmodes/make-mode.el (makefile-fill-paragraph): Add doc.
1682 Handle paragraph starting at beginning of buffer.
1683
1684 * subr.el (eval-after-load): Don't purecopy the form, so that it
1685 can be nconc'd later on; reverts 2009-11-11 change. (Bug#13331)
1686
1687 * emacs-lisp/byte-run.el (defun): Place cl declarations
1688 after any interactive spec. (Bug#13265)
1689
1690 2013-01-02 Andreas Schwab <schwab@linux-m68k.org>
1691
1692 * emacs-lisp/byte-run.el (defmacro): Use same argument parsing as
1693 defun. Don't check for DECL if DOCSTRING isn't a string.
1694 (defun): Likewise.
1695
1696 2013-01-02 Glenn Morris <rgm@gnu.org>
1697
1698 * eshell/em-cmpl.el (eshell-pcomplete):
1699 More thoroughly imitate pcomplete. (Bug#13293)
1700
1701 * files.el (parse-colon-path): Doc fix. (Bug#12351)
1702 Return nil for empty path elements. (Bug#13296)
1703
1704 2013-01-02 Fabián Ezequiel Gallina <fgallina@cuca>
1705
1706 * progmodes/python.el (python-nav-end-of-statement): Rewrite in
1707 order to improve efficiency (Based on Daniel Colascione's
1708 <dancol@dancol.org> patch). (Bug#13182)
1709
1710 2013-01-02 Glenn Morris <rgm@gnu.org>
1711
1712 * vc/log-edit.el (log-edit-header-contents-regexp): Add doc string.
1713
1714 2013-01-02 Andreas Schwab <schwab@linux-m68k.org>
1715
1716 * emacs-lisp/byte-run.el (defmacro): Don't lose final nil if
1717 neither DOCSTRING nor DECL was given. (Bug#13316)
1718
1719 2013-01-02 Michael Albinus <michael.albinus@gmx.de>
1720
1721 * net/tramp-sh.el (tramp-sh-handle-set-file-acl): Add argument to
1722 `error' call.
1723 (tramp-do-copy-or-rename-file): Ignore errors when calling
1724 `set-file-extended-attributes'.
1725
1726 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
1727 Add handler for `file-acl'.
1728 (tramp-smb-handle-file-acl): New defun.
1729
1730 2013-01-02 Jay Belanger <jay.p.belanger@gmail.com>
1731
1732 * calc/README: Mention ISO 8601 week-numbering dates.
1733
1734 2013-01-01 Martin Rudalics <rudalics@gmx.at>
1735
1736 * view.el (view-mode-enable): New argument run-view-mode-hook.
1737 Run view-mode-hook only when it's non-nil (Bug#13315).
1738 (view-mode-enter): Call view-mode-enable with run-view-mode-hook
1739 argument t.
1740
1741 2012-12-31 Jürgen Hötzel <juergen@archlinux.org>
1742
1743 * net/tramp-adb.el (tramp-adb-maybe-open-connection): Handle errors
1744 (No device connected, invalid device name). (Bug #13299)
1745
1746 2012-12-31 Martin Rudalics <rudalics@gmx.at>
1747
1748 * window.el (window-resizable--p): Rename to window-resizable-p.
1749 (window-resize-no-error): New function.
1750
1751 * mail/rmail.el (rmail-maybe-display-summary): Restore behavior
1752 broken in fix from 2012-12-28.
1753
1754 2012-12-31 Stefan Monnier <monnier@iro.umontreal.ca>
1755
1756 * subr.el (special-form-p): Don't signal errors on undef aliases.
1757
1758 2012-12-31 Jay Belanger <jay.p.belanger@gmail.com>
1759
1760 * calc/calc-forms.el (math-parse-date): Try using
1761 `math-parse-iso-date' when it looks like it might be needed.
1762 Allow times of 24:00.
1763 (math-parse-date-validate, math-parse-iso-date-validate): Allow times
1764 of 24:00.
1765
1766 2012-12-30 Glenn Morris <rgm@gnu.org>
1767
1768 * net/mairix.el (rmail, rmail-summary-displayed, rmail-summary):
1769 Remove unnecessary/buggy autoloads (missing interactive). (Bug#13294)
1770 (rmail-summary-displayed, rmail-summary): Declare.
1771 (mairix-rmail-display): Just require rmail.
1772
1773 2012-12-30 Chong Yidong <cyd@gnu.org>
1774
1775 * emacs-lisp/package.el (package-untar-buffer): Improve integrity
1776 check for the tarball contents.
1777
1778 2012-12-30 Matt Fidler <matt.fidler@alcon.com> (tiny change)
1779
1780 * emacs-lisp/package.el (package-untar-buffer): Handle problematic
1781 tarfile content listings (Bug#13136).
1782
1783 2012-12-30 Mark Lillibridge <mark.lillibridge@hp.com>
1784
1785 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
1786 Insert the undecoded text of the message being forwarded. (Bug#9521)
1787
1788 2012-12-30 Michael Albinus <michael.albinus@gmx.de>
1789
1790 * net/tramp-sh.el (tramp-set-file-uid-gid): Convert UID and GID to
1791 integers, if they are real numbers. (Bug#13282)
1792
1793 * net/tramp-sh.el (tramp-sh-handle-set-file-selinux-context):
1794 Return `t' on success.
1795
1796 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
1797 Add handler for `set-file-selinux-context'.
1798
1799 2012-12-29 Michael Albinus <michael.albinus@gmx.de>
1800
1801 * net/tramp-sh.el (tramp-sh-handle-file-acl): Suppress basic attributes.
1802 (tramp-sh-handle-set-file-acl): Return `t' on success.
1803
1804 2012-12-29 Eli Zaretskii <eliz@gnu.org>
1805
1806 * files.el (backup-buffer-copy, basic-save-buffer-2):
1807 If set-file-extended-attributes fails, fall back on set-file-modes
1808 instead of signaling an error. (Bug#13298)
1809 (basic-save-buffer): Likewise.
1810
1811 2012-12-29 Fabián Ezequiel Gallina <fgallina@cuca>
1812
1813 * progmodes/python.el: Support other commands triggering
1814 python-indent-line so indentation cycling continues to work.
1815 (python-indent-trigger-commands): New defcustom.
1816 (python-indent-line): Use it.
1817
1818 2012-12-29 Fabián Ezequiel Gallina <fgallina@cuca>
1819
1820 * progmodes/python.el (python-shell-send-region): Add blank lines
1821 for non sent code so backtraces remain correct.
1822
1823 2012-12-29 Fabián Ezequiel Gallina <fgallina@cuca>
1824
1825 * progmodes/python.el: Remove cl dependency.
1826 (python-syntax-count-quotes): Replace incf call.
1827 (python-fill-string): Replace setf call.
1828
1829 2012-12-29 Damien Cassou <damien.cassou@gmail.com>
1830
1831 * info.el (info-other-window): New arg, for consistency with info.
1832
1833 2012-12-28 Martin Rudalics <rudalics@gmx.at>
1834
1835 * mail/rmail.el (rmail-maybe-display-summary):
1836 Rewrite (Bug#13066).
1837
1838 2012-12-28 Andreas Schwab <schwab@linux-m68k.org>
1839
1840 * epg.el (epg--start): Modify process-environment locally.
1841
1842 2012-12-28 Daiki Ueno <ueno@gnu.org>
1843
1844 * epg.el: Support pinentry-curses.
1845 Suggested by Werner Koch in
1846 <http://lists.gnu.org/archive/html/emacs-devel/2007-02/msg00755.html>.
1847 (epg-agent-file, epg-agent-mtime): New variable.
1848 (epg--start): Record the modified time of gpg-agent socket file,
1849 to restore Emacs frame after pinentry-curses termination.
1850 (epg-wait-for-completion): Restore Emacs frame here.
1851
1852 2012-12-27 Juri Linkov <juri@jurta.org>
1853
1854 * info.el (Info-file-completions): New variable.
1855 (Info-read-node-name-1): Complete node names in the Info file
1856 when a file name is given. Call `Info-build-node-completions'
1857 with a file name.
1858 (Info-build-node-completions): Add new arg `file'. When it is
1859 non-nil, visit it in a temporary buffer and cache its completions in
1860 `Info-current-file-completions'. Move most of the function body to
1861 `Info-build-node-completions-1'.
1862 (Info-build-node-completions-1): New function with the body from
1863 `Info-build-node-completions'. (Bug#12456)
1864
1865 2012-12-27 Juri Linkov <juri@jurta.org>
1866
1867 * frame.el (frame-maximization-style): Remove user option.
1868 (cycle-frame-maximized): Remove function.
1869 (toggle-frame-maximized): Rewrite and bind to M-<f10>.
1870 (toggle-frame-fullscreen): New command bound to <f11> instead of
1871 `toggle-frame-maximized'.
1872 http://lists.gnu.org/archive/html/emacs-devel/2012-12/msg00703.html
1873
1874 2012-12-27 Michael Albinus <michael.albinus@gmx.de>
1875
1876 * net/tramp.el (tramp-handle-file-accessible-directory-p): New defun.
1877
1878 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
1879 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
1880 * net/tramp-sh.el (tramp-sh-file-name-handler-alist): Add handler
1881 for `file-accessible-directory-p'. (Bug#13275)
1882
1883 2012-12-27 Sam Steingold <sds@gnu.org>
1884
1885 * progmodes/cperl-mode.el (cperl-calculate-indent): Do not stagger
1886 continuations, see <http://stackoverflow.com/questions/3582436>.
1887
1888 2012-12-27 Dmitry Gutov <dgutov@yandex.ru>
1889
1890 * progmodes/ruby-mode.el (ruby-indent-beg-re): Only allow "class",
1891 "module" and "def" to have indentation before them.
1892 Regression from 2012-09-07T04:15:56Z!dgutov@yandex.ru (see the new test).
1893
1894 * progmodes/ruby-mode.el: Bump the version to 1.2 (Bug#13200).
1895
1896 2012-12-27 Alan Mackenzie <acm@muc.de>
1897
1898 Speed up fontification where there's large brace blocks.
1899 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Add a limit
1900 to a call of c-beginning-of-decl-1.
1901
1902 2012-12-27 Vitalie Spinu <spinuvit@gmail.com> (tiny change)
1903
1904 * comint.el (comint-adjust-window-point): New function.
1905 (comint-postoutput-scroll-to-bottom):
1906 Call comint-adjust-window-point (Bug#13248).
1907
1908 2012-12-26 Dmitry Gutov <dgutov@yandex.ru>
1909
1910 * progmodes/ruby-mode.el (auto-mode-alist): `purecopy' the
1911 Rakefile regexp.
1912 (auto-mode-alist): Associate .gemspec files with ruby-mode
1913 (https://bugs.ruby-lang.org/issues/5453).
1914
1915 2012-12-26 Jürgen Hötzel <juergen@archlinux.org>
1916
1917 * net/tramp-adb.el (tramp-adb-get-ls-command): New defun.
1918 Suppress coloring, if possible (required for BusyBox based systems like
1919 CyanogenMod).
1920 (tramp-adb-handle-file-attributes)
1921 (tramp-adb-handle-insert-directory)
1922 (tramp-adb-handle-file-name-all-completions): Use it.
1923 (tramp-adb-get-toolbox): New defun. Check for remote shell
1924 implementation (BusyBox or Toolbox).
1925
1926 2012-12-24 Constantin Kulikov <zxnotdead@gmail.com> (tiny change)
1927
1928 * startup.el (initial-buffer-choice): Allow function as value
1929 (Bug#13251).
1930 (command-line-1): Handle case where initial-buffer-choice
1931 specifies a function.
1932 * server.el (server-execute): Handle case where
1933 initial-buffer-choice specifies a function.
1934
1935 2012-12-24 Lars Ingebrigtsen <larsi@gnus.org>
1936
1937 * mail/smtpmail.el (smtpmail-try-auth-method): Refactored out into
1938 its own function.
1939 (smtpmail-try-auth-methods): Forget the user name/password if the
1940 login is unsuccessful (bug#12424).
1941
1942 2012-12-22 Michael Albinus <michael.albinus@gmx.de>
1943
1944 * notifications.el (notifications-notify): Protect body with
1945 `with-demoted-errors'.
1946
1947 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
1948 Check properties of remote device. Restart connection, if there is a
1949 change.
1950
1951 2012-12-21 Chong Yidong <cyd@gnu.org>
1952
1953 * sort.el (sort-subr): Doc fix (Bug#13056).
1954
1955 2012-12-21 Bastien Guerry <bzg@gnu.org>
1956
1957 * progmodes/etags.el (tags-search): Fix typo. Bug #13232.
1958
1959 2012-12-21 Michael Albinus <michael.albinus@gmx.de>
1960
1961 * simple.el (process-file): Overwrite stderr file, if exists.
1962
1963 2012-12-21 Daiki Ueno <ueno@gnu.org>
1964
1965 * epg.el (epg--start): Print GPG_AGENT_INFO in the debug buffer.
1966 (epg-error): Set `error-message' property.
1967
1968 2012-12-21 Chong Yidong <cyd@gnu.org>
1969
1970 * international/mule-cmds.el (read-char-by-name): Signal an error
1971 if the user does not supply a valid character (Bug#13177).
1972
1973 * simple.el (transpose-subr-1): Preserve marker positions by
1974 changing the insertion sequence (Bug#13122).
1975
1976 2012-12-21 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
1977
1978 * simple.el (kill-region): Deactivate mark even for empty regions
1979 (Bug#13169).
1980
1981 2012-12-21 Chong Yidong <cyd@gnu.org>
1982
1983 * help-fns.el (describe-variable): Make sure we get the right
1984 buffer name (Bug#13105). Suggested by Kelly Dean.
1985
1986 2012-12-20 Michael R. Mauger <mmaug@yahoo.com>
1987
1988 * comint.el (comint-redirect-previous-input-string): New variable.
1989 (comint-redirect-setup, comint-redirect-cleanup)
1990 (comint-redirect-preoutput-filter): Use it. Fixes redirection bug.
1991 (comint-redirect-preoutput-filter): Fix verbose message.
1992
1993 2012-12-20 Michael Albinus <michael.albinus@gmx.de>
1994
1995 * progmodes/grep.el (rgrep): Escape command line. Sometimes, it
1996 is too long for Tramp. See discussion in
1997 <http://thread.gmane.org/gmane.emacs.tramp/8233/focus=8244>.
1998
1999 * progmodes/compile.el (compilation-start): Remove line escape
2000 template.
2001
2002 2012-12-20 Dmitry Antipov <dmantipov@yandex.ru>
2003
2004 * vc/ediff-ptch.el (ediff-map-patch-buffer): Use `point-min-marker'.
2005 Adjust comment.
2006
2007 2012-12-19 Jonas Bernoulli <jonas@bernoul.li>
2008
2009 * emacs-lisp/lisp-mnt.el (lm-section-end): Always end before the
2010 following non-comment text (bug#13207).
2011 (lm-header-multiline): Continuation lines need to be indented more than
2012 the first line.
2013 (lm-homepage): New function.
2014 (lm-with-file): Don't be confused if narrowing is in effect.
2015
2016 2012-12-19 Stefan Monnier <monnier@iro.umontreal.ca>
2017
2018 * vc/diff-mode.el (diff-post-command-hook): Don't ignore changes at the
2019 very beginning of a hunk (e.g. killing the first line).
2020
2021 2012-12-19 Michael Albinus <michael.albinus@gmx.de>
2022
2023 * net/tramp-sh.el (tramp-sh-handle-file-acl): Delete empty lines
2024 and text properties from returned ACL string.
2025 (tramp-sh-handle-set-file-acl): Do not use additional parentheses
2026 for "setfacl" command.
2027
2028 2012-12-18 Michael Albinus <michael.albinus@gmx.de>
2029
2030 * net/tramp.el (tramp-error-with-buffer): Give a hint to use
2031 `tramp-cleanup-this-connection', when the process has died.
2032 (Bug#13151)
2033
2034 2012-12-17 Stefan Monnier <monnier@iro.umontreal.ca>
2035
2036 * icomplete.el (icomplete-completions): Also use … to truncate prefix.
2037
2038 2012-12-17 Kevin Ryde <user42@zip.com.au>
2039
2040 * files.el (auto-save-file-name-p): Use \` and \' (bug#13186).
2041
2042 2012-12-17 Michael Albinus <michael.albinus@gmx.de>
2043
2044 Add support for preserving ACL entries of files.
2045
2046 * net/tramp.el (tramp-file-name-for-operation): Add `file-acl' and
2047 `set-file-acl' handlers.
2048
2049 * net/tramp-adb.el (tramp-adb-handle-copy-file):
2050 Handle PRESERVE-EXTENDED-ATTRIBUTES.
2051
2052 * net/tramp-compat.el (tramp-compat-copy-file):
2053 Handle PRESERVE-EXTENDED-ATTRIBUTES.
2054
2055 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
2056 Add `file-acl' and `set-file-acl' handlers.
2057 (tramp-gvfs-handle-copy-file):
2058 Handle PRESERVE-EXTENDED-ATTRIBUTES.
2059 (tramp-gvfs-handle-file-acl, tramp-gvfs-handle-set-file-acl):
2060 New defuns.
2061
2062 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
2063 Add `file-acl' and `set-file-acl' handlers.
2064 (tramp-remote-acl-p, tramp-sh-handle-file-acl)
2065 (tramp-sh-handle-set-file-acl): New defuns.
2066 (tramp-sh-handle-copy-file, tramp-do-copy-or-rename-file):
2067 Handle PRESERVE-EXTENDED-ATTRIBUTES.
2068
2069 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
2070 Add `file-acl' and `set-file-acl' handlers.
2071 (tramp-smb-handle-copy-file): Handle PRESERVE-EXTENDED-ATTRIBUTES.
2072
2073 2012-12-17 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
2074
2075 * help-macro.el (make-help-screen): Instead of switch-to-buffer
2076 use pop-to-buffer with NORECORD argument t. As buffer name, use
2077 *Metahelp* with a leading space (Bug#13190).
2078
2079 2012-12-16 Romain Francoise <romain@orebokech.com>
2080
2081 * files.el (file-extended-attributes)
2082 (set-file-extended-attributes): New functions.
2083 (backup-buffer): Use them to handle both SELinux context and ACL
2084 entries.
2085 (backup-buffer-copy): Work with an alist of extended attributes,
2086 rather than an SELinux context.
2087 (basic-save-buffer-2): Ditto.
2088
2089 2012-12-16 Timo Myyrä <timo.myyra@gmail.com>
2090
2091 * battery.el (battery-bsd-apm): New function.
2092
2093 2012-12-16 Jay Belanger <jay.p.belanger@gmail.com>
2094
2095 * calc/calc.el (calc-standard-date-formats): Adjust one of the
2096 standard date formats.
2097
2098 2012-12-15 Juri Linkov <juri@jurta.org>
2099
2100 * isearch.el (isearch-mode-map): Bind `C-x 8 RET' to
2101 `isearch-insert-char-by-name'.
2102 (with-isearch-suspended): New defmacro with body mostly from
2103 `isearch-edit-string' except the part that sets
2104 `isearch-new-string' and `isearch-new-message'.
2105 (isearch-edit-string): Use new macro `with-isearch-suspended' with
2106 body that sets `isearch-new-string' and `isearch-new-message'.
2107 (isearch-insert-char-by-name): New command.
2108 * international/mule-cmds.el (read-char-by-name): Let-bind
2109 `enable-recursive-minibuffers' to t.
2110 http://lists.gnu.org/archive/html/emacs-devel/2012-12/msg00234.html
2111
2112 2012-12-15 Juri Linkov <juri@jurta.org>
2113
2114 * isearch.el (isearch-delete-char, isearch-del-char): Doc fix.
2115 (Bug#13175)
2116
2117 2012-12-15 Christopher Schmidt <christopher@ch.ristopher.com>
2118
2119 * dired-x.el (dired-guess-shell-command): Put colon at the end of
2120 the prompt. (Bug#13045)
2121
2122 2012-12-14 Glenn Morris <rgm@gnu.org>
2123
2124 * emacs-lisp/macroexp.el (macroexp--warn-and-return):
2125 Try to include filename in non-bytecomp warning. (Bug#13132)
2126
2127 2012-12-14 Paul Eggert <eggert@cs.ucla.edu>
2128
2129 Fix permissions bugs with setgid directories etc. (Bug#13125)
2130 * files.el (backup-buffer): Don't rely on 9th output of
2131 file-attributes, as it's now a placeholder. Instead, use the new
2132 optional arg of file-ownership-preserved-p.
2133 (file-ownership-preserved-p): New optional arg GROUP.
2134 Fix mishandling of setuid directories that would cause this
2135 function to return t when it should have returned nil.
2136 Document what happens if the file does not exist, and when
2137 it's not known whether the ownership will be preserved.
2138 * net/tramp-sh.el (tramp-sh-handle-file-ownership-preserved-p):
2139 Likewise.
2140 (tramp-get-local-gid): Use group-gid for integer, as that's
2141 faster and more reliable.
2142
2143 2012-12-14 Julien Danjou <julien@danjou.info>
2144
2145 * progmodes/sql.el (sql-mode-postgres-font-lock-keywords):
2146 Update keywords list, data type and PL/pgSQL.
2147
2148 2012-12-14 Dave Abrahams <dave@boostpro.com>
2149
2150 * vc/ediff-util.el (ediff-buffer-type): New function.
2151 (ediff-clone-buffer-for-current-diff-comparison): Compute the buf-type
2152 rather than taking it as as argument.
2153 (ediff-inferior-compare-regions): Adjust calls accordingly (bug#11319).
2154
2155 2012-12-14 Ryan Crum <ryan.crum@eleostech.com>
2156
2157 * json.el: Add pretty-print option (bug#12634).
2158 (json-encoding-separator, json-encoding-default-indentation)
2159 (json--encoding-current-indentation, json-encoding-pretty-print)
2160 (json-encoding-lisp-style-closings): New vars.
2161 (json--with-indentation): New macro.
2162 (json-encode-hash-table, json-encode-alist, json-encode-plist)
2163 (json-encode-array): Use it to obey json-encoding-pretty-print.
2164 (json-pretty-print-buffer, json-pretty-print): New commands.
2165
2166 2012-12-14 Dmitry Gutov <dgutov@yandex.ru>
2167
2168 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
2169 Extract `ruby-syntax-propertize-expansions'.
2170 (ruby-syntax-propertize-expansions): Only change syntax on
2171 certain string delimiters, to punctuation. This way the common
2172 functions like forward-word and thing-at-point still work.
2173 (ruby-match-expression-expansion): Improve readability.
2174 (ruby-block-contains-point): New function.
2175 (ruby-add-log-current-method): Handle several edge cases.
2176
2177 2012-12-13 Juanma Barranquero <lekktu@gmail.com>
2178
2179 * emacs-lisp/edebug.el (edebug-unload-function): Make sure that
2180 unload-feature finishes even when aborting an ongoing edebug session.
2181 Also, do not worry about edebug-mode, unload-feature takes care of it.
2182
2183 2012-12-13 Andreas Schwab <schwab@suse.de>
2184
2185 * net/tls.el (tls-program): Update customize type.
2186
2187 2012-12-13 Juanma Barranquero <lekktu@gmail.com>
2188
2189 * emacs-lisp/edebug.el (edebug--require-cl-read): New function.
2190 (edebug-setup-hook, cl-read-load-hooks): Use it.
2191 (edebug-unload-function): New function. (Bug#13163)
2192
2193 2012-12-13 Michael Albinus <michael.albinus@gmx.de>
2194
2195 * net/tramp-adb.el (tramp-adb-file-name-p): Make it a defsubst.
2196 Otherwise, there could be errors in autoloading. (Bug#13151)
2197
2198 2012-12-13 Jürgen Hötzel <juergen@archlinux.org>
2199
2200 * net/tramp-adb.el (tramp-adb-wait-for-output): Remove spurious " ^H"
2201 sequences.
2202
2203 2012-12-13 Alan Mackenzie <acm@muc.de>
2204
2205 Make CC Mode not hang when _some_ lines end in CRLF. Bug #11841.
2206 * progmodes/cc-engine.el (c-backward-comments): Add code to work
2207 around `forward-comment' not recognizing ^M as whitespace.
2208
2209 2012-12-13 Fabián Ezequiel Gallina <fgallina@cuca>
2210
2211 * progmodes/python.el (python-skeleton-class)
2212 (python-skeleton-def): Do not add space after defun name.
2213
2214 2012-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
2215
2216 * emacs-lisp/cl.el (letf): Make it an alias of cl-letf.
2217 (cl--symbol-function): Remove (now that funbound is like nil).
2218
2219 2012-12-12 Glenn Morris <rgm@gnu.org>
2220
2221 * button.el (button--area-button-p): Fix typo.
2222
2223 2012-12-12 Sam Steingold <sds@gnu.org>
2224
2225 * frame.el (frame-maximization-style): New user option.
2226 (toggle-frame-maximized): Toggle frame maximization according to
2227 `frame-maximization-style', bound to <f11>.
2228 (cycle-frame-maximized): Cycle between all maximization styles and
2229 non-maximized frame, bound to shift-<f11>.
2230
2231 2012-12-12 David Cadé <codename68@gmail.com>
2232
2233 * mpc.el (mpc-format): Use truncate-string-to-width (bug#13143).
2234
2235 2012-12-12 Jonas Bernoulli <jonas@bernoul.li>
2236
2237 * lisp/emacs-lisp/eieio.el: Prettier object pretty-printing (bug#13115).
2238 (eieio-override-prin1): Don't quote kewords and booleans.
2239 (object-write) <eieio-default-superclass>: Don't put closing parens
2240 on new line, avoid needless empty lines, align values that are objects
2241 with the slot keyword (instead of beginning on the same line).
2242 (eieio-list-prin1): Align value with slot keyword; increase
2243 eieio-print-depth before printing members of the list.
2244
2245 2012-12-11 Stefan Monnier <monnier@iro.umontreal.ca>
2246
2247 * mail/emacsbug.el (report-emacs-bug): Move the intangible text to
2248 a display text-property.
2249 (report-emacs-bug-hook): Don't bother deleting it any more.
2250
2251 * hilit-chg.el (highlight-save-buffer-state): Delete.
2252 Use with-silent-modifications instead.
2253 (hilit-chg-set-face-on-change): Only fixup the text that's modified.
2254
2255 * button.el: Handle buttons in display text-properties.
2256 (button--area-button-p, button--area-button-string):
2257 Use (STRING . STRING-POS) representation instead of just STRING.
2258
2259 2012-12-11 Eli Zaretskii <eliz@gnu.org>
2260
2261 * makefile.w32-in (compile4-SH): Fix a typo that caused term
2262 subdirectory be skipped.
2263
2264 2012-12-11 Glenn Morris <rgm@gnu.org>
2265
2266 * net/rcirc.el (rcirc-urls, rcirc-condition-filter): Doc fixes.
2267
2268 * progmodes/f90.el (f90-line-continued, f90-indent-region):
2269 Treat preprocessor lines embedded in continuations like comments.
2270 (f90-indent-line): Special-case preprocessor lines. (Bug#13138)
2271
2272 2012-12-11 Jay Belanger <jay.p.belanger@gmail.com>
2273
2274 * calc/calc.el (calc-standard-date-formats): Add more date
2275 formats.
2276 * calc/calc-forms.el (math-parse-iso-date): New function.
2277 (math-parse-date): Use `math-parse-iso-date' when appropriate.
2278 (math-parse-iso-date-validate): Add extra error checking.
2279 (calc-date-notation): Add ability to access new date formats.
2280
2281 2012-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
2282
2283 * hi-lock.el (hi-lock--regexps-at-point): Fix boundary case for
2284 font-lock as well as when there's no text-property.
2285
2286 2012-12-10 Jambunathan K <kjambunathan@gmail.com>
2287
2288 * hi-lock.el: Refine the choice of default face.
2289 (hi-lock-keyword->face): New function. Use it wherever we used
2290 cadadadr instead.
2291 (hi-lock--regexps-at-point): Ignore faces that can't come from hi-lock.
2292 (hi-lock--last-face): Remove var.
2293 (hi-lock--unused-faces): New var to replace it.
2294 (hi-lock-read-face-name): Use/maintain it.
2295 (hi-lock-unface-buffer): Maintain it. Fix error for the C-u case.
2296 (hi-lock-set-pattern): Ignore new rule if it has the same regexp even
2297 if it has another face.
2298
2299 2012-12-10 Eli Zaretskii <eliz@gnu.org>
2300
2301 * subr.el (w32notify-handle-event): New function.
2302 (inotify-handle-event): Doc fix.
2303
2304 2012-12-10 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
2305
2306 * subr.el (inotify-event-p, inotify-handle-event): New functions.
2307
2308 2012-12-10 Dani Moncayo <dmoncayo@gmail.com>
2309
2310 * simple.el (just-one-space): Doc fix.
2311
2312 2012-12-10 Eli Zaretskii <eliz@gnu.org>
2313
2314 * textmodes/texinfo.el (texinfo-enable-quote-envs): Add "smallexample".
2315
2316 2012-12-10 Le Wang <l26wang@gmail.com>
2317
2318 * hilit-chg.el (hilit-chg-set-face-on-change): Don't burp in
2319 narrowed buffer (bug#12361).
2320
2321 2012-12-10 Juanma Barranquero <lekktu@gmail.com>
2322
2323 * vc/vc-hooks.el (vc-state): Doc fix.
2324
2325 2012-12-10 Glenn Morris <rgm@gnu.org>
2326
2327 * mail/rmail.el (rmail-maybe-display-summary):
2328 Preserve buffer, in case select-window changes it. (Bug#13066)
2329
2330 2012-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
2331
2332 * emacs-lisp/cl.el, emacs-lisp/cl-lib.el: Move cl-unload-function and
2333 cl-load-hook where they belong.
2334
2335 2012-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
2336
2337 * emacs-lisp/cl-lib.el (cl-declaim): Paren typo.
2338
2339 2012-12-09 Eli Zaretskii <eliz@gnu.org>
2340
2341 Parallelize byte compilation on MS-Windows.
2342 * makefile.w32-in (WINS_BASIC1, WINS_BASIC2, WINS_BASIC3)
2343 (WINS_BASIC4): New variables, subdivide subdirectories into 4 parts.
2344 (WINS_BASIC): Define as concatenation of the above.
2345 (compile): Subdivide into 4 separate and independent jobs that can
2346 be run in parallel.
2347 (compile0-CMD, compile0-SH): New targets for compiling
2348 COMPILE_FIRST files, which are prerequisites for the rest of the
2349 byte-compilation.
2350 (compile1-CMD, compile2-CMD, compile3-CMD, compile4-CMD):
2351 New targets for parallel compilation with cmd.exe.
2352 (compile1-SH, compile2-SH, compile3-SH, compile4-SH): Ditto for
2353 compiling under a Unixy shell.
2354
2355 2012-12-09 Chong Yidong <cyd@gnu.org>
2356
2357 * simple.el (set-mark-default-inactive): Delete this
2358 accidentally-introduced option.
2359 (set-mark-command, exchange-point-and-mark): Remove calls.
2360
2361 2012-12-09 Glenn Morris <rgm@gnu.org>
2362
2363 * emacs-lisp/lisp-mode.el (eval-defun-1): Doc fix.
2364 Respect a defcustom's :set function, if appropriate. (Bug#109)
2365 (eval-defun): Doc fix.
2366
2367 2012-12-08 Juri Linkov <juri@jurta.org>
2368
2369 * info.el (Info-copy-current-node-name, Info-breadcrumbs)
2370 (Info-fontify-node, Info-bookmark-make-record): Remove the
2371 file extension from Info-current-file (Bug#13016).
2372
2373 2012-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
2374
2375 * hi-lock.el (hi-lock-unface-buffer): If there's no matching regexp at
2376 point, still provide some default.
2377 (hi-lock--regexps-at-point): Don't enforce a "hi-lock-" prefix on face
2378 names, since we don't use it right now. Actually return the list.
2379 (hi-lock-file-patterns, hi-lock-interactive-patterns): Use defvar-local.
2380
2381 2012-12-07 Chong Yidong <cyd@gnu.org>
2382
2383 * novice.el (disabled-command-function): Remove a spurious help
2384 xref (Bug#13043). Suggested by Kelly Dean.
2385
2386 * subr.el (text-clone-maintain): Fix clone overlay deletion when a
2387 syntax is specified (Bug#13025).
2388
2389 * info.el (Info-set-mode-line): Remove the file extension from
2390 Info-current-file if there is one (Bug#13016).
2391
2392 2012-12-07 Glenn Morris <rgm@gnu.org>
2393
2394 * mail/rmail.el (rmail-mime-decoded): New permanent local.
2395 (rmail-show-message-1): Set rmail-mime-decoded when appropriate.
2396 * mail/rmailedit.el (rmail-cease-edit): Respect rmail-mbox-format
2397 and rmail-mime-decoded. (Bug#9841)
2398
2399 * mail/unrmail.el (unrmail-mbox-format): New option. (Bug#6574)
2400 (batch-unrmail, unrmail): Doc fixes.
2401 (unrmail): Respect unrmail-mbox-format.
2402 * mail/rmail.el (rmail-mbox-format): New option.
2403 (rmail-show-message-1): Respect rmail-mbox-format.
2404
2405 2012-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
2406
2407 * emacs-lisp/cl-macs.el (cl-tagbody): New macro.
2408
2409 2012-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
2410
2411 Further cleanup of the "cl-" namespace. Fit CL in 80 columns.
2412 * emacs-lisp/cl-macs.el (cl--pop2, cl--optimize-safety)
2413 (cl--optimize-speed, cl--not-toplevel, cl--parse-loop-clause)
2414 (cl--expand-do-loop, cl--proclaim-history, cl--declare-stack)
2415 (cl--do-proclaim, cl--proclaims-deferred): Rename from the "cl-" prefix.
2416 (cl-progv): Don't rely on dynamic scoping to find the body.
2417 * emacs-lisp/cl-lib.el (cl--optimize-speed, cl--optimize-safety)
2418 (cl--proclaims-deferred): Rename from the "cl-" prefix.
2419 (cl-declaim): Use backquotes.
2420 * emacs-lisp/cl-extra.el (cl-make-random-state, cl-random-state-p):
2421 Use "cl--" prefix for the object's tag.
2422
2423 * ses.el: Use advice-add/remove.
2424 (ses--advice-copy-region-as-kill, ses--advice-yank): New functions.
2425 (copy-region-as-kill, yank): Use advice-add.
2426 (ses-unload-function): Use advice-remove.
2427
2428 2012-12-06 Jonas Bernoulli <jonas@bernoul.li>
2429
2430 * button.el: Make them work in header-lines (bug#12817).
2431 (button-map): Add bindings for header-line and mode-line use.
2432 (button-get, button-put, button-label): `button' may now be a string.
2433 (button-activate): Don't make it a defsubst.
2434 (button--area-button-p, button--area-button-string): New functions.
2435 (make-text-button): Fix the return value when `beg' was a string.
2436 (push-button): Handle the mode-line case.
2437
2438 2012-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
2439
2440 * progmodes/sql.el: Use cl-lib and lexical-binding; various cleanup.
2441 (sql-signum): Remove. Use `cl-signum' instead.
2442 (sql-read-passwd): Remove; use read-passwd instread.
2443 (sql-get-login-ext): Use read-string.
2444 (sql-get-login): Use dolist and pcase.
2445 (sql--completion-table): Rename from sql-try-completion.
2446 Use complete-with-action.
2447 (sql-mode): Don't change abbrev-all-caps globally.
2448 (sql-connect): Don't rely on dynamic scoping for `new-name'.
2449 (sql-postgres-completion-object): Initialize vars in their `let'.
2450 (sql-comint-sybase, sql-comint-sqlite, sql-comint-mysql)
2451 (sql-comint-solid, sql-comint-ms, sql-comint-postgres)
2452 (sql-comint-interbase): Use a single append, without setq.
2453 (sql-comint-linter): Same, and unwind-protect the LINTER_MBX var.
2454
2455 * hi-lock.el: Rework the default face and the serialize regexp code.
2456 (hi-lock--auto-select-face-defaults): Remove.
2457 (hi-lock-string-serialize-serial): Remove.
2458 (hi-lock--hashcons-hash): Rename from hi-lock-string-serialize-hash;
2459 make weak.
2460 (hi-lock--hashcons): Rename from hi-lock-string-serialize, return an
2461 equal string.
2462 (hi-lock-set-pattern): Adjust accordingly.
2463 (hi-lock--regexps-at-point): Simplify accordingly.
2464 (hi-lock--auto-select-face-defaults): Remove.
2465 (hi-lock--last-face): New var to replace it.
2466 (hi-lock-read-face-name): Rewrite (bug#11095).
2467 (hi-lock-unface-buffer): Arrange for the face to be the next default.
2468
2469 2012-12-06 Michael Albinus <michael.albinus@gmx.de>
2470
2471 * net/tramp.el (tramp-replace-environment-variables):
2472 Hide compiler warning.
2473 (tramp-file-name-for-operation): Remove `executable-find',
2474 `start-process', `call-process' and `call-process-region'.
2475
2476 * net/tramp-compat.el (top): Don't require 'tramp-util and 'tramp-vc.
2477
2478 * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error): Ensure backward
2479 compatibility.
2480
2481 * net/tramp-sh.el (top): Remove `tramp-sh-handle-call-process-region'.
2482
2483 2012-12-06 Chong Yidong <cyd@gnu.org>
2484
2485 * ffap.el (ffap-replace-file-component): Fix typo.
2486
2487 2012-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
2488
2489 * progmodes/octave-mod.el (octave-mark-block): Move out of tokens and
2490 fix open-paren-like token test (bug#12785).
2491
2492 2012-12-06 Glenn Morris <rgm@gnu.org>
2493
2494 * mail/rmailsum.el (rmail-new-summary): Tweak for
2495 rmail-maybe-display-summary changing buffer. (Bug#13066)
2496
2497 2012-12-06 Juri Linkov <juri@jurta.org>
2498
2499 * info.el (Info-fontify-node): Don't hide the last newline.
2500 (Bug#12272)
2501
2502 2012-12-06 Katsumi Yamaoka <yamaoka@jpl.org>
2503
2504 * mail/mailabbrev.el (mail-abbrev-expand-wrapper): Work in minibuffer
2505 so as to enable message-read-from-minibuffer to expand mail aliases.
2506
2507 2012-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
2508
2509 * minibuf-eldef.el (minibuf-eldef-update-minibuffer): Don't mess with
2510 the `intangible' property.
2511 Suggested by Christopher Schmidt <christopher@ch.ristopher.com>
2512
2513 2012-12-05 Deniz Dogan <deniz@dogan.se>
2514
2515 * net/rcirc.el (rcirc-urls): Update documentation.
2516 (rcirc-condition-filter): New function.
2517 (rcirc-browse-url, rcirc-markup-urls): Use only URLs before point
2518 and exclude consecutive duplicate URLs (Bug#6082).
2519
2520 2012-12-05 Michael Albinus <michael.albinus@gmx.de>
2521
2522 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
2523 Check return code of copy command.
2524
2525 * net/tramp-adb.el (tramp-adb-sdk-dir, tramp-adb-prompt):
2526 Use group `tramp'. Add version.
2527
2528 2012-12-05 Chong Yidong <cyd@gnu.org>
2529
2530 * ffap.el (ffap-url-regexp): Don't require matching at front of
2531 string (Bug#4952).
2532 (ffap-url-p): If only a substring matches, return that.
2533 (ffap-url-at-point): Use the return value of ffap-url-p.
2534 (ffap-read-file-or-url, ffap-read-file-or-url-internal)
2535 (find-file-at-point, dired-at-point, dired-at-point-prompter)
2536 (ffap-guess-file-name-at-point): Likewise.
2537 (ffap-replace-file-component): Fix typo.
2538
2539 * info.el (info-display-manual): Add existing Info buffers, whose
2540 files may not be in Info-directory-list, to the completion.
2541 (info--manual-names): New helper function.
2542
2543 2012-12-05 Glenn Morris <rgm@gnu.org>
2544
2545 * vc/vc-hg.el (vc-hg-resolve-when-done, vc-hg-find-file-hook):
2546 New functions, for detecting and resolving conflicts. (Bug#10709)
2547
2548 2012-12-04 Jambunathan K <kjambunathan@gmail.com>
2549
2550 * hi-lock.el (hi-lock-auto-select-face): New user variable.
2551 (hi-lock-auto-select-face-defaults): New buffer local variable.
2552 (hi-lock-read-face-name): Honor `hi-lock-auto-select-face'.
2553 (hi-lock-unface-buffer): Prompt user with useful defaults.
2554 With prefix arg, unhighlight all hi-lock patterns in buffer.
2555
2556 2012-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
2557
2558 * obsolete/terminal.el, obsolete/longlines.el: Add obsolecence info.
2559
2560 2012-12-04 Michael Albinus <michael.albinus@gmx.de>
2561
2562 * Makefile.in (TRAMP_SRC):
2563 * makefile.w32-in (TRAMP_SRC): Add tramp-adb.el.
2564
2565 2012-12-04 Juergen Hoetzel <juergen@archlinux.org>
2566
2567 * net/tramp-adb.el: New package.
2568
2569 2012-12-04 Chong Yidong <cyd@gnu.org>
2570
2571 * terminal.el: Move to obsolete/.
2572
2573 * longlines.el: Move to obsolete/.
2574
2575 * vc/ediff-diff.el (ediff-extract-diffs, ediff-extract-diffs3):
2576 Remove code referring to longlines mode.
2577
2578 2012-12-03 Juri Linkov <juri@jurta.org>
2579
2580 * sort.el (delete-duplicate-lines): New command. (Bug#13032)
2581
2582 2012-12-03 Agustín Martín Domingo <agustin.martin@hispalinux.es>
2583
2584 * textmodes/ispell.el (ispell-init-process)
2585 (ispell-start-process, ispell-internal-change-dictionary):
2586 Make sure personal dictionary name is expanded after initial
2587 `default-directory' value. Use expanded strings for
2588 keep/restart checks and for value (Bug#13019).
2589
2590 2012-12-03 Jay Belanger <jay.p.belanger@gmail.com>
2591
2592 * calc/calc-forms.el (math-date-to-iso-dt): Fix weekday number.
2593
2594 2012-12-03 Leo Liu <sdl.web@gmail.com>
2595
2596 * files.el (dir-locals-read-from-file): Check file non-empty
2597 before reading. (Bug#13038)
2598
2599 2012-12-03 Glenn Morris <rgm@gnu.org>
2600
2601 * jka-cmpr-hook.el (jka-compr-get-compression-info):
2602 Remove any version extension before checking filename. (Bug#13006)
2603 (jka-compr-compression-info-list): Belated :version bump.
2604
2605 2012-12-03 Chong Yidong <cyd@gnu.org>
2606
2607 * simple.el (transient-mark-mode): Doc fix (Bug#11523).
2608
2609 * buff-menu.el (Buffer-menu-delete-backwards, Buffer-menu-mode)
2610 (buffer-menu): Doc fix (Bug#12294).
2611
2612 2012-12-03 Roland Winkler <winkler@gnu.org>
2613
2614 * calendar/diary-lib.el (diary-header-line-format): Use keybinding
2615 of diary-show-all-entries in the diary buffer (Bug#12994).
2616
2617 2012-12-03 Michael Albinus <michael.albinus@gmx.de>
2618
2619 * net/tramp-sh.el (tramp-perl-encode): Use "read STDIN" instead of
2620 "<STDIN>". This is binary safe.
2621
2622 2012-12-03 Jay Belanger <jay.p.belanger@gmail.com>
2623
2624 * calc/calc-forms.el (math-absolute-from-iso-dt)
2625 (math-date-to-iso-dt, math-parse-iso-date-validate)
2626 (math-iso-dt-to-date): New functions.
2627 (math-fd-iso-dt, math-fd-isoyear, math-fd-isoweek)
2628 (math-fd-isoweekday): New variables.
2629 (calc-date-notation, math-parse-standard-date, math-format-date)
2630 (math-format-date-part): Add support for more formatting codes.
2631
2632 2012-12-02 Dmitry Gutov <dgutov@yandex.ru>
2633
2634 * vc/vc.el (vc-delete-file, vc-rename-file): Default to the
2635 current buffer's file name when called interactively (Bug#12488).
2636
2637 2012-12-02 Juri Linkov <juri@jurta.org>
2638
2639 * info.el (info-display-manual): Don't clobber an existing Info
2640 buffer (Bug#10770). Add completion (Bug#10771).
2641
2642 2012-12-01 Yuya Nishihara <yuya@tcha.org> (tiny change)
2643
2644 * vc/vc-hooks.el (vc-find-file-hook): Expand buffer-file-truename
2645 before using it for comparison (Bug#5297).
2646
2647 2012-12-01 Jari Aalto <jari.aalto@cante.net>
2648
2649 * textmodes/css-mode.el (css-current-defun-name): New function.
2650 (css-mode): Use it.
2651
2652 * textmodes/sgml-mode.el (html-current-defun-name): New function.
2653 (html-mode): Use it.
2654
2655 2012-12-01 Chong Yidong <cyd@gnu.org>
2656
2657 Modularize add-log-current-defun (Bug#2224).
2658 Suggested by Jari Aalto.
2659
2660 * vc/add-log.el (add-log-current-defun-function): Doc fix.
2661 (add-log-current-defun): Move mode-specific code to other files.
2662 (add-log-lisp-like-modes, add-log-c-like-modes)
2663 (add-log-tex-like-modes): Variables deleted.
2664
2665 * emacs-lisp/lisp-mode.el (lisp-current-defun-name): New.
2666 (lisp-mode-variables): Use it.
2667
2668 * progmodes/cc-mode.el (c-common-init):
2669 * progmodes/cperl-mode.el (cperl-mode): Set a value for
2670 add-log-current-defun-function.
2671
2672 * progmodes/m4-mode.el (m4-current-defun-name): New function.
2673 (m4-mode): Use it.
2674
2675 * progmodes/perl-mode.el (perl-current-defun-name): New.
2676 (perl-mode): Use it.
2677
2678 * progmodes/scheme.el (scheme-mode-variables, dsssl-mode):
2679 Use lisp-current-defun-name.
2680
2681 * textmodes/tex-mode.el (tex-current-defun-name): New.
2682 (tex-common-initialization): Use it.
2683
2684 * textmodes/texinfo.el (texinfo-current-defun-name): New.
2685 (texinfo-mode): Use it.
2686
2687 2012-12-01 Chong Yidong <cyd@gnu.org>
2688
2689 * emacs-lisp/lisp-mode.el (lisp-mode-variables, lisp-mode):
2690 * progmodes/autoconf.el (autoconf-mode):
2691 * progmodes/js.el (js-mode):
2692 * progmodes/make-mode.el (makefile-mode, makefile-makepp-mode)
2693 (makefile-bsdmake-mode, makefile-imake-mode, makefile-browse):
2694 * progmodes/perl-mode.el (perl-mode):
2695 * progmodes/sh-script.el (sh-mode, sh-set-shell):
2696 * textmodes/css-mode.el (css-mode):
2697 * textmodes/sgml-mode.el (html-mode, sgml-mode)
2698 (sgml-tags-invisible, sgml-guess-indent):
2699 * textmodes/tex-mode.el (tex-common-initialization)
2700 (latex-complete-bibtex-keys, tex-shell, tex-main-file)
2701 (doctex-mode, plain-tex-mode, latex-mode):
2702 * textmodes/texinfo.el (texinfo-mode): Use setq-local.
2703
2704 2012-12-01 Kirk Kelsey <kirk.kelsey@0x4b.net>
2705
2706 * vc/vc-hg.el (vc-hg-next-revision):
2707 Ensure use of default "tip" output format. (Bug#6968)
2708
2709 2012-12-01 Kim F. Storm <storm@cua.dk>
2710
2711 * startup.el (fancy-startup-tail): Add a clickable link
2712 (Bug#2176).
2713
2714 2012-12-01 Chong Yidong <cyd@gnu.org>
2715
2716 * startup.el (fancy-startup-tail): Improve the message about
2717 auto-save files (Bug#2176).
2718
2719 * files.el (recover-session): Improve the descriptive message, and
2720 use substitute-command-keys.
2721
2722 2012-12-01 Glenn Morris <rgm@gnu.org>
2723
2724 * ido.el (ido-file-internal):
2725 Handle other-window, other-frame for dired. (Bug#13036)
2726
2727 2012-11-30 Glenn Morris <rgm@gnu.org>
2728
2729 * icomplete.el (icomplete-separator): Fix :version.
2730
2731 2012-11-30 Chong Yidong <cyd@gnu.org>
2732
2733 * shell.el (shell): For C-u M-x shell, use an inactive shell
2734 buffer as the default (Bug#1975).
2735 (shell-apply-ansi-color, shell-reapply-ansi-color): New functions.
2736 (shell-mode): Use them to reapply ansi colorization if Shell mode
2737 is re-enabled.
2738
2739 2012-11-30 Yuriy Vostrikov <delamonpansie@gmail.com> (tiny change)
2740
2741 * vc/vc-git.el (vc-git-command): Disable the pager (Bug#6137).
2742
2743 2012-11-30 Samuel Bronson <naesten@gmail.com>
2744
2745 * progmodes/grep.el (grep-compute-defaults): Do not pass the -e
2746 flag to xargs, for compatibility with BSD xargs (Bug#11703).
2747
2748 2012-11-30 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
2749
2750 * textmodes/fill.el (fill-region-as-paragraph): Handle overshoot
2751 by move-to-column (Bug#3234).
2752
2753 2012-11-30 Chong Yidong <cyd@gnu.org>
2754
2755 * longlines.el (longlines-wrap-line, longlines-encode-region):
2756 Preserve text properties (Bug#1425).
2757
2758 2012-11-30 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
2759
2760 * vc/vc.el (vc-register): Allow registering a file which is
2761 already registered with a different backend (Bug#10589).
2762
2763 2012-11-29 Jambunathan K <kjambunathan@gmail.com>
2764 Stefan Monnier <monnier@iro.umontreal.ca>
2765
2766 * icomplete.el: Change separator; add ido-style commands.
2767 (icomplete-show-key-bindings): Remove custom var.
2768 (icomplete-get-keys): Remove function.
2769 (icomplete-forward-completions, icomplete-backward-completions):
2770 New commands.
2771 (icomplete-minibuffer-map): New var.
2772 (icomplete-minibuffer-setup): Use it.
2773 (icomplete-exhibit): Don't delay if the list of completions is known.
2774 (icomplete-separator): New custom.
2775 (icomplete-completions): Use it.
2776 * minibuffer.el (completion-all-sorted-completions): Delete duplicates.
2777 (minibuffer-force-complete-and-exit): New command.
2778 (minibuffer--complete-and-exit): New function extracted from
2779 minibuffer-complete-and-exit.
2780 (minibuffer-complete-and-exit): Use it.
2781
2782 * progmodes/etags.el (visit-tags-table-buffer): Give a more precise
2783 error message when the file doesn't exist (bug#12974).
2784
2785 2012-11-29 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
2786
2787 * simple.el (activate-mark): Run activate-mark-hook (bug#13027).
2788
2789 2012-11-29 Glenn Morris <rgm@gnu.org>
2790
2791 * files.el (hack-dir-local-variables): Warn if try to set
2792 coding via dir-locals, since it doesn't work. (Bug#7169)
2793
2794 Add desktop support for restoring vc-dir buffers. (Bug#10606)
2795 * vc/vc-dir.el (vc-dir-mode): Autoload it (for desktop restore).
2796 Set buffer-local value of desktop-save-buffer.
2797 (vc-dir-desktop-buffer-misc-data, vc-dir-restore-desktop-buffer):
2798 New functions.
2799 (desktop-buffer-mode-handlers): Add vc-dir-mode entry.
2800 * desktop.el (desktop-save-buffer-p): Treat vc-dir like dired.
2801
2802 * files.el (inhibit-local-variables-ignore-case): New. (Bug#10610)
2803 (inhibit-local-variables-p): Use inhibit-local-variables-ignore-case.
2804 Doc fix.
2805 (inhibit-local-variables-regexps, inhibit-local-variables-suffixes):
2806 Doc fixes.
2807
2808 2012-11-28 Jay Belanger <jay.p.belanger@gmail.com>
2809
2810 * calc/calc-forms.el (calc-date-notation): Fix regexp
2811 used to find time codes. Fix symbol for seconds.
2812
2813 2012-11-27 Glenn Morris <rgm@gnu.org>
2814
2815 * emacs-lisp/derived.el (derived-mode-make-docstring):
2816 Don't mention "abbrev" or "syntax" if nil. (Bug#11277)
2817
2818 2012-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
2819
2820 * textmodes/table.el (table-insert): Don't use `symbol-name' on
2821 lexically scoped variables (bug#13005).
2822
2823 2012-11-27 Glenn Morris <rgm@gnu.org>
2824
2825 * vc/vc-hooks.el (vc-mistrust-permissions):
2826 Default to t, to avoid data-loss. (Bug#11490)
2827
2828 2012-11-27 Fabián Ezequiel Gallina <fgallina@cuca>
2829
2830 * progmodes/python.el (python-indent-guess-indent-offset):
2831 If indentation is guessed make python-indent-offset buffer-local.
2832
2833 Fix Imenu regression.
2834 * progmodes/python.el (python-nav-beginning-of-defun):
2835 Fix forward movement when statement(s) separates point from defun.
2836 (python-imenu-prev-index-position): New function.
2837
2838 2012-11-27 Eli Zaretskii <eliz@gnu.org>
2839
2840 * subr.el (buffer-file-type): Declare with defvar-local. Doc fix.
2841
2842 * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
2843 Don't set buffer-file-type. Return nil. (Bug#12989)
2844
2845 2012-11-27 Glenn Morris <rgm@gnu.org>
2846
2847 * hippie-exp.el (hippie-expand-try-functions-list):
2848 Re-autoload it. (Bug#12982)
2849
2850 2012-11-27 Eli Zaretskii <eliz@gnu.org>
2851
2852 * descr-text.el (describe-char-padded-string):
2853 Call internal-char-font only on GUI frames. (Bug#11964)
2854
2855 2012-11-27 Andreas Schwab <schwab@linux-m68k.org>
2856
2857 * buff-menu.el (Buffer-menu-buffer+size-width): Fix customize type
2858 and obsoletion message.
2859
2860 2012-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
2861
2862 * emacs-lisp/cl-macs.el (cl--transform-lambda): Add back `declare' in
2863 the constructs to keep outside of the `cl-block' (bug#12977).
2864
2865 2012-11-27 Chong Yidong <cyd@gnu.org>
2866
2867 * mouse.el (mouse-drag-line): Even if the line is not draggable,
2868 keep reading until we get the up-event anyway, in order to process
2869 the up-event for mouse-1-click-follows-link (Bug#12971).
2870
2871 2012-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
2872
2873 * emacs-lisp/advice.el (ad-should-compile): Don't compile advice if the
2874 base function is not yet defined (bug#12965).
2875 (ad-activate-advised-definition): Use ad-compile-function.
2876 (ad-activate): Use cond.
2877
2878 2012-11-25 Leo Liu <sdl.web@gmail.com>
2879
2880 * textmodes/sgml-mode.el (sgml-tag): Fix indentation for closing tag.
2881 (Bug#12979)
2882
2883 2012-11-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
2884
2885 * textmodes/reftex-parse.el (reftex-parse-from-file): Use variable
2886 reftex-section-info-function in order to be compatible with
2887 Texinfo integration.
2888
2889 * textmodes/reftex.el (reftex-section-pre-regexp)
2890 (reftex-section-post-regexp, reftex-section-info-function):
2891 New variable.
2892 (reftex-compile-variables): Use variables reftex-section-pre-regexp,
2893 reftex-section-post-regexp, and reftex-section-info-function in order
2894 to be compatible with Texinfo integration.
2895
2896 * textmodes/reftex-toc.el (reftex-toc-promote-action):
2897 use reftex-section-pre-regexp variable in order to be compatible with
2898 Texinfo integration.
2899
2900 2012-11-25 Chong Yidong <cyd@gnu.org>
2901
2902 * faces.el: Make face-spec-set more analogous to setq.
2903 (face-spec-set): Change the third arg to specify whether this
2904 function is being called via defface, customize, or a third party.
2905 Set the appropriate symbol properties. Clear the override spec if
2906 setting via Custom. Initialize face if necessary. (Bug#4988)
2907 (face-spec-recalc): Allow theme faces to completely replace the
2908 defface spec, in the same way as custom faces (Bug#8454).
2909
2910 * cus-face.el (custom-declare-face): Move face initialization to
2911 face-spec-set.
2912 (custom-theme-set-faces): Don't initialize the face name here, as
2913 that is now done in face-spec-set.
2914
2915 * cus-edit.el (custom-face-set, custom-face-mark-to-save)
2916 (custom-face-reset-saved, custom-face-mark-to-reset-standard):
2917 Simplify by using the new arg to face-spec-set.
2918
2919 * emacs-lisp/lisp-mode.el (eval-defun-1): When evaluating defface,
2920 reset face-override-spec too, and use custom-declare-face.
2921
2922 2012-11-24 Jan Djärv <jan.h.d@swipnet.se>
2923
2924 * term/ns-win.el (ns-initialize-window-system): Move creation of
2925 fontsets here (Bug#11964).
2926
2927 2012-11-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
2928
2929 * ses.el (ses-rename-cell): Correct bug on mode-line update after
2930 cell renaming.
2931
2932 2012-11-24 Chong Yidong <cyd@gnu.org>
2933
2934 * woman.el (woman-default-faces, woman-monochrome-faces): Mark as
2935 obsolete.
2936
2937 * custom.el (custom-theme-set-variables): Use a topological sort
2938 for ordering by custom dependencies (Bug#12952).
2939 (custom--sort-vars, custom--sort-vars-1): New functions.
2940
2941 2012-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
2942
2943 * emacs-lisp/bytecomp.el (byte-compile-file): Setup default value for
2944 lexical-binding (bug#12938).
2945
2946 2012-11-24 Wolfgang Jenkner <wjenkner@inode.at>
2947
2948 * image-mode.el (image-transform-check-size): Use assertions only
2949 for images of type imagemagick.
2950
2951 Otherwise no error, image-transform-fit-to-{width,height} is
2952 silently ignored, as before. Doc fix.
2953
2954 2012-11-24 Chong Yidong <cyd@gnu.org>
2955
2956 * faces.el (color-defined-p): Doc fix (Bug#12853).
2957
2958 2012-11-24 Juri Linkov <juri@jurta.org>
2959
2960 * dired.el (dired-mark): Add optional arg `interactive'.
2961 Check for `use-region-p' if `interactive' is non-nil.
2962 (dired-unmark, dired-flag-file-deletion): Add optional arg
2963 `interactive'. Call `dired-mark' with the arg `interactive'.
2964 (Bug#10624)
2965
2966 * wdired.el: Revert 2012-10-17 change partly and replace it with
2967 Patch by Christopher Schmidt <christopher@ch.ristopher.com>.
2968 (wdired-finish-edit): Add marks for new file names to
2969 `wdired-old-marks'. Restore marks using `dired-mark-remembered'
2970 after `revert-buffer'.
2971 (wdired-do-renames): Remove calls to `dired-remove-file',
2972 `dired-add-file', `dired-add-entry'. (Bug#11795)
2973
2974 2012-11-24 Alan Mackenzie <acm@muc.de>
2975
2976 * progmodes/cc-defs.el (c-version): Bump to 5.32.4.
2977
2978 Fix bugs in the state cache. Enhance a debugging mechanism.
2979 * progmodes/cc-engine.el (c-parse-state-get-strategy): Don't use
2980 "brace at column zero" strategy for C++.
2981 (c-append-lower-brace-pair-to-state-cache): Repair algorithm.
2982 (c-parse-state-point): New variable.
2983 (c-record-parse-state-state): Record old parse state with
2984 `copy-tree'. Record previous value of point.
2985 (c-debug-parse-state-double-cons): New debugging function.
2986 (c-debug-parse-state): Call the above new function.
2987 (c-toggle-parse-state-debug): Output a confirmatory message.
2988
2989 * progmodes/cc-mode.el (c-before-change, c-after-change):
2990 Call c-invalidate-state-cache from `c-before-change' instead of
2991 `c-after-change'.
2992
2993 2012-11-23 Chong Yidong <cyd@gnu.org>
2994
2995 * find-cmd.el (find-constituents): Add executable, ipath,
2996 readable, samefile, writable, daystart, regextype (Bug#12856).
2997
2998 2012-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
2999
3000 * emacs-lisp/ert.el, emacs-lisp/ert-x.el: Use cl-lib and lexical-binding.
3001
3002 2012-11-22 Paul Eggert <eggert@cs.ucla.edu>
3003
3004 * calc/calc.el (calc-gregorian-switch): Move to after calc-refresh
3005 definition. This fixes a bootstrap failure.
3006 (calc-gregorian-switch): In menu, put dates before regions.
3007 This is easier to follow, lines up better in the menu, and lets us
3008 coalesce regions that switch at the same time. Give country
3009 names, not "Vatican", as that's better for non-expert users.
3010 Use names that are stable between the date of switch and now, e.g.,
3011 Bohemia and Moravia (which existed then and now) and not
3012 Czechoslovakia (which didn't exist then and doesn't exist now).
3013 What is now the U.S. mostly did not switch at the same time as
3014 Britain, so omit the U.S. Correct spelling of "Britain".
3015 Catholic Switzerland was too much of a mess, so omit it.
3016
3017 2012-11-22 Jay Belanger <jay.p.belanger@gmail.com>
3018
3019 * calc/calc.el (calc-gregorian-switch): Refresh the Calc buffer
3020 after the variable is changed.
3021
3022 2012-11-21 Daniel Colascione <dancol@dancol.org>
3023
3024 * progmodes/sql.el (sql-mode-font-lock-object-name): Support IF NOT EXISTS
3025 in SQL declarations for font-lock.
3026 (sql-imenu-generic-expression): Teach imenu about IF NOT EXISTS.
3027
3028 2012-11-21 Glenn Morris <rgm@gnu.org>
3029
3030 * faces.el (face-underline-p, face-inverse-video-p, face-bold-p)
3031 (face-italic-p): Add optional argument "inherit".
3032
3033 * faces.el (set-face-inverse-video, set-face-bold, set-face-italic):
3034 Remove -p suffix from names, for consistency with other set-face-*.
3035 (set-face-inverse-video): Fix interactive spec.
3036 * play/gamegrid.el (gamegrid-make-mono-tty-face):
3037 * textmodes/table.el (table--update-cell-face):
3038 Use set-face-inverse-video rather than now obsolete alias.
3039
3040 2012-11-21 Eli Zaretskii <eliz@gnu.org>
3041
3042 * simple.el (line-move): Don't call line-move-partial if
3043 scroll-conservatively is in effect. (Bug#12927)
3044
3045 2012-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
3046
3047 * eshell/em-cmpl.el (eshell-pcomplete): Refine fix for bug#12838:
3048 Fallback on completion-at-point rather than
3049 pcomplete-expand-and-complete, and only if pcomplete actually failed.
3050 (eshell-cmpl-initialize): Setup completion-at-point.
3051
3052 * pcomplete.el (pcomplete--entries): Obey pcomplete-ignore-case.
3053
3054 * emacs-lisp/ert.el (ert--expand-should-1): Adapt to cl-lib.
3055
3056 2012-11-21 Michael Albinus <michael.albinus@gmx.de>
3057
3058 * net/tramp-sh.el (tramp-do-copy-or-rename-file): If both files
3059 are remote, check out-of-band property for both.
3060
3061 2012-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
3062
3063 * window.el (switch-to-buffer): Re-add the warning that was lost in the
3064 code rewrite.
3065
3066 2012-11-21 Paul Eggert <eggert@cs.ucla.edu>
3067
3068 More minor time fixes.
3069 * calendar/time-date.el: Commentary fix.
3070 * net/tramp-sh.el (tramp-do-file-attributes-with-ls): Undo last change;
3071 too much other code depends on (0 0) time stamps.
3072 * net/tramp.el (tramp-time-less-p, tramp-time-subtract):
3073 Add a couple of FIXME comments.
3074
3075 Minor cleanup for times as lists of four integers.
3076 * files.el (dir-locals-directory-cache):
3077 * ps-bdf.el (bdf-file-mod-time, bdf-read-font-info):
3078 Doc fixes.
3079 * net/tramp-sh.el (tramp-do-file-attributes-with-ls):
3080 * ps-bdf.el (bdf-file-newer-than-time):
3081 Process four-integers time stamps, not two. Doc fixes.
3082
3083 2012-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
3084
3085 * uniquify.el (uniquify-managed): Use defvar-local.
3086 (rename-buffer, create-file-buffer): Advise with advice-add.
3087 (uniquify-unload-function): Unadvise accordingly.
3088
3089 * emacs-lisp/trace.el: Rewrite, use nadvice and lexical-binding.
3090 (trace-buffer): Don't purecopy.
3091 (trace-entry-message, trace-exit-message): Add `context' arg.
3092 (trace--timer): New var.
3093 (trace-make-advice): Adjust for use in nadvice.
3094 Add `context' argument. Delay `display-buffer' via a timer.
3095 (trace-function-internal): Use advice-add.
3096 (trace--read-args): New function.
3097 (trace-function-foreground, trace-function-background): Use it.
3098 (trace-function): Rename to trace-function-foreground and redefine as
3099 an alias to that new name.
3100 (untrace-function, untrace-all): Adjust to the use of nadvice.
3101
3102 * emacs-lisp/bytecomp.el (byte-compile): Fix handling of closures.
3103
3104 * emacs-lisp/byte-run.el (defun-declarations-alist): Fix last change.
3105
3106 * subr.el (called-interactively-p-functions): New var.
3107 (internal--called-interactively-p--get-frame): New macro.
3108 (called-interactively-p, interactive-p): Rewrite in Lisp.
3109 * emacs-lisp/nadvice.el (advice--called-interactively-skip): New fun.
3110 (called-interactively-p-functions): Use it.
3111 * emacs-lisp/edebug.el (edebug--called-interactively-skip): New fun.
3112 (called-interactively-p-functions): Use it.
3113 * allout.el (allout-called-interactively-p): Don't assume
3114 called-interactively-p is a subr.
3115
3116 2012-11-20 Glenn Morris <rgm@gnu.org>
3117
3118 * profiler.el (profiler-report-mode-map): Add a menu.
3119 No need to bind `q' because we derive from special-mode.
3120 (profiler-report-find-entry): Handle calls from the menu-bar.
3121
3122 2012-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
3123
3124 * emacs-lisp/byte-run.el (defun-declarations-alist):
3125 Allow a compiler-macro to be a lambda expression.
3126
3127 * progmodes/python.el: Use cl-lib. Move var declarations outside of
3128 eval-when-compile.
3129 (python-syntax-context): Add compiler-macro.
3130 (python-font-lock-keywords): Simplify with De Morgan.
3131
3132 * vc/diff-mode.el (diff-hunk): Don't make useless timers.
3133
3134 * files.el (load-file): Require match in minibuffer selection, as was
3135 the case in Emacs-20 before we changed the spec to allow .elc files
3136 (bug#12935).
3137
3138 * json.el: Don't require cl since we don't use it.
3139 * color.el: Don't require cl.
3140 (color-complement): `caddr' -> `nth 2'.
3141
3142 * calendar/time-date.el (time-to-seconds): De-obsolete.
3143
3144 2012-11-19 Jay Belanger <jay.p.belanger@gmail.com>
3145
3146 * calc/calc-forms.el (math-leap-year-p): Fix formula for negative
3147 year numbers.
3148 (math-date-to-julian-dt): Adjust the initial approximation for the
3149 year to deal with the new definition of the DATE.
3150
3151 2012-11-19 Daniel Colascione <dancol@dancol.org>
3152
3153 * term/w32-win.el (cygwin-convert-path-from-windows):
3154 Accomodate rename of cygwin_convert_path* to cygwin_convert_file_name*.
3155
3156 2012-11-18 Chong Yidong <cyd@gnu.org>
3157
3158 * filecache.el (file-cache--read-list): New function.
3159 (file-cache-add-directory-list, file-cache-add-file-list)
3160 (file-cache-delete-file-list, file-cache-delete-directory-list):
3161 Use it to read a list of files or directories (Bug#12846).
3162 (file-cache-add-file, file-cache-add-directory)
3163 (file-cache-delete-file-list, file-cache-delete-file-regexp)
3164 (file-cache-delete-directory): Print an message.
3165
3166 2012-11-18 Jay Belanger <jay.p.belanger@gmail.com>
3167
3168 * calc/calc-forms.el (math-date-to-dt): Use integer date when
3169 calling `math-date-to-julian-dt' and 'math-date-to-gregorian-dt'.
3170
3171 2012-11-18 Glenn Morris <rgm@gnu.org>
3172
3173 * image.el (insert-image, insert-sliced-image): Doc fix.
3174
3175 2012-11-18 Chong Yidong <cyd@gnu.org>
3176
3177 * emacs-lisp/syntax.el (syntax-propertize-function): Doc fix
3178 (Bug#12810).
3179
3180 2012-11-18 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
3181
3182 * vc/vc-svn.el (vc-svn-merge-news): Properly parse the merge
3183 response when the target file is in a subdirectory (Bug#12757).
3184
3185 2012-11-18 Chong Yidong <cyd@gnu.org>
3186
3187 * filecache.el (file-cache-add-file-list): Doc fix (Bug#12694).
3188
3189 2012-11-18 Glenn Morris <rgm@gnu.org>
3190
3191 * emacs-lisp/cl-lib.el (face-underline-p):
3192 Use set-face-underline rather than the alias set-face-underline-p.
3193
3194 * window.el (with-temp-buffer-window): Doc fix.
3195 * subr.el (with-output-to-temp-buffer):
3196 Add doc xref to with-temp-buffer-window.
3197
3198 2012-11-18 Juanma Barranquero <lekktu@gmail.com>
3199
3200 * woman.el (woman-non-underline-faces): Use `set-face-underline'.
3201 * calc/calc.el (math-format-date-cache): Declare.
3202
3203 2012-11-17 Paul Eggert <eggert@cs.ucla.edu>
3204
3205 Calc by default uses the Gregorian calendar for all dates (Bug#12633).
3206 It also uses January 1, 1 AD as its day number 1.
3207 * calc/calc-forms.el (math-julian-date-beginning)
3208 (math-julian-date-beginning-int): Implement this.
3209
3210 2012-11-17 Juanma Barranquero <lekktu@gmail.com>
3211
3212 * descr-text.el (quail-find-key):
3213 * dired.el (desktop-file-name):
3214 * dirtrack.el (shell-prefixed-directory-name, shell-process-cd):
3215 * generic-x.el (comint-mode, comint-exec):
3216 * image-dired.el (widget-forward):
3217 * info.el (speedbar-add-expansion-list, speedbar-center-buffer-smartly)
3218 (speedbar-change-expand-button-char)
3219 (speedbar-change-initial-expansion-list, speedbar-delete-subblock)
3220 (speedbar-make-specialized-keymap, speedbar-make-tag-line):
3221 * printing.el (easy-menu-add-item, easy-menu-remove-item)
3222 (widget-field-action, widget-value-set):
3223 * speedbar.el (imenu--make-index-alist):
3224 * term.el (ring-empty-p, ring-ref, ring-insert-at-beginning)
3225 (ring-length, ring-insert):
3226 * vcursor.el (compare-windows-skip-whitespace):
3227 * woman.el (dired-get-filename):
3228 Declare functions.
3229
3230 * term/w32-win.el (cygwin-convert-path-from-windows): Fix declaration.
3231
3232 2012-11-17 Jay Belanger <jay.p.belanger@gmail.com>
3233
3234 * calc/calc.el (calc-gregorian-switch): New variable.
3235
3236 * calc/calc-forms.el (math-day-in-year, math-dt-before-p)
3237 (math-absolute-from-gregorian-dt, math-absolute-from-julian-dt)
3238 (math-date-to-julian-dt, math-date-to-gregorian-dt): New functions.
3239 (math-leap-year-p): Add option to distinguish between Julian
3240 and Gregorian calendars.
3241 (math-day-number): Use `math-day-in-year' to do the computations.
3242 (math-absolute-from-dt): Rename from `math-absolute-from-date'.
3243 Use `math-absolute-from-gregorian' and `math-absolute-from-julian'
3244 to do the computations.
3245 (math-date-to-dt): Use `math-date-to-julian-dt' and
3246 `math-date-to-gregorian-dt' to do the computations.
3247 (calcFunc-weekday, math-format-date-part): Use the new version of
3248 the DATE to determine the weekday.
3249 (calcFunc-newmonth, calcFunc-newyear): Use `calc-gregorian-switch'
3250 when necessary.
3251
3252 2012-11-17 Eli Zaretskii <eliz@gnu.org>
3253
3254 * term/w32-win.el (w32-handle-dropped-file): Use 'file://' only on
3255 Cygwin; otherwise use 'file:'. (Bug#12914)
3256 (cygwin-convert-path-from-windows): Declare, to avoid
3257 byte-compiler warnings.
3258
3259 2012-11-17 Andreas Politz <politza@fh-trier.de>
3260
3261 * ibuffer.el (ibuffer-mark-forward, ibuffer-unmark-forward)
3262 (ibuffer-unmark-backward, ibuffer-mark-interactive): Support plain
3263 prefix and negative numeric prefix args (Bug#12795).
3264
3265 2012-11-17 Stephen Berman <stephen.berman@gmx.net>
3266
3267 * play/gamegrid.el (gamegrid-add-score-with-update-game-score-1):
3268 Don't signal an error with a score that is too low to add to the
3269 list of top scores. (Bug#12779)
3270
3271 2012-11-17 Chong Yidong <cyd@gnu.org>
3272
3273 * help-mode.el (help-xref-interned): End on point-min (Bug#12737).
3274
3275 * filecache.el (file-cache-add-file): Handle relative file name in
3276 the argument (Bug#12694).
3277
3278 2012-11-16 Jürgen Hötzel <juergen@archlinux.org> (tiny change)
3279
3280 * eshell/em-unix.el (eshell/mkdir): Handle "--parents" (bug#12897).
3281
3282 2012-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
3283
3284 * emacs-lisp/advice.el (ad-make-advised-definition): Improve last fix.
3285
3286 * emacs-lisp/cl-lib.el: Set more meaningful version number.
3287
3288 2012-11-16 Martin Rudalics <rudalics@gmx.at>
3289
3290 * window.el (enlarge-window, shrink-window): Don't mention return
3291 value in doc-string (Bug#12896).
3292 (window--display-buffer): Don't resize frames - it won't work
3293 with all window managers and defeat pop-up-frame-alist.
3294 (display-buffer-alist): In doc-string explain that CONDITION can
3295 be a function and which arguments are passed to it (Bug#12854).
3296 (display-buffer-assq-regexp): New argument ACTION. Handle lambda
3297 expressions (Bug#12854).
3298 (display-buffer): Pass ACTION argument to
3299 display-buffer-assq-regexp.
3300
3301 2012-11-16 Glenn Morris <rgm@gnu.org>
3302
3303 * window.el (fit-frame-to-buffer-bottom-margin)
3304 (fit-frame-to-buffer, fit-window-to-buffer): Doc fixes.
3305
3306 * faces.el (face-underline-p): Use face-attribute-specified-or.
3307
3308 2012-11-16 Juanma Barranquero <lekktu@gmail.com>
3309
3310 * emacs-lisp/cl-macs.el (cl-loop, cl-do, cl-do*): Doc fixes.
3311
3312 2012-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
3313
3314 * emacs-lisp/cl-macs.el (cl-flet, cl-flet*): Fix docstring (bug#12895).
3315
3316 2012-11-16 Glenn Morris <rgm@gnu.org>
3317
3318 * eshell/em-cmpl.el (eshell-pcomplete): New command. (Bug#12838)
3319 (eshell-cmpl-initialize): Bind eshell-pcomplete to TAB, C-i.
3320
3321 * faces.el (face-underline-p): Doc fix. Handle :underline being
3322 things other than `t' (a string, a list).
3323 (face-inverse-video-p): Doc fix.
3324 (set-face-underline): Rename it back from set-face-underline-p.
3325 Doc fix. Allow interactive input of values other than t.
3326 (read-face-attribute): Apply formatting to :underline,
3327 since like :box and :stipple it can take list values.
3328
3329 * term.el (ansi-term): Don't let C-x escape-char binding
3330 clobber the more standard C-c binding. (Bug#12842)
3331
3332 * subr.el (set-temporary-overlay-map): Doc fix.
3333
3334 2012-11-16 Martin Rudalics <rudalics@gmx.at>
3335
3336 * window.el (record-window-buffer)
3337 (display-buffer-record-window): When copying the markers to
3338 window-point preserve window-point-insertion-type. (Bug#12588)
3339
3340 2012-11-16 Glenn Morris <rgm@gnu.org>
3341
3342 * emacs-lisp/eieio-datadebug.el (eieio-debug-methodinvoke):
3343 * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error):
3344 Use new names for hooks rather than obsolete aliases.
3345
3346 2012-11-15 Daniel Colascione <dancol@dancol.org>
3347
3348 * term/w32-win.el (w32-handle-dropped-file): Use a "file://"
3349 prefix instead of "file:" so that when FILE-NAME begins with "//",
3350 as it does when the target file is on a network share, url-handler
3351 isn't confused.
3352
3353 2012-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
3354
3355 * emacs-lisp/advice.el (ad-definition-type): Make sure we don't use
3356 a preactivated advice from an old advice.el; they're not compatible!
3357
3358 2012-11-15 Katsumi Yamaoka <yamaoka@jpl.org>
3359
3360 * emacs-lisp/nadvice.el (advice--make-interactive-form):
3361 Fix string-spec case.
3362
3363 * emacs-lisp/advice.el (ad-make-advised-definition): Fix undefined case.
3364
3365 2012-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
3366
3367 * emacs-lisp/nadvice.el: Add buffer-local support to add-function.
3368 (advice--buffer-local-function-sample): New var.
3369 (advice--set-buffer-local, advice--buffer-local): New functions.
3370 (add-function, remove-function): Use them.
3371
3372 2012-11-15 Drew Adams <drew.adams@oracle.com>
3373
3374 * imenu.el (imenu--split-submenus): Use imenu--subalist-p (bug#12717).
3375
3376 2012-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
3377
3378 * emacs-lisp/cl-macs.el (cl--transform-lambda): Defend against
3379 potential binding of print-gensym to t, and prettify (back)quotes in
3380 case they appear in args's default values (bug#12884).
3381
3382 2012-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
3383
3384 * emacs-lisp/nadvice.el: Add around advice for interactive specs.
3385 (advice-eval-interactive-spec): New function.
3386 (advice--make-interactive-form): Support around advice (bug#12844).
3387
3388 2012-11-14 Dmitry Gutov <dgutov@yandex.ru>
3389
3390 * progmodes/ruby-mode.el (ruby-expr-beg): Make heredoc detection
3391 more strict. Add docstring.
3392 (ruby-expression-expansion-re): Extract from
3393 `ruby-match-expression-expansion'.
3394 (ruby-syntax-propertize-function): After everything else, search
3395 for expansions in string literals, mark their insides as
3396 whitespace syntax and save match data for font-lock.
3397 (ruby-font-lock-keywords): Use the 2nd group from expression
3398 expansion matches.
3399 (ruby-match-expression-expansion): Use the match data saved to the
3400 text property in ruby-syntax-propertize-function.
3401
3402 2012-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
3403
3404 * emacs-lisp/gv.el (setf): Fix debug spec for multiple assignments
3405 (bug#12879).
3406
3407 2012-11-13 Dmitry Gutov <dgutov@yandex.ru>
3408
3409 * progmodes/ruby-mode.el (ruby-move-to-block): Looks for a block
3410 start/end keyword a bit harder. Works with different values of N.
3411 Add more comments.
3412 (ruby-end-of-block): Update accordingly.
3413
3414 2012-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
3415
3416 * woman.el (woman-file-name): Don't mess with unread-command-events
3417 (bug#12861).
3418
3419 * emacs-lisp/advice.el: Layer on top of nadvice.el.
3420 Remove out of date self-require hack.
3421 (ad-do-advised-functions): Use simple `dolist'.
3422 (ad-advice-name, ad-advice-protected, ad-advice-enabled)
3423 (ad-advice-definition): Redefine as functions.
3424 (ad-advice-classes): Move before first use.
3425 (ad-make-origname, ad-set-orig-definition, ad-clear-orig-definition)
3426 (ad-make-mapped-call, ad-make-advised-docstring,ad-make-plain-docstring)
3427 (ad--defalias-fset): Remove functions.
3428 (ad-make-advicefunname, ad-clear-advicefunname-definition): New funs.
3429 (ad-get-orig-definition): Rewrite.
3430 (ad-make-advised-definition-docstring): Change base docstring.
3431 (ad-real-orig-definition): Rewrite.
3432 (ad-map-arglists): Change name of called function.
3433 (ad--make-advised-docstring): Redirect `function' from ad-Advice-...
3434 (ad-make-advised-definition): Simplify.
3435 (ad-assemble-advised-definition): Tweak for new calling context.
3436 (ad-activate-advised-definition): Setup ad-Advice-* i.s.o ad-Orig-*.
3437 (ad--defalias-fset): Rename from ad-handle-definition. Make it set the
3438 function and call ad-activate if needed.
3439 (ad-activate, ad-deactivate): Don't call ad-handle-definition any more.
3440 (ad-recover): Clear ad-Advice-* instead of ad-Orig-*.
3441 (ad-compile-function): Compile ad-Advice-*.
3442 (ad-activate-on-top-level, ad-with-auto-activation-disabled): Remove.
3443 (ad-start-advice, ad-stop-advice): Remove.
3444
3445 2012-11-13 Dmitry Gutov <dgutov@yandex.ru>
3446
3447 * progmodes/ruby-mode.el (ruby-add-log-current-method): Print the
3448 period before class method names, not after. Remove handling of
3449 one impossible case. Add comments.
3450
3451 2012-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
3452
3453 * emacs-lisp/advice.el: Remove support for freezing.
3454 (ad-make-freeze-docstring, ad-make-freeze-definition): Remove functions.
3455 (ad-make-single-advice-docstring, ad-defadvice-flags, defadvice):
3456 Remove support for `freeze'.
3457
3458 * emacs-lisp/cl.el (dolist, dotimes, declare): Use advice-add to
3459 override the default.
3460 * emacs-lisp/cl-macs.el (cl-dolist, cl-dotimes): Rewrite without using
3461 cl--dotimes/dolist.
3462 * subr.el (dolist, dotimes, declare): Redefine them normally, even when
3463 `cl' is loaded.
3464
3465 * emacs-lisp/nadvice.el (advice--normalize): New function, extracted
3466 from add-advice.
3467 (advice--strip-macro): New function.
3468 (advice--defalias-fset): Use them to handle macros.
3469 (advice-add): Use them.
3470 (advice-member-p): Correctly handle macros.
3471
3472 2012-11-13 Dmitry Gutov <dgutov@yandex.ru>
3473
3474 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
3475 Never font-lock the beginning of singleton class as heredoc.
3476
3477 2012-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
3478
3479 * emacs-lisp/gv.el (gv-define-simple-setter): One more fix (bug#12871).
3480
3481 2012-11-13 Wolfgang Jenkner <wjenkner@inode.at>
3482
3483 * ansi-color.el (ansi-color-apply-sequence): Implement SGR codes
3484 39 and 49 (bug#12792). Also, treat unimplemented parameters as 0,
3485 thereby restoring the behavior of revisions prior to 2012-08-15T03:33:55Z!monnier@iro.umontreal.ca.
3486
3487 2012-11-13 Fabián Ezequiel Gallina <fgallina@cuca>
3488
3489 Fix end-of-defun misbehavior.
3490 * progmodes/python.el (python-nav-beginning-of-defun): Rename from
3491 python-beginning-of-defun-function. Handle nested defuns
3492 correctly.
3493 (python-nav-end-of-defun): Rename from
3494 python-end-of-defun-function. Ensure forward movement.
3495 (python-info-current-defun): Reimplement to work as intended
3496 with new fixed python-nav-{end,beginning}-of-defun. Stop scanning
3497 parent defuns as soon as possible.
3498
3499 2012-11-13 Glenn Morris <rgm@gnu.org>
3500
3501 * progmodes/flymake.el (flymake-error-bitmap)
3502 (flymake-warning-bitmap, flymake-fringe-indicator-position): Doc fixes.
3503 (flymake-error-bitmap, flymake-warning-bitmap): Fix :types.
3504
3505 2012-11-13 Dmitry Gutov <dgutov@yandex.ru>
3506
3507 * progmodes/ruby-mode.el (ruby-move-to-block): When moving
3508 backward, always stop at indentation. Reverts the change from
3509 2012-08-12T22:06:56Z!monnier@iro.umontreal.ca (Bug#12851).
3510
3511 2012-11-13 Glenn Morris <rgm@gnu.org>
3512
3513 * ibuffer.el (ibuffer-mode-map, ibuffer-mode):
3514 Add ibuffer-filter-by-derived-mode.
3515
3516 * ibuffer.el (ibuffer-mode-map): Don't have two menu items with
3517 the same name shadowing each other.
3518
3519 * window.el (with-temp-buffer-window): Doc tweak.
3520
3521 * emacs-lisp/debug.el (debugger-bury-or-kill): Doc tweak.
3522
3523 * help.el (temp-buffer-max-height):
3524 * window.el (fit-frame-to-buffer, fit-frame-to-buffer-bottom-margin):
3525 * emacs-lisp/debug.el (debugger-bury-or-kill): Fix :version.
3526
3527 2012-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
3528
3529 * emacs-lisp/nadvice.el: New package.
3530 * subr.el (special-form-p): New function.
3531 * emacs-lisp/elp.el: Use lexical-binding and advice-add.
3532 (elp-all-instrumented-list): Remove var.
3533 (elp-not-profilable): Remove elp-wrapper.
3534 (elp-profilable-p): Use autoloadp and special-form-p.
3535 (elp--advice-name): New const.
3536 (elp-instrument-function): Use advice-add.
3537 (elp--instrumented-p): New predicate.
3538 (elp-restore-function): Use advice-remove.
3539 (elp-restore-all, elp-reset-all): Use mapatoms.
3540 (elp-set-master): Use elp--instrumented-p.
3541 (elp--make-wrapper): Rename from elp-wrapper, return a function
3542 suitable for advice-add. Use cl-inf.
3543 (elp-results): Use mapatoms+elp--instrumented-p.
3544 * emacs-lisp/debug.el: Use lexical-binding and advice-add.
3545 (debug-function-list): Remove var.
3546 (debug): Rename arg, and then let-bind it explicitly inside.
3547 (debugger-setup-buffer): Rename arg.
3548 (debugger-setup-buffer): Adjust counts to new debug-on-entry setup.
3549 (debugger-frame-number): Adjust to new debug-on-entry setup.
3550 (debug--implement-debug-on-entry): Rename from
3551 implement-debug-on-entry, add argument.
3552 (debugger-special-form-p): Remove, use special-form-p instead.
3553 (debug-on-entry): Use advice-add.
3554 (debug--function-list): New function.
3555 (cancel-debug-on-entry): Use it, along with advice-remove.
3556 (debug-arglist, debug-convert-byte-code, debug-on-entry-1): Remove.
3557 (debugger-list-functions): Use debug--function-list instead of
3558 debug-function-list.
3559 * emacs-lisp/advice.el (ad-save-real-definition): Remove, unused.
3560 (ad-special-form-p): Remove, use special-form-p instead.
3561 (ad-set-advice-info): Use add-function and remove-function.
3562 (ad--defalias-fset): Adjust accordingly.
3563
3564 2012-11-10 Glenn Morris <rgm@gnu.org>
3565
3566 * mail/emacsbug.el (report-emacs-bug-tracker-url)
3567 (report-emacs-bug-bug-alist, report-emacs-bug-choice-widget)
3568 (report-emacs-bug-create-existing-bugs-buffer)
3569 (report-emacs-bug-parse-query-results)
3570 (report-emacs-bug-query-existing-bugs): Remove. (Bug#7449)
3571
3572 * term.el (term-default-fg-color, term-default-bg-color):
3573 Make obsolete, rather than just saying "deprecated" in the doc.
3574
3575 * term.el (term): Rename from `term-face'.
3576 (term-current-face, ansi-term-color-vector)
3577 (term-default-fg-color, term-default-bg-color, term-ansi-reset):
3578 Update all users.
3579
3580 2012-11-10 Jan Djärv <jan.h.d@swipnet.se>
3581
3582 * server.el (server-create-window-system-frame): Handle Nextstep
3583 specially (Bug#12780).
3584
3585 2012-11-10 Glenn Morris <rgm@gnu.org>
3586
3587 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs):
3588 Unautoload, and make obsolete. (Bug#7449)
3589
3590 2012-11-10 Chong Yidong <cyd@gnu.org>
3591
3592 * vc/diff-mode.el (diff-delete-trailing-whitespace): Rewrite, and
3593 rename from diff-remove-trailing-whitespace (Bug#12831).
3594
3595 2012-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
3596
3597 * emacs-lisp/advice.el: Require `cl-lib' at run-time to fix
3598 miscompilation of trace.el.
3599
3600 2012-11-10 Glenn Morris <rgm@gnu.org>
3601
3602 * vc/diff-mode.el (diff-remove-trailing-whitespace): Doc fix.
3603
3604 2012-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
3605
3606 * emacs-lisp/gv.el (gv-define-simple-setter): Fix last change
3607 (bug#12812).
3608
3609 2012-11-10 Chong Yidong <cyd@gnu.org>
3610
3611 * minibuf-eldef.el (minibuffer-eldef-shorten-default): Convert to
3612 a defcustom with an appropriate :set function.
3613 (minibuffer-default--in-prompt-regexps): New function.
3614
3615 2012-11-10 Glenn Morris <rgm@gnu.org>
3616
3617 * emacs-lisp/cl.el (define-setf-expander, defsetf)
3618 (define-modify-macro): Doc fixes.
3619
3620 * emacs-lisp/gv.el (gv-letplace): Fix doc typo.
3621 (gv-define-simple-setter): Update doc of `fix-return'.
3622
3623 2012-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
3624
3625 * emacs-lisp/gv.el (gv-define-simple-setter): Don't evaluate `val'
3626 twice when `fix-return' is set (bug#12813).
3627
3628 * emacs-lisp/cl.el (defsetf): Pass the third arg to
3629 gv-define-simple-setter (bug#12812).
3630
3631 * woman.el (woman-decode-region): Disable adaptive-fill when rendering
3632 (bug#12756).
3633
3634 2012-11-10 Glenn Morris <rgm@gnu.org>
3635
3636 * emacs-lisp/gv.el (gv-define-setter): Fix doc typo.
3637
3638 * emacs-lisp/cl-extra.el (cl-prettyexpand):
3639 * emacs-lisp/cl-lib.el (cl-proclaim, cl-declaim):
3640 * emacs-lisp/cl-macs.el (cl-destructuring-bind, cl-locally)
3641 (cl-the, cl-compiler-macroexpand): Add basic doc strings.
3642
3643 * emacs-lisp/cl-extra.el (cl-maplist, cl-mapcan): Doc fix.
3644
3645 2012-11-10 Leo Liu <sdl.web@gmail.com>
3646
3647 * ido.el (ido-set-matches-1): Improve flex matching performance by
3648 removing backtracking in the regexp (suggested by Stefan). (Bug#12796)
3649
3650 2012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
3651
3652 * emacs-lisp/advice.el (ad-set-advice-info): Set defalias-fset-function.
3653 (ad--defalias-fset): New function.
3654 (ad-safe-fset): Remove.
3655 (ad-make-freeze-definition): Use cl-letf*.
3656
3657 2012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
3658
3659 * subr.el (dolist): Don't bind VAR in RESULT.
3660
3661 * emacs-lisp/advice.el: Miscellaneous cleanup. Use lexical-binding.
3662 (fset, documentation): Don't save real def since we don't advise.
3663 (ad-do-advised-functions): Remove problematic `result-form'.
3664 (ad-safe-fset): `ad-real-fset' => `fset'.
3665 (ad-read-advised-function): Don't assume that ad-do-advised-functions
3666 uses CL's dolist internally.
3667 (ad-arglist): Remove unused arg `name'.
3668 (ad-docstring, ad-make-advised-docstring):
3669 `ad-real-documentation' => `documentation'.
3670 (warning-suppress-types): Declare.
3671 (ad-set-arguments): Simple CSE.
3672 (ad-recover-normality): Sanity check.
3673
3674 * emacs-lisp/bytecomp.el (byte-compile-out-toplevel): Don't turn
3675 (funcall '(lambda ..) ..) into ((lambda ..) ..).
3676
3677 2012-11-09 Vincent Belaïche <vincentb1@users.sourceforge.net>
3678
3679 * ses.el: symbol to coordinate mapping is made by symbol property
3680 `ses-cell'. This means that the same mapping is done for all SES
3681 sheets. That is good enough for cells with standard A1 names, but
3682 not for named cell. So a hash map is added for the latter.
3683 (defconst ses-localvars): Add local variable ses--named-cell-hashmap
3684 (ses-sym-rowcol): Use hashmap for named cell.
3685 (ses-is-cell-sym-p): New defun.
3686 (ses-decode-cell-symbol): New defun.
3687 (ses-create-cell-variable): Add cell to hashmap when name is not
3688 A1-like.
3689 (ses-rename-cell): Check that cell new name is not already in
3690 spreadsheet with the use of ses-is-cell-sym-p
3691 (ses-rename-cell): Use hash map for named cells, but accept also
3692 renaming back to A1-like.
3693
3694 2012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
3695
3696 * emacs-lisp/advice.el: Use new dynamic docstrings.
3697 (ad-make-advised-definition-docstring, ad-advised-definition-p):
3698 Use dynamic-docstring-function instead of ad-advice-info.
3699 (ad--make-advised-docstring): New function extracted from
3700 ad-make-advised-docstring.
3701 (ad-make-advised-docstring): Use it.
3702 * progmodes/sql.el (sql--make-help-docstring): New function, extracted
3703 from sql-help.
3704 (sql-help): Use it with dynamic-docstring-function.
3705
3706 * env.el (env--substitute-vars-regexp): Don't use rx (for bootstrap).
3707
3708 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
3709
3710 * files.el (hack-one-local-variable--obsolete): New function.
3711 (hack-one-local-variable): Use it for obsolete settings.
3712
3713 * subr.el (locate-user-emacs-file): If both old and new name exist, use
3714 the new name.
3715
3716 * progmodes/js.el (js--filling-paragraph): New var.
3717 (c-forward-sws, c-backward-sws, c-beginning-of-macro): Advise.
3718 (js-c-fill-paragraph): Prefer advice to cl-letf so the rebinding is
3719 less sneaky.
3720
3721 2012-11-08 Julien Danjou <julien@danjou.info>
3722
3723 * progmodes/ruby-mode.el (auto-mode-alist): Add Rakefile in
3724 `auto-mode-alist' (Bug#12835).
3725
3726 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
3727
3728 * progmodes/perl-mode.el (perl-prettify-symbols): New defcustom.
3729 (perl--prettify-symbols-alist): New const.
3730 (perl--font-lock-compose-symbol, perl--font-lock-symbols-keywords):
3731 New functions.
3732 (perl-font-lock-keywords-2): Use them.
3733 (perl-electric-noindent-p): New function.
3734 (perl-mode): Use it to set up electric-indent-mode.
3735 (perl-electric-terminator, perl-indent-command): Mark obsolete.
3736 (perl-mode-map): Remove bindings for them.
3737 (perl-imenu-generic-expression, perl-outline-level):
3738 Match functions&packages in column>0.
3739
3740 * env.el (env--substitute-vars-regexp): New const.
3741 (substitute-env-vars): Use it. Add `only-defined' arg.
3742 * net/tramp.el (tramp-replace-environment-variables): Use it.
3743
3744 * emacs-lisp/bytecomp.el (byte-compile-initial-macro-environment):
3745 Byte-compile *before* eval in eval-and-compile.
3746 (byte-compile-log-warning): Remove redundant inhibit-read-only.
3747 (byte-compile-file-form-autoload): Don't hide actual definition.
3748 (byte-compile-maybe-guarded): Accept `functionp' as well.
3749
3750 * emacs-lisp/gv.el (gv-ref, gv-deref): New function and macro.
3751
3752 2012-11-07 Michael Albinus <michael.albinus@gmx.de>
3753
3754 * notifications.el (notifications-get-server-information-method):
3755 New defconst.
3756 (notifications-get-capabilities): Fix docstring.
3757 (notifications-get-server-information): New defun.
3758
3759 2012-11-06 Agustín Martín Domingo <agustin.martin@hispalinux.es>
3760
3761 * textmodes/ispell.el (ispell-region): Standard re-indent for better
3762 readability.
3763
3764 * textmodes/ispell.el: Experimental support for support debugging.
3765 (ispell-create-debug-buffer): Create a `ispell-debug-buffer' debug
3766 buffer for ispell.
3767 (ispell-print-if-debug): New function to print stuff to
3768 `ispell-debug-buffer' if debugging is enabled.
3769 (ispell-region, ispell-process-line): Use `ispell-print-if-debug' to
3770 show some debugging info.
3771 (ispell-buffer-with-debug): New function that creates a debugging
3772 buffer and calls `ispell-buffer' with debugging enabled.
3773
3774 * textmodes/ispell.el (ispell-region): Do not prefix sent string by
3775 comment in autoconf mode. (Bug#12768)
3776
3777 2012-11-06 Dmitry Antipov <dmantipov@yandex.ru>
3778
3779 * emacs-lisp/byte-opt.el (toplevel): Add compare-window-configurations,
3780 frame-first-window, frame-root-window, frame-selected-window,
3781 minibuffer-selected-window, minibuffer-window,
3782 window-absolute-pixel-edges, window-at, window-body-height,
3783 window-body-width, window-display-table, window-combination-limit,
3784 window-frame, window-fringes, window-inside-absolute-pixel-edges,
3785 window-inside-edges, window-inside-pixel-edges, window-left-child,
3786 window-left-column, window-margins, window-next-buffers,
3787 window-next-sibling, window-new-normal, window-new-total,
3788 window-normal-size, window-parameter, window-parameters, window-parent,
3789 window-pixel-edges, window-point, window-prev-buffers,
3790 window-prev-sibling, window-redisplay-end-trigger, window-scroll-bars,
3791 window-start, window-text-height, window-top-child, window-top-line,
3792 window-total-height, window-total-width and window-use-time to the list
3793 of functions without side-effects.
3794 (toplevel): Add window-valid-p to the list of error-free functions
3795 without side-effects.
3796
3797 2012-11-05 Agustín Martín Domingo <agustin.martin@hispalinux.es>
3798
3799 * textmodes/ispell.el (ispell-program-name):
3800 Update spellchecker parameters when customized.
3801
3802 2012-11-04 Glenn Morris <rgm@gnu.org>
3803
3804 * vc/vc-svn.el (vc-svn-state-heuristic): Avoid calling svn. (Bug#7850)
3805
3806 2012-11-04 Chong Yidong <cyd@gnu.org>
3807
3808 * bookmark.el (bookmark-bmenu-switch-other-window): Avoid binding
3809 same-window-* variables.
3810
3811 2012-11-04 Juri Linkov <juri@jurta.org>
3812
3813 * isearch.el (isearch-help-for-help, isearch-describe-bindings)
3814 (isearch-describe-key, isearch-describe-mode): Use a display
3815 action instead of binding same-window-* variables (Bug#10040).
3816
3817 2012-11-03 Glenn Morris <rgm@gnu.org>
3818
3819 * emacs-lisp/cl-macs.el (cl-parse-loop-clause):
3820 Rename handler properties back from cl-- to cl-. (Bug#12788)
3821
3822 * emacs-lisp/cl-macs.el (cl-do-all-symbols): Add doc string.
3823
3824 2012-11-03 Eli Zaretskii <eliz@gnu.org>
3825
3826 * term/pc-win.el: Don't load term/internal from here.
3827
3828 * loadup.el: Load term/internal from here.
3829
3830 2012-11-03 Fabián Ezequiel Gallina <fgallina@cuca>
3831
3832 * progmodes/python.el (inferior-python-mode): Fix hang in
3833 jit-lock (Bug#12645).
3834
3835 2012-11-03 Martin Rudalics <rudalics@gmx.at>
3836
3837 * window.el (switch-to-visible-buffer)
3838 (switch-to-buffer-preserve-window-point): Fix doc-strings.
3839
3840 2012-11-03 Glenn Morris <rgm@gnu.org>
3841
3842 * emacs-lisp/cl-lib.el (cl--random-time):
3843 Rename from cl-random-time. (Bug#12773)
3844 (cl--gensym-counter, cl--random-state): Update callers.
3845 * emacs-lisp/cl-extra.el (cl-make-random-state): Update callers.
3846
3847 2012-11-03 Chong Yidong <cyd@gnu.org>
3848
3849 * cus-start.el: Make cursor-type customizable (Bug#11633).
3850
3851 2012-11-02 Glenn Morris <rgm@gnu.org>
3852
3853 * filecache.el: No need to load find-lisp when compiling.
3854 (find-lisp-find-files): Autoload it.
3855 (file-cache-add-directory-recursively): Don't require find-lisp.
3856
3857 * image.el (image-type-from-file-name): Trivial simplification.
3858
3859 * emacs-lisp/bytecomp.el (byte-compile-eval):
3860 Decouple "noruntime" and "cl-functions" warnings.
3861
3862 2012-11-01 Stephen Berman <stephen.berman@gmx.net>
3863
3864 * play/gomoku.el (gomoku-display-statistics): Update mode line
3865 only if in Gomoku buffer; don't capitalize "won" (Bug#12771).
3866
3867 2012-10-31 Martin Rudalics <rudalics@gmx.at>
3868
3869 * window.el (quit-restore-window): If the window has been
3870 created on an existing frame and ended up as the sole window on
3871 that frame, do not delete it (Bug#12764).
3872
3873 2012-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
3874
3875 * progmodes/sh-script.el (sh--inside-noncommand-expression):
3876 Rename from sh--inside-arithmetic-expression, handle more cases
3877 (bug#11263).
3878
3879 * progmodes/sh-script.el (sh--inside-arithmetic-expression): New func.
3880 (sh-font-lock-open-heredoc): Use it (bug#12770).
3881
3882 2012-10-30 Glenn Morris <rgm@gnu.org>
3883
3884 * emacs-lisp/cl-extra.el (cl-mapc): Add autoload cookie. Doc fix.
3885
3886 * emacs-lisp/cl.el (letf): Doc fix. (Bug#12760)
3887
3888 2012-10-29 Chong Yidong <cyd@gnu.org>
3889
3890 * isearch.el (isearch-other-meta-char): Ensure that a reprocessed
3891 function key is stored in a keyboard macro (Bug#4894).
3892
3893 * thingatpt.el (number-at-point): Apply a thing-at-point property.
3894
3895 2012-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
3896
3897 * vc/diff-mode.el (diff-context->unified): Don't get confused by "hunk
3898 header comments".
3899 (diff-unified->context, diff-context->unified)
3900 (diff-reverse-direction, diff-fixup-modifs): Use `use-region-p'.
3901
3902 * emacs-lisp/cl.el (letf): Add missing indent rules (bug#12759).
3903
3904 * files.el (find-alternate-file): Only ask one question (bug#12487).
3905
3906 2012-10-29 Chong Yidong <cyd@gnu.org>
3907
3908 * vc/vc-hooks.el (vc-file-clearprops): Kill vc-parent-buffer.
3909 Suggested by Dan Nicolaescu (Bug#6326).
3910
3911 * info.el (Info-complete-menu-item): Avoid duplicates (Bug#12705).
3912
3913 * startup.el (fancy-about-screen): Don't message (Bug#12680).
3914
3915 * thingatpt.el (thing-at-point): Doc fix (Bug#12691).
3916
3917 * imenu.el (imenu): Inhibit push-mark message (Bug#12726).
3918
3919 * face-remap.el (face-remap-add-relative): Handle the case where a
3920 face-remapping-alist entry is a cons cell (Bug#12762).
3921
3922 2012-10-29 Kevin Ryde <user42@zip.com.au>
3923
3924 * woman.el (woman-parse-numeric-value): Handle picas correctly
3925 (Bug#12639).
3926
3927 2012-10-29 Glenn Morris <rgm@gnu.org>
3928
3929 * emacs-lisp/cl.el (defsetf): Doc fix.
3930
3931 2012-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
3932
3933 * progmodes/sh-script.el (sh-font-lock-paren): Also put punctuation
3934 syntax to the matching opener, if any (bug#12547).
3935 (sh-smie-sh-forward-token, sh-smie-sh-backward-token): Recognize this
3936 matching open as a "case-(".
3937 (sh-smie-rc-grammar): Add a corresponding rule for it.
3938
3939 2012-10-28 Daniel Hackney <dan@haxney.org>
3940
3941 * emacs-lisp/package.el (package-generate-autoloads): Kill buffer
3942 "PKGNAME-autoloads.el" in case we created it.
3943
3944 2012-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
3945
3946 * minibuffer.el (completion--sifn-requote): Rewrite to handle things
3947 like Tramp's "/foo:~bar//baz" -> "/scpc:foo:/baz" mapping (bug#11714).
3948 (completion--twq-all): Disable too-strict assertions.
3949
3950 * tmm.el (tmm-prompt): Use map-keymap (bug#12744).
3951
3952 2012-10-27 Eli Zaretskii <eliz@gnu.org>
3953
3954 * profiler.el (profiler-report-make-entry-part): Fix help-echo
3955 text to match the real keybindings.
3956
3957 2012-10-27 Juri Linkov <juri@jurta.org>
3958
3959 * wdired.el (wdired-keep-marker-rename): New defcustom.
3960 (wdired-do-renames): Use it instead of `dired-keep-marker-rename'.
3961 (Bug#11795)
3962
3963 * dired.el (dired-keep-marker-rename): Add reference to
3964 `wdired-keep-marker-rename' in the docstring.
3965 Add default character value ?R to display initially in
3966 Customization UI instead of ?@.
3967
3968 2012-10-27 Martin Rudalics <rudalics@gmx.at>
3969
3970 * window.el (display-buffer): In doc-string describe
3971 window-height and window-width alist entries.
3972
3973 * time.el (display-time-world): Restore fit-window-to-buffer
3974 behavior.
3975
3976 2012-10-27 Chong Yidong <cyd@gnu.org>
3977
3978 * subr.el (insert-buffer-substring-as-yank): Doc fix.
3979
3980 2012-10-26 Jambunathan K <kjambunathan@gmail.com>
3981
3982 * minibuffer.el (completion-category-overrides): New completion
3983 category `bookmark' (bug#11131).
3984
3985 2012-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
3986
3987 * emacs-lisp/advice.el (ad-assemble-advised-definition):
3988 Silence bogus compiler warnings for ad-do-it.
3989
3990 * bookmark.el (bookmark-completing-read): Set the completion category
3991 to `bookmark' (bug#11131).
3992
3993 2012-10-26 Bastien <bzg@altern.org>
3994 Stefan Monnier <monnier@iro.umontreal.ca>
3995
3996 * face-remap.el: Use lexical-binding.
3997 (text-scale-adjust): Improve docstring. Use itself for the temporary
3998 overlay-map bindings, so as to repeat the "Use..." message each time.
3999
4000 2012-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
4001
4002 * emacs-lisp/macroexp.el (macroexp--expand-all):
4003 Obey byte-compile-warning-enabled-p (bug#12486).
4004
4005 * vc/diff-mode.el (diff-end-of-hunk): Also skip potential "no LF at eol".
4006 (diff-refine-hunk): Similarly, handle the "no LF at eol" (bug#12584).
4007
4008 2012-10-26 Martin Rudalics <rudalics@gmx.at>
4009
4010 * mouse.el (mouse-drag-line): Move last form into preceding when
4011 clause (Bug#12731).
4012
4013 * help.el (resize-temp-buffer-window): Fix doc-string.
4014
4015 2012-10-25 David Engster <deng@randomsample.de>
4016
4017 * emacs-lisp/eieio.el (eieio-update-lisp-imenu-expression):
4018 Remove. This feature is already integrated in imenu.
4019
4020 * emacs-lisp/eieio-opt.el: Remove require for `button' since it is
4021 always loaded. Require `speedbar' unconditionally.
4022
4023 2012-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
4024
4025 * dired.el (dired-get-marked-files): Allow ! on . and .. (bug#12725).
4026
4027 * minibuffer.el (minibuffer-force-complete): Fix thinko.
4028
4029 * net/ldap.el (ldap-search-internal): The official ldif format starts
4030 with a "version: 1" header (bug#12724).
4031
4032 * emacs-lisp/package.el (package-installed-p): Warn if not ready
4033 (bug#12721).
4034
4035 2012-10-25 Glenn Morris <rgm@gnu.org>
4036
4037 * emacs-lisp/cl-macs.el (cl-progv): Doc fix.
4038
4039 2012-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
4040
4041 * minibuffer.el (minibuffer-force-complete): Use one more marker
4042 for the temporary-overlay-map command (bug#12619).
4043
4044 2012-10-24 Chong Yidong <cyd@gnu.org>
4045
4046 * time.el (display-time-world-mode): Derive from special-mode.
4047 (display-time-world): Use display-buffer (Bug#12708).
4048 (display-time-world-mode-map): Variable deleted.
4049 (display-time-world-display): Wrap the final delete-char inside
4050 inhibit-read-only.
4051
4052 2012-10-24 Chong Yidong <cyd@gnu.org>
4053
4054 * dired.el (dired-mark, dired-unmark, dired-flag-file-deletion):
4055 Doc fix.
4056
4057 * emacs-lisp/easymenu.el (easy-menu-define): Doc fix (Bug#12628).
4058
4059 2012-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
4060
4061 * minibuffer.el (completion--all-sorted-completions-location): New var.
4062 (completion--cache-all-sorted-completions)
4063 (completion--flush-all-sorted-completions): Use it.
4064 (completion-in-region, completion-in-region--postch)
4065 (completion-at-point, completion-help-at-point): Use markers in
4066 completion-in-region--data (bug#12619).
4067
4068 2012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
4069
4070 * progmodes/compile.el (compilation-start): Try to handle common
4071 quoting of `cd' argument (bug#12640).
4072
4073 * vc/diff-mode.el (diff-hunk): `save-excursion' while refining
4074 (bug#12671).
4075
4076 2012-10-23 Glenn Morris <rgm@gnu.org>
4077
4078 * progmodes/gud.el (gud-menu-map):
4079 Check gdb-active-process is bound. (Bug#12358)
4080
4081 2012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
4082
4083 * repeat.el (repeat): Set real-this-command (bug#12232).
4084
4085 * htmlfontify.el (hfy-post-html-hook):
4086 * filesets.el (filesets-cache-fill-content-hook):
4087 * arc-mode.el (archive-extract-hook):
4088 * progmodes/cc-mode.el (c-prepare-bug-report-hook):
4089 * net/rcirc.el (rcirc-sentinel-functions)
4090 (rcirc-receive-message-functions, rcirc-activity-functions)
4091 (rcirc-print-functions):
4092 * net/dbus.el (dbus-event-error-functions):
4093 * emacs-lisp/eieio.el (eieio-pre-method-execution-functions):
4094 * emacs-lisp/checkdoc.el (checkdoc-style-functions)
4095 (checkdoc-comment-style-functions): Don't use "-hooks" suffix.
4096 * term/sun.el (sun-raw-prefix-hooks):
4097 * mail/sendmail.el (mail-yank-hooks): Use make-obsolete-variable.
4098
4099 2012-10-23 Michael Albinus <michael.albinus@gmx.de>
4100
4101 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
4102 Set `tramp-chunksize' to 1. This improves the performance.
4103 (tramp-smb-wait-for-output): Add timeout to
4104 `tramp-accept-process-output' calls.
4105
4106 2012-10-23 Chong Yidong <cyd@gnu.org>
4107
4108 * faces.el (font-list-limit): Define as an obsolete variable.
4109
4110 * startup.el (command-line):
4111 * cus-start.el: Don't refer to font-list-limit.
4112
4113 * newcomment.el (comment-normalize-vars): Doc fix (Bug#12583).
4114
4115 2012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
4116
4117 * subr.el (internal-temp-output-buffer-show): Rename from
4118 temp-output-buffer-show, since previously compiled files expect this name.
4119
4120 2012-10-23 Glenn Morris <rgm@gnu.org>
4121
4122 * image.el (image-type-from-file-name): If multiple types match,
4123 return the first one that is supported. (Bug#9045)
4124
4125 2012-10-22 Glenn Morris <rgm@gnu.org>
4126
4127 * image.el (imagemagick-enabled-types): Doc fix.
4128
4129 2012-10-22 Takafumi Arakaki <aka.tkf@gmail.com> (tiny change)
4130
4131 * progmodes/which-func.el (which-func-current): The hash-table may have
4132 an explicit nil (bug#12338).
4133
4134 2012-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
4135
4136 * electric.el (electric-pair-delete-selection-self-insert-function):
4137 Rename to electric-pair-will-use-region, return a boolean.
4138 (electric-pair-mode): Adjust accordingly. Don't require delsel.
4139
4140 * delsel.el (delete-selection-helper): Use a function instead of a hook.
4141 (delete-selection-pre-hook): Use use-region-p.
4142 (delete-selection-self-insert-function): Remove.
4143 (self-insert-command): Obey self-insert-uses-region-functions.
4144 (self-insert-iso): Revert to previous setting, since we don't actually
4145 know what that command does.
4146 (delete-selection-self-insert-hooks): Remove.
4147
4148 2012-10-22 Simon Law <sfllaw@sfllaw.ca> (tiny change)
4149
4150 * delsel.el (delete-selection-helper): New function, extracted from
4151 delete-selection-pre-hook.
4152 (delete-selection-pre-hook): Use it.
4153 (delete-selection-self-insert-function): New function.
4154 (delete-selection-self-insert-hooks): New hook.
4155 (self-insert-command, self-insert-iso): Use it.
4156 * electric.el (electric-pair-syntax): New function, extracted from
4157 electric-pair-post-self-insert-function.
4158 (electric-pair-post-self-insert-function): Use it.
4159 (electric-pair-delete-selection-self-insert-function): New function.
4160 (electric-pair-mode): Require delsel and setup
4161 delete-selection-self-insert-hooks (bug#11520).
4162
4163 2012-10-20 Chong Yidong <cyd@gnu.org>
4164
4165 * vc/vc.el (vc-diff-internal): Set up Diff mode even if there are
4166 no changes to show (Bug#12586).
4167
4168 * eshell/esh-cmd.el (eshell-rewrite-for-command): Copy the body
4169 list explicitly (Bug#12571).
4170
4171 2012-10-20 Arne Jørgensen <arne@arnested.dk>
4172
4173 * progmodes/flymake.el (flymake-create-temp-inplace):
4174 Use file-truename.
4175
4176 2012-10-20 Eli Zaretskii <eliz@gnu.org>
4177
4178 * loadup.el: Update comment about uncompiled Lisp files. (Bug#12395)
4179
4180 2012-10-20 Jay Belanger <jay.p.belanger@gmail.com>
4181
4182 * calc/calc-units.el (math-extract-units): Properly extract powers
4183 of units.
4184
4185 2012-10-20 Daniel Colascione <dancol@dancol.org>
4186
4187 * frame.el (make-frame): Set x-display-name as we used to in order
4188 to unbreak creating an X11 frame from an Emacs daemon started
4189 without a display.
4190
4191 2012-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
4192
4193 * minibuffer.el (minibuffer-force-complete): Make the next completion use
4194 the same completion-field (bug#12221).
4195
4196 2012-10-19 Martin Rudalics <rudalics@gmx.at>
4197
4198 * emacs-lisp/debug.el (debug): Record height of debugger window
4199 also when debugger will be back (Bug#8789).
4200
4201 2012-10-18 Chong Yidong <cyd@gnu.org>
4202
4203 * progmodes/gdb-mi.el (gdb-display-buffer-other-frame-action):
4204 Convert to defcustom.
4205 (gdb-get-source-file): Don't bind pop-up-windows.
4206
4207 * progmodes/gud.el (gud-display-line): Don't specially re-use
4208 other frames for the gdb-mi case (Bug#12648).
4209
4210 2012-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
4211
4212 * emacs-lisp/advice.el: Clean up commentary a bit.
4213 (ad-do-advised-functions, ad-with-originals): Use `declare'.
4214 (byte-code-function-p): Never redefine.
4215
4216 * emacs-lisp/gv.el (cond): Same fix as before for `if'.
4217
4218 2012-10-18 Glenn Morris <rgm@gnu.org>
4219
4220 * dired.el (dired-sort-toggle): Some ls implementations only allow
4221 a single option string. (Bug#12666)
4222
4223 * minibuffer.el (completion-cycle-threshold): Doc fix.
4224
4225 2012-10-17 Kenichi Handa <handa@gnu.org>
4226
4227 * international/mule.el (set-keyboard-coding-system):
4228 Recover input meta mode when the new coding system doesn not use 8-bit.
4229 Supply TERMINAL arg to set-input-meta-mode.
4230
4231 2012-10-17 Michael Heerdegen <michael_heerdegen@web.de>
4232
4233 * wdired.el (wdired-old-marks): New variable.
4234 (wdired-change-to-wdired-mode): Locally set wdired-old-marks.
4235 (wdired-do-renames): Move point with renamed file and don't lose
4236 mark status (Bug#11795).
4237
4238 2012-10-16 Juri Linkov <juri@jurta.org>
4239
4240 * replace.el (query-replace-help): Mention multi-buffer replacement
4241 keys in the Help message. (Bug#12655)
4242
4243 2012-10-15 Chong Yidong <cyd@gnu.org>
4244
4245 * emacs-lisp/byte-run.el (defsubst): Doc fix.
4246
4247 2012-10-14 Eli Zaretskii <eliz@gnu.org>
4248
4249 * window.el (display-buffer): Doc fix.
4250
4251 * progmodes/compile.el (compilation-error-regexp-alist-alist):
4252 Adjust the msft regexp to the output of Studio 2010, and move msft
4253 before edg-1. See the discussion on emacs-devel,
4254 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00579.html,
4255 for the details.
4256
4257 2012-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
4258
4259 * emacs-lisp/eieio.el (eieio-oset-default, eieio-oset, oset-default)
4260 (oset): Move uses of object-class-fast macro after its definition.
4261
4262 * emacs-lisp/gv.el (if): Don't use closures in non-lexical-binding code.
4263
4264 2012-10-13 Chong Yidong <cyd@gnu.org>
4265
4266 * textmodes/ispell.el (ispell-pdict-save): If flyspell-mode is
4267 enabled, re-enable it (Bug#11963).
4268
4269 2012-10-13 Martin Rudalics <rudalics@gmx.at>
4270
4271 * emacs-lisp/debug.el (debug): When debugger-will-be-back is
4272 non-nil, restore window configuration (Bug#12623).
4273
4274 2012-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
4275
4276 * help-fns.el (describe-variable, describe-function-1):
4277 * help-mode.el (help-make-xrefs): Remove error handler, made unneeded.
4278
4279 * emacs-lisp/eieio.el (lisp-imenu-generic-expression): Fix typo.
4280
4281 2012-10-12 Glenn Morris <rgm@gnu.org>
4282
4283 * mail/rmailsum.el (rmail-header-summary):
4284 Fix 2010-11-26 test for multiline Subject: field. (Bug#12625)
4285
4286 2012-10-12 Fabián Ezequiel Gallina <fgallina@cuca>
4287
4288 * progmodes/python.el (python-mode-map):
4289 Replace subtitute-key-definition with proper command remapping.
4290 (python-nav--up-list): Fix behavior for blocks on the same level.
4291
4292 2012-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
4293
4294 * help-fns.el (describe-function-1): Handle autoloads w/o docstrings.
4295
4296 * emacs-lisp/bytecomp.el (byte-compile-eval): Adjust to long-ago
4297 changes to the format of load-history.
4298
4299 * international/mule-cmds.el (read-char-by-name): Move let-binding of
4300 completion-ignore-case in case that var is buffer-local (bug#12615).
4301
4302 2012-10-11 Kenichi Handa <handa@gnu.org>
4303
4304 * international/eucjp-ms.el: Re-generated.
4305
4306 2012-10-10 Kenichi Handa <handa@gnu.org>
4307
4308 * select.el (xselect--encode-string): If a coding is specified for
4309 selection, and that is compatible with COMPOUND_TEXT, use it.
4310
4311 2012-10-10 Martin Rudalics <rudalics@gmx.at>
4312
4313 * window.el (switch-to-buffer-preserve-window-point): New option.
4314 (switch-to-buffer):
4315 Obey `switch-to-buffer-preserve-window-point' (Bug#4041).
4316
4317 2012-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
4318
4319 * newcomment.el (comment-start-skip, comment-end-skip, comment-end):
4320 Don't document nil as a useful value (bug#12583).
4321
4322 2012-10-09 Michael Albinus <michael.albinus@gmx.de>
4323
4324 * net/tramp.el (tramp-debug-message):
4325 Remove "tramp-with-progress-reporter" from regexp of ignored functions.
4326 (with-tramp-progress-reporter): Rename from
4327 `tramp-with-progress-reporter'.
4328 (with-tramp-file-property, with-tramp-connection-property):
4329 Move from tramp-cache.el, rename from `with-file-property' and
4330 `with-connection-property', respectively.
4331
4332 * net/tramp-cache.el: Remove `with-file-property' and
4333 `with-connection-property'.
4334
4335 * net/tramp.el:
4336 * net/tramp-gvfs.el:
4337 * net/tramp-sh.el:
4338 * net/tramp-smb.el: Adapt callees.
4339
4340 * net/trampver.el: Update release number.
4341
4342 2012-10-09 Glenn Morris <rgm@gnu.org>
4343
4344 * w32-fns.el (set-message-beep):
4345 * term/w32-win.el (set-message-beep): Update declarations.
4346
4347 2012-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
4348
4349 * bindings.el (mode-line-toggle-read-only, mode-line-toggle-modified)
4350 (mode-line-widen, mode-line-input-method-map)
4351 (mode-line-coding-system-map, mode-line-remote)
4352 (mode-line-unbury-buffer, mode-line-bury-buffer)
4353 (mode-line-next-buffer, mode-line-previous-buffer):
4354 Replace save-selected-window+select-window => with-selected-window.
4355
4356 * progmodes/cc-bytecomp.el (cc-bytecomp-defmacro): Remove, unused.
4357 * progmodes/cc-vars.el (bq-process): Remove, unused.
4358
4359 * emacs-lisp/cl-macs.el (cl-defstruct): Obey the :read-only property.
4360
4361 2012-10-09 Fabián Ezequiel Gallina <fgallina@cuca>
4362
4363 Implemented `backward-up-list'-like navigation.
4364 * progmodes/python.el (python-nav-up-list)
4365 (python-nav-backward-up-list): New functions.
4366 (python-mode-map): Define substitute key for backward-up-list to
4367 python-nav-backward-up-list.
4368
4369 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
4370
4371 * progmodes/python.el (python-fill-paragraph): Rename from
4372 python-fill-paragraph-function. Fixed fill-paragraph for
4373 decorators (Bug#12605).
4374
4375 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
4376
4377 * progmodes/python.el (python-shell-output-filter): Handle extra
4378 carriage return in OSX (Bug#12409).
4379
4380 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
4381
4382 Fix shell handling of unbalanced quotes and parens in output.
4383 * progmodes/python.el (python-rx-constituents): Add string-delimiter.
4384 (python-syntax-propertize-function): Use it.
4385 (python-shell-output-syntax-table): New var.
4386 (inferior-python-mode): Prevent unbalanced parens/quotes from
4387 previous output mess with current input context.
4388
4389 2012-10-08 Juanma Barranquero <lekktu@gmail.com>
4390
4391 * generic-x.el (javascript-generic-mode, javascript-generic-mode-hook):
4392 Make obsolete aliases of js-mode and js-mode-hook (from js.el).
4393
4394 2012-10-08 Michael Albinus <michael.albinus@gmx.de>
4395
4396 * ffap.el (ffap-replace-file-component): Support Tramp file name
4397 syntax, not only ange-ftp's one.
4398
4399 2012-10-08 Glenn Morris <rgm@gnu.org>
4400
4401 * cus-start.el (message-log-max): Set :version.
4402
4403 * calendar/calendar.el (calendar-intermonth-header): Doc fix.
4404
4405 2012-10-08 Martin Rudalics <rudalics@gmx.at>
4406
4407 * emacs-lisp/edebug.el (edebug-pop-to-buffer): Don't try to split
4408 the minibuffer window (Bug#10851).
4409
4410 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
4411
4412 Enhancements on forward-sexp movement.
4413 * progmodes/python.el (python-nav-beginning-of-statement)
4414 (python-nav-end-of-statement): Return point-marker.
4415 (python-nav-forward-sexp): lisp-like forward-sexp behavior.
4416 (python-info-current-symbol)
4417 (python-info-statement-starts-block-p): Rename from
4418 python-info-beginning-of-block-p.
4419 (python-info-statement-ends-block-p): Rename from
4420 python-info-end-of-block-p.
4421 (python-info-beginning-of-statement-p)
4422 (python-info-end-of-statement-p)
4423 (python-info-beginning-of-block-p, python-info-end-of-block-p):
4424 New functions.
4425
4426 2012-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
4427
4428 * comint.el (comint-preinput-scroll-to-bottom): Preserve the
4429 frame-selected-windows.
4430
4431 2012-10-08 Daniel Colascione <dancol@dancol.org>
4432
4433 * battery.el (battery-status-function): Check for
4434 w32-battery-status itself, not system-time windows-nt.
4435
4436 * frame.el: Require cl-lib.
4437 (display-format-alist): New variable mapping frame types to
4438 functions that initialize them.
4439 (window-system-for-display): New function: interprets
4440 display-format-alist.
4441 (make-frame-on-display): Remove existing display-selection logic
4442 and just forward to make-frame, which will now DTRT.
4443 (make-frame): Restructure to use window-system-for-display to
4444 figure out how to create a frame on a given display.
4445 (display-mouse-p): Look for frame-type w32, not a particular
4446 system-type.
4447
4448 * loadup.el: Load w32 lisp code when we have the w32 feature.
4449
4450 * mouse.el (mouse-yank-primarY): Look for frame-type w32, not
4451 system-type windows-nt.
4452
4453 * server.el (server-create-window-system-frame): Look for window
4454 type.
4455 (server-proces-filter): Only force a window system when windows-nt
4456 _and_ w32. Explain why.
4457
4458 * simple.el (normal-erase-is-backspace-mode): Add w32 to the list
4459 of window systems we configure for the mode.
4460
4461 * startup.el (command-line): Mark window system is initialized
4462 after we've done it.
4463
4464 * common-win.el (x-select-text): Look for w32, not windows-nt.
4465
4466 * ns-win.el: Require cl-lib. Add ourselves to
4467 display-format-alist.
4468 (ns-initialize-window-system): Assert we're not initialized twice.
4469
4470 * w32-win.el: Enable lexical binding; require cl-lib; add
4471 ourselves to display-format-alist.
4472 (w32-handle-dropped-file): Convert incoming dropped files from
4473 Windows paths to Cygwin ones before passing them on to the rest of
4474 Emacs.
4475 (w32-drag-n-drop): New paramter new-frame. Simplify logic.
4476 (w32-initialize-window-system): Assert we're not initialized twice.
4477
4478 * x-win.el: Require cl-lib; add ourselves to display-format-alist.
4479 (x-initialize-window-system): Assert we're not initialized twice.
4480
4481 * w32-common-fns.el: New File.
4482 (w32-version, w32-using-nt, w32-get-clipboard-data)
4483 (w32-set-clipboard-data, x-set-selection, x-get-selection)
4484 (w32-charset-info-alist, x-last-selected, text)
4485 (x-get-selection-value, x-selection-value): Move here.
4486
4487 * w32-fns.el: Require w32-common-fns.
4488 (w32-version, w32-using-nt, w32-get-clipboard-data)
4489 (w32-set-clipboard-data, x-set-selection, x-get-selection)
4490 (w32-charset-info-alist, x-last-selected, text)
4491 (x-get-selection-value, x-selection-value): Move to
4492 w32-common-fns.
4493
4494 * w32-vars.el:
4495 (w32-allow-system-shell, w32-system-shells): Define only in
4496 non-cygwin case.
4497
4498 2012-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
4499
4500 * subr.el (read-passwd-map): Don't use `defconst' (bug#12597).
4501 (read-passwd): Remove a few more potential sources of leaks.
4502
4503 2012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
4504
4505 * progmodes/python.el (inferior-python-mode)
4506 (python-shell-make-comint): Fix initialization of local
4507 variables copied from parent buffer.
4508
4509 2012-10-07 Jan Djärv <jan.h.d@swipnet.se>
4510
4511 * term/ns-win.el (ns-read-file-name): Update declaration to match
4512 nsfns.m.
4513 (ns-respond-to-change-font): Change fontsize separatly so we are sure
4514 it is set when font is acted upon.
4515
4516 2012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
4517
4518 Enhancements to indentation.
4519 * progmodes/python.el (python-indent-context): Give priority to
4520 inside-string context. Make comments indentation markers.
4521 (python-indent-region): Do not mess with strings, unless it's the
4522 enclosing set of quotes.
4523
4524 2012-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
4525
4526 * window.el (internal--before-save-selected-window)
4527 (internal--after-save-selected-window): New functions extracted from
4528 save-selected-window. Make sure we return the `alist' we construct.
4529 (save-selected-window): Use them.
4530
4531 * textmodes/tex-mode.el (tex-recenter-output-buffer):
4532 Use with-selected-window.
4533
4534 * emacs-lisp/autoload.el (make-autoload): Add `cl-defmacro' to the
4535 forms that define macros (bug#12593).
4536
4537 2012-10-07 Kenichi Handa <handa@gnu.org>
4538
4539 * international/mule-conf.el (compound-text-with-extensions):
4540 Add :mime-charset property as x-ctext.
4541
4542 2012-10-07 Stefan Merten <smerten@oekonux.de>
4543
4544 * textmodes/rst.el (rst-new-adornment-down, rst-indent-field)
4545 (rst-indent-literal-normal, rst-indent-literal-minimized)
4546 (rst-indent-comment): Correct :version tag.
4547 (rst-official-cvs-rev): Correct version string.
4548
4549 2012-10-07 Glenn Morris <rgm@gnu.org>
4550
4551 * mail/rmailmm.el (rmail-mime-process-multipart):
4552 Do not confuse a multipart message with an epilogue
4553 with a "truncated" one; fixes 2011-06-27 change. (Bug#10101)
4554
4555 2012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
4556
4557 Fix shell output retrieval and comint-prompt-regexp init.
4558 * progmodes/python.el (inferior-python-mode):
4559 (python-shell-make-comint): Fix initialization of
4560 comint-prompt-regexp from copied file local variables.
4561 (python-shell-fetched-lines): Remove var.
4562 (python-shell-output-filter-in-progress): Rename from
4563 python-shell-fetch-lines-in-progress.
4564 (python-shell-output-filter-buffer): Rename from
4565 python-shell-fetch-lines-string.
4566 (python-shell-fetch-lines-filter): Delete function.
4567 (python-shell-output-filter): New function.
4568 (python-shell-send-string-no-output): Use them.
4569
4570 2012-10-07 Glenn Morris <rgm@gnu.org>
4571
4572 * hi-lock.el (hi-lock-process-phrase):
4573 Try to make it less fragile. (Bug#7161)
4574
4575 * hi-lock.el (hi-lock-face-phrase-buffer): Doc fix.
4576
4577 2012-10-06 Glenn Morris <rgm@gnu.org>
4578
4579 * ehelp.el (electric-help-mode): Use help-mode rather than
4580 non-existent mode `help'.
4581 (electric-help-map): Use button-buffer-map. (Bug#10917)
4582
4583 * textmodes/reftex-vars.el (reftex-create-bibtex-header)
4584 (reftex-create-bibtex-footer): Fix custom types.
4585
4586 * progmodes/sh-script.el (sh-indent-after-continuation):
4587 Add explicit :group.
4588
4589 * textmodes/rst.el (rst-preferred-decorations)
4590 (rst-shift-basic-offset): Clarify obsolescence versions.
4591
4592 * profiler.el (profiler): Add missing group :version tag.
4593 * avoid.el (mouse-avoidance-banish-position):
4594 * proced.el (proced-renice-command):
4595 * calc/calc.el (calc-ensure-consistent-units):
4596 * calendar/icalendar.el (icalendar-import-format-uid):
4597 * net/tramp.el (tramp-save-ad-hoc-proxies):
4598 * progmodes/bug-reference.el (bug-reference-bug-regexp):
4599 * progmodes/flymake.el (flymake-error-bitmap)
4600 (flymake-warning-bitmap, flymake-fringe-indicator-position):
4601 * progmodes/sh-script.el (sh-indent-after-continuation):
4602 * progmodes/verilog-mode.el (verilog-auto-template-warn-unused)
4603 (verilog-before-save-font-hook, verilog-after-save-font-hook):
4604 * progmodes/vhdl-mode.el (vhdl-makefile-default-targets)
4605 (vhdl-array-index-record-field-in-sensitivity-list)
4606 (vhdl-indent-comment-like-next-code-line):
4607 * textmodes/reftex-vars.el (reftex-ref-style-alist)
4608 (reftex-ref-macro-prompt, reftex-ref-style-default-list)
4609 (reftex-cite-key-separator, reftex-create-bibtex-header)
4610 (reftex-create-bibtex-footer):
4611 * textmodes/rst.el (rst-new-adornment-down, rst-indent-field)
4612 (rst-indent-literal-normal, rst-indent-literal-minimized)
4613 (rst-indent-comment): Add missing custom :version tags.
4614
4615 * calendar/timeclock.el (timeclock-modeline-display):
4616 Add missing obsolete alias for renamed user option.
4617
4618 * strokes.el (strokes-modeline-string):
4619 * emulation/crisp.el (crisp-mode-modeline-string):
4620 * eshell/esh-mode.el (eshell-status-in-modeline):
4621 Aliases to defcustoms must come before the defcustom.
4622
4623 * calendar/cal-tex.el (cal-tex-diary, cal-tex-cursor-week)
4624 (cal-tex-cursor-week2, cal-tex-cursor-week-iso)
4625 (cal-tex-cursor-week-monday): Doc fixes.
4626 (cal-tex-cursor-week2-summary): Doc fix.
4627 Rename from cal-tex-cursor-week-at-a-glance.
4628
4629 * calendar/cal-menu.el (cal-menu-context-mouse-menu):
4630 Tweak week descriptions. Add cal-tex-cursor-week2-summary.
4631
4632 * calendar/calendar.el (calendar-mode-map):
4633 Add cal-tex-cursor-week2-summary.
4634
4635 2012-10-06 Stefan Monnier <monnier@iro.umontreal.ca>
4636
4637 * emacs-lisp/cl-macs.el (cl-defstruct): Improve docstring.
4638
4639 * subr.el (read-passwd-map): New var.
4640 (read-passwd): Use `read-string' again.
4641 * minibuffer.el (delete-minibuffer-contents): Make it interactive.
4642
4643 2012-10-06 Jambunathan K <kjambunathan@gmail.com>
4644
4645 * register.el (append-to-register, prepend-to-register):
4646 Deactivate mark, as does `copy-to-register' (bug#12389).
4647
4648 2012-10-06 Chong Yidong <cyd@gnu.org>
4649
4650 * files.el (auto-mode-alist): Add .by and .wy (Semantic grammars).
4651
4652 2012-10-06 Ikumi Keita <ikumi@ikumi.que.jp> (tiny change)
4653
4654 * international/characters.el: Fix simple mistake ((car chars) ->
4655 elt), delete duplicated code.
4656
4657 2012-10-06 Glenn Morris <rgm@gnu.org>
4658
4659 * subr.el (read-passwd): Allow C-u to erase entry. (Bug#12570)
4660
4661 2012-10-06 Julian Scheid <julians37@gmail.com> (tiny change)
4662
4663 * color.el (color-hsl-to-rgb): Fix incorrect results for
4664 small and large hue values. (Bug#12559)
4665
4666 2012-10-05 Fabián Ezequiel Gallina <fgallina@cuca>
4667
4668 Enhancements to docstring formatting when filling paragraphs.
4669 * progmodes/python.el (python-fill-docstring-style): Rename from
4670 python-fill-string-style. Added new style.
4671 (python-fill-string): Use new style. Better checks for
4672 docstrings.
4673
4674 2012-10-05 Glenn Morris <rgm@gnu.org>
4675
4676 * net/newst-treeview.el (newsticker-group-move-feed): Doc fix.
4677
4678 * color.el (color-name-to-rgb, color-rgb-to-hex)
4679 (color-hue-to-rgb, color-hsl-to-rgb, color-rgb-to-hsv)
4680 (color-rgb-to-hsl, color-srgb-to-xyz, color-saturate-hsl)
4681 (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
4682 (color-lighten-name, color-darken-hsl, color-darken-name): Doc fixes.
4683
4684 * emacs-lisp/timer.el (with-timeout): Add missing progn. (Bug#12577)
4685
4686 2012-10-05 Juanma Barranquero <lekktu@gmail.com>
4687
4688 * ido.el (ido-directory-too-big-p): Pass dir through file-truename
4689 to get the correct size across symlinks.
4690
4691 * ido.el (ido-buffer-disable-smart-matches): Fix typo in docstring.
4692
4693 2012-10-04 Juri Linkov <juri@jurta.org>
4694
4695 * replace.el (query-replace-interactive): Declare obsolete.
4696 (query-replace-read-from): Add the last incremental search string
4697 to the list of default values accessible via M-n.
4698 (map-query-replace-regexp): Use `read-regexp'.
4699 (query-replace, query-replace-regexp, query-replace-regexp-eval)
4700 (map-query-replace-regexp, replace-string, replace-regexp):
4701 Fix docstrings to replace mentions of `query-replace-interactive'
4702 with alternatives. (Bug#12526)
4703
4704 2012-10-04 Juri Linkov <juri@jurta.org>
4705
4706 * dired.el (dired-shrink-to-fit): Declare obsolete. (Bug#1806)
4707 (dired-pop-to-buffer): Declare obsolete.
4708 (dired-mark-pop-up): Doc fix.
4709
4710 2012-10-04 Fabián Ezequiel Gallina <fgallina@cuca>
4711
4712 Allow user to set docstring style for fill-paragraph.
4713 * progmodes/python.el
4714 (python-fill-comment-function, python-fill-string-function)
4715 (python-fill-decorator-function, python-fill-paren-function):
4716 Remove :safe for defcustoms.
4717 (python-fill-string-style): New defcustom
4718 (python-fill-paragraph-function): Enhance context detection.
4719 (python-fill-string): Honor python-fill-string-style settings.
4720
4721 2012-10-04 Martin Rudalics <rudalics@gmx.at>
4722
4723 * emacs-lisp/edebug.el (edebug-pop-to-buffer): Select window
4724 after setting its buffer (Bug#10805).
4725
4726 2012-10-03 Fabián Ezequiel Gallina <fgallina@cuca>
4727
4728 Fix cornercase for string syntax.
4729 * progmodes/python.el (python-syntax-propertize-function):
4730 Simplify and enhance the regexp for unescaped quotes. Now it also
4731 matches quotes in weird situations like the single quote in
4732 "something\"'".
4733 (python-syntax-stringify): Simplify num-quotes detecting code.
4734
4735 2012-10-03 Glenn Morris <rgm@gnu.org>
4736
4737 * help-macro.el (three-step-help):
4738 Revert 2012-09-29 change. (Bug#12567)
4739
4740 2012-10-03 Martin Rudalics <rudalics@gmx.at>
4741
4742 * menu-bar.el (kill-this-buffer): Don't do anything when
4743 `menu-frame' is not alive or visible (Bug#8184).
4744
4745 * emacs-lisp/debug.el (debug): When quitting the debugger window
4746 restore current buffer (Bug#12502).
4747
4748 2012-10-02 Chong Yidong <cyd@gnu.org>
4749
4750 * progmodes/hideif.el (hif-lookup, hif-defined):
4751 Handle semantic-c-takeover-hideif.
4752
4753 2012-10-02 Paul Eggert <eggert@cs.ucla.edu>
4754
4755 Change sampling interval units from ms to ns.
4756 * profiler.el (profiler-sampling-interval): Change units
4757 from ms to ns, multiplying the default by 1000000 so that
4758 it remains 1 ms.
4759 (profiler-report-cpu-line-format): Give enough room for
4760 the maximum counters on 64-bit hosts.
4761 (profiler-report-render-calltree-1): Call them "CPU samples",
4762 not "Time (ms)", since they are not milliseconds now (and
4763 never really were).
4764
4765 2012-10-02 Sergio Durigan Junior <sergiodj@riseup.net> (tiny change)
4766
4767 * net/eudcb-bbdb.el (eudc-bbdb-format-record-as-result):
4768 Fix querying BBDB for entries without a last name (Bug#11580).
4769
4770 2012-10-02 Chong Yidong <cyd@gnu.org>
4771
4772 * emacs-lisp/eieio.el: Restore Version header.
4773
4774 2012-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
4775
4776 * vc/diff-mode.el (diff--auto-refine-data): New var.
4777 (diff-hunk): Use it to delay refinement.
4778 (diff-mode): Remove overlays when we turn off font-lock.
4779
4780 * textmodes/table.el: Use lexical-binding, dolist, define-minor-mode.
4781 (table-initialize-table-fixed-width-mode)
4782 (table-set-table-fixed-width-mode): Remove functions.
4783 (table-command-list): Move initialization into declaration.
4784 (table--tweak-menu-for-xemacs): Move defun outside mapcar.
4785 (table-with-cache-buffer): Use `declare'.
4786 (table-span-cell): Simplify via CSE.
4787 (table-fixed-width-mode): Use define-minor-mode.
4788 (table-call-interactively, table-funcall, table-apply): Remove.
4789 (table-function): New function, to replace them.
4790
4791 * bookmark.el (bookmark-search-pattern): Remove var.
4792 (bookmark-read-search-input): Remove function.
4793 (bookmark-bmenu-search): Reimplement using a minibuffer.
4794
4795 * faces.el (modeline): Remove obsolete face name.
4796
4797 * vc/add-log.el (add-log-buffer-file-name-function): Demote to defvar
4798 and give a non-nil default value.
4799 (add-change-log-entry): Simplify accordingly.
4800
4801 2012-10-01 Dmitry Gutov <dgutov@yandex.ru>
4802
4803 * vc/vc-git.el (vc-git-log-edit-toggle-signoff): New function.
4804 (vc-git-log-edit-toggle-amend): New function.
4805 (vc-git-log-edit-toggle-signoff): New function.
4806 (vc-git-log-edit-mode): New major mode.
4807 (vc-git-log-edit-mode-map): Keymap for it.
4808 (vc-git-checkin): Handle "Amend" and "Sign-Off" headers.
4809
4810 * vc/log-edit.el (log-edit-font-lock-keywords): Allow hyphens in
4811 header names.
4812 (log-edit-toggle-header): New function.
4813 (log-edit-extract-headers): Accept function values in HEADERS alist.
4814
4815 2012-10-01 David Engster <deng@randomsample.de>
4816
4817 * emacs-lisp/eieio-opt.el (eieio-describe-class): Add filename
4818 from symbol property and change message to be more consistent with
4819 Emacs proper.
4820 (eieio-describe-generic): Add filename for each implementation.
4821 Fix indices for generic and normal methods.
4822 (eieio-method-def, eieio-class-def): New buttons.
4823 (eieio-help-find-method-definition)
4824 (eieio-help-find-class-definition): New functions.
4825 (eieio-help-mode-augmentation-maybee): Add buttons to filenames of
4826 class, constructor and method definitions.
4827
4828 * emacs-lisp/eieio.el (eieiomt-add, eieio-defclass): Save file
4829 information in symbol property.
4830 (scoped-class): Remove.
4831 (eieio-slot-name-index, call-next-method): Check if it is bound.
4832
4833 2012-10-01 Leo P. White <lpw25@cam.ac.uk>
4834
4835 * emacs-lisp/eieio-custom.el (eieio-custom-mode-map): New option.
4836 (eieio-custom-mode): New major mode.
4837 (eieio-customize-object): Use it.
4838
4839 2012-10-01 Eric Ludlam <zappo@gnu.org>
4840
4841 * emacs-lisp/eieio-base.el (eieio-persistent-read): New input args
4842 specifying the expected class, and whether subclassing is allowed.
4843 (eieio-persistent-convert-list-to-object):
4844 (eieio-persistent-validate/fix-slot-value)
4845 (eieio-persistent-slot-type-is-class-p): New functions.
4846 (eieio-named::slot-missing): Doc fix.
4847
4848 * emacs-lisp/eieio-datadebug.el (data-debug/eieio-insert-slots):
4849 Stop using unused publd variable.
4850
4851 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click):
4852 (eieio-speedbar-description, eieio-speedbar-derive-line-path)
4853 (eieio-speedbar-object-buttonname, eieio-speedbar-make-tag-line)
4854 (eieio-speedbar-handle-click): Do not specify a class for the
4855 method. Fixes method invocation order problems with EDE.
4856
4857 2012-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
4858
4859 * emacs-lisp/bytecomp.el (byte-compiler-abbreviate-file): New function.
4860 (byte-compile-warning-prefix, byte-compile-file): Use it (bug#12508).
4861
4862 2012-10-01 Karl Fogel <kfogel@red-bean.com>
4863
4864 * bookmark.el (bookmark-version-control): Give tags in the
4865 :type choices (Bug#12309), and improve doc string.
4866 (bookmark-write-file): Bind `print-circle' to `t' to allow
4867 circular custom bookmark types. (Bug#12503)
4868
4869 2012-10-01 Paul Eggert <eggert@cs.ucla.edu>
4870
4871 Revert the FOLLOW-SYMLINKS change for file-attributes.
4872 * files.el (remote-file-name-inhibit-cache, after-find-file):
4873 * time.el (display-time-file-nonempty-p): Undo last change.
4874
4875 * profiler.el (profiler-sampling-interval): Change default back to 1.
4876 See Stefan Monnier in
4877 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00863.html>.
4878
4879 2012-10-01 Fabián Ezequiel Gallina <fgallina@cuca>
4880
4881 Shell output catching a la gud-gdb.
4882 * progmodes/python.el (python-shell-fetch-lines-in-progress)
4883 (python-shell-fetch-lines-string, python-shell-fetched-lines):
4884 New Vars.
4885 (python-shell-fetch-lines-filter): New function.
4886 (python-shell-send-string-no-output): Use them.
4887
4888 2012-09-30 Tomohiro Matsuyama <tomo@cx4a.org>
4889
4890 * profiler.el (profiler-sampling-interval): Rename from
4891 profiler-sample-interval.
4892 (profiler-sampling-interval): Default to 10.
4893 (profiler-find-profile): New command (was profiler-find-log).
4894 (profiler-find-profile-other-window): New command.
4895 (profiler-find-profile-other-frame): New command.
4896 (profiler-profile): Introduce API-level data structure.
4897
4898 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
4899
4900 file-attributes has a new optional arg FOLLOW-SYMLINKS.
4901 * files.el (remote-file-name-inhibit-cache):
4902 * time.el (display-time-file-nonempty-p): Use it.
4903 * files.el (after-find-file): Don't chase links before calling
4904 file-exists-p, as file-exists-p already does the right thing.
4905
4906 2012-09-30 Ralf Angeli <angeli@caeruleus.net>
4907
4908 Merge from standalone RefTeX repository.
4909
4910 The following ChangeLog entries are shortened versions of the
4911 original ones with file paths adapted. A not so strongly edited
4912 version of the original ChangeLog can be found in the commit log.
4913
4914 * textmodes/reftex-auc.el: Move `provide' call to bottom of file.
4915 (reftex-arg-cite): Use `reftex-cite-key-separator'.
4916 Correctly handle new value type returned by `reftex-citation'.
4917
4918 * textmodes/reftex-cite.el (reftex-create-bibtex-file): Make sure
4919 that entries with whitespace at various places are found.
4920 Doc fix. Include entries that are cross-referenced from cited entries.
4921 Include @String definitions in the resulting bib file. Add header
4922 and footer defined in `reftex-create-bibtex-header' and
4923 `reftex-create-bibtex-footer'.
4924 (reftex-do-citation): Make it possible again to insert
4925 non-existent entries. Save match data when asking for optional
4926 arguments. Return all keys, not just the first one.
4927 (reftex-all-used-citation-keys): Fix regexp to correctly extract
4928 all citations in the same line.
4929 (reftex-parse-bibtex-entry): Accept additional optional argument
4930 `raw' and keep quotes or braces if it is non-nil. Match fields
4931 containing hyphens besides word constituents.
4932 (reftex-get-string-refs): New function.
4933 (reftex-extract-bib-entries): Check if BibTeX file changed on disk
4934 and ask if it should be reread in case it did.
4935 (reftex-pop-to-bibtex-entry)
4936 (reftex-extract-bib-entries-from-thebibliography): Match \bibitem
4937 entries with spaces or tabs in front of arguments.
4938 (reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
4939 (reftex-parse-bibtex-entry, reftex-create-bibtex-file):
4940 Match entries containing numbers and symbol constituents.
4941 (reftex-do-citation, reftex-figure-out-cite-format):
4942 Use `reftex-cite-key-separator'.
4943
4944 * textmodes/reftex-dcr.el: Move provide statement to end of file.
4945 (reftex-mouse-view-crossref): Explain why point is set.
4946
4947 * textmodes/reftex-global.el: Whitespace changes.
4948
4949 * textmodes/reftex-index.el: Move provide statement to end of
4950 file.
4951 (reftex-index-selection-or-word): Use `reftex-region-active-p'.
4952 (reftex-index-visit-phrases-buffer): Set marker when visiting
4953 buffer. This allows for returning from the phrases file to the
4954 file one was just editing instead of the file where the last
4955 phrases was added from.
4956 (reftex-index-phrases-syntax-table): New variable. Give ?\"
4957 punctuation syntax as it usually is not used as string quote in
4958 TeX-related modes and may occur unmatched. The change also
4959 prevents fontification of quoted content.
4960 (reftex-index-phrases-mode): Use it.
4961
4962 * textmodes/reftex-parse.el (reftex-parse-from-file):
4963 Move backward one char if a `\' was matched after a section macro.
4964 (reftex-parse-from-file): Use beginning of match instead of end as
4965 bound.
4966
4967 * textmodes/reftex-ref.el: Adapt creation of
4968 `reftex-<package>-<macro>' functions to new structure of
4969 `reftex-ref-style-alist'.
4970 (reftex-reference): Use `reftex-ref-style-list' function.
4971 Adapt to new structure of `reftex-ref-style-alist'. Prompt for a
4972 reference macro if `reftex-ref-macro-prompt' is non-nil.
4973 (reftex-reference): Pass refstyle to `reftex-format-special'.
4974 Determine reference macro by looking at
4975 `reftex-ref-style-default-list' and `reftex-ref-style-alist'.
4976 Use only one special format function.
4977 (reftex-varioref-vref, reftex-fancyref-fref)
4978 (reftex-fancyref-Fref): Remove definitions. The functions are now
4979 generated from `reftex-ref-style-alist'.
4980 (reftex-format-vref, reftex-format-Fref, reftex-format-fref):
4981 Remove.
4982 (reftex-format-special): New function.
4983
4984 * textmodes/reftex-sel.el
4985 (reftex-select-cycle-ref-style-internal): Adapt to new structure
4986 of `reftex-ref-style-alist'. Remove code for testing macro type.
4987 (reftex-select-toggle-varioref)
4988 (reftex-select-toggle-fancyref): Remove.
4989 (reftex-select-cycle-ref-style-internal)
4990 (reftex-select-cycle-ref-style-forward)
4991 (reftex-select-cycle-ref-style-backward): New functions.
4992 (reftex-select-label-map): Use `v' and `V' for general cycling
4993 through reference styles. Add `p' for switching between number
4994 and page reference types.
4995
4996 * textmodes/reftex-toc.el (reftex-re-enlarge):
4997 Call `enlarge-window' only if there is something to do because in Emacs
4998 the horizontal version throws an error even if the parameter is 0.
4999
5000 * textmodes/reftex-vars.el (reftex-label-alist): Doc fix.
5001 (reftex-plug-into-AUCTeX): Doc fix.
5002 (reftex-vref-is-default, reftex-fref-is-default): Adapt doc
5003 string. Adapt to new name.
5004 (reftex-ref-style-alist): Change structure so that it is not
5005 possible to use multiple different package names within a style.
5006 Remove the symbols for symbols for macro type distinction.
5007 Add characters for macro selection.
5008 (reftex-ref-macro-prompt, reftex-create-bibtex-header)
5009 (reftex-create-bibtex-footer): New variables.
5010 (reftex-format-ref-function): Mention third argument of special
5011 format function.
5012 (reftex-ref-style-alist, reftex-ref-style-default-list):
5013 New variables.
5014 (reftex-vref-is-default, reftex-fref-is-default): Adapt doc string
5015 to new implementation. Mark as obsolete. Add compatibility code
5016 for honoring the variable values in case they are set.
5017 (reftex-cite-format-builtin, reftex-bibliography-commands):
5018 Add support for ConTeXt.
5019 (reftex-format-ref-function, reftex-format-cite-function):
5020 Fix custom type.
5021 (reftex-cite-key-separator): New variable.
5022
5023 * textmodes/reftex.el (reftex-syntax-table-for-bib)
5024 (reftex-mode): Do not derive `reftex-syntax-table-for-bib' from
5025 `reftex-syntax-table' because parens have to retain their paren
5026 syntax in order for parsing of BibTeX entries like @book(...) to
5027 work.
5028 (reftex-in-comment): Do not error out if `comment-start-skip' is
5029 not set. Deal correctly with escaped comment characters.
5030 (reftex-tie-multifile-symbols): Add doc string.
5031 Initialize `reftex-ref-style-list'.
5032 (reftex-untie-multifile-symbols): Add doc string.
5033 (reftex-add-index-macros): Doc fix.
5034 (reftex-ref-style-activate, reftex-ref-style-toggle)
5035 (reftex-ref-style-list): New functions.
5036 (reftex-mode-menu): Use them. Adapt to new structure of
5037 `reftex-ref-style-alist'.
5038 (reftex-select-with-char): Kill the RefTeX Select buffer when
5039 done.
5040 (reftex-remove-if): New function.
5041 (reftex-erase-all-selection-and-index-buffers)
5042 (reftex-mode-menu): Reference styles are now computed from
5043 `reftex-ref-style-alist'. Fix typo.
5044 (reftex-report-bug): New function.
5045 (reftex-uniquify, reftex-uniquify-by-car): Replace O(n^2)
5046 algorithms with O(n log n). Introduce optional argument SORT (not
5047 yet used).
5048
5049 2012-09-30 Fabián Ezequiel Gallina <fgallina@cuca>
5050
5051 Enhancements for triple-quote string syntax.
5052 * progmodes/python.el (python-syntax-propertize-function):
5053 Match both quote cases in one regexp.
5054 (python-syntax-stringify): Handle matches properly.
5055
5056 2012-09-30 Juri Linkov <juri@jurta.org>
5057
5058 * arc-mode.el (archive-summarize): Let-bind `buffer-file-truename'
5059 to nil around the call to `insert' to prevent
5060 directory time modification by lock_file. (Bug#2295)
5061 * tar-mode.el (tar-summarize-buffer): Idem.
5062
5063 2012-09-30 Juri Linkov <juri@jurta.org>
5064
5065 * facemenu.el (list-colors-sort): Add option "Luminance".
5066 (list-colors-sort-key): Implement it.
5067
5068 * vc/diff-mode.el (diff-refine-removed):
5069 * vc/ediff-init.el (ediff-fine-diff-A):
5070 * vc/smerge-mode.el (smerge-refined-removed):
5071 Change background color "#ffaaaa" to "#ffbbbb". (Bug#10181)
5072
5073 2012-09-30 Jan Djärv <jan.h.d@swipnet.se>
5074
5075 * term/ns-win.el (x-file-dialog): New function.
5076
5077 2012-09-30 Juanma Barranquero <lekktu@gmail.com>
5078
5079 * ido.el (ido-max-directory-size): Default to nil; the current
5080 default is small for POSIX systems, and impractical on Windows 7
5081 now that lstat returns directory sizes for NTFS.
5082
5083 2012-09-30 Martin Rudalics <rudalics@gmx.at>
5084
5085 In buffer display functions handle window-height/window-width
5086 alist entries. Suggested by Juri Linkov as fix for Bug#1806.
5087 * window.el (window--display-buffer): New argument ALIST.
5088 Obey window-height and window-width alist entries.
5089 (window--try-to-split-window): New argument ALIST.
5090 Bind window-combination-limit to t when the window's size shall be
5091 changed and window-combination-limit equals `window-size'.
5092 (display-buffer-in-atom-window)
5093 (display-buffer-in-major-side-window)
5094 (display-buffer-in-side-window, display-buffer-same-window)
5095 (display-buffer-reuse-window, display-buffer-pop-up-frame)
5096 (display-buffer-pop-up-window, display-buffer-below-selected)
5097 (display-buffer-at-bottom, display-buffer-in-previous-window)
5098 (display-buffer-use-some-window): Adjust all callers of
5099 window--display-buffer and window--try-to-split-window.
5100 (fit-frame-to-buffer): New option.
5101 (fit-window-to-buffer): Can resize frames if fit-frame-to-buffer
5102 is non-nil.
5103 (display-buffer-in-major-side-window): Evaluate window-height /
5104 window-width alist entries.
5105
5106 * help.el (temp-buffer-resize-frames)
5107 (temp-buffer-resize-regexps): Remove options.
5108 (temp-buffer-resize-mode): Adjust doc-string.
5109 (resize-temp-buffer-window): Don't consult
5110 temp-buffer-resize-regexps. Use fit-frame-to-buffer instead of
5111 temp-buffer-resize-frames.
5112
5113 * dired.el (dired-mark-pop-up):
5114 Call display-buffer-below-selected with a fit-window-to-buffer alist
5115 entry.
5116
5117 2012-09-30 Chong Yidong <cyd@gnu.org>
5118
5119 * server.el (server-host): Document the security implications.
5120 (server-auth-key): Doc fix.
5121
5122 * startup.el (initial-buffer-choice): Doc fix.
5123
5124 * minibuffer.el (minibuffer-local-filename-syntax): Doc fix.
5125
5126 * simple.el (delete-trailing-whitespace): Avoid an unnecessary
5127 restriction change.
5128
5129 * bindings.el (goto-map): Bind M-g TAB to move-to-column.
5130
5131 * help-fns.el (help-fns--obsolete): Fix last change.
5132
5133 2012-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
5134
5135 * winner.el (winner-mode-map): Obey winner-dont-bind-my-keys here.
5136 (minor-mode-map-alist): Remove redundant code.
5137
5138 * vc/pcvs.el (cvs-cleanup-collection): Keep entries that are currently
5139 visited in a buffer.
5140 (cvs-insert-visited-file): New function.
5141 (find-file-hook): Use it.
5142
5143 * vc/pcvs-info.el (cvs-fileinfo-pp): Don't use non-existent faces.
5144
5145 * vc/log-edit.el (log-edit-font-lock-keywords): Ignore case to
5146 chose face.
5147 (log-edit-empty-buffer-p): Don't require a space after a header.
5148
5149 * vc/ediff-util.el (ediff-diff-at-point): Don't assume point-min==1.
5150
5151 * tutorial.el (help-with-tutorial): Use minibuffer-with-setup-hook.
5152
5153 * textmodes/text-mode.el (paragraph-indent-minor-mode): Make it
5154 a proper minor-mode.
5155
5156 * textmodes/tex-mode.el (tex-mode-map): Don't bind paren keys.
5157
5158 2012-09-29 Glenn Morris <rgm@gnu.org>
5159
5160 * winner.el (winner-mode): Remove variable (let define-minor-mode
5161 handle it).
5162 (winner-dont-bind-my-keys, winner-boring-buffers, winner-mode-hook):
5163 Doc fixes.
5164 (winner-mode-leave-hook): Rename to winner-mode-off-hook.
5165 (winner-mode): Use define-minor-mode.
5166
5167 * vc/vc-sccs.el (vc-sccs-registered): Use the progn trick to get
5168 the full definition in loaddefs, rather than duplicating it.
5169
5170 * help-macro.el (three-step-help): No need to autoload defcustom.
5171
5172 * progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
5173 (inferior-lisp-program, inferior-lisp-load-command)
5174 (inferior-lisp-prompt, inferior-lisp-mode-hook):
5175 No need to autoload defcustoms.
5176
5177 * hippie-exp.el (hippie-expand-try-functions-list)
5178 (hippie-expand-verbose, hippie-expand-dabbrev-skip-space)
5179 (hippie-expand-dabbrev-as-symbol, hippie-expand-no-restriction)
5180 (hippie-expand-max-buffers, hippie-expand-ignore-buffers)
5181 (hippie-expand-only-buffers): No need to autoload defcustoms.
5182 * progmodes/vhdl-mode.el (vhdl-line-expand):
5183 Explicitly load hippie-exp, so it does not get autoloaded
5184 while hippie-expand-try-functions-list is let-bound.
5185
5186 2012-09-28 Glenn Morris <rgm@gnu.org>
5187
5188 * emacs-lisp/cl.el (flet): Fix case of obsolescence message.
5189
5190 * emacs-lisp/bytecomp.el (byte-compile-cl-file-p):
5191 Only "cl.el" counts as cl these days.
5192
5193 2012-09-28 Juri Linkov <juri@jurta.org>
5194
5195 Display archive errors in the echo area instead of inserting
5196 to the file buffer.
5197
5198 * arc-mode.el (archive-extract-by-stdout): Change arg STDERR-FILE
5199 to STDERR-TEST that can be a regexp matching a successful output.
5200 Create a temporary file and redirect stderr to it. Search for
5201 STDERR-TEST in the stderr output and display it in the echo area
5202 if no match is found.
5203 (archive-extract-by-file): New function like
5204 `archive-extract-by-stdout' but extracting archives to files
5205 and looking for successful matches in stdout. Function body is
5206 mostly copied from `archive-rar-extract'.
5207 (archive-rar-extract): Use `archive-extract-by-file'.
5208 (archive-7z-extract): Use `archive-extract-by-stdout'. (Bug#10347)
5209
5210 2012-09-28 Leo Liu <sdl.web@gmail.com>
5211
5212 * pcomplete.el (pcomplete-show-completions):
5213 Use minibuffer-message to make pcomplete usable in minibuffer.
5214
5215 * ido.el (ido-set-matches-1): Fix 2012-09-11 change.
5216
5217 2012-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
5218
5219 * type-break.el: Use lexical-binding.
5220 (type-break-mode): Use define-minor-mode.
5221
5222 * emacs-lisp/pcase.el (pcase--mark-used): New.
5223 (pcase--u1): Use it (bug#12512).
5224
5225 * custom.el (load-theme): Set buffer-file-name so the load is recorded
5226 in load-history with the right file name.
5227
5228 2012-09-28 Tassilo Horn <tsdh@gnu.org>
5229
5230 * doc-view.el (doc-view-current-cache-doc-pdf): New function.
5231 (doc-view-doc->txt, doc-view-convert-current-doc): Use it.
5232 (doc-view-get-bounding-box): Make bounding box slicing work for
5233 ODF and DVI documents.
5234
5235 2012-09-28 Glenn Morris <rgm@gnu.org>
5236
5237 * type-break.el (type-break-mode, type-break-interval)
5238 (type-break-good-rest-interval, type-break-keystroke-threshold):
5239 No need to autoload.
5240 (type-break-good-rest-interval, type-break-keystroke-threshold):
5241 Add :set-after.
5242
5243 2012-09-28 Chong Yidong <cyd@gnu.org>
5244
5245 * progmodes/verilog-mode.el (verilog-auto-inst-interfaced-ports):
5246 Add :version tag.
5247
5248 2012-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
5249
5250 * json.el (json-encode-char): Codes 127-160 aren't "ASCII printable".
5251
5252 2012-09-27 Glenn Morris <rgm@gnu.org>
5253
5254 * faces.el (x-display-name): Declare (for without-x builds).
5255
5256 * linum.el (linum-format): Don't autoload it. Improve :type.
5257
5258 * progmodes/tcl.el: Don't require outline when compiling.
5259 (outline-regexp, outline-level): Declare.
5260 * textmodes/sgml-mode.el: Don't require outline when compiling.
5261 (outline-regexp, outline-heading-end-regexp, outline-level): Declare.
5262
5263 * term.el (term-ansi-reset):
5264 Try setting term-ansi-face-already-done to nil. (Bug#11785)
5265
5266 * vc/vc.el (vc-next-action): Only gripe about committing read-only
5267 files for RCS and SCCS. (Bug#9781)
5268
5269 2012-09-27 Chong Yidong <cyd@gnu.org>
5270
5271 * progmodes/verilog-mode.el (verilog-mode-release-emacs): Fix last
5272 change; value should be t.
5273
5274 2012-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
5275
5276 * image-mode.el: Use lexical-binding.
5277 (image-mode-winprops): Use t to stand for the window of
5278 a buffer that's not displayed.
5279 * doc-view.el (doc-view-new-window-function): Handle the new
5280 t in winprops.
5281 (doc-view-enlarge): Make it a real nop if the size is not changed.
5282 (doc-view-display): Handle the case where the buffer is not (yet?)
5283 displayed in any window.
5284 (doc-view-saved-settings): New var.
5285 (doc-view-mode): Use it.
5286 (doc-view-fallback-mode): Set it.
5287
5288 * minibuf-eldef.el: Make it possible to replace (default ...) with [...].
5289 Set lexical-binding.
5290 (minibuffer-eldef-shorten-default): New var.
5291 (minibuffer-default-in-prompt-regexps): Use it for new default.
5292 (minibuf-eldef-setup-minibuffer): Add replacement functionality.
5293
5294 2012-09-26 Juanma Barranquero <lekktu@gmail.com>
5295
5296 * international/uni-bidi.el:
5297 * international/uni-category.el:
5298 * international/uni-name.el:
5299 * international/uni-numeric.el: Regenerate.
5300
5301 2012-09-26 Tomohiro Matsuyama <tomo@cx4a.org>
5302 Stefan Monnier <monnier@iro.umontreal.ca>
5303
5304 * profiler.el: New file.
5305
5306 2012-09-26 Stefan Monnier <monnier@iro.umontreal.ca>
5307
5308 * emacs-lisp/testcover.el (testcover-after): Add gv-expander.
5309 (testcover-reinstrument): Simplify with CSE.
5310
5311 2012-09-26 Juanma Barranquero <lekktu@gmail.com>
5312
5313 * window.el (temp-buffer-window-setup): Fix typo in docstring.
5314
5315 2012-09-25 Wilson Snyder <wsnyder@wsnyder.org>
5316
5317 * verilog-mode.el (verilog-auto-ascii-enum, verilog-auto-inout)
5318 (verilog-auto-input, verilog-auto-insert-lisp)
5319 (verilog-auto-output, verilog-auto-output-every, verilog-auto-reg)
5320 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-undef)
5321 (verilog-auto-unused, verilog-auto-wire)
5322 (verilog-forward-or-insert-line): Fix AUTOs with no trailing
5323 newline. Reported by Andrew Jones.
5324 (verilog-auto-inst) Support expanding $clog2 in AUTOINST.
5325 Reported by Brad Dobbie.
5326 (verilog-batch-delete-trailing-whitespace):
5327 Create verilog-batch-delete-trailing-whitespace.
5328 Reported by Brad Dobbie.
5329 (verilog-auto-inout-param): Support AUTOINOUTPARAM for copying
5330 parameters from another module. Reported by Dan Katz.
5331 (verilog-auto, verilog-auto-assign-modport)
5332 (verilog-auto-inout-modport): Add AUTOASSIGNMODPORT and
5333 AUTOINOUTMODPORT for UVM interface module shell generation.
5334 Reported by Brad Dobbie.
5335 (verilog-auto-inst-interfaced-ports): Make default nil, as more
5336 standard behavior.
5337 (verilog-auto): Fix AUTO parameters with parenthesis arguments.
5338 Reported by Matt Martin.
5339
5340 2012-09-25 Martin Rudalics <rudalics@gmx.at>
5341
5342 * window.el (window--resize-child-windows): When resizing child
5343 windows proportionally, process them in reverse order to
5344 preserve the "when splitting a window the new one gets the odd
5345 line" behavior.
5346 (window--resize-root-window-vertically): When resizing the
5347 minibuffer window try to affect only windows at the bottom of the
5348 frame. (Bug#12419)
5349
5350 2012-09-25 Chong Yidong <cyd@gnu.org>
5351
5352 * subr.el (declare): Doc fix.
5353
5354 * help-fns.el (help-fns--obsolete): Handle macros properly.
5355
5356 2012-09-25 Chong Yidong <cyd@gnu.org>
5357
5358 * bookmark.el (bookmark-jump-noselect): Use a declare form to mark
5359 this function obsolete.
5360
5361 * calendar/cal-x.el (calendar-two-frame-setup)
5362 (calendar-only-one-frame-setup, calendar-one-frame-setup):
5363 * calendar/calendar.el (american-calendar, european-calendar)
5364 (calendar-for-loop):
5365 * comint.el (comint-dynamic-simple-complete)
5366 (comint-dynamic-complete-as-filename, comint-unquote-filename):
5367 * desktop.el (desktop-load-default):
5368 * dired-x.el (dired-omit-here-always)
5369 (dired-hack-local-variables, dired-default-directory):
5370 * emacs-lisp/derived.el (derived-mode-class):
5371 * emacs-lisp/timer.el (timer-set-time-with-usecs):
5372 * emacs-lock.el (toggle-emacs-lock):
5373 * epa.el (epa-display-verify-result):
5374 * epg.el (epg-sign-keys, epg-start-sign-keys)
5375 (epg-passphrase-callback-function):
5376 * eshell/esh-util.el (eshell-for):
5377 * eshell/eshell.el (eshell-remove-from-window-buffer-names)
5378 (eshell-add-to-window-buffer-names):
5379 * files.el (locate-file-completion):
5380 * imenu.el (imenu-example--create-c-index)
5381 (imenu-example--create-lisp-index)
5382 (imenu-example--lisp-extract-index-name)
5383 (imenu-example--name-and-position):
5384 * international/mule-cmds.el (princ-list):
5385 * international/mule-diag.el (decode-codepage-char):
5386 * international/mule-util.el (detect-coding-with-priority):
5387 * iswitchb.el (iswitchb-read-buffer):
5388 * mail/mailalias.el (mail-complete):
5389 * mail/sendmail.el (mail-sent-via):
5390 * mouse.el (mouse-popup-menubar-stuff, mouse-popup-menubar)
5391 (mouse-major-mode-menu):
5392 * password-cache.el (password-read-and-add):
5393 * pcomplete.el (pcomplete-parse-comint-arguments):
5394 * progmodes/sh-script.el (sh-maybe-here-document):
5395 * replace.el (query-replace-regexp-eval):
5396 * savehist.el (savehist-load):
5397 * simple.el (choose-completion-delete-max-match):
5398 * term.el (term-dynamic-simple-complete):
5399 * vc/ediff-init.el (ediff-check-version):
5400 * vc/ediff-wind.el (ediff-choose-window-setup-function-automatically):
5401 * vc/vc.el (vc-diff-switches-list):
5402 * view.el (view-return-to-alist-update): Likewise.
5403
5404 * subr.el (eval-next-after-load, makehash, insert-string)
5405 (assoc-ignore-representation, assoc-ignore-case): Use declare to
5406 mark obsolete.
5407 (mode-line-inverse-video): Variable deleted.
5408
5409 * international/mule-util.el (string-to-sequence): Remove.
5410
5411 * calendar/calendar.el (calendar-version):
5412 * calendar/icalendar.el (icalendar-extract-ical-from-buffer)
5413 (icalendar-convert-diary-to-ical):
5414 * cus-edit.el (custom-mode):
5415 * ansi-color.el (ansi-color-unfontify-region):
5416 * international/latin1-disp.el (latin1-char-displayable-p):
5417 * progmodes/cwarn.el (turn-on-cwarn-mode):
5418 * progmodes/which-func.el (which-func-update-1):
5419 Use define-obsolete-function-alias.
5420
5421 * net/newst-backend.el (newsticker-cache-filename):
5422 * net/newst-treeview.el (newsticker-groups-filename):
5423 Fix incorrect obsolescence declaration.
5424
5425 * allout.el (allout-passphrase-hint-string): Likewise.
5426 (allout-init): Use a declare form to mark obsolete.
5427
5428 * emacs-lisp/byte-run.el (make-obsolete): Doc fix; emphasize that
5429 this applies to functions.
5430
5431 * iswitchb.el (iswitchb-read-buffer): Move code of
5432 iswitchb-define-mode-map here, and delete that obsolete function.
5433
5434 * net/snmp-mode.el (snmp-font-lock-keywords-3): Don't use obsolete
5435 font-lock-reference-face.
5436
5437 2012-09-25 Glenn Morris <rgm@gnu.org>
5438
5439 * buff-menu.el (Buffer-menu-name-width, Buffer-menu-size-width):
5440 Doc fixes.
5441
5442 * eshell/em-term.el (eshell-term-name):
5443 Default to term-term-name. (Bug#12485)
5444
5445 2012-09-24 Fabián Ezequiel Gallina <fgallina@cuca>
5446
5447 * progmodes/python.el (python-shell-send-buffer): Better handling
5448 of "if __name__ == '__main__':" conditionals when sending the buffer.
5449
5450 2012-09-24 Glenn Morris <rgm@gnu.org>
5451
5452 * eshell/esh-cmd.el (eshell-find-alias-function):
5453 Tighten up file-name regexp. (Bug#12499)
5454
5455 2012-09-24 Fabián Ezequiel Gallina <fgallina@cuca>
5456
5457 Enhancements for triple-quote string syntax.
5458 * progmodes/python.el (python-quote-syntax): Remove.
5459 (python-syntax-propertize-function): New value.
5460 (python-syntax-count-quotes, python-syntax-stringify):
5461 New functions.
5462
5463 2012-09-24 Chong Yidong <cyd@gnu.org>
5464
5465 * mail/supercite.el (sc-version): Remove obsolete function.
5466 (sc-describe): Don't mark as obsolete, since it is bound.
5467 (sc-submit-bug-report): Remove.
5468
5469 * vc/log-edit.el (cvs-changelog-full-paragraphs)
5470 (cvs-commit-buffer-require-final-newline): Remove.
5471 (log-edit-require-final-newline)
5472 (log-edit-changelog-full-paragraphs): Default to t.
5473
5474 * vc/pcvs-defs.el (cvs-diff-buffer-name, cvs-diff-ignore-marks)
5475 * vc/vc-hooks.el (vc-ignore-vc-files, vc-master-templates)
5476 * vc/vc.el (vc-checkout-carefully): Likewise.
5477
5478 * vc/emerge.el (emerge-mode): Make it an obsolete alias.
5479 (emerge-version): Remove.
5480
5481 * progmodes/compile.el (compile-internal): Remove.
5482 (compilation-parse-errors-function): Fix typo.
5483
5484 * international/mule.el (set-char-table-default): Remove.
5485 (set-coding-priority, make-coding-system, generic-char-p)
5486 (charset-list, charset-bytes, charset-id): Use declare to mark
5487 functions as obsolete.
5488
5489 * vc/pcvs-defs.el (cvs-buffer-name-alist)
5490 (cvs-invert-ignore-marks): Remove references to obsolete vars.
5491 * vc/vc-hooks.el (vc-default-registered): Don't use
5492 vc-master-templates.
5493
5494 * font-lock.el (font-lock-reference-face):
5495 Use define-obsolete-variable-alias.
5496
5497 * generic-x.el (rul-generic-mode): Use font-lock-constant-face.
5498 * calendar/calendar.el (calendar-font-lock-keywords):
5499 * calendar/diary-lib.el (diary-font-lock-keywords)
5500 (diary-fancy-font-lock-keywords):
5501 * textmodes/reftex-sel.el (reftex-insert-docstruct):
5502 * textmodes/reftex-index.el (reftex-insert-index):
5503 * textmodes/reftex-cite.el (reftex-format-bib-entry):
5504 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
5505 * progmodes/ps-mode.el (ps-mode-font-lock-keywords-1):
5506 * progmodes/prolog.el (prolog-font-lock-keywords):
5507 * progmodes/idlwave.el (idlwave-idl-keywords):
5508 * progmodes/ada-mode.el (ada-font-lock-keywords):
5509 * net/snmp-mode.el (snmp-font-lock-keywords-3): Likewise.
5510
5511 2012-09-24 Glenn Morris <rgm@gnu.org>
5512
5513 * mail/emacsbug.el (report-emacs-bug): Include `lsb_release -d'.
5514
5515 2012-09-23 Fabián Ezequiel Gallina <fgallina@cuca>
5516
5517 * progmodes/python.el (python-indent-line): More consistent cursor
5518 movement behavior.
5519
5520 2012-09-23 Stefan Merten <smerten@oekonux.de>
5521
5522 * textmodes/rst.el: Fix compiler warning.
5523
5524 2012-09-23 Roland Winkler <winkler@gnu.org>
5525
5526 * textmodes/bibtex.el (bibtex-autokey-transcriptions):
5527 Transcribe also LaTeX hyphenation.
5528 (bibtex-reformat): Bug fix. Do not quote twice the elements of
5529 bibtex-reformat-previous-options.
5530
5531 2012-09-23 Roland Winkler <winkler@gnu.org>
5532
5533 * proced.el (proced-renice-command): New variable.
5534 (proced-marked-processes): New function.
5535 (proced-with-processes-buffer): New macro.
5536 (proced-send-signal): Use them.
5537 (proced-renice): New command bound to r.
5538
5539 2012-09-23 Roland Winkler <winkler@gnu.org>
5540
5541 * ibuf-ext.el (ibuffer-switch-to-saved-filter-groups): If list
5542 ibuffer-saved-filter-groups has one element, shortcut the call of
5543 completing-read. (Bug#12331)
5544
5545 2012-09-23 Chong Yidong <cyd@gnu.org>
5546
5547 * bindings.el (mode-line-toggle-read-only):
5548 * bs.el (bs-toggle-readonly):
5549 * buff-menu.el (Buffer-menu-toggle-read-only):
5550 * dired.el (dired-toggle-read-only):
5551 * ibuffer.el (ibuffer-do-toggle-read-only): Use read-only-mode.
5552
5553 2012-09-23 Chong Yidong <cyd@gnu.org>
5554
5555 * image.el (image-type-available-p): Adapt to init-image-library
5556 argument changes.
5557
5558 2012-09-22 Juri Linkov <juri@jurta.org>
5559
5560 * dired.el (dired-mode-map): Add [remap read-only-mode] for
5561 `dired-toggle-read-only'. (Bug#12462)
5562
5563 2012-09-22 Martin Rudalics <rudalics@gmx.at>
5564
5565 * subr.el (temp-output-buffer-show): New function.
5566 (with-output-to-temp-buffer): Call temp-output-buffer-show
5567 instead of internal-temp-output-buffer-show.
5568
5569 2012-09-22 Chong Yidong <cyd@gnu.org>
5570
5571 * files.el (ctl-x-map): Bind C-x C-q to read-only-mode
5572 (Bug#12462).
5573
5574 * repeat.el (repeat): Doc fix (Bug#12348).
5575
5576 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix
5577 (Bug#10909).
5578
5579 * simple.el (shell-command-on-region): Doc fix.
5580 (read-only-mode): Doc fix.
5581
5582 2012-09-22 Eli Zaretskii <eliz@gnu.org>
5583
5584 * emacs-lisp/timer.el (run-with-idle-timer)
5585 (timer-activate-when-idle): Warn against reinvoking an idle timer
5586 from within its own timer action. (Bug#12447)
5587
5588 2012-09-22 Martin Rudalics <rudalics@gmx.at>
5589
5590 * cus-start.el (window-combination-limit): Add new optional
5591 values.
5592 * window.el (temp-buffer-window-show)
5593 (window--try-to-split-window): Handle new values of
5594 window-combination-limit (Bug#1806).
5595 (split-window): Test window-combination-limit for t instead of
5596 non-nil.
5597 (display-buffer-at-bottom): New buffer display action function.
5598 * help.el (temp-buffer-resize-regexps): New option.
5599 (temp-buffer-resize-mode): Rewrite doc-string.
5600 (resize-temp-buffer-window): Obey temp-buffer-resize-regexps.
5601 Don't resize reused window. Suggested by Glenn Morris.
5602
5603 2012-09-22 Stefan Merten <smerten@oekonux.de>
5604
5605 * textmodes/rst.el: Revamp section title faces.
5606 (rst-official-version)
5607 (rst-package-emacs-version-alist): Sync with official version
5608 V1.4.0.
5609 (rst-faces-defaults, rst-set-level-default)
5610 (rst-level-face-max, rst-level-face-base-color)
5611 (rst-level-face-base-light, rst-level-face-format-light)
5612 (rst-level-face-step-light, rst-define-level-faces): Obsolete.
5613 (rst-adornment-faces-alist): Match new setup.
5614 (rst-level-1, rst-level-2, rst-level-3, rst-level-4)
5615 (rst-level-5, rst-level-6): New faces.
5616
5617 2012-09-22 Chong Yidong <cyd@gnu.org>
5618
5619 * simple.el (undo): Handle indirect buffers (Bug#8207).
5620
5621 2012-09-21 Leo Liu <sdl.web@gmail.com>
5622
5623 IDO: Disable match re-ordering for buffer switching.
5624 * ido.el (ido-buffer-disable-smart-matches): New variable.
5625 (ido-set-matches-1): Use it. (Bug#2042)
5626
5627 2012-09-21 Jose Marino <marinoj@nso.edu> (tiny change)
5628
5629 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
5630 Fix 2011-05-17 change. (Bug#12418)
5631
5632 2012-09-21 Leo Liu <sdl.web@gmail.com>
5633
5634 * subr.el (ignore-errors): Mention with-demoted-errors in doc-string.
5635
5636 2012-09-21 Glenn Morris <rgm@gnu.org>
5637
5638 * emacs-lisp/shadow.el (load-path-shadows-font-lock-keywords):
5639 Be more robust about locating simple.el.
5640
5641 2012-09-21 Glenn Morris <rgm@gnu.org>
5642
5643 * mail/emacsbug.el (report-emacs-bug): Trap load-path-shadows errors.
5644
5645 2012-09-21 Joel Bion <jpbion@westvi.com> (tiny change)
5646
5647 * pcmpl-gnu.el (pcmpl-gnu-tarfile-regexp): Add tar.xz. (Bug#12382)
5648
5649 2012-09-20 Juri Linkov <juri@jurta.org>
5650
5651 * replace.el (query-replace-read-from): Use `read-regexp' instead
5652 of `read-from-minibuffer' when `regexp-flag' is non-nil.
5653 (occur-read-primary-args): Use `read-regexp' instead of
5654 `read-string'.
5655 (multi-occur-in-matching-buffers): Use `read-regexp' instead of
5656 `read-from-minibuffer'.
5657 * isearch.el (isearch-occur): Use `read-regexp' instead of
5658 `read-string'.
5659 * dired.el (dired-read-regexp): Use `read-regexp' instead of
5660 `read-from-minibuffer'.
5661 * progmodes/grep.el (grep-read-regexp): Use `read-regexp' instead
5662 of `read-string'. (Bug#7567)
5663
5664 * replace.el (read-regexp): Rename DEFAULT-VALUE arg to DEFAULTS
5665 and allow accepting a list of strings prepended to a list of
5666 standard default values. Doc fix. (Bug#12321)
5667
5668 * replace.el (read-regexp): Add HISTORY arg. (Bug#7567)
5669
5670 * replace.el (read-regexp): Don't add ": " when PROMPT already
5671 ends with a colon and space. (Bug#12321)
5672
5673 2012-09-20 Tassilo Horn <tsdh@gnu.org>
5674
5675 * doc-view.el (doc-view-display): Better fix for the cl-assertion
5676 error.
5677
5678 2012-09-20 Stefan Merten <smerten@oekonux.de>
5679
5680 * textmodes/rst.el: Integrate support for `imenu' and `which-function'.
5681 Fixes feature request bug#11711.
5682 (rst-mode): Create `imenu-create-index-function'.
5683 (rst-get-stripped-line): Delete after refactoring.
5684 (rst-section-tree, rst-section-tree-rec)
5685 (rst-section-tree-point): Refactor and document properly.
5686 (rst-imenu-find-adornments-for-position)
5687 (rst-imenu-convert-cell, rst-imenu-create-index):
5688 New function.
5689
5690 2012-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
5691
5692 * emacs-lisp/macroexp.el (macroexp--obsolete-warning): New function.
5693 (macroexp--expand-all): Use it.
5694 (macroexp--funcall-and-return): Remove by folding it into its sole
5695 caller (macroexp--warn-and-return).
5696 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete):
5697 Use macroexp--obsolete-warning.
5698
5699 * calc/calc.el: Fix last change by removing the whole chunk, since it
5700 was only needed back when Calc was not bundled.
5701
5702 2012-09-20 Martin Rudalics <rudalics@gmx.at>
5703
5704 * emacs-lisp/debug.el (debug): Restore assignment to
5705 debugger-old-buffer removed on 2012-09-08.
5706
5707 2012-09-20 Juri Linkov <juri@jurta.org>
5708
5709 * dired-aux.el (dired-diff): Remove (require 'diff) since
5710 `diff-latest-backup-file' is now autoloaded.
5711
5712 2012-09-20 Chong Yidong <cyd@gnu.org>
5713
5714 * vc/diff.el (diff-latest-backup-file): Autoload.
5715
5716 2012-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
5717
5718 * calc/calc.el: Remove redundant autoload shape check.
5719 (sel-mode): Don't defvar.
5720 (calc-get-stack-element): Add `sel-mode' arg instead.
5721 (calc-top, calc-top-list): Pass it this additional argument.
5722 * calc/calc-store.el (calc-store-map):
5723 * calc/calc-map.el (calc-apply, calc-reduce, calc-map)
5724 (calc-map-equation, calc-outer-product, calc-inner-product):
5725 * calc/calc-aent.el (calc-alg-entry): Don't bind sel-mode.
5726
5727 * emacs-lisp/macroexp.el (macroexp--expand-all): Fix last change.
5728
5729 2012-09-19 Juri Linkov <juri@jurta.org>
5730
5731 * dired-aux.el (dired-diff): Add (require 'diff) because
5732 `diff-latest-backup-file' is not autoloaded.
5733 (dired-do-chxxx, dired-do-chmod): Set `no-error-if-not-filep' arg
5734 of `dired-get-filename' to t to not report error when there is
5735 no default file on the current line.
5736
5737 2012-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
5738
5739 * emacs-lisp/macroexp.el (macroexp--funcall-if-compiled): Rename from
5740 macroexp--eval-if-compile.
5741 (macroexp--funcall-and-return, macroexp--warn-and-return): New funs.
5742 (macroexp--expand-all): Use them (bug#12371).
5743
5744 * doc-view.el (doc-view-guess-paper-size)
5745 (doc-view-scale-bounding-box): Fix unbound `caddr'.
5746
5747 2012-09-19 Tassilo Horn <tsdh@gnu.org>
5748
5749 New feature: set optimal slice from BoundingBox information.
5750 * doc-view.el (doc-view-mode-map): Add keybinding.
5751 (doc-view-menu): Add menu entry.
5752 (doc-view-set-slice): Adapt docstring.
5753 (doc-view-get-bounding-box, doc-view-guess-paper-size)
5754 (doc-view-scale-bounding-box)
5755 (doc-view-set-slice-from-bounding-box): New functions.
5756 (doc-view-paper-sizes): New defvar.
5757
5758 2012-09-19 Glenn Morris <rgm@gnu.org>
5759
5760 * emacs-lisp/macroexp.el (byte-compile-warn-obsolete)
5761 (byte-compile-log-warning): Autoload. (Bug#12371)
5762
5763 * calendar/calendar.el (calendar-american-month-header)
5764 (calendar-european-month-header, calendar-iso-month-header)
5765 (calendar-month-header): New options.
5766 (calendar-set-date-style): Set calendar-month-header. Redraw calendar.
5767 (calendar-generate-month): Use calendar-month-header. (Bug#9510)
5768
5769 2012-09-19 Jan Djärv <jan.h.d@swipnet.se>
5770
5771 * startup.el (command-line-ns-option-alist): Add -g and --geometry.
5772
5773 2012-09-18 Juri Linkov <juri@jurta.org>
5774
5775 * dired-aux.el (dired-diff): Restore original functionality of
5776 getting the default value, but keep new feature of using the
5777 latest existing backup file (`diff-latest-backup-file').
5778
5779 2012-09-18 Juri Linkov <juri@jurta.org>
5780
5781 * dired.el (dired-mark): If the region is active in Transient Mark
5782 mode, mark all files in the active region. Doc fix.
5783 (dired-unmark, dired-flag-file-deletion, dired-unmark-backward):
5784 Doc fix. (Bug#10624)
5785
5786 2012-09-18 Juri Linkov <juri@jurta.org>
5787
5788 * dired-aux.el (dired-do-chxxx, dired-do-chmod): Default file
5789 attributes for M-n are pulled from the file at point.
5790 (dired-do-chgrp, dired-do-chown, dired-do-touch): Doc fix.
5791 Suggested by Drew Adams. (Bug#10624)
5792
5793 2012-09-18 Dmitry Gutov <dgutov@yandex.ru>
5794
5795 * progmodes/ruby-mode.el (ruby-brace-to-do-end): Don't add extra
5796 whitespace after "end".
5797 (ruby-do-end-to-brace): Collapse block to one line if it fits
5798 within fill-column.
5799
5800 2012-09-18 Martin Rudalics <rudalics@gmx.at>
5801
5802 * emacs-lisp/debug.el (debugger-bury-or-kill): Fix customization
5803 value.
5804 (debug): Don't remove debugger window when debugger is expected
5805 to be back.
5806
5807 2012-09-18 Chong Yidong <cyd@gnu.org>
5808
5809 * custom.el (defface): Doc fix.
5810
5811 * cus-edit.el (custom-unlispify-remove-prefixes): Add warning.
5812
5813 2012-09-18 Martin Blais <blais@furius.ca> (tiny change)
5814
5815 * progmodes/compile.el (compilation-start): Use compilation-always-kill
5816 to initialize query-on-exit; then test that instead (bug#12288).
5817
5818 2012-09-17 Stefan Merten <smerten@oekonux.de>
5819
5820 * textmodes/rst.el: Add support for `testcover'.
5821 (rst-defcustom-testcover, rst-testcover-add-compose)
5822 (rst-testcover-add-1value): New functions.
5823 (rst-portable-mark-active-p): Replace by `use-region-p'.
5824 (rst-update-section, rst-classify-adornment)
5825 (rst-find-title-line): Mark `1value' forms.
5826 (rst-classify-adornment): Remove superfluous form.
5827 (rst-update-section, rst-get-adornments-around)
5828 (rst-adornment-complete-p, rst-get-next-adornment)
5829 (rst-adjust, rst-promote-region)
5830 (rst-display-adornments-hierarchy, rst-straighten-adornments)
5831 (rst-find-pfx-in-region, rst-section-tree-rec)
5832 (rst-section-tree-point, rst-toc-insert, rst-toc-insert-node)
5833 (rst-toc-node, rst-toc, rst-forward-section)
5834 (rst-iterate-leftmost-paragraphs)
5835 (rst-iterate-leftmost-paragraphs-2, rst-enumerate-region)
5836 (rst-bullet-list-region)
5837 (rst-convert-bullets-to-enumeration, rst-font-lock-keywords)
5838 (rst-compile-find-conf, rst-compile)
5839 (rst-repeat-last-character): Fix style.
5840
5841 2012-09-17 Chong Yidong <cyd@gnu.org>
5842
5843 * comint.el (comint--complete-file-name-data): Don't add a space
5844 if the status is `sole'; that adds a gratuitous space in the
5845 completion-cycling case (Bug#12092).
5846
5847 * pcomplete.el (pcomplete-completions-at-point): Likewise.
5848
5849 2012-09-17 Richard Stallman <rms@gnu.org>
5850
5851 * mail/rmailmm.el (rmail-mime-toggle-raw): Do rmail-mime-insert
5852 only in the mime-shown mode, not in raw mode.
5853 (rmail-mime): Toggle off mime by displaying the message without
5854 mime processing. (Bug#12305)
5855
5856 * mail/rmail.el (rmail-retry-failure):
5857 Turn off mime processing first. (Bug#12037)
5858
5859 * epa-mail.el (epa-mail-encrypt): Fix bug when a name has no key.
5860
5861 2012-09-17 Chong Yidong <cyd@gnu.org>
5862
5863 * shell.el (shell-file-name-chars, shell-file-name-quote-list)
5864 (shell-dynamic-complete-functions): Convert to defcustom.
5865 (shell-prompt-pattern, shell-completion-fignore): Doc fix.
5866
5867 * bookmark.el (bookmark-bmenu-toggle-filenames): Doc fixes.
5868 * comint.el (comint-prompt-read-only):
5869 * custom.el (defcustom):
5870 * hi-lock.el (hi-lock-mode):
5871 * ibuffer.el (ibuffer-formats):
5872 * ielm.el (ielm-prompt-read-only):
5873 * novice.el (disable-command):
5874 * saveplace.el (toggle-save-place):
5875 * speedbar.el (speedbar-supported-extension-expressions):
5876 * startup.el (auto-save-list-file-prefix, init-file-user)
5877 (after-init-hook, inhibit-startup-echo-area-message):
5878 * strokes.el (strokes-help):
5879 * time-stamp.el (time-stamp):
5880 * calendar/calendar.el (calendar, diary-file):
5881 * calendar/diary-lib.el (diary-mail-entries, diary)
5882 (diary-list-entries-hook):
5883 * calendar/holidays.el (holidays, calendar-holidays):
5884 * calendar/lunar.el (lunar-phases):
5885 * calendar/solar.el (sunrise-sunset):
5886 * emulation/edt.el (edt-load-keys):
5887 * emulation/viper.el (viper-mode):
5888 * eshell/em-alias.el (eshell-command-aliases-list):
5889 * eshell/esh-util.el (eshell-convert-numeric-arguments):
5890 * international/ogonek.el (ogonek-information):
5891 * net/tramp-cmds.el (tramp-bug):
5892 * net/quickurl.el (quickurl-reread-hook-postfix):
5893 * play/decipher.el (decipher-font-lock-keywords):
5894 * progmodes/cc-styles.el (c-set-style):
5895 * progmodes/idlw-shell.el (idlwave-shell-prompt-pattern):
5896 * progmodes/inf-lisp.el (inferior-lisp-prompt):
5897 * progmodes/octave-mod.el (octave-mode):
5898 * progmodes/sql.el (sql-mode, sql-interactive-mode, sql-password):
5899 * progmodes/verilog-mode.el (verilog-read-defines):
5900 * textmodes/two-column.el (2C-mode): Likewise.
5901
5902 2012-09-16 Katsumi Yamaoka <yamaoka@jpl.org>
5903
5904 * mail/mailabbrev.el (mail-abbrev-expand-hook): Work for a mail aliasee
5905 that holds many addresses.
5906
5907 2012-09-16 Chong Yidong <cyd@gnu.org>
5908
5909 * align.el (align-areas): Call the indication function with
5910 positions instead of markers for arguments (Bug#12343).
5911
5912 * files.el (parse-colon-path): Use split-string (Bug#12351).
5913
5914 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
5915 (display-buffer-function): Mark as obsolete.
5916
5917 * progmodes/compile.el (compilation-parse-errors): Accept list
5918 values similar to font-lock-keywords (Bug#12136).
5919 Suggested by Oleksandr Manzyuk.
5920 (compilation-error-regexp-alist): Doc fix.
5921
5922 2012-09-15 Glenn Morris <rgm@gnu.org>
5923
5924 * version.el (emacs-bzr-version-bzr): New function.
5925 (emacs-bzr-get-version): Add optional EXTERNAL argument.
5926
5927 * vc/vc-bzr.el (vc-bzr-working-revision): For lightweight local
5928 checkouts, check the parent dirstate matches the branch.
5929 Add "--tree" to "bzr revno" arguments. Don't try to shorten the
5930 empty string.
5931
5932 * version.el (emacs-bzr-version): Doc fix.
5933 (emacs-bzr-version-dirstate): New function.
5934 (emacs-bzr-get-version): For lightweight checkouts, if the parent
5935 is local try and check that it matches the branch. If not, just
5936 use dirstate information. (Bug#12441)
5937
5938 2012-09-14 Juri Linkov <juri@jurta.org>
5939
5940 * dired-aux.el (dired-do-chmod): Use `eq' to detect empty input.
5941 (Bug#12399)
5942
5943 2012-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
5944
5945 * emacs-lisp/advice.el (ad-prognify): Remove, use macroexp-progn.
5946
5947 * emacs-lisp/edebug.el: Miscellaneous cleanup.
5948 Remove obsolete byte-compiler hack that tried to silence some warnings.
5949 (edebug-submit-bug-report): Remove.
5950 (edebug-get-buffer-window, edebug-sit-for, edebug-input-pending-p):
5951 Remove aliases, use the un-prefixed name instead.
5952 (edebug-pop-to-buffer): Consider other frames.
5953 (edebug-original-read):: Make it more obvious that it's always defined.
5954 (edebug--make-form-data-entry, edebug--form-data-name)
5955 (edebug--form-data-begin, edebug--form-data-end): Rename from the
5956 single-dashed name, and implement with cl-defstruct.
5957 (edebug-set-form-data-entry): Use the standard accessors.
5958 (edebug-make-top-form-data-entry): Use push.
5959 (edebug-no-match): Drop useless `funcall'.
5960 (mapcar, mapconcat, mapatoms, apply, funcall): Don't add debug specs
5961 to functions.
5962 (defsubst, dont-compile, eval-when-compile, eval-and-compile)
5963 (delay-mode-hooks, with-temp-file, with-temp-message, ad-dolist)
5964 (with-syntax-table, push, pop, 1value, noreturn, defadvice)
5965 (easy-menu-define, with-custom-print): Remove redundant specs.
5966 (edebug-outside-overriding-local-map)
5967 (edebug-outside-overriding-terminal-local-map): Remove, unused.
5968 (edebug--display): Bind unread-command-events directly to nil rather
5969 than binding it to unread-command-events and later setting it to nil.
5970 (edebug--display): Kill edebug-eval-buffer here...
5971 (edebug--recursive-edit): ...rather than here.
5972 Bind standard-output and standard-input.
5973 (edebug-eval): Check cl-macroexpand-all is fboundp.
5974 (edebug-temp-display-freq-count): Fix last change.
5975
5976 * emacs-lisp/easymenu.el (easy-menu-define): Add `debug' spec.
5977 * subr.el (noreturn, 1value): Add `debug' spec.
5978 * emacs-lisp/advice.el: Require cl-lib.
5979 (ad-copy-tree): Remove, use copy-tree instead.
5980 (ad-dolist): Remove use dolist or cl-dolist instead.
5981 (ad-do-return): Remove, use cl-return instead.
5982 (defadvice): Add `debug' spec.
5983
5984 2012-09-13 Juri Linkov <juri@jurta.org>
5985
5986 * dired-aux.el (dired-do-chxxx): Use `eq' to detect empty input.
5987 (Bug#12399)
5988
5989 2012-09-13 Glenn Morris <rgm@gnu.org>
5990
5991 * calc/calc.el (math-compose-expr):
5992 * calc/calc-ext.el (math-compose-expr):
5993 * progmodes/cc-defs.el (cl-macroexpand-all):
5994 * progmodes/cc-langs.el (delete-duplicates, mapcan)
5995 (cl-macroexpand-all): Update declarations.
5996
5997 * vc/vc.el: No need to require ediff.
5998 (ediff-load-version-control): Declare.
5999 (ediff-vc-internal): Fix declaration.
6000 (vc-version-ediff): Require ediff.
6001
6002 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
6003
6004 Use a more backwards-compatible timer format (Bug#12430).
6005 * emacs-lisp/timer.el (timer): PSECS is now at the end, rather than
6006 being right after USECS, as that better supports old code that
6007 inadvisedly looked directly at the timer vector.
6008
6009 2012-09-13 Kenichi Handa <handa@gnu.org>
6010
6011 * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
6012 ("Chinese-CNS", "Chinese-EUC-TW"): Add chinese-gbk to
6013 `coding-priority' property of these language environment.
6014
6015 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
6016
6017 Fix glitches caused by addition of psec to timers (Bug#12430).
6018 * image.el (image-animate-timer):
6019 * time.el (display-time-world-timer):
6020 Use timer--function and timer--args rather than raw access to
6021 timer vector.
6022
6023 2012-09-13 Glenn Morris <rgm@gnu.org>
6024
6025 * emacs-lisp/bytecomp.el (byte-compile-warning-prefix):
6026 If not compiling a file, try using load-file-name.
6027
6028 2012-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
6029
6030 * emacs-lisp/edebug.el (edebug-outside-unread-command-events):
6031 Fix last change.
6032 (edebug-update-eval-list): Use `push'.
6033
6034 * emacs-lisp/edebug.el: Use lexical-binding.
6035 Remove the "edebug-" prefix from non-dynamically-scoped variables.
6036 Mark unused args with underscore.
6037 (edebug-save-restriction, edebug-outside-excursion): Use `declare'.
6038 (edebug-form-data): Use defvar-local.
6039 (edebug-make-before-and-after-form, edebug-make-after-form):
6040 Use backquote.
6041 (edebug-args, edebug-value, edebug-after-index, edebug-arg-mode):
6042 Not dynamically scoped any more.
6043 (edebug--enter-trace): Add arguments `function' and `args'.
6044 Rename from edebug-enter-trace.
6045 (edebug-enter): Call it accordingly. Bind edebug-function explicitly.
6046 (edebug--update-coverage): Add `after-index' and `value' args.
6047 Rename from edebug-update-coverage.
6048 (edebug-slow-after): Call it accordingly.
6049 (edebug--recursive-edit): Add arg `arg-mode'. Rename from
6050 edebug-recursive-edit.
6051 (edebug--display): Call it accordingly. Add args `value',
6052 `offset-index', and `arg-mode'. Rename from edebug-display.
6053 (edebug-debugger, edebug): Call it accordingly.
6054 (edebug-eval-display-list): Use dolist.
6055
6056 2012-09-12 Juri Linkov <juri@jurta.org>
6057
6058 * info.el (Info-search): Don't check for isearch-mode and
6059 isearch-regexp before let-binding search-spaces-regexp to
6060 Info-search-whitespace-regexp.
6061 (Info-isearch-search): Let-bind Info-search-whitespace-regexp to
6062 search-whitespace-regexp if isearch-lax-whitespace or
6063 isearch-regexp-lax-whitespace is non-nil.
6064 (Info-mode): Don't set local variable search-whitespace-regexp.
6065 http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00811.html
6066
6067 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
6068
6069 * emacs-lisp/debug.el (debugger-outer-unread-command-char, debug)
6070 (debugger-env-macro): Remove support for unread-command-char.
6071
6072 * subr.el (set-temporary-overlay-map): Minimize slightly the impact of
6073 the temporary map re-appearing on emulation-mode-map-alists.
6074
6075 * emacs-lisp/edebug.el (def-edebug-form-spec): Remove, it's been broken
6076 since 22.1.
6077
6078 * ehelp.el (with-electric-help): Accept functions in
6079 electric-help-form-to-execute.
6080 (electric-help-execute-extended, electric-help-ctrl-x-prefix): Use it.
6081 And replace unread-command-char -> unread-command-events.
6082
6083 2012-09-12 Michael Albinus <michael.albinus@gmx.de>
6084
6085 Sync with Tramp 2.2.6.
6086
6087 * net/tramp.el (tramp-accept-process-output): Don't use
6088 JUST-THIS-ONE in the XEmacs case.
6089
6090 * net/trampver.el: Update release number.
6091
6092 2012-09-12 Martin Rudalics <rudalics@gmx.at>
6093
6094 * emacs-lisp/debug.el (debugger-previous-window-height):
6095 New variable.
6096 (debug): When debugger-jumping-flag is non-nil try to restore
6097 height of debugger window. (Bug#8789)
6098
6099 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
6100
6101 * emacs-lisp/edebug.el (edebug-enter): Don't mess with
6102 overriding-local-map and pre/post-command-hook here.
6103 (edebug-recursive-edit): Do it here instead (bug#12345).
6104 (edebug-outside-unread-command-char): Remove all uses of
6105 unread-command-char.
6106
6107 * emacs-lisp/debug.el (debug): Don't bind debug-on-error since
6108 inhibit-debugger is bound instead.
6109
6110 2012-09-11 Bastien Guerry <bzg@gnu.org>
6111
6112 * subr.el (set-temporary-overlay-map): Add a docstring.
6113 (Bug#12346)
6114
6115 2012-09-11 Bastien Guerry <bzg@gnu.org>
6116
6117 * minibuffer.el (completion-table-subvert): Fix docstring.
6118 (Bug#12347)
6119
6120 2012-09-11 Bastien Guerry <bzg@gnu.org>
6121
6122 * help-fns.el (describe-variable): Fix typo. (Bug#12346)
6123
6124 2012-09-10 Michael R. Mauger <mmaug@yahoo.com>
6125
6126 * progmodes/sql.el: Version 3.1
6127 (sql-db2-escape-newlines): New variable.
6128 (sql-escape-newlines-filter): Use it.
6129
6130 2012-09-10 Juanma Barranquero <lekktu@gmail.com>
6131
6132 * custom.el (custom-theme-load-confirm): Remove unneeded assignment.
6133
6134 2012-09-10 Dan Nicolaescu <dann@gnu.org>
6135
6136 * vc/diff-mode.el (diff-mode-menu):
6137 Bind diff-remove-trailing-whitespace.
6138
6139 2012-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
6140
6141 * emacs-lisp/lisp-mode.el (emacs-list-byte-code-comment-re): New var.
6142 (emacs-lisp-byte-code-comment, emacs-lisp-byte-code-syntax-propertize)
6143 (emacs-lisp-byte-code-mode): New functions.
6144 (eval-sexp-add-defvars): Don't skip defvars in column >0.
6145 (eval-defun-2): Remove bogus interactive spec.
6146 (lisp-indent-line): Remove redundant whole-exp code, now done in
6147 indent-according-to-mode.
6148 (save-match-data): Remove redundant indent data.
6149
6150 * emacs-lisp/benchmark.el (benchmark-run, benchmark-run-compiled):
6151 Use `declare'.
6152
6153 2012-09-09 Juri Linkov <juri@jurta.org>
6154
6155 * replace.el (replace-regexp-lax-whitespace): New defcustom.
6156 (replace-lax-whitespace, query-replace-regexp)
6157 (query-replace-regexp-eval, replace-regexp): Doc fix.
6158 (perform-replace, replace-highlight): Let-bind
6159 isearch-lax-whitespace to replace-lax-whitespace and
6160 isearch-regexp-lax-whitespace to replace-regexp-lax-whitespace.
6161
6162 * isearch.el (isearch-query-replace): Let-bind
6163 replace-lax-whitespace to isearch-lax-whitespace and
6164 replace-regexp-lax-whitespace to
6165 isearch-regexp-lax-whitespace. (Bug#10885)
6166
6167 2012-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
6168
6169 * eshell/em-unix.el (eshell/sudo): Explicitly drop return value.
6170
6171 2012-09-09 Alan Mackenzie <acm@muc.de>
6172
6173 * progmodes/cc-engine.el (c-state-cache-init):
6174 Initialise c-state-semi-nonlit-pos-cache\(-limit\)? properly.
6175 (c-record-parse-state-state):
6176 Record c-state-semi-nonlit-pos-cache\(-limit\)?.
6177
6178 2012-09-09 Andreas Schwab <schwab@linux-m68k.org>
6179
6180 * register.el (register-separator): Rename from
6181 separator-register. All uses changed. Doc fix.
6182 (register): Fix version.
6183
6184 2012-09-09 Chong Yidong <cyd@gnu.org>
6185
6186 * replace.el (query-replace-map): Bind four new symbols for
6187 requesting window scrolling.
6188
6189 * subr.el (y-or-n-p): Handle the window-scrolling bindings in
6190 query-replace-map (Bug#8948).
6191
6192 * custom.el (custom-theme-load-confirm): Use y-or-n-p.
6193
6194 * emacs-lisp/map-ynp.el (map-y-or-n-p): Don't bind scrolling keys
6195 since they are now in query-replace-map.
6196
6197 * window.el (scroll-other-window-down): Make the arg optional.
6198
6199 2012-09-09 Chong Yidong <cyd@gnu.org>
6200
6201 * files.el (hack-local-variables-confirm): Use quit-window to kill
6202 the *Local Variables* buffer.
6203
6204 2012-09-08 Dmitry Gutov <dgutov@yandex.ru>
6205
6206 * progmodes/ruby-mode.el (ruby-toggle-block): Guess the current block,
6207 not just expect to be at its beginning. Adjust callees.
6208 Succeed when do-end block has no space before the pipe character.
6209 (ruby-brace-to-do-end): When the original block is one-liner,
6210 convert to multiline. Reindent the result.
6211
6212 2012-09-08 Jambunathan K <kjambunathan@gmail.com>
6213
6214 * register.el (register): New group.
6215 (separator-register): New user option.
6216 (increment-register): Route it to `append-to-register', if
6217 register contains text. Implication is that `C-x r +' can now be
6218 used for appending to a text register (bug#12217).
6219 (append-to-register, prepend-to-register): Add separator based on
6220 `separator-register'.
6221
6222 2012-09-08 Alan Mackenzie <acm@muc.de>
6223
6224 AWK Mode: make auto-newline work when there's "==" in the pattern.
6225 * progmodes/cc-cmds.el (c-point-syntax): Handle virtual semicolons
6226 correctly.
6227 * progmodes/cc-engine.el (c-guess-basic-syntax CASE 5A.3):
6228 Test more rigorously for "=" token.
6229
6230 2012-09-08 Dmitry Gutov <dgutov@yandex.ru>
6231
6232 * progmodes/ruby-mode.el (ruby-match-expression-expansion):
6233 Only fail when reached LIMIT.
6234
6235 2012-09-08 Chong Yidong <cyd@gnu.org>
6236
6237 * dired.el (dired-mode-map): Don't bind M-=.
6238
6239 * dired-aux.el (dired-diff): Use backup file as default.
6240
6241 2012-09-08 Drew Adams <drew.adams@oracle.com>
6242
6243 * subr.el (add-to-history): Fix delete usage (Bug#12314).
6244
6245 2012-09-08 Chong Yidong <cyd@gnu.org>
6246
6247 * subr.el (syntax-after, syntax-class): Doc fix.
6248
6249 2012-09-08 Martin Rudalics <rudalics@gmx.at>
6250
6251 * window.el (display-buffer-in-previous-window): New buffer
6252 display action function.
6253
6254 * emacs-lisp/debug.el (debugger-bury-or-kill): New option.
6255 (debugger-previous-window): New variable.
6256 (debug): Rewrite using display-buffer-in-previous-window,
6257 quit-restore-window and debugger-bury-or-kill. (Bug#8789)
6258
6259 2012-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
6260
6261 * emacs-lisp/byte-run.el (defun): Tweak message. Simplify code.
6262
6263 2012-09-07 Matt McClure <mlm@aya.yale.edu> (tiny change)
6264
6265 * progmodes/python.el (python-shell-send-string):
6266 When default-directory is remote, create temp file on remote
6267 filesystem.
6268 (python-shell-send-file): When file is remote, pass local view of
6269 file paths to remote Python interpreter. (Bug#12340)
6270
6271 2012-09-07 Chong Yidong <cyd@gnu.org>
6272
6273 * window.el (switch-to-buffer): Doc fix (Bug#12181).
6274
6275 * files.el (after-find-file): Don't fail on a read-only buffer if
6276 require-final-newline is `visit' or `visit-save' (Bug#11156).
6277
6278 * subr.el (read-char-choice): Allow quitting via ESC ESC.
6279
6280 * userlock.el (ask-user-about-supersession-threat):
6281 Use read-char-choice (Bug#12093).
6282
6283 2012-09-07 Chong Yidong <cyd@gnu.org>
6284
6285 * subr.el (buffer-narrowed-p): New function.
6286
6287 * ses.el (ses-widen):
6288 * simple.el (count-words--buffer-message):
6289 * net/browse-url.el (browse-url-of-buffer): Use it.
6290
6291 * simple.el (count-words-region): Don't signal an error if there
6292 is a non-nil prefix arg and the mark is not set.
6293
6294 * help.el (describe-key-briefly): Allow the message to be seen
6295 when invoked from the minibuffer (Bug#7014).
6296
6297 2012-09-07 Dmitry Gutov <dgutov@yandex.ru>
6298
6299 * progmodes/ruby-mode.el (ruby-end-of-defun)
6300 (ruby-beginning-of-defun): Simplify, allow indentation before
6301 block beginning and end keywords.
6302 (ruby-beginning-of-defun): Only consider 3 keywords defun beginners.
6303 (ruby-end-of-defun): Expect that the point is at the beginning of
6304 the defun.
6305
6306 2012-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
6307
6308 * emacs-lisp/cl-macs.el (cl--do-arglist): Understand _ on &key args
6309 (bug#12367).
6310 (cl--make-usage-args): Strip _ from argument names.
6311
6312 2012-09-06 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
6313
6314 * progmodes/vhdl-mode.el (vhdl-speedbar-initialize): Don't use
6315 obsolete alias speedbar-key-map.
6316 (vhdl-doc-variable, vhdl-doc-mode): Use called-interactively-p.
6317 (vhdl-index-menu-init): Don't use obsolete variable
6318 font-lock-maximum-size.
6319
6320 2012-09-06 Chong Yidong <cyd@gnu.org>
6321
6322 * frame.el (window-system-version): Mark as obsolete.
6323
6324 * speedbar.el (speedbar-update-flag, speedbar-mode): Remove uses
6325 of obsolete variable speedbar-key-map.
6326
6327 2012-09-06 Juri Linkov <juri@jurta.org>
6328
6329 * replace.el (replace-lax-whitespace): New defcustom.
6330 (query-replace, query-replace-regexp, query-replace-regexp-eval)
6331 (replace-string, replace-regexp): Mention it in docstrings.
6332 (perform-replace, replace-highlight): Let-bind
6333 isearch-lax-whitespace and isearch-regexp-lax-whitespace according
6334 to the values of replace-lax-whitespace and regexp-flag.
6335 Don't let-bind search-whitespace-regexp. (Bug#10885)
6336
6337 * isearch.el (isearch-query-replace): Let-bind
6338 replace-lax-whitespace instead of let-binding
6339 replace-search-function and replace-re-search-function.
6340 (isearch-lazy-highlight-search): Let-bind isearch-lax-whitespace
6341 and isearch-regexp-lax-whitespace to lazy-highlight variables.
6342 (isearch-toggle-symbol): Set isearch-regexp to nil
6343 in isearch-word mode (like in isearch-toggle-word).
6344
6345 2012-09-06 Juri Linkov <juri@jurta.org>
6346
6347 * replace.el (replace-search-function)
6348 (replace-re-search-function): Set default values to nil.
6349 (perform-replace): Let-bind isearch-related variables based on
6350 replace-related values, call `isearch-search-fun' and let-bind
6351 the result to `search-function'. Remove code that sets
6352 `search-function' and `search-string' separately for
6353 `delimited-flag'.
6354 (replace-highlight): Add new argument `delimited-flag' and
6355 rename other arguments to the names used in `perform-replace'.
6356 Let-bind `isearch-word' to the argument `delimited-flag'.
6357 (Bug#10885, bug#10887)
6358
6359 2012-09-07 Dmitry Gutov <dgutov@yandex.ru>
6360
6361 * progmodes/ruby-mode.el (ruby-indent-beg-re): Add pieces from
6362 ruby-beginning-of-indent, simplify, allow all keywords to have
6363 indentation before them.
6364 (ruby-beginning-of-indent): Adjust for above. Search until the
6365 found point is not inside a string or comment.
6366 (ruby-font-lock-keywords): Allow symbols to start with "@"
6367 character, give them higher priority than variables.
6368 (ruby-syntax-propertize-function)
6369 (ruby-font-lock-syntactic-keywords): Remove the "not comments"
6370 matchers. Expression expansions are not comments when inside a
6371 string, and there comment syntax status is irrelevant.
6372 (ruby-match-expression-expansion): New function. Check that
6373 expression expansion is inside a string, and it's not escaped.
6374 (ruby-font-lock-keywords): Use it.
6375
6376 2012-09-05 Martin Rudalics <rudalics@gmx.at>
6377
6378 * help.el (temp-buffer-max-height): New default value.
6379 (temp-buffer-resize-frames): New option.
6380 (resize-temp-buffer-window): Optionally resize frame.
6381
6382 * window.el (fit-frame-to-buffer-bottom-margin): New option.
6383 (fit-frame-to-buffer): New function.
6384
6385 2012-09-05 Glenn Morris <rgm@gnu.org>
6386
6387 * emulation/cua-rect.el (cua--init-rectangles):
6388 * textmodes/picture.el (picture-mode-map):
6389 * play/blackbox.el (blackbox-mode-map): Remap right-char and left-char
6390 like forward-char and backward-char. (Bug#12317)
6391
6392 2012-09-05 Leo Liu <sdl.web@gmail.com>
6393
6394 * progmodes/flymake.el (flymake-warning-re): New variable.
6395 (flymake-parse-line): Use it.
6396
6397 2012-09-05 Glenn Morris <rgm@gnu.org>
6398
6399 * calendar/holidays.el (holiday-christian-holidays):
6400 Rename an entry. (Bug#12289)
6401
6402 2012-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
6403
6404 * progmodes/sh-script.el (sh-font-lock-paren): Don't burp at BOB
6405 (bug#12222).
6406
6407 2012-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
6408
6409 * loadup.el: Load macroexp. Remove hack.
6410 * emacs-lisp/macroexp.el (macroexp--eval-if-compile): New function.
6411 (macroexp--expand-all): Use it to get better warnings.
6412 (macroexp--backtrace, macroexp--trim-backtrace-frame)
6413 (internal-macroexpand-for-load): New functions.
6414 (macroexp--pending-eager-loads): New var.
6415 (emacs-startup-hook): New hack to replace one in loadup.el.
6416 * emacs-lisp/cl-macs.el (cl--compiler-macro-list*)
6417 (cl--compiler-macro-cXXr): Move to top, before they can be used.
6418 (cl-psetf): Simplify.
6419 (cl-defstruct): Add indent rule.
6420
6421 2012-09-04 Lars Ingebrigtsen <larsi@gnus.org>
6422
6423 * mail/smtpmail.el (smtpmail-send-it): Prefer the From: header
6424 over `user-mail-address' for the SMTP MAIL FROM envelope.
6425 (smtpmail-via-smtp): Ditto.
6426
6427 2012-09-04 Dmitry Gutov <dgutov@yandex.ru>
6428
6429 * progmodes/ruby-mode.el: Clean up keybindings.
6430 (ruby-mode-map): Don't bind ruby-electric-brace,
6431 ruby-beginning-of-defun, ruby-end-of-defun, ruby-mark-defun,
6432 backward-kill-word, reindent-then-newline-and-indent.
6433 (ruby-mark-defun): Remove.
6434 (ruby-electric-brace): Remove. Obsoleted by electric-indent-chars.
6435 (ruby-mode): Set local beginning-of-defun-function and
6436 end-of-defun-function values.
6437
6438 2012-09-03 Martin Rudalics <rudalics@gmx.at>
6439
6440 * window.el (temp-buffer-window-setup-hook)
6441 (temp-buffer-window-show-hook): New hooks.
6442 (temp-buffer-window-setup, temp-buffer-window-show)
6443 (with-temp-buffer-window): New functions.
6444 (fit-window-to-buffer): Remove unused optional argument OVERRIDE.
6445 (special-display-popup-frame): Make sure the window used shows BUFFER.
6446
6447 * help.el (temp-buffer-resize-mode): Fix doc-string.
6448 (resize-temp-buffer-window): New optional argument WINDOW.
6449
6450 * files.el (recover-file, save-buffers-kill-emacs):
6451 * dired.el (dired-mark-pop-up): Use with-temp-buffer-window.
6452
6453 2012-09-02 Michael Albinus <michael.albinus@gmx.de>
6454
6455 * eshell/em-unix.el (eshell/sudo): When we have an ad-hoc
6456 remote definition of `default-directory', ensure we can connect.
6457
6458 2012-09-02 Juri Linkov <juri@jurta.org>
6459
6460 Toggle whitespace matching mode with M-s SPC.
6461 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00008.html
6462
6463 * isearch.el (search-whitespace-regexp): Doc fix.
6464 Remove cons cell customization.
6465 (isearch-mode-map): Bind "\M-s " to isearch-toggle-lax-whitespace.
6466 (isearch-lax-whitespace, isearch-regexp-lax-whitespace):
6467 New variables.
6468 (isearch-forward, isearch-forward-regexp): Doc fix.
6469 (isearch-toggle-lax-whitespace): New command.
6470 (search-forward-lax-whitespace, search-backward-lax-whitespace)
6471 (re-search-forward-lax-whitespace)
6472 (re-search-backward-lax-whitespace): New functions.
6473 (isearch-whitespace-regexp): Remove function.
6474 (isearch-query-replace): Let-bind replace-search-function and
6475 replace-re-search-function.
6476 (isearch-occur): Let-bind search-spaces-regexp according to the
6477 value of isearch-lax-whitespace and isearch-regexp-lax-whitespace.
6478 (isearch-quote-char): Check isearch-regexp-lax-whitespace in the
6479 condition for C-q SPC.
6480 (isearch-search-fun-default): Use new functions mentioned above.
6481 (isearch-search-forward, isearch-search-backward): Remove functions.
6482 (isearch-search): Don't let-bind search-spaces-regexp.
6483 (isearch-lazy-highlight-space-regexp): Remove variable.
6484 (isearch-lazy-highlight-lax-whitespace)
6485 (isearch-lazy-highlight-regexp-lax-whitespace): New variables.
6486 (isearch-lazy-highlight-new-loop): Use them.
6487 (isearch-lazy-highlight-search): Don't let-bind search-spaces-regexp.
6488
6489 2012-09-02 Chong Yidong <cyd@gnu.org>
6490
6491 * dired.el (dired-mode-map): Menu string fixes (Bug#11616).
6492
6493 2012-09-02 Glenn Morris <rgm@gnu.org>
6494
6495 * simple.el (undo): Tweak message in undo-only case. (Bug#12283)
6496
6497 2012-09-01 Glenn Morris <rgm@gnu.org>
6498
6499 * term.el: Tidy up menu definitions.
6500 (term-mode-map): Use easymenu for In/Out, Complete menus.
6501 (term-pager-break-map): Initialize in the defvar.
6502 (term-terminal-menu, term-signals-menu): Define with easymenu.
6503 (term-terminal-menu): Also show it in line-mode. (Bug#11957)
6504 (term-pager-menu): New, extracted from term-process-pager.
6505 (term-mode, term-char-mode, term-process-pager): Use easymenu-add.
6506 (term-update-mode-line): Propertize line/char and page items.
6507 (term-process-pager): Move keymap initialization elsewhere.
6508
6509 2012-09-01 Martin Rudalics <rudalics@gmx.at>
6510
6511 * window.el (switch-to-prev-buffer): Handle additional values of
6512 BURY-OR-KILL argument. Don't switch in minibuffer window.
6513 (switch-to-next-buffer): Don't switch in minibuffer window.
6514 (quit-restore-window): New function based on quit-window.
6515 Handle additional values of former KILL argument.
6516 (quit-window): Call quit-restore-window with appropriate
6517 interpretation of KILL argument.
6518 (display-buffer-below-selected): New buffer display action
6519 function.
6520
6521 2012-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
6522
6523 * minibuffer.el (completion-at-point-functions): Complete docstring
6524 (bug#12254).
6525
6526 2012-09-01 Paul Eggert <eggert@cs.ucla.edu>
6527
6528 Better seed support for (random).
6529 * play/5x5.el, play/animate.el, play/cookie1.el, play/dissociate.el:
6530 * play/doctor.el, play/dunnet.el, play/gomoku.el, play/landmark.el:
6531 * play/mpuz.el, play/tetris.el, play/zone.el:
6532 * calc/calc-comb.el (math-init-random-base):
6533 * play/blackbox.el (bb-init-board):
6534 * play/life.el (life):
6535 * server.el (server-use-tcp):
6536 * type-break.el (type-break):
6537 Remove unnecessary call to (random t).
6538 * net/sasl.el (sasl-unique-id-function):
6539 Change (random t) to (random), now that the latter is more random.
6540 * play/life.el (life-initialized): Remove no-longer-needed var.
6541
6542 2012-08-31 Alp Aker <alp.tekin.aker@gmail.com>
6543
6544 * window.el (switch-to-prev-buffer, switch-to-next-buffer):
6545 Consider frame's buffer predicate when choosing the buffer.
6546 (Bug#12081)
6547
6548 2012-08-30 Richard Stallman <rms@gnu.org>
6549
6550 * simple.el (special-mode-map): Delete binding for `z'.
6551
6552 2012-08-30 Andreas Schwab <schwab@linux-m68k.org>
6553
6554 * progmodes/compile.el (compilation-always-kill): Doc fix.
6555
6556 2012-08-30 Chong Yidong <cyd@gnu.org>
6557
6558 * window.el (display-buffer-reuse-frames): Make the obsolescence
6559 message more informative.
6560
6561 2012-08-30 Glenn Morris <rgm@gnu.org>
6562
6563 * paren.el (show-paren-delay):
6564 Add a :set function. Doc fix. (Bug#12297)
6565
6566 2012-08-29 Martin Blais <blais@furius.ca> (tiny change)
6567
6568 * progmodes/compile.el (compilation-always-kill): New var.
6569 (compilation-start): Use it.
6570
6571 2012-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
6572
6573 * simple.el (read-only-mode): Move from files.el for bootstrapping.
6574 * files.el (read-only-mode): Move to simple.el.
6575
6576 * files.el (read-only-mode): New minor mode.
6577 (toggle-read-only): Use it and mark obsolete.
6578 (find-file--read-only):
6579 * vc/vc.el (vc-next-action, vc-checkout):
6580 * vc/vc-cvs.el (vc-cvs-checkout):
6581 * obsolete/vc-mcvs.el (vc-mcvs-update):
6582 * ffap.el (ffap--toggle-read-only): Update callers.
6583
6584 2012-08-29 Michael Albinus <michael.albinus@gmx.de>
6585
6586 * eshell/esh-ext.el (eshell-external-command): Do not examine
6587 remote shell scripts.
6588 See <https://bugs.launchpad.net/ubuntu/+source/emacs23/+bug/1035790>.
6589
6590 * net/tramp-sh.el (tramp-remote-path): Add "/sbin" and
6591 "/usr/local/sbin".
6592
6593 2012-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
6594
6595 * emacs-lisp/cl-lib.el (buffer-string): Fix setter macro (bug#12293).
6596
6597 2012-08-28 Leo Liu <sdl.web@gmail.com>
6598
6599 * progmodes/sh-script.el (sh-dynamic-complete-functions): Adapt to
6600 completion-at-point. (Bug#12220)
6601
6602 * skeleton.el (skeleton-untabify): Change to nil (bug#12223).
6603
6604 * progmodes/sh-script.el (sh-indent-comment): Change to t (bug#12267).
6605
6606 2012-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
6607
6608 * files.el (safe-local-eval-forms): Fix before-save-hook entry to
6609 be buffer-local; add delete-trailing-whitespace (bug#12259).
6610
6611 2012-08-28 Jeremy Moore <jmoore@ieee.org> (tiny change)
6612
6613 * progmodes/hideif.el (hif-compress-define-list):
6614 Fix typo. (Bug#11951)
6615
6616 2012-08-28 Dan Nicolaescu <dann@gnu.org>
6617
6618 * progmodes/hideshow.el (hs-block-end-regexp): Restore lost
6619 buffer local setting.
6620
6621 * net/rcirc.el (rcirc-split-message): Fix for buffer-local
6622 rcirc-encode-coding-system.
6623
6624 2012-08-28 Leo Liu <sdl.web@gmail.com>
6625
6626 * net/rcirc.el (rcirc-split-message): New function.
6627 (rcirc-send-message): Use it. (Bug#12051)
6628
6629 2012-08-28 Juri Linkov <juri@jurta.org>
6630
6631 * info.el (Info-fontify-node): Hide empty lines at the end of
6632 the node. (Bug#12272)
6633
6634 2012-08-27 Drew Adams <drew.adams@oracle.com>
6635
6636 * dired.el (dired-pop-to-buffer): Make window start at beginning
6637 of buffer (Bug#12281).
6638
6639 2012-08-26 Chong Yidong <cyd@gnu.org>
6640
6641 * window.el (special-display-regexps, special-display-frame-alist)
6642 (special-display-buffer-names, special-display-function)
6643 (display-buffer-reuse-frames): Mark as obsolete.
6644
6645 * progmodes/compile.el: Don't use display-buffer-reuse-frames.
6646
6647 * help.el (help-print-return-message): Don't treat
6648 display-buffer-reuse-frames specially.
6649
6650 2012-08-26 Chong Yidong <cyd@gnu.org>
6651
6652 * progmodes/gdb-mi.el (gdb-display-buffer-other-frame-action):
6653 New variable, replacing gdb-frame-parameters.
6654 (gdb-frame-io-buffer, gdb-frame-breakpoints-buffer)
6655 (gdb-frame-threads-buffer, gdb-frame-memory-buffer)
6656 (gdb-frame-disassembly-buffer, gdb-frame-stack-buffer)
6657 (gdb-frame-locals-buffer, gdb-frame-registers-buffer): Use it.
6658 (def-gdb-frame-for-buffer): Macro deleted. It is easier to define
6659 the functions directly with gdb-display-buffer-other-frame-action.
6660 (gdb-display-breakpoints-buffer, gdb-display-threads-buffer)
6661 (gdb-display-memory-buffer, gdb-display-disassembly-buffer)
6662 (gdb-display-stack-buffer, gdb-display-locals-buffer)
6663 (gdb-display-registers-buffer): Define directly.
6664 (def-gdb-display-buffer): Macro deleted.
6665 (gdb-display-buffer): Remove second and third args, callers don't
6666 use them. Defer to the default display-buffer behavior, apart
6667 from making windows dedicated.
6668 (gdb-setup-windows): Don't call display-buffer unnecessarily.
6669
6670 * progmodes/gud.el (gud-display-line): Just use display-buffer.
6671
6672 * window.el (display-buffer-pop-up-frame): Handle a
6673 pop-up-frame-parameters alist entry.
6674 (display-buffer): Document it.
6675
6676 2012-08-26 Chong Yidong <cyd@gnu.org>
6677
6678 * isearch.el (search-whitespace-regexp): Make string and nil
6679 values apply to both ordinary and regexp search. Allow a cons
6680 cell value to distinguish between the two.
6681 (isearch-whitespace-regexp, isearch-search-forward)
6682 (isearch-search-backward): New functions.
6683 (isearch-occur, isearch-search-fun-default, isearch-search)
6684 (isearch-lazy-highlight-new-loop): Use them.
6685 (isearch-forward, isearch-forward-regexp): Doc fix.
6686
6687 2012-08-26 Chong Yidong <cyd@gnu.org>
6688
6689 * faces.el (help-argument-name): Always inherit from italic
6690 (Bug#12213).
6691
6692 2012-08-25 Martin Rudalics <rudalics@gmx.at>
6693
6694 * window.el (window--even-window-heights): Even heights when
6695 WINDOW and the selected window form a vertical combination.
6696 (display-buffer-use-some-window): Provide that window used gets
6697 sized back by quit-window. (Bug#11880) and (Bug#12091)
6698
6699 2012-08-24 Paul Eggert <eggert@cs.ucla.edu>
6700
6701 Fix file time stamp problem with bzr and CVS (Bug#12001).
6702 * vc/vc-cvs.el (vc-cvs-parse-entry): Ignore subsecond information
6703 in the file's time stamp, since the version control system loses
6704 that information.
6705
6706 2012-08-22 Juri Linkov <juri@jurta.org>
6707
6708 * info.el (Info-fontify-node): Hide the suffix of the
6709 Info file name in the header line. (Bug#12187)
6710
6711 2012-08-22 Glenn Morris <rgm@gnu.org>
6712
6713 * calendar/cal-tex.el (cal-tex-weekly-common):
6714 Restore leading blank page.
6715
6716 2012-08-22 Le Wang <l26wang@gmail.com>
6717
6718 * misc.el (forward-to-word, backward-to-word): Activate or extend
6719 the region under `shift-select-mode'. (Bug#12231)
6720
6721 2012-08-22 Bastien Guerry <bzg@gnu.org>
6722
6723 * progmodes/executable.el (executable-prefix): Set to "#!" instead
6724 of "#! ". http://www.in-ulm.de/~mascheck/various/shebang/#details
6725 gives details on why the space is never needed.
6726
6727 2012-08-22 Martin Rudalics <rudalics@gmx.at>
6728
6729 * window.el (walk-window-tree, window-with-parameter):
6730 New optional argument MINIBUF to control whether these functions
6731 should run on the minibuffer window.
6732 (window-at-side-list): Don't operate on minibuffer window.
6733 (window-in-direction): Simplify and rewrite doc-string.
6734 (window--size-ignore): Rename to window--size-ignore-p.
6735 Update callers.
6736 (display-buffer-in-atom-window, window--major-non-side-window)
6737 (window--major-side-window, display-buffer-in-major-side-window)
6738 (delete-side-window, display-buffer-in-side-window):
6739 New functions.
6740 (window--side-check, window-deletable-p, delete-window)
6741 (delete-other-windows, split-window): Handle side windows and
6742 atomic windows appropriately.
6743 (window--display-buffer): Call display-buffer-record-window also
6744 when the window buffer did not change.
6745
6746 2012-08-22 Christopher Schmidt <christopher@ch.ristopher.com>
6747
6748 * help-fns.el (help-fns--key-bindings):
6749 Abbreviate non-symbol remap targets. (Bug#12174)
6750
6751 2012-08-22 Martin Rudalics <rudalics@gmx.at>
6752
6753 * dired.el (dired-mark-remembered): Don't clobber point.
6754 (Bug#11795)
6755
6756 2012-08-22 Glenn Morris <rgm@gnu.org>
6757
6758 * progmodes/bug-reference.el (bug-reference): New custom group.
6759 (bug-reference-bug-regexp): Make it a defcustom.
6760
6761 2012-08-22 Daiki Ueno <ueno@unixuser.org>
6762
6763 * progmodes/js.el (js-indent-level, js-expr-indent-offset)
6764 (js-paren-indent-offset, js-square-indent-offset)
6765 (js-curly-indent-offset): Add :safe (Bug#12257).
6766
6767 2012-08-22 Edward O'Connor <hober0@gmail.com>
6768
6769 * json.el (json-key-format): Add error properties.
6770 (json-encode-key): New function.
6771 (json-encode-hash-table, json-encode-alist, json-encode-plist):
6772 Use json-encode-key.
6773
6774 2012-08-22 Glenn Morris <rgm@gnu.org>
6775
6776 * calendar/cal-tex.el (cal-tex-longday): New function, replacing...
6777 (cal-tex-leftday, cal-tex-rightday): Remove functions.
6778 (cal-tex-weekly-common, cal-tex-cursor-filofax-2week):
6779 Update for above change.
6780
6781 2012-08-21 Andreas Schwab <schwab@linux-m68k.org>
6782
6783 * cus-face.el (custom-face-attributes): Fix customize type for the
6784 :underline attribute. (Bug#11805)
6785
6786 2012-08-21 Martin Rudalics <rudalics@gmx.at>
6787
6788 * window.el (window-point-1, set-window-point-1): Remove.
6789 (window-in-direction, record-window-buffer)
6790 (set-window-buffer-start-and-point, split-window-below)
6791 (window--state-get-1, display-buffer-record-window):
6792 Replace calls to window-point-1 and set-window-point-1 by calls to
6793 window-point and set-window-point respectively.
6794
6795 2012-08-21 Glenn Morris <rgm@gnu.org>
6796
6797 * calendar/cal-tex.el (cal-tex-weekly-common): New function.
6798 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-week):
6799 Use it.
6800
6801 * calendar/cal-tex.el (cal-tex-rightday): Add optional funcname arg.
6802 (cal-tex-shortday): New function.
6803 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-week)
6804 (cal-tex-cursor-filofax-daily): Use the above.
6805
6806 * calendar/cal-tex.el (cal-tex-leftday, cal-tex-rightday):
6807 New functions.
6808 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-2week)
6809 (cal-tex-cursor-filofax-week): Use them.
6810
6811 * calendar/cal-tex.el (cal-tex-lefthead, cal-tex-righthead):
6812 New constants.
6813 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-2week)
6814 (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily): Use them.
6815
6816 * calendar/cal-tex.el (cal-tex-preamble): Generate new buffers.
6817 (cal-tex-end-document): Don't rely on buffer name.
6818
6819 * calendar/cal-tex.el (cal-tex-cursor-filofax-year):
6820 Use cal-tex-vspace.
6821 (cal-tex-vspace, cal-tex-hspace, cal-tex-em, cal-tex-bf)
6822 (cal-tex-Huge-bf, cal-tex-large-bf): Use cal-tex-cmd.
6823 (cal-tex-scriptsize, cal-tex-huge, cal-tex-Huge, cal-tex-large):
6824 Use cal-tex-arg.
6825
6826 * calendar/cal-tex.el (cal-tex-cursor-filofax-year)
6827 (cal-tex-cursor-week, cal-tex-cursor-week2)
6828 (cal-tex-cursor-week-iso, cal-tex-cursor-week-at-a-glance)
6829 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
6830 (cal-tex-cursor-filofax-daily, cal-tex-cursor-day)
6831 (cal-tex-insert-preamble, cal-tex-b-document)
6832 (cal-tex-e-document, cal-tex-b-center, cal-tex-e-center):
6833 Improve cal-tex-cmd usage.
6834
6835 * calendar/cal-tex.el (cal-tex-filofax-paper): New function.
6836 (cal-tex-cursor-filofax-year, cal-tex-cursor-filofax-2week)
6837 (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily): Use it.
6838 (cal-tex-weekly-paper): New function.
6839 (cal-tex-cursor-week, cal-tex-cursor-week2)
6840 (cal-tex-cursor-week-iso, cal-tex-cursor-week-monday)
6841 (cal-tex-cursor-day): Use it.
6842
6843 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance)
6844 (cal-tex-cursor-filofax-week): Remove leading blank page.
6845
6846 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance):
6847 Add autoload cookie. For now at least, don't use color, since
6848 no other cal-tex function does.
6849
6850 * calendar/cal-tex.el (cal-tex-cursor-week-iso)
6851 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
6852 (cal-tex-cursor-filofax-daily): Correct start date for diary entries.
6853
6854 2012-08-21 Juri Linkov <juri@jurta.org>
6855
6856 * info.el (Info-file-attributes): New variable.
6857 (info-insert-file-contents): Add file attributes to
6858 `Info-file-attributes'. Clear the caches `Info-index-nodes' and
6859 `Info-toc-nodes' when previous modtime of the Info file is less
6860 than new modtime.
6861 (Info-toc-nodes, Info-index-nodes): Move definitions up to the top
6862 of info.el. (Bug#12230)
6863
6864 2012-08-20 Glenn Morris <rgm@gnu.org>
6865
6866 * calendar/diary-lib.el (diary-include-files, diary-sexp-entry):
6867 * calendar/holidays.el (calendar-holiday-list):
6868 Report errors with display-warning rather than beep'n'sleep.
6869
6870 2012-08-20 Michael Albinus <michael.albinus@gmx.de>
6871
6872 * net/tramp.el (tramp-accept-process-output): Accept only output
6873 from PROC. Otherwise, process filters and sentinels might be
6874 confused. (Bug#12145)
6875
6876 2012-08-20 Chong Yidong <cyd@gnu.org>
6877
6878 * descr-text.el (describe-text-properties-1): Use overlays-in to
6879 report on empty overlays (Bug#3322).
6880
6881 2012-08-20 Glenn Morris <rgm@gnu.org>
6882
6883 * mail/rmailout.el (rmail-output-read-file-name):
6884 Trap and report errors in rmail-output-file-alist elements.
6885
6886 * font-lock.el (font-lock-add-keywords): Doc fix (quote face names
6887 since most non-font-lock faces are not also variables).
6888
6889 2012-08-20 Edward Reingold <reingold@iit.edu>
6890
6891 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance):
6892 New function. (Bug12160)
6893
6894 2012-08-19 Glenn Morris <rgm@gnu.org>
6895
6896 * mail/rmailout.el (rmail-output-read-file-name):
6897 Fix previous change (when the alist is nil or does not match).
6898
6899 2012-08-19 Chong Yidong <cyd@gnu.org>
6900
6901 * xml.el (xml-escape-string): Don't refer to xml-entity-alist
6902 (Bug#12228).
6903
6904 2012-08-18 Chong Yidong <cyd@gnu.org>
6905
6906 * simple.el (yank-handled-properties): New defcustom.
6907 (yank-excluded-properties): Add font-lock-face and category.
6908 (yank): Doc fix.
6909
6910 * subr.el (remove-yank-excluded-properties):
6911 Obey yank-handled-properties. The special handling of font-lock-face
6912 and category is now done this way, instead of being hard-coded.
6913 (insert-for-yank-1): Remove font-lock-face handling.
6914 (yank-handle-font-lock-face-property)
6915 (yank-handle-category-property): New function.
6916
6917 2012-08-17 Glenn Morris <rgm@gnu.org>
6918
6919 * mail/rmailout.el (rmail-output-read-file-name):
6920 Check rmail-output-file-alist against the full message body
6921 in the correct rmail buffer. (Bug#12214)
6922
6923 2012-08-17 Michael Albinus <michael.albinus@gmx.de>
6924
6925 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
6926 Eliminate superfluous prompt. (Bug#12203)
6927
6928 2012-08-17 Chong Yidong <cyd@gnu.org>
6929
6930 * mouse.el (mouse-appearance-menu): If x-select-font returns a
6931 font spec, set the font directly (Bug#3228).
6932
6933 2012-08-17 Martin Rudalics <rudalics@gmx.at>
6934
6935 * window.el (delete-window): Fix last fix.
6936
6937 2012-08-16 Martin Rudalics <rudalics@gmx.at>
6938
6939 * window.el (window-valid-p): Move to window.c.
6940 (window-child, window-child-count, window-last-child)
6941 (window-normalize-window, window-combined-p)
6942 (window-combinations, window-atom-root, window-min-size)
6943 (window-sizable, window-sizable-p, window-size-fixed-p)
6944 (window-min-delta, window-max-delta, window--resizable)
6945 (window--resizable-p, window-resizable, window-total-size)
6946 (window-full-height-p, window-full-width-p, window-body-size)
6947 (window-at-side-p, adjust-window-trailing-edge, maximize-window)
6948 (minimize-window, window-deletable-p, delete-window)
6949 (delete-other-windows, set-window-buffer-start-and-point)
6950 (next-buffer, previous-buffer, split-window, balance-windows-2)
6951 (set-window-text-height, window-buffer-height)
6952 (fit-window-to-buffer, shrink-window-if-larger-than-buffer)
6953 (truncated-partial-width-window-p): Minor code adjustments.
6954 In doc-strings state whether the argument window has to denote a
6955 live, valid or any window.
6956
6957 2012-08-16 Phil Sainty <psainty@orcon.net.nz> (tiny change)
6958
6959 * progmodes/subword.el (subword-forward-function)
6960 (subword-backward-function, subword-forward-regexp)
6961 (subword-backward-regexp): New variables.
6962 (subword-forward, subword-forward-internal, subword-backward-internal):
6963 Use new variables, eg so that different "word" definitions
6964 can be easily used. (Bug#11411)
6965
6966 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
6967
6968 * vc/vc-mtn.el (vc-mtn-revision-completion-table): Handle completion
6969 for composite selectors.
6970 * vc/vc.el (vc-diff-build-argument-list-internal): Don't prevent
6971 operation just because we can't find a previous revision.
6972
6973 2012-08-15 Chong Yidong <cyd@gnu.org>
6974
6975 * frame.el (set-frame-font): Accept font objects.
6976
6977 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
6978
6979 * textmodes/tex-mode.el (tex-insert-quote): ~ is a space (bug#12137).
6980
6981 2012-08-15 Wolfgang Jenkner <wjenkner@inode.at>
6982
6983 * man.el (Man-overstrike-face, Man-underline-face)
6984 (Man-reverse-face): Remove variables.
6985 (Man-overstrike, Man-underline, Man-reverse): New faces.
6986 (Man-fontify-manpage): Use them instead of the variables.
6987 (Man-cleanup-manpage): Comment change.
6988 (Man-ansi-color-map): New variable.
6989 (Man-fontify-manpage): Use it.
6990 Call ansi-color-apply-on-region to replace ad hoc code (bug#12147).
6991
6992 Implement ANSI SGR parameters 22-27 (bug#12146).
6993 * ansi-color.el (ansi-colors): Doc fix.
6994 (ansi-color-context, ansi-color-context-region): Doc fix.
6995 (ansi-color--find-face): New function.
6996 (ansi-color-apply, ansi-color-apply-on-region): Use it.
6997 Rename the local variable `face' to `codes' since it is now a list of
6998 ansi codes. Doc fix.
6999 (ansi-color-get-face): Remove.
7000 (ansi-color-parse-sequence): New function, derived from
7001 ansi-color-get-face.
7002 (ansi-color-apply-sequence): Use it. Rewrite, and support ansi
7003 codes 22-27.
7004
7005 2012-08-14 Stefan Monnier <monnier@iro.umontreal.ca>
7006
7007 * subr.el (read-passwd): Allow use from a minibuffer.
7008
7009 2012-08-14 Eli Zaretskii <eliz@gnu.org>
7010
7011 * tooltip.el (tooltip-identifier-from-point): Don't treat tokens
7012 inside comments and strings as identifiers.
7013
7014 * progmodes/gud.el (gud-tooltip-print-command): Quote the
7015 expression to evaluate. This allows to evaluate expressions with
7016 embedded whitespace.
7017 (gud-tooltip-tips): Add a blank before the newline in the
7018 message-box text, for the benefit of message-box emulation on
7019 MS-Windows.
7020
7021 * progmodes/gdb-mi.el (gdb-tooltip-print): Don't ignore error
7022 messages from GDB, pop them up in a tooltip to give feedback to
7023 user.
7024 (gdb-tooltip-print-1): Quote the expression to evaluate.
7025 This allows to evaluate expressions with embedded whitespace.
7026 (gdb-inferior-io--init-proc): Don't send "-inferior-tty" command
7027 if the TTY name is nil or empty (which happens when communicating
7028 with the inferior via pipes, e.g. on MS-Windows).
7029 (gdb-internals): If GDB sends a "&\n" empty debugging message,
7030 don't send that to the GUD buffer.
7031
7032 2012-08-14 Glenn Morris <rgm@gnu.org>
7033
7034 * emacs-lisp/bytecomp.el (byte-compile-setq-default):
7035 Optimize away setq-default with no args, as for setq. (Bug#12195)
7036
7037 2012-08-14 Chong Yidong <cyd@gnu.org>
7038
7039 * minibuffer.el (read-file-name): Doc fix (Bug#10881).
7040
7041 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Doc fix
7042 (Bug#12085).
7043
7044 2012-08-14 Glenn Morris <rgm@gnu.org>
7045
7046 * emacs-lisp/bytecomp.el (byte-recompile-file): Doc fix.
7047
7048 2012-08-14 Michael Albinus <michael.albinus@gmx.de>
7049
7050 * net/tramp-sh.el (tramp-open-shell): Cache the shell name.
7051 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
7052 Use cached shell name.
7053
7054 2012-08-14 Fabián Ezequiel Gallina <fgallina@cuca>
7055
7056 * progmodes/python.el (python-shell-send-string):
7057 (python-shell-send-setup-code): Do not use `format' with `message'.
7058
7059 2012-08-14 Dmitry Gutov <dgutov@yandex.ru>
7060
7061 * progmodes/ruby-mode.el: Improve percent literals (bug#6286).
7062 (ruby-percent-literal-beg-re): New constant.
7063 (ruby-syntax-general-delimiters-goto-beg): Rename to
7064 `ruby-syntax-enclosing-percent-literal', improve literal type check.
7065 (ruby-syntax-propertize-general-delimiters): Rename to
7066 `ruby-syntax-propertize-percent-literal', it's a shorter and more
7067 popular term. Adjust comments everywhere.
7068 (ruby-syntax-propertize-percent-literal): Only propertize when not
7069 inside a simple string or comment. When the literal is unclosed,
7070 leave the text after it unpropertized.
7071 (ruby-syntax-methods-before-regexp): New constant.
7072 (ruby-syntax-propertize-function): Use it to recognize regexps.
7073 Don't look at the text after regexp, just use the whitelist.
7074
7075 2012-08-14 Andreas Schwab <schwab@linux-m68k.org>
7076
7077 * emacs-lisp/bytecomp.el (byte-recompile-file): When LOAD is
7078 non-nil always load the compiled file if it exists. (Bug#12197)
7079
7080 2012-08-14 Chong Yidong <cyd@gnu.org>
7081
7082 * hi-lock.el (hi-lock-mode): Do not unilaterally enable font lock.
7083 (hi-lock-set-pattern): When deciding whether to use font lock or
7084 overlays, look at font-lock-mode instead of font-lock-fontified
7085 (Bug#12168).
7086 (hi-lock-mode, hi-lock-line-face-buffer, hi-lock-unface-buffer)
7087 (hi-lock-face-buffer, hi-lock-face-phrase-buffer): Doc fix.
7088
7089 2012-08-14 Daiki Ueno <ueno@unixuser.org>
7090
7091 * subr.el (internal--after-with-selected-window): Fix typo
7092 (Bug#12193).
7093
7094 2012-08-14 Fabián Ezequiel Gallina <fgallina@cuca>
7095
7096 Use `completion-table-dynamic' for completion functions.
7097 * progmodes/python.el
7098 (python-shell-completion--do-completion-at-point)
7099 (python-shell-completion--get-completions):
7100 Remove functions.
7101 (python-shell-completion-complete-at-point): New function.
7102 (python-completion-complete-at-point): Use it.
7103
7104 2012-08-13 Jambunathan K <kjambunathan@gmail.com>
7105
7106 * vc/vc-dir.el (vc-dir-hide-state): New command (bug#12159).
7107 (vc-dir-hide-up-to-date): Route it to `vc-dir-hide-state'.
7108
7109 2012-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
7110
7111 * subr.el (function-get): Refine `autoload' arg so it can also
7112 autoload functions for gv.el (bug#12191).
7113 * emacs-lisp/edebug.el (get-edebug-spec): Adjust so it only
7114 autoloads macros.
7115
7116 * color.el (color-xyz-to-lab, color-lab-to-xyz, color-cie-de2000):
7117 Prefer pcase-let over destructuring-bind.
7118 * vc/diff-mode.el (diff-remove-trailing-whitespace): Same.
7119 Also, remove whitespace as we go, rather than after accumulating the
7120 various places.
7121
7122 * subr.el (internal--before-with-selected-window)
7123 (internal--after-with-selected-window): Fix typo seleted->selected.
7124 (with-selected-window): Adjust callers.
7125 Reported by Dmitry Gutov <dgutov@yandex.ru>.
7126
7127 2012-08-13 Bastien Guerry <bzg@gnu.org>
7128
7129 * window.el (special-display-popup-frame): Minor docstring
7130 enhancement. (Bug#12172)
7131
7132 2012-08-13 Andreas Schwab <schwab@linux-m68k.org>
7133
7134 * tar-mode.el (tar-header-data-end): Only ignore size for files of
7135 type 1-6.
7136 (tar-header-block-summarize, tar-get-descriptor): Handle pax
7137 extended headers.
7138
7139 * files.el (hack-local-variables-filter): Remove useless eval.
7140
7141 2012-08-13 Martin Rudalics <rudalics@gmx.at>
7142
7143 * subr.el (with-selected-window): Fix last change.
7144
7145 2012-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
7146
7147 * subr.el (internal--before-with-seleted-window)
7148 (internal--after-with-seleted-window): New functions.
7149 (with-selected-window): Use them, to replace dependency on
7150 tty-top-frame.
7151
7152 2012-08-12 Nobuyoshi Nakada <nobu@ruby-lang.org>
7153
7154 * progmodes/ruby-mode.el (ruby-mode-map): Remove unnecessary
7155 binding for `newline'.
7156 (ruby-move-to-block): When moving backward, stop at block opening,
7157 not indentation.
7158 * progmodes/ruby-mode.el (ruby-brace-to-do-end)
7159 (ruby-do-end-to-brace, ruby-toggle-block): New functions.
7160 * progmodes/ruby-mode.el (ruby-mode-map): Add binding for
7161 `ruby-toggle-block'.
7162
7163 2012-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
7164
7165 * ibuffer.el (ibuffer-do-toggle-read-only):
7166 * dired.el (dired-toggle-read-only):
7167 * buff-menu.el (Buffer-menu-toggle-read-only):
7168 * bindings.el (mode-line-toggle-read-only):
7169 * bs.el (bs-toggle-readonly): Call toggle-read-only interactively.
7170
7171 2012-08-12 Andreas Schwab <schwab@linux-m68k.org>
7172
7173 * descr-text.el (describe-char): Put the overlays over the
7174 "displayed as" character.
7175
7176 2012-08-12 Jay Belanger <jay.p.belanger@gmail.com>
7177
7178 * calc/calc-units.el (math-default-units-table): Give an
7179 initial value.
7180 (math-put-default-units): Add options to put composite units and
7181 unit systems in the default units table.
7182 (calc-convert-units): Send composite units to
7183 `math-put-default-units' when appropriate.
7184
7185 2012-08-11 Glenn Morris <rgm@gnu.org>
7186
7187 * emacs-lisp/copyright.el (copyright-update-directory): Logic fix.
7188
7189 * tutorial.el (help-with-tutorial):
7190 * emacs-lisp/copyright.el (copyright-update-directory):
7191 * emacs-lisp/autoload.el (autoload-find-generated-file)
7192 (autoload-find-file): Disable local eval: (for insurance).
7193
7194 * files.el (hack-local-variables-filter): If an eval: form is not
7195 known to be safe, and enable-local-variables is :safe, then ignore
7196 the form totally, as is done for non-eval forms. (Bug#12155)
7197 This is CVE-2012-3479.
7198
7199 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
7200
7201 * emacs-lisp/rx.el (rx-constituents): Don't define as constant.
7202 (rx-form): Simplify.
7203
7204 2012-08-09 Dmitry Gutov <dgutov@yandex.ru>
7205
7206 * progmodes/ruby-mode.el (ruby-expr-beg, ruby-parse-partial):
7207 ?, _, and : are symbol constituents, ! is not (but kinda should be).
7208 (ruby-syntax-propertize-heredoc): Use ruby-singleton-class-p.
7209 (ruby-syntax-propertize-function): Adjust for changes in
7210 `ruby-syntax-propertize-heredoc'.
7211
7212 2012-08-09 Nobuyoshi Nakada <nobu@ruby-lang.org>
7213
7214 * progmodes/ruby-mode.el (ruby-mode-map): Remove deprecated
7215 binding (use `M-;' instead).
7216 (ruby-singleton-class-p): New function.
7217 (ruby-expr-beg, ruby-in-here-doc-p) Use it.
7218
7219 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
7220
7221 * emacs-lisp/cl-macs.el (cl-loop): Improve debug spec.
7222
7223 2012-08-10 Chong Yidong <cyd@gnu.org>
7224
7225 * progmodes/python.el (python-shell-get-process-name): Don't mess
7226 with same-window-buffer-names.
7227
7228 * eshell/eshell.el (eshell-add-to-window-buffer-names)
7229 (eshell-remove-from-window-buffer-names): Make obsolete.
7230 (eshell-buffer-name, eshell-unload-hook): Don't use them.
7231 (eshell): Just use pop-to-buffer-same-window instead.
7232
7233 2012-08-10 Chong Yidong <cyd@gnu.org>
7234
7235 * bindings.el: Bind M-= back to count-words-region.
7236
7237 * simple.el (count-words-region): Accept a prefix arg for acting
7238 on the entire buffer.
7239 (count-words--buffer-message): New helper function.
7240
7241 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
7242
7243 * term/x-win.el (x-menu-bar-open): Always pass last-nonmenu-event.
7244 * subr.el (eventp): `nil' is not an event, and eventp is not hot.
7245 (event-start, event-end): Use posn-at-point to return a more
7246 informative posn.
7247 (posnp): New function.
7248 * mouse.el (popup-menu-normalize-position): Use it.
7249
7250 2012-08-10 Masatake YAMATO <yamato@redhat.com>
7251
7252 * mouse.el (popup-menu-normalize-position): New function.
7253 (popup-menu): Use `popup-menu-normalize-position' to normalize
7254 the form for POSITION argument.
7255
7256 * term/x-win.el (x-menu-bar-open):
7257 Use the value returend from (posn-at-point) as position
7258 passed to `popup-menu'.
7259
7260 2012-08-09 Jay Belanger <jay.p.belanger@gmail.com>
7261
7262 * calc/calccomp.el (math-compose-expr): Add extra argument
7263 indicating that parentheses should be put around products in
7264 denominators. Give multiplication precedence over division during
7265 composition.
7266
7267 2012-08-09 Chong Yidong <cyd@gnu.org>
7268
7269 * man.el (Man-switches, Man-sed-command, Man-awk-command)
7270 (Man-mode-hook, Man-cooked-hook, Man-untabify-command-args)
7271 (Man-untabify-command, manual-program): Convert to defcustom
7272 (Bug#10429).
7273
7274 * vc/add-log.el (change-log-mode): Bind comment-start to nil.
7275
7276 * descr-text.el (describe-char): Don't insert extra newlines
7277 (Bug#10127).
7278
7279 * vc/log-view.el (log-view-diff): Use use-region-p (Bug#10133).
7280 (log-view-diff-changeset, log-view-minor-wrap): Likewise.
7281
7282 * align.el (align-region): Delete temporary markers (Bug#10047).
7283 Plus some code cleanups.
7284
7285 2012-08-09 Fabián Ezequiel Gallina <fgallina@cuca>
7286
7287 * progmodes/python.el (python-pdbtrack-tracked-buffer)
7288 (python-pdbtrack-buffers-to-kill, python-shell-internal-buffer)
7289 (python-shell-internal-last-output): Use make-local-variable
7290 instead of make-variable-buffer-local.
7291
7292 2012-08-09 Fabián Ezequiel Gallina <fgallina@cuca>
7293
7294 * progmodes/python.el: Enhancements to forward-sexp.
7295 (python-nav-forward-sexp): Rename from
7296 python-nav-forward-sexp-function.
7297 (python-nav--forward-sexp, python-nav--backward-sexp):
7298 New functions.
7299
7300 2012-08-09 Jay Belanger <jay.p.belanger@gmail.com>
7301
7302 * calc/calc-menu.el (calc-modes-menu): Add entries for matrix
7303 modes and simplification modes.
7304
7305 2012-08-09 Stefan Monnier <monnier@iro.umontreal.ca>
7306
7307 * delsel.el (delete-selection-pre-hook): Don't propagate the
7308 file-supersession signals (bug#12161).
7309
7310 2012-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
7311
7312 * emacs-lisp/cl.el (cl-map-keymap-recursively, cl-map-intervals)
7313 (cl-map-extents): Add compatibility aliases (bug#12135).
7314
7315 2012-08-08 Michael Albinus <michael.albinus@gmx.de>
7316
7317 * net/tramp-sh.el (tramp-find-file-exists-command): Protect the
7318 tests by `ignore-error'.
7319 (tramp-find-shell): Open also a new shell, when cache is already
7320 set. Reported by Carsten Bormann <cabo@tzi.org>. (Bug#12148)
7321
7322 2012-08-08 Juri Linkov <juri@jurta.org>
7323
7324 * bookmark.el: Add `defaults' property to the bookmark record.
7325 (bookmark-current-buffer): Doc fix.
7326 (bookmark-make-record): Add `defaults' property with default values
7327 to the bookmark record.
7328 (bookmark-minibuffer-read-name-map): Remove key binding "\C-u"
7329 with `bookmark-insert-current-bookmark'.
7330 (bookmark-set): Get `defaults' property from the bookmark record
7331 and use it in `read-from-minibuffer'.
7332 (bookmark-insert-current-bookmark): Remove function.
7333
7334 * info.el (Info-bookmark-make-record): Add `defaults' property
7335 with values of canonical Info node name, the current Info file
7336 name and the current Info node name. (Bug#12107)
7337
7338 2012-08-08 Juri Linkov <juri@jurta.org>
7339
7340 * files.el (basic-save-buffer): Use `buffer-name' as the default
7341 of `read-file-name' when buffer is not visiting a file (bug#12128).
7342
7343 2012-08-08 Juri Linkov <juri@jurta.org>
7344
7345 * info.el (Info-isearch-search): Doc fix.
7346 (Info-search): Change search-failed message from "initial node" to
7347 "end of node" (bug#12078).
7348 (Info-isearch-search): Change `isearch-string-state' to
7349 `isearch--state-string'.
7350
7351 2012-08-08 Glenn Morris <rgm@gnu.org>
7352
7353 * language/persian.el: Remove file.
7354 * language/misc-lang.el: Move unique part of persian.el here.
7355 * loadup.el: Remove language/persian.
7356
7357 2012-08-08 Óscar Fuentes <ofv@wanadoo.es>
7358
7359 * vc/diff-mode.el (diff-remove-trailing-whitespace): New function.
7360
7361 2012-08-08 Fabián Ezequiel Gallina <fgallina@cuca>
7362
7363 * progmodes/python.el: Fix defsubst warning.
7364 (python-syntax-context) Rename from python-info-ppss-context.
7365 (python-syntax-context-type): Rename from
7366 python-info-ppss-context-type.
7367 (python-syntax-comment-or-string-p): Rename from
7368 python-info-ppss-comment-or-string-p.
7369
7370 2012-08-08 Jay Belanger <jay.p.belanger@gmail.com>
7371
7372 * calc/calc-misc.el (calc-record-why): Don't record a message twice.
7373
7374 2012-08-07 Andreas Schwab <schwab@linux-m68k.org>
7375
7376 * emacs-lisp/lisp-mode.el (eval-defun-1): Handle standard value of
7377 a defcustom that is quoted with backquote.
7378
7379 * calc/calc-prog.el (math-do-defmath): Use backquote forms.
7380 Fix handling of interactive spec when the body uses return.
7381 (math-do-arg-check, math-define-function-body): Use backquote forms.
7382 * calc/calc-ext.el (math-defcache): Likewise.
7383 * calc/calc-rewr.el (math-rwfail, math-rweval): Likewise.
7384 * allout.el (allout-new-exposure): Likewise.
7385 * calc/calcalg2.el (math-tracing-integral): Likewise.
7386 * info.el (Info-last-menu-item): Likewise.
7387 * emulation/vip.el (vip-loop): Likewise.
7388 * textmodes/artist.el (artist-funcall): Likewise.
7389 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle):
7390 Construct menu-item directly.
7391
7392 * progmodes/autoconf.el (font-lock-syntactic-keywords):
7393 Don't declare.
7394
7395 2012-08-07 Chong Yidong <cyd@gnu.org>
7396
7397 * simple.el (deactivate-mark): Preserve text properties when
7398 saving the primary selection (Bug#8384).
7399
7400 2012-08-07 Kevin Ryde <user42@zip.com.au>
7401
7402 * woman.el (woman0-if): Quietly treat ".if v" as false (Bug#12109).
7403 (woman-parse-numeric-value): On a bad .IP line, issue a warning
7404 and continue processing (Bug#12110).
7405
7406 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
7407
7408 * progmodes/cperl-mode.el (cperl-mode): Yet another fix for
7409 syntax-propertize-function (bug#10095).
7410
7411 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
7412
7413 * help-fns.el (help-fns--key-bindings, help-fns--signature)
7414 (help-fns--parent-mode, help-fns--obsolete): New funs, extracted from
7415 describe-function-1.
7416 (describe-function-1): Use them. Move compiler macro after sig.
7417 (help-fns--compiler-macro): Use function-get. Assume we're already in
7418 standard-output. Adjust layout to new call order.
7419
7420 * emacs-lisp/cl-macs.el (cl--sm-macroexpand): Fix handling of
7421 re-binding a symbol that has a symbol-macro (bug#12119).
7422
7423 2012-08-06 Mohsen BANAN <libre@mohsen.1.banan.byname.net>
7424
7425 * language/persian.el: New file. (Bug#11812)
7426 * loadup.el: Add language/persian.el.
7427
7428 2012-08-06 Chong Yidong <cyd@gnu.org>
7429
7430 * window.el (window--maybe-raise-frame): New function.
7431 (window--display-buffer): Split off from here.
7432 (display-buffer-reuse-window, display-buffer-pop-up-frame)
7433 (display-buffer-pop-up-window, display-buffer-use-some-window):
7434 Obey an inhibit-switch-frame action alist entry.
7435 (display-buffer): Update doc.
7436
7437 * replace.el (occur-after-change-function): Avoid losing focus by
7438 using the inhibit-switch-frame display parameter (Bug#12139).
7439
7440 2012-08-06 Fabián Ezequiel Gallina <fgallina@cuca>
7441
7442 Make internal shell process buffer names start with space.
7443 * progmodes/python.el (python-shell-make-comint): Add optional
7444 argument INTERNAL.
7445 (run-python-internal): Use it.
7446 (python-shell-internal-get-or-create-process): Check for new
7447 internal buffer names.
7448
7449 2012-08-06 Glenn Morris <rgm@gnu.org>
7450
7451 * eshell/esh-ext.el (eshell/addpath): Use dolist and mapconcat.
7452 Do less getting and setting of environment variables.
7453
7454 2012-08-05 Chong Yidong <cyd@gnu.org>
7455
7456 * proced.el (proced): Add substitution string to docstring to
7457 trigger autoloading of the proced library on C-h f (Bug#1768).
7458
7459 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
7460 Don't show defvars which have no second argument (Bug#8638).
7461
7462 * imenu.el (imenu-generic-expression): Move documentation here
7463 from imenu--generic-function.
7464 (imenu--generic-function): Refer to imenu-generic-expression.
7465
7466 2012-08-05 Vegard Øye <vegard_oye@hotmail.com> (tiny change)
7467
7468 * emulation/viper-init.el (viper-deflocalvar): Add docstring and
7469 indentation declaration.
7470 (viper-loop): Add indentation declaration (Bug#7025).
7471
7472 2012-08-05 Chong Yidong <cyd@gnu.org>
7473
7474 * help-fns.el (describe-variable): Add hyperlink for
7475 directory-local variables files. Improve buffer-local and
7476 permanent-local reporting; suggested by MON KEY (Bug#6644).
7477
7478 * help-mode.el (help-dir-local-var-def): New button type.
7479
7480 * files.el (kill-buffer-hook): Provide a defvar.
7481
7482 2012-08-05 Glenn Morris <rgm@gnu.org>
7483
7484 * eshell/esh-ext.el (eshell/addpath):
7485 Also update eshell-path-env. (Bug#12013)
7486
7487 2012-08-05 Chong Yidong <cyd@gnu.org>
7488
7489 * wdired.el (wdired-mode, wdired-change-to-wdired-mode): Doc fixes.
7490
7491 * fringe.el (fringe-styles): Add docstring.
7492 (fringe--check-mode): New function.
7493 (set-fringe-mode, set-fringe-style): Use it.
7494 (fringe-mode, set-fringe-style): Doc fixes (Bug#6480).
7495
7496 * files.el (set-auto-mode): Fix invalid setq call.
7497
7498 2012-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
7499
7500 * isearch.el: Misc simplification; use defstruct.
7501 (isearch-mode-map): Dense maps now work like sparse ones.
7502 (isearch--state): New defstruct.
7503 (isearch-string-state, isearch-message-state, isearch-point-state)
7504 (isearch-success-state, isearch-forward-state)
7505 (isearch-other-end-state, isearch-word-state, isearch-error-state)
7506 (isearch-wrapped-state, isearch-barrier-state)
7507 (isearch-case-fold-search-state, isearch-pop-fun-state): Remove,
7508 replaced by defstruct's accessors.
7509 (isearch--set-state): Rename from isearch-top-state and change
7510 calling convention.
7511 (isearch-push-state): Use new isearch--get-state.
7512 (isearch-toggle-word): Disable regexp when enabling word.
7513 (isearch-message-prefix): Remove unused arg _c-q-hack.
7514 (isearch-message-suffix): Remove unused arg _ellipsis.
7515
7516 2012-08-04 Andreas Schwab <schwab@linux-m68k.org>
7517
7518 * simple.el (list-processes--refresh): For a server use :host or
7519 :local as the address.
7520 (list-processes): Doc fix.
7521
7522 2012-08-04 Michal Nazarewicz <mina86@mina86.com>
7523
7524 * lisp/mpc.el: Support password in host argument.
7525 (mpc--proc-connect): Parse and use new password element.
7526 Set mpc-proc variable instead of returning process.
7527 (mpc-proc): Adjust accordingly.
7528
7529 2012-08-03 Eli Zaretskii <eliz@gnu.org>
7530
7531 * whitespace.el (whitespace-display-mappings): Use Unicode
7532 codepoints, instead of emacs-mule codepoints. See
7533 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-07/msg00366.html
7534 for the details.
7535
7536 * files.el (file-truename): Don't skip symlink-chasing part on
7537 windows-nt. Incorporate the resolution of 8+3 short aliases on
7538 Windows into the loop that recursively chases symlinks.
7539 Compare directory and its parent case-insensitively on MS-Windows and
7540 MS-DOS.
7541
7542 2012-08-03 Chong Yidong <cyd@gnu.org>
7543
7544 * menu-bar.el (menu-bar-tools-menu): Remove PCL-CVS.
7545
7546 * sort.el (sort-regexp-fields): Doc fix.
7547
7548 2012-08-03 Tassilo Horn <tsdh@gnu.org>
7549
7550 * textmodes/reftex.el (reftex-compile-variables): Make keyvals
7551 labels regex position point at the expected place.
7552
7553 2012-08-03 MON KEY <monkey@sandpframing.com>
7554
7555 * net/imap.el (imap-interactive-login, imap-authenticate)
7556 (imap-mailbox-lsub, imap-mailbox-list)
7557 (imap-mailbox-status-asynch, imap-mailbox-acl-delete)
7558 (imap-fetch, imap-message-flag-permanent-p, imap-envelope-from)
7559 (imap-parse-response): Doc fix.
7560
7561 2012-08-03 João Távora <joaotavora@gmail.com>
7562
7563 * textmodes/tex-mode.el (latex-forward-sexp): Terminate the loop
7564 if sexp scanning does not move point (Bug#5734).
7565
7566 2012-08-02 Tassilo Horn <tsdh@gnu.org>
7567
7568 * textmodes/reftex-vars.el (reftex-default-label-alist-entries):
7569 Add listings, minted, and ctable packages.
7570 (reftex-label-alist-builtin): Move listings, minted, and ctable
7571 entries before LaTeX.
7572 (reftex-label-alist): Docfix.
7573
7574 2012-08-02 Bastien Guerry <bzg@gnu.org>
7575
7576 * replace.el (occur): Fix docstring (bug#12122).
7577
7578 2012-08-02 Glenn Morris <rgm@gnu.org>
7579
7580 * emacs-lisp/authors.el (authors-renamed-files-alist): Add ms-w32.h.
7581
7582 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
7583
7584 Obsolete alias inactivate-current-input-method-function (Bug#10150).
7585 * international/mule-cmds.el: Create
7586 inactivate-current-input-method-function as an obsolete alias for
7587 deactivate-current-input-method-function. See Katsumi Yamaoka in
7588 <http://bugs.gnu.org/10150#46>.
7589
7590 2012-08-01 Jay Belanger <jay.p.belanger@gmail.com>
7591
7592 * calc/calc-mode.el (calc-set-simplify-mode): Use `cond' instead
7593 of nested `if's.
7594
7595 2012-08-01 Glenn Morris <rgm@gnu.org>
7596
7597 * progmodes/autoconf.el (autoconf-definition-regexp):
7598 Add AH_TEMPLATE, adjust submatch numbering.
7599 (autoconf-font-lock-keywords, autoconf-imenu-generic-expression)
7600 (autoconf-current-defun-function): Update for above change.
7601 (autoconf-current-defun-function): First skip to end of current word.
7602
7603 2012-08-01 Rupert Swarbrick <rswarbrick@gmail.com> (tiny change)
7604
7605 * calendar/cal-html.el (cal-html-insert-agenda-days):
7606 Fix typo. (Bug#12018)
7607
7608 2012-07-31 Fabián Ezequiel Gallina <fgallina@cuca>
7609
7610 Shell processes: enhancements to startup and CEDET compatibility.
7611 * progmodes/python.el (python-shell-send-setup-max-wait): Delete var.
7612 (python-shell-make-comint): accept-process-output at startup.
7613 (run-python-internal): Set inferior-python-mode-hook to nil.
7614 (python-shell-internal-get-or-create-process): call sit-for.
7615 (python-preoutput-result): Add obsolete alias.
7616 (python-shell-internal-send-string): Use it.
7617 (python-shell-send-setup-code): Remove call to
7618 accept-process-output.
7619
7620 2012-07-31 Andreas Schwab <schwab@linux-m68k.org>
7621
7622 * buff-menu.el (list-buffers-noselect): Use prefix-numeric-value.
7623 (Bug#12108)
7624
7625 2012-07-31 Jay Belanger <jay.p.belanger@gmail.com>
7626
7627 * calc-mode.el (calc-basic-simplification-mode): Rename from
7628 `calc-limited-simplification-mode'.
7629 (calc-alg-simplification-mode): New function.
7630 (calc-set-simplify-mode): Adjust message.
7631
7632 * calc.el (calc-set-mode-line): Adjust mode line display for
7633 basic simplification mode.
7634
7635 * calc-help.el (calc-m-prefix-help): Update help message.
7636
7637 * calc-ext.el (calc-init-extensions): Add bindings and autoloads
7638 for `calc-basic-simplify-mode' and `calc-alg-simplify-mode'.
7639
7640 2012-07-31 Bastien Guerry <bzg@gnu.org>
7641
7642 * man.el (man): Fix comment. (bug#12101)
7643
7644 2012-07-31 Martin Rudalics <rudalics@gmx.at>
7645
7646 * window.el (switch-to-prev-buffer, switch-to-next-buffer):
7647 Don't return a non-nil value when no suitable buffer was found.
7648
7649 2012-07-31 Fabián Ezequiel Gallina <fgallina@cuca>
7650
7651 * progmodes/python.el (run-python-internal): Disable font lock for
7652 internal shells.
7653
7654 2012-07-30 Stefan Merten <smerten@oekonux.de>
7655
7656 * textmodes/rst.el: Silence `checkdoc-ispell'.
7657 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
7658 (rst-official-version, rst-official-cvs-rev)
7659 (rst-package-emacs-version-alist): Update to upstream V1.3.1.
7660 (rst-mode-map): New key binding.
7661
7662 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
7663
7664 Update .PHONY listings in makefiles.
7665 * Makefile.in (.PHONY): Add all, doit, custom-deps, finder-data,
7666 autoloads, update-subdirs, updates, bzr-update, update-authors,
7667 compile-onefile, compile-calc, backup-compiled-files,
7668 compile-after-backup, compile-one-process, mh-autoloads,
7669 bootstrap-clean, distclean, maintainer-clean.
7670
7671 2012-07-29 Jay Belanger <jay.p.belanger@gmail.com>
7672
7673 * calc/calc.el (calc-simplify-mode): Make 'alg the default value.
7674 (calc-set-mode-line): Don't display "AlgSimp ".
7675
7676 * calc/calc-mode.el (calc-alg-simplify-mode): Remove function.
7677 (calc-lim-simplify-mode): New function.
7678 (calc-set-simplify-mode): Default to 'alg.
7679 (calc-default-simplify-mode): Make algebraic simplifications
7680 the default.
7681
7682 * calc/calc-ext.el (calc-init-extensions): Remove binding for
7683 `calc-alg-simplify-mode'. Add binding for `calc-lim-simplify-mode'.
7684
7685 * calc/calc-help.el (calc-m-prefix-help): Change messages to
7686 indicate new simplification modes.
7687
7688 * calc/README: Mention new default simplification mode.
7689
7690 * calc/calc.el (math-normalize-error): New variable.
7691 (math-normalize): Set `math-normalize-error' to t
7692 when there's an error.
7693
7694 * calc/calc-alg.el (math-simplify): Don't simplify when
7695 `math-normalize' returns an error.
7696
7697 2012-07-29 Eli Zaretskii <eliz@gnu.org>
7698
7699 * international/mule-cmds.el (set-locale-environment): Revert last
7700 change, since display-graphic-p returns nil when this function is
7701 called during startup. Instead...
7702
7703 * term/w32console.el (terminal-init-w32console): ...setup the
7704 keyboard and terminal encoding for TTY sessions here. (Bug#12082)
7705
7706 2012-07-29 Juri Linkov <juri@jurta.org>
7707
7708 * simple.el (goto-line): Don't display default line number in the
7709 prompt because it should be displayed by `read-number' (bug#9952).
7710 Add the current line number to the defaults of `goto-line' to
7711 allow its easier modification by users with `M-n' (bug#9201).
7712
7713 * subr.el (read-number): Support multiple default values like in
7714 other minibuffer reading functions. Replace `read' with
7715 `string-to-number' for consistency with `number-to-string'.
7716
7717 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
7718
7719 deactive->inactive, inactivate->deactivate spelling fixes (Bug#10150)
7720 * emulation/viper-init.el (viper-deactivate-input-method-action):
7721 Rename from viper-inactivate-input-method-action.
7722 (viper-deactivate-input-method):
7723 Rename from viper-inactivate-input-method.
7724 * follow.el (follow-inactive-menu): Rename from follow-deactive-menu.
7725 * international/mule-cmds.el (deactivate-input-method):
7726 Rename from inactivate-input-method.
7727 Also run input-method-deactivate-hook.
7728 (deactivate-current-input-method-function):
7729 Rename from inactivate-current-input-method-function.
7730 (input-method-deactivate-hook): New hook.
7731 (input-method-inactivate-hook): Mark obsolete.
7732 (inactivate-input-method): Mark obsolete.
7733
7734 * international/quail.el (quail-activate):
7735 Also run quail-deactivate-hook.
7736 (quail-deactivate): Rename from quail-inactivate.
7737 * international/robin.el (robin-activate):
7738 Also run robin-deactivate-hook.
7739 (robin-deactivate): Rename from robin-inactivate.
7740
7741 2012-07-29 Chong Yidong <cyd@gnu.org>
7742
7743 * simple.el (indicate-copied-region): New function.
7744 (kill-ring-save): Split off from here.
7745
7746 * rect.el (copy-rectangle-as-kill): Call indicate-copied-region.
7747 (kill-rectangle): Set deactivate-mark to t on read-only error.
7748
7749 * register.el (copy-to-register, copy-rectangle-to-register):
7750 Deactivate the mark, and use indicate-copied-region (Bug#10056).
7751 (append-to-register, prepend-to-register): Call indicate-copied-region.
7752
7753 2012-07-29 Juri Linkov <juri@jurta.org>
7754
7755 * simple.el (async-shell-command-buffer): New defcustom.
7756 (shell-command): Use it. (Bug#4719)
7757
7758 2012-07-28 Eli Zaretskii <eliz@gnu.org>
7759
7760 * international/mule-cmds.el (set-locale-environment): In a
7761 console session on MS-Windows, set up keyboard and terminal
7762 encoding from the OEM codepage, not the ANSI codepage.
7763 (Bug#12055)
7764
7765 2012-07-28 Chong Yidong <cyd@gnu.org>
7766
7767 * progmodes/gdb-mi.el (gdb-place-breakpoints): Fix the call to
7768 gdb-get-location.
7769
7770 2012-07-28 Leo Liu <sdl.web@gmail.com>
7771
7772 * progmodes/cc-menus.el (cc-imenu-objc-function): Avoid leaving nil in
7773 the alist (bug#12029).
7774
7775 2012-07-28 Eli Zaretskii <eliz@gnu.org>
7776
7777 * makefile.w32-in (custom-deps, finder-data, updates, compile)
7778 (compile-always, compile-first)
7779 ($(lisp)/calendar/cal-loaddefs.el)
7780 ($(lisp)/calendar/diary-loaddefs.el)
7781 ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
7782 ($(lisp)/net/tramp-loaddefs.el, bootstrap)
7783 ($(lisp)/progmodes/cc-mode.elc): Depend on $(lisp)subdirs.el,
7784 instead of on update-subdirs.
7785 (bootstrap-clean): Delete $(lisp)/subdirs.el.
7786
7787 2012-07-28 Chong Yidong <cyd@gnu.org>
7788
7789 * vc/vc.el (vc-root-diff, vc-print-root-log): Prompt for a
7790 directory if vc-deduce-backend returns nil (Bug#7350).
7791
7792 * simple.el (delete-trailing-lines): New option.
7793 (delete-trailing-whitespace): Obey it (Bug#11879).
7794
7795 2012-07-28 David Engster <deng@randomsample.de>
7796
7797 * xml.el (xml-node-name, xml-parse-file, xml-parse-region):
7798 Explanation of new 'symbol-qnames feature in doc-strings.
7799 (xml-maybe-do-ns): Return expanded names as plain symbols if
7800 'symbol-qnames was provided in XML-NS argument (Bug#11916).
7801 (xml-parse-tag-1): Deal with new definition of PARSE-NS argument.
7802
7803 2012-07-27 Fabián Ezequiel Gallina <fgallina@cuca>
7804
7805 Consistent completion in inferior python with emacs -nw.
7806 * progmodes/python.el (inferior-python-mode): replace "<tab>"
7807 binding in inferior-python-mode-map with "\t".
7808 (python-shell-completion-complete-at-point)
7809 (python-completion-complete-at-point): Remove interactive spec.
7810
7811 2012-07-27 Jay Belanger <jay.p.belanger@gmail.com>
7812
7813 * calc/calccomp.el (math-compose-expr): Undo previous change.
7814
7815 2012-07-27 Fabián Ezequiel Gallina <fgallina@cuca>
7816
7817 * progmodes/python.el (python-mode-map): Add keybinding for
7818 run-python.
7819 (python-shell-make-comint): Fix pop-to-buffer call.
7820 (run-python): Autoload. New arg SHOW.
7821 (python-shell-get-or-create-process): Do not pop python process
7822 buffer.
7823
7824 2012-07-27 Michael Albinus <michael.albinus@gmx.de>
7825
7826 * notifications.el (notifications-on-action-signal)
7827 (notifications-on-closed-signal): Use also the bus address for the map.
7828 (notifications-notify, notifications-close-notification)
7829 (notifications-get-capabilities): Add optional argument BUS.
7830
7831 2012-07-27 Tassilo Horn <tsdh@gnu.org>
7832
7833 * textmodes/reftex-vars.el (reftex-label-alist-builtin):
7834 Add support for the lstlisting and minted environments, and for the
7835 ctable macro.
7836 * textmodes/reftex.el (reftex-compile-variables): Also recognize
7837 labels written in keyvals syntax.
7838
7839 2012-07-27 Jay Belanger <jay.p.belanger@gmail.com>
7840
7841 * calc/calccomp.el (math-compose-expr): Use parentheses when
7842 there is a product in the denominator of a fraction.
7843
7844 2012-07-26 Eli Zaretskii <eliz@gnu.org>
7845
7846 * makefile.w32-in ($(lisp)/calendar/cal-loaddefs.el)
7847 ($(lisp)/calendar/diary-loaddefs.el)
7848 ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
7849 ($(lisp)/net/tramp-loaddefs.el): Depend on update-subdirs.
7850 Fixes failures in parallel bootstrap because subdirs.el is being
7851 rewritten while the autoload files are built at the same time,
7852 which needs to load subdirs.el.
7853
7854 2012-07-26 Martin Rudalics <rudalics@gmx.at>
7855
7856 * mouse.el (popup-menu): Fix doc-string and re-indent code.
7857 (mouse-drag-line): Don't exit tracking when a switch-frame or
7858 switch-window event occurs (Bug#12006).
7859
7860 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
7861
7862 * mouse.el (popup-menu): Fix last change.
7863
7864 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
7865
7866 Autoload from Lisp with more care. Follow aliases when looking for
7867 function properties.
7868 * subr.el (autoloadp): New function.
7869 (symbol-file): Use it.
7870 (function-get): New function.
7871 * emacs-lisp/macroexp.el (macroexp--expand-all): Use function-get and
7872 autoload-do-load.
7873 * emacs-lisp/lisp-mode.el (lisp-font-lock-syntactic-face-function)
7874 (lisp-indent-function):
7875 * emacs-lisp/gv.el (gv-get):
7876 * emacs-lisp/edebug.el (get-edebug-spec, edebug-basic-spec):
7877 * emacs-lisp/byte-opt.el (byte-optimize-form):
7878 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
7879 * emacs-lisp/autoload.el (make-autoload, autoload-print-form):
7880 Use function-get.
7881 * emacs-lisp/cl.el: Don't propagate function properties any more.
7882
7883 * speedbar.el (speedbar-add-localized-speedbar-support):
7884 * emacs-lisp/disass.el (disassemble-internal):
7885 * desktop.el (desktop-load-file):
7886 * help-fns.el (help-function-arglist, find-lisp-object-file-name)
7887 (describe-function-1):
7888 * emacs-lisp/find-func.el (find-function-noselect):
7889 * emacs-lisp/elp.el (elp-instrument-function):
7890 * emacs-lisp/advice.el (ad-has-proper-definition):
7891 * apropos.el (apropos-safe-documentation, apropos-macrop):
7892 * emacs-lisp/debug.el (debug-on-entry):
7893 * emacs-lisp/cl-macs.el (cl-compiler-macroexpand):
7894 * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
7895 * calc/calc.el (name): Use autoloadp & autoload-do-load.
7896
7897 2012-07-25 Alp Aker <alp.tekin.aker@gmail.com>
7898
7899 * international/mule-cmds.el (ucs-insert): Mark it as an obsolete
7900 function, not an obsolete variable (Bug#12046).
7901
7902 2012-07-25 Andreas Schwab <schwab@linux-m68k.org>
7903
7904 * faces.el (face-spec-reset-face): Fix last change. (Bug#12042)
7905
7906 2012-07-25 Christopher Schmidt <christopher@ch.ristopher.com>
7907
7908 * emacs-lisp/pp.el (pp-display-expression): Select old selected
7909 window only if it is still live (Bug#12034).
7910
7911 2012-07-25 Martin Rudalics <rudalics@gmx.at>
7912
7913 * subr.el (redirect-frame-focus): Add advertised calling
7914 convention (Bug#12030).
7915
7916 2012-07-25 Paul Eggert <eggert@cs.ucla.edu>
7917
7918 Prefer typical American spelling for "acknowledgment".
7919 * vc/add-log.el (change-log-acknowledgment): Rename from
7920 change-log-acknowledgement, with an alias for the old name.
7921
7922 2012-07-25 Jay Belanger <jay.p.belanger@gmail.com>
7923
7924 * calc-alg.el (math-simplify-divide): Don't cross multiply
7925 in an equation when the lhs is a variable.
7926
7927 2012-07-24 Julien Danjou <julien@danjou.info>
7928
7929 * net/netrc.el (netrc-find-service-number, netrc-store-data):
7930 Remove, unused.
7931
7932 2012-07-23 Eli Zaretskii <eliz@gnu.org>
7933
7934 * startup.el (command-line): Don't display an empty user name in
7935 the error message about non-existent home directory, when
7936 init-file-user was set to an empty string. See
7937 http://lists.gnu.org/archive/html/bug-gnu-emacs/2012-07/msg00835.html
7938 for the details and context.
7939
7940 2012-07-22 Vincent Belaïche <vincentb1@users.sourceforge.net>
7941
7942 * ses.el (ses-cell-formula-aset): New macro.
7943 (ses-cell-references-aset): New macro.
7944 (ses-cell-p): New function.
7945 (ses-rename-cell): Do no longer rely on complex operations like
7946 ses-cell-set-formula or ses-set-cell to change the cell and handle
7947 the undo at the same time, but rather use lower level new macros
7948 `ses-cell-formula-aset' and `ses-cell-references-aset' and handle
7949 the undo directly. Refresh the mode line.
7950
7951 2012-07-21 Leo Liu <sdl.web@gmail.com>
7952
7953 * progmodes/cc-cmds.el (c-defun-name):
7954 Use match-string-no-properties instead for consistency.
7955
7956 2012-07-20 Leo Liu <sdl.web@gmail.com>
7957
7958 * progmodes/cc-cmds.el (c-defun-name): Handle objc selectors properly.
7959 (Bug#7879)
7960
7961 * progmodes/cc-langs.el (c-symbol-start): Include char _ (bug#11986).
7962
7963 2012-07-20 Stefan Monnier <monnier@iro.umontreal.ca>
7964
7965 * userlock.el, emacs-lisp/map-ynp.el: Declare part of `emacs' package.
7966 * progmodes/bug-reference.el, misearch.el: Provide themselves
7967 (bug#11915).
7968
7969 * progmodes/cperl-mode.el (cperl-unwind-to-safe): Don't inf-loop at end
7970 of narrowed buffer (bug#11966).
7971
7972 2012-07-20 Vincent Belaïche <vincentb1@users.sourceforge.net>
7973
7974 * ses.el (ses-rename-cell): Set new name also in reference list of
7975 cells of which the renamed cell depends.
7976
7977 2012-07-20 Masatake YAMATO <yamato@redhat.com>
7978
7979 * term/x-win.el (x-menu-bar-open): Use `frame-parameter'
7980 to check whether menu-bar is shown or not. If not shown,
7981 show the menu-bar as a popup menu instead of using tmm.
7982 * mouse.el (popup-menu): Accept `point' as `position' argument.
7983
7984 2012-07-20 Dmitry Gutov <dgutov@yandex.ru>
7985
7986 * progmodes/ruby-mode.el (ruby-parse-partial): No error when end
7987 up inside string symbol literal (bug#11923).
7988
7989 2012-07-20 Eli Zaretskii <eliz@gnu.org>
7990
7991 * startup.el (fancy-startup-text): Read the whole tutorial, not
7992 just its first 256 bytes. Prevents gibberish in display of the
7993 tutorial title.
7994
7995 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
7996
7997 Drop idle buffer compaction due to an absence of the
7998 proved efficiency.
7999 * compact.el: Remove.
8000
8001 2012-07-19 Sam Steingold <sds@gnu.org>
8002
8003 * vc/vc-dispatcher.el (vc-compilation-mode): Add, based on
8004 vc-bzr-pull & vc-bzr-merge-branch.
8005 * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch): Use it.
8006 (vc-bzr-error-regexp-alist): Rename from vc-bzr-error-regex-alist
8007 for consistency with compilation-error-regexp-alist.
8008 * vc/vc-git.el (vc-git-error-regexp-alist): Add.
8009 (vc-git-pull, vc-git-merge-branch): Call vc-compilation-mode.
8010 * vc/vc-hg.el (vc-hg-error-regexp-alist): Add.
8011 (vc-hg-pull, vc-hg-merge-branch): Call vc-compilation-mode.
8012
8013 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
8014
8015 * emacs-lisp/chart.el: Use lexical-binding.
8016 (chart-emacs-storage): Don't hardcode the list of entries.
8017
8018 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
8019
8020 Next round of tweaks caused by Fgarbage_collect changes.
8021 * emacs-lisp/chart.el (chart-emacs-storage): Adjust again.
8022
8023 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
8024
8025 Compact buffers when idle.
8026 * compact.el: New file.
8027
8028 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
8029
8030 * subr.el (eventp): Presume that if it looks vaguely like an event,
8031 it's an event (bug#10190).
8032
8033 2012-07-19 Fabián Ezequiel Gallina <fgallina@cuca>
8034
8035 Enhancements to ppss related code (thanks Stefan).
8036 * progmodes/python.el (python-indent-context)
8037 (python-indent-calculate-indentation, python-indent-dedent-line)
8038 (python-indent-electric-colon, python-nav-forward-block)
8039 (python-mode-abbrev-table)
8040 (python-info-assignment-continuation-line-p): Simplify checks
8041 for ppss context.
8042 (python-info-continuation-line-p): Cleanup.
8043 (python-info-ppss-context): Do not catch 'quote.
8044 (python-info-ppss-context-type)
8045 (python-info-ppss-comment-or-string-p): Simplify.
8046
8047 2012-07-18 Fabián Ezequiel Gallina <fgallina@cuca>
8048
8049 * progmodes/python.el: Enhancements to eldoc support.
8050 (python-info-current-symbol): New function.
8051 (python-eldoc-at-point): Use python-info-current-symbol.
8052 (python-info-current-defun): Fix cornercase on first defun scan.
8053 (python-eldoc--get-doc-at-point): Use python-info-current-symbol
8054 and signal error when no inferior python process is available.
8055
8056 2012-07-18 Dmitry Gutov <dgutov@yandex.ru>
8057
8058 * vc/vc-git.el (vc-git-state): Don't call `vc-git-registered',
8059 assume it's always t.
8060 (vc-git-registered): Remove caching, the function is only called
8061 once.
8062 (vc-git-branches): Use `vc-git--call' instead of `call-process'.
8063
8064 2012-07-18 Chong Yidong <cyd@gnu.org>
8065
8066 * subr.el (last-input-char, last-command-char): Remove (Bug#9195).
8067
8068 * simple.el (count-words): Report on narrowing (Bug#9959).
8069
8070 * bindings.el: Bind M-= to count-words.
8071
8072 * faces.el (face-spec-reset-face): Handle reverse video (Bug#4238).
8073
8074 2012-07-18 Masatake YAMATO <yamato@redhat.com>
8075
8076 * progmodes/sh-script.el (sh-imenu-generic-expression):
8077 Capture a function with `function' keyword and without parentheses
8078 like "function FOO" (bug#11856).
8079
8080 2012-07-18 Tassilo Horn <tassilo@member.fsf.org>
8081
8082 * window.el (split-window-sensibly): Make WINDOW argument
8083 optional.
8084
8085 2012-07-18 Chong Yidong <cyd@gnu.org>
8086
8087 * subr.el (keyboard-translate): Doc fix (Bug#7261).
8088
8089 * isearch.el (isearch-mode-map): Handle C-x 8 key translations,
8090 and make C-x 8 RET exit isearch (Bug#11439).
8091
8092 * international/iso-transl.el: Move isearch-mode-map key
8093 definitions to isearch.el.
8094
8095 2012-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
8096
8097 * emacs-lisp/eieio.el: Adapt further to gv.el (bug#11970).
8098 (eieio-defclass): Use gv-define-setter when possible.
8099
8100 2012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
8101
8102 Reflect recent changes in Fgarbage_collect.
8103 * emacs-lisp/chart.el (chart-emacs-storage): Change to
8104 reflect new format of data returned by Fgarbage_collect.
8105
8106 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
8107
8108 New utility functions + python-info-ppss-context fix (Bug#11910).
8109 * progmodes/python.el (python-info-beginning-of-block-statement-p)
8110 (python-info-ppss-comment-or-string-p): New functions.
8111 (python-info-ppss-context): Small fix for string check.
8112
8113 2012-07-17 Juri Linkov <juri@jurta.org>
8114
8115 * dired-aux.el (dired-do-async-shell-command): Doc fix.
8116 (dired-do-async-shell-command): Don't add `*' at the end of the
8117 command (Bug#11815).
8118 (dired-do-shell-command): Doc fix.
8119 (dired-shell-stuff-it): Strip the trailing "&" and ";" if any.
8120 Join the individual commands using either "&" or ";" as the
8121 separator depending on the values of these trailing characters.
8122 At the end re-add the trailing "&". (Bug#10598)
8123
8124 * simple.el (async-shell-command): Sync the interactive spec with
8125 `shell-command'. Doc fix.
8126 (shell-command): Doc fix.
8127
8128 2012-07-17 Juri Linkov <juri@jurta.org>
8129
8130 * descr-text.el (describe-char): Fix format args. (Bug#10129)
8131
8132 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
8133
8134 Final renames and doc fixes for movement commands (bug#11899).
8135 * progmodes/python.el (python-nav-beginning-of-statement):
8136 Rename from python-nav-statement-start.
8137 (python-nav-end-of-statement): Rename from
8138 python-nav-statement-end.
8139 (python-nav-beginning-of-block): Rename from
8140 python-nav-block-start.
8141 (python-nav-end-of-block): Rename from python-nav-block-end.
8142
8143 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
8144
8145 * progmodes/python.el (python-shell-send-string-no-output):
8146 Allow accept-process-output to quit, keeping shell process ready for
8147 future interactions (Bug#11868).
8148
8149 2012-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
8150
8151 * emacs-lisp/cl-macs.el (cl-progv): Use a properly prefixed var name.
8152
8153 * emacs-lisp/elint.el (elint-find-args-in-code):
8154 Use help-function-arglist, so as to handle lexical byte-code.
8155
8156 * progmodes/sh-script.el (sh-syntax-propertize-function): Fix last
8157 change (bug#11826).
8158
8159 2012-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
8160
8161 * progmodes/cc-engine.el (c-forward-sws, c-backward-sws):
8162 Avoid spuriously marking the buffer as modified because of c-is-sws.
8163
8164 * progmodes/sh-script.el (sh-syntax-propertize-function): Mark "${#VAR"
8165 as not-a-comment (bug#11946).
8166
8167 * emacs-lisp/macroexp.el (macroexp-let2): Use more informative names
8168 for uninterned vars.
8169
8170 * xt-mouse.el (xterm-mouse-translate-1, xterm-mouse-event-read):
8171 Use read-event since we don't really want to read chars but bytes.
8172
8173 * textmodes/tex-mode.el (tex-font-lock-keywords-1): Highlight not only
8174 $$..$$ but also $..$ using regexps (bug#11953).
8175 Use tex-verbatim for \url and \path.
8176 (tex-font-lock-keywords): Define as defconst like the others.
8177 (tex-common-initialization): Don't use font-lock-syntax-table any more.
8178
8179 2012-07-16 René Kyllingstad <Rene@Kyllingstad.com> (tiny change)
8180
8181 * international/mule-cmds.el (ucs-insert): Make it an obsolete
8182 alias for insert-char.
8183
8184 2012-07-16 Fabián Ezequiel Gallina <fgallina@cuca>
8185
8186 * progmodes/python.el: Simplified imenu implementation.
8187 (python-nav-jump-to-defun): Remove command.
8188 (python-mode-map): Use `imenu' instead.
8189 (python-nav-list-defun-positions-cache)
8190 (python-imenu-include-defun-type, python-imenu-make-tree)
8191 (python-imenu-subtree-root-label, python-imenu-index-alist):
8192 Remove vars.
8193 (python-nav-list-defun-positions, python-nav-read-defun)
8194 (python-imenu-tree-assoc, python-imenu-make-element-tree)
8195 (python-imenu-make-tree, python-imenu-create-index):
8196 Remove functions.
8197 (python-mode): Update to interact with imenu by setting
8198 `imenu-extract-index-name-function' only.
8199
8200 2012-07-16 Fabián Ezequiel Gallina <fgallina@cuca>
8201
8202 * progmodes/python.el: Enhancements to navigation commands.
8203 (python-nav-backward-sentence)
8204 (python-nav-forward-sentence): Remove.
8205 (python-nav-backward-statement, python-nav-forward-statement)
8206 (python-nav-statement-start, python-nav-statement-end)
8207 (python-nav-backward-block, python-nav-forward-block)
8208 (python-nav-block-start, python-nav-block-end)
8209 (python-nav-forward-sexp-function)
8210 (python-info-current-line-comment-p)
8211 (python-info-current-line-empty-p): New functions.
8212 (python-indent-context): Use `python-nav-statement-start'.
8213
8214 2012-07-16 Michael Albinus <michael.albinus@gmx.de>
8215
8216 * eshell/em-ls.el (eshell/ls): Use `apply'.
8217
8218 * eshell/em-unix.el (eshell/su, eshell/sudo): Apply Tramp's ad-hoc
8219 multi-hops, instead of Tramp internals.
8220
8221 * vc/ediff.el (ediff-directories): Add trailing space to prompts.
8222
8223 * vc/ediff-diff.el (ediff-same-file-contents): Handle the case,
8224 when F1 and F2 are located on different hosts.
8225
8226 2012-07-14 Chong Yidong <cyd@gnu.org>
8227
8228 * xt-mouse.el: Implement extended mouse coordinates (Bug#10642).
8229 (xterm-mouse-translate): Move code into xterm-mouse-translate-1.
8230 (xterm-mouse-translate-extended, xterm-mouse-translate-1)
8231 (xterm-mouse--read-event-sequence-1000)
8232 (xterm-mouse--read-event-sequence-1006): New functions. For old
8233 mouse protocol, handle M-mouse-X events correctly.
8234 (xterm-mouse-event): New arg specifying mouse protocol.
8235 (turn-on-xterm-mouse-tracking-on-terminal)
8236 (turn-off-xterm-mouse-tracking-on-terminal): Send DEC 1006
8237 sequence to toggle extended coordinates on newer XTerms.
8238 This appears to be harmless on terminals which do not support this.
8239
8240 2012-07-14 Leo Liu <sdl.web@gmail.com>
8241
8242 Add fringe bitmap indicators for flymake. (Bug#11253)
8243 * progmodes/flymake.el (flymake-highlight-line): Use fringe bitmaps.
8244 (flymake-make-overlay): New arg BITMAP.
8245 (flymake-error-bitmap, flymake-warning-bitmap)
8246 (flymake-fringe-indicator-position): New user variables.
8247
8248 * fringe.el: New bitmap exclamation-mark.
8249
8250 2012-07-14 Jan Djärv <jan.h.d@swipnet.se>
8251
8252 * progmodes/cc-cmds.el (c-defun-name): Recognize Objective-C methods
8253 also (Bug#7879).
8254
8255 2012-07-14 Chong Yidong <cyd@gnu.org>
8256
8257 * electric.el (electric-pair-post-self-insert-function): Fix pair
8258 insertion in empty-region case (Bug#11520).
8259
8260 2012-07-14 Chong Yidong <cyd@gnu.org>
8261
8262 * bindings.el: Consolidate ctl-x-r-map bindings.
8263 Bind copy-rectangle-as-kill to C-x r w.
8264
8265 * rect.el, register.el: Move bindings to bindings.el.
8266
8267 2012-07-14 Reuben Thomas <rrt@sc3d.org>
8268
8269 * rect.el (copy-rectangle-as-kill): New command (Bug#739).
8270
8271 2012-07-13 Andreas Schwab <schwab@linux-m68k.org>
8272
8273 * emacs-lisp/cl.el (labels): Remove spurious quote. (Bug#11938)
8274
8275 2012-07-13 Juanma Barranquero <lekktu@gmail.com>
8276
8277 * bindings.el (top): Use `mapc' instead of `mapcar'.
8278
8279 * loadup.el (top): Remove bogus `if' choice (brought by 2008-06-21T01:38:39Z!monnier@iro.umontreal.ca).
8280
8281 2012-07-13 Michael Albinus <michael.albinus@gmx.de>
8282
8283 * progmodes/sql.el (sql-comint): Suppress the check for program on
8284 remote hosts. Reported by Francis Devereux <francis@devrx.org>.
8285 (Bug#11908)
8286
8287 2012-07-13 Chong Yidong <cyd@gnu.org>
8288
8289 * bindings.el: Assign a non-nil permanent-local property to
8290 per-buffer variables which lack a default value (Bug#11930).
8291
8292 * help-fns.el (describe-variable): In the "automatically becomes
8293 local" notice, take note of permanent-local variables.
8294
8295 2012-07-13 Chong Yidong <cyd@gnu.org>
8296
8297 * files.el (toggle-read-only): Doc fix and code cleanup. New arg
8298 to allow printing the message when called from Lisp.
8299
8300 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
8301 Remove toggle-read-only.
8302
8303 * bs.el (bs-toggle-readonly):
8304 * buff-menu.el (Buffer-menu-toggle-read-only):
8305 Remove with-no-warnings around toggle-read-only.
8306
8307 * ffap.el (ffap--toggle-read-only): Accept a list of buffers.
8308 Remove with-no-warnings around toggle-read-only.
8309 (ffap-read-only, ffap-read-only-other-window)
8310 (ffap-read-only-other-frame): Callers changed.
8311
8312 * help-mode.el: Don't require view package.
8313 (help-mode-finish): Set buffer-read-only instead of calling
8314 toggle-read-only.
8315
8316 * bindings.el (mode-line-toggle-read-only):
8317 * dired.el (dired-toggle-read-only):
8318 * ibuffer.el (ibuffer-do-toggle-read-only): Call toggle-read-only
8319 with non-nil second arg.
8320
8321 * emacs-lisp/eieio-custom.el (eieio-customize-object):
8322 * vc/ediff.el (ediff-set-read-only-in-buf-A): Set buffer-read-only
8323 directly.
8324
8325 2012-07-12 Eli Zaretskii <eliz@gnu.org>
8326
8327 * emacs-lisp/bytecomp.el (byte-recompile-directory): Use cl-incf,
8328 not incf.
8329
8330 2012-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
8331
8332 More CL cleanups and reduction of use of cl.el.
8333 * woman.el, winner.el, vc/vc-rcs.el, vc/vc-hooks.el, vc/vc-hg.el:
8334 * vc/vc-git.el, vc/vc-dir.el, vc/vc-bzr.el, vc/vc-annotate.el:
8335 * textmodes/tex-mode.el, textmodes/sgml-mode.el, tar-mode.el:
8336 * strokes.el, ses.el, server.el, progmodes/js.el, progmodes/gdb-mi.el:
8337 * progmodes/flymake.el, progmodes/ebrowse.el, progmodes/compile.el:
8338 * play/tetris.el, play/snake.el, play/pong.el, play/landmark.el:
8339 * play/hanoi.el, play/decipher.el, play/5x5.el, nxml/nxml-mode.el:
8340 * net/secrets.el, net/quickurl.el, midnight.el, mail/footnote.el:
8341 * image-dired.el, ibuffer.el, ibuf-macs.el, ibuf-ext.el, hexl.el:
8342 * eshell/eshell.el, eshell/esh-io.el, eshell/esh-ext.el:
8343 * eshell/esh-cmd.el, eshell/em-ls.el, eshell/em-hist.el:
8344 * eshell/em-cmpl.el, eshell/em-banner.el:
8345 * calendar/parse-time.el: Use cl-lib.
8346 * wid-browse.el, wdired.el, vc/vc.el, vc/vc-mtn.el, vc/vc-cvs.el:
8347 * vc/vc-arch.el, tree-widget.el, textmodes/texinfo.el:
8348 * textmodes/refill.el, textmodes/css-mode.el, term/tvi970.el:
8349 * term/ns-win.el, term.el, shell.el, ps-samp.el:
8350 * progmodes/perl-mode.el, progmodes/pascal.el, progmodes/gud.el:
8351 * progmodes/glasses.el, progmodes/etags.el, progmodes/cwarn.el:
8352 * play/gamegrid.el, play/bubbles.el, novice.el, notifications.el:
8353 * net/zeroconf.el, net/xesam.el, net/snmp-mode.el, net/mairix.el:
8354 * net/ldap.el, net/eudc.el, net/browse-url.el, man.el:
8355 * mail/mailheader.el, mail/feedmail.el: Don't use CL.
8356 * ibuf-ext.el (ibuffer-mark-old-buffers): Use float-time.
8357 * eshell/esh-opt.el (eshell-eval-using-options): Quote code with
8358 `lambda' rather than with `quote'.
8359 (eshell-do-opt): Adjust accordingly.
8360 (eshell-process-option): Simplify.
8361 * eshell/esh-var.el:
8362 * eshell/em-script.el: Require `esh-opt' for eshell-eval-using-options.
8363 * emacs-lisp/pcase.el (pcase--dontcare-upats, pcase--let*)
8364 (pcase--expand, pcase--u1): Rename pcase's internal `dontcare' pattern
8365 to `pcase--dontcare'.
8366 * emacs-lisp/cl.el (labels): Mark obsolete.
8367 (cl--letf, letf): Move to cl-lib.
8368 (cl--letf*, letf*): Remove.
8369 * emacs-lisp/cl-lib.el (cl-nth-value): Use defalias.
8370 * emacs-lisp/cl-macs.el (cl-dolist, cl-dotimes): Add indent rule.
8371 (cl-progv): Rewrite.
8372 (cl--letf, cl-letf): Move from cl.el.
8373 (cl-letf*): New macro.
8374 * emacs-lisp/cl-extra.el (cl--progv-before, cl--progv-after): Remove.
8375
8376 2012-07-11 Michael Albinus <michael.albinus@gmx.de>
8377
8378 * net/ange-ftp.el (ange-ftp-cf1): Update the files cache.
8379
8380 2012-07-11 Chong Yidong <cyd@gnu.org>
8381
8382 * vc/log-edit.el (log-edit-vc-backend): New variable.
8383 (log-edit): Doc fix.
8384
8385 * vc/vc-dispatcher.el (vc-log-edit): New args. Use PARAMS
8386 argument of log-edit to set up all local variables.
8387 (vc-start-logentry): New optional arg specifying VC backend.
8388
8389 * vc/vc.el (vc-checkin): Use it.
8390 (vc-deduce-fileset): Handle Log Edit buffers.
8391 (vc-diff): Make first argument optional too.
8392
8393 * vc/log-view.el (log-view-vc-fileset, log-view-vc-backend): Doc fix.
8394
8395 2012-07-10 Michael Albinus <michael.albinus@gmx.de>
8396
8397 * eshell/esh-ext.el (eshell-remote-command): Remove remote part of
8398 command, just in case. The function is not needed anymore.
8399 (eshell-external-command): Do not call `eshell-remote-command'.
8400
8401 2012-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
8402
8403 Reduce use of (require 'cl).
8404 * vc/smerge-mode.el, vc/pcvs.el, vc/pcvs-util.el, vc/pcvs-info.el:
8405 * vc/diff-mode.el, vc/cvs-status.el, uniquify.el, scroll-bar.el:
8406 * register.el, progmodes/sh-script.el, net/gnutls.el, net/dbus.el:
8407 * msb.el, mpc.el, minibuffer.el, international/ucs-normalize.el:
8408 * international/quail.el, info-xref.el, imenu.el, image-mode.el:
8409 * font-lock.el, filesets.el, edmacro.el, doc-view.el, bookmark.el:
8410 * battery.el, avoid.el, abbrev.el: Use cl-lib.
8411 * vc/pcvs-parse.el, vc/pcvs-defs.el, vc/log-view.el, vc/log-edit.el:
8412 * vc/diff.el, simple.el, pcomplete.el, lpr.el, comint.el, loadhist.el:
8413 * jit-lock.el, international/iso-ascii.el, info.el, frame.el, bs.el:
8414 * emulation/crisp.el, electric.el, dired.el, cus-dep.el, composite.el:
8415 * calculator.el, autorevert.el, apropos.el: Don't require CL.
8416 * emacs-lisp/bytecomp.el (byte-recompile-directory, display-call-tree)
8417 (byte-compile-unfold-bcf, byte-compile-check-variable):
8418 * emacs-lisp/byte-opt.el (byte-compile-trueconstp)
8419 (byte-compile-nilconstp):
8420 * emacs-lisp/autoload.el (make-autoload): Use pcase.
8421 * face-remap.el (text-scale-adjust): Simplify pcase patterns.
8422
8423 * emacs-lisp/gv.el (cond): Make it a valid place.
8424 (if): Simplify slightly.
8425
8426 * emacs-lisp/pcase.el (pcase): Accept self-quoting exps as "upatterns".
8427 (pcase--self-quoting-p): New function.
8428 (pcase--u1): Use it.
8429
8430 2012-07-10 Glenn Morris <rgm@gnu.org>
8431
8432 * emacs-lisp/authors.el (authors-fixed-entries):
8433 (authors-renamed-files-alist): Update for configure.in -> configure.ac.
8434
8435 2012-07-09 Paul Eggert <eggert@cs.ucla.edu>
8436
8437 Rename configure.in to configure.ac (Bug#11603).
8438 * emacs-lisp/authors.el (authors-canonical-file-name):
8439 * progmodes/autoconf.el (autoconf-mode):
8440 Prefer configure.ac to configure.in.
8441
8442 2012-07-08 Chong Yidong <cyd@gnu.org>
8443
8444 * mouse.el (mouse-drag-line): Rewrite the track-mouse loop.
8445 Implement the mouse-1-click-follows-link handling properly.
8446
8447 * info.el (Info-link-keymap): Use follow-link mechanism for
8448 header-line links (Bug#374).
8449
8450 * simple.el (deactivate-mark): Do not set the primary selection
8451 if another program has acquired it (Bug#11772).
8452
8453 2012-07-07 Kevin Ryde <user42@zip.com.au>
8454
8455 * woman.el (woman-strings): Fix double-quote handling (Bug#1151).
8456 (woman-decode-region): Replace escaped-escapes without destroying
8457 bold or underline (Bug#11552).
8458 (woman2-process-escapes): Handle nofill regions (Bug#11591).
8459
8460 2012-07-07 Chong Yidong <cyd@gnu.org>
8461
8462 * simple.el (yank-pop-change-selection): Doc fix (Bug#11361).
8463 (interprogram-cut-function, interprogram-paste-function):
8464 Mention that we typically mean the clipboard.
8465
8466 2012-07-06 Glenn Morris <rgm@gnu.org>
8467
8468 * kmacro.el (kmacro-call-macro): Restore repeat message. (Bug#11817)
8469
8470 * files.el (toggle-read-only): Restrict message to interactive use.
8471
8472 2012-07-06 Michael Albinus <michael.albinus@gmx.de>
8473
8474 * net/tramp.el (tramp-restricted-shell-hosts-alist): New defcustom.
8475
8476 * net/tramp-sh.el (tramp-maybe-open-connection): Handle it.
8477
8478 2012-07-06 Glenn Morris <rgm@gnu.org>
8479
8480 * Makefile.in (compile-one-process): Rename from "recompile".
8481
8482 * Makefile.in (bzr-update): "compile" is the same as "recompile
8483 autoloads", but parallelizable, so use that instead.
8484
8485 2012-07-06 Dmitry Gutov <dgutov@yandex.ru>
8486
8487 * window.el (quit-window): Always restore window height when
8488 it's saved in quit-restore parameter (Bug#11810).
8489
8490 2012-07-06 Glenn Morris <rgm@gnu.org>
8491
8492 * simple.el (kill-whole-line): Doc tweak.
8493
8494 2012-07-06 Eli Zaretskii <eliz@gnu.org>
8495
8496 * files.el (file-relative-name): Compare file names
8497 case-insensitively if on MS-Windows or MS-DOS, or if
8498 read-file-name-completion-ignore-case is non-nil. Don't use
8499 case-fold-search for this purpose. (Bug#11827)
8500
8501 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
8502
8503 * calendar/cal-dst.el (calendar-current-time-zone):
8504 Return calendar-current-time-zone-cache if non-nil.
8505
8506 2012-07-17 Masatake YAMATO <yamato@redhat.com>
8507 2012-07-06 Andreas Schwab <schwab@linux-m68k.org>
8508
8509 * calendar/cal-dst.el (calendar-current-time-zone):
8510 Return calendar-current-time-zone-cache if non-nil.
8511
8512 2012-07-06 Glenn Morris <rgm@gnu.org>
8513
8514 * Makefile.in (cvs-update): Remove old alias.
8515
8516 2012-07-05 Michael Albinus <michael.albinus@gmx.de>
8517
8518 Sync with Tramp 2.2.6-pre.
8519
8520 * net/tramp.el (tramp-drop-volume-letter): Provide an XEmacs
8521 compatible declaration.
8522
8523 * net/tramp-cmds.el (tramp-append-tramp-buffers):
8524 Protect `list-load-path-shadows' call.
8525
8526 * net/tramp-compat.el (top): Require packages, which aren't
8527 autoloaded anymore for XEmacs. Protect call of
8528 `tramp-file-name-handler' by `tramp-compat-funcall', pacifying the
8529 compiler. Do not require tramp-util.el and tramp-vc.el anymore,
8530 it hurts at least for SXEmacs.
8531 (tramp-compat-temporary-file-directory): In XEmacs, there is no
8532 standard-value for `temporary-file-directory'.
8533
8534 * net/tramp-sh.el (tramp-do-directory-files-and-attributes-with-stat):
8535 Redirect stderr to /dev/null.
8536 (tramp-sh-handle-write-region): uid and gid can be floats.
8537 Reported by Russell Sim <russell.sim@gmail.com>.
8538 (tramp-sh-handle-vc-registered): Hide errors.
8539 (tramp-vc-file-name-handler): Use dummy results for `process-file'
8540 and `start-file-process'.
8541 (tramp-maybe-open-connection): Check also whether `non-essential'
8542 is bound.
8543
8544 2012-07-04 Chong Yidong <cyd@gnu.org>
8545
8546 * xml.el (xml--parse-buffer): Use xml-syntax-table.
8547 (xml-parse-tag): Likewise, and avoid changing entity tables.
8548 (xml-syntax-table): Define from scratch, making sure not to give
8549 x2000 and other Unicode spaces whitespace syntax, since those are
8550 not spaces in XML.
8551 (xml-parse-fragment): Delete unused function.
8552 (xml-name-start-char-re, xml-name-char-re, xml-name-re)
8553 (xml-names-re, xml-nmtoken-re, xml-nmtokens-re, xml-char-ref-re)
8554 (xml-entity-ref, xml-pe-reference-re)
8555 (xml-reference-re,xml-att-value-re, xml-tokenized-type-re)
8556 (xml-notation-type-re, xml-enumeration-re, xml-enumerated-type-re)
8557 (xml-att-type-re, xml-default-decl-re, xml-att-def-re)
8558 (xml-entity-value-re): Use syntax references in regexps where
8559 possible; no need to define inside a let-binding.
8560 (xml-parse-dtd): Use xml-pe-reference-re.
8561 (xml-entity-or-char-ref-re): New defconst.
8562 (xml-parse-string, xml-substitute-special): Use it.
8563
8564 2012-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
8565
8566 * files.el (locate-dominating-file): Allow `name' to be a predicate.
8567 (find-file--read-only): New function.
8568 (find-file-read-only, find-file-read-only-other-window)
8569 (find-file-read-only-other-frame): Use it.
8570 (insert-file-contents-literally): Don't `fset'.
8571 (get-free-disk-space): Use locate-dominating-file.
8572
8573 * emacs-lisp/bytecomp.el (byte-compile): Don't signal an error if the
8574 function is already compiled.
8575
8576 * xml.el (xml-name-regexp): Remove, redundant. Use xml-name-re.
8577
8578 2012-07-03 Michael Albinus <michael.albinus@gmx.de>
8579
8580 * vc/ediff-diff.el (ediff-same-file-contents): Fix it for remote
8581 files on the same host.
8582
8583 2012-07-03 Andreas Schwab <schwab@linux-m68k.org>
8584
8585 * help-fns.el (describe-function-1): Only call
8586 help-fns--autoloaded-p when we have a file name. (Bug#11848)
8587
8588 2012-07-03 Chong Yidong <cyd@gnu.org>
8589
8590 * xml.el: Protect parser against XML bombs.
8591 (xml-entity-expansion-limit): New variable.
8592 (xml-parse-string, xml-substitute-special): Use it.
8593 (xml-parse-dtd): Avoid infloop if the DTD is not terminated.
8594
8595 2012-07-03 Glenn Morris <rgm@gnu.org>
8596
8597 * progmodes/bug-reference.el (bug-reference-bug-regexp):
8598 Allow linking to specific messages in debbugs reports (eg 123#5).
8599
8600 2012-07-02 Chong Yidong <cyd@gnu.org>
8601
8602 * xml.el: Fix entity and character reference expansion, allowing
8603 them to expand into markup as per XML spec.
8604 (xml-default-ns): New variable.
8605 (xml-entity-alist): Use XML spec definitions for lt and amp.
8606 (xml-parse-region): Make first two arguments optional.
8607 Discard text properties.
8608 (xml-parse-tag-1): New function, spun off from xml-parse-tag.
8609 All callers changed.
8610 (xml-parse-tag): Call xml-parse-tag-1. For backward
8611 compatibility, this function should not modify buffer contents.
8612 (xml-parse-tag-1): Fix opening-tag regexp.
8613 (xml-parse-string): Rewrite, handling entity and character
8614 references properly.
8615 (xml--entity-replacement-text): Signal an error if a parameter
8616 entity is undefined.
8617
8618 2012-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
8619
8620 * comint.el (comint-output-filter): Filter out repeated prompts.
8621
8622 * net/ange-ftp.el (ange-ftp-expand-file-name): Use ange-ftp-ftp-name
8623 and file-name-absolute-p.
8624 (ange-ftp-file-exists-p): Use ange-ftp-file-exists-p for
8625 internal calls.
8626
8627 2012-07-02 Paul Eggert <eggert@cs.ucla.edu>
8628
8629 Spelling fixes.
8630 * emacs-lisp/bytecomp.el (byte-compile--reify-function):
8631 Rename from byte-compile--refiy-function. All uses changed.
8632
8633 2012-07-01 Chong Yidong <cyd@gnu.org>
8634
8635 * xml.el (xml--parse-buffer): New function. Move most of
8636 xml-parse-region here.
8637 (xml-parse-region): Copy region into a temporary buffer, since
8638 parameter entity substitution requires changing buffer contents.
8639 Use xml--parse-buffer.
8640 (xml-parse-file): Use xml--parse-buffer.
8641 (xml-parse-dtd): Make parameter entity substitution work right.
8642 Use proper regexps for ELEMENT declarations (Bug#7172).
8643
8644 2012-06-30 Glenn Morris <rgm@gnu.org>
8645
8646 * comint.el (follow-comint-scroll-to-bottom): Fix declaration.
8647
8648 * net/secrets.el, net/tramp-gvfs.el, net/xesam.el, net/zeroconf.el:
8649 Remove outdated and unnecessary dbus declarations.
8650
8651 2012-06-30 Eli Zaretskii <eliz@gnu.org>
8652
8653 * emacs-lisp/timer.el (timer-until): Subtract results of
8654 float-time, instead of taking float-time of the result of
8655 time-subtract, since float-time signals an error for negative time
8656 arguments.
8657
8658 2012-06-30 Chong Yidong <cyd@gnu.org>
8659
8660 * xml.el (xml-*-re): Convert defvars into defconsts, and
8661 eval-and-compile them so eval-and-compile works on derivatives.
8662 (xml--entity-replacement-text): Use eval-and-comple.
8663
8664 2012-06-30 Michael Albinus <michael.albinus@gmx.de>
8665
8666 * vc/vc-git.el (vc-git-registered): Use cache property
8667 `git-registered'.
8668 (vc-git-mode-line-string): Call `vc-working-revision' instead of
8669 `vc-git-working-revision' in order to benefit from the cache.
8670 (vc-git-root): Use cache property `git-root'. (Bug#11757)
8671
8672 2012-06-30 Dmitry Gutov <dgutov@yandex.ru>
8673
8674 * vc/vc-hooks.el (vc-before-save): Clear cache if file has been
8675 removed (likely outside Emacs). (Bug#11757)
8676
8677 2012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
8678
8679 * emacs-lisp/cl-lib.el: Require macroexp.
8680
8681 2012-06-30 Chong Yidong <cyd@gnu.org>
8682
8683 * xml.el: Implement XML parameter entities.
8684 (xml-parameter-entity-alist): New variable.
8685 (xml-parse-region, xml-parse-fragment): Preserve previous values
8686 of xml-entity-alist and xml-parameter-entity-alist, so that
8687 repeated calls on different documents do not change them.
8688 (xml-parse-tag): Fix doctype regexp.
8689 (xml--entity-replacement-text): New function.
8690 (xml-parse-dtd): Use it. Don't handle system entities; doing that
8691 properly requires url retrieval which is unimplemented.
8692 (xml-escape-string): Doc fix.
8693
8694 2012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
8695
8696 * emacs-lisp/cl-lib.el (cl-pushnew): Use macroexp-let2.
8697
8698 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
8699
8700 * fringe.el (fringe-mode): Doc fix.
8701
8702 2012-06-29 Michael Albinus <michael.albinus@gmx.de>
8703
8704 * net/ange-ftp.el (ange-ftp-get-passwd): Throw if `non-essential'
8705 is non-nil.
8706 (ange-ftp-ignore-errors-if-non-essential): New defmacro.
8707 (ange-ftp-file-name-all-completions): Use it. (Bug#11808)
8708
8709 2012-06-29 Andreas Schwab <schwab@linux-m68k.org>
8710
8711 * calendar/cal-dst.el (calendar-current-time-zone):
8712 Return calendar-current-time-zone-cache if non-nil.
8713
8714 2012-06-29 Masatake YAMATO <yamato@redhat.com>
8715
8716 * progmodes/which-func.el (which-func-format):
8717 Add mouse-face. (Bug#11698)
8718
8719 2012-06-29 Leo Liu <sdl.web@gmail.com>
8720
8721 * textmodes/enriched.el (enriched-next-annotation): Use eq (Bug#11528).
8722
8723 2012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
8724
8725 * minibuffer.el (minibuffer-confirm-exit-commands):
8726 Add completion-at-point (bug#11725).
8727
8728 2012-06-29 Glenn Morris <rgm@gnu.org>
8729
8730 * progmodes/f90.el (f90-font-lock-keywords-2):
8731 Add some preprocessor elements. (Bug#10499)
8732
8733 2012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
8734
8735 * progmodes/cperl-mode.el (cperl-update-syntaxification):
8736 Use syntax-propertize (bug#11739).
8737
8738 2012-06-28 Juanma Barranquero <lekktu@gmail.com>
8739
8740 * emacs-lisp/cl-lib.el (cl-pushnew): Don't capture X (bug#11811).
8741
8742 2012-06-28 Julien Danjou <julien@danjou.info>
8743
8744 * term.el (term-handle-colors-array): Use a set of new faces to
8745 color the terminal. Also uses :inverse-video property.
8746 (term-default-fg-color): Set to nil by default, deprecate in favor
8747 of `term-face'.
8748 (term-default-bg-color): Set to nil by default, deprecate in favor
8749 of `term-face'.
8750 (term-current-face): Use `term-face' by default.
8751 (term-bold-attribute): Variable deleted.
8752
8753 2012-06-28 Glenn Morris <rgm@gnu.org>
8754
8755 * simple.el (completion-list-mode-finish):
8756 Don't use toggle-read-only. (Since completion-list-mode has
8757 a special mode-class, it wasn't doing anything extra anyway.)
8758
8759 2012-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
8760
8761 Make inlining of other-mode interpreted functions work (bug#11799).
8762 * emacs-lisp/bytecomp.el (byte-compile--refiy-function): New fun.
8763 (byte-compile): Use it to fix compilation of lexical-binding closures.
8764 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Compile the
8765 function, if needed.
8766
8767 2012-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
8768
8769 * help-mode.el (help-make-xrefs): Don't just withstand
8770 cyclic-variable-indirection but any error in documentation-property.
8771
8772 * loadup.el (purify-flag): Pre-grow the hash-table to reduce the
8773 memory use.
8774 * bindings.el (bindings--define-key): New function.
8775 * vc/vc-hooks.el, replace.el, menu-bar.el, international/mule-cmds.el:
8776 * emacs-lisp/lisp-mode.el, buff-menu.el, bookmark.el:
8777 * bindings.el: Use it to purecopy define-key bindings.
8778
8779 * textmodes/rst.el (rst-adornment-faces-alist): Avoid copy-list.
8780
8781 * emacs-lisp/cl.el (flet): Mark obsolete.
8782 * emacs-lisp/cl-macs.el (cl-flet*): New macro.
8783 * vc/vc-rcs.el (vc-rcs-annotate-command, vc-rcs-parse):
8784 * progmodes/js.el (js-c-fill-paragraph):
8785 * progmodes/ebrowse.el (ebrowse-switch-member-buffer-to-sibling-class)
8786 (ebrowse-switch-member-buffer-to-derived-class):
8787 * play/5x5.el (5x5-solver): Use cl-flet.
8788
8789 * emacs-lisp/cl.el: Use lexical-binding. Fix flet (bug#11780).
8790 (cl--symbol-function): New macro.
8791 (cl--letf, cl--letf*): Use it.
8792
8793 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
8794 Strip "toggle-" if any.
8795
8796 2012-06-27 Glenn Morris <rgm@gnu.org>
8797
8798 * info.el (Info-default-directory-list): Move here from paths.el.
8799 * paths.el: Remove file, which is now empty.
8800 * loadup.el: No longer load "paths".
8801
8802 * custom.el (custom-initialize-delay): Doc fix.
8803
8804 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
8805 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el:
8806 * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el:
8807 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el:
8808 * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el:
8809 * eshell/em-xtra.el: Replace eshell-defgroup with "(progn (defgroup".
8810 * eshell/eshell.el (eshell-defgroup): Remove alias.
8811
8812 2012-06-27 Chong Yidong <cyd@gnu.org>
8813
8814 * help.el (help-enable-auto-load): New variable.
8815
8816 * help-fns.el (help-fns--autoloaded-p): New function.
8817 (describe-function-1): Refer to a function as "autoloaded" if it
8818 was autoloaded at any time in the past. Perform autoloading if
8819 help-enable-auto-load is non-nil.
8820
8821 2012-06-26 Eli Zaretskii <eliz@gnu.org>
8822
8823 * makefile.w32-in (compile, compile-always): Depend on
8824 update-subdirs, not on subdirs.el. Otherwise, several different
8825 sub-targets of 'bootstrap' running in parallel could
8826 simultaneously write to subdirs.el, producing a garbled file.
8827
8828 2012-06-26 Sam Steingold <sds@gnu.org>
8829
8830 * files.el (file-name-base): New convenience function.
8831 * autoinsert.el, cus-dep.el, doc-view.el, image-dired.el:
8832 * woman.el, eshell/esh-cmd.el, progmodes/ada-xref.el:
8833 * progmodes/cc-defs.el, progmodes/cperl-mode.el:
8834 * progmodes/flymake.el, progmodes/gud.el, progmodes/idlwave.el:
8835 * textmodes/ispell.el, textmodes/reftex-ref.el:
8836 * textmodes/tex-mode.el: Use it.
8837 Did not touch cedet and org because they are maintained elsewhere.
8838
8839 2012-06-26 Martin Rudalics <rudalics@gmx.at>
8840
8841 * calendar/calendar.el (calendar-exit): Don't try to delete or
8842 iconify last frame. See:
8843 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00372.html
8844
8845 2012-06-25 Jim Diamond <Jim.Diamond@AcadiaU.ca> (tiny change)
8846
8847 * server.el (server-process-filter): Remember dir in the
8848 process's `server-client-directory' properties.
8849
8850 2012-06-24 Chong Yidong <cyd@gnu.org>
8851
8852 * xml.el (xml-parse-tag): Correctly handle comment embedded in
8853 non-tag text.
8854
8855 2012-06-23 Juanma Barranquero <lekktu@gmail.com>
8856
8857 * makefile.w32-in (COMPILE_FIRST): Synch with changes in 2012-06-22T21:24:54Z!monnier@iro.umontreal.ca.
8858
8859 2012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
8860
8861 * help-fns.el (describe-variable): Don't croak when doc is not found.
8862 * vc/pcvs.el (cvs-retrieve-revision): Avoid toggle-read-only.
8863 * menu-bar.el (menu-bar-line-wrapping-menu): Purecopy a tiny bit more.
8864 * emacs-lisp/syntax.el (syntax-ppss): Simplify with new `if' place.
8865 * emacs-lisp/smie.el (smie-next-sexp): CSE.
8866 * emacs-lisp/macroexp.el (macroexp-let2): Fix edebug spec and avoid
8867 ((lambda ..) ..).
8868 * emacs-lisp/eieio.el (eieio-oref, slot-value): Use simpler defsetf.
8869
8870 2012-06-23 Chong Yidong <cyd@gnu.org>
8871
8872 * info.el (Info-mouse-follow-link): Accept symbol values of
8873 link-args. Select window; suggested by Gerhard Kahl (Bug#11672).
8874 (Info-fontify-node): Use Info-link-keymap for all navigation
8875 buttons, with link-args property to perform the desired action.
8876 (Info-link-keymap): Doc fix.
8877 (Info-next-link-keymap, Info-prev-link-keymap)
8878 (Info-up-link-keymap): Delete now-unused keymaps.
8879
8880 2012-06-23 Chong Yidong <cyd@gnu.org>
8881
8882 * mouse.el (mouse-drag-track): Deactivate the mark before popping.
8883
8884 * progmodes/python.el (python-skeleton-define): Mark abbrevs as
8885 system abbrevs.
8886
8887 * ansi-color.el (ansi-color-apply-on-region): Doc fix.
8888
8889 2012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
8890
8891 * emacs-lisp/cl-macs.el (cl--make-usage-args): Handle improper lists
8892 (bug#11719).
8893
8894 * minibuffer.el (completion--twq-try): Try to fail more gracefully when
8895 the requote function doesn't work properly (bug#11714).
8896
8897 2012-06-23 Glenn Morris <rgm@gnu.org>
8898
8899 * pcmpl-rpm.el (pcmpl-rpm-packages): Give status messages.
8900
8901 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
8902
8903 Further GV/CL cleanups.
8904 * emacs-lisp/gv.el (gv-get): Autoload functions to find their
8905 gv-expander.
8906 (gv--defun-declaration): New function.
8907 (defun-declarations-alist): Use it.
8908 (gv-define-modify-macro, gv-pushnew!, gv-inc!, gv-dec!): Remove.
8909 (gv-place): Autoload.
8910 * emacs-lisp/cl.el (cl--dotimes, cl--dolist): Remember subr.el's
8911 original definition of dotimes and dolist.
8912 * emacs-lisp/cl-macs.el (cl-expr-access-order): Remove unused.
8913 (cl-dolist, cl-dotimes): Use `dolist' and `dotimes'.
8914 * emacs-lisp/cl-lib.el: Move gv handlers from cl-macs to here.
8915 (cl-fifth, cl-sixth, cl-seventh, cl-eighth)
8916 (cl-ninth, cl-tenth): Move gv handler to the function's definition.
8917 * emacs-lisp/cl-extra.el (cl-subseq, cl-get, cl-getf): Move gv handler
8918 to the function's definition.
8919 * Makefile.in (COMPILE_FIRST): Re-order to speed it up by about 50%.
8920 * window.el:
8921 * files.el:
8922 * faces.el:
8923 * env.el: Don't use CL.
8924
8925 2012-06-22 Paul Eggert <eggert@cs.ucla.edu>
8926
8927 Support higher-resolution time stamps (Bug#9000).
8928
8929 * calendar/time-date.el (with-decoded-time-value): New arg
8930 PICO-SYMBOL in VARLIST. It's optional, for backward compatibility.
8931 (encode-time-value): New optional arg PICO. New type 3.
8932 (time-to-seconds) [!float-time]: Support the new picoseconds
8933 component if it's used.
8934 (seconds-to-time, time-subtract, time-add):
8935 Support ps-resolution time stamps as well.
8936
8937 * emacs-lisp/timer.el (timer): New component psecs. All uses changed.
8938 (timerp): Timer vectors now have length 9, not 8.
8939 (timer--time): Support new-style (4-part) time stamps.
8940 (timer-next-integral-multiple-of-time): Time stamps now have
8941 picosecond resolution, so take a bit more care about rounding.
8942 (timer-relative-time, timer-inc-time): New optional arg psecs.
8943 (timer-set-time-with-usecs): Set psecs to 0.
8944 (timer--activate): Check psecs component, too.
8945
8946 * proced.el (proced-time-lessp): Support ps-resolution stamps.
8947
8948 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
8949
8950 * icomplete.el (icomplete-minibuffer-setup, icomplete-completions):
8951 Move the non-essential binding to the post/pre-command-hook where it is
8952 more obviously correct.
8953
8954 * subr.el (read-passwd): Don't use a history at all.
8955 * savehist.el (savehist-save): Remove password saved accidentally
8956 because of the above bug.
8957
8958 2012-06-22 Bastien Guerry <bzg@gnu.org>
8959
8960 * files.el (toggle-read-only): Display a message telling whether
8961 the buffer is read-only or not (bug#11726).
8962
8963 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
8964
8965 * emacs-lisp/gv.el: New file.
8966 * subr.el (push, pop): Extend to generalized variables.
8967 * loadup.el (macroexp): Unload if preloaded and uncompiled (bug#11657).
8968 * emacs-lisp/cl-lib.el (cl-pop, cl-push, cl--set-nthcdr): Remove.
8969 * emacs-lisp/cl-macs.el: Require gv. Use gv-define-setter,
8970 gv-define-simple-setter, and gv-define-expander.
8971 Remove setf-methods defined in gv. Rename cl-setf -> setf.
8972 (cl-setf, cl-do-pop, cl-get-setf-method): Remove.
8973 (cl-letf, cl-letf*, cl-define-modify-macro, cl-defsetf)
8974 (cl-define-setf-expander, cl-struct-setf-expander): Move to cl.el.
8975 (cl-remf, cl-shiftf, cl-rotatef, cl-callf, cl-callf2): Rewrite with
8976 gv-letplace.
8977 (cl-defstruct): Don't define setf-method any more.
8978 * emacs-lisp/cl.el (flet): Don't autoload.
8979 (cl--letf, letf, cl--letf*, letf*, cl--gv-adapt)
8980 (define-setf-expander, defsetf, define-modify-macro)
8981 (cl-struct-setf-expander): Move from cl-lib.el.
8982 * emacs-lisp/syntax.el:
8983 * emacs-lisp/ewoc.el:
8984 * emacs-lisp/smie.el:
8985 * emacs-lisp/cconv.el:
8986 * emacs-lisp/timer.el: Rename cl-setf -> setf, cl-push -> push.
8987 (timer--time): Use gv-define-simple-setter.
8988 * emacs-lisp/macroexp.el (macroexp-let2): Rename from macroexp-let²
8989 to avoid coding-system problems in subr.el. Adjust all users.
8990 (macroexp--maxsize, macroexp-small-p): New functions.
8991 * emacs-lisp/bytecomp.el (byte-compile-file): Don't use cl-letf.
8992 * scroll-bar.el (scroll-bar-mode):
8993 * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
8994 (normal-erase-is-backspace-mode): Don't use the `eq' place.
8995 * winner.el (winner-configuration, winner-make-point-alist)
8996 (winner-set-conf, winner-get-point, winner-set): Don't abuse letf.
8997 * files.el (locate-file-completion-table): Avoid list*.
8998
8999 2012-06-22 Chong Yidong <cyd@gnu.org>
9000
9001 * dired-aux.el (dired-do-create-files): Doc fix (Bug#11327).
9002 (dired-create-files): Doc fix (Bug#11329).
9003 (dired-do-copy): Doc fix (Bug#11334).
9004 (dired-mark-read-string): Doc fix (Bug#11553).
9005
9006 * dired.el (dired-recursive-copies, dired-recursive-deletes):
9007 Doc fix (Bug#11326).
9008 (dired-make-relative): Doc fix (Bug#11332). Remove unused arg.
9009 (dired-dwim-target): Doc fix.
9010
9011 * wdired.el (wdired-mode): Doc fix.
9012
9013 2012-06-22 Glenn Morris <rgm@gnu.org>
9014
9015 * pcmpl-rpm.el (pcmpl-rpm-cache): New option.
9016 (pcmpl-rpm-cache-stamp-file): New constant.
9017 (pcmpl-rpm-cache-time, pcmpl-rpm-packages): New variables.
9018 (pcmpl-rpm-packages): Optionally cache list of packages.
9019
9020 * pcmpl-rpm.el (pcmpl-rpm): New group.
9021 (pcmpl-rpm-query-options): New option.
9022 (pcmpl-rpm-packages): No need to inline it.
9023 Use pcmpl-rpm-query-options.
9024
9025 * calendar/calendar.el (calendar-in-read-only-buffer):
9026 Avoid some needless mode changes.
9027
9028 2012-06-21 Chong Yidong <cyd@gnu.org>
9029
9030 * desktop.el (desktop-read): Don't prompt if daemon (Bug#11674).
9031 (desktop-path): Remove . from the default value (Bug#10977).
9032 (desktop-read): Use user-emacs-directory if desktop-path is nil.
9033
9034 2012-06-20 Chong Yidong <cyd@gnu.org>
9035
9036 * term.el (term-send-raw-meta): Make C-M-<char> keys work (Bug#8172).
9037
9038 2012-06-20 David Röthlisberger <david@rothlis.net> (tiny change)
9039
9040 * ido.el (ido-switch-buffer, ido-find-file): Fix up doc of C-j
9041 (bug#11201).
9042
9043 2012-06-20 Chong Yidong <cyd@gnu.org>
9044
9045 * term.el (term-window-width): Handle the case of a missing right
9046 fringe (Bug#8837).
9047 (term-check-size): Use window-text-height (Bug#5445).
9048 (term-mode): Use define-derived-mode. Minor cleanups.
9049 Set font-lock-defaults (Bug#7692).
9050 (term-move-columns, term-insert-char, term-emulate-terminal)
9051 (term-erase-in-line, term-insert-spaces): Use font-lock-face.
9052
9053 2012-06-20 Michael Albinus <michael.albinus@gmx.de>
9054
9055 * net/ange-ftp.el (ange-ftp-get-passwd):
9056 Bind `enable-recursive-minibuffers'.
9057 (ange-ftp-get-process): Throw if `non-essential' is non-nil.
9058
9059 2012-06-19 David Röthlisberger <david@rothlis.net> (tiny change)
9060
9061 * ido.el (ido-find-file): Mention C-d binding in docstring (bug#11244).
9062
9063 2012-06-19 Glenn Morris <rgm@gnu.org>
9064
9065 * progmodes/python.el (python-mode): Derive from prog-mode.
9066
9067 2012-06-19 Kevin Gallagher <Kevin.Gallagher@boeing.com>
9068
9069 * emulation/edt.el (edt-default-menu-bar-update-buffers)
9070 (edt-user-menu-bar-update-buffers): New functions.
9071 (edt-default-emulation-setup, edt-user-emulation-setup): Use them.
9072
9073 2012-06-19 Chong Yidong <cyd@gnu.org>
9074
9075 * subr.el (with-selected-window): Preserve the selected window's
9076 terminal's top-frame (Bug#4702).
9077
9078 * window.el (save-selected-window): Likewise.
9079
9080 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
9081
9082 * progmodes/python.el (python-rx-constituents): Move backquote.
9083 (python-skeleton-define, python-define-auxiliary-skeleton):
9084 Use `declare'.
9085
9086 2012-06-18 Michael Albinus <michael.albinus@gmx.de>
9087
9088 * minibuffer.el (read-file-name-default): Revert the patch from
9089 2012-06-17.
9090
9091 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
9092
9093 * emacs-lisp/pcase.el (pcase--expand): Warn for unused pattern.
9094 (pcase--u1, pcase--q1): Don't use apply-partially.
9095
9096 2012-06-18 Glenn Morris <rgm@gnu.org>
9097
9098 * progmodes/python.el (python-proc, python-buffer)
9099 (python-send-receive, python-send-string): Fix obsolete versions.
9100
9101 2012-06-18 Martin Rudalics <rudalics@gmx.at>
9102
9103 * window.el (special-display-p): Completely remove stringp
9104 check. Suggested by Andreas Schwab <schwab@linux-m68k.org>.
9105
9106 2012-06-17 Michael Albinus <michael.albinus@gmx.de>
9107
9108 * minibuffer.el (read-file-name-default): Bind `non-essential' to `t'.
9109
9110 * net/tramp.el (tramp-file-name-handler): Catch 'non-essential.
9111
9112 * net/ange-ftp.el (ange-ftp-gwp-start, ange-ftp-start-process):
9113 * net/tramp-sh.el (tramp-maybe-open-connection):
9114 Throw if `non-essential' is non-nil.
9115
9116 2012-06-17 Martin Rudalics <rudalics@gmx.at>
9117
9118 * window.el (special-display-p): Signal an error if BUFFER-NAME
9119 is not a string (Bug#11713).
9120
9121 2012-06-17 Paul Eggert <eggert@cs.ucla.edu>
9122
9123 * progmodes/python.el (python-info-beginning-of-backslash):
9124 Rename from python-info-beginning-of-backlash, as a spelling fix.
9125
9126 2012-06-17 Chong Yidong <cyd@gnu.org>
9127
9128 * term.el (term-emulate-terminal): If term-check-size is called,
9129 move point to the process mark without resetting point (Bug#4635).
9130
9131 2012-06-17 Glenn Morris <rgm@gnu.org>
9132
9133 * international/mule-cmds.el (mule-menu-keymap)
9134 (set-language-environment, set-locale-environment): Doc tweaks.
9135
9136 2012-06-16 Aurelien Aptel <aurelien.aptel@gmail.com>
9137
9138 * cus-face.el (custom-face-attributes): Add wave-style underline
9139 attribute.
9140 * faces.el (set-face-attribute): Update docstring to describe
9141 wave-style underline attribute.
9142
9143 2012-06-16 Chong Yidong <cyd@gnu.org>
9144
9145 * term/xterm.el (terminal-init-xterm): Discard input before
9146 querying background mode (Bug#10959).
9147
9148 2012-06-16 Stefan Merten <smerten@oekonux.de>
9149
9150 * textmodes/rst.el: Added and corrected some comments.
9151 (rst-re-alist-def): Improve symbol syntax.
9152 (rst-mode-syntax-table): Correct syntax entries.
9153 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
9154 (rst-official-version, rst-official-cvs-rev): Update version
9155 information.
9156
9157 2012-06-15 Juanma Barranquero <lekktu@gmail.com>
9158
9159 * makefile.w32-in (COMPILE_FIRST): Synch with makefile.in changes
9160 in 2008-06-22T13:57:28Z!monnier@iro.umontreal.ca.
9161
9162 2012-06-15 Fabián Ezequiel Gallina <fgallina@cuca>
9163
9164 * progmodes/python.el: New python.el merge.
9165 (python-guess-indent): Obsolete var.
9166 (python-indent-guess-indent-offset): New defcustom.
9167 (python-indent): Obsolete var.
9168 (python-indent-offset): New defcustom.
9169 (python-python-command, python-jython-command): Delete var.
9170 (python-shell-interpreter): New defcustom.
9171 (python-pdbtrack-do-tracking-p): Delete var.
9172 (python-pdbtrack-activate): New defcustom.
9173 (python-use-skeletons): Obsolete var.
9174 (python-skeleton-autoinsert): New defcustom.
9175 (inferior-python-filter-regexp, python-continuation-offset)
9176 (python-honour-comment-indentation, python-indent-string-contents)
9177 (python-jython-packages, python-mode-hook)
9178 (python-pdbtrack-minor-mode-string, python-remove-cwd-from-path)
9179 (python-shell-prompt-alist)
9180 (python-source-modes): Delete defcustoms.
9181 (python-check-buffer-name, python-eldoc-setup-code)
9182 (python-eldoc-string-code, python-ffap-setup-code)
9183 (python-ffap-string-code, python-fill-comment-function)
9184 (python-fill-decorator-function, python-fill-paren-function)
9185 (python-fill-string-function, python-imenu-include-defun-type)
9186 (python-imenu-make-tree, python-imenu-subtree-root-label)
9187 (python-pdbtrack-stacktrace-info-regexp, python-shell-buffer-name)
9188 (python-shell-compilation-regexp-alist)
9189 (python-shell-completion-module-string-code)
9190 (python-shell-completion-pdb-string-code)
9191 (python-shell-completion-setup-code)
9192 (python-shell-completion-string-code)
9193 (python-shell-enable-font-lock, python-shell-exec-path)
9194 (python-shell-extra-pythonpaths)
9195 (python-shell-internal-buffer-name, python-shell-interpreter-args)
9196 (python-shell-process-environment)
9197 (python-shell-prompt-block-regexp)
9198 (python-shell-prompt-output-regexp)
9199 (python-shell-prompt-pdb-regexp, python-shell-prompt-regexp)
9200 (python-shell-send-setup-max-wait, python-shell-setup-codes)
9201 (python-shell-virtualenv-path): New defcustoms.
9202 (brm-menu, eldoc-documentation-function, inferior-python-mode-map)
9203 (inferior-python-mode-syntax-table, python--prompt-regexp)
9204 (python-buffer, python-command python-python-command)
9205 (python-default-template, python-imports, python-indent-index)
9206 (python-indent-list, python-indent-list-length)
9207 (python-mode-running, python-pdbtrack-is-tracking-p)
9208 (python-preoutput-continuation, python-preoutput-leftover)
9209 (python-preoutput-result, python-preoutput-skip-next-prompt)
9210 (python-prev-dir/file, python-recursing)
9211 (python-saved-check-command, python-version-checked)
9212 (python-which-func-length-limit)
9213 (view-return-to-alist): Delete vars.
9214 (python-check-custom-command, python-dotty-syntax-table)
9215 (python-imenu-index-alist, python-indent-current-level)
9216 (python-indent-dedenters, python-indent-levels)
9217 (python-nav-beginning-of-defun-regexp)
9218 (python-nav-list-defun-positions-cache)
9219 (python-pdbtrack-buffers-to-kill, python-pdbtrack-tracked-buffer)
9220 (python-shell-internal-buffer)
9221 (python-skeleton-available): New vars.
9222 (def-python-skeleton): Delete macro.
9223 (python-skeleton-define): New macro.
9224 (python-define-auxiliary-skeleton, python-rx): New macros.
9225 (python-insert-class): Delete command.
9226 (python-skeleton-class): New command.
9227 (python-insert-def): Delete command.
9228 (python-skeleton-def): New command.
9229 (python-insert-for): Delete command.
9230 (python-skeleton-for): New command.
9231 (python-insert-if): Delete command.
9232 (python-skeleton-if): New command.
9233 (python-insert-try/except, python-insert-try/finally): Delete commands.
9234 (python-skeleton-try): New command.
9235 (python-insert-while): Delete command.
9236 (python-skeleton-while): New command.
9237 (python-backspace): Delete command.
9238 (python-indent-dedent-line-backspace): New command.
9239 (python-electric-colon): Delete command.
9240 (python-indent-electric-colon): New command.
9241 (python-guess-indent): Delete command.
9242 (python-indent-guess-indent-offset): New command.
9243 (python-shift-left): Delete command.
9244 (python-indent-shift-left): New command.
9245 (python-shift-right): Delete command.
9246 (python-indent-shift-right): New command.
9247 (python-find-function): Delete command.
9248 (python-nav-jump-to-defun): New command.
9249 (python-next-statement): Delete command.
9250 (python-nav-forward-sentence): New command.
9251 (python-previous-statement): Delete command.
9252 (python-nav-backward-sentence): New command.
9253 (python-fill-paragraph): Delete command.
9254 (python-fill-paragraph-function): New command.
9255 (python-send-buffer): Delete command.
9256 (python-shell-send-buffer): New command.
9257 (python-send-defun): Delete command.
9258 (python-shell-send-defun): New command.
9259 (python-send-region, python-send-region-and-go): Delete commands.
9260 (python-shell-send-region)
9261 (python-shell-switch-to-shell): New commands.
9262 (python-send-string): Delete command.
9263 (python-shell-send-string): New command.
9264 (python-switch-to-python): Delete command.
9265 (python-shell-switch-to-shell): New command.
9266 (python-describe-symbol): Delete command.
9267 (python-eldoc-at-point): New command.
9268 (python--set-prompt-regexp, python-args-to-list)
9269 (python-after-info-look, python-check-version)
9270 (python-check-comint-prompt, python-find-imports)
9271 (python-execute-file, turn-off-pdbtrack, turn-on-pdbtrack)
9272 (python-unload-function, python-expand-template)
9273 (python-maybe-jython, python-preoutput-filter)
9274 (python-pdbtrack-get-source-buffer)
9275 (python-pdbtrack-grub-for-buffer, python-pdbtrack-overlay-arrow)
9276 (python-pdbtrack-toggle-stack-tracking)
9277 (python-pdbtrack-track-stack-file, python-initial-text)
9278 (python-first-word, python-comment-line-p, python-send-command)
9279 (python-setup-brm, python-sentinel, python-set-proc)
9280 (python-skip-out, python-input-filter, python-outdent-p)
9281 (python-outline-level, python-backslash-continuation-line-p)
9282 (python-end-of-block, python-end-of-statement, python-mark-block)
9283 (python-beginning-of-block, python-beginning-of-statement)
9284 (python-blank-line-p, python-beginning-of-string)
9285 (python-open-block-statement-p): Delete functions.
9286 (python-indent-line, python-indent-line-1): Delete functions.
9287 (python-indent-line): New function.
9288 (python-indentation-levels): Delete function.
9289 (python-indent-calculate-levels): New function.
9290 (python-proc): Delete function.
9291 (python-shell-get-process): New function.
9292 (python-send-receive): Delete function.
9293 (python-shell-send-string-no-output): New function.
9294 (python-module-path): Delete function.
9295 (python-ffap-module-path): New function.
9296 (python-completion-at-point)
9297 (python-symbol-completions): Delete functions.
9298 (python-completion-complete-at-point): New function.
9299 (python-load-file): Delete function.
9300 (python-shell-send-file): New function.
9301 (python-calculate-indentation): Delete function.
9302 (python-indent-calculate-indentation): New function.
9303 (python-skip-comments/blanks): Delete function.
9304 (python-util-forward-comment): New function.
9305 (python-continuation-line-p): Delete function.
9306 (python-info-continuation-line-p): New function.
9307 (python-which-func, python-current-defun): Delete function.
9308 (python-info-current-defun): New function.
9309 (python-beginning-of-defun): Delete function.
9310 (python-nav-beginning-of-defun): New function.
9311 (python-close-block-statement-p)
9312 (python-block-end-p): Delete function.
9313 (python-info-closing-block): New function.
9314 (python-comint-output-filter-function)
9315 (python-eldoc--get-doc-at-point, python-end-of-defun-function)
9316 (python-fill-comment, python-fill-decorator, python-fill-paren)
9317 (python-fill-string, python-imenu-make-element-tree)
9318 (python-imenu-make-tree, python-imenu-tree-assoc)
9319 (python-indent-context, python-indent-dedent-line)
9320 (python-indent-line-function)
9321 (python-indent-post-self-insert-function)
9322 (python-indent-toggle-levels)
9323 (python-info-assignment-continuation-line-p)
9324 (python-info-beginning-of-backlash)
9325 (python-info-block-continuation-line-p)
9326 (python-info-closing-block-message)
9327 (python-info-line-ends-backslash-p)
9328 (python-info-looking-at-beginning-of-defun)
9329 (python-info-ppss-context, python-info-ppss-context-type)
9330 (python-nav-list-defun-positions, python-nav-read-defun)
9331 (python-nav-sentence-end, python-nav-sentence-start)
9332 (python-pdbtrack-comint-output-filter-function)
9333 (python-pdbtrack-set-tracked-buffer)
9334 (python-shell-calculate-exec-path)
9335 (python-shell-calculate-process-environment)
9336 (python-shell-completion--do-completion-at-point)
9337 (python-shell-completion--get-completions)
9338 (python-shell-completion-complete-at-point)
9339 (python-shell-completion-complete-or-indent)
9340 (python-shell-get-or-create-process)
9341 (python-shell-get-process-name)
9342 (python-shell-internal-get-or-create-process)
9343 (python-shell-internal-get-process-name)
9344 (python-shell-internal-send-string, python-shell-make-comint)
9345 (python-shell-parse-command, python-shell-send-setup-code)
9346 (python-skeleton-add-menu-items)
9347 (python-util-clone-local-variables, python-util-position)
9348 (run-python-internal, python-indentation-levels)
9349 (python-nav-beginning-of-defun)
9350 (python-completion-complete-at-point): New functions.
9351 (run-python): Change arguments. New API requirements.
9352
9353 2012-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
9354
9355 * emacs-lisp/cl-lib.el (cl--defsubst-expand): Autoload inliner
9356 (bug#11649).
9357
9358 * emacs-lisp/macroexp.el (macroexp--compiler-macro): New function.
9359 (macroexp--expand-all): Use it.
9360
9361 * emacs-lisp/cl-macs.el (cl--transform-function-property): Remove.
9362 (cl-define-setf-expander, cl-deftype, cl-define-compiler-macro):
9363 Use `cl-function' instead.
9364
9365 2012-06-14 Juanma Barranquero <lekktu@gmail.com>
9366
9367 * makefile.w32-in (COMPILE_FIRST): Remove subr.el.
9368 Suggested by Stefan Monnier while discussing bug#11657.
9369
9370 2012-06-14 Sam Steingold <sds@gnu.org>
9371
9372 * files.el (abort-if-file-too-large): Use `file-size-human-readable'.
9373
9374 2012-06-14 Andreas Schwab <schwab@linux-m68k.org>
9375
9376 * play/doctor.el (doctor-doc): Remove parameter and use
9377 doctor-sent instead of sent.
9378 (doctor-read-print): Use doctor-sent instead of sent. (Bug#11708)
9379
9380 2012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
9381
9382 * files.el: Require cl-lib.
9383 (file-name-non-special): Replace case -> cl-case.
9384
9385 * emacs-lisp/cl-macs.el (cl-defstruct): Don't add print-func.
9386
9387 * emacs-lisp/edebug.el (edebug-read-function): Remove old incorrect
9388 mapping from #' to function*.
9389
9390 2012-06-13 Chong Yidong <cyd@gnu.org>
9391
9392 * mouse.el (mouse-drag-track): Do not set the mark if the user
9393 releases the mouse without selecting anything (Bug#11588).
9394
9395 2012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
9396
9397 * textmodes/tex-mode.el (latex-indent): Recognize tex-verbatim at EOB
9398 as well (bug#11646).
9399
9400 * loadup.el: Count byte-code functions as well.
9401
9402 * emacs-lisp/byte-opt.el (featurep): Move compiler-macro...
9403 * emacs-lisp/bytecomp.el (featurep): ...here (bug#11692).
9404
9405 * emacs-lisp/autoload.el (make-autoload): Accept nil doc-string-elt
9406 (bug#11649). Add cl-defun and cl-defmacro.
9407
9408 2012-06-13 Drew Adams <drew.adams@oracle.com>
9409
9410 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
9411 Fix last change.
9412
9413 2012-06-13 Michael Albinus <michael.albinus@gmx.de>
9414
9415 * net/dbus.el (dbus-call-method): Use timeout for `read-event'.
9416 Otherwise, it blocks in batch mode.
9417
9418 2012-06-13 Juanma Barranquero <lekktu@gmail.com>
9419
9420 * help-mode.el (bookmark-make-record-default): Declare.
9421
9422 2012-06-13 Chong Yidong <cyd@gnu.org>
9423
9424 * emacs-lisp/package.el (list-packages): Compute a list of
9425 packages that are newly-available since the last list-packages
9426 invocation.
9427 (package-menu--new-package-list): New var.
9428 (package-menu--generate, package-menu--print-info)
9429 (package-menu--status-predicate, package-menu-mark-install):
9430 Handle new status label "new".
9431
9432 2012-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
9433
9434 * emacs-lisp/cl-macs.el (cl-remf): Fix error in recent
9435 conversion to backquotes.
9436
9437 2012-06-12 Chong Yidong <cyd@gnu.org>
9438
9439 * emacs-lisp/edebug.el (edebug-inhibit-emacs-lisp-mode-bindings):
9440 Rename from gud-inhibit-global-bindings.
9441
9442 * emacs-lisp/eieio.el (eieio-pre-method-execution-hooks): Doc fix.
9443
9444 * nxml/nxml-glyph.el (nxml-glyph-set-functions): Rename abnormal
9445 hook from nxml-glyph-set-hook.
9446
9447 * progmodes/cwarn.el (cwarn-mode): Remove redundant variable
9448 declaration.
9449
9450 * progmodes/pascal.el (pascal-toggle-completions): Doc fix.
9451
9452 * textmodes/bibtex.el (bibtex-string-file-path, bibtex-file-path):
9453 Convert to defcustom.
9454
9455 2012-06-12 Drew Adams <drew.adams@oracle.com>
9456
9457 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
9458 New functions.
9459 (help-mode): Use them.
9460
9461 2012-06-11 Glenn Morris <rgm@gnu.org>
9462
9463 * progmodes/fortran.el (fortran-font-lock-keywords-3):
9464 Use preprocessor face for directives.
9465 (fortran-directive-re): Doc fix.
9466
9467 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
9468
9469 * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Fix error in recent
9470 conversion to backquotes (bug#11652).
9471
9472 Fix compiler-expansion of CL's cXXr functions (bug#11673).
9473 * emacs-lisp/cl-lib.el (cl--defalias): New function.
9474 (cl-values, cl-values-list, cl-copy-seq, cl-svref, cl-first)
9475 (cl-second, cl-rest, cl-endp, cl-third, cl-fourth): Use it.
9476 (cl-plusp, cl-minusp, cl-fifth, cl-sixth, cl-seventh, cl-eighth)
9477 (cl-ninth, cl-tenth): Mark them as inlinable.
9478 (cl-caaar, cl-caadr, cl-cadar, cl-caddr, cl-cdaar, cl-cdadr)
9479 (cl-cddar, cl-cdddr, cl-caaaar, cl-caaadr, cl-caadar, cl-caaddr)
9480 (cl-cadaar, cl-cadadr, cl-caddar, cl-cadddr, cl-cdaaar, cl-cdaadr)
9481 (cl-cdadar, cl-cdaddr, cl-cddaar, cl-cddadr, cl-cdddar, cl-cddddr):
9482 Add a compiler-macro declaration to use cl--compiler-macro-cXXr.
9483 (cl-list*, cl-adjoin): Don't put an autoload manually.
9484 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin)
9485 (cl--compiler-macro-list*): Add autoload cookie.
9486 (cl--compiler-macro-cXXr): New function.
9487
9488 * help-fns.el (help-fns--compiler-macro): New function extracted from
9489 describe-function-1; follow aliases and use `compiler-macro' property.
9490 (describe-function-1): Use it.
9491
9492 2012-06-11 Chong Yidong <cyd@gnu.org>
9493
9494 * startup.el (fancy-splash-head): Use splash.svg even if librsvg
9495 is uninstalled, if imagemagick is installed.
9496
9497 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
9498
9499 * emacs-lisp/cl-lib.el: Use lexical-binding.
9500 (cl-map-extents, cl-maclisp-member): Remove.
9501 (cl--set-elt, cl--set-nthcdr, cl--set-buffer-substring)
9502 (cl--set-substring, cl--block-wrapper, cl--block-throw)
9503 (cl--compiling-file, cl--mapcar-many, cl--do-subst): Use "cl--" prefix.
9504 * emacs-lisp/cl-extra.el: Use lexical-binding.
9505 (cl--mapcar-many, cl--map-keymap-recursively, cl--map-intervals)
9506 (cl--map-overlays, cl--set-frame-visible-p, cl--progv-save)
9507 (cl--progv-before, cl--progv-after, cl--finite-do, cl--set-getf)
9508 (cl--do-remf, cl--do-prettyprint): Use "cl--" prefix.
9509 * emacs-lisp/cl-seq.el: Use lexical-binding.
9510 (cl--parsing-keywords, cl--check-key, cl--check-test-nokey)
9511 (cl--check-test, cl--check-match): Use "cl--" prefix and backquotes.
9512 (cl--alist, cl--sublis-rec, cl--nsublis-rec, cl--tree-equal-rec):
9513 * emacs-lisp/cl-macs.el (cl--lambda-list-keywords): Use "cl--" prefix.
9514 * edmacro.el (edmacro-mismatch): Simplify to remove dependence on
9515 CL's internals.
9516
9517 2012-06-11 Michael Albinus <michael.albinus@gmx.de>
9518
9519 Sync with Tramp 2.2.6-pre.
9520
9521 * net/tramp-cache.el (tramp-dump-connection-properties): Let-bind
9522 `print-length' and `print-level' to nil, in order to avoid
9523 truncation. Reported by Christopher Schmidt
9524 <christopher@ristopher.com>.
9525
9526 * net/tramp-cmds.el (tramp-cleanup-connection): Delete also process.
9527
9528 * net/tramp-compat.el (tramp-compat-condition-case-unless-debug):
9529 New defmacro.
9530 (tramp-compat-copy-directory): Add optional argument
9531 COPY-CONTENTS. It is not handled yet.
9532
9533 * net/tramp-ftp.el (tramp-disable-ange-ftp): Fix docstring.
9534 (tramp-ftp-file-name-p): Simplify.
9535
9536 * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name):
9537 * net/tramp-gw.el (tramp-gw-open-connection): Add hop to
9538 connection vector.
9539
9540 * net/tramp-sh.el (tramp-copy-size-limit): Fix docstring.
9541 (tramp-methods): Do not use `tramp-password-end-of-line'.
9542 (tramp-completion-function-alist-putty): Handle UNIX case.
9543 (tramp-remote-path): Add "/opt/bin", "/opt/sbin" and "/opt/local/bin".
9544 (tramp-do-file-attributes-with-stat)
9545 (tramp-do-directory-files-and-attributes-with-stat) Return uid and
9546 gid as real numbers. They could run out of integer range on cygwin.
9547 (tramp-do-copy-or-rename-file-out-of-band): Better trace format.
9548 (tramp-sh-handle-expand-file-name): Handle hops.
9549 (tramp-open-connection-setup-interactive-shell):
9550 Use `tramp-cleanup'. Move check for busyboxes ...
9551 (tramp-find-shell): ... here. Simplify implementation.
9552 Set "remote-shell" property also for alternative shells.
9553 (tramp-remote-coding-commands): Check "test -c /dev/stdout".
9554 If failing, a regular file would be written otherwise.
9555 Reported by Dmitry Kurochkin <dmitry.kurochkin@gmail.com>.
9556 (tramp-find-inline-encoding): Cache the coding commands in the
9557 process cache. Apply test command on the remote side, if defined.
9558 (tramp-find-inline-compress): Cache the compress commands in the
9559 process cache.
9560 (tramp-compute-multi-hops): Save `tramp-default-proxies-alist'
9561 when requested. Handle hops.
9562 (tramp-current-connection): New defvar.
9563 (tramp-maybe-open-connection): Use `tramp-cleanup'.
9564 Throw `suppress', if there was a failed connection shortly before.
9565 Handle user interrupt. (Bug#10187)
9566 (tramp-get-inline-compress, tramp-get-inline-coding):
9567 Read connection properties from the process cache.
9568
9569 * net/tramp-smb.el (tramp-smb-server-version)
9570 (tramp-smb-wrong-passwd-regexp, tramp-smb-actions-with-tar):
9571 New defconsts.
9572 (tramp-smb-prompt): Extend for powershell prompt.
9573 (tramp-smb-file-name-handler-alist): Add handlers for
9574 `process-file', `shell-command' and `start-file-process'.
9575 (tramp-smb-winexe-program, tramp-smb-winexe-shell-command)
9576 (tramp-smb-winexe-shell-command-switch): New defcustoms.
9577 (tramp-smb-file-name-p): Simplify.
9578 (tramp-smb-action-with-tar, tramp-smb-handle-process-file)
9579 (tramp-smb-kill-winexe-function, tramp-smb-call-winexe)
9580 (tramp-smb-shell-quote-argument): New defuns.
9581 (tramp-smb-handle-copy-directory): Add COPY-CONTENTS argument.
9582 Implement using "tar". By this, time-stamps are preserved.
9583 (tramp-smb-handle-copy-file): Handle also the case of directories.
9584 (tramp-smb-do-file-attributes-with-stat)
9585 (tramp-smb-get-file-entries, tramp-smb-get-cifs-capabilities):
9586 Use `tramp-get-connection-buffer').
9587 (tramp-smb-handle-rename-file): Use "rename", when source and
9588 target are on the same share.
9589 (tramp-smb-maybe-open-connection): Handle wrong passwords.
9590 Use `tramp-smb-server-version'.
9591 (tramp-smb-wait-for-output): Remove prompt.
9592
9593 * net/tramp.el (top): Require 'cl.
9594 (tramp-methods, tramp-rsh-end-of-line):
9595 Remove `tramp-password-end-of-line' from docstring.
9596 (tramp-save-ad-hoc-proxies): New defcustom.
9597 (tramp-completion-function-alist): Adapt docstring.
9598 (tramp-default-password-end-of-line): Remove defcustom.
9599 (tramp-shell-prompt-pattern): Allow "[]" style prompts. (Bug#11065)
9600 (tramp-user-regexp, tramp-file-name-regexp-unified)
9601 (tramp-file-name-regexp-url): Extend regexp by hop separator.
9602 (tramp-postfix-hop-format, tramp-postfix-hop-regexp)
9603 (tramp-remote-file-name-spec-regexp): New defconst.
9604 (tramp-file-name-structure): Extend structure for hops.
9605 (tramp-get-method-parameter): Move up.
9606 (tramp-file-name-p, tramp-dissect-file-name)
9607 (with-parsed-tramp-file-name): Handle hops.
9608 (tramp-file-name-hop): New defun.
9609 (tramp-make-tramp-file-name): New optional arg HOP.
9610 (tramp-message-show-progress-reporter-message): New defvar.
9611 (tramp-with-progress-reporter): Use it. We cannot use
9612 `tramp-message-show-message' here, because this suppresses also
9613 error buffers.
9614 (tramp-error-with-buffer): Suppress buffer view, if
9615 `tramp-message-show-message' is nil.
9616 Use `tramp-get-connection-buffer'.
9617 (tramp-cleanup): New defun.
9618 (tramp-rfn-eshadow-update-overlay): Let-bind `non-essential' to `t'.
9619 (tramp-file-name-handler): If `debug-on-error' is set, propagate
9620 an error unchanged.
9621 (tramp-completion-handle-file-name-all-completions): Handle hops.
9622 Fix an error when called from ido.
9623 (tramp-completion-dissect-file-name): Use better local variable
9624 name. Add hop to the vector.
9625 (tramp-handle-insert-file-contents): Use progress-reporter for the
9626 whole scenario.
9627 (tramp-action-password): Let-bind `enable-recursive-minibuffers'
9628 to `t'.
9629 (tramp-check-for-regexp): Simplify search.
9630 (tramp-enter-password): Remove it. Move implementation ...
9631 (tramp-action-password): ... here.
9632 (tramp-mode-string-to-int, tramp-local-host-p)
9633 (tramp-make-tramp-temp-file, tramp-read-passwd)
9634 (tramp-clear-passwd, tramp-time-less-p, tramp-time-diff):
9635 Set tramp-autoload cookie.
9636
9637 * net/trampver.el: Update release number.
9638
9639 2012-06-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9640 Michael Albinus <michael.albinus@gmx.de>
9641
9642 * net/tramp.el (tramp-set-completion-function): Fix docstring.
9643 (tramp-parse-group, tramp-parse-file)
9644 (tramp-parse-shostkeys-sknownhosts): New defuns.
9645 (tramp-parse-rhosts, tramp-parse-rhosts-group, tramp-parse-shosts)
9646 (tramp-parse-shosts-group, tramp-parse-sconfig)
9647 (tramp-parse-sconfig-group, tramp-parse-shostkeys)
9648 (tramp-parse-sknownhosts, tramp-parse-hosts)
9649 (tramp-parse-hosts-group, tramp-parse-passwd, tramp-parse-netrc):
9650 Use them.
9651 (tramp-parse-passwd-group, tramp-parse-netrc-group)
9652 (tramp-parse-putty-group): Don't narrow.
9653 (tramp-parse-putty): Make a loop.
9654 (tramp-file-name-handler): Catch the `suppress' signal.
9655
9656 2012-06-11 Chong Yidong <cyd@gnu.org>
9657
9658 * image.el (imagemagick-register-types): Put the ImageMagick entry
9659 at the end of image-type-file-name-regexps.
9660
9661 2012-06-11 Johan Bockgård <bojohan@gnu.org>
9662
9663 * emacs-lisp/pcase.el (pcase-UPAT, pcase-QPAT): New edebug specs.
9664 (pcase, pcase-let*, pcase-dolist): Use them.
9665
9666 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
9667
9668 * emacs-lisp/pcase.el (pcase--let*): New function.
9669 (pcase-let*): Use it. Use pcase--memoize to avoid repeated expansions.
9670 (pcase--expand): Use macroexp-let².
9671
9672 2012-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
9673
9674 * emacs-lisp/timer.el, emacs-lisp/syntax.el, emacs-lisp/smie.el:
9675 * emacs-lisp/ewoc.el, emacs-lisp/cconv.el, emacs-lisp/bytecomp.el:
9676 * emacs-lisp/byte-opt.el, emacs-lisp/autoload.el: Convert to cl-lib.
9677 * emacs-lisp/easymenu.el, emacs-lisp/easy-mmode.el:
9678 * emacs-lisp/derived.el: Use pcase instead of `cl'.
9679 * emacs-lisp/cl-lib.el: Get rid of special cl-macs auto load.
9680
9681 2012-06-10 Glenn Morris <rgm@gnu.org>
9682
9683 * mail/rmail.el (rmail-yank-current-message): Leave point at
9684 correct position. (Bug#11660)
9685
9686 2012-06-10 Chong Yidong <cyd@gnu.org>
9687
9688 * allout-widgets.el: Fix code header.
9689
9690 2012-06-10 Chong Yidong <cyd@gnu.org>
9691
9692 * cus-edit.el (customize-changed-options-previous-release):
9693 Bump to 24.1.
9694
9695 2012-06-09 Andreas Schwab <schwab@linux-m68k.org>
9696
9697 * Makefile.in (BIG_STACK_DEPTH): Enlarge to 2200.
9698
9699 2012-06-09 Chong Yidong <cyd@gnu.org>
9700
9701 * ebuff-menu.el (electric-buffer-list): Preserve header line.
9702
9703 2012-06-09 Martin Rudalics <rudalics@gmx.at>
9704
9705 * window.el (special-display-popup-frame): Don't use
9706 window--display-buffer (Bug#11651).
9707
9708 2012-06-09 Eli Zaretskii <eliz@gnu.org>
9709
9710 Fix parallel builds: make sure loaddefs.el is not being written
9711 while Lisp files are compiled.
9712 (compile): Don't depend on 'mh-autoloads'.
9713 (compile-CMD, compile-SH): Depend on 'autoloads'.
9714 (bootstrap): Don't depend on 'autoloads' and 'mh-autoloads'.
9715
9716 * makefile.w32-in (BIG_STACK_DEPTH): Enlarge to 2200. (Bug#11649)
9717
9718 2012-06-09 Chong Yidong <cyd@gnu.org>
9719
9720 * face-remap.el (face-remap-add-relative, face-remap-set-base)
9721 (buffer-face-set, buffer-face-toggle, buffer-face-mode-invoke):
9722 Doc fixes (Bug#11225).
9723
9724 2012-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
9725
9726 * emacs-lisp/macroexp.el (macroexp--expand-all): Only autoload
9727 a function if there's a clear indication that it has a compiler-macro.
9728 * emacs-lisp/byte-run.el (defun-declarations-alist, defmacro, defun)
9729 (macro-declarations-alist): Add arglist to declaration functions.
9730 (defun-declarations-alist): Add `obsolete' and `compiler-macro'.
9731 * emacs-lisp/cl-seq.el (cl-member, cl-assoc):
9732 * emacs-lisp/cl-lib.el (cl-list*, cl-adjoin):
9733 * emacs-lisp/cl-extra.el (cl-get): Use the new `declare' statement.
9734 Also add autoload to find the compiler macro.
9735 * emacs-lisp/cl-macs.el (eql) [compiler-macro]: Remove.
9736 (cl--compiler-macro-member, cl--compiler-macro-assoc)
9737 (cl--compiler-macro-adjoin, cl--compiler-macro-list*)
9738 (cl--compiler-macro-get): New functions, replacing calls to
9739 cl-define-compiler-macro.
9740 (cl-typep) [compiler-macro]: Use macroexp-let².
9741
9742 2012-06-08 Nick Dokos <nicholas.dokos@hp.com> (tiny change)
9743
9744 * calendar/icalendar.el (icalendar--parse-vtimezone): Import TZID
9745 string properly, fixes Bug#11473.
9746
9747 2012-06-08 Chong Yidong <cyd@gnu.org>
9748
9749 * faces.el (set-face-attribute): Doc fix.
9750 (modify-face): Don't use :bold and :italic.
9751 (error, warning, success): Tweak definitions.
9752
9753 * cus-edit.el (custom-modified, custom-invalid, custom-rogue)
9754 (custom-modified, custom-set, custom-changed, custom-themed)
9755 (custom-saved, custom-button, custom-button-mouse)
9756 (custom-button-pressed, custom-state, custom-comment-tag)
9757 (custom-variable-tag, custom-group-tag-1, custom-group-tag)
9758 (custom-group-subtitle): Use new-style face specs.
9759 (custom-invalid-face, custom-rogue-face, custom-modified-face)
9760 (custom-set-face, custom-changed-face, custom-saved-face)
9761 (custom-button-face, custom-button-pressed-face)
9762 (custom-documentation-face, custom-state-face)
9763 (custom-comment-face, custom-comment-tag-face)
9764 (custom-variable-tag-face, custom-variable-button-face)
9765 (custom-face-tag-face, custom-group-tag-face-1)
9766 (custom-group-tag-face): Remove obsolete face alias.
9767
9768 * epa.el (epa-validity-high, epa-validity-medium)
9769 (epa-validity-low, epa-mark, epa-field-name, epa-string)
9770 (epa-field-name, epa-field-body):
9771 * font-lock.el (font-lock-comment-face, font-lock-string-face)
9772 (font-lock-keyword-face, font-lock-builtin-face)
9773 (font-lock-function-name-face, font-lock-variable-name-face)
9774 (font-lock-type-face, font-lock-constant-face):
9775 * ido.el (ido-first-match, ido-only-match, ido-subdir)
9776 (ido-virtual, ido-indicator, ido-incomplete-regexp):
9777 * speedbar.el (speedbar-button-face, speedbar-file-face)
9778 (speedbar-directory-face, speedbar-tag-face)
9779 (speedbar-selected-face, speedbar-highlight-face)
9780 (speedbar-separator-face):
9781 * whitespace.el (whitespace-newline, whitespace-space)
9782 (whitespace-hspace, whitespace-tab, whitespace-trailing)
9783 (whitespace-line, whitespace-space-before-tab)
9784 (whitespace-space-after-tab, whitespace-indentation)
9785 (whitespace-empty):
9786 * emulation/cua-base.el (cua-global-mark):
9787 * eshell/em-prompt.el (eshell-prompt):
9788 * net/newst-plainview.el (newsticker-new-item-face)
9789 (newsticker-old-item-face, newsticker-immortal-item-face)
9790 (newsticker-obsolete-item-face, newsticker-date-face)
9791 (newsticker-statistics-face, newsticker-default-face):
9792 * net/newst-reader.el (newsticker-feed-face)
9793 (newsticker-extra-face, newsticker-enclosure-face):
9794 * net/newst-treeview.el (newsticker-treeview-face)
9795 (newsticker-treeview-new-face, newsticker-treeview-old-face)
9796 (newsticker-treeview-immortal-face)
9797 (newsticker-treeview-obsolete-face)
9798 (newsticker-treeview-selection-face):
9799 * net/rcirc.el (rcirc-my-nick, rcirc-other-nick)
9800 (rcirc-bright-nick, rcirc-server, rcirc-timestamp)
9801 (rcirc-nick-in-message, rcirc-nick-in-message-full-line)
9802 (rcirc-prompt, rcirc-track-keyword, rcirc-url, rcirc-keyword):
9803 * nxml/nxml-outln.el (nxml-heading, nxml-outline-indicator)
9804 (nxml-outline-active-indicator, nxml-outline-ellipsis):
9805 * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
9806 (mpuz-text):
9807 * progmodes/vera-mode.el (vera-font-lock-number)
9808 (vera-font-lock-function, vera-font-lock-interface):
9809 * textmodes/table.el (table-cell): Use new-style face specs, and
9810 don't use the old :bold and :italic attributes.
9811
9812 * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
9813 (ebrowse-member-attribute, ebrowse-default, ebrowse-file-name)
9814 (ebrowse-member-class, ebrowse-progress): Likewise.
9815 (ebrowse-tree-mark-face, ebrowse-root-class-face)
9816 (ebrowse-file-name-face, ebrowse-default-face)
9817 (ebrowse-member-attribute-face, ebrowse-member-class-face)
9818 (ebrowse-progress-face): Remove obsolete faces.
9819
9820 * progmodes/flymake.el (flymake-errline, flymake-warnline):
9821 Inherit from error and warning faces respectively.
9822
9823 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
9824 Likewise.
9825 (flyspell-incorrect-face, flyspell-duplicate-face):
9826 Remove obsolete aliases.
9827
9828 2012-06-08 Michael Albinus <michael.albinus@gmx.de>
9829
9830 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
9831 Avoid infloop.
9832
9833 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
9834
9835 * startup.el (argv, argi): Make lexically scoped.
9836 * emacs-lisp/float-sup.el (pi): Use internal-make-var-non-special.
9837 * emacs-lisp/cl-macs.el: Use lexical-binding.
9838 Rename cl-bind-* to cl--bind-*.
9839 * files.el: Don't require `cl' since it doesn't use it.
9840 * emacs-lisp/pcase.el, emacs-lisp/macroexp.el: Add coding cookie.
9841
9842 2012-06-08 Juanma Barranquero <lekktu@gmail.com>
9843
9844 * textmodes/texinfmt.el: Fix bug#11640 (reverts part of 2008-07-31T05:33:56Z!dann@ics.uci.edu).
9845 (texinfo-format-printindex): Use `texinfo-sort-region' in all platforms,
9846 instead of calling external sort utility.
9847 (texinfo-sort-region, texinfo-sort-startkeyfun): Restore functions.
9848
9849 2012-06-08 Eli Zaretskii <eliz@gnu.org>
9850
9851 * descr-text.el (describe-char): Mention how to insert the
9852 character, if the current input method doesn't support it.
9853 See the discussion in this thread for the details:
9854 http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00533.html.
9855
9856 2012-06-08 Sam Steingold <sds@gnu.org>
9857
9858 * bindings.el (global-map): Bind XF86Forward to next-buffer and
9859 XF86Back to previous-buffer.
9860 (minibuffer-local-map): Bind them to next-history-element and
9861 previous-history-element respectively.
9862 * help-mode.el (help-mode-map): Bind them to help-go-forward and
9863 help-go-back respectively.
9864 * info.el (Info-mode-map): Bind them to Info-history-forward and
9865 Info-history-back respectively.
9866 These are the keys next to Up on the ThinkPad keyboard.
9867
9868 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
9869
9870 Get rid of cl-lexical-let, keeping only lexical-let for compatibility.
9871 * emacs-lisp/cl-macs.el: Provide itself.
9872 (cl--labels-convert-cache): New var.
9873 (cl--labels-convert): New function.
9874 (cl-flet, cl-labels): New implementation with new semantics, relying on
9875 lexical-binding.
9876 * emacs-lisp/cl.el: Mark compatibility aliases as obsolete.
9877 (cl-closure-vars, cl--function-convert-cache)
9878 (cl--function-convert): Move from cl-macs.el.
9879 (lexical-let, lexical-let*, flet, labels): Move from cl-macs.el and
9880 rename by removing the "cl-" prefix.
9881 * emacs-lisp/macroexp.el (macroexp-unprogn): New function.
9882
9883 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
9884
9885 * emacs-lisp/cl.el (cl-macroexpand, cl-macro-environment)
9886 (cl-macroexpand-all, cl-not-hash-table, cl-builtin-gethash)
9887 (cl-builtin-remhash, cl-builtin-clrhash, cl-builtin-maphash)
9888 (cl-map-keymap, cl-copy-tree, cl-gethash, cl-puthash, cl-remhash)
9889 (cl-clrhash, cl-maphash, cl-make-hash-table, cl-hash-table-p)
9890 (cl-hash-table-count): Add old compatibility aliases.
9891
9892 * emacs-lisp/cl-macs.el (cl-macro-environment): Remove var.
9893 Use macroexpand-all-environment instead.
9894 (cl--old-macroexpand): New var.
9895 (cl--sm-macroexpand): New function.
9896 (cl-symbol-macrolet): Use it during macro expansion.
9897 (cl--function-convert-cache): New var.
9898 (cl--function-convert): New function, extracted from
9899 cl-macroexpand-all.
9900 (cl-lexical-let): Use it.
9901
9902 * emacs-lisp/cl-lib.el (cl-macro-environment): Remove decl.
9903 (cl-macroexpand): Move to cl-macs.el and rename to cl--sm-macroexpand.
9904 (cl-member): Remove old alias.
9905
9906 * emacs-lisp/cl-extra.el (cl-map-keymap, cl-copy-tree)
9907 (cl-not-hash-table, cl-builtin-gethash, cl-builtin-remhash)
9908 (cl-builtin-clrhash, cl-builtin-maphash, cl-gethash, cl-puthash)
9909 (cl-remhash, cl-clrhash, cl-maphash, cl-make-hash-table)
9910 (cl-hash-table-p, cl-hash-table-count): Move to cl.el.
9911 (cl-macroexpand-cmacs): Remove var.
9912 (cl-macroexpand-all, cl-macroexpand-body): Remove funs.
9913 Use macroexpand-all instead.
9914
9915 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
9916
9917 * emacs-lisp/macroexp.el (macroexp-progn, macroexp-let*, macroexp-if)
9918 (macroexp-let², macroexp--const-symbol-p, macroexp-const-p)
9919 (macroexp-copyable-p): New functions and macros.
9920 * emacs-lisp/edebug.el (edebug-unwrap):
9921 * emacs-lisp/disass.el (disassemble-internal): Use macroexp-progn.
9922 * emacs-lisp/pcase.el: Use macroexp-let*, macroexp-if, ...
9923 (pcase--let*): Remove.
9924 * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p)
9925 (byte-compile-constp): Remove. Use macroexp--const-symbol-p and
9926 macroexp-const-p instead.
9927 * emacs-lisp/byte-opt.el: Use macroexp-const-p and macroexp-progn.
9928
9929 * emacs-lisp/cl-macs.el: Clean up the name space by using "cl--"
9930 instead of "cl-" for internal definitions. Use macroexp-const-p.
9931 (cl-old-bc-file-form): Remove var.
9932 (cl-const-exprs-p): Remove fun.
9933 (cl-labels, cl-macrolet): Use backquote.
9934 (cl-lexical-let): Use cl-symbol-macrolet. Don't use cl-defun-expander.
9935 (cl-defun-expander, cl-byte-compile-compiler-macro): Remove fun.
9936 (cl-define-setf-expander): Rename from cl-define-setf-method.
9937 * emacs-lisp/cl.el: Adjust alias for define-setf-method.
9938
9939 * international/mule-cmds.el: Don't require CL.
9940 (view-hello-file): Don't use `letf'.
9941
9942 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
9943
9944 * tmm.el (tmm-prompt): Use string-prefix-p.
9945 (tmm-completion-delete-prompt): Don't affect current-buffer outside.
9946 (tmm-add-prompt): Use minibuffer-completion-help.
9947 (tmm-delete-map): Remove.
9948
9949 * subr.el (kbd): Make it its own function.
9950
9951 2012-06-07 Stefan Merten <smerten@oekonux.de>
9952
9953 * textmodes/rst.el: Use `eval-when-compile' for requiring `cl.el'.
9954 Silence compiler warnings. Fix versions.
9955 (rst-position-if, rst-position, rst-some, rst-signum): New functions.
9956 (rst-shift-region, rst-adornment-level, rst-compute-tabs)
9957 (rst-indent-line, rst-shift-region, rst-forward-line): Use them.
9958 (rst-package-emacs-version-alist): Correct Emacs version to
9959 represent major merge with upstream.
9960 (rst-transition, rst-adornment, rst-compile-toolsets): Fix versions.
9961
9962 2012-06-06 Glenn Morris <rgm@gnu.org>
9963
9964 * mail/emacsbug.el (report-emacs-bug): Add relevant EMACS env-vars.
9965 Only print environment variables if set.
9966
9967 2012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
9968
9969 * emacs-lisp/macroexp.el: Don't require CL since we don't use it.
9970 (macroexp--cons): Rename from maybe-cons.
9971 (macroexp--accumulate): Rename from macroexp-accumulate.
9972 (macroexp--all-forms): Rename from macroexpand-all-forms.
9973 (macroexp--all-clauses): Rename from macroexpand-all-clauses.
9974 (macroexp--expand-all): Rename from macroexpand-all-1.
9975
9976 2012-06-06 Sam Steingold <sds@gnu.org>
9977
9978 * calendar/calendar.el (calendar-in-read-only-buffer):
9979 Call `special-mode' to enable the standard read-only keybindings.
9980
9981 2012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
9982
9983 * emacs-lisp/macroexp.el (macroexpand-all-1): Don't spam the output
9984 with "loading" messages (bug#11635).
9985
9986 2012-06-06 Michael Albinus <michael.albinus@gmx.de>
9987
9988 * files.el (enable-remote-dir-locals): New option.
9989 (hack-dir-local-variables): Use it. (Bug#1933, Bug#6731)
9990
9991 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
9992 Ensure, that the temp directory is local.
9993
9994 * net/tramp-sh.el (tramp-sh-handle-write-region): Let-bind
9995 `temporary-file-directory'.
9996
9997 * progmodes/python.el (python-send-region): Ensure, that the
9998 temporary file is created also in the remote case.
9999
10000 2012-06-06 Glenn Morris <rgm@gnu.org>
10001
10002 * vc/vc-rcs.el (vc-rcs-rcs2log-program): New.
10003 (vc-rcs-update-changelog): Use it.
10004
10005 * emacs-lisp/authors.el (authors-fixed-entries): Remove vcdiff.
10006
10007 * vc/vc-sccs.el (vc-sccs-write-revision): New function.
10008 (vc-sccs-workfile-unchanged-p): Use vc-sccs-write-revision.
10009 (vc-sccs-diff): Replace use of the external vcdiff script.
10010
10011 2012-06-05 Glenn Morris <rgm@gnu.org>
10012
10013 * ledit.el: Move to obsolete/.
10014
10015 2012-06-05 Sam Steingold <sds@gnu.org>
10016
10017 * calendar/calendar.el (calendar-exit): Reinstate the 2012-03-28
10018 patch (Bug#11140).
10019
10020 2012-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
10021
10022 * emacs-lisp/cust-print.el: Move to obsolete.
10023
10024 * emacs-lisp/macroexp.el (macroexpand-all-1): Tolerate errors during
10025 compiler-macro expansion.
10026
10027 Add native compiler-macro support.
10028 * emacs-lisp/macroexp.el (macroexpand-all-1):
10029 Support compiler-macros directly. Properly follow aliases and apply
10030 the compiler macros more thoroughly.
10031 * emacs-lisp/cl.el: Don't copy compiler-macro properties any more since
10032 macroexpand now properly follows aliases.
10033 * emacs-lisp/cl-macs.el (toplevel, cl-define-compiler-macro)
10034 (cl-compiler-macroexpand): Use new prop.
10035 * emacs-lisp/byte-opt.el (featurep): Optimize earlier.
10036
10037 * emacs-lisp/cl-lib.el (custom-print-functions): Add alias.
10038
10039 2012-06-05 Martin Rudalics <rudalics@gmx.at>
10040
10041 * window.el (get-lru-window, get-mru-window, get-largest-window):
10042 New argument NOT-SELECTED to avoid picking the selected window.
10043 (window--display-buffer-1, window--display-buffer-2): Replace by
10044 new function window--display-buffer
10045 (display-buffer-same-window, display-buffer-reuse-window)
10046 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
10047 Use window--display-buffer.
10048 (display-buffer-use-some-window): Remove temporary dedication
10049 hack by calling get-lru-window and get-largest-window with
10050 NOT-SELECTED argument non-nil. Call window--display-buffer.
10051
10052 2012-06-05 Glenn Morris <rgm@gnu.org>
10053
10054 * vc/vc-sccs.el (vc-sccs-workfile-unchanged-p):
10055 Replace external vcdiff script.
10056
10057 2012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
10058
10059 * emacs-lisp/cl-lib.el (cl-values, cl-values-list): Fix up last change.
10060
10061 2012-06-04 Chong Yidong <cyd@gnu.org>
10062
10063 * image.el (imagemagick-types-inhibit): Revert last change.
10064 Add INFO and M.
10065 (imagemagick-enabled-types): Remove CIN and EPS*.
10066
10067 2012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
10068
10069 * emacs-lisp/cl-lib.el: Rename from cl.el.
10070 * emacs-lisp/cl.el: New compatibility file.
10071 * emacs-lisp/cl-lib.el, emacs-lisp/cl-seq.el, emacs-lisp/cl-macs.el:
10072 * emacs-lisp/cl-extra.el: Rename all top-level functions and variables
10073 to obey the "cl-" prefix.
10074 * emacs-lisp/macroexp.el (macroexpand-all-1): Adjust to new name.
10075
10076 2012-06-03 Glenn Morris <rgm@gnu.org>
10077
10078 * emacs-lisp/authors.el (authors-aliases): Addition.
10079
10080 * cus-start.el (tool-bar-style, tool-bar-max-label-size):
10081 Fix :version.
10082
10083 2012-06-03 Stefan Merten <smerten@oekonux.de>
10084
10085 * textmodes/rst.el: Add comments.
10086 (rst-transition, rst-adornment): New faces.
10087 (rst-adornment-faces-alist): Make default safe to reevaluate.
10088 Fixes
10089 http://sourceforge.net/tracker/?func=detail&atid=422030&aid=3479603&group_id=38414.
10090 Improve customization tags.
10091 (rst-define-level-faces): Clarify meaning.
10092
10093 2012-06-03 Chong Yidong <cyd@gnu.org>
10094
10095 * progmodes/compile.el (compilation-mode-line-fail)
10096 (compilation-mode-line-run, compilation-mode-line-exit):
10097 New faces.
10098 (compilation-start, compilation-handle-exit): Use them (Bug#11032).
10099
10100 2012-06-03 Jack Duthen <duthen.mac.01@gmail.com> (tiny change)
10101
10102 * progmodes/which-func.el (which-func-update-ediff-windows):
10103 New function. Use it in ediff-select-hook (Bug#11478).
10104
10105 2012-06-03 Chong Yidong <cyd@gnu.org>
10106
10107 * bindings.el: Remove explicit help text from format-mode-line.
10108 It is now supplied by mode-line-default-help-echo.
10109 (mode-line-front-space, mode-line-end-spaces)
10110 (mode-line-misc-info): New variables.
10111 (mode-line-modes, mode-line-position): Move the default value to
10112 the variable definition.
10113 (mode-line-default-help-echo): New defcustom.
10114 (mode-line-mule-info-help-echo, mode-line-read-only-help-echo)
10115 (mode-line-modified-help-echo): New functions.
10116 (mode-line-mule-info, mode-line-modified): Use them.
10117 (mode-line-eol-desc, propertized-buffer-identification):
10118 Consistency fixes for help text.
10119 (mode-line-coding-system-map): Allow using mouse-3 to invoke
10120 set-buffer-file-coding-system (Bug#289).
10121 (mode-line-mule-info-help-echo): Update help text.
10122
10123 2012-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
10124
10125 * simple.el (execute-extended-command): Set real-this-command
10126 (bug#11506).
10127
10128 2012-06-02 Chong Yidong <cyd@gnu.org>
10129
10130 Remove incorrect uses of "modeline" in comments, docstrings, and
10131 function/variable names (Bug#10329).
10132
10133 * cus-edit.el (mode-line):
10134 * dframe.el (dframe-mouse-hscroll):
10135 * emacs-lisp/re-builder.el:
10136 * emacs-lisp/easy-mmode.el (define-minor-mode):
10137 * frame.el (set-frame-name):
10138 * help.el (lookup-minor-mode-from-indicator):
10139 * net/rcirc.el (rcirc-activity-string, rcirc-short-buffer-name):
10140 * progmodes/cc-cmds.el (c-toggle-auto-newline)
10141 (c-toggle-hungry-state):
10142 * progmodes/antlr-mode.el (antlr-language-alist):
10143 * progmodes/idlw-shell.el (idlwave-shell-electric-stop-line-face):
10144 * progmodes/vhdl-mode.el (vhdl-mode):
10145 * progmodes/which-func.el (which-func, which-func-cleanup-function):
10146 * term/ns-win.el (ns-face-at-pos):
10147 * term/sup-mouse.el (sup-mouse-report):
10148 * textmodes/flyspell.el (flyspell-mode-line-string):
10149 * textmodes/ispell.el (ispell-highlight-face):
10150 * textmodes/reftex-global.el:
10151 * vc/vc-arch.el (vc-arch-mode-line-string):
10152 * vc/vc-cvs.el (vc-cvs-mode-line-string):
10153 * vc/vc-git.el (vc-git-mode-line-string):
10154 * vc/vc-hooks.el (vc-display-status)
10155 (vc-default-mode-line-string):
10156 * vc/vc-mtn.el (vc-mtn-mode-line-string): Doc fixes.
10157
10158 * ansi-color.el (ansi-color-faces-vector): Change default faces.
10159
10160 * dired.el (dired-sort-set-mode-line): Rename from
10161 dired-sort-set-modeline. All callers changed.
10162
10163 * eshell/esh-mode.el (eshell-status-in-mode-line): Rename from
10164 eshell-status-in-modeline.
10165
10166 * foldout.el (foldout-mode-line-string): Rename from
10167 foldout-modeline-string. All callers changed.
10168 (foldout-update-mode-line): Rename from foldout-update-modeline.
10169
10170 * subr.el (redraw-modeline): Make into obsolete alias.
10171
10172 * calendar/timeclock.el (timeclock-mode-line-display): Rename from
10173 timeclock-modeline-display. Make old name an alias.
10174 (timeclock-update-mode-line): Likewise. All callers changed.
10175 (timeclock-mode-line-display): No need to check before using
10176 add-hook.
10177 (timeclock-relative, timeclock-day-over-hook)
10178 (timeclock-use-elapsed, timeclock-mode-string)
10179 (timeclock-mode-line-display): Doc fix, "modeline" -> "mode line".
10180
10181 * emulation/crisp.el (crisp-mode-mode-line-string): Rename from
10182 crisp-mode-modeline-string.
10183
10184 * play/solitaire.el (solitaire-build-mode-line): Rename from
10185 solitaire-build-modeline. All callers changed.
10186
10187 * play/zone.el (zone-hiding-mode-line): Rename from
10188 zone-hiding-modeline. All callers changed.
10189 (zone): Remove unusued `modeline-hidden-level' property.
10190
10191 * progmodes/xscheme.el (xscheme-mode-line-initialize): Rename from
10192 xscheme-modeline-initialize. All callers changed.
10193
10194 * strokes.el (strokes-lighter): Rename from
10195 strokes-modeline-string.
10196
10197 * textmodes/sgml-mode.el (html-face-tag-alist)
10198 (html-tag-face-alist): Use mode-line face instead of obsolete
10199 alias modeline.
10200
10201 2012-06-02 Stefan Merten <smerten@oekonux.de>
10202
10203 * textmodes/rst.el: Always require `cl'.
10204 (rst-mode-map): Fix meaning of C-M-a / C-M-e.
10205
10206 2012-06-02 Chong Yidong <cyd@gnu.org>
10207
10208 * image.el (imagemagick-enabled-types): Rename from
10209 imagemagick-types-enable. Add many more types.
10210 (imagemagick-types-inhibit): Change default to nil.
10211 (imagemagick-filter-types): Caller changed.
10212
10213 2012-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
10214
10215 * emacs-lisp/cl-macs.el: Use backquotes.
10216 (cl-transform-function-property): Use eval-and-compile rather than
10217 abusing `require'.
10218 (defstruct): Use declare-function instead of with-no-warnings.
10219
10220 * emacs-lisp/bytecomp.el: Fix last change (bug#11594).
10221 (byte-compile-output-docform): Re-add the print-circle bindings.
10222 (byte-compile-fix-header): Use #$ just because it's shorter.
10223 (byte-compile-output-file-form): Remove defun/defmacro.
10224
10225 2012-06-01 Martin Rudalics <rudalics@gmx.at>
10226
10227 * simple.el (choose-completion): Remove now obsolete binding for
10228 owindow.
10229
10230 2012-06-01 Michael Albinus <michael.albinus@gmx.de>
10231
10232 * net/tramp.el (tramp-check-for-regexp): Search from buffer end,
10233 in order to avoid "Stack overflow in regexp matcher".
10234
10235 2012-05-31 Glenn Morris <rgm@gnu.org>
10236
10237 * image.el: For clarity, call imagemagick-register-types at
10238 top-level, rather than relying on a custom :initialize.
10239 (imagemagick-types-enable): New option. (Bug#11557)
10240 (imagemagick-filter-types): New function. (Bug#7406)
10241 (imagemagick-register-types): Use imagemagick-filter-types.
10242 If disabling support, remove elements altogether rather
10243 than using an impossible regexp.
10244 (imagemagick-types-inhibit): Give it the default init function.
10245
10246 2012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
10247
10248 * emacs-lisp/bytecomp.el (byte-compile-fix-header):
10249 Handle arbitrary file name lengths (Bug#11585).
10250
10251 2012-05-31 Martin Rudalics <rudalics@gmx.at>
10252
10253 * desktop.el (desktop-read): Clear previous and next buffers for
10254 all windows and bury *Messages* buffer (bug#11556).
10255
10256 2012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
10257
10258 Add `declare' for `defun'. Align `defmacro's with it.
10259 * emacs-lisp/easy-mmode.el (define-minor-mode)
10260 (define-globalized-minor-mode): Don't autoload the var definitions.
10261 * emacs-lisp/byte-run.el: Use lexical-binding.
10262 (defun-declarations-alist, macro-declarations-alist): New vars.
10263 (defmacro, defun): Use them.
10264 (make-obsolete, define-obsolete-function-alias)
10265 (make-obsolete-variable, define-obsolete-variable-alias):
10266 Use `declare'.
10267 (macro-declaration-function): Mark obsolete.
10268 * emacs-lisp/autoload.el: Use lexical-binding.
10269 (make-autoload): Add `expansion' arg. Rely more on macro expansion.
10270
10271 2012-05-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
10272
10273 * textmodes/ispell.el (ispell-with-no-warnings):
10274 Define as a macro.
10275 (ispell-kill-ispell, ispell-change-dictionary):
10276 Use `called-interactively-p' for Emacs instead of obsolete
10277 `interactive-p'.
10278
10279 2012-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
10280
10281 * emacs-lisp/byte-run.el (defmacro, defun): Move from C.
10282 (macro-declaration-function): Move var from C code.
10283 (macro-declaration-function): Define function with defalias.
10284 * emacs-lisp/macroexp.el (macroexpand-all-1):
10285 * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form):
10286 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Don't handle
10287 defun/defmacro any more.
10288 * emacs-lisp/bytecomp.el (byte-compile-arglist-signature):
10289 Provide fallback for unknown arglist.
10290 (byte-compile-arglist-warn): Change calling convention.
10291 (byte-compile-output-file-form): Move print-vars binding.
10292 (byte-compile-output-docform): Simplify accordingly.
10293 (byte-compile-file-form-defun, byte-compile-file-form-defmacro)
10294 (byte-compile-defmacro-declaration): Remove.
10295 (byte-compile-file-form-defmumble): Generalize to defalias.
10296 (byte-compile-output-as-comment): Return byte-positions.
10297 Simplify callers accordingly.
10298 (byte-compile-lambda): Use `assert'.
10299 (byte-compile-defun, byte-compile-defmacro): Remove.
10300 (byte-compile-file-form-defalias):
10301 Use byte-compile-file-form-defmumble.
10302 (byte-compile-defalias-warn): Remove.
10303
10304 2012-05-29 Stefan Merten <smerten@oekonux.de>
10305
10306 * textmodes/rst.el: Silence `checkdoc-ispell' errors where
10307 possible. Fix authors. Improve comments. Improve loading of `cl'.
10308
10309 (rst-mode-abbrev-table): Merge definition.
10310 (rst-mode): Make sure `font-lock-defaults' is buffer local.
10311 (rst-define-key, rst-deprecated-keys, rst-call-deprecated): Refactor.
10312
10313 2012-05-29 Ulf Jasper <ulf.jasper@web.de>
10314
10315 * calendar/icalendar.el
10316 (icalendar-export-region): Export UID properly.
10317
10318 2012-05-29 Leo Liu <sdl.web@gmail.com>
10319 * calendar/icalendar.el (icalendar-import-format):
10320 Add `icalendar-import-format-uid' (Bug#11525).
10321 (icalendar-import-format-uid): New.
10322 (icalendar--parse-summary-and-rest, icalendar--format-ical-event):
10323 Export UID.
10324
10325 2012-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
10326
10327 * emacs-lisp/pcase.el (pcase--expand): Accept different sets of vars in
10328 different alternative patterns.
10329 (pcase-codegen): Be more careful to preserve identity.
10330 (pcase--u1): Don't forget to mark vars as used.
10331
10332 * emacs-lisp/bytecomp.el (byte-compile-constp): Treat #'v as a constant.
10333 (byte-compile-close-variables): Bind byte-compile--outbuffer here...
10334 (byte-compile-from-buffer): ...rather than here.
10335
10336 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Don't re-preprocess
10337 functions from byte-compile-function-environment.
10338
10339 2012-05-29 Troels Nielsen <bn.troels@gmail.com>
10340
10341 * window.el (window-deletable-p): Avoid deleting the root window
10342 of a frame with an active minibuffer.
10343
10344 2012-05-29 Martin Rudalics <rudalics@gmx.at>
10345
10346 * simple.el (choose-completion): Use quit-window (Bug#11567).
10347
10348 2012-05-29 Chong Yidong <cyd@gnu.org>
10349
10350 * whitespace.el (whitespace-cleanup): Fix usage of
10351 whitespace-empty-at-bob-regexp (Bug#11492).
10352
10353 2012-05-29 Aaron S. Hawley <aaron.s.hawley@gmail.com>
10354
10355 * vc/vc.el (vc-revert, vc-rollback): Dont kill vc-diff buffer on
10356 revert (Bug#11488).
10357
10358 2012-05-29 Juri Linkov <juri@jurta.org>
10359
10360 * isearch.el (isearch-mode-map): Bind `M-s _' to
10361 `isearch-toggle-symbol'. Bind `M-s c' to
10362 `isearch-toggle-case-fold'.
10363 (search-map): Bind `M-s _' to `isearch-forward-symbol'.
10364 (isearch-forward): Add `M-s _' to the docstring.
10365 (isearch-forward-symbol, isearch-toggle-case-fold)
10366 (isearch-symbol-regexp): New functions. (Bug#11381)
10367
10368 2012-05-29 Juri Linkov <juri@jurta.org>
10369
10370 * isearch.el (isearch-word): Add docstring. (Bug#11381)
10371 (isearch-occur, isearch-search-and-update): If `isearch-word' is
10372 a function, call it to get the regexp.
10373 (isearch-message-prefix): If `isearch-word' holds a symbol, use its
10374 property `isearch-message-prefix' instead of the string "word ".
10375 (isearch-search-fun-default): For the case of `isearch-word',
10376 return a lambda that calls re-search-forward/re-search-backward
10377 with a regexp returned by `word-search-regexp' or by the function
10378 in `isearch-word'.
10379
10380 2012-05-29 Juri Linkov <juri@jurta.org>
10381
10382 * isearch.el (isearch-search-fun-default): New function.
10383 (isearch-search-fun): Move default part to the new function
10384 `isearch-search-fun-default'.
10385 (isearch-search-fun-function): Set the default value to
10386 `isearch-search-fun-default'. (Bug#11381)
10387
10388 * comint.el (comint-history-isearch-end):
10389 Use `isearch-search-fun-default'.
10390 (comint-history-isearch-search): Use `isearch-search-fun-default'
10391 and remove spacial case for `isearch-word'.
10392 (comint-history-isearch-wrap): Remove spacial case for
10393 `isearch-word'.
10394
10395 * hexl.el (hexl-isearch-search-function):
10396 Use `isearch-search-fun-default'.
10397
10398 * info.el (Info-isearch-search): Use `isearch-search-fun-default'.
10399 Use `word-search-regexp' for `isearch-word'.
10400
10401 * misearch.el (multi-isearch-search-fun):
10402 Use `isearch-search-fun-default'.
10403
10404 * simple.el (minibuffer-history-isearch-search):
10405 Use `isearch-search-fun-default' and remove spacial case for
10406 `isearch-word'.
10407 (minibuffer-history-isearch-wrap): Remove spacial case for
10408 `isearch-word'.
10409
10410 * textmodes/reftex-global.el (reftex-isearch-wrap-function):
10411 Remove spacial case for `isearch-word'.
10412 (reftex-isearch-isearch-search): Use `isearch-search-fun-default'.
10413
10414 2012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
10415
10416 Decrease XEmacs incompatibilities.
10417 * textmodes/flyspell.el (flyspell-check-pre-word-p):
10418 Use `string-match'.
10419 (flyspell-delete-region-overlays): Use alternative definition for
10420 XEmacs.
10421 (flyspell-delete-all-overlays): Use `flyspell-delete-region-overlays'.
10422 (flyspell-word): Use `process-kill-without-query' if XEmacs.
10423 (flyspell-mode-on): Use `interactive-p' if XEmacs.
10424 (flyspell-incorrect-face, flyspell-duplicate-face): Do not use
10425 `define-obsolete-face-alias' under XEmacs, but old method.
10426
10427 * textmodes/ispell.el (ispell-with-no-warnings): XEmacs alternative
10428 `with-no-warnings' definition or Emacs alias.
10429 (ispell-command-loop, ispell-message): Use `ispell-with-no-warnings'.
10430 (ispell-word): Do not use `region-p' if XEmacs.
10431
10432 2012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
10433
10434 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
10435 Check for `ispell-dictionary-base-alist' instead of full
10436 `ispell-dictionary-alist'.
10437 (ispell-init-process): Show spellchecker when starting new Ispell
10438 process.
10439
10440 2012-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
10441
10442 * progmodes/vhdl-mode.el: Sync with upstream 3.33.28.
10443 http://www.iis.ee.ethz.ch/~zimmi/emacs/vhdl-mode.html#release-notes-3.33
10444
10445 2012-05-27 Juanma Barranquero <lekktu@gmail.com>
10446
10447 * version.el (motif-version-string, gtk-version-string)
10448 (ns-version-string): Declare.
10449
10450 2012-05-27 Juri Linkov <juri@jurta.org>
10451
10452 * emacs-lisp/lisp-mode.el (eval-defun-2): Use `eval-sexp-add-defvars'
10453 after the `eval-defun-1' specialcaseing
10454 like in `edebug-eval-defun' (bug#10181).
10455
10456 * emacs-lisp/edebug.el (edebug-eval-defun): Set `face-documentation'
10457 like in `eval-defun-1'.
10458
10459 2012-05-27 Eli Zaretskii <eliz@gnu.org>
10460
10461 * mail/sendmail.el (mail-yank-region):
10462 Recognize rmail-yank-current-message in addition to insert-buffer.
10463 Fixes mail-mode's "C-c C-r" that otherwise does nothing when invoked in
10464 a *mail* buffer created through rmail-start-mail with sendmail as
10465 mail-user-agent.
10466
10467 2012-05-27 Chong Yidong <cyd@gnu.org>
10468
10469 * net/gnutls.el (gnutls-min-prime-bits): Improve docstring.
10470 Default to 256 (Bug#11267).
10471
10472 * help.el (describe-mode): Doc fix.
10473
10474 2012-05-26 Glenn Morris <rgm@gnu.org>
10475
10476 * w32-fns.el (w32-init-info): Remove.
10477 * paths.el (Info-default-directory-list): Add w32-init-info equivalent.
10478
10479 * info.el (info-initialize): For self-contained NS builds, put the
10480 included info/ directory at the front. (Bug#2791)
10481
10482 * paths.el (Info-default-directory-list): Make it a defcustom,
10483 mainly so that we can use custom-initialize-delay.
10484
10485 2012-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
10486
10487 * subr.el (buffer-has-markers-at): Mark obsolete.
10488
10489 * subr.el (lambda): Use declare.
10490
10491 * emacs-lisp/lisp-mode.el (lambda):
10492 * emacs-lisp/edebug.el (lambda): Move properties to its definition.
10493
10494 2012-05-26 Aaron S. Hawley <aaron.s.hawley@gmail.com>
10495
10496 * thingatpt.el (forward-same-syntax): Handle no ARG case. (Bug#11560)
10497
10498 2012-05-26 Glenn Morris <rgm@gnu.org>
10499
10500 * progmodes/cc-mode.el (auto-mode-alist): Fix typo.
10501
10502 2012-05-25 Glenn Morris <rgm@gnu.org>
10503
10504 * paths.el: Remove no-byte-compile.
10505 * loadup.el: No need to load paths.el uncompiled.
10506
10507 * image.el (imagemagick-types-inhibit): Doc fix.
10508
10509 * version.el: Remove no-byte-compile and associated formatting.
10510 * loadup.el: No need to load version.el uncompiled. AFAICS, this
10511 is ancient code from when there was an "inc-vers.el".
10512
10513 2012-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
10514
10515 * progmodes/gdb-mi.el: Minor style changes.
10516 (gdb-enable-debug, gdb-speedbar-auto-raise, gdb-many-windows):
10517 Turn into minor modes.
10518 (gdb--if-arrow): Rename from gdb-if-arrow, make it hygienic.
10519 (gdb-mouse-until, gdb-mouse-jump): Adjust uses accordingly.
10520 (gdb-shell): Remove unneeded let-binding.
10521 (gdb-get-many-fields): Eliminate O(n²) behavior.
10522
10523 2012-05-25 Eli Zaretskii <eliz@gnu.org>
10524
10525 * cus-start.el <vertical-centering-font-regexp>: Avoid warning on
10526 platforms that don't link in fontset.c.
10527
10528 2012-05-25 Juri Linkov <juri@jurta.org>
10529
10530 Use the same diff color scheme as in modern VCSes (bug#10181).
10531
10532 * vc/diff-mode.el (diff-header, diff-file-header): Remove "green"
10533 to avoid confusion with `diff-added' that now uses green colors.
10534 (diff-removed): Use shades of red.
10535 (diff-added): Use shades of green.
10536 (diff-changed): Leave just the yellow color.
10537 (diff-use-changed-face): New variable.
10538 (diff-font-lock-keywords): Use `diff-use-changed-face' to decide
10539 how to highlight context diff changes.
10540 (diff-refine-change): Use shades of yellow.
10541 (diff-refine-removed): New face that uses shades of red.
10542 (diff-refine-added): New face that uses shades of green.
10543 (diff-refine-hunk): Use `diff-refine-change', `diff-refine-added',
10544 `diff-refine-removed' in the call to `smerge-refine-subst'
10545 depending on the value of `diff-use-changed-face'.
10546
10547 * vc/smerge-mode.el (smerge-mine): Use shades of red.
10548 (smerge-other): Use shades of green.
10549 (smerge-base): Use shades of yellow.
10550 (smerge-refined-change): Empty face.
10551 (smerge-refined-removed): New face that uses shades of red.
10552 (smerge-refined-added): New face that uses shades of green.
10553 (smerge-refine-subst): Rename arg `props' to `props-c'. Add new
10554 args `props-r' and `props-a', and use them. Doc fix.
10555 (smerge-refine): Evaluate `smerge-use-changed-face' and depending
10556 on its value use different faces `smerge-refined-change',
10557 `smerge-refined-removed', `smerge-refined-added' in the call to
10558 `smerge-refine-subst'.
10559
10560 * vc/ediff-init.el (ediff-current-diff-A, ediff-fine-diff-A):
10561 Add face condition `min-colors 88' with shades of red.
10562 (ediff-current-diff-B, ediff-fine-diff-B): Add face condition
10563 `min-colors 88' with shades of green.
10564 (ediff-current-diff-C, ediff-fine-diff-C): Add face condition
10565 `min-colors 88' with shades of yellow.
10566
10567 2012-05-24 Glenn Morris <rgm@gnu.org>
10568
10569 * paths.el (prune-directory-list, remote-shell-program): Move to...
10570 * files.el (prune-directory-list, remote-shell-program): ...here.
10571 For the latter, delay initialization, prefer ssh, just search PATH.
10572
10573 * paths.el (term-file-prefix): Move to faces.el (the only user).
10574 * faces.el (term-file-prefix): Move here, make it a defcustom.
10575
10576 * paths.el (news-directory, news-path, news-inews-program):
10577 Move to gnus/nnspool.el.
10578
10579 * paths.el (gnus-default-nntp-server): Remove (gnus.el defines it).
10580
10581 * paths.el (rmail-file-name, rmail-spool-directory): Move from here...
10582 * mail/rmail.el (rmail-file-name, rmail-spool-directory): ... to here.
10583 Make the latter a defcustom, with a delayed initialization.
10584
10585 * paths.el (gnus-nntp-service, gnus-local-organization): Remove.
10586 These were deleted from Gnus itself late 2010.
10587
10588 2012-05-22 Juanma Barranquero <lekktu@gmail.com>
10589
10590 * progmodes/which-func.el (which-func-ff-hook):
10591 Check against user-error, not error.
10592
10593 * emacs-lisp/edebug.el (top): Do not load or set up loading of
10594 cl-specs.el, which no longer exists.
10595
10596 2012-05-22 Glenn Morris <rgm@gnu.org>
10597
10598 * info.el (info-emacs-bug): New command.
10599 * menu-bar.el (menu-bar-help-menu): Add "How to Report a Bug" to Help.
10600 * mail/emacsbug.el (report-emacs-bug): Replace with info-emacs-bug.
10601
10602 2012-05-21 Glenn Morris <rgm@gnu.org>
10603
10604 * makefile.w32-in (update-subdirs-SH):
10605 * Makefile.in (update-subdirs): Update for moved update-subdirs.
10606
10607 2012-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
10608
10609 * hi-lock.el (hi-lock-face-defaults): Move obsolete before definition.
10610
10611 * progmodes/compile.el (compilation-error-regexp-alist-alist):
10612 Simplify Maven regexp, and make sure the file can't start with a space
10613 (bug#11517).
10614
10615 2012-05-21 Glenn Morris <rgm@gnu.org>
10616
10617 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
10618 Scrap superfluous subshells.
10619
10620 2012-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
10621
10622 * emacs-lisp/bytecomp.el (byte-compile-root-dir): New var.
10623 (byte-compile-warning-prefix, batch-byte-compile-file): Use it.
10624
10625 2012-05-19 Jay Belanger <jay.p.belanger@gmail.com>
10626
10627 * calc/calc.el (calc-ensure-consistent-units): New variable.
10628
10629 * calc/calc-units.el (math-consistent-units-p)
10630 (math-check-unit-consistency): New functions.
10631 (calc-quick-units, calc-convert-units):
10632 Use `math-check-unit-consistency' when `calc-ensure-consistent-units'
10633 is non-nil.
10634 (calc-extract-units): Fix typo.
10635
10636 2012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
10637
10638 * vc/vc-bzr.el (vc-bzr-state-heuristic): Save match-data around sha1.
10639
10640 * textmodes/flyspell.el: Commenting style, plus code simplifications.
10641 (flyspell-default-deplacement-commands): Don't spell check after
10642 repeated window/frame switches (e.g. triggered by mouse-movement).
10643 (flyspell-delay-commands, flyspell-deplacement-commands): Use mapc.
10644 (flyspell-debug-signal-word-checked): Simplify and fit in 80 cols.
10645 (flyspell-casechars-cache, flyspell-ispell-casechars-cache)
10646 (flyspell-not-casechars-cache, flyspell-ispell-not-casechars-cache):
10647 Remove unused vars.
10648 (flyspell-get-casechars, flyspell-get-not-casechars):
10649 Simplify; Don't bother removing a ] just to add it back.
10650 * textmodes/ispell.el (ispell-program-name): Use executable-find.
10651
10652 2012-05-18 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
10653
10654 * calc/calc-lang.el (math-C-parse-bess, math-C-parse-fma):
10655 New functions.
10656 (math-function-table): Add support for more C functions.
10657
10658 2012-05-18 Agustín Martín Domingo <agustin.martin@hispalinux.es>
10659
10660 * textmodes/flyspell.el (flyspell-check-pre-word-p)
10661 (flyspell-check-word-p, flyspell-debug-signal-word-checked):
10662 Protect delay handling for otherchars against empty otherchars.
10663
10664 2012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
10665
10666 * emacs-lisp/lisp-mode.el (doc-string-elt): Move those properties to
10667 their respective macro declarations.
10668 * skeleton.el (define-skeleton):
10669 * progmodes/compile.el (define-compilation-mode):
10670 * ibuf-macs.el (define-ibuffer-sorter, define-ibuffer-op)
10671 (define-ibuffer-filter):
10672 * emacs-lisp/generic.el (define-generic-mode):
10673 * emacs-lisp/easy-mmode.el (define-minor-mode)
10674 (define-globalized-minor-mode):
10675 * emacs-lisp/cl-macs.el (defun*, defmacro*, defstruct, deftype):
10676 * emacs-lisp/byte-run.el (defsubst):
10677 * custom.el (deftheme): Add doc-string metadata.
10678
10679 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
10680
10681 * emacs-lisp/cl-macs.el, emacs-lisp/cl.el: Move indent info.
10682
10683 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
10684
10685 * emacs-lisp/pcase.el (pcase--u1): Avoid ((lambda ...) ...).
10686
10687 * emacs-lisp/cl.el: Add edebug specs from cl-specs.el.
10688 * emacs-lisp/cl-macs.el: Idem.
10689 * emacs-lisp/cl-specs.el: Remove.
10690
10691 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
10692
10693 Minor renaming of internal CL functions and variables.
10694 * emacs-lisp/cl-seq.el (cl--adjoin): Rename from cl-adjoin.
10695 (cl--position): Rename from cl-position.
10696 (cl--delete-duplicates): Rename from cl-delete-duplicates.
10697 * emacs-lisp/cl.el (cl--gensym-counter): Rename from *gensym-counter*.
10698 (cl--random-state): Rename from *random-state*.
10699
10700 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
10701
10702 * emacs-lisp/cl-macs.el (cl-transform-lambda): Don't add spurious
10703 parens around the arg list (bug#11499).
10704
10705 2012-05-17 Juri Linkov <juri@jurta.org>
10706
10707 * isearch.el (word-search-regexp, word-search-backward)
10708 (word-search-forward, word-search-backward-lax)
10709 (word-search-forward-lax): Move functions from search.c
10710 (bug#10145, bug#11381).
10711
10712 2012-05-16 Agustín Martín Domingo <agustin.martin@hispalinux.es>
10713
10714 * textmodes/flyspell.el (flyspell-check-pre-word-p)
10715 (flyspell-check-word-p, flyspell-debug-signal-word-checked):
10716 Delay for otherchars as for normal word components.
10717
10718 2012-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
10719
10720 * minibuffer.el (completion--sifn-requote): Fix last change.
10721 (minibuffer-local-must-match-filename-map):
10722 Move define-obsolete-variable-alias before its var.
10723
10724 2012-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
10725
10726 * emacs-lisp/pcase.el (pcase-let*, pcase-let): Fix edebug spec.
10727
10728 * minibuffer.el (completion--sifn-requote): Handle sifn's truncation
10729 behavior.
10730 (completion--string-equal-p): New function.
10731 (completion--twq-all): Use it to get better assertion failure data.
10732
10733 Only handle ".." and '..' quoting in shell-mode (bug#11466).
10734 * shell.el (shell--unquote&requote-argument, shell--unquote-argument)
10735 (shell--requote-argument): New functions.
10736 (shell-completion-vars): Use them.
10737 (shell--parse-pcomplete-arguments): Rename from
10738 shell-parse-pcomplete-arguments.
10739 * comint.el (comint-word): Obey comint-file-name-quote-list. Simplify.
10740 (comint--unquote&requote-argument): Don't handle ".." and '..' quoting.
10741 Obey comint-file-name-quote-list.
10742
10743 * emacs-lisp/smie.el (smie-indent--bolp-1): New function.
10744 (smie-indent-keyword): Use it.
10745
10746 2012-05-14 Stefan Merten <smerten@oekonux.de>
10747
10748 * textmodes/rst.el (rst-re-alist): Fix loading (bug#11462).
10749
10750 2012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
10751
10752 * net/rlogin.el (rlogin-mode-map): Fix last change.
10753
10754 2012-05-14 Jason L. Wright <jason.wright@inl.gov> (tiny change)
10755
10756 * mail/smtpmail.el (smtpmail-send-command): Send the command and
10757 the following \r\n using a single `process-send-string', since the
10758 Lotus SMTP server refuses to accept any commands if they are sent
10759 with two `process-send-string's (Bug#11444).
10760
10761 2012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
10762
10763 * shell.el (shell-parse-pcomplete-arguments):
10764 Obey pcomplete-arg-quote-list inside double-quoted args (Bug#11348).
10765
10766 2012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
10767
10768 * image-mode.el: Fit to width/height for rotated images (Bug#11431).
10769 (image-transform-scale, image-transform-right-angle-fudge): New vars.
10770 (image-transform-width, image-transform-fit-width): New functions.
10771 (image-transform-properties): Use them.
10772 (image-transform-check-size): New function.
10773 (image-toggle-display-image): Use it (for testing).
10774 (image-transform-set-rotation): Reduce angle mod 360.
10775 Delete obsolete comment.
10776
10777 2012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
10778
10779 * image-mode.el: Fix scaling (bug#11399).
10780 (image-transform-resize): Doc fix.
10781 (image-transform-properties): Default scale is 1 and height should
10782 be an integer.
10783
10784 2012-05-13 Johan Bockgård <bojohan@gnu.org>
10785
10786 * emacs-lisp/smie.el (smie-next-sexp): Use accessor `op-forw' rather
10787 than hard-coding `car', to fix misbehavior when moving forward.
10788
10789 2012-05-13 Chong Yidong <cyd@gnu.org>
10790
10791 * emacs-lisp/tabulated-list.el (tabulated-list-format)
10792 (tabulated-list-entries, tabulated-list-padding)
10793 (tabulated-list-sort-key): Make permanent-local.
10794
10795 * ebuff-menu.el: Adapt to Buffer Menu changes (Bug#11455).
10796 (electric-buffer-list): Put electric buffer menu
10797 command descriptions in this docstring, instead of the docstring
10798 of electric-buffer-menu-mode. Code cleanups.
10799 (electric-buffer-menu-mode): Use define-derived-mode. Rename from
10800 Electric-buffer-menu-mode.
10801 (electric-buffer-update-highlight): Minor code cleanup.
10802
10803 2012-05-13 Michael Albinus <michael.albinus@gmx.de>
10804
10805 * net/dbus.el (dbus-call-method): Restore events not from D-Bus.
10806 (Bug#11447)
10807
10808 2012-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
10809
10810 Move define-obsolete-variable-alias before the var's definition.
10811 * vc/log-edit.el (vc-comment-ring, vc-comment-ring-index):
10812 * tooltip.el (tooltip-hook):
10813 * textmodes/reftex-toc.el (reftex-toc-map):
10814 * textmodes/reftex-sel.el (reftex-select-label-map)
10815 (reftex-select-bib-map):
10816 * textmodes/reftex-index.el (reftex-index-map)
10817 (reftex-index-phrases-map):
10818 * speedbar.el (speedbar-syntax-table, speedbar-key-map):
10819 * progmodes/meta-mode.el (meta-mode-map):
10820 * novice.el (disabled-command-hook):
10821 * loadhist.el (unload-hook-features-list):
10822 * frame.el (blink-cursor):
10823 * files.el (find-file-not-found-hooks, write-file-hooks)
10824 (write-contents-hooks):
10825 * emulation/tpu-edt.el (GOLD-map):
10826 * emacs-lock.el (emacs-lock-from-exiting):
10827 * emacs-lisp/generic.el (generic-font-lock-defaults):
10828 * emacs-lisp/chart.el (chart-map):
10829 * dos-fns.el (register-name-alist):
10830 * dired-x.el (dired-omit-files-p):
10831 * desktop.el (desktop-enable):
10832 * cus-edit.el (custom-mode-hook):
10833 * buff-menu.el (buffer-menu-mode-hook):
10834 * bookmark.el (bookmark-read-annotation-text-func)
10835 (bookmark-exit-hooks):
10836 * allout.el (allout-mode-deactivate-hook)
10837 (allout-exposure-change-hook, allout-structure-added-hook)
10838 (allout-structure-deleted-hook, allout-structure-shifted-hook):
10839 * dirtrack.el (dirtrack-toggle, dirtrackp, dirtrack-debug-toggle)
10840 (dirtrack-debug): Move call to define-obsolete-variable-alias so it
10841 comes before the corresponding variable's definition.
10842
10843 2012-05-12 Chong Yidong <cyd@gnu.org>
10844
10845 * buff-menu.el (Buffer-menu-buffer+size-width): Doc fix (Bug#11454).
10846 (Buffer-menu-mouse-select): Restore function (Bug#11459).
10847 (Buffer-menu-mode-map): Bind it.
10848 (Buffer-menu--pretty-name): Add a mouse-face property.
10849
10850 2012-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
10851
10852 * progmodes/prolog.el: Use SMIE. Cleanup regexp setup.
10853 (prolog-upper-case-string, prolog-lower-case-string)
10854 (prolog-atom-char-regexp, prolog-atom-regexp): Initialize in defconst.
10855 (prolog-use-smie, prolog-smie-grammar): New vars.
10856 (prolog-smie-forward-token, prolog-smie-backward-token)
10857 (prolog-smie-rules): New funs.
10858 (prolog-comment-indent): Remove.
10859 (prolog-mode-variables): Use default comment indentation instead.
10860 Setup SMIE.
10861 (prolog-build-case-strings, prolog-set-atom-regexps): Remove.
10862 (prolog-mode): Don't call them any more.
10863 (prolog-electric-colon, prolog-electric-dash)
10864 (prolog-edit-menu-insert-move): Use indent-according-to-mode.
10865
10866 * dabbrev.el (dabbrev-expand): Make "no expansion found" a user-error.
10867
10868 * minibuffer.el (completion--twq-all): Again, allow case differences.
10869
10870 * term.el: Move keymap initialization code to be more idiomatic.
10871 (term-signals-menu, term-mode-map, term-raw-map, term-raw-escape-map)
10872 (term-terminal-menu): Move initialization into declaration.
10873 (term-escape-char): Let the user set it in her .emacs.
10874
10875 * progmodes/sh-script.el: Use post-self-insert-hook&electric-pair-mode.
10876 Provide SMIE-based indentation (not enabled by default yet).
10877 (sh-mode-map): Don't bind electric keys.
10878 Use electric-pair-mode instead of skeleton-pair.
10879 (sh-assignment-regexp): Fit within 80 columns.
10880 (sh-indent-supported): Specify actual shell name instead of boolean.
10881 (sh--maybe-here-document): New fun, from sh-maybe-here-document.
10882 (sh-maybe-here-document): Use it. Make obsolete.
10883 (sh-electric-here-document-mode) New minor mode.
10884 (sh-mode): Use it. Don't set sh-indent-supported-here here.
10885 (sh-smie-sh-grammar, sh-smie--sh-operators, sh-smie--sh-operators-re)
10886 (sh-smie--sh-operators-back-re, sh-indent-after-continuation)
10887 (sh-smie-rc-grammar, sh-use-smie): New vars.
10888 (sh-smie--keyword-p, sh-smie--newline-semi-p, sh-smie--sh-keyword-p)
10889 (sh-smie-sh-forward-token, sh-smie--looking-back-at-continuation-p)
10890 (sh-smie-sh-backward-token, sh-smie--continuation-start-indent)
10891 (sh-smie-sh-rules, sh-smie-rc-rules, sh-smie--sh-keyword-in-p)
10892 (sh-smie--rc-after-special-arg-p, sh-smie-rc-backward-token)
10893 (sh-smie-sh-rules, sh-smie--rc-newline-semi-p): New functions.
10894 (sh-set-shell): Use smie-setup if requested.
10895
10896 * term.el (term-set-escape-char): Properly set term-escape-char.
10897 See http://stackoverflow.com/questions/10524656.
10898
10899 2012-05-10 Chong Yidong <cyd@gnu.org>
10900
10901 * ffap.el (ffap-url-unwrap-local): Make it work right (Bug#9131).
10902 Use url-generic-parse-url, and handle host names and Windows
10903 filenames properly.
10904 (ffap-url-unwrap-remote): Use url-generic-parse-url.
10905 (ffap-url-unwrap-remote): Accept list values, specifying a list of
10906 URL schemes to work on.
10907 (ffap--toggle-read-only): New function.
10908 (ffap-read-only, ffap-read-only-other-window)
10909 (ffap-read-only-other-frame): Use it.
10910 (ffap-fixup-url): Don't check ffap-ftp-regexp, since it is not
10911 necessary for ffap-url-unwrap-remote.
10912
10913 2012-05-10 Dave Abrahams <dave@boostpro.com>
10914
10915 * cus-start.el (create-lockfiles): Add it.
10916
10917 2012-05-09 Chong Yidong <cyd@gnu.org>
10918
10919 * net/browse-url.el (browse-url-url-encode-chars): Use upper-case.
10920 (browse-url-encode-url): Encode spaces and quotes (Bug#6300).
10921
10922 2012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
10923
10924 * shell.el (shell-completion-vars): Fix last change (bug#11348).
10925
10926 2012-05-09 Chong Yidong <cyd@gnu.org>
10927
10928 * ansi-color.el (ansi-color-process-output): Check for validity of
10929 comint-last-output-start before using it. This avoids a bad
10930 interaction with gdb-mi's input/output buffer.
10931
10932 2012-05-09 Glenn Morris <rgm@gnu.org>
10933
10934 * files.el (dir-locals-read-from-file):
10935 Mention dir-locals in any error message.
10936
10937 2012-05-09 Chong Yidong <cyd@gnu.org>
10938
10939 * emacs-lisp/package.el (package-built-in-p): Handle the `emacs'
10940 package (Bug#11410).
10941
10942 * emacs-lisp/package.el (package-buffer-info): Avoid putting local
10943 variables into description.
10944
10945 2012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
10946
10947 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list like
10948 shell-delimiter-argument-list (bug#11348).
10949 (shell-parse-pcomplete-arguments): Obey pcomplete-arg-quote-list.
10950
10951 2012-05-09 Juanma Barranquero <lekktu@gmail.com>
10952
10953 * textmodes/rst.el: Silence byte-compiler warnings.
10954 (rst-re-alist, rst-reset-section-caches): Move around.
10955 (rst-re): Use `characterp', not `char-valid-p'.
10956 (font-lock-beg, font-lock-end): Declare.
10957
10958 * progmodes/idlw-shell.el (specs): Remove reference to deleted
10959 variable `idlwave-shell-activate-alt-keybindings' and simplify.
10960
10961 * eshell/esh-cmd.el (eshell-debug-command): Fix typo in previous change.
10962
10963 2012-05-08 Glenn Morris <rgm@gnu.org>
10964
10965 * files.el (auto-mode-alist): Treat ".make" like ".mk".
10966
10967 2012-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
10968
10969 * vc/log-edit.el: Add GNU coding standards highlighting.
10970 (log-edit-font-lock-gnu-style)
10971 (log-edit-font-lock-gnu-keywords): New vars.
10972 (log-edit-font-lock-keywords): New fun.
10973 (log-edit-mode): Don't fold case in font-lock.
10974 (log-edit-font-lock-keywords): Do not assume case-folding.
10975
10976 * imenu.el: Misc cleanup. Make docstrings out of comments.
10977 Use lexical-binding.
10978 (imenu--index-alist, imenu--last-menubar-index-alist)
10979 (imenu-menubar-modified-tick): Use defvar-local.
10980 (imenu--split-menu): Remove unused var.
10981 (imenu--cleanup-seen): Declare as global.
10982 (imenu--cleanup): Use dolist.
10983
10984 * subr.el (defvar-local): Add debug spec and doc-string position.
10985
10986 2012-05-08 Glenn Morris <rgm@gnu.org>
10987
10988 * language/burmese.el, language/cham.el, language/czech.el:
10989 * language/english.el, language/georgian.el, language/greek.el:
10990 * language/japanese.el, language/khmer.el, language/korean.el:
10991 * language/lao.el, language/misc-lang.el, language/romanian.el:
10992 * language/sinhala.el, language/slovak.el, language/tai-viet.el:
10993 * language/thai.el, language/utf-8-lang.el:
10994 Remove no-byte-compile setting.
10995
10996 * play/zone.el (zone-pgm-stress): Don't pollute kill-ring. (Bug#11388)
10997
10998 2012-05-08 Aaron S. Hawley <aaron.s.hawley@gmail.com>
10999
11000 * progmodes/make-mode.el (makefile-browse):
11001 Remove unnecessary interactive. (Bug#11324)
11002
11003 2012-05-07 Glenn Morris <rgm@gnu.org>
11004
11005 * forms-d2.el, forms-pass.el: Move to ../etc/forms directory.
11006
11007 * international/mule.el (find-auto-coding): Make "unibyte: t" obsolete.
11008
11009 2012-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
11010
11011 * loadup.el: Preload newcomment.el.
11012 * newcomment.el: Move autoload-only code to toplevel.
11013
11014 * buff-menu.el (list-buffers--refresh): Mark `size' as right-align.
11015 * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
11016 Handle new :right-align column property.
11017 (tabulated-list-print-col): Idem, plus use `display' text-property to
11018 try and preserve alignment for variable pitch fonts.
11019
11020 2012-05-07 Chong Yidong <cyd@gnu.org>
11021
11022 * emacs-lisp/tabulated-list.el: Add no-header-line alternative.
11023 (tabulated-list-use-header-line): New var.
11024 (tabulated-list-init-header): Use it.
11025 (tabulated-list-print-fake-header): New function.
11026 (tabulated-list-print): Use it.
11027 (tabulated-list-sort-button-map): Add non-header-line commands.
11028 (tabulated-list-init-header): Add column name property to basic
11029 labels as well.
11030 (tabulated-list-col-sort): Handle non-header-line button case.
11031 (tabulated-list--sort-by-column-name): Fix a corner case.
11032
11033 * buff-menu.el (list-buffers--refresh):
11034 Handle Buffer-menu-use-header-line.
11035
11036 2012-05-06 Chong Yidong <cyd@gnu.org>
11037
11038 * buff-menu.el: Convert to Tabulated List mode.
11039 (Buffer-menu-buffer+size-width): Make obsolete.
11040 (Buffer-menu-name-width, Buffer-menu-size-width): New variables.
11041 (Buffer-menu-mode-map): Inherit from tabulated-list-mode-map.
11042 (Buffer-menu-mode): Derive from tabulated-list-mode. Move command
11043 documentation into docstring of buffer-menu.
11044 (Buffer-menu-toggle-files-only): Add an informative message.
11045 (Buffer-menu-sort): Convert to alias for tabulated-list-sort.
11046 (Buffer-menu-buffer, Buffer-menu-beginning, Buffer-menu-mark)
11047 (Buffer-menu-unmark, Buffer-menu-backup-unmark)
11048 (Buffer-menu-delete, Buffer-menu-save, Buffer-menu-not-modified)
11049 (Buffer-menu-execute, Buffer-menu-select)
11050 (Buffer-menu-marked-buffers, Buffer-menu-toggle-read-only)
11051 (Buffer-menu-bury): Use Tabulated List machinery.
11052 (Buffer-menu-mouse-select, Buffer-menu-sort-by-column)
11053 (Buffer-menu-sort-button-map, Buffer-menu-make-sort-button):
11054 Delete.
11055 (list-buffers--refresh): New function.
11056 (list-buffers-noselect): Use it.
11057 (tabulated-list-entry-size->, Buffer-menu--pretty-name)
11058 (Buffer-menu--pretty-file-name): New helper functions.
11059
11060 * loadup.el: Preload tabulated-list.
11061
11062 * emacs-lisp/tabulated-list.el (tabulated-list-sort): Rename from
11063 tabulated-list-sort-column.
11064 (tabulated-list-init-header): Add the initial aligning space even
11065 if tabulated-list-padding is zero.
11066
11067 2012-05-06 Christopher Schmidt <christopher@ch.ristopher.com>
11068
11069 * emacs-lisp/cl-macs.el (cl-expr-contains): Handle cons cells
11070 whose cdr is not a cons cell correctly (bug#11038).
11071
11072 2012-05-06 Chong Yidong <cyd@gnu.org>
11073
11074 * emacs-lisp/tabulated-list.el (tabulated-list-format):
11075 Accept additional plist in column descriptors.
11076 (tabulated-list-init-header): Obey it.
11077 (tabulated-list-get-entry): New function.
11078 (tabulated-list-put-tag): Use it. Use string-width instead of
11079 length.
11080 (tabulated-list--column-number): New function.
11081 (tabulated-list-print): Use it.
11082 (tabulated-list-print-col): New function.
11083 Set `tabulated-list-column-name' property on each column's text.
11084 (tabulated-list-print-entry): Use it.
11085 (tabulated-list-delete-entry, tabulated-list-set-col):
11086 New functions.
11087 (tabulated-list-sort-column): New command (Bug#11337).
11088
11089 * buff-menu.el (list-buffers): Move C-x C-b binding from
11090 buff-menu.el to bindings.el.
11091
11092 * ebuff-menu.el (Electric-buffer-menu-undefined): Use the
11093 :advertised-binding feature.
11094
11095 2012-05-06 Troels Nielsen <bn.troels@gmail.com> (tiny change)
11096
11097 * progmodes/compile.el (compilation-internal-error-properties):
11098 Calculate start position correctly when end-col is set but
11099 end-line is not (Bug#11382).
11100
11101 2012-05-06 Wolfgang Jenkner <wjenkner@inode.at>
11102
11103 * man.el (Man-unindent): Use text-property-default-nonsticky to
11104 prevent untabify from inheriting face properties (Bug#11408).
11105
11106 2012-05-05 Stefan Merten <smerten@oekonux.de>
11107
11108 * textmodes/rst.el: Major merge with upstream development up to
11109 Docutils SVN r7399 / rst.el V1.2.1.
11110
11111 Clarify maintainership and authors.
11112
11113 (rst-extract-version, rst-cvs-header, rst-cvs-rev)
11114 (rst-cvs-timestamp, rst-svn-rev, rst-svn-timestamp)
11115 (rst-official-version, rst-official-cvs-rev, rst-version)
11116 (rst-package-emacs-version-alist): New functions and variables
11117 for version information.
11118
11119 (rst-bullets, rst-uri-schemes, rst-adornment-chars)
11120 (rst-max-inline-length, rst-re-alist-def, rst-re-alist)
11121 (rst-mode-syntax-table, rst-mode): New and corrected functions
11122 and variables representing reStructuredText features.
11123
11124 (rst-re): New function for reStructuredText regexes. Use in
11125 many places.
11126
11127 (rst-deprecated-keys, rst-call-deprecated, rst-define-key)
11128 (rst-mode-map): Rebind keys.
11129
11130 (rst-mode-lazy, rst-font-lock-keywords)
11131 (rst-font-lock-extend-region)
11132 (rst-font-lock-extend-region-internal)
11133 (rst-font-lock-extend-region-extend)
11134 (rst-font-lock-find-unindented-line-limit)
11135 (rst-font-lock-find-unindented-line-match)
11136 (rst-adornment-level, rst-font-lock-adornment-level)
11137 (rst-font-lock-adornment-match)
11138 (rst-font-lock-handle-adornment-pre-match-form)
11139 (rst-font-lock-handle-adornment-matcher): Major revision of
11140 font-locking. Integrate with other code. Use `jit-lock-mode'.
11141
11142 (rst-preferred-adornments, rst-adjust-hook)
11143 (rst-new-adornment-down, rst-preferred-bullets)
11144 (rst-preferred-bullets, rst-indent, rst-indent-width)
11145 (rst-indent-field, rst-indent-literal-normal)
11146 (rst-indent-literal-minimized, rst-indent-comment): Change,
11147 extend and improve customization.
11148
11149 (rst-line-homogeneous-p, rst-line-homogeneous-nodent-p)
11150 (rst-normalize-cursor-position, rst-get-decoration)
11151 (rst-straighten-deco-spacing, rst-re-bullets, rst-re-items)
11152 (rst-rstrip, rst-toc-insert-find-delete-contents)
11153 (rst-shift-fill-region, rst-compute-bullet-tabs)
11154 (rst-debug-print-tabs, rst-debug-mark-found)
11155 (rst-shift-region-guts, rst-shift-region-right)
11156 (rst-shift-region-left, rst-use-char-classes)
11157 (rst-font-lock-keywords-function)
11158 (rst-font-lock-indentation-point)
11159 (rst-font-lock-find-unindented-line-begin)
11160 (rst-font-lock-find-unindented-line-end)
11161 (rst-font-lock-find-unindented-line)
11162 (rst-font-lock-adornment-point, rst-font-lock-level)
11163 (rst-adornment-level-alist): Remove functions and variables.
11164
11165 (rst-compare-adornments, rst-get-adornment-match)
11166 (rst-suggest-new-adornment, rst-get-adornments-around)
11167 (rst-adornment-complete-p, rst-get-next-adornment)
11168 (rst-adjust-adornment, rst-display-adornments-hierarchy)
11169 (rst-straighten-adornments): Standardize function names to
11170 use "adornment" instead of "decoration". Correct callers.
11171 Similar standardizing in many places.
11172
11173 (rst-update-section, rst-adjust, rst-promote-region)
11174 (rst-enumerate-region, rst-bullet-list-region)
11175 (rst-repeat-last-character): Correct use of `interactive'.
11176
11177 (rst-classify-adornment, rst-find-all-adornments)
11178 (rst-get-hierarchy, rst-adjust-adornment, rst-toc-update)
11179 (rst-find-leftmost-column, rst-repeat-last-character):
11180 Refactor functions.
11181
11182 (rst-find-title-line, rst-reset-section-caches)
11183 (rst-get-adornments-around, rst-adjust-adornment-work)
11184 (rst-arabic-to-roman, rst-roman-to-arabic)
11185 (rst-insert-list-pos, rst-insert-list-new-item)
11186 (rst-insert-list-continue, rst-insert-list, rst-forward-line):
11187 New functions.
11188
11189 (rst-all-sections, rst-section-hierarchy)
11190 (rst-arabic-to-roman, rst-initial-enums, rst-initial-items):
11191 New variables.
11192
11193 (rst-toc-return-wincfg, rst-toc-quit-window): Use window
11194 configuration instead of only buffer. Change where necessary.
11195
11196 (rst-line-tabs, rst-compute-tabs, rst-indent-line)
11197 (rst-shift-region, rst-adaptive-fill): New functions for
11198 indentation and filling.
11199
11200 (rst-comment-line-break, rst-comment-indent)
11201 (rst-comment-insert-comment, rst-comment-region)
11202 (rst-uncomment-region): New functions for handling comments.
11203
11204 (rst-compile): Quote shell arguments.
11205
11206 (rst-compile-pdf-preview, rst-compile-slides-preview):
11207 Delete temporary files after use.
11208
11209 2012-05-05 Glenn Morris <rgm@gnu.org>
11210
11211 * calendar/cal-html.el: Optionally include holidays in the output.
11212 Suggested by Ed Reingold <reingold@emr.cs.iit.edu>.
11213 (cal-html-holidays): New option.
11214 (cal-html-css-default): Add holiday entry.
11215 (holiday-in-range): Autoload it.
11216 (cal-html-htmlify-entry): Add optional class argument.
11217 (cal-html-htmlify-list): Add optional holidays argument.
11218 (cal-html-insert-agenda-days): Include holidays in the output.
11219 (cal-html-one-month): Maybe include holidays.
11220
11221 * calendar/holidays.el (holiday-in-range):
11222 Move here from cal-tex-list-holidays.
11223 * calendar/cal-tex.el (cal-tex-list-holidays):
11224 Make it an obsolete alias for holiday-in-range. Update all callers.
11225
11226 2012-05-05 Chong Yidong <cyd@gnu.org>
11227
11228 * select.el (xselect--encode-string): Always use utf-8 for TEXT on
11229 Nextstep.
11230
11231 2012-05-05 Ransom Williams <auvergnerw@gmail.com> (tiny change)
11232
11233 * files.el (file-auto-mode-skip): New var.
11234 (set-auto-mode-1): Use it.
11235
11236 2012-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
11237
11238 * repeat.el: Use lexical-binding.
11239 (repeat-last-self-insert, repeat-num-input-keys-at-self-insert)
11240 (repeat-undo-count): Remove.
11241 (repeat):
11242 * progmodes/octave-mod.el (octave-abbrev-start):
11243 * progmodes/f90.el (f90-abbrev-start):
11244 * face-remap.el (text-scale-adjust):
11245 * kmacro.el (kmacro-call-macro): Use set-temporary-overlay-map.
11246
11247 * emacs-lisp/pcase.el (pcase--let*): New function.
11248 (pcase--expand, pcase-codegen, pcase--q1): Use it to reduce nesting
11249 a bit more.
11250 (pcase--split-pred): Be more clever about ruling out overlap between
11251 a predicate and some constant pattern.
11252 (pcase--q1): Use `null' instead of (eq foo nil).
11253
11254 * subr.el (setq-local, defvar-local): New macros.
11255 (kbd): Redefine as an alias.
11256 (with-selected-window): Leave unrelated frames alone.
11257 (set-temporary-overlay-map): New function.
11258
11259 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
11260
11261 * subr.el (user-error): New function.
11262 * window.el (switch-to-buffer):
11263 * vc/smerge-mode.el (smerge-resolve-function, smerge-resolve)
11264 (smerge-match-conflict):
11265 * simple.el (previous-matching-history-element)
11266 (next-matching-history-element, goto-history-element, undo-more)
11267 (undo-start):
11268 * progmodes/etags.el (visit-tags-table-buffer, find-tag-tag)
11269 (find-tag-noselect, find-tag-in-order, etags-goto-tag-location)
11270 (next-file, tags-loop-scan, list-tags, complete-tag):
11271 * progmodes/compile.el (compilation-loop):
11272 * mouse.el (mouse-minibuffer-check):
11273 * man.el (Man-bgproc-sentinel, Man-goto-page):
11274 * info.el (Info-find-node-2, Info-extract-pointer, Info-history-back)
11275 (Info-history-forward, Info-follow-reference, Info-menu)
11276 (Info-extract-menu-item, Info-extract-menu-counting)
11277 (Info-forward-node, Info-backward-node, Info-next-menu-item)
11278 (Info-last-menu-item, Info-next-preorder, Info-last-preorder)
11279 (Info-next-reference, Info-prev-reference, Info-index)
11280 (Info-index-next, Info-follow-nearest-node)
11281 (Info-copy-current-node-name):
11282 * imenu.el (imenu--make-index-alist)
11283 (imenu-default-create-index-function, imenu-add-to-menubar):
11284 * files.el (basic-save-buffer, recover-file):
11285 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
11286 * emacs-lisp/checkdoc.el (checkdoc-continue, checkdoc-comments)
11287 (checkdoc-message-text, checkdoc-defun):
11288 * dabbrev.el (dabbrev-completion, dabbrev--abbrev-at-point):
11289 * cus-edit.el (customize-changed-options, customize-rogue)
11290 (customize-saved, custom-variable-set, custom-variable-mark-to-save)
11291 (custom-variable-mark-to-reset-standard)
11292 (custom-variable-reset-backup, custom-face-mark-to-reset-standard)
11293 (custom-file):
11294 * completion.el (check-completion-length):
11295 * comint.el (comint-search-arg)
11296 (comint-previous-matching-input-string-position)
11297 (comint-previous-matching-input)
11298 (comint-replace-by-expanded-history-before-point, comint-send-input)
11299 (comint-copy-old-input, comint-backward-matching-input)
11300 (comint-goto-process-mark, comint-set-process-mark):
11301 * calendar/calendar.el (calendar-cursor-to-date): Use it.
11302 * bindings.el (debug-ignored-errors): Remove regexps, add `user-error'.
11303
11304 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
11305
11306 * dabbrev.el (dabbrev--ignore-case-p): New function.
11307 (dabbrev-completion, dabbrev-expand, dabbrev--substitute-expansion):
11308 Use it.
11309
11310 * files.el (automount-dir-prefix): Mark as obsolete.
11311
11312 2012-05-04 Glenn Morris <rgm@gnu.org>
11313
11314 * patcomp.el, play/bruce.el: Move to obsolete/.
11315
11316 2012-05-04 Paul Eggert <eggert@cs.ucla.edu>
11317
11318 Fix minor Y10k bugs.
11319 * arc-mode.el (archive-unixdate):
11320 * autoinsert.el (auto-insert-alist):
11321 * calc/calc-forms.el (math-this-year):
11322 * emacs-lisp/copyright.el (copyright-current-year)
11323 (copyright-update-year, copyright):
11324 * tar-mode.el (tar-clip-time-string):
11325 * time.el (display-time-update):
11326 Don't assume years have 4 digits.
11327
11328 2012-05-04 Chong Yidong <cyd@gnu.org>
11329
11330 * dos-w32.el (file-name-buffer-file-type-alist)
11331 (direct-print-region-use-command-dot-com):
11332 * ffap.el (ffap-menu-regexp):
11333 * find-file.el (ff-special-constructs):
11334 * follow.el (follow-debug):
11335 * forms.el (forms--debug):
11336 * iswitchb.el (iswitchb-all-frames):
11337 * ido.el (ido-all-frames):
11338 * emacs-lisp/timer.el (timer-max-repeats):
11339 * mail/feedmail.el (feedmail-mail-send-hook)
11340 (feedmail-mail-send-hook-queued):
11341 * mail/footnote.el (footnote-signature-separator):
11342 * mail/mailabbrev.el (mail-alias-separator-string)
11343 (mail-abbrev-mode-regexp):
11344 * mail/rmail.el (rmail-speedbar-match-folder-regexp):
11345 * progmodes/idlwave.el (idlwave-libinfo-file)
11346 (idlwave-default-completion-case-is-down)
11347 (idlwave-library-routines): Convert defvars to defcustoms.
11348
11349 * mail/rmail.el (rmail-decode-mime-charset):
11350 * progmodes/idlw-shell.el (idlwave-shell-print-expression-function)
11351 (idlwave-shell-fix-inserted-breaks)
11352 (idlwave-shell-activate-alt-keybindings)
11353 (idlwave-shell-use-breakpoint-glyph):
11354 * facemenu.el (facemenu-unlisted-faces): Delete obsolete vars.
11355
11356 2012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
11357
11358 * minibuffer.el (completion--twq-all): Beware completion-ignore-case.
11359
11360 2012-05-03 Wilson Snyder <wsnyder@wsnyder.org>
11361
11362 * progmodes/verilog-mode.el (font-lock-keywords):
11363 Fix mis-highligting auto. Reported by Craig Barner.
11364 (verilog-auto, verilog-auto-undef): Add AUTOUNDEF to remove
11365 defines from global name space. Reported by Dan Dever.
11366 (verilog-auto-reset, verilog-auto-reset-widths)
11367 (verilog-auto-tieoff): Support using unbased numbers for
11368 AUTORESET and AUTOTIEOFF.
11369 (verilog-submit-bug-report): Update variable list.
11370 (verilog-read-auto-params): Fix AUTOINPUT regexps containing
11371 parenthesis from not matching. Reported by Michael Rytting.
11372 (verilog-auto-template-lint): Fix hash error when linting modules
11373 with no used templates.
11374 (verilog-warn, verilog-warn-error)
11375 (verilog-warn-fatal): When non-interactive report multiple
11376 warnings before exiting. Suggested by Brad Dobbie.
11377 (verilog-auto-template-lint, verilog-auto-template-warn-unused)
11378 (verilog-read-auto-template): Add `verilog-auto-template-warn-unused'
11379 to report unused template errors. Reported by Brad Dobbie.
11380 (verilog-read-decls): Fix AUTOWIRE etc on supply0, supply1 type
11381 nets, bug438. Reported by Vns Blore.
11382 (verilog-auto-inout-module, verilog-auto-reg)
11383 (verilog-read-decls, verilog-read-sub-decls-sig)
11384 (verilog-signals-edit-wire-reg, verilog-signals-with):
11385 Fix passing of Verilog data types in ANSI input/output ports
11386 such as "output logic" into the AUTOs. Special case "wire" and
11387 "reg" for backwards compatibility presuming Verilog 2001.
11388 (verilog-auto-ascii-enum): Add "auto enum" as alias.
11389 (verilog-preprocess): Fix replication of preprocess output.
11390 Reported by Brad Dobbie.
11391 (verilog-auto-inst-interfaced-ports):
11392 Create verilog-auto-inst-interfaced-ports, bug429.
11393 Reported by Julian Gorfajn.
11394 (verilog-after-save-font-hook)
11395 (verilog-before-save-font-hook): New variable.
11396 (verilog-modi-cache-results, verilog-save-font-mod-hooked)
11397 (verilog-save-font-mods): Wrap disabling fontification, reported
11398 by David Rogoff.
11399 (verilog-do-indent, verilog-pretty-declarations-auto)
11400 (verilog-sk-def-reg): Fix obeying `verilog-auto-lineup', bug305.
11401 Reported by Pierre-David Pfister.
11402 (verilog-set-auto-endcomments): Fix endtask auto comments outside
11403 of class declarations, bug292. Reported by Kevin Heilman.
11404 (verilog-read-decls): Fix 'parameter type' not appearing in
11405 AUTOINSTPARAM, bug340. Reported by Jonathan Greenlaw.
11406 (verilog-auto-logic): Fix when AUTOLOGIC present to properly do
11407 AUTOINPUTs, bug411. Reported by Jonathan Greenlaw.
11408 (verilog-read-auto-lisp): Avoid syntax-ppss warning on AUTOLISP.
11409 Reported by David Kravitz.
11410
11411 2012-05-03 Michael McNamara <mac@mail.brushroad.com>
11412
11413 * progmodes/verilog-mode.el (verilog-pretty-expr): Don't line up
11414 assignment with tests in ifs and for loops.
11415 (verilog-extended-complete-re, verilog-complete-reg): Change so
11416 that DPI inport functions don't look like fuction declarations.
11417 (verilog-pretty-expr): Don't line up assignment
11418 operations to the test and increment in if and for loops
11419 (verilog-extended-complete-re, verilog-complete-reg): Change so
11420 that DPI inport functions don't look like fuction declarations.
11421
11422 2012-05-03 Kenichi Handa <handa@m17n.org>
11423
11424 * mail/rmailmm.el (rmail-show-mime): Catch an error caused by text
11425 decoding, and show a warning message without signaling an error
11426 (Bug#11282).
11427
11428 2012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
11429
11430 * emacs-lisp/bytecomp.el
11431 (byte-compile-file-form-custom-declare-variable): Compile all elements,
11432 since cconv.el might have introduced :fun-body, internal-make-closure,
11433 and friends for bytecomp to handle (bug#11391).
11434 * custom.el (defcustom): Avoid ((λ ..) ..).
11435
11436 2012-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
11437
11438 * subr.el (read-passwd): Better clean after ourselves (bug#11392).
11439
11440 2012-05-02 Juanma Barranquero <lekktu@gmail.com>
11441
11442 * notifications.el (dbus-debug):
11443 * term/linux.el (gpm-mouse-enable):
11444 * term/screen.el (xterm-register-default-colors): Declare.
11445
11446 2012-05-02 Chong Yidong <cyd@gnu.org>
11447
11448 * cus-start.el (gc-cons-percentage, exec-suffixes)
11449 (dos-display-scancodes, dos-hyper-key, dos-super-key)
11450 (dos-keypad-mode, debug-on-signal, vertical-centering-font-regexp)
11451 (make-cursor-line-fully-visible, void-text-area-pointer)
11452 (font-list-limit): Add customization data.
11453
11454 * allout.el (allout-exposure-change-functions)
11455 (allout-structure-added-functions)
11456 (allout-structure-deleted-functions)
11457 (allout-structure-shifted-functions): Rename abnormal hooks from
11458 *-hook, and convert to defcustoms.
11459 (allout-after-copy-or-kill-hook, allout-post-undo-hook):
11460 Convert to defcustoms.
11461 (allout-mode-hook, allout-mode-deactivate-hook): Doc fix.
11462
11463 * allout-widgets.el: Hook callers changed.
11464
11465 2012-05-02 Eli Zaretskii <eliz@gnu.org>
11466
11467 * mail/rmail.el (rmail-yank-current-message): Use the encoding of
11468 the yanked message in preference to the default value of
11469 buffer-file-coding-system.
11470
11471 2012-05-02 Martin Rudalics <rudalics@gmx.at>
11472
11473 * window.el (display-buffer--action-function-custom-type):
11474 Fix entry.
11475
11476 2012-05-02 Alan Mackenzie <acm@muc.de>
11477
11478 * progmodes/cc-defs.el (c-version): Update to 5.32.3.
11479
11480 2012-05-01 Glenn Morris <rgm@gnu.org>
11481
11482 * cus-start.el (suggest-key-bindings): Remove, now it is in Lisp.
11483
11484 * eshell/esh-cmd.el (eshell-debug-command): Doc fix. Add :set.
11485
11486 * cus-edit.el (custom-variable-documentation): Simplify with format.
11487
11488 2012-05-01 Aaron S. Hawley <aaron.s.hawley@gmail.com>
11489 Stefan Monnier <monnier@iro.umontreal.ca>
11490
11491 * simple.el (suggest-key-bindings, execute-extended-command):
11492 Move from keyboard.c.
11493
11494 2012-05-01 Chong Yidong <cyd@gnu.org>
11495
11496 * follow.el: Eliminate advice.
11497 (set-process-filter, process-filter, sit-for): Advice deleted.
11498 (follow-mode-off-hook): Obsolete hook removed.
11499 (follow-avoid-tail-recenter-p, follow-process-filter-alist):
11500 Vars deleted.
11501 (follow-auto): Use a :set function.
11502 (follow-mode): Rewritten. Don't advise process filters.
11503 (follow-switch-to-current-buffer-all, follow-scroll-up)
11504 (follow-scroll-down): Assume follow-mode is bound.
11505 (follow-comint-scroll-to-bottom)
11506 (follow-align-compilation-windows): New functions.
11507 (follow--window-sorter): New function.
11508 (follow-all-followers): Use it to explicitly sort windows by their
11509 positions; don't make assumptions about next-window order.
11510 (follow-windows-start-end, follow-delete-other-windows-and-split)
11511 (follow-calc-win-start): Doc fix.
11512 (follow-windows-aligned-p, follow-select-if-visible): Don't call
11513 vertical-motion unnecessarily.
11514 (follow-adjust-window): New function.
11515 (follow-post-command-hook): Use it.
11516 (follow-call-set-process-filter, follow-call-process-filter)
11517 (follow-intercept-process-output, follow-tidy-process-filter-alist)
11518 (follow-stop-intercept-process-output, follow-generic-filter):
11519 Functions deleted.
11520 (follow-scroll-bar-toolkit-scroll, follow-scroll-bar-drag)
11521 (follow-scroll-bar-scroll-up, follow-scroll-bar-scroll-down):
11522 New functions, replacing advice on scroll-bar-* commands.
11523 (follow-mwheel-scroll): New function (Bug#4112).
11524
11525 * comint.el (comint-adjust-point): New function.
11526 (comint-postoutput-scroll-to-bottom): Use it.
11527 Call follow-comint-scroll-to-bottom for Follow mode buffers.
11528
11529 2012-05-01 Glenn Morris <rgm@gnu.org>
11530
11531 * term/AT386.el, term/apollo.el, term/bobcat.el, term/cygwin.el:
11532 * term/iris-ansi.el, term/linux.el, term/lk201.el, term/news.el:
11533 * term/screen.el, term/vt102.el, term/vt125.el, term/vt200.el:
11534 * term/vt201.el, term/vt220.el, term/vt240.el, term/vt300.el:
11535 * term/vt320.el, term/vt400.el, term/vt420.el, term/wyse50.el:
11536 Remove no-byte-compile setting.
11537
11538 2012-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
11539
11540 * minibuffer.el (completion-table-with-quoting): Fix compatibility
11541 all-completions code to not return a number in the last cdr.
11542
11543 2012-04-30 Leo Liu <sdl.web@gmail.com>
11544
11545 * ibuf-ext.el (ibuffer-diff-buffer-with-file-1): Avoid buffer
11546 read-only error.
11547
11548 2012-04-29 Chong Yidong <cyd@gnu.org>
11549
11550 * follow.el (follow-calc-win-end): Rewrite to handle partial
11551 screen lines correctly (Bug#8390).
11552 (follow-avoid-tail-recenter): Minor cleanup.
11553
11554 2012-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
11555
11556 Avoid the obsolete `assoc' package.
11557 * speedbar.el (speedbar-refresh): Avoid adelete.
11558 (speedbar-file-lists): Simplify and avoid aput.
11559 * man.el (Man--sections, Man--refpages): New vars, replacing
11560 Man-sections-alist and Man-refpages-alist.
11561 (Man-build-section-alist, Man-build-references-alist):
11562 Use them; avoid aput.
11563 (Man--last-section, Man--last-refpage): New vars.
11564 (Man-follow-manual-reference): Use them.
11565 Use the `default' arg of completing-read.
11566 (Man-goto-section): Idem. Move prompt to the `interactive' spec.
11567
11568 2012-04-27 Chong Yidong <cyd@gnu.org>
11569
11570 * vc/diff.el (diff-sentinel): Go to bob (Bug#10259).
11571
11572 * startup.el (x-apply-session-resources): New function.
11573
11574 * term/ns-win.el (ns-initialize-window-system):
11575 * term/w32-win.el (w32-initialize-window-system):
11576 * term/x-win.el (x-initialize-window-system): Use it to properly
11577 set menu-bar-mode and other vars from X resources, even if the
11578 initial frame is not a window-system frame (Bug#2299).
11579
11580 * subr.el (read-key): Avoid running filter function when setting
11581 up temporary tool bar entries (Bug#9922).
11582
11583 2012-04-27 Andreas Schwab <schwab@linux-m68k.org>
11584
11585 * vc/vc-git.el (vc-git-state): Fix regexp matching diff output.
11586 (Bug#11344)
11587
11588 2012-04-27 Chong Yidong <cyd@gnu.org>
11589
11590 * select.el (xselect--encode-string): New function, split from
11591 xselect-convert-to-string.
11592 (xselect-convert-to-string): Use it.
11593 (xselect-convert-to-filename, xselect-convert-to-os)
11594 (xselect-convert-to-host, xselect-convert-to-user): Ensure that
11595 returned strings are properly encoded (Bug#11315).
11596
11597 2012-04-27 Chong Yidong <cyd@gnu.org>
11598
11599 * simple.el (delete-active-region): Move to killing custom group.
11600
11601 2012-04-27 Andreas Schwab <schwab@linux-m68k.org>
11602
11603 * progmodes/which-func.el (which-func-current): Quote %
11604 characters for mode-line processing.
11605
11606 2012-04-27 Chong Yidong <cyd@gnu.org>
11607
11608 * xml.el (xml-parse-region, xml-parse-tag): Avoid errors due to
11609 reaching eob (Bug#11286).
11610
11611 2012-04-27 Eli Zaretskii <eliz@gnu.org>
11612
11613 * progmodes/gdb-mi.el (gdb-control-level): New variable.
11614 (gdb): Make it buffer-local and init to zero.
11615 (gdb-control-commands-regexp): New variable.
11616 (gdb-send): Don't wrap in "-interpreter-exec console" if
11617 gdb-control-level is positive. Increment gdb-control-level
11618 whenever the command matches gdb-control-commands-regexp, and
11619 decrement it each time the command is "end". (Bug#11279)
11620
11621 2012-04-27 Martin Rudalics <rudalics@gmx.at>
11622
11623 * window.el (adjust-window-trailing-edge, enlarge-window)
11624 (shrink-window, window-resize):
11625 * mouse.el (mouse-drag-line): Fix resizing of minibuffer
11626 windows (Bug#11276).
11627
11628 2012-04-27 Chong Yidong <cyd@gnu.org>
11629
11630 * progmodes/pascal.el (pascal--extra-indent): Rename from ind, to
11631 fix "missing prefix" warning. All callers changed.
11632
11633 2012-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
11634
11635 * emacs-lisp/assoc.el: Move to obsolete/.
11636
11637 2012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
11638
11639 * emacs-lisp/assoc.el (aget): Fix dynamic-scoping issue (bug#11352).
11640
11641 * term/ns-win.el (ns-define-service):
11642 * progmodes/pascal.el (pascal-goto-defun):
11643 * progmodes/js.el (js--read-tab):
11644 * progmodes/etags.el (tags-lazy-completion-table):
11645 * emacs-lisp/syntax.el (syntax-propertize-via-font-lock):
11646 * emacs-lisp/ewoc.el (ewoc--wrap):
11647 * emacs-lisp/assoc.el (aput, adelete, amake):
11648 * doc-view.el (doc-view-convert-current-doc):
11649 * vc/diff.el (diff-no-select): Replace lexical-let by lexical-binding.
11650
11651 2012-04-26 Chong Yidong <cyd@gnu.org>
11652
11653 * image.el (image-type-from-buffer): Only return supported image
11654 type (Bug#9045).
11655
11656 * vc/diff-mode.el (diff-beginning-of-hunk): Return a meaningful
11657 value, for symmetry with diff-end-of-hunk.
11658 (diff-split-hunk, diff-find-source-location)
11659 (diff-ignore-whitespace-hunk, diff-refine-hunk): Use it.
11660 (diff-bounds-of-hunk, diff-bounds-of-file): New functions.
11661 (diff-restrict-view, diff-hunk-kill, diff-file-kill): Use them to
11662 compute the relevant hunk or file properly (Bug#6005).
11663 (diff-file-junk-re): Add bzr's "modified file" tag (Bug#6041).
11664
11665 2012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
11666
11667 * vc/vc-mtn.el:
11668 * vc/vc-hg.el:
11669 * vc/vc-git.el:
11670 * vc/vc-dir.el:
11671 * vc/vc-cvs.el:
11672 * vc/vc-bzr.el:
11673 * vc/vc-arch.el:
11674 * vc/vc.el: Replace lexical-let by lexical-binding.
11675 * minibuffer.el (lazy-completion-table): Avoid ((λ ...) ...).
11676 * emacs-lisp/cl-macs.el (lexical-let): Fix use in lexical-binding.
11677 * emacs-lisp/cconv.el (cconv-analyse-form): Warn use of ((λ ...) ...).
11678
11679 2012-04-26 Chong Yidong <cyd@gnu.org>
11680
11681 * vc/diff-mode.el (diff-undo): New command (Bug#5302).
11682 (diff-mode-shared-map): Bind it to / and [remap undo].
11683
11684 * vc/ediff-wind.el (ediff-setup-windows-default): New function.
11685 (ediff-window-setup-function): Use it as the default, to set up
11686 windows based on whether the current frame is graphical (Bug#2138).
11687 (ediff-choose-window-setup-function-automatically): Make obsolete.
11688
11689 * vc/ediff-init.el: Always define ediff-pixel-width/height.
11690
11691 2012-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
11692
11693 * ffap.el: Remove old code for obsolete package.
11694 (ffap-complete-as-file-p): Remove.
11695
11696 Use completion-table-with-quoting for comint and pcomplete.
11697 * comint.el (comint--unquote&requote-argument)
11698 (comint--unquote-argument, comint--requote-argument): New functions.
11699 (comint--unquote&expand-filename, comint-unquote-filename): Obsolete.
11700 (comint-quote-filename): Use regexp-opt-charset.
11701 (comint--common-suffix, comint--common-quoted-suffix)
11702 (comint--table-subvert): Remove.
11703 (comint-unquote-function, comint-requote-function): New vars.
11704 (comint--complete-file-name-data): Use them with
11705 completion-table-with-quoting.
11706 * pcmpl-unix.el (pcomplete/scp): Use completion-table-subvert.
11707 * pcomplete.el (pcomplete-arg-quote-list)
11708 (pcomplete-quote-arg-hook, pcomplete-quote-argument): Obsolete.
11709 (pcomplete-unquote-argument-function): Default to non-nil.
11710 (pcomplete-unquote-argument): Simplify.
11711 (pcomplete--common-quoted-suffix): Remove.
11712 (pcomplete-requote-argument-function): New var.
11713 (pcomplete--common-suffix): New function.
11714 (pcomplete-completions-at-point): Use completion-table-with-quoting
11715 and completion-table-subvert.
11716
11717 * minibuffer.el: Use completion-table-with-quoting for read-file-name.
11718 (minibuffer--double-dollars): Preserve properties.
11719 (completion--sifn-requote): New function.
11720 (completion--file-name-table): Rewrite using it and c-t-with-quoting.
11721
11722 * minibuffer.el: Add support for completion of quoted/escaped data.
11723 (completion-table-with-quoting, completion-table-subvert): New funs.
11724 (completion--twq-try, completion--twq-all): New functions.
11725 (completion--nth-completion): New function.
11726 (completion-try-completion, completion-all-completions): Use it.
11727
11728 2012-04-25 Leo Liu <sdl.web@gmail.com>
11729
11730 * progmodes/python.el (python-pdbtrack-get-source-buffer):
11731 Use compilation-message if available to find real filename.
11732
11733 2012-04-25 Chong Yidong <cyd@gnu.org>
11734
11735 * vc/diff-mode.el (diff-setup-whitespace): New function.
11736 (diff-mode): Use it.
11737
11738 * vc/diff.el (diff-sentinel):
11739 * vc/vc.el (vc-diff-finish): Call diff-setup-whitespace to assign
11740 Whitespace mode variables based on diff style (Bug#8612).
11741
11742 2012-04-25 Leo Liu <sdl.web@gmail.com>
11743
11744 * progmodes/python.el (python-send-region): Add suffix .py to the
11745 temp file.
11746
11747 * files.el (auto-mode-alist): Use javascript-mode instead.
11748
11749 2012-04-25 Alex Harsanyi <AlexHarsanyi@gmail.com>
11750
11751 Sync with soap-client repository. Support SOAP simpleType (Bug#10331).
11752
11753 * net/soap-client.el (soap-resolve-references-for-sequence-type)
11754 (soap-resolve-references-for-array-type): Hack to prevent self
11755 references, see Bug#9.
11756 (soap-parse-envelope): Report the contents of the 'detail' node
11757 when receiving a fault reply.
11758 (soap-parse-envelope): Report the contents of the entire 'detail' node.
11759
11760 * net/soap-inspect.el (soap-sample-value-for-simple-type)
11761 (soap-inspect-simple-type): New function.
11762
11763 * net/soap-client.el (soap-simple-type): New struct.
11764 (soap-default-xsd-types, soap-default-soapenc-types)
11765 (soap-decode-basic-type, soap-encode-basic-type):
11766 support unsignedInt and double basic types.
11767 (soap-resolve-references-for-simple-type)
11768 (soap-parse-simple-type, soap-encode-simple-type): New function.
11769 (soap-parse-schema): Parse xsd:simpleType declarations.
11770
11771 * net/soap-client.el (soap-default-xsd-types)
11772 (soap-default-soapenc-types): Add integer, byte and anyURI types.
11773 (soap-parse-complex-type-complex-content): Use `soap-wk2l' to find
11774 the local name of "soapenc:Array".
11775 (soap-decode-basic-type, soap-encode-basic-type): Support encoding
11776 decoding integer, byte and anyURI xsd types.
11777
11778 2012-04-25 Chong Yidong <cyd@gnu.org>
11779
11780 * cus-edit.el (custom-buffer-create-internal): Update header text.
11781
11782 2012-04-25 Eli Zaretskii <eliz@gnu.org>
11783
11784 * progmodes/gdb-mi.el (gdb-init-1): Condition Windows-specific
11785 settings on 'system-type', not on 'window-system'. On MS-Windows,
11786 set interactive-mode on in GDB.
11787
11788 2012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
11789
11790 * progmodes/ruby-mode.el: Simplify last change, and cleanup code.
11791 (ruby-syntax-propertize-regexp): Remove.
11792 (ruby-syntax-propertize-function): Split regexp into chunks.
11793 Match following code directly.
11794
11795 2012-04-24 Dmitry Gutov <dgutov@yandex.ru>
11796
11797 * progmodes/ruby-mode.el: Handle Cucumber defs (bug#6286).
11798 (ruby-syntax-propertize-regexp): New function.
11799 (ruby-syntax-propertize-function): Use it to handle regexp not preceded
11800 by a special keyword.
11801
11802 * progmodes/ruby-mode.el: Handle general delimited literals (bug#6286).
11803 (ruby-syntax-general-delimiters-goto-beg)
11804 (ruby-syntax-propertize-general-delimiters): New functions.
11805 (ruby-syntax-propertize-function): Use them to handle GDL.
11806 (ruby-font-lock-keywords): Move old handling of GDL...
11807 (ruby-font-lock-syntactic-keywords): .. to here.
11808 (ruby-calculate-indent): Adjust indentation for GDL.
11809
11810 2012-04-24 Michael Albinus <michael.albinus@gmx.de>
11811
11812 * notifications.el (top): Remove unneeded declarations.
11813 (notifications-specification-version): Change to "1.2".
11814 (notifications-interface, notifications-notify-method)
11815 (notifications-close-notification-method): Fix docstring.
11816 (notifications-get-capabilities-method): New defconst.
11817 (notifications-notify): Add :action-items, :resident and
11818 :transient hints. Change "image_data" to "image-data" and
11819 "image_path" to "image-path".
11820 (notifications-get-capabilities): New defun.
11821
11822 2012-04-24 Leo Liu <sdl.web@gmail.com>
11823
11824 * progmodes/python.el: Move hideshow setup to the end.
11825
11826 2012-04-24 Martin Rudalics <rudalics@gmx.at>
11827
11828 * window.el (handle-select-window): Clear echo area since this is
11829 no more done by read_char (Bug#11304).
11830
11831 2012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
11832
11833 * ibuffer.el (ibuffer-mode-map): Bind `/ m' to filter-used-mode
11834 and `/ M' to filter-derived-mode.
11835 * ibuf-ext.el (ibuffer-list-buffer-modes): Simplify; avoid add-to-list.
11836 (ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
11837 (ibuffer-mark-by-mode): Use default rather than initial-input.
11838 (ibuffer-filter-by-derived-mode): Autoload and require-match.
11839
11840 2012-04-24 Ivan Andrus <darthandrus@gmail.com> (tiny change)
11841
11842 * ibuf-ext.el (ibuffer-list-buffer-modes): Add `include-parents' arg.
11843 (ibuffer-filter-by-derived-mode): New filter.
11844 * ibuffer.el (ibuffer-mode-map): Bind to `/ w'.
11845
11846 2012-04-23 Andreas Politz <politza@fh-trier.de>
11847
11848 * subr.el (accept-change-group): Fix arg usage (Bug#6095).
11849
11850 2012-04-23 Chong Yidong <cyd@gnu.org>
11851
11852 * cus-edit.el (customize-apropos, customize-apropos-options):
11853 Disable matching of non-option variables (Bug#11176).
11854 (customize-option, customize-option-other-window)
11855 (customize-changed-options): Doc fix.
11856 (customize-apropos-options, customize-apropos-faces)
11857 (customize-apropos-groups): Use apropos-read-pattern (Bug#11124).
11858
11859 * apropos.el (apropos-read-pattern): Make prompt less cryptic.
11860 Fix word list splitting (Bug#11132).
11861 (apropos-symbol, apropos-keybinding, apropos-label)
11862 (apropos-property, apropos-function-button)
11863 (apropos-variable-button, apropos-misc-button): New faces.
11864 (apropos-symbol-face, apropos-keybinding-face)
11865 (apropos-label-face, apropos-property-face, apropos-match-face):
11866 Variables removed (Bug#8396).
11867 (apropos-library-button, apropos-format-plist, apropos-print)
11868 (apropos-print-doc, apropos-describe-plist): Callers changed.
11869
11870 2012-04-23 Michael Albinus <michael.albinus@gmx.de>
11871
11872 * net/xesam.el (xesam-mode-map): Use let-bound map in
11873 initialization. (Bug#11292)
11874
11875 2012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
11876
11877 Preserve ispell session localwords when switching back to
11878 original buffer.
11879
11880 * textmodes/ispell.el (ispell-buffer-session-localwords):
11881 New buffer-local variable to hold buffer session localwords.
11882 (ispell-kill-ispell): Add option 'clear to delete session
11883 localwords.
11884 (ispell-command-loop, ispell-change-dictionary)
11885 (ispell-buffer-local-words): Preserve session localwords when
11886 needed.
11887
11888 * textmodes/flyspell.el (flyspell-process-localwords)
11889 (flyspell-do-correct): Preserve session localwords when needed.
11890
11891 2012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
11892
11893 * textmodes/ispell.el (ispell-insert-word) Remove unneeded function
11894 using obsolete `translation-table-for-input'.
11895 (ispell-word, ispell-process-line, ispell-complete-word):
11896 Use plain `insert' instead of removed `ispell-insert-word'.
11897
11898 2012-04-22 Chong Yidong <cyd@gnu.org>
11899
11900 * cus-edit.el (custom-variable-menu)
11901 (custom-variable-reset-saved, custom-face-menu)
11902 (custom-face-reset-saved): If there is no saved value, make the
11903 "reset-saved" operation bring back the default (Bug#9509).
11904 (custom-face-state): Properly detect themed faces.
11905
11906 * faces.el (face-spec-set): Stop supporting deprecated form of
11907 third arg.
11908
11909 2012-04-22 Michael Albinus <michael.albinus@gmx.de>
11910
11911 Move functions from C to Lisp. Make non-blocking method calls
11912 the default. Implement further D-Bus standard interfaces.
11913
11914 * net/dbus.el (dbus-message-internal): Declare function.
11915 Remove unneeded function declarations.
11916 (defvar dbus-message-type-invalid, dbus-message-type-method-call)
11917 (dbus-message-type-method-return, dbus-message-type-error)
11918 (dbus-message-type-signal): Declare variables. Remove local
11919 definitions.
11920 (dbus-interface-dbus, dbus-interface-peer)
11921 (dbus-interface-introspectable, dbus-interface-properties)
11922 (dbus-path-emacs, dbus-interface-emacs, dbus-return-values-table):
11923 Adapt docstring.
11924 (dbus-interface-objectmanager): New defconst.
11925 (dbus-call-method, dbus-call-method-asynchronously)
11926 (dbus-send-signal, dbus-method-return-internal)
11927 (dbus-method-error-internal, dbus-register-service)
11928 (dbus-register-signal, dbus-register-method): New defuns, moved
11929 from dbusbind.c
11930 (dbus-call-method-handler, dbus-setenv)
11931 (dbus-get-all-managed-objects, dbus-managed-objects-handler):
11932 New defuns.
11933 (dbus-call-method-non-blocking): Make it an obsolete function.
11934 (dbus-unregister-object, dbus-unregister-service)
11935 (dbus-handle-event, dbus-register-property)
11936 (dbus-property-handler): Obey the new structure of
11937 `bus-registered-objects'.
11938 (dbus-introspect): Use `dbus-call-method'. Use a timeout.
11939 (dbus-get-property, dbus-set-property, dbus-get-all-properties):
11940 Use `dbus-call-method'.
11941
11942 2012-04-22 Chong Yidong <cyd@gnu.org>
11943
11944 * cus-edit.el (custom-commands, custom-reset-menu)
11945 (Custom-reset-standard): Tweak labels.
11946 (custom-reset-button-menu): Change default to t.
11947 (custom-buffer-create-internal): For the custom-reset-button-menu
11948 case, put the revert button first.
11949 (custom-group-subtitle): New face.
11950 (custom-group-value-create): Align docstring to a specific column.
11951
11952 * wid-edit.el (widget-documentation-link-add): Don't handle
11953 indentation in this function.
11954 (widget-documentation-string-indent-to): New function.
11955 (widget-documentation-string-value-create): Use it.
11956
11957 * autorevert.el (auto-revert):
11958 * epg-config.el (epg):
11959 * ibuffer.el (ibuffer):
11960 * mpc.el (mpc):
11961 * ses.el (ses):
11962 * eshell/eshell.el (eshell):
11963 * net/ange-ftp.el (ange-ftp):
11964 * progmodes/ebnf2ps.el (postscript):
11965 * progmodes/flymake.el (flymake):
11966 * progmodes/prolog.el (prolog):
11967 * progmodes/verilog-mode.el (verilog-mode):
11968 * progmodes/which-func.el (which-func):
11969 * term/xterm.el (xterm):
11970 * textmodes/picture.el (picture):
11971 * textmodes/tildify.el (tildify):
11972 * vc/ediff.el (ediff): Tweak defgroups to improve presentation in
11973 customization buffers.
11974
11975 2012-04-22 Alan Mackenzie <acm@muc.de>
11976
11977 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
11978 Adding a ) can hide the resulting (..) from searches. Fix it.
11979 Bound the backward search to the position of the existing (.
11980
11981 2012-04-21 Juanma Barranquero <lekktu@gmail.com>
11982
11983 * progmodes/verilog-mode.el (verilog-mode): Check whether
11984 which-func-modes is t before adding verilog-mode.
11985 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
11986
11987 2012-04-21 Leo Liu <sdl.web@gmail.com>
11988
11989 * net/rcirc.el (rcirc): Avoid error when process-contact returns t.
11990
11991 2012-04-21 Michael Vehrs <Michael.Burschik@gmx.de>
11992
11993 * woman.el: Add support for "T{ T}" tbl syntax, and fix the
11994 filling of the last column of a table (Bug#5635).
11995 (woman-find-next-control-line): New arg, specifying an additional
11996 regexp component for the control line.
11997 (woman2-roff-buffer): Use it.
11998 (woman-break-table): New function.
11999 (woman2-TS): Use it.
12000
12001 2012-04-21 Chong Yidong <cyd@gnu.org>
12002
12003 * woman.el (woman-set-buffer-display-table, woman-decode-region)
12004 (woman-horizontal-escapes, woman-negative-vertical-space)
12005 (woman-tab-to-tab-stop, woman2-fc, woman2-TS)
12006 (WoMan-warn-ignored): Use ?\s instead of ?\ .
12007
12008 2012-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
12009
12010 * minibuffer.el (completion-file-name-table): Complete user names.
12011
12012 2012-04-20 Leo Liu <sdl.web@gmail.com>
12013
12014 * font-lock.el (lisp-font-lock-keywords-2): Add pcase, pcase-let
12015 and pcase-let*.
12016
12017 2012-04-20 Chong Yidong <cyd@gnu.org>
12018
12019 * server.el (server-execute): Respect initial-buffer-choice if it
12020 is a string and there are no files to open (Bug#2825).
12021 (server-create-window-system-frame, server-create-tty-frame):
12022 Don't switch buffers here.
12023 (server-process-filter): Only try to open a window system frame if
12024 compiled with graphical support (Bug#8314).
12025
12026 2012-04-20 Dan Nicolaescu <dann@gnu.org>
12027
12028 * battery.el (battery-echo-area-format): Display remaining time
12029 for sysfs backend too (Bug#11269).
12030 (battery-linux-sysfs): Fix conditional for the charge.
12031
12032 2012-04-20 Chong Yidong <cyd@gnu.org>
12033
12034 * progmodes/gdb-mi.el (gdb): Revert previous change.
12035 (gdb-inferior-io--init-proc): New function.
12036 (gdb-init-1): Use it.
12037 (gdb-inferior-io-sentinel): New sentinel for the gdb-inferior pty,
12038 responsible for allocating a new pty and hooking it to gdb when
12039 the old pty gets an EIO due to process exit.
12040 (gdb-delchar-or-quit): New command. Bind it in gdb-mi buffers.
12041 (gdb-tooltip-print): Don't use obsolete tooltip-use-echo-area.
12042 (gdb-inferior-io--maybe-delete-pty): Move into gdb-reset.
12043
12044 2012-04-20 Eli Zaretskii <eliz@gnu.org>
12045
12046 * window.el (window-min-size, window-sizable, window-min-delta)
12047 (window-max-delta, window--resizable, window-resizable)
12048 (window-total-size, window-full-height-p, window-full-width-p)
12049 (window-in-direction, window--resize-mini-window, window-resize)
12050 (window--resize-child-windows-normal)
12051 (window--resize-child-windows, window--resize-siblings)
12052 (window--resize-this-window, adjust-window-trailing-edge)
12053 (enlarge-window, shrink-window): Doc fixes.
12054
12055 2012-04-20 Chong Yidong <cyd@gnu.org>
12056
12057 * progmodes/gdb-mi.el (gdb-inferior-io--maybe-delete-pty):
12058 New function to call delete-process on the gdb-inferior buffer's pty.
12059 (gdb-reset): Use it, instead of relying on kill-buffer to kill the
12060 pty process (Bug#11273).
12061 (gdb-update): New arg to suppress talking to the gdb process.
12062 (gdb-done-or-error): Use it.
12063 (gdb-stopped-functions): Rename from gdb-stopped-hooks.
12064 (gdb): Call gdb-inferior-io--maybe-delete-pty as a workaround for
12065 sentinel not being called.
12066
12067 * comint.el (make-comint-in-buffer, comint-exec): Doc fix.
12068
12069 * progmodes/grep.el (grep, rgrep): Doc fix (Bug#11268).
12070
12071 2012-04-20 Glenn Morris <rgm@gnu.org>
12072
12073 * net/network-stream.el (open-network-stream): Doc fix.
12074
12075 2012-04-20 Chong Yidong <cyd@gnu.org>
12076
12077 * emacs-lisp/tabulated-list.el (tabulated-list-print): Fix typos.
12078
12079 2012-04-20 Alan Mackenzie <acm@muc.de>
12080
12081 Ensure searching for keywords is case sensitive.
12082
12083 * progmodes/cc-cmds.el (c-electric-brace, c-electric-lt-gt)
12084 (c-electric-paren, c-beginning-of-defun, c-end-of-defun)
12085 (c-defun-name, c-mark-function, c-cpp-define-name)
12086 (c-comment-indent, c-scan-conditionals, c-indent-defun)
12087 (c-context-line-break): Bind case-fold-search to nil.
12088
12089 * progmodes/cc-mode.el (c-font-lock-fontify-region):
12090 Bind case-fold-search to nil.
12091
12092 2012-04-20 Chong Yidong <cyd@gnu.org>
12093
12094 * mail/sendmail.el (mail-bury): Call return action with the right
12095 Rmail buffer (Bug#11242).
12096
12097 * server.el (server-process-filter): Handle corner case where both
12098 tty and nowait options are present (Bug#11102).
12099
12100 2012-04-20 Eli Zaretskii <eliz@gnu.org>
12101
12102 * version.el (emacs-bzr-version, emacs-bzr-get-version): Doc fixes.
12103 (top level): Put into the executable the ident-style '$Id:' tag on
12104 windows-nt as well.
12105
12106 2012-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
12107
12108 * electric.el (electric-indent-post-self-insert-function): Check that
12109 electric-indent-mode is enabled in current buffer.
12110
12111 2012-04-19 Juanma Barranquero <lekktu@gmail.com>
12112
12113 * imenu.el (imenu-progress-message): Restore; it is "used" in
12114 erc/erc-imenu.el and net/snmp-mode.el.
12115
12116 2012-04-19 Juanma Barranquero <lekktu@gmail.com>
12117
12118 * avoid.el (mouse-avoidance-mode): Mark unused arg.
12119 (mouse-avoidance-nudge-mouse): Remove unused binding.
12120
12121 * bs.el (bs-toggle-readonly): Call `toggle-read-only' interactively.
12122
12123 * descr-text.el (describe-char):
12124 * progmodes/python.el (python-describe-symbol):
12125 Don't call `toggle-read-only', set `buffer-read-only'.
12126
12127 * imenu.el (imenu-default-goto-function): Mark unused args.
12128 (imenu-progress-message): Remove obsolete macro; all callers changed.
12129
12130 * subr.el (keymap-canonicalize): Remove unused binding.
12131 (read-passwd): Mark unused arg.
12132
12133 * tutorial.el (tutorial--display-changes): Remove unused binding.
12134 (tutorial--save-tutorial-to): Remove unused variable.
12135
12136 * emacs-lisp/package.el (define-package, package-menu-mark-delete)
12137 (package-menu-mark-install, package-menu-mark-unmark): Mark unused args.
12138 (package-generate-autoloads, package-menu--generate)
12139 (package-menu--find-upgrades): Remove unused bindings.
12140
12141 * emulation/cua-rect.el (cua-restrict-regexp-rectangle)
12142 (cua-restrict-prefix-rectangle): Doc fixes. Remove unused bindings.
12143 (cua--mouse-ignore, cua--delete-rectangle, cua--extract-rectangle)
12144 (cua--indent-rectangle, cua-open-rectangle, cua-close-rectangle)
12145 (cua-blank-rectangle, cua-string-rectangle, cua-replace-in-rectangle)
12146 (cua-incr-rectangle, cua-sequence-rectangle, cua--convert-rectangle-as)
12147 (cua--rectangle-aux-replace, cua--left-fill-rectangle)
12148 (cua-scroll-rectangle-up, cua-scroll-rectangle-down)
12149 (cua-delete-char-rectangle): Mark unused args.
12150 (cua-align-rectangle): Remove unused binding.
12151
12152 * mail/rmail.el (compilation--message->loc)
12153 (epa--find-coding-system-for-mime-charset): Declare.
12154
12155 * net/dbus.el (dbus-register-service): Declare.
12156 (dbus-name-owner-changed-handler): Remove unused binding.
12157
12158 * nxml/nxml-mode.el (nxml-electric-slash, nxml-in-mixed-content-p)
12159 (nxml-compute-indent-from-matching-start-tag): Remove unused variables.
12160 (nxml-scan-backward-within): Mark unused arg.
12161 (nxml-dynamic-markup-word): Remove unused binding.
12162
12163 * mouse.el (mouse-menu-major-mode-map):
12164 * emacs-lisp/authors.el (authors-scan-change-log)
12165 (authors-add-to-author-list):
12166 * emacs-lisp/avl-tree.el (avl-tree--enter-balance):
12167 * emacs-lisp/smie.el (smie-auto-fill):
12168 * mail/sendmail.el (mail-bury):
12169 * mail/unrmail.el (unrmail):
12170 * net/tls.el (open-tls-stream):
12171 * textmodes/picture.el (picture-mouse-set-point):
12172 Remove unused bindings.
12173
12174 2012-04-19 Michael Albinus <michael.albinus@gmx.de>
12175
12176 * net/tramp.el (tramp-action-password): Let-bind
12177 `enable-recursive-minibuffers' to t.
12178
12179 2012-04-18 Sam Steingold <sds@gnu.org>
12180
12181 * progmodes/gud.el (gud-key-prefix): Use :type 'key-sequence
12182 instead of 'string to accommodate values like [f11].
12183 Always use `vconcat' instead of `concat' on it, like in `gud-def'.
12184 * progmodes/gdb-mi.el: Likewise.
12185
12186 2012-04-18 Leo Liu <sdl.web@gmail.com>
12187
12188 * abbrev.el (edit-abbrevs): Move point to the abbrev table of
12189 current buffer.
12190 (prepare-abbrev-list-buffer): Enter edit-abbrevs-mode only if
12191 LOCAL is nil.
12192
12193 2012-04-18 Chong Yidong <cyd@gnu.org>
12194
12195 * simple.el (line-move): Use forward-line if in batch mode
12196 (Bug#11053).
12197
12198 2012-04-18 Christopher Schmidt <christopher@ch.ristopher.com>
12199
12200 * files.el (after-find-file): Do not try to add a final newline if
12201 the buffer is read-only (Bug#11156).
12202
12203 2012-04-17 Richard Stallman <rms@gnu.org>
12204
12205 * mail/rmail.el (rmail-start-mail):
12206 Pass (rmail-mail-return...) for the return-action.
12207 Pass (rmail-yank-current-message...) for the yank-action.
12208 (rmail-yank-current-message): New function.
12209 (rmail-mail): Pass the Rmail buffer, not view buffer, for replybuffer.
12210 (rmail-reply): Likewise.
12211 (rmail-forward): Pass the Rmail buffer, not nil, for replybuffer.
12212
12213 * mail/sendmail.el (mail-bury): Choose the first rmail-mode
12214 buffer, not the last. Reject temp buffers. Use the rmail-mode
12215 buffer, not newbuf.
12216
12217 2012-04-17 Juanma Barranquero <lekktu@gmail.com>
12218
12219 * server.el (server-ensure-safe-dir): Simplify.
12220
12221 2012-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
12222
12223 * emacs-lisp/smie.el: Provide smarter auto-filling.
12224 (smie-auto-fill): New function.
12225 (smie-setup): Use it.
12226
12227 * newcomment.el (comment-choose-indent): Obey comment-inline-offset.
12228
12229 2012-04-17 Philipp Haselwarter <philipp.haselwarter@gmx.de> (tiny change)
12230
12231 * newcomment.el (comment-inline-offset): New custom var (bug#11090).
12232 (comment-indent): Use it.
12233
12234 2012-04-17 Vincent Belaïche <vincentb1@users.sourceforge.net>
12235
12236 * ses.el: The overall change is to add cell renaming, that is
12237 setting fancy names for cell symbols other than name matching
12238 "\\`[A-Z]+[0-9]+\\'" regexp .
12239 (ses-localvars): Add ses--renamed-cell-symb-list.
12240 (ses-create-cell-variable): New defun.
12241 (ses-destroy-cell-variable-range): Respect ses--numrows, ses--numcols.
12242 (ses-relocate-formula): Relocate formulas only for cells the
12243 symbols of which are not renamed, i.e. symbols whose names do not
12244 match regexp "\\`[A-Z]+[0-9]+\\'".
12245 (ses-relocate-all): Relocate values only for cells the symbols of
12246 which are not renamed.
12247 (ses-load): Create cells variables as the (ses-cell ...) are read,
12248 in order to check row col consistency with cell symbol name only
12249 for cells that are not renamed.
12250 (ses-replace-name-in-formula): New defun.
12251 (ses-rename-cell): New defun.
12252
12253 2012-04-17 Peter Oliver <bzr@mavit.org.uk> (tiny change)
12254
12255 * progmodes/perl-mode.el (perl-indent-parens-as-block):
12256 New option (bug#11118).
12257 (perl-calculate-indent): Respect it.
12258
12259 2012-04-17 Glenn Morris <rgm@gnu.org>
12260
12261 * dired-aux.el (dired-mark-read-string): Doc fix.
12262
12263 2012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
12264
12265 * dired-aux.el (dired-mark-read-string): Offer optional completion.
12266 (dired-do-chxxx): Complete chown, chgrp over users, groups. (Bug#7900)
12267
12268 2012-04-17 Glenn Morris <rgm@gnu.org>
12269
12270 * mouse.el (mouse-drag-track):
12271 * speedbar.el (speedbar-frame-mode):
12272 Use auto-hscroll-mode rather than the alias automatic-hscrolling.
12273
12274 2012-04-16 Leo Liu <sdl.web@gmail.com>
12275
12276 * progmodes/python.el: Trivial cleanup.
12277
12278 2012-04-16 Glenn Morris <rgm@gnu.org>
12279
12280 * vc/vc.el (vc-string-prefix-p):
12281 * vc/pcvs-util.el (cvs-string-prefix-p):
12282 * textmodes/tex-mode.el (latex-string-prefix-p, tex-string-prefix-p):
12283 * mpc.el (mpc-string-prefix-p):
12284 Make all of these into obsolete aliases for string-prefix-p.
12285 Update callers.
12286 * vc/pcvs.el, vc/vc-dispatcher.el, vc/vc-dir.el: Update callers.
12287
12288 * textmodes/two-column.el: Move custom options to the start.
12289 (frame-width): Remove compat definition.
12290 (2C-associate-buffer, 2C-dissociate):
12291 Use with-current-buffer rather than save-excursion.
12292 (2C-dissociate): Force a mode-line update.
12293 (2C-autoscroll): Use ignore-errors.
12294
12295 * emacs-lisp/eieio-opt.el (describe-class, describe-generic):
12296 Autoload trivia.
12297
12298 * emacs-lisp/cl-extra.el (*random-state*):
12299 Remove unnecessary declaration.
12300
12301 * calendar/cal-tex.el (cal-tex-end-document): Trivial clarification.
12302
12303 * play/cookie1.el (cookie-snarf):
12304 Give an explicit error if input file cannot be read.
12305
12306 * play/yow.el (yow-file): Use expand-file-name rather than concat.
12307
12308 * progmodes/perl-mode.el (c-macro-expand):
12309 Remove unnecessary autoload (it is in loaddefs.el).
12310
12311 * textmodes/picture.el (picture-desired-column)
12312 (picture-update-desired-column): Convert comments to doc-strings.
12313 (picture-substitute): Remove function.
12314 (picture-mode-map): Initialize in the defvar.
12315
12316 * woman.el: Remove eval-after-load for tar-mode.
12317 * tar-mode.el (tar-mode-map): Add woman binding and menu entry.
12318 (woman-tar-extract-file): Autoload it.
12319
12320 * frame.el (automatic-hscrolling): Make this alias obsolete.
12321
12322 2012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
12323
12324 * textmodes/ispell.el (ispell-set-spellchecker-params): Post-process
12325 `ispell-dictionary-alist' to use [:alpha:] and utf-8 if possible.
12326 (ispell-dictionary-base-alist): Revert to original XEmacs
12327 friendly version for default. [:alpha:] will be added in
12328 `ispell-set-spellchecker-params' if needed.
12329
12330 2012-04-16 Chong Yidong <cyd@gnu.org>
12331
12332 * image.el (imagemagick--file-regexp): New variable.
12333 (imagemagick-register-types): Use it.
12334 (imagemagick-types-inhibit): Add :set function. Allow new value
12335 of t to inhibit all types.
12336
12337 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Avoid cl macros,
12338 so we can preload it.
12339
12340 * loadup.el (fboundp): Preload regexp-opt, needed by
12341 imagemagick-register-types.
12342
12343 2012-04-15 Chong Yidong <cyd@gnu.org>
12344
12345 * frame.el (scrolling): Remove nearly unused customization group.
12346
12347 * scroll-all.el (scroll-all-mode): Move to windows group.
12348
12349 2012-04-15 Chong Yidong <cyd@gnu.org>
12350
12351 * bindings.el (goto-map): Bind goto-char to M-g c (Bug#11240).
12352
12353 2012-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
12354
12355 Avoid the use of ((lambda ...) ...) in lexical-binding code.
12356 * emacs-lisp/easy-mmode.el (define-minor-mode): Use funcall (bug#11241).
12357
12358 2012-04-15 Glenn Morris <rgm@gnu.org>
12359
12360 * simple.el (process-file-side-effects): Doc fix.
12361
12362 2012-04-15 Glenn Morris <rgm@gnu.org>
12363
12364 * international/mule-cmds.el (set-language-environment): Doc fix.
12365
12366 2012-04-14 Juanma Barranquero <lekktu@gmail.com>
12367
12368 * server.el (server-auth-key, server-generate-key): Doc fixes.
12369 (server-get-auth-key): Doc fix. Use `string-match-p'.
12370 (server-start): Reflow docstring.
12371
12372 2012-04-14 Lars Ingebrigtsen <larsi@gnus.org>
12373
12374 * server.el (server-generate-key): `called-interactively-p'
12375 requires a parameter.
12376
12377 2012-04-14 Michal Nazarewicz <mina86@mina86.com>
12378
12379 * server.el (server-auth-key): New variable.
12380 (server-generate-key, server-get-auth-key): New function.
12381 (server-start): Use the new variable and functions to allow
12382 setting a permanent server key (bug#9423).
12383
12384 2012-04-14 Leo Liu <sdl.web@gmail.com>
12385
12386 * vc/diff-mode.el (diff-file-prev/next): Fix typo.
12387
12388 2012-04-14 Paul Eggert <eggert@cs.ucla.edu>
12389
12390 Spelling fixes.
12391 * hexl.el (hexl-rulerize): Rename from hexl-rulerise, since
12392 Emacs uses American spelling.
12393
12394 2012-04-14 Juanma Barranquero <lekktu@gmail.com>
12395
12396 * emacs-lock.el (emacs-lock-locked-buffer-functions): New hook.
12397 (emacs-lock--exit-locked-buffer): Return the locked buffer. Doc fix.
12398 (emacs-lock--kill-emacs-hook, emacs-lock--kill-emacs-query-functions)
12399 (emacs-lock--kill-buffer-query-functions): Run new hook. (Bug#11017)
12400
12401 2012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
12402
12403 * progmodes/which-func.el (which-func-modes): Change default.
12404
12405 2012-04-14 Kim F. Storm <storm@cua.dk>
12406
12407 * emulation/cua-base.el (cua-exchange-point-and-mark): Just call
12408 exchange-point-and-mark if cua-enable-cua-keys is nil (Bug#11191).
12409
12410 2012-04-14 Chong Yidong <cyd@gnu.org>
12411
12412 * custom.el (custom-theme-set-variables): Doc fix.
12413
12414 2012-04-14 Glenn Morris <rgm@gnu.org>
12415
12416 * international/mule.el (set-auto-coding-for-load): Doc fix.
12417
12418 2012-04-14 Alan Mackenzie <acm@muc.de>
12419
12420 * progmodes/cc-menus.el (cc-imenu-objc-generic-expression): Make
12421 imenu work again for Objective C Mode. Correct the *-index values,
12422 these having been disturbed by a previous change in 2011-08.
12423
12424 * progmodes/cc-engine.el (c-before-change-check-<>-operators):
12425 Correct two search limits.
12426
12427 2012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
12428
12429 * startup.el (command-line-1): Inhibit splash from daemon (bug#10996).
12430
12431 2012-04-14 Andreas Schwab <schwab@linux-m68k.org>
12432
12433 * international/characters.el: Fix sorting.
12434
12435 2012-04-14 Eli Zaretskii <eliz@gnu.org>
12436
12437 * international/characters.el: Add more missing Latin case pairs.
12438
12439 2012-04-14 Glenn Morris <rgm@gnu.org>
12440
12441 * files.el (dir-locals-set-class-variables): Doc fix.
12442
12443 2012-04-14 Eli Zaretskii <eliz@gnu.org>
12444
12445 * international/characters.el: Add set-case-syntax-pair call for
12446 LATIN CAPITAL LETTER Y WITH DIAERESIS RET and its lower-case
12447 counterpart. (Bug#11209)
12448
12449 * simple.el (shell-command-on-region): Doc fix. (Bug#11208)
12450
12451 2012-04-14 Glenn Morris <rgm@gnu.org>
12452
12453 * calendar/holidays.el (calendar-check-holidays): Doc fix.
12454
12455 2012-04-14 Eli Zaretskii <eliz@gnu.org>
12456
12457 * textmodes/ispell.el (ispell-dictionary-base-alist):
12458 Add data for Hebrew.
12459
12460 2012-04-14 Chong Yidong <cyd@gnu.org>
12461
12462 * net/rcirc.el (rcirc-cmd-quit):
12463 Revert 2012-03-18 change (Bug#11192).
12464
12465 2012-04-14 Glenn Morris <rgm@gnu.org>
12466
12467 * pcmpl-rpm.el (pcomplete/rpm): Handle -qf.
12468
12469 2012-04-14 Eli Zaretskii <eliz@gnu.org>
12470
12471 * minibuffer.el (completion-in-region-mode-map):
12472 Bind completion-help-at-point to M-? rather than ?. (Bug#11182)
12473
12474 2012-04-13 Vivek Dasmohapatra <vivek@etla.org>
12475
12476 * hexl.el (hexl-insert-char): Make display sizes other than 16 work.
12477
12478 2012-04-13 Masatake YAMATO <yamato@redhat.com>
12479
12480 * minibuffer.el (minibuffer-local-filename-syntax): New variable
12481 to allow `C-M-f' and `C-M-b' to move to the nearest path
12482 separator (bug#9511).
12483
12484 2012-04-13 Lars Ingebrigtsen <larsi@gnus.org>
12485
12486 * avoid.el: Require cl when compiling. And also move the
12487 `provide' to the end.
12488
12489 2012-04-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
12490
12491 * avoid.el (mouse-avoidance-banish-position): New variable.
12492 (mouse-avoidance-banish-destination): Use it (bug#10165).
12493
12494 2012-04-13 Leo Liu <sdl.web@gmail.com>
12495
12496 * progmodes/which-func.el (which-func-modes): Add objc-mode.
12497
12498 2012-04-13 Ken Brown <kbrown@cornell.edu>
12499
12500 * net/browse-url.el (browse-url-file-url): Remove Cygwin hack;
12501 this is no longer needed now that cygstart understands file:// URLs.
12502 (browse-url-filename-alist): For the same reason, don't modify
12503 file:// URLs on Cygwin.
12504
12505 2012-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
12506
12507 * emulation/cua-base.el (cua--pre-command-handler-1): Don't activate
12508 the region on shift if the binding is already shifted (bug#11221).
12509
12510 2012-04-12 Glenn Morris <rgm@gnu.org>
12511
12512 * mail/mailpost.el: Move to obsolete/.
12513
12514 2012-04-12 Drew Adams <drew.adams@oracle.com>
12515
12516 * imenu.el (imenu--generic-function): Ignore invisible definitions
12517 (bug#10123).
12518
12519 2012-04-12 Vivek Dasmohapatra <vivek@etla.org>
12520
12521 * hexl.el (hexl-bits): New variable.
12522 (hexl-options): Mention the variable in the doc string.
12523 (hexl-rulerise, hexl-line-displen): New functions.
12524 (hexl-mode): Mention the new variable.
12525 (hexl-mode, hexl-current-address, hexl-current-address):
12526 Use the displen.
12527 (hexl-ascii-start-column): New function.
12528 (hexl-address-to-marker, hexl-beginning-of-line, hexl-options)
12529 (hexl-insert-char, hexl-mode-ruler): Use the displen (bug#4941).
12530
12531 2012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
12532
12533 * textmodes/flyspell.el (flyspell-large-region): For hunspell, use
12534 '("-i" ENCODING), in 2 separate command-line arguments, to specify
12535 the encoding, as expected by hunspell.
12536
12537 2012-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
12538
12539 * battery.el (battery--linux-sysfs-regexp): New const.
12540 (battery-status-function): Use it. Remove yeeloong special case.
12541 (battery-yeeloong-sysfs): Remove.
12542 (battery-echo-area-format): Remove yeeloong special case.
12543
12544 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
12545
12546 * imenu.el (imenu-add-to-menubar): `current-local-map' can be nil.
12547 Reported by Noah Friedman.
12548
12549 * subr.el (read-passwd): Use read-string.
12550
12551 2012-04-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
12552
12553 * vcursor.el (vcursor-move): Increase the priority of the overlay
12554 (bug#9663).
12555
12556 2012-04-11 Deniz Dogan <deniz.a.m.dogan@gmail.com>
12557
12558 * net/rcirc.el (rcirc-kill-channel-buffers): New variable.
12559 (rcirc-kill-buffer-hook): Use it to kill channel buffers (bug#5128).
12560
12561 2012-04-11 William Stevenson <yhvh2000@gmail.com>
12562
12563 * textmodes/artist.el (artist-mode): Convert artist-mode to use
12564 define-minor-mode (bug#10760).
12565
12566 2012-04-11 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
12567
12568 * progmodes/grep.el (rgrep): Tweak the find command line so
12569 that directories matching `grep-find-ignored-files' won't be
12570 pruned (bug#10351).
12571
12572 2012-04-11 Chong Yidong <cyd@gnu.org>
12573
12574 * startup.el (command-line): Remove support for long-obsolete
12575 variable font-lock-face-attributes.
12576
12577 2012-04-11 Glenn Morris <rgm@gnu.org>
12578
12579 * vc/vc-bzr.el (vc-bzr-status): Avoid condition-case-unless-debug.
12580
12581 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
12582
12583 * window.el (window--state-get-1): Obey window-point-insertion-type.
12584
12585 2012-04-11 Lennart Borgman <lennart.borgman@gmail.com>
12586
12587 * emacs-lisp/lisp.el (narrow-to-defun): `beginning-of-defun' goes
12588 to previous function when point is on the first character of a
12589 function. Take care of that in `narrow-to-defun' (bug#6157).
12590
12591 2012-04-11 Glenn Morris <rgm@gnu.org>
12592
12593 * vc/vc-bzr.el (vc-bzr-status): Handle all errors,
12594 not just file-errors.
12595
12596 * vc/vc-bzr.el (vc-bzr-sha1-program, sha1-program): Remove.
12597 (vc-bzr-sha1): Use internal sha1.
12598
12599 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
12600
12601 * progmodes/flymake.el (flymake-mode): Beware read-only dirs (bug#8954).
12602
12603 2012-04-10 Sébastien Gross <seb@chezwam.org> (tiny change)
12604
12605 * progmodes/hideshow.el (hs-hide-all): Don't infloop on comments
12606 that start in the middle of the line (bug#10496).
12607
12608 2012-04-10 Dan Nicolaescu <dann@gnu.org>
12609
12610 * battery.el (battery-linux-proc-acpi): Only one battery is
12611 discharged at a time, but that seems to confuse battery.el when
12612 computing `rate-type' for the battery not being discharged
12613 (bug#10332).
12614
12615 2012-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
12616
12617 * emacs-lisp/autoload.el (autoload-make-program): Remove, unused.
12618
12619 * international/quail.el: Use dolist and simplify.
12620 (quail-define-package, quail-update-keyboard-layout)
12621 (quail-define-rules): Use dolist.
12622 (quail-insert-kbd-layout, quail-get-translation): CSE.
12623
12624 * tmm.el: Use dolist, remove left over hook.
12625 (tmm-prompt, tmm-define-keys, tmm-shortcut, tmm-get-keybind):
12626 Use dolist.
12627 (calendar-load-hook): Don't mess with it.
12628
12629 * vc/vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
12630 Use derived-mode-p. Run the diff asynchronously.
12631
12632 2012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
12633
12634 * obsolete/mouse-sel.el: Add an Obsolete-since header.
12635
12636 2012-04-10 Juanma Barranquero <lekktu@gmail.com>
12637
12638 * misc.el: Display absolute path of loaded DLLs (bug#10424).
12639 (list-dynamic-libraries--loaded): New function.
12640 (list-dynamic-libraries--refresh): Use it.
12641
12642 2012-04-10 Nathan Weizenbaum <nweiz@google.com>
12643
12644 * progmodes/python.el (python-fill-paragraph):
12645 Make python-fill-region in a multiline string work when font-lock is
12646 disabled (bug#7018).
12647
12648 2012-04-10 Laimonas Vėbra <laimonas.vebra@gmail.com> (tiny change)
12649
12650 * language/european.el (cp775): Add oem/legacy (en)coding on
12651 DOS/MS Windows for the Baltic languages. There are still plenty
12652 of texts written in this encoding/codepage (bug#6519).
12653
12654 2012-04-10 Glenn Morris <rgm@gnu.org>
12655
12656 * cus-start.el (eol-mnemonic-unix, eol-mnemonic-dos, eol-mnemonic-mac):
12657 Add :standard values, reducing "rogue" customs in emacs -Q a bit more.
12658
12659 2012-04-10 Florian Adamsky <florian@adamsky.it> (tiny change)
12660
12661 * recentf.el (recentf-dialog-mode-map): Add two keybindings for
12662 next-line "n" and previous-line "p" in order to make recentf more
12663 consistent with ibuffer, dired or org-mode (bug#9387).
12664
12665 2012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
12666
12667 * image.el (put-image): Return the overlay created instead of the
12668 optional input string (bug#7834). Note that this may break code
12669 that is (for some reason or other) depending on `put-image'
12670 returning the string.
12671
12672 * mouse-sel.el (mouse-sel-mode): Mark as obsolete (bug#6174).
12673
12674 * simple.el (zap-to-char): Allow zapping using input methods
12675 (bug#1580).
12676
12677 * textmodes/fill.el (fill-region): Leave point and mark where they
12678 were before filling (bug#5399).
12679
12680 2012-04-09 Glenn Morris <rgm@gnu.org>
12681
12682 * version.el (emacs-bzr-get-version):
12683 Handle lightweight checkouts of local branches.
12684
12685 2012-04-09 Andreas Schwab <schwab@linux-m68k.org>
12686
12687 * international/characters.el: Recover lost case pairs. (Bug#11209)
12688
12689 2012-04-09 Chong Yidong <cyd@gnu.org>
12690
12691 * custom.el (custom-variable-p): Return nil for non-symbol
12692 arguments instead of signaling an error.
12693 (user-variable-p): Obsolete alias for custom-variable-p.
12694
12695 * apropos.el (apropos-variable):
12696 * files-x.el (read-file-local-variable):
12697 * simple.el (set-variable):
12698 * woman.el (woman-mini-help):
12699 * emacs-lisp/byte-opt.el (side-effect-free-fns): Callers changed.
12700
12701 2012-04-09 Glenn Morris <rgm@gnu.org>
12702
12703 * startup.el (normal-top-level): Don't look for leim-list.el
12704 in places where it will not be found. (Bug#910)
12705
12706 * international/mule-cmds.el (set-default-coding-systems):
12707 * files.el (normal-mode):
12708 Remove guarded calls to ucs-set-table-for-input. (Bug#9821)
12709 This function was removed with ucs-tables.el in 2008.
12710
12711 2012-04-08 Eli Zaretskii <eliz@gnu.org>
12712
12713 * textmodes/ispell.el (ispell-check-version): For hunspell, set
12714 ispell-encoding8-command to "-i", without a trailing space.
12715 (ispell-start-process): For hunspell, use '("-i" ENCODING), in 2
12716 separate command-line arguments, to specify the encoding, since
12717 that's how hunspell expects it.
12718
12719 2012-04-08 Glenn Morris <rgm@gnu.org>
12720
12721 * loadup.el: Load bindings before cus-start.
12722 This reduces somewhat the number of "rogue" settings in emacs -Q.
12723
12724 2012-04-07 Glenn Morris <rgm@gnu.org>
12725
12726 * version.el (emacs-bzr-get-version): New function.
12727 (emacs-bzr-version): New variable.
12728 * loadup.el (emacs-bzr-version): Set it. (Bug#8054)
12729 * mail/emacsbug.el (report-emacs-bug): Include bzr version.
12730
12731 2012-04-07 Eli Zaretskii <eliz@gnu.org>
12732
12733 * international/uni-bidi.el, international/uni-category.el:
12734 * international/uni-combining.el, international/uni-decimal.el:
12735 * international/uni-decomposition.el, international/uni-digit.el:
12736 * international/uni-lowercase.el, international/uni-mirrored.el:
12737 * international/uni-name.el, international/uni-numeric.el:
12738 * international/uni-titlecase.el, international/uni-uppercase.el:
12739 Update for Unicode 6.1.
12740
12741 2012-04-07 Eli Zaretskii <eliz@gnu.org>
12742
12743 * term/w32-win.el (dynamic-library-alist): Add libxml2 DLLs.
12744
12745 2012-04-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
12746
12747 * window.el (shrink-window): Mention the `window-min-height'
12748 variable in the doc string.
12749
12750 2012-04-05 Bastien Guerry <bzg@altern.org>
12751
12752 * color.el (color-lighten-name): Fix typo.
12753
12754 2012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
12755
12756 * server.el (server--on-display-p): New function.
12757 (server--on-display-p): Use it.
12758
12759 2012-04-04 Gábor Vida <vidagabor@gmail.com> (tiny change)
12760
12761 * ido.el (ido-wide-find-dirs-or-files): Use file-name-absolute-p
12762 (bug#11145).
12763
12764 2012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
12765
12766 * comint.el (comint--common-quoted-suffix): Check string boundary
12767 before comparing (bug#11158).
12768 * pcomplete.el (pcomplete--common-quoted-suffix): Idem.
12769
12770 2012-04-04 Chong Yidong <cyd@gnu.org>
12771
12772 * minibuffer.el (completion-extra-properties): Doc fix.
12773
12774 * subr.el (delayed-warnings-hook): Doc fix.
12775
12776 2012-04-04 Daiki Ueno <ueno@unixuser.org>
12777
12778 * epa.el (epa--select-keys): Bind C-c C-c to finish the key
12779 selection (Bug#11159).
12780 (epa-insert-keys): Inform that the default public key will be
12781 exported if no key is selected.
12782
12783 2012-04-04 Richard Stallman <rms@gnu.org>
12784
12785 * mail/emacsbug.el (report-emacs-bug): Bind inhibit-read-only.
12786
12787 2012-04-03 Chong Yidong <cyd@gnu.org>
12788
12789 * mail/sendmail.el (mail-mode-map): Bind C-c C-i to
12790 mail-insert-file, not its obsolete alias mail-attach-file.
12791
12792 2012-04-03 Michael Albinus <michael.albinus@gmx.de>
12793
12794 * notifications.el (notifications-notify): Fix docstring.
12795
12796 2012-04-02 Glenn Morris <rgm@gnu.org>
12797
12798 * emacs-lisp/authors.el (authors-aliases): Another addition.
12799
12800 2012-04-02 Michael Albinus <michael.albinus@gmx.de>
12801
12802 * net/tramp-gvfs.el (tramp-gvfs-send-command): Apply
12803 `tramp-compat-call-process' instead of `tramp-local-call-process'.
12804 Reported by Magnus Henoch <magnus.henoch@gmail.com>.
12805
12806 2012-04-01 Chong Yidong <cyd@gnu.org>
12807
12808 * files.el (file-in-directory-p): Rename from file-subdir-of-p.
12809 Handle root directory properly.
12810 (copy-directory): Caller changed.
12811
12812 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
12813 * net/tramp.el (tramp-file-name-for-operation): Callers changed.
12814
12815 2012-03-31 Glenn Morris <rgm@gnu.org>
12816
12817 * term/xterm.el (xterm-extra-capabilities): Doc fix.
12818
12819 * language/indian.el ("Devanagari"): Fix typo. (Bug#11103)
12820
12821 * calendar/calendar.el (calendar-window-list)
12822 (calendar-hide-window): Restore. (Bug#11140)
12823 (calendar-exit): Use calendar-window-list, calendar-hide-window again.
12824
12825 * emacs-lisp/edebug.el (edebug-unwrap-results): Doc fix.
12826
12827 2012-03-30 Thierry Volpiatto <thierry.volpiatto@gmail.com>
12828
12829 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
12830 Check if file is a symlink (Bug#10489).
12831
12832 * files.el (copy-directory): Likewise.
12833
12834 2012-03-30 Chong Yidong <cyd@gnu.org>
12835
12836 * image.el (imagemagick-types-inhibit)
12837 (imagemagick-register-types): Doc fix.
12838
12839 2012-03-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
12840
12841 * textmodes/ispell.el (ispell-get-extended-character-mode):
12842 Disable extended-char-mode for hunspell. hunspell does not support it
12843 and treats ~word as ordinary words in pipe mode.
12844
12845 2012-03-30 Glenn Morris <rgm@gnu.org>
12846
12847 * tutorial.el (help-with-tutorial): Ensure local variables don't
12848 happen to make the buffer read-only. (Bug#11127)
12849
12850 2012-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
12851
12852 * progmodes/perl-mode.el (perl-indent-line): Use `noindent' in strings.
12853 (perl-calculate-indent): Return `noindent' in strings.
12854
12855 2012-03-28 Sam Steingold <sds@gnu.org>
12856
12857 * calendar/calendar.el (calendar-exit): Use `quit-windows-on'
12858 instead of the broken adhockery which does not prevent calendar
12859 buffers from being displayed at random after exit.
12860 (calendar-window-list, calendar-hide-window): Remove the broken
12861 adhockery.
12862
12863 2012-03-28 Glenn Morris <rgm@gnu.org>
12864
12865 * replace.el (query-replace-map): Doc fix.
12866
12867 2012-03-28 Andreas Schwab <schwab@linux-m68k.org>
12868
12869 * vc/vc-git.el (vc-git-state): Don't try to match all of the diff
12870 contents. (Bug#11109)
12871
12872 2012-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
12873
12874 * emacs-lisp/avl-tree.el (avl-tree--enter-balance): Fix paren typo
12875 (bug#11077).
12876 (avl-tree--check, avl-tree--check-node): New funs.
12877
12878 2012-03-27 Martin Rudalics <rudalics@gmx.at>
12879
12880 * window.el (switch-to-visible-buffer): New option.
12881 (switch-to-prev-buffer, switch-to-next-buffer):
12882 Observe switch-to-visible-buffer. Make sure that checking for a window
12883 showing a buffer already is done on the same frame.
12884
12885 2012-03-27 Glenn Morris <rgm@gnu.org>
12886
12887 * startup.el (mail-host-address): Doc fix.
12888
12889 2012-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
12890
12891 * emacs-lisp/bytecomp.el (byte-compile-constants-vector): Allow more
12892 than 197 variables.
12893
12894 2012-03-26 Ami Fischman <ami@fischman.org>
12895
12896 * vc/vc-git.el (vc-git-state): Avoid unnecessarily locking.
12897
12898 2012-03-26 Glenn Morris <rgm@gnu.org>
12899
12900 * files.el (save-buffers-kill-emacs): Doc fix.
12901
12902 * startup.el (normal-top-level, command-line, command-line-1):
12903 Give them doc strings.
12904
12905 2012-03-25 Eli Zaretskii <eliz@gnu.org>
12906
12907 * makefile.w32-in (install): Use $(DIRNAME)_same-dir.tst instead
12908 of same-dir.tst, to avoid stepping on other (parallel) Make job's toes.
12909
12910 2012-03-25 Chong Yidong <cyd@gnu.org>
12911
12912 * custom.el (load-theme): Even if NO-ENABLE arg is t, reenable the
12913 theme if it was previously enabled before (Bug#11031).
12914
12915 * cus-theme.el (custom-theme-write-faces): Retrieve current face
12916 spec with custom-face-get-current-spec if its :shown-value is not
12917 determined yet (Bug#9337).
12918 (customize-create-theme, custom-theme-revert): Doc fixes.
12919
12920 * button.el (button-at): Minor addition to docstring.
12921
12922 2012-03-24 Simon Leinen <simon.leinen@gmail.com>
12923
12924 * vc/vc.el (vc-merge): Fix a prompt.
12925
12926 2012-03-24 Chong Yidong <cyd@gnu.org>
12927
12928 * mwheel.el (mwheel-scroll): Call deactivate-mark at the right
12929 point (Bug#9623).
12930
12931 * button.el (button-at): Minor addition to docstring.
12932
12933 2012-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
12934
12935 * newcomment.el (comment-choose-indent): No space after BOL.
12936
12937 2012-03-22 Sam Steingold <sds@gnu.org>
12938
12939 * window.el (switch-to-prev-buffer): Revert last patch because the
12940 bug turned out to be an advertised feature (Elisp manual 28.14).
12941
12942 2012-03-22 Glenn Morris <rgm@gnu.org>
12943
12944 * vc/vc-bzr.el (vc-bzr-status-switches): New option. (Bug#6724)
12945 (vc-bzr-command): If running "status", pass vc-bzr-status-switches.
12946
12947 2012-03-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
12948
12949 * net/network-stream.el (network-stream-open-starttls): Make error
12950 message under Windows be less misleading.
12951
12952 2012-03-22 Liang Wang <netcasper@gmail.com> (tiny change)
12953
12954 * progmodes/etags.el (etags-list-tags): Only use tags which goto-func
12955 understands (bug#9942).
12956
12957 2012-03-22 Chong Yidong <cyd@gnu.org>
12958
12959 * simple.el (end-of-visible-line): Handle return value of
12960 next-single-property-change properly (Bug#9371).
12961
12962 2012-03-22 Kenichi Handa <handa@m17n.org>
12963
12964 * international/quail.el (quail-insert-kbd-layout): Fix previous
12965 change. To avoid unwanted bidi reordering, use
12966 bidi-string-mark-left-to-right instead of inserting LRO and PDF.
12967
12968 2012-03-21 Dmitry Gutov <dgutov@yandex.ru>
12969
12970 * progmodes/ruby-mode.el: Don't confuse "end:" for "end" (bug#10786).
12971 (ruby-block-end-re, ruby-delimiter, ruby-parse-partial)
12972 (ruby-beginning-of-indent): Be more careful with the difference
12973 between word-boundary and symbol boundary.
12974 (ruby-mode-syntax-table): Make : a symbol constituent.
12975
12976 2012-03-21 Andreas Politz <politza@fh-trier.de>
12977
12978 * outline.el (outline-flag-region): Evaporate overlays (bug#10789).
12979
12980 2012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
12981
12982 * progmodes/etags.el (tags-completion-at-point-function):
12983 Improve last fix.
12984
12985 * files.el (move-file-to-trash): Files aren't regexps (bug#11055).
12986
12987 2012-03-21 Sam Steingold <sds@gnu.org>
12988
12989 * progmodes/etags.el (tags-completion-at-point-function):
12990 Avoid the error when point is inside the pattern.
12991
12992 2012-03-21 John Yates <john@yates-sheets.org> (tiny change)
12993
12994 * progmodes/hideshow.el (hs-inside-comment-p): Fix hiding of first
12995 line (Bug#10855).
12996
12997 2012-03-21 Drew Adams <drew.adams@oracle.com>
12998
12999 * info.el (Info-menu): Handle string value of FORK arg (Bug#10858).
13000
13001 2012-03-21 Anmol Khirbat <anmol@khirbat.net> (tiny change)
13002
13003 * ido.el (ido-set-current-directory, ido-read-internal)
13004 (ido-choose-completion-string, ido-completion-help): Handle nil
13005 value of ido-completion-buffer (Bug#11008).
13006
13007 2012-03-21 Sam Steingold <sds@gnu.org>
13008
13009 * window.el (switch-to-prev-buffer): Do not switch to a visible
13010 window previous buffer, just like with the frame previous buffers.
13011
13012 2012-03-21 Chong Yidong <cyd@gnu.org>
13013
13014 * faces.el (make-face, make-empty-face, copy-face):
13015 * face-remap.el (face-remap-add-relative, face-remap-set-base):
13016 Doc fixes.
13017
13018 2012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
13019
13020 * wid-edit.el (widget-complete-field): Remove (bug#11051).
13021 (widget-complete): Remove broken use of it.
13022
13023 2012-03-20 Chong Yidong <cyd@gnu.org>
13024
13025 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
13026 Use string-width and truncate-string-width to handle arbitrary
13027 characters.
13028
13029 2012-03-20 Tassilo Horn <tassilo@member.fsf.org>
13030
13031 * textmodes/artist.el (artist-menu-map): Bind Rectangle menu item
13032 to draw rectangles, not squares. (Regression introduced by revno
13033 2011-03-02T03:48:01Z!cyd@stupidchicken.com)
13034
13035 2012-03-18 Chong Yidong <cyd@gnu.org>
13036
13037 * faces.el (face-spec-reset-face): Don't call display-graphic-p if
13038 it is not yet defined (for temacs).
13039
13040 2012-03-18 Leo Liu <sdl.web@gmail.com>
13041
13042 * net/rcirc.el (rcirc-cmd-quit): Allow quitting all servers with
13043 prefix.
13044
13045 2012-03-17 Eli Zaretskii <eliz@gnu.org>
13046
13047 * textmodes/ispell.el (ispell-skip-tib, ispell-keep-choices-win)
13048 (ispell-choices-win-default-height, ispell-silently-savep)
13049 (ispell-dictionary-alist, ispell-encoding8-command)
13050 (ispell-check-version, ispell-aspell-find-dictionary)
13051 (ispell-valid-dictionary-list, ispell-words-keyword)
13052 (ispell-get-word, ispell-internal-change-dictionary)
13053 (ispell-region, ispell-skip-region-list)
13054 (ispell-begin-skip-region-regexp, ispell-ignore-fcc)
13055 (ispell-process-line, ispell-minor-mode, ispell-minor-check)
13056 (ispell-message-text-end, ispell-message)
13057 (ispell-buffer-local-parsing): Doc fix.
13058
13059 2012-03-13 Jambunathan K <kjambunathan@gmail.com>
13060
13061 * htmlfontify.el: Add support for code block fontification for ODT
13062 export (Bug #9914).
13063 (hfy-optimisations): Define new option
13064 `body-text-only'
13065 (hfy-fontify-buffer): Honor above setting.
13066 (hfy-begin-span, hfy-end-span): New routines factored out form
13067 `hfy-fontify-buffer'.
13068 (hfy-begin-span-handler, hfy-end-span-handler): New variables
13069 that permit insertion of custom tags.
13070 (hfy-fontify-buffer): Use above handlers.
13071 (hfy-face-to-css-default): Same as the earlier `hfy-face-to-css'.
13072 (hfy-face-to-css): Re-defined to be a variable.
13073 (hfy-compile-stylesheet): Modify. Allow stylesheet to be built
13074 over multiple runs. This is made possible by having the caller let
13075 bind a special variable `hfy-user-sheet-assoc'.
13076 (htmlfontify-string): New defun.
13077 (hfy-compile-face-map): Make sure that the last char in the
13078 buffer is correctly fontified.
13079 (hfy-face-resolve-face): Whitespace only change.
13080
13081 2012-03-17 Eli Zaretskii <eliz@gnu.org>
13082
13083 * textmodes/ispell.el (ispell-get-decoded-string): Make the error
13084 message more clear.
13085
13086 2012-03-16 Leo Liu <sdl.web@gmail.com>
13087
13088 * emacs-lisp/copyright.el (copyright-year-ranges): Fix typo.
13089
13090 2012-03-16 Alan Mackenzie <acm@muc.de>
13091
13092 Further optimize the handling of large macros.
13093
13094 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Use a
13095 limit to a call of `c-literal-limits'.
13096 (c-determine-+ve-limit): New function.
13097 (c-at-macro-vsemi-p): Move `c-in-literal' to the bottom of an `and'.
13098 (c-guess-basic-syntax): In macros, restrict a search limit to 2000.
13099 In CASE 5B, restrict a search limit to 500.
13100 (c-just-after-func-arglist-p): Obviouly wrong `or' -> `and'.
13101
13102 * progmodes/cc-mode.el (c-neutralize-syntax-in-and-mark-CPP):
13103 Restrict macro bounds to +-500 from after-change's BEG END.
13104
13105 2012-03-16 Leo Liu <sdl.web@gmail.com>
13106
13107 * font-lock.el (lisp-font-lock-keywords-2): Add letrec.
13108
13109 2012-03-16 Aaron S. Hawley <Aaron.S.Hawley@gmail.com>
13110
13111 * tar-mode.el (tar-mode): Fix saving by conditionally undoing
13112 `special-mode' setting of `buffer-read-only'. (Bug#11010)
13113
13114 2012-03-16 Glenn Morris <rgm@gnu.org>
13115
13116 * view.el (view-buffer, view-buffer-other-window)
13117 (view-buffer-other-frame): Doc fixes re special mode-class.
13118
13119 * subr.el (eval-after-load): If named feature is provided not from
13120 a file, run after-load forms. (Bug#10946)
13121
13122 * calendar/calendar.el (calendar-insert-at-column):
13123 Handle non-unit-width characters a bit better. (Bug#10978)
13124
13125 2012-03-15 Chong Yidong <cyd@gnu.org>
13126
13127 * emacs-lisp/ring.el (ring-extend): New function.
13128 (ring-insert+extend): Extend the ring correctly (Bug#11019).
13129
13130 * comint.el (comint-read-input-ring)
13131 (comint-add-to-input-history): Grow comint-input-ring lazily.
13132
13133 2012-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
13134
13135 * progmodes/perl-mode.el (perl-syntax-propertize-special-constructs):
13136 Fix up parsing of multiline twoarg non-paired elements (bug#11014).
13137
13138 * imenu.el: Fix multiple inheritance breakage (bug#9199).
13139 (imenu-add-to-menubar): Don't add a redundant index.
13140 (imenu-update-menubar): Handle a dynamically composed keymap.
13141
13142 2012-03-13 Katsumi Yamaoka <yamaoka@jpl.org>
13143
13144 * mail/sendmail.el (mail-encode-header):
13145 Bind rfc2047-encode-encoded-words to nil.
13146
13147 2012-03-13 Glenn Morris <rgm@gnu.org>
13148
13149 * calendar/calendar.el (calendar-string-spread):
13150 Handle non-unit-width characters a bit better. (Bug#10978)
13151
13152 2012-03-13 Leo Liu <sdl.web@gmail.com>
13153
13154 * vc/vc-hg.el (vc-hg-working-revision): Rework to work with both
13155 directory and file as argument (Bug#10822).
13156
13157 2012-03-13 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
13158
13159 * progmodes/gdb-mi.el (gdb-invalidate-disassembly):
13160 For dynamically generated code, follow $PC.
13161 (gdb-disassembly-handler-custom): Handle no function name case.
13162
13163 2012-03-13 Tim Landscheidt <tim@tim-landscheidt.de> (tiny change)
13164
13165 * calendar/icalendar.el (icalendar-export-file, icalendar-import-file):
13166 * emulation/ws-mode.el (ws-query-replace):
13167 * sort.el (sort-regexp-fields):
13168 Fix missing trailing whitespace in interactive prompts. (Bug#11002)
13169
13170 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
13171
13172 * dabbrev.el: Fix cycle completion order (bug#10963).
13173 (dabbrev--last-obarray, dabbrev--last-completion-buffer): Remove.
13174 (dabbrev-completion): Don't use an obarray; provide
13175 a cycle-sort-function.
13176
13177 2012-03-12 Leo Liu <sdl.web@gmail.com>
13178
13179 * simple.el (kill-new): Use equal-including-properties for comparison.
13180 (kill-do-not-save-duplicates): Doc fix.
13181
13182 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
13183
13184 * dabbrev.el: Fix cycle completion (bug#10963).
13185 Use lexical binding and wrap to 80 columns.
13186 (dabbrev-completion): Delay computing the list of completions.
13187
13188 2012-03-12 Kenichi Handa <handa@m17n.org>
13189
13190 * international/quail.el (quail-insert-kbd-layout): Surround each
13191 row by LRO and PDF instead of inserting many LRMs. Pad the left
13192 and right of each non-spacing marks. Insert invisible space
13193 between lower and upper characters to prevent composition.
13194
13195 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
13196
13197 * minibuffer.el (minibuffer-complete): Don't get confused when the
13198 function is run twice via different commands (bug#10958).
13199 (complete-with-action): Fix docstring.
13200
13201 2012-03-12 Chong Yidong <cyd@gnu.org>
13202
13203 * nxml/nxml-mode.el (nxml-mode-map): Do not bind C-RET (Bug#6776).
13204 (nxml-completion-at-point-function): New function.
13205 (nxml-mode): Use it.
13206 (nxml-bind-meta-tab-to-complete-flag): Default to t.
13207
13208 * emacs-lisp/package.el (package-unpack, package-unpack-single):
13209 Load generated autoloads file before byte compiling (Bug#10970).
13210 (package--make-autoloads-and-compile): New helper fun.
13211
13212 2012-03-12 Christopher Schmidt <christopher@ch.ristopher.com>
13213
13214 * ibuffer.el (ibuffer-redisplay): Remove another gratuitous error.
13215
13216 2012-03-11 Michael Albinus <michael.albinus@gmx.de>
13217
13218 * autorevert.el (auto-revert-handler): Ensure, that
13219 file-readable-p is applied only for local files or in
13220 auto-revert-tail-mode.
13221
13222 2012-03-11 Andreas Schwab <schwab@linux-m68k.org>
13223
13224 * server.el (server-eval-at): Handle non-tcp connections.
13225 Decode result string.
13226
13227 * server.el (server-msg-size): New constant.
13228 (server-reply-print): New function.
13229 (server-eval-and-print): Use it.
13230 (server-eval-at): Use server-quote-arg and server-unquote-arg.
13231 Handle -print-nonl.
13232
13233 2012-03-11 Christopher Schmidt <christopher@ch.ristopher.com>
13234
13235 * ibuffer.el (ibuffer-redisplay): Remove gratuitous error
13236 (Bug#10987).
13237
13238 2012-03-11 Chong Yidong <cyd@gnu.org>
13239
13240 * simple.el (goto-line): Doc fix (Bug#9938).
13241
13242 * subr.el (save-window-excursion): Doc fix (Bug#9979).
13243
13244 * dabbrev.el (dabbrev--find-expansion): Update progress reporter
13245 when finished (Bug#10963).
13246
13247 2012-03-11 Martin Rudalics <rudalics@gmx.at>
13248
13249 * window.el (split-window-below): Fix bug in case where
13250 split-window-keep-point is nil (Bug#10971).
13251
13252 2012-03-11 Juri Linkov <juri@jurta.org>
13253
13254 * replace.el (replace-highlight): Set isearch-word to nil
13255 unconditionally. (Bug#10887)
13256
13257 2012-03-10 Eli Zaretskii <eliz@gnu.org>
13258
13259 * net/mairix.el (mairix-replace-invalid-chars): Rename from
13260 mairix-replace-illegal-chars; all callers changed. Don't remove
13261 ^, ~, and = characters: they are meaningful in mairix search specs.
13262 (mairix-widget-create-query): Add usage information about mairix
13263 search forms: negating words, searching for substrings, etc.
13264
13265 2012-03-10 Jae-hyeon Park <jae-hyeon.park@desy.de> (tiny change)
13266
13267 * international/fontset.el (font-encoding-alist): Add an entry for
13268 ksx1001 (Bug#5667).
13269
13270 2012-03-10 Richard Stallman <rms@gnu.org>
13271
13272 * mail/sendmail.el (mail-encode-header):
13273 Set rfc2047-encode-encoded-words.
13274
13275 * mail/mail-utils.el (mail-quote-printable): Quote multibyte chars.
13276
13277 * mail/rmail.el (rmail-buffers-swapped-p): Don't assume dead
13278 view buffer means not swapped.
13279 (rmail-view-buffer-kill-buffer-hook): Give buf name in error msg.
13280 (rmail-write-region-annotate): Error if real text has disappeared.
13281
13282 * epa-mail.el (epa-mail-encrypt): Bind inhibit-read-only.
13283
13284 2012-03-10 Chong Yidong <cyd@gnu.org>
13285
13286 * emulation/cua-rect.el (cua--init-rectangles):
13287 * emulation/cua-base.el (cua--init-keymaps):
13288 Add delete-forward-char to remappings (Bug#9666).
13289
13290 2012-03-10 Martin Rudalics <rudalics@gmx.at>
13291
13292 * speedbar.el (speedbar-unhighlight-one-tag-line):
13293 Avoid unhighlighting due to frame switching (Bug#10275).
13294
13295 2012-03-10 Chong Yidong <cyd@gnu.org>
13296
13297 * minibuffer.el (completion-in-region, completion-help-at-point):
13298 Give the completion field overlay a high priority (Bug#6830).
13299
13300 * dired.el (dired-goto-file): Recognize absolute file name
13301 listings (Bug#7126).
13302 (dired-goto-file-1): New helper function.
13303 (dired-toggle-read-only): Inhibit warnings.
13304
13305 2012-03-09 Michael Albinus <michael.albinus@gmx.de>
13306
13307 * net/dbus.el (dbus-property-handler): Return empty array if
13308 there are no properties.
13309
13310 2012-03-09 Leo Liu <sdl.web@gmail.com>
13311
13312 * savehist.el (savehist-printable): Stricter check for string
13313 value (Bug#10937).
13314
13315 2012-03-09 Eli Zaretskii <eliz@gnu.org>
13316
13317 * mail/smtpmail.el (smtpmail-send-it):
13318 Bind coding-system-for-write to *-unix, so that FCC files are kept in
13319 valid mbox format.
13320
13321 2012-03-09 Glenn Morris <rgm@gnu.org>
13322
13323 * files.el (dir-locals-find-file):
13324 Don't check result is regular, readable.
13325 (dir-locals-read-from-file): Demote errors.
13326
13327 2012-03-08 Eli Zaretskii <eliz@gnu.org>
13328
13329 * international/quail.el (quail-insert-kbd-layout):
13330 Insert invisible LRM characters before each character in a keyboard
13331 layout cell, to prevent their reordering by bidi display engine.
13332 For details, see the discussion in
13333 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00085.html.
13334
13335 2012-03-08 Alan Mackenzie <acm@muc.de>
13336
13337 * progmodes/cc-cmds.el (c-mark-function): Make it leave a mark at
13338 the starting position; make it extend the marked region when
13339 invoked repeatedly - all under appropriate circumstances.
13340 Fixes bugs #5525, #10906.
13341
13342 2012-03-08 Glenn Morris <rgm@gnu.org>
13343
13344 * files.el (locate-dominating-file, dir-locals-find-file):
13345 Undo 2012-03-06 change.
13346
13347 2012-03-07 Eli Zaretskii <eliz@gnu.org>
13348
13349 * international/quail.el (quail-help):
13350 Force bidi-paragraph-direction be left-to-right. See discussion in
13351 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00062.html
13352 for the reason.
13353
13354 2012-03-07 Michael Albinus <michael.albinus@gmx.de>
13355
13356 Avoid superfluous registering of signals. (Bug#10807)
13357
13358 * notifications.el (notifications-on-action-object)
13359 (notifications-on-close-object): New defvars.
13360 (notifications-on-action-signal, notifications-on-closed-signal):
13361 Unregister the signal if not needed any longer.
13362 (notifications-notify): Register `notifications-action-signal' or
13363 `notifications-closed-signal', if :on-action or :on-close has been
13364 passed as argument.
13365
13366 2012-03-07 Chong Yidong <cyd@gnu.org>
13367
13368 * cus-start.el: Avoid x-select-enable-clipboard-manager warning on
13369 non-X platforms.
13370
13371 2012-03-06 Glenn Morris <rgm@gnu.org>
13372
13373 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
13374 (x-disown-selection-internal, x-get-selection-internal):
13375 Doc fix (add arglist signatures). (Bug#10783)
13376
13377 2012-03-06 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
13378
13379 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
13380 Handle breakpoints with no "type".
13381
13382 2012-03-06 Glenn Morris <rgm@gnu.org>
13383
13384 * files.el (locate-dominating-file): Add optional predicate argument.
13385 (dir-locals-find-file): Make use of above change.
13386
13387 2012-03-06 Thien-Thi Nguyen <ttn@gnuvola.org>
13388
13389 * info.el (Info-insert-dir): Also try "dir.gz".
13390
13391 2012-03-06 Glenn Morris <rgm@gnu.org>
13392
13393 * files.el (dir-locals-find-file):
13394 Ignore non-readable or non-regular files. (Bug#10928)
13395
13396 * files.el (locate-dominating-file): Doc fix.
13397
13398 2012-03-06 Adam Spiers <emacs@adamspiers.org> (tiny change)
13399
13400 * calendar/calendar.el (calendar-set-mode-line):
13401 `getenv' returns a string. (Bug#10951)
13402
13403 2012-03-05 Leo Liu <sdl.web@gmail.com>
13404
13405 * simple.el (backward-delete-char-untabify): Constrain point to
13406 field (Bug#10939).
13407
13408 * eshell/em-cmpl.el (eshell-cmpl-initialize): Fix shift-tab key.
13409
13410 2012-03-05 Chong Yidong <cyd@gnu.org>
13411
13412 * simple.el (count-words): If called from Lisp, return the word
13413 count, for symmetry with `count-lines'. Arglist changed.
13414 (count-words--message): Args changed. Consolidate counting code
13415 from count-words and count-words-region.
13416 (count-words-region): Caller changed.
13417 (count-lines-region): Make it an obsolete alias.
13418
13419 2012-03-04 Tassilo Horn <tassilo@member.fsf.org>
13420
13421 * saveplace.el (save-place-to-alist)
13422 (save-place-ignore-files-regexp): Allow value nil to disable this
13423 feature.
13424
13425 2012-03-04 Chong Yidong <cyd@gnu.org>
13426
13427 * faces.el (face-spec-reset-face): For the default face, reset the
13428 attributes to default values (Bug#10748).
13429
13430 2012-03-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
13431
13432 * mail/emacsbug.el (report-emacs-bug-hook): Fix up thinko in
13433 previous patch: Check `message-send-mail-function', and not the
13434 default function (bug#10897).
13435
13436 2012-03-04 Michael Albinus <michael.albinus@gmx.de>
13437
13438 * notifications.el (notifications-on-action-signal)
13439 (notifications-on-closed-signal): Check for unique service name of
13440 incoming event. Fix error in removing entry.
13441 (top): Register for signals with wildcard service name.
13442 (notifications-notify): Use daemon unique service name for map entries.
13443
13444 2012-03-04 Chong Yidong <cyd@gnu.org>
13445
13446 * cus-start.el: Make x-select-enable-clipboard-manager customizable.
13447
13448 2012-03-04 Glenn Morris <rgm@gnu.org>
13449
13450 * abbrev.el (copy-abbrev-table, abbrev-table-p)
13451 (abbrev-minor-mode-table-alist, define-abbrev, abbrev-insert)
13452 (expand-abbrev, define-abbrev-table): Doc fixes.
13453
13454 2012-03-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
13455
13456 * mail/emacsbug.el (report-emacs-bug-hook): Look at the value of
13457 `message-default-send-mail-function' and not `send-mail-function'
13458 when doing the prompting for `sendmail-query-once' before sending
13459 in Message buffers (bug#10897).
13460
13461 * net/tls.el (open-tls-stream): Don't set the dont-query-on-exit flag.
13462 This is inconsistent with all the other stream functions, which leave
13463 the setting up to the higher levels (if so wanted) (bug#10931).
13464
13465 2012-03-02 Alan Mackenzie <acm@muc.de>
13466
13467 Depessimize the handling of very large macros.
13468
13469 * progmodes/cc-engine.el (c-macro-cache, c-macro-cache-start-pos):
13470 (c-macro-cache-syntactic): New variables to implement a one
13471 element macro cache.
13472 (c-invalidate-macro-cache): New function.
13473 (c-beginning-of-macro, c-end-of-macro, c-syntactic-end-of-macro):
13474 Adapt to use the new cache.
13475 (c-state-safe-place): Use better the cache of safe positions.
13476 (c-state-semi-nonlit-pos-cache)
13477 (c-state-semi-nonlit-pos-cache-limit):
13478 New variables for...
13479 (c-state-semi-safe-place): New function. Here, in a macro is "safe".
13480 (c-invalidate-state-cache-1): New stuff for c-state-semi-safe-place.
13481 (c-in-literal, c-literal-limits, c-determine-limit-get-base):
13482 Use c-state-semi-safe-place.
13483
13484 * progmodes/cc-langs.el (c-get-state-before-change-functions):
13485 Add c-invalidate-macro-cache to the C, C++, Obj entries.
13486
13487 2012-03-02 Michael Albinus <michael.albinus@gmx.de>
13488
13489 * jka-compr.el (jka-compr-call-process):
13490 Apply `file-accessible-directory-p' only when the default directory is
13491 not remote.
13492
13493 2012-03-01 Michael Albinus <michael.albinus@gmx.de>
13494
13495 * files.el (file-equal-p): Fix docstring. Avoid unnecessary
13496 access of FILE2, if FILE1 does not exist.
13497
13498 * net/tramp-sh.el (tramp-remote-process-environment): Add "PAGER=\"\"".
13499 Reported by Robert Lupton the Good <rhl@astro.princeton.edu>.
13500
13501 * vc/vc-git.el (vc-git--call): Enable `inhibit-null-byte-detection'.
13502 Add "PAGER=" to `process-environment'.
13503
13504 2012-03-01 Michael R. Mauger <mmaug@yahoo.com>
13505
13506 * progmodes/sql.el: Bug fix
13507 (sql-get-login-ext): Save login values in globals.
13508 (sql-get-login): Use new version of `sql-get-login-ext'.
13509 (sql-interactive-mode): Set global `sql-connection' to nil.
13510 (sql-connect): Set global values for connection.
13511 (sql-product-interactive): Save global values as buffer local.
13512
13513 2012-02-29 Leo Liu <sdl.web@gmail.com>
13514
13515 * abbrev.el (define-abbrevs): Reset sys to nil.
13516
13517 2012-02-28 Thierry Volpiatto <thierry.volpiatto@gmail.com>
13518
13519 * files.el (file-equal-p): Rename from `files-equal-p'.
13520 Return nil when one or both files don't exist.
13521 (file-subdir-of-p): Now only top directory must exists,
13522 return nil if it doesn't.
13523 (copy-directory): No need to test with `file-subdir-of-p' after
13524 creating dir.
13525 * net/tramp.el (tramp-file-name-for-operation): Rename `files-equal-p'
13526 to `file-equal-p'.
13527
13528 2012-02-28 Glenn Morris <rgm@gnu.org>
13529
13530 * shell.el (shell-mode):
13531 * progmodes/vhdl-mode.el (wildcard-to-regexp, file-expand-wildcards):
13532 * play/landmark.el (landmark-font-lock-face-O):
13533 * play/handwrite.el (handwrite):
13534 * play/gomoku.el (gomoku-O):
13535 * net/browse-url.el (browse-url-browser-display):
13536 * international/mule.el (define-charset):
13537 * htmlfontify.el (hfy-etags-cmd, hfy-face-attr-for-class):
13538 * filesets.el (filesets-find-file-delay):
13539 * eshell/em-xtra.el (eshell-xtra):
13540 * eshell/em-unix.el (eshell-grep):
13541 * emulation/viper.el (viper-mode):
13542 * emacs-lisp/regexp-opt.el (regexp-opt-group):
13543 * emacs-lisp/easymenu.el (easy-menu-define):
13544 * calendar/timeclock.el (timeclock-use-display-time):
13545 * bs.el (bs-mode):
13546 * bookmark.el (bookmark-save-flag):
13547 Doc fix (standardize possessive apostrophe usage).
13548
13549 2012-02-27 Chong Yidong <cyd@gnu.org>
13550
13551 * emulation/viper-cmd.el (viper-intercept-ESC-key):
13552 Fix key-binding lookup for ESC key (Bug#9146).
13553
13554 * font-lock.el (font-lock-specified-p): Rename from
13555 font-lock-spec-present. Callers changed.
13556
13557 2012-02-27 Daniel Hackney <dan@haxney.org>
13558
13559 * emacs-lisp/package.el (package-compute-transaction):
13560 Handle holding a package version to t in package-load-list.
13561
13562 2012-02-26 Michael Albinus <michael.albinus@gmx.de>
13563
13564 * net/tramp.el (tramp-inodes, tramp-devices): Initialize with 0.
13565 (tramp-get-inode, tramp-get-device): Use cached values.
13566
13567 2012-02-26 Alan Mackenzie <acm@muc.de>
13568
13569 Check there is a font-lock specification before doing initial
13570 fontification.
13571
13572 * font-core.el (font-lock-mode): Move the conditional from
13573 :after-hook to font-lock-initial-fontify.
13574 (font-lock-default-function): Move the check for a specification
13575 to font-lock-spec-present.
13576
13577 * font-lock.el (font-lock-initial-fontify): Call ...
13578 (font-lock-spec-present): New function.
13579
13580 2012-02-26 Jim Blandy <jimb@red-bean.com>
13581
13582 * progmodes/gdb-mi.el (gdb-mi-quote): New function.
13583 (gdb-send): Apply it to the operand of the '-interpreter-exec
13584 console' command, so that we can pass arguments with (say) quotes
13585 in them. Store exact string sent in gdb-debug-log (Bug#10765).
13586
13587 2012-02-26 Chong Yidong <cyd@gnu.org>
13588
13589 * help-fns.el (describe-function-1): Clarify description of
13590 remapping (Bug#10844).
13591
13592 * files.el (files-equal-p): Doc fix.
13593 (file-subdir-of-p): Doc fix. Convert loop macro to plain Lisp,
13594 and quit the loop once a mismatch is found.
13595
13596 2012-02-25 Juanma Barranquero <lekktu@gmail.com>
13597
13598 * bs.el (bs--show-with-configuration): Don't throw an error
13599 if the window cannot be split; otherwise, subsequent calls to
13600 bs-show fail, restoring a stale window config. (Bug#10882)
13601
13602 2012-02-25 Jan Djärv <jan.h.d@swipnet.se>
13603
13604 * term/ns-win.el (global-map): Bind ns-drag-file to
13605 ns-find-file (Bug#5855, Bug#10050).
13606
13607 2012-02-25 Andreas Schwab <schwab@linux-m68k.org>
13608
13609 * calendar/parse-time.el (parse-time-string): Allow extractor to
13610 return nil.
13611
13612 2012-02-25 Michael Albinus <michael.albinus@gmx.de>
13613
13614 * net/tramp.el (tramp-file-name-for-operation):
13615 Add `files-equal-p' and `file-subdir-of-p'.
13616
13617 * net/tramp-sh.el (tramp-sh-handle-copy-directory):
13618 * net/tramp-smb.el (tramp-smb-handle-copy-directory):
13619 Add COPY-CONTENTS argument.
13620
13621 2012-02-25 Chong Yidong <cyd@gnu.org>
13622
13623 Add custom groups for VC backends, for consistency with vc-bzr.
13624
13625 * vc/vc-arch.el (vc-arch):
13626 * vc/vc-cvs.el (vc-cvs):
13627 * vc/vc-git.el (vc-git):
13628 * vc/vc-hg.el (vc-hg):
13629 * vc/vc-mtn.el (vc-mtn):
13630 * vc/vc-rcs.el (vc-rcs):
13631 * vc/vc-sccs.el (vc-sccs):
13632 * vc/vc-svn.el (vc-svn): New customization group (Bug#10871).
13633 All relevant defcustoms reassigned.
13634
13635 2012-02-25 Chong Yidong <cyd@gnu.org>
13636
13637 * newcomment.el (comment-styles): Add autoload (Bug#10868).
13638
13639 * term/x-win.el (x-initialize-window-system): Reduce default for
13640 x-selection-timeout to 5 seconds (Bug#8869).
13641
13642 2012-02-24 Thierry Volpiatto <thierry.volpiatto@gmail.com>
13643
13644 * files.el (files-equal-p, file-subdir-of-p): New functions.
13645 (copy-directory): Error when trying to copy a directory on itself.
13646 Add missing copy-contents arg to tramp handler.
13647 * dired-aux.el (dired-copy-file-recursive): Same.
13648 (dired-create-files): Modify destination when source is equal to
13649 dest when copying files.
13650 Return also when dest is a subdir of source. (Bug#10489)
13651
13652 2012-02-24 Michael Albinus <michael.albinus@gmx.de>
13653
13654 * net/ange-ftp.el (ange-ftp-parse-netrc): Suppress comment lines.
13655 (Bug#10874)
13656
13657 2012-02-23 Alan Mackenzie <acm@muc.de>
13658
13659 * emacs-lisp/easy-mmode.el (define-minor-mode): Add extra
13660 parameter "after-hook:" to allow the expansion to run code after
13661 the execution of the mode hooks.
13662
13663 * font-lock.el (font-lock-initial-fontify): New function extracted
13664 from font-lock-mode-internal.
13665
13666 * font-core.el (font-lock-mode): Call font-lock-initial-fontify in
13667 :after-hook.
13668
13669 2012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
13670
13671 * minibuffer.el: Make sure cycling is reset upon edit with icomplete.el.
13672 (completion--cache-all-sorted-completions): New function.
13673 (completion-all-sorted-completions): Use it.
13674 (completion--do-completion, minibuffer-force-complete):
13675 Use it to re-instate the flush hook.
13676
13677 * icomplete.el (icomplete-completions): Replace last fix with a better
13678 one (bug#10850).
13679
13680 2012-02-23 Dmitry Gutov <dgutov@yandex.ru>
13681
13682 * emacs-lisp/lisp.el (beginning-of-defun-raw): Don't call end-of-defun
13683 when it might call us back infinitely (bug#10797).
13684
13685 2012-02-23 Glenn Morris <rgm@gnu.org>
13686
13687 * minibuffer.el (completion-category-overrides): Doc fix.
13688
13689 2012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
13690
13691 * minibuffer.el (completion-table-with-context): Fix inf-loop.
13692 Reported by Aaron S. Hawley <aaron.s.hawley@gmail.com>.
13693
13694 2012-02-23 Glenn Morris <rgm@gnu.org>
13695
13696 * emacs-lisp/authors.el (authors-aliases, authors-fixed-case)
13697 (authors-obsolete-files-regexps, authors-ignored-files)
13698 (authors-ambiguous-files, authors-renamed-files-alist):
13699 Add more entries.
13700
13701 2012-02-23 Juri Linkov <juri@jurta.org>
13702
13703 * isearch.el (isearch-occur): Sync interactive spec with occur's
13704 new feature in `occur-read-primary-args'. Doc fix. (Bug#10705)
13705
13706 * replace.el (occur-menu-map): Add menu item for `occur-edit-mode'.
13707
13708 2012-02-22 Juri Linkov <juri@jurta.org>
13709
13710 * international/mule-cmds.el (read-char-by-name): Use \` and \'.
13711 (ucs-insert): Doc fix. Check for hex digits in the string.
13712 Don't display `nil' in the error message. (Bug#10857)
13713
13714 2012-02-22 Alan Mackenzie <acm@muc.de>
13715
13716 * progmodes/cc-mode.el: Revert change #2012-02-06T22:08:41Z!larsi@gnus.org from 2012-02-06.
13717
13718 2012-02-22 Glenn Morris <rgm@gnu.org>
13719
13720 * ffap.el (ffap-c-path):
13721 * man.el (Man-header-file-path): Handle multiarch. (Bug#10702)
13722
13723 2012-02-22 Chong Yidong <cyd@gnu.org>
13724
13725 * custom.el (load-theme): Doc fix.
13726
13727 2012-02-22 Glenn Morris <rgm@gnu.org>
13728
13729 * dired-x.el (dired-guess-shell-alist-default):
13730 Remove escape sequences from nroff output. (Bug#172)
13731
13732 2012-02-21 Glenn Morris <rgm@gnu.org>
13733
13734 * vc/emerge.el (emerge-defvar-local):
13735 Set `permanent-local' property rather than unused `preserved'.
13736
13737 * textmodes/picture.el (picture-delete-char): New alias.
13738 (picture-mode-map): Use it. (Bug#10860)
13739 (picture-mode): Doc fix.
13740
13741 2012-02-21 Juanma Barranquero <lekktu@gmail.com>
13742
13743 * newcomment.el (uncomment-region-default): Remove unused binding.
13744
13745 2012-02-21 Glenn Morris <rgm@gnu.org>
13746
13747 * textmodes/picture.el (picture-motion, picture-motion-reverse)
13748 (picture-self-insert, picture-tab-chars): Doc fix.
13749 (picture-mode-map): Fix C-a, C-e.
13750
13751 2012-02-20 Glenn Morris <rgm@gnu.org>
13752
13753 * emacs-lisp/authors.el (authors-aliases): Add another entry.
13754
13755 2012-02-20 Leo Liu <sdl.web@gmail.com>
13756
13757 * icomplete.el (icomplete-completions): Check FROM arg before
13758 passing to substring (Bug#10850).
13759
13760 2012-02-19 Chong Yidong <cyd@gnu.org>
13761
13762 * comint.el: Require ansi-color.
13763 (comint-output-filter-functions): Add ansi-color-process-output.
13764
13765 * ansi-color.el: Don't set comint-output-filter-functions; it is
13766 now in the initial value defined in comint.el.
13767 (ansi-color-apply-face-function): New variable.
13768 (ansi-color-apply-on-region): Use it.
13769 (ansi-color-apply-overlay-face): New function.
13770
13771 * shell.el (shell): No need to require ansi-color.
13772 (shell-mode): Use ansi-color-apply-face-function to highlight
13773 color escapes using font-lock-face property (Bug#10835).
13774
13775 2012-02-19 Chong Yidong <cyd@gnu.org>
13776
13777 * vc/ediff-init.el (ediff-strip-mode-line-format): Handle non-list
13778 mode-line formats (Bug#10839).
13779
13780 2012-02-18 Glenn Morris <rgm@gnu.org>
13781
13782 * mail/rmail.el (rmail-dont-reply-to-names): Mark as obsolete.
13783
13784 * mail/undigest.el (unforward-rmail-message): Doc fix.
13785
13786 * saveplace.el (save-place-ignore-files-regexp): Add :version.
13787
13788 2012-02-18 Eli Zaretskii <eliz@gnu.org>
13789
13790 * international/characters.el (script-list): Sync with the latest
13791 Unicode Character Database.
13792
13793 2012-02-18 Andreas Schwab <schwab@linux-m68k.org>
13794
13795 * international/titdic-cnv.el: Remove duplicate coding tag.
13796 * language/cham.el: Likewise.
13797 * language/tai-viet.el: Likewise.
13798
13799 2012-02-18 Glenn Morris <rgm@gnu.org>
13800
13801 * calendar/cal-menu.el (cal-menu-diary-menu, cal-menu-goto-menu):
13802 * calendar/calendar.el (diary-file, diary-bahai-entry-symbol)
13803 (calendar-bahai-all-holidays-flag, calendar-other-dates):
13804 * calendar/diary-lib.el (diary-abbreviated-year-flag):
13805 * calendar/holidays.el (holiday-bahai-holidays)
13806 (calendar-holidays, list-holidays):
13807 Use utf-8 Bahá'í in doc-strings, menus, etc.
13808
13809 2012-02-17 Tassilo Horn <tassilo@member.fsf.org>
13810
13811 * saveplace.el (save-place-ignore-files-regexp): New variable
13812 allowing for excluding files from saving their location of point.
13813 The default value matches the temporary commit message editing
13814 files from Git, SVN, Bazaar, and Mercurial.
13815 (save-place-to-alist): Use it.
13816
13817 2012-02-17 Lawrence Mitchell <wence@gmx.li>
13818 Stefan Monnier <monnier@iro.umontreal.ca>
13819
13820 * newcomment.el (uncomment-region-default): Don't leave extra space
13821 when an arg is provided (bug#8150).
13822
13823 2012-02-17 Teodor Zlatanov <tzz@lifelogs.com>
13824
13825 * net/gnutls.el (gnutls-trustfiles): Fix Cygwin bundle location.
13826
13827 2012-02-17 Glenn Morris <rgm@gnu.org>
13828
13829 * net/socks.el: Require network-stream. (Bug#10599)
13830
13831 2012-02-17 Kenichi Handa <handa@m17n.org>
13832
13833 * international/charprop.el:
13834 * international/uni-name.el:
13835 * international/uni-old-name.el:
13836 * international/uni-comment.el: Regenerate.
13837
13838 2012-02-16 Glenn Morris <rgm@gnu.org>
13839
13840 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits):
13841 Interactively in calendar buffer, give an error if not on a date.
13842
13843 2012-02-15 Glenn Morris <rgm@gnu.org>
13844
13845 * shell.el (shell-delimiter-argument-list):
13846 Revert 2011-02-17 change. (Bug#8027)
13847
13848 2012-02-15 Chong Yidong <cyd@gnu.org>
13849
13850 * minibuffer.el (completion-at-point-functions): Doc fix.
13851
13852 * custom.el (defcustom): Doc fix; note use of defvar.
13853
13854 2012-02-15 Glenn Morris <rgm@gnu.org>
13855
13856 * mail/smtpmail.el (smtpmail-smtp-user, smtpmail-stream-type):
13857 Doc fixes.
13858
13859 2012-02-14 Glenn Morris <rgm@gnu.org>
13860
13861 * mail/smtpmail.el (smtpmail-query-smtp-server): Give it a doc.
13862
13863 2012-02-14 Lars Ingebrigtsen <larsi@gnus.org>
13864
13865 * mail/smtpmail.el (smtpmail-query-smtp-server): Fix typo in the
13866 way the ports list is computed.
13867 (smtpmail-query-smtp-server): Prompt the user for a port number if
13868 we can't connect to any of the standard ports (bug#10810).
13869
13870 2012-02-14 Teodor Zlatanov <tzz@lifelogs.com>
13871
13872 * net/gnutls.el (gnutls-trustfiles): Add Cygwin location.
13873
13874 2012-02-13 Glenn Morris <rgm@gnu.org>
13875
13876 * minibuffer.el (read-file-name): Doc fix. (Bug#10798)
13877
13878 2012-02-13 Teodor Zlatanov <tzz@lifelogs.com>
13879
13880 * net/gnutls.el (gnutls-trustfiles): New variable.
13881 (gnutls-negotiate): Use it.
13882
13883 2012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
13884
13885 * simple.el (mail-user-agent): Mention that `gnus-user-agent' only
13886 does its stuff if Gnus is running.
13887
13888 2012-02-13 Alan Mackenzie <acm@muc.de>
13889
13890 Fix a loop in c-set-fl-decl-start.
13891
13892 * progmodes/cc-engine.el (c-set-fl-decl-start): Add a check that
13893 c-backward-syntactic-ws actually moves backwards.
13894
13895 2012-02-13 Leo Liu <sdl.web@gmail.com>
13896
13897 * net/rcirc.el (rcirc-markup-attributes): Move point to the
13898 beginning so that all \C-o chars are removed.
13899
13900 2012-02-12 Teodor Zlatanov <tzz@lifelogs.com>
13901
13902 * net/gnutls.el (gnutls-algorithm-priority): Add missing :group tag.
13903
13904 2012-02-12 Alan Mackenzie <acm@muc.de>
13905
13906 Fix infinite loop with long macros.
13907 * progmodes/cc-engine.el (c-state-safe-place): Handle macros properly.
13908
13909 2012-02-12 Chong Yidong <cyd@gnu.org>
13910
13911 * window.el (display-buffer): Doc fix (Bug#10785).
13912
13913 2012-02-12 Glenn Morris <rgm@gnu.org>
13914
13915 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
13916 (x-disown-selection-internal, x-get-selection-internal):
13917 Sync docs with the xselect.c versions.
13918
13919 * allout-widgets.el: Add missing license notice.
13920
13921 2012-02-11 Glenn Morris <rgm@gnu.org>
13922
13923 * select.el (x-get-selection-internal, x-own-selection-internal)
13924 (x-disown-selection-internal):
13925 * x-dnd.el (x-get-selection-internal): Update declarations.
13926
13927 * vc/log-view.el (vc-diff-internal): Remove unneeded declaration.
13928
13929 * window.el (window-sides-slots):
13930 * tool-bar.el (tool-bar-position):
13931 * term/xterm.el (xterm-extra-capabilities):
13932 * ses.el (ses-self-reference-early-detection):
13933 * progmodes/verilog-mode.el (verilog-auto-declare-nettype)
13934 (verilog-auto-wire-type)
13935 (verilog-auto-delete-trailing-whitespace)
13936 (verilog-auto-reset-blocking-in-non, verilog-auto-inst-sort)
13937 (verilog-auto-tieoff-declaration):
13938 * progmodes/sql.el (sql-login-hook, sql-ansi-statement-starters)
13939 (sql-oracle-statement-starters, sql-oracle-scan-on):
13940 * progmodes/prolog.el (prolog-align-comments-flag)
13941 (prolog-indent-mline-comments-flag, prolog-object-end-to-0-flag)
13942 (prolog-left-indent-regexp, prolog-paren-indent-p)
13943 (prolog-paren-indent, prolog-parse-mode, prolog-keywords)
13944 (prolog-types, prolog-mode-specificators)
13945 (prolog-determinism-specificators, prolog-directives)
13946 (prolog-electric-newline-flag, prolog-hungry-delete-key-flag)
13947 (prolog-electric-dot-flag)
13948 (prolog-electric-dot-full-predicate-template)
13949 (prolog-electric-underscore-flag, prolog-electric-tab-flag)
13950 (prolog-electric-if-then-else-flag, prolog-electric-colon-flag)
13951 (prolog-electric-dash-flag, prolog-old-sicstus-keys-flag)
13952 (prolog-program-switches, prolog-prompt-regexp)
13953 (prolog-debug-on-string, prolog-debug-off-string)
13954 (prolog-trace-on-string, prolog-trace-off-string)
13955 (prolog-zip-on-string, prolog-zip-off-string)
13956 (prolog-use-standard-consult-compile-method-flag)
13957 (prolog-use-prolog-tokenizer-flag, prolog-imenu-flag)
13958 (prolog-imenu-max-lines, prolog-info-predicate-index)
13959 (prolog-underscore-wordchar-flag, prolog-use-sicstus-sd)
13960 (prolog-char-quote-workaround):
13961 * progmodes/cc-vars.el (c-defun-tactic):
13962 * net/tramp.el (tramp-encoding-command-interactive)
13963 (tramp-local-end-of-line):
13964 * net/soap-client.el (soap-client):
13965 * net/netrc.el (netrc-file):
13966 * net/gnutls.el (gnutls):
13967 * minibuffer.el (completion-category-overrides)
13968 (completion-cycle-threshold)
13969 (completion-pcm-complete-word-inserts-delimiters):
13970 * man.el (Man-name-local-regexp):
13971 * mail/feedmail.el (feedmail-display-full-frame):
13972 * international/characters.el (glyphless-char-display-control):
13973 * eshell/em-ls.el (eshell-ls-date-format):
13974 * emacs-lisp/cl-indent.el (lisp-lambda-list-keyword-alignment)
13975 (lisp-lambda-list-keyword-parameter-indentation)
13976 (lisp-lambda-list-keyword-parameter-alignment):
13977 * doc-view.el (doc-view-image-width, doc-view-unoconv-program):
13978 * dired-x.el (dired-omit-verbose):
13979 * cus-theme.el (custom-theme-allow-multiple-selections):
13980 * calc/calc.el (calc-highlight-selections-with-faces)
13981 (calc-lu-field-reference, calc-lu-power-reference)
13982 (calc-note-threshold):
13983 * battery.el (battery-mode-line-limit):
13984 * arc-mode.el (archive-7z-extract, archive-7z-expunge)
13985 (archive-7z-update):
13986 * allout.el (allout-prefixed-keybindings)
13987 (allout-unprefixed-keybindings)
13988 (allout-inhibit-auto-fill-on-headline)
13989 (allout-flattened-numbering-abbreviation):
13990 * allout-widgets.el (allout-widgets-auto-activation)
13991 (allout-widgets-icons-dark-subdir)
13992 (allout-widgets-icons-light-subdir, allout-widgets-icon-types)
13993 (allout-widgets-theme-dark-background)
13994 (allout-widgets-theme-light-background)
13995 (allout-widgets-item-image-properties-emacs)
13996 (allout-widgets-item-image-properties-xemacs)
13997 (allout-widgets-run-unit-tests-on-load)
13998 (allout-widgets-time-decoration-activity)
13999 (allout-widgets-hook-error-post-time)
14000 (allout-widgets-track-decoration):
14001 Add missing :version tags to new defcustoms and defgroups.
14002
14003 * progmodes/sql.el (sql-ansi-statement-starters)
14004 (sql-oracle-statement-starters): Add custom type.
14005
14006 * progmodes/prolog.el: Remove leading '*' from defcustom docs.
14007 (prolog-system-version): Give it a type.
14008
14009 2012-02-11 Eli Zaretskii <eliz@gnu.org>
14010
14011 * term/pc-win.el (x-select-text, x-selection-owner-p)
14012 (x-own-selection-internal, x-disown-selection-internal)
14013 (x-get-selection-internal): Sync doc strings and argument lists
14014 with xselect.c, common-win.el and x-win.el. (Bug#10783)
14015
14016 2012-02-11 Leo Liu <sdl.web@gmail.com>
14017
14018 * progmodes/python.el (python-end-of-statement): Fix infinite
14019 loop. (Bug#10788)
14020
14021 2012-02-10 Glenn Morris <rgm@gnu.org>
14022
14023 * international/mule-cmds.el (unify-8859-on-encoding-mode)
14024 (unify-8859-on-decoding-mode): Properly mark as obsolete.
14025
14026 2012-02-10 Lars Ingebrigtsen <larsi@gnus.org>
14027
14028 * mail/emacsbug.el (report-emacs-bug-hook): Query the user first
14029 about SMTP before checking the From header.
14030
14031 * mail/sendmail.el (sendmail-query-user-about-smtp): Refactor out
14032 into own function for reuse by emacsbug.el.
14033
14034 2012-02-10 Leo Liu <sdl.web@gmail.com>
14035
14036 * subr.el (condition-case-unless-debug): Rename from
14037 condition-case-no-debug. All callers changed.
14038 (with-demoted-errors): Fix caller.
14039
14040 * vc/diff-mode.el (diff-auto-refine-mode, diff-hunk):
14041 * nxml/rng-valid.el (rng-do-some-validation):
14042 * emacs-lisp/package.el (package-refresh-contents)
14043 (package-menu-execute):
14044 * desktop.el (desktop-create-buffer):
14045 * font-lock.el (lisp-font-lock-keywords-2): Caller changed.
14046
14047 2012-02-10 Glenn Morris <rgm@gnu.org>
14048
14049 * textmodes/bibtex.el:
14050 Add missing :version tags for new/changed defcustoms.
14051
14052 * files.el (remote-file-name-inhibit-cache): Doc fixes.
14053
14054 2012-02-09 Lars Ingebrigtsen <larsi@rusty>
14055
14056 * mail/smtpmail.el (smtpmail-user-mail-address): New function.
14057 (smtpmail-via-smtp): Use it, or fall back on the From address.
14058 (smtpmail-send-it): Ditto.
14059
14060 2012-02-09 Stefan Monnier <monnier@iro.umontreal.ca>
14061
14062 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
14063 Don't fallback on byte-compile-defvar. Optimize (defvar foo) away.
14064 (byte-compile-tmp-var): New const.
14065 (byte-compile-defvar): Use it to minimize .elc size.
14066 Just use `defvar' rather than simulate it (bug#10761).
14067
14068 2012-02-09 Glenn Morris <rgm@gnu.org>
14069
14070 * files.el (rename-uniquely): Doc fix. (Bug#3806)
14071
14072 * progmodes/cc-guess.el (c-guess-offset-threshold, c-guess-region-max):
14073 Add :version tags.
14074
14075 * progmodes/compile.el (compilation-error-screen-columns)
14076 (compilation-first-column, compilation-filter-start): Doc fixes.
14077
14078 * vc/log-view.el (log-view-toggle-entry-display):
14079 * vc/vc.el (vc-merge, vc-pull): Doc fixes.
14080
14081 * mail/emacsbug.el (report-emacs-bug-can-use-osx-open)
14082 (report-emacs-bug-can-use-xdg-email):
14083 (report-emacs-bug-insert-to-mailer): Doc fixes.
14084 (report-emacs-bug): Message fix.
14085
14086 * net/browse-url.el (browse-url-can-use-xdg-open)
14087 (browse-url-xdg-open): Doc fixes.
14088
14089 * electric.el (electric-indent-mode, electric-pair-mode)
14090 (electric-layout-rules, electric-layout-mode): Doc fixes.
14091 (electric-pair-pairs, electric-pair-skip-self): Add :version tags.
14092
14093 2012-02-08 Martin Rudalics <rudalics@gmx.at>
14094
14095 * server.el (server-unselect-display): Don't inadvertently kill
14096 the current buffer. (Bug#10729)
14097
14098 2012-02-08 Glenn Morris <rgm@gnu.org>
14099
14100 * progmodes/sql.el (sql-port, sql-connection-alist, sql-list-all)
14101 (sql-list-table): Doc fixes.
14102
14103 * image-mode.el (image-transform-minor-mode-map, image-transform-mode):
14104 Comment out (does nothing).
14105
14106 * completion.el (dynamic-completion-mode):
14107 * dirtrack.el (dirtrack-debug-mode):
14108 * electric.el (electric-layout-mode):
14109 * epa-mail.el (epa-mail-mode, epa-global-mail-mode):
14110 * face-remap.el (text-scale-mode, buffer-face-mode):
14111 * iimage.el (iimage-mode):
14112 * image-mode.el (image-transform-mode):
14113 * minibuffer.el (completion-in-region-mode):
14114 * scroll-lock.el (scroll-lock-mode):
14115 * simple.el (next-error-follow-minor-mode):
14116 * tar-mode.el (tar-subfile-mode):
14117 * tooltip.el (tooltip-mode):
14118 * vcursor.el (vcursor-use-vcursor-map):
14119 * wid-browse.el (widget-minor-mode):
14120 * emulation/tpu-edt.el (tpu-edt-mode):
14121 * emulation/tpu-extras.el (tpu-cursor-free-mode):
14122 * international/iso-ascii.el (iso-ascii-mode):
14123 * language/thai-util.el (thai-word-mode):
14124 * mail/supercite.el (sc-minor-mode):
14125 * net/goto-addr.el (goto-address-mode):
14126 * net/rcirc.el (rcirc-multiline-minor-mode, rcirc-track-minor-mode):
14127 * progmodes/cwarn.el (cwarn-mode):
14128 * progmodes/flymake.el (flymake-mode):
14129 * progmodes/glasses.el (glasses-mode):
14130 * progmodes/hideshow.el (hs-minor-mode):
14131 * progmodes/pascal.el (pascal-outline-mode):
14132 * textmodes/enriched.el (enriched-mode):
14133 * vc/smerge-mode.el (smerge-mode):
14134 Doc fixes (minor mode argument).
14135
14136 2012-02-07 Eli Zaretskii <eliz@gnu.org>
14137
14138 * ls-lisp.el (ls-lisp-sanitize): New function.
14139 (ls-lisp-insert-directory): Use it to fix or remove any elements
14140 in file-alist with missing attributes. (Bug#4673)
14141
14142 2012-02-07 Alan Mackenzie <acm@muc.de>
14143
14144 Fix spurious recognition of c-in-knr-argdecl.
14145
14146 * progmodes/cc-engine.el (c-in-knr-argdecl): Check for '=' in a
14147 putative K&R region.
14148
14149 2012-02-07 Alan Mackenzie <acm@muc.de>
14150
14151 * progmodes/cc-engine.el (c-forward-objc-directive):
14152 Prevent looping in "#pragma mark @implementation".
14153
14154 2012-02-07 Michael Albinus <michael.albinus@gmx.de>
14155
14156 * notifications.el (notifications-on-closed-signal): Make `reason'
14157 optional. (Bug#10744)
14158
14159 2012-02-07 Glenn Morris <rgm@gnu.org>
14160
14161 * emacs-lisp/easy-mmode.el (define-minor-mode):
14162 Doc fixes for the macro and the mode it defines.
14163
14164 * image.el (imagemagick-types-inhibit): Doc fix.
14165
14166 * cus-start.el (imagemagick-render-type): Add it.
14167
14168 2012-02-06 Lars Ingebrigtsen <larsi@gnus.org>
14169
14170 * progmodes/cc-mode.el (c-standard-font-lock-fontify-region-function):
14171 Set the default at load time, too, so that `font-lock-fontify-buffer'
14172 can be called without setting up the entire mode first. This fixes
14173 a bug in `mm-inline-text' with C MIME parts.
14174
14175 2012-02-06 Chong Yidong <cyd@gnu.org>
14176
14177 * simple.el (list-processes--refresh): Delete exited processes
14178 (Bug#8094).
14179
14180 * comint.el (comint-next-prompt): next-single-char-property-change
14181 and prev-single-char-property-change never return nil (Bug#8657).
14182
14183 * custom.el (defcustom): Doc fix (Bug#9711).
14184
14185 2012-02-05 Chong Yidong <cyd@gnu.org>
14186
14187 * cus-edit.el (custom-variable-reset-backup): Quote the value
14188 before storing it in the customized-value property (Bug#6712).
14189 (custom-display): Add a customization type tag.
14190 (custom-buffer-create-internal): Improve tooltip message.
14191
14192 * wid-edit.el (widget-field-value-get): New optional arg to
14193 suppress trailing whitespace truncation.
14194 (character): Use it (Bug#2689).
14195
14196 2012-02-05 Andreas Schwab <schwab@linux-m68k.org>
14197
14198 * progmodes/gud.el (gud-pv): Use pv instead of pv1.
14199 * progmodes/gdb-mi.el (gud-pp): Use pp instead of pp1.
14200
14201 2012-02-05 Chong Yidong <cyd@gnu.org>
14202
14203 * cus-edit.el (custom-variable-value-create): For mismatched
14204 types, show the current value (Bug#7600).
14205
14206 * custom.el (defcustom): Doc fix.
14207
14208 2012-02-05 Glenn Morris <rgm@gnu.org>
14209
14210 * font-lock.el (lisp-font-lock-keywords-2): Add with-wrapper-hook.
14211
14212 2012-02-05 Juanma Barranquero <lekktu@gmail.com>
14213
14214 * emacs-lisp/pp.el (pp-to-string): Use `with-temp-buffer'.
14215 (pp-buffer): Use `ignore-errors', `looking-at-p'.
14216 (pp-last-sexp): Use `looking-at-p'.
14217
14218 2012-02-04 Glenn Morris <rgm@gnu.org>
14219
14220 * files.el (revert-buffer):
14221 Doc fix (mention revert-buffer-in-progress-p).
14222
14223 * emacs-lisp/ert-x.el (ert-simulate-command):
14224 Check deferred-action-list (which is obsolete) is bound.
14225
14226 * subr.el (with-wrapper-hook): Doc fixes.
14227
14228 * simple.el (filter-buffer-substring-functions)
14229 (buffer-substring-filters, filter-buffer-substring): Doc fixes.
14230
14231 2012-02-04 Lars Ljung <lars@matholka.se> (tiny change)
14232
14233 * eshell/esh-ext.el (eshell-windows-shell-file): Match "cmdproxy"
14234 anywhere in shell-file-name, not just at the beginning. (Bug#10523)
14235
14236 2012-02-04 Leo Liu <sdl.web@gmail.com>
14237
14238 * emacs-lisp/smie.el: Fix dead link (Bug#10711).
14239
14240 2012-02-04 Glenn Morris <rgm@gnu.org>
14241
14242 * image.el (image-extension-data): Add obsolete alias.
14243
14244 * isearch.el (isearch-update): Doc fix.
14245
14246 * facemenu.el (list-colors-display): Doc fix (minor rephrasing).
14247
14248 * ido.el (ido-find-file): Doc fix (ido-toggle-vc not on any key).
14249
14250 2012-02-03 Glenn Morris <rgm@gnu.org>
14251
14252 * image.el (image-animated-p): Doc fix. Use image-animated-types.
14253 (image-animate-timeout): Doc fix.
14254
14255 * image-mode.el (image-animate-loop, image-toggle-animation): Doc fixes.
14256
14257 2012-02-02 Glenn Morris <rgm@gnu.org>
14258
14259 * server.el (server-auth-dir): Doc fix.
14260 (server-eval-at): Doc fix. Give an explicit error if !server-use-tcp.
14261
14262 * subr.el (run-mode-hooks): Doc fix.
14263
14264 2012-02-02 Juri Linkov <juri@jurta.org>
14265
14266 * image-mode.el (image-toggle-display-image): Remove tautological
14267 `major-mode' from the `derived-mode-p' test.
14268
14269 2012-02-02 Kenichi Handa <handa@m17n.org>
14270
14271 * composite.el (compose-region): Cancel previous change.
14272
14273 2012-02-02 Kenichi Handa <handa@m17n.org>
14274
14275 * composite.el (compose-region, compose-string): Signal error for
14276 a null string component (Bug#6988).
14277
14278 2012-02-01 Chong Yidong <cyd@gnu.org>
14279
14280 * view.el (view-buffer-other-window, view-buffer-other-frame):
14281 Handle special modes like view-buffer (Bug#10650).
14282 (view-buffer): Simplify.
14283
14284 * frame.el (set-frame-font): Tweak meaning of third argument.
14285
14286 * dynamic-setting.el (font-setting-change-default-font):
14287 Use set-frame-font (Bug#9982).
14288
14289 2012-02-01 Glenn Morris <rgm@gnu.org>
14290
14291 * progmodes/compile.el (compilation-internal-error-properties):
14292 Respect compilation-first-column in the "*compilation*" buffer.
14293
14294 * emacs-lisp/easy-mmode.el (define-minor-mode):
14295 Relax :variable's test for a named function.
14296
14297 2012-01-31 Alan Mackenzie <acm@muc.de>
14298
14299 * progmodes/cc-engine.el (c-guess-basic-syntax): CASE 5B.1: Fix an
14300 off by one error.
14301
14302 2012-01-31 Chong Yidong <cyd@gnu.org>
14303
14304 * frame.el (set-frame-font): New arg ALL-FRAMES.
14305
14306 * menu-bar.el (menu-set-font): Use set-frame-font.
14307
14308 * faces.el (face-spec-reset-face): Don't apply unspecified
14309 attribute values to the default face.
14310
14311 2012-01-31 Juanma Barranquero <lekktu@gmail.com>
14312
14313 * progmodes/cwarn.el (cwarn): Remove dead link.
14314 (cwarn-configuration, cwarn-verbose, cwarn-mode-text, cwarn-load-hook):
14315 Remove * from defcustom docstrings.
14316 (turn-on-cwarn-mode): Make obsolete.
14317 (c-at-toplevel-p): Remove compatibility code for Emacs 20.3 and older.
14318 (turn-on-cwarn-mode-if-enabled): Call `cwarn-mode'.
14319
14320 2012-01-31 Glenn Morris <rgm@gnu.org>
14321
14322 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
14323 Fix :variable handling of mode a symbol not equal to modefun.
14324 Allow named functions to be used as the cdr of :variable.
14325
14326 2012-01-30 Glenn Morris <rgm@gnu.org>
14327
14328 * emacs-lisp/authors.el (authors-fixed-entries):
14329 Remove reference to deleted file rnewspost.el.
14330
14331 2012-01-29 Juanma Barranquero <lekktu@gmail.com>
14332
14333 * window.el (window-with-parameter): Remove unused variable `windows'.
14334 (window--side-check): Remove unused variable `code'.
14335 (window--resize-siblings): Remove unused variable `first'.
14336 (adjust-window-trailing-edge): Remove unused variable `failed'.
14337 (window-deletable-p, window--delete): Remove unused variable `buffer'.
14338 Use `let', not `let*'.
14339 (balance-windows-2): Remove unused variable `found'.
14340 (window--state-put-2): Remove unused variable `splits'.
14341 (window-state-put): Remove unused variable `selected'.
14342 (same-window-p): Use `string-match-p'.
14343 (display-buffer-assq-regexp): Remove unused variable `value'.
14344 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
14345 Mark argument ALIST as ignored.
14346 (pop-to-buffer): Remove unused variable `old-window'.
14347
14348 2012-01-29 Eli Zaretskii <eliz@gnu.org>
14349
14350 * jka-cmpr-hook.el (jka-compr-compression-info-list): Support .lz
14351 and .lzma compressed files.
14352
14353 2012-01-29 Chong Yidong <cyd@gnu.org>
14354
14355 * frame.el (window-system-default-frame-alist): Doc fix.
14356
14357 * dynamic-setting.el (font-setting-change-default-font): Don't
14358 change the default face if SET-FONT argument is non-nil (Bug#9982).
14359
14360 2012-01-29 Samuel Bronson <naesten@gmail.com>
14361
14362 * custom.el (defcustom): Add doc link to Lisp manual (Bug#10635).
14363
14364 2012-01-29 Syver Enstad <syver.enstad@cisco.com> (tiny change)
14365
14366 * progmodes/gud.el (pdb): Give pdb full paths, to allow setting
14367 breakpoints in files outside current directory (Bug#6098).
14368
14369 2012-01-29 Chong Yidong <cyd@gnu.org>
14370
14371 * progmodes/python.el: Require ansi-color at top-level.
14372
14373 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-abbrev-table):
14374 Define and use in Emacs Lisp mode (Bug#9360).
14375 (lisp-mode-abbrev-table): Add doc.
14376 (lisp-mode-variables): Don't set local-abbrev-table.
14377 (lisp-interaction-mode): Use emacs-lisp-mode-abbrev-table.
14378
14379 2012-01-28 Roland Winkler <winkler@gnu.org>
14380
14381 * textmodes/bibtex.el (bibtex-vec-incr): Fix docstring.
14382
14383 2012-01-28 Roland Winkler <winkler@gnu.org>
14384
14385 * textmodes/bibtex.el (bibtex-entry-alist): New function.
14386 (bibtex-set-dialect): Use it. Either set global values of
14387 dialect-dependent variables or bind these variables buffer-locally
14388 (Bug#10254).
14389 (bibtex-mode): Call bibtex-set-dialect via
14390 hack-local-variables-hook.
14391 (bibtex-dialect): Update docstring.
14392 Add safe-local-variable predicate.
14393 (bibtex-entry-alist, bibtex-field-alist): Initialize via
14394 bibtex-set-dialect.
14395 (bibtex-mode-map): Define menu for each dialect.
14396 (bibtex-entry): Fix docstring.
14397
14398 2012-01-28 Chong Yidong <cyd@gnu.org>
14399
14400 * eshell/esh-arg.el (eshell-quote-argument): New function.
14401
14402 * eshell/esh-ext.el (eshell-invoke-batch-file):
14403 * eshell/em-unix.el (eshell/cat, eshell/du): Use it to quote the
14404 first arg to eshell-parse-command (Bug#10523).
14405
14406 2012-01-28 Drew Adams <drew.adams@oracle.com>
14407
14408 * net/ange-ftp.el (ange-ftp-canonize-filename): Check, that
14409 `default-directory' is non-nil.
14410
14411 2012-01-28 Eli Zaretskii <eliz@gnu.org>
14412
14413 * mail/emacsbug.el (report-emacs-bug): Fill the potentially long
14414 line that displays system-configuration-options. (Bug#9924)
14415
14416 2012-01-28 Drew Adams <drew.adams@oracle.com>
14417
14418 * descr-text.el (describe-char): Show information about POS, in
14419 addition to information about the character at POS. Improve and
14420 update the doc string. Change "code point" to "code point in
14421 charset", to avoid confusion with the character's Unicode code
14422 point shown above that. (Bug#10129)
14423
14424 2012-01-28 Eli Zaretskii <eliz@gnu.org>
14425
14426 * descr-text.el (describe-char): Show the raw character, not only
14427 its display form at POS. Suggested by Kenichi Handa <handa@m17n.org>.
14428 See http://lists.gnu.org/archive/html/emacs-devel/2012-01/msg00760.html
14429 for the reasons.
14430
14431 2012-01-28 Phil Hagelberg <phil@hagelb.org>
14432
14433 * emacs-lisp/package.el (package-install):
14434 Run package-refresh-contents if there is no archive yet (Bug#9798).
14435
14436 2012-01-28 Chong Yidong <cyd@gnu.org>
14437
14438 * emacs-lisp/package.el (package-maybe-load-descriptor):
14439 New function, split from package-maybe-load-descriptor.
14440 (package-maybe-load-descriptor): Use it.
14441 (package-download-transaction): Fully load required packages
14442 inside the loop, so that `require' calls work (Bug#10593).
14443 (package-install): No need to call package-initialize now.
14444
14445 2012-01-28 Chong Yidong <cyd@gnu.org>
14446
14447 * simple.el (deactivate-mark): Doc fix (Bug#8614).
14448
14449 * tooltip.el (tooltip-mode): Doc fix.
14450 (tooltip-use-echo-area): Mark as obsolete (Bug#6595).
14451
14452 * frame.el (set-cursor-color): Doc fix (Bug#352).
14453
14454 * mail/rmail.el (rmail-start-mail): Add send-action again (Bug#10625).
14455 (rmail-mail-return): Switch to NEWBUF only if it is non-nil.
14456
14457 * cus-edit.el (custom-buffer-create-internal): Fix search button
14458 action (Bug#10542).
14459 (customize-unsaved, customize-saved): Doc fix (Bug#10541).
14460
14461 2012-01-27 Eduard Wiebe <usenet@pusto.de>
14462
14463 * dired.el (dired-mark-files-regexp):
14464 Include any subdirectory components. (Bug#10445)
14465
14466 2012-01-27 Mike Lamb <mrlamb@gmail.com> (tiny change)
14467
14468 * pcmpl-unix.el (pcmpl-ssh-known-hosts):
14469 Handle [host]:port syntax. (Bug#10533)
14470
14471 2012-01-27 Alex Harsanyi <harsanyi@mac.com>
14472
14473 * xml.el (xml-parse-tag): Fix parsing of comments (Bug#10405).
14474
14475 2012-01-26 Glenn Morris <rgm@gnu.org>
14476
14477 * dired-x.el (dired-bind-jump): Use ctl-x-map and ctl-x-4-map.
14478 * term.el (term-raw-escape-map): Use Control-X-prefix.
14479 * vc/vc-hooks.el (vc-prefix-map): Use ctl-x-map. (Bug#10566)
14480
14481 2012-01-25 Martin Rudalics <rudalics@gmx.at>
14482
14483 * window.el (window-state-get, window--state-get-1): Don't deal
14484 with fixed-sizeness of windows. Simplify code.
14485
14486 2012-01-25 Jérémy Compostella <jeremy.compostella@gmail.com>
14487
14488 * window.el (window--state-get-1, window--state-put-2):
14489 Don't save and restore the mark.
14490
14491 2012-01-25 Chong Yidong <cyd@gnu.org>
14492
14493 * custom.el (custom-variable-p): Doc fix.
14494
14495 2012-01-25 Glenn Morris <rgm@gnu.org>
14496
14497 * dired.el (dired-goto-file): Handle some of the more common
14498 characters that `ls -b' escapes. (Bug#10596)
14499
14500 * progmodes/compile.el (compilation-next-error-function):
14501 Respect compilation-first-column in the "*compilation*" buffer.
14502 * progmodes/grep.el (grep-first-column): New variable. (Bug#10594)
14503
14504 * vc/vc.el (vc-modify-change-comment): Scoping fix. (Bug#10513)
14505
14506 2012-01-24 Glenn Morris <rgm@gnu.org>
14507
14508 * pcmpl-gnu.el (pcomplete/tar): Handle " - ". (Bug#10457)
14509
14510 2012-01-24 Julien Danjou <julien@danjou.info>
14511
14512 * color.el (color-rgb-to-hsl): Fix value computing.
14513 (color-hue-to-rgb): New function.
14514 (color-hsl-to-rgb): New function.
14515 (color-clamp, color-saturate-hsl, color-saturate-name)
14516 (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
14517 (color-lighten-name, color-darken-hsl, color-darken-name): New function.
14518
14519 2012-01-24 Glenn Morris <rgm@gnu.org>
14520
14521 * vc/vc-rcs.el (vc-rcs-create-tag):
14522 * vc/vc-sccs.el (vc-sccs-create-tag):
14523 Fix argument spec to be what vc-create-tag expects. (Bug#10515)
14524
14525 2012-01-23 Mike Lamb <mrlamb@gmail.com> (tiny change)
14526
14527 * eshell/esh-util.el (eshell-read-hosts-file):
14528 Skip comment lines. (Bug#10549)
14529
14530 * eshell/em-unix.el (pcomplete/ssh): Remove. (Bug#10548)
14531
14532 2012-01-23 Juanma Barranquero <lekktu@gmail.com>
14533
14534 * subr.el (display-delayed-warnings): Doc fix.
14535 (collapse-delayed-warnings): New function to collapse identical
14536 adjacent warnings.
14537 (delayed-warnings-hook): Add it.
14538
14539 2012-01-22 Michael Albinus <michael.albinus@gmx.de>
14540
14541 * net/tramp.el (tramp-action-login): Set connection property "login-as".
14542
14543 * net/tramp-sh.el (tramp-methods): Add user spec to "pscp" and "psftp".
14544 (tramp-default-user-alist): Don't add "pscp".
14545 (tramp-do-copy-or-rename-file-out-of-band): Use connection
14546 property "login-as", if set. (Bug#10530)
14547
14548 2012-01-21 Michael Albinus <michael.albinus@gmx.de>
14549
14550 * net/tramp-sh.el (tramp-default-user-alist): Don't add "plink",
14551 "plink1" and "psftp". (Bug#10530)
14552
14553 2012-01-21 Kenichi Handa <handa@m17n.org>
14554
14555 * international/mule-cmds.el (prefer-coding-system): Show a
14556 warning message if the default value of file-name-coding-system
14557 was not changed.
14558
14559 2012-01-21 Jérémy Compostella <jeremy.compostella@gmail.com>
14560
14561 * windmove.el (windmove-reference-loc):
14562 Fix windmove-reference-loc miscalculation.
14563
14564 2012-01-21 Jay Belanger <jay.p.belanger@gmail.com>
14565
14566 * calc/calc-units.el (math-put-default-units): Don't use "1" as a
14567 default unit.
14568
14569 2012-01-21 Glenn Morris <rgm@gnu.org>
14570
14571 * international/mule.el (auto-coding-alist): Add .tbz.
14572
14573 * files.el (local-enable-local-variables): Doc fix.
14574 (inhibit-local-variables-regexps): Rename from
14575 inhibit-first-line-modes-regexps. Keep old name as obsolete alias.
14576 Doc fix. Add some extensions from auto-coding-alist.
14577 (inhibit-local-variables-suffixes):
14578 Rename from inhibit-first-line-modes-suffixes. Doc fix.
14579 (inhibit-local-variables-p):
14580 New function, extracted from set-auto-mode-1.
14581 (set-auto-mode): Doc fix. Respect inhibit-local-variables-regexps.
14582 (set-auto-mode-1): Doc fix. Use inhibit-local-variables-p.
14583 (hack-local-variables): Doc fix. Make the mode-only case
14584 respect enable-local-variables and friends.
14585 Respect inhibit-local-variables-regexps for file-locals, but
14586 not for directory-locals.
14587 (set-visited-file-name):
14588 Take account of inhibit-local-variables-regexps.
14589 Whether it applies may change as the file name is changed.
14590 * jka-cmpr-hook.el (jka-compr-install):
14591 * jka-compr.el (jka-compr-uninstall):
14592 Update for inhibit-first-line-modes-suffixes name change.
14593
14594 2012-01-20 Martin Rudalics <rudalics@gmx.at>
14595
14596 * help-macro.el (make-help-screen): Temporarily restore original
14597 binding for minor-mode-map-alist (Bug#10454).
14598
14599 2012-01-19 Julien Danjou <julien@danjou.info>
14600
14601 * color.el (color-name-to-rgb): Use the white color to find the max
14602 color component value and return correctly computed values.
14603 (color-name-to-rgb): Add missing float conversion for max value.
14604
14605 2012-01-19 Martin Rudalics <rudalics@gmx.at>
14606
14607 * window.el (window--state-get-1, window-state-get): Do not use
14608 special state value for window-persistent-parameters.
14609 Rename argument IGNORE to WRITABLE. Rewrite doc-string.
14610 (window--state-put-2): Reset all window parameters to nil before
14611 assigning values of persistent parameters.
14612
14613 2012-01-18 Alan Mackenzie <acm@muc.de>
14614
14615 Eliminate sluggishness and hangs in fontification of "semicolon
14616 deserts".
14617
14618 * progmodes/cc-engine.el (c-state-nonlit-pos-interval):
14619 Change value 10000 -> 3000.
14620 (c-state-safe-place): Reformulate so it doesn't stack up an
14621 infinite number of wrong entries in c-state-nonlit-pos-cache.
14622 (c-determine-limit-get-base, c-determine-limit): New functions to
14623 determine backward search limits disregarding literals.
14624 (c-find-decl-spots): Amend commenting.
14625 (c-cheap-inside-bracelist-p): New function which detects "={".
14626
14627 * progmodes/cc-fonts.el
14628 (c-make-font-lock-BO-decl-search-function): Give a limit to a
14629 backward search.
14630 (c-font-lock-declarations): Fix an occurrence of point being
14631 undefined. Check additionally for point being in a bracelist or
14632 near a macro invocation without a semicolon so as to avoid a
14633 fruitless time consuming search for a declarator. Give a more
14634 precise search limit for declarators using the new
14635 c-determine-limit.
14636
14637 2012-01-18 Glenn Morris <rgm@gnu.org>
14638
14639 * files.el (auto-mode-alist, inhibit-first-line-modes-regexps)
14640 (set-auto-mode): Doc fixes.
14641
14642 2012-01-17 Glenn Morris <rgm@gnu.org>
14643
14644 * isearch.el (search-nonincremental-instead): Fix doc typo.
14645
14646 * dired.el (dired-insert-directory): Handle newlines in directory name.
14647 (dired-build-subdir-alist): Unescape newlines in directory name.
14648
14649 2012-01-17 Michael Albinus <michael.albinus@gmx.de>
14650
14651 * net/tramp.el (tramp-local-end-of-line): New defcustom.
14652 (tramp-action-login, tramp-action-yesno, tramp-action-yn)
14653 (tramp-action-terminal): Use it. (Bug#10530)
14654
14655 2012-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
14656
14657 * minibuffer.el (completion--replace): Strip properties (bug#10062).
14658
14659 2012-01-16 Martin Rudalics <rudalics@gmx.at>
14660
14661 * window.el (window-state-ignored-parameters): Remove variable.
14662 (window--state-get-1): Rename argument MARKERS to IGNORE.
14663 Handle persistent window parameters. Make copy of clone-of
14664 parameter only if requested. (Bug#10348)
14665 (window--state-put-2): Install a window parameter only if it has
14666 a non-nil value or an existing parameter shall be overwritten.
14667
14668 2012-01-15 Michael Albinus <michael.albinus@gmx.de>
14669
14670 * net/tramp-sh.el (tramp-remote-path): Set tramp-autoload cookie.
14671
14672 2012-01-14 Eli Zaretskii <eliz@gnu.org>
14673
14674 * info.el (Info-toc-build): If the Info file has no "Up" pointer,
14675 don't pass the (nil) value of `upnode' to string-match.
14676
14677 2012-01-14 Chong Yidong <cyd@gnu.org>
14678
14679 * startup.el (command-line): Fix X resource class for cursorColor.
14680 Fix values recognized by the cursorBlink resource.
14681
14682 2012-01-14 Paul Eggert <eggert@cs.ucla.edu>
14683
14684 * epg.el (epg--make-temp-file): Avoid permission race condition
14685 when running on old Emacs versions (bug#10403).
14686
14687 2012-01-14 Glenn Morris <rgm@gnu.org>
14688
14689 * dired.el (dired-get-filename): Fix 'verbatim case of previous change.
14690
14691 2012-01-13 Alan Mackenzie <acm@muc.de>
14692
14693 Fix filling for when filladapt mode is enabled.
14694
14695 * progmodes/cc-cmds.el (c-fill-paragraph): In the invocation of
14696 c-mask-paragraph, pass in `fill-paragraph' rather than
14697 `fill-region-as-paragraph'. (This is a reversion of a previous
14698 change.)
14699 * progmodes/cc-mode.el (c-basic-common-init):
14700 Make fill-paragraph-handle-comment buffer local and set it to nil.
14701
14702 2012-01-13 Glenn Morris <rgm@gnu.org>
14703
14704 * dired.el (dired-switches-escape-p): New function.
14705 (dired-insert-directory): Use dired-switches-escape-p.
14706 (dired-get-filename): Undo "\ " quoting if needed. (Bug#10469)
14707
14708 * find-dired.el (find-ls-option): Doc fix. (Bug#10262)
14709
14710 2012-01-12 Glenn Morris <rgm@gnu.org>
14711
14712 * mail/sendmail.el (mail-mode): Update paragraph-separate for
14713 changes in adaptive-fill-regexp. (Bug#10276)
14714
14715 2012-01-11 Alan Mackenzie <acm@muc.de>
14716
14717 Fix Emacs bug #10463 - put `widen's around the critical spots.
14718
14719 * progmodes/cc-engine.el (c-in-literal, c-literal-limits): Put a
14720 widen around each invocation of c-state-pp-to-literal. Remove an
14721 unused let variable.
14722
14723 2012-01-11 Glenn Morris <rgm@gnu.org>
14724
14725 * dired-aux.el (dired-do-shell-command): Fix */? logic. (Bug#6561)
14726 Doc fix.
14727
14728 2012-01-10 Chong Yidong <cyd@gnu.org>
14729
14730 * net/network-stream.el (network-stream-open-starttls):
14731 Avoid emitting a confusing error message when the server gives a bad
14732 response to the capability command.
14733
14734 2012-01-10 Glenn Morris <rgm@gnu.org>
14735
14736 * mail/unrmail.el (unrmail): Tweak previous change.
14737
14738 2012-01-09 Chong Yidong <cyd@gnu.org>
14739
14740 * custom.el (custom-safe-themes): Use SHA-256 for hashing.
14741
14742 2012-01-08 Alan Mackenzie <acm@muc.de>
14743
14744 Optimize font locking in long enum definitions.
14745
14746 * progmodes/cc-fonts.el (c-font-lock-declarations): Add an extra
14747 arm to a cond form to handle enums.
14748 * progmodes/cc-langs.el (c-enums-contain-decls): New lang variable.
14749 * progmodes/cc-mode.el (c-font-lock-fontify-region): Correct a typo.
14750
14751 2012-01-07 Paul Eggert <eggert@cs.ucla.edu>
14752
14753 * files.el (move-file-to-trash): Preserve default file modes on error.
14754 (Bug#10401)
14755
14756 2012-01-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
14757
14758 * faces.el (set-face-attribute): Clarify the meaning of the nil
14759 frame (bug#10294).
14760
14761 * subr.el (with-selected-frame): Mention that the selected frame
14762 is restored (bug#9980).
14763
14764 * ibuffer.el (ibuffer-mode): List the bindings in the corrent map
14765 (bug#9759).
14766
14767 * mail/smtpmail.el (password-cache-add): Remove unused declaration.
14768 (password-read): Don't autoload unused function.
14769
14770 2012-01-07 Juanma Barranquero <lekktu@gmail.com>
14771
14772 * progmodes/which-func.el (which-func-mode): Turn into a
14773 non-interactive function and mark as obsolete (bug#10428).
14774
14775 2012-01-06 Chong Yidong <cyd@gnu.org>
14776
14777 * files.el (hack-dir-local-variables-non-file-buffer): Add doc.
14778 (hack-one-local-variable-eval-safep): Allow 0 arg for minor mode
14779 functions, along with 1 and -1.
14780
14781 2012-01-06 Eli Zaretskii <eliz@gnu.org>
14782
14783 * time.el (display-time-load-average)
14784 (display-time-default-load-average): Doc fixes. See the thread
14785 starting at
14786 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-01/msg00059.html
14787 for the details.
14788
14789 2012-01-06 Glenn Morris <rgm@gnu.org>
14790
14791 * mail/unrmail.el (unrmail): Give an explicit error if the input file
14792 has no messages. (Bug#10377)
14793
14794 * info.el (Info-mode-map): Bind e to end-of-buffer, rather
14795 than Info-edit. (Bug#10385)
14796
14797 * time.el (display-time-load-average, display-time-next-load-average):
14798 Doc fixes.
14799
14800 * emacs-lisp/bytecomp.el (byte-compile-file): Do not propagate a file
14801 local setting of buffer-read-only to the input buffer. (Bug#10419)
14802
14803 * calendar/calendar.el (calendar-mode):
14804 Locally set scroll-margin to 0. (Bug#10379)
14805
14806 2012-01-06 Ulrich Mueller <ulm@gentoo.org>
14807
14808 * play/doctor.el (doctor-death): Escape "," characters. (Bug#10370)
14809
14810 2012-01-05 Glenn Morris <rgm@gnu.org>
14811
14812 * eshell/em-unix.el (diff-no-select): Autoload it.
14813 (eshell/diff): Use diff-no-select. (Bug#10420)
14814
14815 2012-01-05 Chong Yidong <cyd@gnu.org>
14816
14817 * shell.el (shell-dynamic-complete-functions): Revert last change.
14818 (shell-command-completion-function): New function.
14819 (shell-completion-vars): Use it to implement
14820 shell-completion-execonly (Bug#10417).
14821
14822 * custom.el (enable-theme): Don't set custom-safe-themes.
14823
14824 * cus-theme.el (custom-theme-merge-theme):
14825 Ignore custom-enabled-themes and custom-safe-themes.
14826
14827 2012-01-05 Michael R. Mauger <mmaug@yahoo.com>
14828
14829 * progmodes/sql.el (sql-login-hook): Add hook to respond to the
14830 first prompt in `sql-interacive-mode'.
14831 (sql-mode-oracle-font-lock-keywords): Add CONNECT_BY_* builtin
14832 keywords.
14833 (sql-mode-mysql-font-lock-keywords): Add ELSEIF keyword.
14834 (sql-product-interactive): Bug fix: Set `sql-buffer' in
14835 context of original buffer. Invoke `sql-login-hook'.
14836
14837 2012-01-04 Eli Zaretskii <eliz@gnu.org>
14838
14839 * mail/rmail.el (rmail-font-lock-keywords): Accept non-ASCII
14840 letters in cite-prefix.
14841
14842 2012-01-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
14843
14844 * mail/smtpmail.el (smtpmail-stream-type): Mention the `ssl' value.
14845
14846 2012-01-03 Chong Yidong <cyd@gnu.org>
14847
14848 * shell.el (shell-dynamic-complete-functions):
14849 Put pcomplete-completions-at-point, so as to try
14850 comint-filename-completion first (Bug#10417).
14851
14852 2012-01-02 Richard Stallman <rms@gnu.org>
14853
14854 * battery.el (battery-status-function):
14855 Detect when to use battery-yeeloong-sysfs.
14856 (battery-echo-area-format): Add string for Yeeloong.
14857 (battery-linux-proc-apm, battery-linux-proc-acpi): Doc fixes.
14858 (battery-yeeloong-sysfs): New function.
14859
14860 2012-01-02 Chong Yidong <cyd@gnu.org>
14861
14862 * dirtrack.el (dirtrack-list): Eliminate unused third element.
14863 (dirtrack): Merge code for handling relative filenames in prompt
14864 from shell-dir-cookie-watcher.
14865 (dirtrack-debug-message): New arg to avoid excess format calls.
14866
14867 * shell.el (shell-dir-cookie-re): Variable deleted.
14868 (shell-dir-cookie-watcher): Function deleted.
14869 (shell-mode): Don't use shell-dir-cookie-re, since it is redundant
14870 with dirtrack-mode.
14871
14872 2012-01-01 Eli Zaretskii <eliz@gnu.org>
14873
14874 * term/w32-win.el (dynamic-library-alist) <gnutls>:
14875 Load libgnutls-28.dll, from GnuTLS version 3.x, in preference to
14876 libgnutls-26.dll.
14877
14878 2011-12-31 Andreas Schwab <schwab@linux-m68k.org>
14879
14880 * emacs-lisp/bytecomp.el (byte-compile-file): Fix indentation.
14881
14882 2011-12-31 Eli Zaretskii <eliz@gnu.org>
14883
14884 * mail/rmail.el (rmail-show-message-1): Decode any RFC2047 encoded
14885 headers of non-MIME messages, when rmail-enable-mime is non-nil.
14886
14887 2011-12-29 Michael Albinus <michael.albinus@gmx.de>
14888
14889 * net/tramp-sh.el (tramp-find-shell): Set "remote-shell" property
14890 also for alternative shells.
14891 (tramp-open-connection-setup-interactive-shell): Check, whether
14892 the shell is a busybox.
14893 (tramp-send-command): Don't suppress multiple prompts for
14894 busyboxes, it hurts.
14895
14896 2011-12-28 Chong Yidong <cyd@gnu.org>
14897
14898 * progmodes/gdb-mi.el (gdb-get-source-file-list)
14899 (gdb-get-source-file): Move mode line update to
14900 gdb-get-source-file (Bug#10087).
14901
14902 2011-12-25 Chong Yidong <cyd@gnu.org>
14903
14904 * progmodes/gud.el (gud-gdb-fetch-lines-filter): Just use
14905 gud-gdb-marker-filter without taking it as an argument.
14906 (gud-gdb-run-command-fetch-lines): Caller changed.
14907 (gud-gdb-completion-function): New variable.
14908 (gud-gdb-completion-at-point): Use it.
14909 (gud-gdb-completions-1): Split from gud-gdb-completions.
14910
14911 * progmodes/gdb-mi.el (gdb-input): Accept command and handler
14912 function as separate arguments.
14913 (gdb-init-1, gdb-non-stop-handler, gdb-check-target-async)
14914 (gdb-tooltip-print-1, gud-watch, gdb-speedbar-update)
14915 (gdb-var-list-children, gdb-var-set-format, gdb-var-delete-1)
14916 (gdb-var-delete-children, gdb-edit-value, gdb-var-update)
14917 (gdb-stopped, def-gdb-auto-update-trigger)
14918 (gdb-place-breakpoints, gdb-select-thread, gdb-select-frame)
14919 (gdb-get-changed-registers, gdb-get-main-selected-frame):
14920 Callers changed.
14921 (gud-gdbmi-completions): New function.
14922 (gdb): Use it for generating the completion table.
14923
14924 2011-12-24 Alan Mackenzie <acm@muc.de>
14925
14926 Introduce a mechanism to widen the region used in context font
14927 locking. Use this to protect declarations from losing their contexts.
14928
14929 * progmodes/cc-langs.el (c-before-font-lock-functions):
14930 Replace c-set-fl-decl-start with c-change-set-fl-decl-start (Renaming).
14931 (c-before-context-fontification-functions): New defvar, a list of
14932 functions to be run just before context (etc.) font locking.
14933
14934 * progmodes/cc-mode.el (c-extend-font-lock-region-for-macros):
14935 New, functionality extracted from
14936 c-neutralize-syntax-in-and-mark-CPP.
14937 (c-in-after-change-fontification): New variable.
14938 (c-after-change): Set c-in-after-change-fontification.
14939 (c-set-fl-decl-start): Rejig its interface, so it can be called
14940 from both after-change and context fontifying.
14941 (c-change-set-fl-decl-start, c-context-set-fl-decl-start):
14942 New functions.
14943 (c-standard-font-lock-fontify-region-function): New variable.
14944 (c-font-lock-fontify-region): New function.
14945
14946 2011-12-24 Juri Linkov <juri@jurta.org>
14947
14948 * window.el (window--state-get-1): Set `FORCE' arg of `mark' to t.
14949 (Bug#10348)
14950
14951 2011-12-23 Michael Albinus <michael.albinus@gmx.de>
14952
14953 * net/ange-ftp.el (ange-ftp-copy-file-internal): Check for
14954 existence of source file. (Bug#10325)
14955
14956 2011-12-23 Alan Mackenzie <acm@muc.de>
14957
14958 Fix unstable fontification inside templates.
14959
14960 * progmodes/cc-langs.el (c-before-font-lock-functions):
14961 Newly created from the singular version. The (c c++ objc) entry now
14962 additionally has c-set-fl-decl-start. The other languages (apart
14963 from AWK) have that as a single entry.
14964
14965 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
14966 The functionality for "local" declarations has been extracted to
14967 c-set-fl-decl-start.
14968
14969 * progmodes/cc-mode.el (c-common-init, c-after-change):
14970 Changes due to pluralisation of c-before-font-lock-functions.
14971 (c-set-fl-decl-start): New function, extracted from
14972 c-font-lock-enclosing-decls and enhanced.
14973
14974 2011-12-23 Juanma Barranquero <lekktu@gmail.com>
14975
14976 * desktop.el (desktop-internal-v2s): Fix typos in docstring (bug#10353).
14977
14978 2011-12-22 Juri Linkov <juri@jurta.org>
14979
14980 * progmodes/grep.el (rgrep): Fix docstring. (Bug#10185)
14981
14982 2011-12-22 Chong Yidong <cyd@gnu.org>
14983
14984 * vc/vc-hooks.el (vc-keep-workfiles): Doc fix.
14985
14986 2011-12-21 Drew Adams <drew.adams@oracle.com>
14987
14988 * files.el (file-remote-p): Fix docstring. (Bug#10319)
14989
14990 2011-12-21 Jérémy Compostella <jeremy.compostella@gmail.com>
14991
14992 * battery.el (battery-linux-sysfs): Add missing parameters from acpi.
14993
14994 2011-12-21 Teodor Zlatanov <tzz@lifelogs.com>
14995
14996 * progmodes/cfengine.el: Add Version. Improve CFEngine 3.x syntax
14997 highlighting and support. Fix up comments for capitalization.
14998 (cfengine-mode-debug): New var.
14999 (cfengine3-mode): Change the modeline indicator to "CFE3".
15000 (cfengine3-font-lock-keywords): Improve defun highlighting.
15001 (cfengine2-actions): Rename from `cfengine-actions'.
15002 (cfengine2-font-lock-keywords): Rename from
15003 `cfengine-font-lock-keywords'.
15004 (cfengine2-imenu-expression): Rename from
15005 `cfengine-imenu-expression'.
15006 (cfengine2-outline-level): Rename from `cfengine-outline-level'.
15007 (cfengine2-beginning-of-defun): Rename from
15008 `cfengine-beginning-of-defun'.
15009 (cfengine2-end-of-defun): Rename from `cfengine-end-of-defun'.
15010 (cfengine2-indent-line): Rename from `cfengine-indent-line'.
15011 (cfengine2-mode): Rename from `cfengine-mode'. Change the
15012 modeline indicator to "CFE2".
15013 (cfengine-mode): Defalias to `cfengine-auto-mode'.
15014 (cfengine-mode-abbrevs): Mark obsolete.
15015
15016 2011-12-21 Chong Yidong <cyd@gnu.org>
15017
15018 * vc/vc-bzr.el (vc-bzr-rename-file): Don't pass ~ to Bzr in
15019 filename argument.
15020
15021 2011-12-20 Martin Rudalics <rudalics@gmx.at>
15022
15023 * window.el (window-normalize-buffer-to-display): Remove.
15024 (display-buffer): Handle buffer-or-name argument as in Emacs 23.
15025
15026 2011-12-19 Chong Yidong <cyd@gnu.org>
15027
15028 * vc/vc-dir.el (vc-dir-parent-marked-p, vc-dir-children-marked-p):
15029 Don't signal an error in a predicate function; return non-nil.
15030 (vc-dir-mark-file): Move the error here.
15031 (vc-dir-mark-unmark): If acting on the region, keep going if one
15032 of the entries cannot be marked/unmarked.
15033 (vc-dir-mark-all-files): If current entry is a directory, mark
15034 only child files, as documented.
15035
15036 2011-12-19 Vincent Belaïche <vincentb1@users.sourceforge.net>
15037
15038 * ses.el: Ooops... undo changes of 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net, as trunk
15039 branch is feature frozen, and 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net was a feature
15040 addition.
15041
15042 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
15043
15044 * term/ns-win.el (ns-get-selection-internal)
15045 (ns-store-selection-internal): Declare.
15046 (ns-store-cut-buffer-internal, ns-get-cut-buffer-internal):
15047 Declare as obsolete.
15048 (ns-get-pasteboard, ns-paste-secondary):
15049 Use ns-get-selection-internal.
15050 (ns-set-pasteboard, ns-copy-including-secondary):
15051 Use ns-store-selection-internal.
15052
15053 2011-12-17 Chong Yidong <cyd@gnu.org>
15054
15055 * vc/vc.el (vc-next-action): Doc fix; remove CVS-isms.
15056 (vc-deduce-fileset): Doc fix.
15057
15058 2011-12-16 Andreas Schwab <schwab@linux-m68k.org>
15059
15060 * calc/calc-misc.el (calc-help): Avoid wrapping help message.
15061
15062 2011-12-13 Sam Steingold <sds@gnu.org>
15063
15064 * man.el (Man-getpage-in-background): When running under a
15065 window-system, ignore $MANWIDTH and $COLUMNS.
15066
15067 2011-12-15 Kenichi Handa <handa@m17n.org>
15068
15069 * language/ethio-util.el: Change coding tag to utf-8-emacs.
15070 (setup-ethiopic-environment-internal): Comment out key-binding for
15071 ethio-toggle-punctuation.
15072
15073 2011-12-13 Alan Mackenzie <acm@muc.de>
15074
15075 Add the switch statement to AWK Mode.
15076
15077 * progmodes/cc-awk.el (awk-font-lock-keywords): Add "switch", "case",
15078 "default" to the keywords regexp.
15079
15080 * progmodes/cc-langs.el (c-label-kwds): Let AWK take the same
15081 expression as the rest.
15082 (c-nonlabel-token-key): Allow string literals for AWK.
15083 Refactor for the other modes.
15084
15085 Large brace-block initialisation makes CC Mode slow: Fix.
15086 Tidy up and accelerate c-in-literal, etc. by using the c-parse-state
15087 routines. Limit backward searching in c-font-lock-enclosing.decl.
15088
15089 * progmodes/cc-engine.el (c-state-pp-to-literal): Return the
15090 pp-state and literal type in addition to the limits.
15091 (c-state-safe-place): New defun, extracted from c-state-literal-at.
15092 (c-state-literal-at): Use the above new defun.
15093 (c-slow-in-literal, c-fast-in-literal): Remove.
15094 (c-in-literal, c-literal-limits): Amend to use c-state-pp-to-literal.
15095
15096 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Check for
15097 being in a literal. Add a limit for backward searching.
15098
15099 * progmodes/cc-mode.el (awk-mode): Don't alias c-in-literal to
15100 c-slow-in-literal.
15101
15102 2011-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
15103
15104 * progmodes/pascal.el: Declare `ind' as dyn-bound (bug#10264).
15105
15106 2011-12-13 Martin Rudalics <rudalics@gmx.at>
15107
15108 * window.el (delete-other-windows): Use correct frame in call to
15109 window-with-parameter.
15110
15111 2011-12-12 Daniel Pfeiffer <occitan@t-online.de>
15112
15113 * progmodes/make-mode.el: Bring it up to date with makepp V2.0.
15114 (makefile-make-font-lock-keywords): Extend meaning of `keywords'.
15115 (makefile-gmake-statements, makefile-makepp-statements):
15116 Use it and add new makepp keywords.
15117 (makefile-makepp-font-lock-keywords): Add new patterns.
15118 (makefile-match-function-end): Match new [...] and [[...]].
15119
15120 2011-12-11 Juanma Barranquero <lekktu@gmail.com>
15121
15122 * ses.el (ses-call-printer-return, ses-cell-property-get)
15123 (ses-sym-rowcol, ses-printer-validate, ses-formula-record)
15124 (ses-create-cell-variable, ses-reset-header-string)
15125 (ses-cell-set-formula, ses-repair-cell-reference-all)
15126 (ses-self-reference-early-detection, ses-in-print-area, ses-set-curcell)
15127 (ses-check-curcell, ses-call-printer, ses-adjust-print-width)
15128 (ses-print-cell-new-width, ses-formula-references, ses-relocate-formula)
15129 (ses-aset-with-undo, ses-load, ses-truncate-cell)
15130 (ses-read-column-printer, ses-read-default-printer, ses-insert-row)
15131 (ses-delete-row, ses-delete-column, ses-append-row-jump-first-column)
15132 (ses-kill-override, ses-yank-pop, ses-yank-cells, ses-yank-tsf)
15133 (ses-yank-resize, ses-export-tab, ses-mark-row, ses-mark-column)
15134 (ses-renarrow-buffer, ses-insert-range, ses-insert-ses-range)
15135 (ses-safe-printer, ses-safe-formula, ses-warn-unsafe, ses--clean-!)
15136 (ses--clean-_, ses-range, ses-select, ses-center, ses-center-span)
15137 (ses-dashfill, ses-unsafe): Fix typos and reflow docstrings.
15138
15139 2011-12-11 Vincent Belaïche <vincentb1@users.sourceforge.net>
15140
15141 * ses.el: The overall change is to add cell renaming, that is
15142 setting fancy names for cell symbols other than name matching
15143 "\\`[A-Z]+[0-9]+\\'" regexp .
15144 (ses-create-cell-variable): New defun.
15145 (ses-relocate-formula): Relocate formulas only for cells the
15146 symbols of which are not renamed, i.e. symbols whose names do not
15147 match regexp "\\`[A-Z]+[0-9]+\\'".
15148 (ses-relocate-all): Relocate values only for cells the symbols of
15149 which are not renamed.
15150 (ses-load): Create cells variables as the (ses-cell ...) are read,
15151 in order to check row col consistency with cell symbol name only
15152 for cells that are not renamed.
15153 (ses-replace-name-in-formula): New defun.
15154 (ses-rename-cell): New defun.
15155
15156 2011-12-11 Chong Yidong <cyd@gnu.org>
15157
15158 * progmodes/gdb-mi.el (gdb): Set comint-prompt-regexp, required
15159 for completion via gud-gdb-fetch-lines-filter (Bug#10274).
15160
15161 2011-12-11 Eric Hanchrow <eric.hanchrow@gmail.com>
15162
15163 * window.el (other-window): Fix docstring.
15164
15165 2011-12-10 Eli Zaretskii <eliz@gnu.org>
15166
15167 * mail/rmailsum.el (rmail-header-summary): RFC2047 decode the
15168 `from' or `to' address before taking its substring.
15169 Fixes incorrect display in Rmail summary buffer whereby an RFC2047
15170 encoded name is chopped in the middle of the encoded string, and
15171 thus displayed encoded.
15172
15173 2011-12-10 Juanma Barranquero <lekktu@gmail.com>
15174
15175 * makefile.w32-in (update-subdirs-CMD): Use a Local Variables section.
15176
15177 2011-12-10 Eli Zaretskii <eliz@gnu.org>
15178
15179 * textmodes/texnfo-upd.el: Update commentary. Add a warning not
15180 to use texinfo-update-node and commands that call it if the
15181 Texinfo file uses @node lines without next/prev/up pointers.
15182 Correct outdated description about texinfo-master-menu.
15183 (texinfo-all-menus-update, texinfo-master-menu)
15184 (texinfo-update-node, texinfo-every-node-update)
15185 (texinfo-multiple-files-update): Doc fix. Warn against updating
15186 all the @node lines.
15187 (texinfo-master-menu): Only call texinfo-update-node if the prefix
15188 argument is numeric. Explain better in the doc string what the
15189 function really does.
15190 (texinfo-insert-master-menu-list): Improve the error message
15191 displayed if there's no menu in the Top node.
15192 (Bug#2975) See also this thread:
15193 http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00156.html.
15194
15195 2011-12-09 Manuel Gómez <mgrojo@gmail.com> (tiny change)
15196
15197 * speedbar.el (speedbar-supported-extension-expressions):
15198 Add .adb and .ads, commonly used for Ada source code (bug#10256).
15199
15200 2011-12-09 Juanma Barranquero <lekktu@gmail.com>
15201
15202 * printing.el (pr-mode-alist):
15203 * simple.el (filter-buffer-substring-functions)
15204 (completion-list-insert-choice-function):
15205 * window.el (window-with-parameter, window-atom-root)
15206 (window-sides-slots, window-size-fixed, window-min-delta)
15207 (window-max-delta, window--resize-mini-window)
15208 (window--resize-child-windows-normal, window-tree)
15209 (delete-other-windows, quit-window, split-window)
15210 (display-buffer-record-window, special-display-buffer-names)
15211 (special-display-regexps, special-display-popup-frame)
15212 (same-window-p, split-window-sensibly)
15213 (display-buffer-overriding-action, display-buffer-alist)
15214 (display-buffer-base-action, display-buffer, switch-to-buffer)
15215 (switch-to-buffer-other-window, switch-to-buffer-other-frame)
15216 (fit-window-to-buffer, recenter-positions)
15217 (mouse-autoselect-window-state, mouse-autoselect-window-select):
15218 * emacs-lisp/syntax.el (syntax-propertize-function): Fix typos
15219 and remove unneeded backslashes in docstrings.
15220
15221 2011-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
15222
15223 * emacs-lisp/lisp-mode.el (defmethod): Add doc-string-elt (bug#10244).
15224
15225 * pcmpl-gnu.el: Don't fail when there is no Makefile nor -f arg.
15226 (pcmpl-gnu-makefile-regexps): Accept "makefile" as well as files that
15227 end in ".mk".
15228 (pcmpl-gnu-make-rule-names): Check "makefile" and ignore errors
15229 when reading the makefile (bug#10116).
15230
15231 2011-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
15232
15233 * pcmpl-gnu.el (pcomplete/make): Also allow filename arguments
15234 (bug#10116).
15235
15236 2011-12-06 Glenn Morris <rgm@gnu.org>
15237
15238 * emacs-lisp/package.el (package-archives): Doc fix re riskiness.
15239
15240 2011-12-06 Chong Yidong <cyd@gnu.org>
15241
15242 * progmodes/cc-fonts.el (c-annotation-face): Use defface.
15243
15244 2011-12-06 Juanma Barranquero <lekktu@gmail.com>
15245
15246 * textmodes/table.el (table-shorten-cell): Fix typo.
15247
15248 2011-12-05 Christopher Genovese <genovese.cr@gmail.com> (tiny change)
15249
15250 * emacs-lisp/assoc.el (aput): Fix return value (bug#10146)
15251
15252 2011-12-05 Eli Zaretskii <eliz@gnu.org>
15253
15254 * descr-text.el (describe-char): Fix display of strong
15255 right-to-left characters and directional embeddings and overrides.
15256
15257 * simple.el (what-cursor-position): Fix display of codepoints of
15258 strong right-to-left characters.
15259
15260 2011-12-05 Chong Yidong <cyd@gnu.org>
15261
15262 * faces.el (read-color): Doc fix.
15263
15264 2011-12-05 Glenn Morris <rgm@gnu.org>
15265
15266 * align.el (align--set-marker): Add doc-string.
15267 Don't try to move something that is not a marker. (Bug#10216)
15268
15269 2011-12-04 Glenn Morris <rgm@gnu.org>
15270
15271 * calendar/appt.el (appt-add): Rewrite the interactive-spec to avoid
15272 overly zealous deletion of trailing whitespace.
15273
15274 2011-12-04 Juanma Barranquero <lekktu@gmail.com>
15275
15276 * server.el (server-delete-client): On Windows, do not try to delete
15277 the only terminal.
15278 (server-process-filter): On Windows, treat requests for a tty frame as
15279 if they were for a GUI frame if the running server is in GUI mode.
15280
15281 2011-12-03 Glenn Morris <rgm@gnu.org>
15282
15283 * textmodes/texinfmt.el (batch-texinfo-format): Doc fix. (Bug#10207)
15284
15285 2011-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
15286
15287 * electric.el: Streamline electric-indent's hook.
15288 (electric-indent-chars): Revert to simple list.
15289 (electric-indent-functions): New var.
15290 (electric-indent-post-self-insert-function): Use it.
15291
15292 * progmodes/prolog.el (prolog-find-value-by-system): Avoid error when
15293 there's no inferior buffer (bug#10196).
15294 (prolog-consult-compile): Don't use toggle-read-only.
15295
15296 2011-12-02 Michael Albinus <michael.albinus@gmx.de>
15297
15298 * net/tramp-sh.el (tramp-maybe-open-connection): Handle user
15299 interrupt. (Bug#10187)
15300
15301 2011-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
15302
15303 * pcmpl-gnu.el (pcomplete/tar): large-file-warn-threshold can be nil
15304 (bug#9160).
15305
15306 * dired-aux.el (dired-query): Don't assume help-char is modifier-free
15307 (bug#10191).
15308
15309 2011-12-02 Juri Linkov <juri@jurta.org>
15310
15311 * info.el (Info-search): Display "end of manual" when Isearch
15312 reaches the end of single-file Info manual. (Bug#9918)
15313
15314 2011-12-02 Eli Zaretskii <eliz@gnu.org>
15315
15316 * isearch.el (isearch-message-prefix): Run the input method part
15317 of the prompt through bidi-string-mark-left-to-right. (Bug#10183)
15318
15319 2011-12-02 Juri Linkov <juri@jurta.org>
15320
15321 * isearch.el (isearch-occur): Use `word-search-regexp' for
15322 `isearch-word'.
15323 (isearch-search-and-update): Add condition for `isearch-word' and
15324 call `word-search-regexp'. (Bug#10145)
15325
15326 2011-12-01 Glenn Morris <rgm@gnu.org>
15327
15328 * eshell/em-hist.el (eshell-hist-initialize):
15329 Handle eshell-history-size nil and HISTSIZE set or unset.
15330 (eshell-history-file-name, eshell-history-size): Fix custom type.
15331
15332 2011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
15333
15334 * man.el (Man-completion-table): Fix the lambda case (bug#10168).
15335
15336 2011-12-01 Michael McNamara <mac@mail.brushroad.com>
15337
15338 * progmodes/verilog-mode.el (verilog-pretty-expr):
15339 Rework verilog-pretty-expr to handle new assignment operators in system
15340 verilog, such as += *= and the like.
15341 (verilog-assignment-operator-re): Regular expression to find the
15342 assigment operator in a verilog assignment.
15343 (verilog-assignment-operation-re): Regular expression to find an
15344 assignment statement for pretty-expr.
15345 (verilog-in-attribute-p): Query returns true if point is in an
15346 attribute context; used to skip these for expression line up from
15347 pretty-expr.
15348 (verilog-in-parameter-p): Query returns true if point is in an
15349 parameter definition context; used to skip these for expression
15350 line up from pretty-expr.
15351 (verilog-in-parenthesis-p): Query returns true if point is in a
15352 parenthetical expression, specifically ( ) but not [ ] or { };
15353 used by pretty-expr.
15354 (verilog-just-one-space): If there is no space, don't add one.
15355 (verilog-get-lineup-indent-2): Specifically skip just attribute
15356 contexts for expression lineup, rather than skipping all
15357 parenthetical expressions.
15358 (verilog-calculate-indent): Fix comment, and fix indent.
15359 (verilog-do-indent): Indent declarations in lists (suggested by
15360 Joachim Lechner).
15361 (verilog-mode-abbrev-table): Populate abbrev mode with the various
15362 skeleton items.
15363 (verilog-sk-ovm-class): Add skeleton for OVM classes (reported
15364 by Alain Mellan).
15365
15366 2011-12-01 Wilson Snyder <wsnyder@wsnyder.org>
15367
15368 * progmodes/verilog-mode.el (verilog-read-defines): Fix reading
15369 parameters with embedded comments. Reported by Ray Stevens.
15370 (verilog-calc-1, verilog-fork-wait-re) (verilog-forward-sexp,
15371 verilog-wait-fork-re): Fix indentation of "wait fork", bug407.
15372 Reported by Tim Holt.
15373 (verilog-auto): Fix AUTOing a upper module then AUTOing module
15374 instantiated by upper module causing wrong expansion until AUTOed a
15375 second time. Reported by K C Buckenmaier.
15376 (verilog-diff-auto): Fix showing .* as a difference when
15377 `verilog-auto-star-save' off. Reported by Dan Dever.
15378 (verilog-auto-reset, verilog-read-always-signals)
15379 (verilog-auto-reset-blocking-in-non): Fix AUTORESET including
15380 temporary signals in reset list if
15381 verilog-auto-reset-blocking-in-non is nil, and match assignment
15382 style to each signal's assignment type, bug381.
15383 Reported by Thomas Esposito.
15384 (verilog-sk-uvm-class, verilog-uvm-begin-re, verilog-uvm-end-re)
15385 (verilog-uvm-statement-re): Support UVM indentation and
15386 highlighting, with old OVM keywords only.
15387 (verilog-auto-tieoff, verilog-auto-tieoff-declaration):
15388 Support AUTOTIEOFF creating non-wire data types.
15389 Suggested by Jonathan Greenlaw.
15390 (verilog-auto-insert-lisp, verilog-delete-to-paren)
15391 (verilog-forward-sexp-cmt, verilog-forward-sexp-ign-cmt)
15392 (verilog-inject-sense, verilog-read-inst-pins)
15393 (verilog-read-sub-decls, verilog-read-sub-decls-line):
15394 Fix mismatching parenthesis inside commented out code when deleting
15395 AUTOINST, bug383. Reported by Jonathan Greenlaw.
15396 (verilog-auto-ascii-enum): Fix AUTOASCIIENUM one-hot with
15397 non-numeric vector width. Reported by Alex Reed.
15398 (verilog-auto-ascii-enum): Add "onehot" option to work around not
15399 detecting signals with parameter widths. Reported by Alex Reed.
15400 (verilog-auto-delete-trailing-whitespace):
15401 With `verilog-auto-delete-trailing-whitespace' remove trailing
15402 whitespace in auto expansion, bug371. Reported by Brad Dobbie.
15403 (verilog-run-hooks, verilog-scan-cache-flush, verilog-syntax-ppss):
15404 Fix verilog-scan-cache corruption when running user AUTO expansion
15405 hooks that call indentation routines.
15406 (verilog-simplify-range-expression): Fix typo ignoring lower case
15407 identifiers.
15408 (verilog-delete-auto): Fix delete-autos to also remove user created
15409 automatics, as long as they start with AUTO.
15410 (verilog-batch-diff-auto, verilog-diff-auto)
15411 (verilog-diff-function): Add `verilog-diff-auto' and bind to
15412 "C-c?" to report differences in AUTO expansion, ignoring spaces.
15413 (verilog-backward-syntactic-ws-quick, verilog-beg-of-defun-quick)
15414 (verilog-in-paren-quick, verilog-re-search-backward-quick)
15415 (verilog-re-search-forward-quick, verilog-syntax-ppss):
15416 Fix calling `syntax-ppss' when inside auto expansions as the ppss hook
15417 is disabled and its cache will get corrupt, causing AUTOS not to
15418 expand. Instead use only -quick functions.
15419 (verilog-scan-region): Fix scanning over escaped quotes.
15420 (verilog-inside-comment-or-string-p, verilog-inside-comment-p)
15421 (verilog-re-search-backward-quick)
15422 (verilog-re-search-forward-quick, verilog-scan): verilog-scan and
15423 related functions now ignore strings, to fix misparsing of strings
15424 with magic comments embedded in them.
15425 (verilog-read-auto-template):
15426 Fix 'verilog-auto-inst-template-numbers' with extra newline before (.
15427 Reported by Brad Dobbie.
15428 (verilog-read-auto-template):
15429 Fix 'verilog-auto-inst-template-numbers' with comments.
15430 Reported by Brad Dobbie.
15431 (verilog-auto-inst, verilog-auto-inst-param)
15432 (verilog-auto-inst-sort): Add 'verilog-auto-inst-sort' to reduce
15433 merge conflicts with AUTOINST, bug358. Reported by Brad Dobbie.
15434 (verilog-auto-inst-template-numbers): Add 'lhs' policy for
15435 debugging templates without merge conflicts, bug357.
15436 Reported by Brad Dobbie.
15437 (verilog-read-auto-template):
15438 Fix verilog-auto-inst-template-numbers with multiple templates.
15439 Reported by Brad Dobbie.
15440 (verilog-define-abbrev): Fix verilog-mode abbrevs to be system
15441 abbrevs so user won't be asked to save.
15442 (verilog-read-auto-lisp-present): Fix to start at beginning of
15443 buffer in case called outside of verilog-auto.
15444 (verilog-simplify-range-expression): Fix AUTOWIRE expanding "X-1+1"
15445 to "X-2". Reported by Matthew Myers.
15446 (verilog-auto, verilog-auto-inout-in): Add AUTOINOUTIN for creating
15447 all inputs from module templates. Reported by Leith Johnson.
15448 (verilog-module-inside-filename-p): Fix locating programs as with
15449 modules.
15450 (verilog-auto-inst-port): Fix vl-width expressions when using
15451 verilog-auto-inst-param-value, bug331. Reported by Julian Gorfajn.
15452 (verilog-decls-get-regs, verilog-decls-get-signals,
15453 verilog-decls-get-vars, verilog-decls-get-wires, verilog-decls-new,
15454 verilog-modi-cache-add-vars, verilog-modi-cache-add-wires,
15455 verilog-read-decls): Combine reg and wire structures into one var
15456 structure to represent SystemVerilog concepts.
15457 (verilog-auto-ascii-enum, verilog-auto-logic, verilog-auto-reg)
15458 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-wire)
15459 (verilog-auto-wire-type, verilog-insert-definition):
15460 Add verilog-auto-wire-type and AUTOLOGIC to support using
15461 SystemVerilog "logic" keyword instead of "wire"/"reg".
15462 (verilog-auto-reg-input, verilog-decls-get-signals): Fix AUTOWIRE
15463 to declares outputs that also have assignments (presumably in an
15464 ifdef or generate if so there's not a driver conflict).
15465 Reported by Matthew Myers.
15466 (verilog-auto-declare-nettype, verilog-insert-definition):
15467 Add verilog-auto-declare-nettype to fix declarations using
15468 `default_nettype none. Reported by Julian Gorfajn.
15469 (verilog-read-always-signals-recurse, verilog-read-decls)
15470 (verilog-read-sub-decls-gate): Fix infinite loop with (*) and
15471 malformed end statement, bug325. Reported by Joshua Wise and
15472 Andrew Drake.
15473 (verilog-auto-star-safe, verilog-delete-auto-star-implicit)
15474 (verilog-inst-comment-re): Fix not deleting Interfaced comment
15475 when expanding .* in interfaces, bug320.
15476 Reported by Pierre-David Pfister.
15477 (verilog-read-module-name): Fix import statements between module
15478 name and open parenthesis, bug317.
15479 Reported by Pierre-David Pfister.
15480 (verilog-simplify-range-expression): Fix simplification of
15481 multiplications inside AUTOWIRE connections, bug303.
15482 (verilog-auto-inst-port): Support parameter expansion in
15483 multidimensional arrays.
15484 (verilog-read-decls): Fix AUTOREG etc looking for "endproperty"
15485 after "assert property". Reported by Julian Gorfajn.
15486 (verilog-simplify-range-expression): Fix "couldn't merge" errors
15487 with multiplication, bug303.
15488 (verilog-read-decls): Fix parsing of unsigned data types, bug302.
15489 Reported by Jan Frode Lonnum.
15490
15491 2011-11-30 Juanma Barranquero <lekktu@gmail.com>
15492
15493 * htmlfontify.el (hfy-page-header, hfy-post-html-hooks)
15494 (hfy-shell-file-name, hfy-shell):
15495 * international/fontset.el (x-decompose-font-name): Fix typos.
15496
15497 2011-11-29 Ken Brown <kbrown@cornell.edu>
15498
15499 * progmodes/gdb-mi.el: Fix bug#9853, bug#9858, and bug#9878.
15500 (gdb-version): Remove defvar.
15501 (gdb-supports-non-stop): New defvar, replacing `gdb-version'.
15502 (gdb-gud-context-command, gdb-non-stop-handler)
15503 (gdb-current-context-command, gdb-stopped): Use it.
15504 (gdb-init-1): Enable pretty printing here.
15505 (gdb-non-stop-handler): Don't enable pretty-printing here.
15506 Check to see if the target supports non-stop mode; if not, turn off
15507 non-stop mode. Use the following.
15508 (gdb-check-target-async): New defun.
15509 (gud-watch, gdb-stopped): Fix whitespace.
15510 (gdb-get-source-file): Don't try to display the source file if
15511 `gdb-main-file' is nil.
15512
15513 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
15514
15515 * align.el: Try to generate fewer markers (bug#10047).
15516 (align--set-marker): New macro.
15517 (align-region): Use it.
15518
15519 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
15520
15521 * isearch.el (isearch-yank-x-selection): Deactivate mark (bug#10022).
15522
15523 2011-11-29 Chong Yidong <cyd@gnu.org>
15524
15525 * indent.el (indent-for-tab-command, indent-according-to-mode):
15526 Doc fix.
15527 (indent-region): Doc fix. Switch nested ifs to equivalent cond.
15528
15529 2011-11-29 Michael Albinus <michael.albinus@gmx.de>
15530
15531 * vc/diff-mode.el (diff-find-file-name): Make `read-file-name'
15532 aware of remote file names. (Bug#10124)
15533
15534 2011-11-29 Chong Yidong <cyd@gnu.org>
15535
15536 * frame.el (auto-raise-mode, auto-lower-mode): Doc fix.
15537
15538 2011-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
15539
15540 * files.el (find-file): Don't use force-same-window (bug#10144).
15541 * window.el (switch-to-buffer): Better match Emacs-23 behavior and only
15542 use pop-to-buffer if the selected window can't be used.
15543 (pop-to-buffer-same-window): Use display-buffer--same-window-action.
15544
15545 2011-11-28 Eli Zaretskii <eliz@gnu.org>
15546
15547 * vc/diff-mode.el (diff-mode-map): Don't inherit 'z' => 'M-z' from
15548 special-mode-map.
15549
15550 2011-11-28 Chong Yidong <cyd@gnu.org>
15551
15552 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix default doc.
15553
15554 2011-11-27 Nick Roberts <nickrob@snap.net.nz>
15555
15556 * progmodes/gdb-mi.el (gdb-init-1): Condition execution of
15557 gdb-get-source-file-list on gdb-create-source-file-list.
15558
15559 2011-11-26 Eli Zaretskii <eliz@gnu.org>
15560
15561 * whitespace.el (whitespace-newline): Use a different foreground
15562 color for 16-color light-background displays.
15563
15564 2011-11-24 Chong Yidong <cyd@gnu.org>
15565
15566 * window.el (display-buffer--special-action): Doc fix.
15567
15568 2011-11-25 Juanma Barranquero <lekktu@gmail.com>
15569
15570 * emacs-lisp/avl-tree.el (avl-tree--do-copy, avl-tree-create)
15571 (avl-tree-compare-function, avl-tree-empty, avl-tree-enter)
15572 (avl-tree-delete, avl-tree-member, avl-tree-member-p, avl-tree-map)
15573 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar, avl-tree-copy)
15574 (avl-tree-clear, avl-tree-stack, avl-tree-stack-pop)
15575 (avl-tree-stack-first):
15576 * emacs-lisp/cconv.el (cconv--analyse-use):
15577 * net/gnutls.el (gnutls-negotiate): Fix typos.
15578
15579 2011-11-24 Glenn Morris <rgm@gnu.org>
15580
15581 * lpr.el (lpr-windows-system, lpr-lp-system):
15582 * mail/binhex.el (binhex-begin-line):
15583 * progmodes/grep.el (grep-history, grep-find-history):
15584 * textmodes/flyspell.el:
15585 * vc/pcvs-defs.el (cvs-global-menu):
15586 * vc/vc-bzr.el (vc-bzr-admin-checkout-format-file):
15587 * vc/vc-mtn.el (vc-mtn-admin-dir, vc-mtn-admin-format):
15588 * vc/vc-cvs.el (vc-cvs-registered): Give them basic doc-strings.
15589
15590 * net/tls.el: Fix case of "GnuTLS".
15591
15592 * paths.el (rmail-file-name): Format doc-string for make-docfile.
15593
15594 * version.el (emacs-build-system): Give it a doc-string.
15595
15596 2011-11-24 Juri Linkov <juri@jurta.org>
15597
15598 * view.el (view-buffer): Revert 2011-07-19T15:01:49Z!larsi@gnus.org from 2011-07-19 (bug#8615).
15599
15600 2011-11-24 Glenn Morris <rgm@gnu.org>
15601
15602 * mail/rmailmm.el (rmail-mime): When rmail-enable-mime is non-nil,
15603 if called on a non-mime message just toggle the headers. (Bug#8006)
15604
15605 2011-11-24 Juanma Barranquero <lekktu@gmail.com>
15606
15607 * allout.el (allout-setup, allout-auto-save-temporarily-disabled)
15608 (allout-lead-with-comment-string, allout-structure-deleted-hook)
15609 (allout-mode, allout-chart-subtree, allout-hotspot-key-handler)
15610 (allout-rebullet-heading, allout-open-sibtopic)
15611 (allout-toggle-current-subtree-encryption)
15612 (allout-toggle-subtree-encryption, allout-encrypt-string)
15613 (allout-next-topic-pending-encryption, allout-adjust-file-variable)
15614 (allout-distinctive-bullets-string, allout-auto-activation):
15615 * window.el (window-normalize-buffer-to-display):
15616 * progmodes/verilog-mode.el (verilog-batch-indent):
15617 * textmodes/bibtex.el (bibtex-field-braces-opt)
15618 (bibtex-field-strings-opt):
15619 * vc/cvs-status.el (cvs-tree-merge):
15620 Fix typos.
15621
15622 2011-11-23 Michael Albinus <michael.albinus@gmx.de>
15623
15624 * rfn-eshadow.el (rfn-eshadow-update-overlay): Let-bind
15625 `non-essential' to t, in order to avoid remote connections.
15626
15627 2011-11-23 Eli Zaretskii <eliz@gnu.org>
15628
15629 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
15630 On MS-DOS and MS-Windows, compare with loaddefs.el
15631 case-insensitively.
15632
15633 2011-11-23 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
15634
15635 * mail/unrmail.el (unrmail): Always add blank line. (Bug#7743)
15636
15637 2011-11-23 Glenn Morris <rgm@gnu.org>
15638
15639 * paths.el (rmail-file-name): Reformat the doc-string so that it
15640 is picked up.
15641
15642 * mail/rmail.el (rmail-message-filter, rmail-auto-file): Doc fixes.
15643 (rmail-auto-file): Ignore case in the "special" field names,
15644 as mail-fetch-field does for all others.
15645
15646 * mail/rmail.el (rmail-forward):
15647 * mail/rmailkwd.el (rmail-set-label):
15648 * mail/rmailout.el (rmail-output, rmail-output-as-seen)
15649 (rmail-output-body-to-file): Give error if no message. (Bug#10082)
15650
15651 * mail/rmail.el (rmail-current-message): Doc fix.
15652
15653 * mail/rmail.el (rmail-message-filter): Mark as obsolete. (Bug#2624)
15654
15655 2011-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
15656
15657 * server.el (server-eval-and-print): Allow C-g (bug#6585).
15658
15659 2011-11-22 Glenn Morris <rgm@gnu.org>
15660
15661 * mail/rmailmm.el (test-rmail-mime-handler)
15662 (test-rmail-mime-bulk-handler)
15663 (test-rmail-mime-multipart-handler): Move tests to test/ directory.
15664
15665 2011-11-21 Juri Linkov <juri@jurta.org>
15666
15667 * calc/calc.el (calc-read-key-sequence):
15668 Let-bind `input-method-function' to nil. (Bug#10018)
15669
15670 2011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
15671
15672 * emacs-lisp/cl-indent.el (common-lisp-loop-part-indentation):
15673 Tell the caller that the next line needs recomputation, even
15674 though it doesn't start a sexp (bug#10094).
15675
15676 2011-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
15677
15678 * emacs-lisp/autoload.el (autoload-generate-file-autoloads): Simplify.
15679
15680 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
15681
15682 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
15683 Use force-same-window.
15684
15685 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
15686
15687 * descr-text.el (describe-char-unicode-data):
15688 * json.el (json-string-escape):
15689 * mail/footnote.el (footnote-unicode-string, footnote-unicode-regexp)
15690 (Footnote-unicode, Footnote-style-p):
15691 * net/ntlm.el (ntlm-get-password-hashes): Fix typos.
15692
15693 2011-11-20 Chong Yidong <cyd@gnu.org>
15694
15695 * window.el (replace-buffer-in-windows): Restore interactive spec.
15696
15697 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
15698
15699 * electric.el (electric-indent-mode): Fix last change (too optimistic).
15700
15701 * emacs-lisp/bytecomp.el: Silence obsolete warnings more reliably.
15702 (byte-compile-global-not-obsolete-vars): New var.
15703 (byte-compile-check-variable, byte-compile-make-obsolete-variable):
15704 Use it.
15705 (byte-compile-warn-obsolete): Align text with the one in *Help*.
15706
15707 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
15708
15709 * progmodes/cwarn.el (cwarn-is-enabled, cwarn-font-lock-keywords):
15710 * progmodes/pascal.el (electric-pascal-equal):
15711 * textmodes/reftex-dcr.el (reftex-view-crossref-from-bibtex):
15712 * xml.el (xml-substitute-special): Fix typos.
15713
15714 2011-11-20 Glenn Morris <rgm@gnu.org>
15715
15716 * mail/rmail.el (rmail-enable-mime-composing): Make it a defcustom.
15717 (rmail-insert-mime-forwarded-message-function, rmail-mime-feature):
15718 Doc fixes.
15719 (rmail-decode-mime-charset): Mark as obsolete.
15720
15721 * mail/rmailsum.el (rmail-message-regexp-p-1):
15722 * mail/rmail.el (rmail-search-message, rmail-forward, rmail-resend):
15723 Before using mime functions, check they are set. (Bug#10077)
15724
15725 2011-11-19 Juri Linkov <juri@jurta.org>
15726
15727 * info.el (Info-finder-find-node): Use `package--builtins' instead
15728 of `package-alist'. Use node names formed by the pattern "Keyword "
15729 and the keyword name.
15730
15731 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
15732
15733 * progmodes/sh-script.el (sh-assignment-regexp): Add entry for bash.
15734
15735 2011-11-19 Juri Linkov <juri@jurta.org>
15736
15737 * info.el (Info-hide-note-references): Add `:set' tag to `defcustom'
15738 that calls `revert-buffer' on all Info buffers. (Bug#9915)
15739 (Info-revert-find-node): Remove let-bindings `old-buffer-name',
15740 `old-history', `old-history-forward'. Add let-binding
15741 `window-selected'. Remove calls to `kill-buffer',
15742 `switch-to-buffer' and `Info-mode'. Set `Info-current-file' to nil
15743 before calling `Info-find-node', so `Info-find-node-2' will reread
15744 the Info file. Restore window positions only when `window-selected'
15745 is non-nil.
15746
15747 2011-11-19 Juri Linkov <juri@jurta.org>
15748
15749 * isearch.el (isearch-lazy-highlight-new-loop):
15750 Remove condition `(not isearch-error)'. (Bug#9918)
15751
15752 * misearch.el (multi-isearch-search-fun): Add condition
15753 `(not bound)' to ignore lazy-highlighting search.
15754 Add the search-failed message "end of multi" when the end of
15755 multi-sequence is reached. Uncapitalize the search-failed
15756 message "Repeat for next buffer".
15757
15758 * info.el (Info-search): Add the search-failed message
15759 "end of the manual" when the end of the manual is reached
15760 in Isearch mode.
15761
15762 2011-11-19 Juri Linkov <juri@jurta.org>
15763
15764 * info.el (Info-find-node-2, Info-select-node, Info-history-find-node):
15765 Use non-destructive `remove' instead of `delete' because
15766 `Info-history-list' stored to `Info-isearch-initial-history-list' in
15767 `Info-isearch-start' might need to be restored in `Info-isearch-end'.
15768
15769 2011-11-19 Juri Linkov <juri@jurta.org>
15770
15771 * isearch.el (isearch-edit-string): Let-bind `history-add-new-input'
15772 to nil instead of binding `search-ring' and `regexp-search-ring'.
15773 (Bug#9185)
15774
15775 2011-11-19 Eli Zaretskii <eliz@gnu.org>
15776
15777 * simple.el (line-move): Force movement by logical lines for any
15778 hscrolled window, not only when auto-hscroll-mode is on.
15779 (line-move-visual): Update doc string to that effect. (Bug#10076)
15780
15781 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
15782
15783 * language/european.el (macintosh): Define as alias for mac-roman.
15784
15785 2011-11-19 Eli Zaretskii <eliz@gnu.org>
15786
15787 * mail/rmailmm.el (rmail-mime-display-header)
15788 (rmail-mime-display-tagline, rmail-mime-display-body): New defsubsts.
15789 (rmail-mime-entity-segment, rmail-mime-toggle-raw)
15790 (rmail-mime-toggle-hidden, rmail-mime-insert-text)
15791 (rmail-mime-insert-bulk, rmail-mime-insert-multipart)
15792 (rmail-mime-insert, rmail-mime-insert-tagline): Use them instead
15793 of a raw aref.
15794 (rmail-mime-entity-segment): To get past the tagline, move forward
15795 2 more lines, to account for the 2 empty lines that precede and
15796 follow the line with the buttons.
15797 (rmail-mime-update-tagline): Move one more line, to get past the
15798 empty line that follows the buttons in the tagline. (Bug#9520)
15799
15800 2011-11-19 Martin Rudalics <rudalics@gmx.at>
15801
15802 * window.el (window-max-delta-1, window-min-delta-1)
15803 (window-min-size-1, window-state-get-1, window-state-put-1)
15804 (window-state-put-2): Use "window--" prefix.
15805
15806 2011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
15807
15808 * emacs-lisp/smie.el: Improve warnings and conflict detection.
15809 (smie-warning-count): New var.
15810 (smie-set-prec2tab): Use it.
15811 (smie-bnf->prec2): Improve warnings. Add docstring.
15812 (smie-bnf--closer-alist): Rename from smie-bnf-closer-alist.
15813 (smie-bnf--set-class): New function.
15814 (smie-bnf--classify): Rename from smie-bnf-classify. Rewrite to fix
15815 corner case.
15816
15817 * progmodes/compile.el: Obey compilation-first-column in dest buffer.
15818 (compilation-error-properties, compilation-move-to-column):
15819 Handle compilation-first-column while in the target buffer.
15820
15821 * progmodes/cc-engine.el (c-remove-stale-state-cache-backwards):
15822 Don't hardcode point-min==1.
15823
15824 * eshell/esh-cmd.el (eshell-do-eval): Handle `setq' (bug#9907).
15825 (eshell-rewrite-for-command): Remove workaround.
15826 (eshell-do-pipelines, eshell-do-pipelines-synchronously)
15827 (eshell-do-eval, eshell-exec-lisp): Avoid gratuitous setq.
15828 * eshell/esh-util.el (eshell-condition-case, eshell-for): Use declare.
15829
15830 * files-x.el (modify-file-local-variable): Obey commenting conventions.
15831
15832 2011-11-17 Glenn Morris <rgm@gnu.org>
15833
15834 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
15835 Ignore buffer-local generated-autoload-file if it is the same
15836 as the global value. (Bug#10049)
15837
15838 2011-11-17 Juanma Barranquero <lekktu@gmail.com>
15839
15840 * textmodes/reftex-toc.el (reftex-toc-return-marker, reftex-toc-help)
15841 (reftex-toc, reftex-toc, reftex-toc-dframe-p, reftex-toc-next-heading)
15842 (reftex-toc-previous-heading, reftex-toc-max-level)
15843 (reftex-toc-goto-line-and-hide, reftex-toc-show-calling-point)
15844 (reftex-toc-quit, reftex-toc-revert, reftex-toc-jump)
15845 (reftex-toc-do-promote, reftex-toc-promote-prepare)
15846 (reftex-toc-promote-action, reftex-toc-extract-section-number)
15847 (reftex-toc-load-all-files-for-promotion, reftex-toc-rename-label)
15848 (reftex-toc-rename-label, reftex-toc-visit-location)
15849 (reftex-toc-visit-location, reftex-toggle-auto-toc-recenter)
15850 (reftex-toggle-auto-toc-recenter, reftex-toggle-auto-toc-recenter)
15851 (reftex-make-separate-toc-frame): Fix typos, and use TOC consistently,
15852 leaving "*toc*" only for references to the buffer.
15853
15854 2011-11-17 Martin Rudalics <rudalics@gmx.at>
15855
15856 * window.el (window-resize, delete-window, split-window):
15857 Replace window-splits by window-combination-resize.
15858 * cus-start.el (window-splits): Replace by window-combination-resize.
15859
15860 2011-11-17 Glenn Morris <rgm@gnu.org>
15861
15862 * progmodes/sh-script.el (sh-font-lock-keywords-var):
15863 Make bash entry derive from sh entry, not shell entry.
15864
15865 2011-11-16 Michael Albinus <michael.albinus@gmx.de>
15866
15867 * net/tramp-sh.el (tramp-sh-handle-file-truename): Cache only the
15868 local file name.
15869
15870 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
15871
15872 * menu-bar.el (menu-bar-file-menu):
15873 * printing.el (pr-ps-utility):
15874 * calendar/icalendar.el (icalendar, icalendar--convert-tz-offset)
15875 (icalendar--convert-to-ical, icalendar--convert-ordinary-to-ical)
15876 (icalendar--convert-weekly-to-ical, icalendar--convert-yearly-to-ical)
15877 (icalendar--convert-sexp-to-ical, icalendar--convert-block-to-ical)
15878 (icalendar--convert-float-to-ical, icalendar--convert-date-to-ical)
15879 (icalendar--convert-cyclic-to-ical)
15880 (icalendar--convert-anniversary-to-ical, icalendar-import-buffer)
15881 (icalendar--convert-ical-to-diary)
15882 (icalendar--convert-recurring-to-diary)
15883 (icalendar--convert-non-recurring-all-day-to-diary)
15884 (icalendar-import-format-sample):
15885 * progmodes/idlw-shell.el (idlwave-shell-mode):
15886 * progmodes/vhdl-mode.el (vhdl-mode, vhdl-print-two-column)
15887 (vhdl-print-customize-faces, vhdl-mode, vhdl-ps-print-settings)
15888 (vhdl-ps-print-init): Fix typos.
15889
15890 2011-11-16 Ken Manheimer <ken.manheimer@gmail.com>
15891
15892 * allout.el, allout-widgets.el (file metadata): Attribute copyright to
15893 FSF and collapse date sequence, obscure author/maintainer email address
15894 better, remove extra version line, track relocation of author's webpage.
15895
15896 * progmodes/python.el (python-pdbtrack-input-prompt)
15897 (python-pdbtrack-track-stack-file): Adjust to recognize ipdb as well as
15898 regular python pdb prompts. Adjustments shamelessly taken exactly as
15899 suggested in EmacsWiki page (tiny change):
15900 http://www.emacswiki.org/PythonProgrammingInEmacs#toc14
15901
15902 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
15903
15904 * expand.el (expand-pos, expand-index, expand-point):
15905 Remove redundant info from docstring.
15906 (expand-add-abbrevs): Doc fix.
15907 (expand-c-sample-expand-list, expand-sample-lisp-mode-expand-list)
15908 (expand-sample-perl-mode-expand-list): Fix typos.
15909
15910 * net/dbus.el (dbus-event-member-name):
15911 * play/5x5.el (5x5-solve-rotate-left, 5x5-solver-output):
15912 * term/pc-win.el (msdos-create-frame-with-faces):
15913 * textmodes/texinfmt.el (texinfo-format-image): Fix typos.
15914
15915 2011-11-16 Martin Rudalics <rudalics@gmx.at>
15916
15917 * window.el (split-window, window-state-get-1)
15918 (window-state-put-1, window-state-put-2): Rename occurrences of
15919 window-nest to window-combination-limit.
15920 * cus-start.el (window-nest): Rename to window-combination-limit.
15921
15922 2011-11-16 Chong Yidong <cyd@gnu.org>
15923
15924 * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip
15925 regexp (Bug#10033).
15926
15927 2011-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
15928
15929 * tmm.el (tmm-prompt): Use minibuffer-with-setup-hook (bug#10053).
15930 `completing-read' will remove *Completions* and will preserve
15931 current-buffer for us.
15932 (tmm-add-prompt): Users of *Completions* will always (re)set its
15933 major mode.
15934 (tmm-old-comp-map): Remove.
15935
15936 2011-11-16 Glenn Morris <rgm@gnu.org>
15937
15938 * mail/rmailedit.el: Require rmailmm when compiling.
15939 (rmail-old-mime-state): New declaration.
15940 (rmail-edit-current-message): If editing a mime message,
15941 edit the "raw" message from the mbox buffer.
15942 (rmail-cease-edit): Handle mime messages. (Bug#9840)
15943
15944 2011-11-15 Glenn Morris <rgm@gnu.org>
15945
15946 * mail/rmailmm.el (rmail-mime-toggle-raw): Remove entity arg,
15947 which wasn't being used. Add optional arg to force given state.
15948 (rmail-mime): Add optional arg to force given state.
15949
15950 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
15951
15952 * allout.el (allout-encryption-plaintext-sanitization-regexps):
15953 * frame.el (display-mm-dimensions-alist):
15954 * outline.el (outline-mode-menu-bar-map, outline-move-subtree-up)
15955 (outline-move-subtree-down):
15956 * net/newst-treeview.el (newsticker--treeview-do-get-node-of-feed)
15957 (newsticker--treeview-do-get-node):
15958 * net/quickurl.el (quickurl-list-buffer-name):
15959 * progmodes/dcl-mode.el (dcl-mode):
15960 * progmodes/gdb-mi.el (gdb-mapcar*):
15961 * progmodes/sql.el (sql-mode-oracle-font-lock-keywords): Fix typos.
15962
15963 2011-11-15 Glenn Morris <rgm@gnu.org>
15964
15965 * mail/rmail.el (rmail-file-coding-system): It's only ever used
15966 in a boolean sense, so just make it a boolean, and fix the doc.
15967 (rmail-show-mime-function, rmail-mime-feature)
15968 (rmail-require-mime-maybe): Doc fixes.
15969 (rmail-show-message-1): Check rmail-show-mime-function is non-nil.
15970
15971 * mail/rmailmm.el (rmail-show-mime): Doc fix.
15972
15973 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
15974
15975 * epg.el (epg-start-decrypt, epg-start-verify, epg-start-sign)
15976 (epg-start-encrypt, epg-start-export-keys, epg-start-import-keys)
15977 (epg-start-receive-keys, epg-start-delete-keys, epg-start-sign-keys)
15978 (epg-start-generate-key, epg-context-set-progress-callback): Fix typos.
15979
15980 2011-11-15 Glenn Morris <rgm@gnu.org>
15981
15982 * mail/rmailmm.el (rmail-mime-entity, rmail-mime-entity-segment)
15983 (rmail-mime-shown-mode, rmail-mime-hidden-mode, rmail-mime-raw-mode)
15984 (rmail-mime-toggle-hidden, rmail-mime-insert-tagline)
15985 (rmail-mime-insert-header, rmail-mime-handle, rmail-mime-parse)
15986 (rmail-mime, rmail-show-mime): Doc fixes.
15987
15988 * term/ns-win.el (mode-line-frame-identification):
15989 Leave it alone. (Bug#10051)
15990
15991 * simple.el (mark-whole-buffer): Doc fix. (Bug#10023)
15992
15993 * mail/rmailout.el (rmail-output-to-rmail-buffer):
15994 Handle empty buffers. (Bug#9978)
15995
15996 2011-11-14 Juanma Barranquero <lekktu@gmail.com>
15997
15998 * international/mule.el (define-charset):
15999 * mail/rmailmm.el (rmail-mime-find-header-encoding):
16000 * progmodes/prolog.el (prolog-mode-hook, prolog-inferior-mode-hook):
16001 * progmodes/verilog-mode.el (verilog-backward-token):
16002 * textmodes/ispell.el (lookup-words):
16003 * textmodes/sgml-mode.el (sgml-guess-indent): Fix typos.
16004
16005 2011-11-14 Glenn Morris <rgm@gnu.org>
16006
16007 * progmodes/executable.el
16008 (executable-make-buffer-file-executable-if-script-p):
16009 Handle file-modes returning nil.
16010
16011 * mail/rmailsum.el (rmail-summary): Remove movement to beginning of
16012 message - not necessary, and causes problems. (Bug#9831)
16013
16014 * mail/rmailsum.el (rmail-new-summary): Preserve message number.
16015
16016 * mail/rmail.el (rmail-no-mail-p): Remove mode-line N/M indicator.
16017
16018 * mail/rmailsum.el (rmail-summary, rmail-new-summary)
16019 (rmail-new-summary-1): Allow empty summaries. (Bug#9964)
16020 (rmail-new-summary): Remember that rmail-summary-buffer is buffer-local.
16021
16022 2011-11-12 Martin Rudalics <rudalics@gmx.at>
16023
16024 * window.el (window-resize, delete-window): Use window-splits
16025 variable instead of function.
16026 (window-state-get-1, window-state-put-2, window-state-put):
16027 Don't deal with windows' splits status.
16028
16029 2011-11-12 Glenn Morris <rgm@gnu.org>
16030
16031 * apropos.el (apropos-do-all, apropos-library, apropos-value)
16032 (apropos-documentation): Doc fixes.
16033
16034 2011-11-11 Juanma Barranquero <lekktu@gmail.com>
16035
16036 * progmodes/idlw-shell.el (idlwave-shell-make-new-bp-overlay):
16037 * textmodes/sgml-mode.el (html-tag-help): Fix typos.
16038
16039 2011-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
16040
16041 * electric.el (electric-indent-post-self-insert-function): Make it
16042 possible for a char to only indent in some circumstances.
16043 (electric-indent-mode): Simplify.
16044
16045 2011-11-11 Martin Rudalics <rudalics@gmx.at>
16046
16047 * window.el (windows-with-parameter): Remove unused function.
16048 (windows-at-side): Rename to window-at-side-list.
16049 (window-check, window-atom-check, window-atom-check-1)
16050 (window-side-check, window-size-ignore, window-size-fixed-1)
16051 (window-in-direction-2): Prefix with "window--".
16052 (window-tree-1): Rename to window--subtree, fix doc-string.
16053
16054 2011-11-11 Glenn Morris <rgm@gnu.org>
16055
16056 * subr.el (eval-after-load): If FILE is already loaded,
16057 evaluate FORM before it gets wrapped in more stuff. (Bug#10009)
16058
16059 2011-11-10 Glenn Morris <rgm@gnu.org>
16060
16061 * vc/vc-svn.el (vc-svn-create-repo, vc-svn-modify-change-comment):
16062 Call svn via vc-svn-command rather than vc-do-command.
16063 (vc-svn-command): Add --non-interactive. (Bug#9993)
16064 (vc-svn-update, vc-svn-merge-news): No need for --non-interactive.
16065
16066 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
16067 Add toggle-read-only. (Bug#7292)
16068 * files.el (toggle-read-only): Mention that it should only
16069 be used interactively. (Bug#10006)
16070
16071 2011-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
16072
16073 * progmodes/compile.el (compilation-error-regexp-alist-alist):
16074 Adjust regexp for OCaml warnings.
16075
16076 * electric.el (electric-pair-post-self-insert-function): Let user
16077 turn it off buffer-locally (bug#9932).
16078
16079 * progmodes/python.el (python-beginning-of-statement):
16080 Rewrite (bug#2703).
16081
16082 * progmodes/compile.el: Better handle TABs (bug#9749).
16083 (compilation-internal-error-properties)
16084 (compilation-next-error-function): Obey the target buffer's
16085 compilation-error-screen-columns.
16086
16087 2011-11-09 Juanma Barranquero <lekktu@gmail.com>
16088
16089 * progmodes/meta-mode.el: Remove obsolete comments.
16090 (meta-right-comment-regexp, meta-ignore-comment-regexp):
16091 Fix typos in docstrings.
16092
16093 2011-11-09 Martin Rudalics <rudalics@gmx.at>
16094
16095 * window.el (window-size-fixed-p): Rewrite doc-string.
16096 (window-resizable-p): Rename to window--resizable-p. Update callers.
16097 (window--resizable): New function. Make all callers of
16098 window-resizable call window--resizable instead.
16099 (window-resizable): Rewrite in terms of window--resizable.
16100
16101 2011-11-08 Glenn Morris <rgm@gnu.org>
16102
16103 * progmodes/delphi.el (delphi-mode-syntax-table):
16104 Let define-derived-mode define a proper syntax table. (Bug#9994)
16105
16106 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
16107
16108 * window.el: Stay away from defsubst.
16109 (window-list-no-nils): Remove.
16110 (window-state-get-1, window-state-get): Use backquote instead.
16111
16112 2011-11-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
16113
16114 * emacs-lisp/find-func.el (find-function-read):
16115 Fix incorrect use of default argument in `completing-read'.
16116
16117 2011-11-08 Martin Rudalics <rudalics@gmx.at>
16118
16119 * window.el (display-buffer-function, special-display-function):
16120 Mention display-buffer-record-window but do not mention
16121 help-setup parameter in doc-strings.
16122 (window-min-delta): Fix doc-string typo.
16123
16124 2011-11-08 Chong Yidong <cyd@gnu.org>
16125
16126 * window.el (window-total-height, window-total-width): Doc fix.
16127 (window-body-size): Move from C.
16128 (window-body-height, window-body-width): Move to C.
16129
16130 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
16131
16132 * window.el: Make special-display like display-buffer-alist (bug#9532).
16133 (display-buffer--special-action): New function, morphed
16134 from display-buffer--special.
16135 (display-buffer): Use it to handle special-display-buffers at higher
16136 priority (just after display-buffer-alist).
16137 (display-buffer-fallback-action, display-buffer--other-frame-action)
16138 (pop-to-buffer-same-window): Remove display-buffer--special.
16139
16140 2011-11-07 Glenn Morris <rgm@gnu.org>
16141
16142 * calendar/cal-menu.el (cal-menu-set-date-title):
16143 Do nothing if not in a calendar. (Bug#9976)
16144
16145 2011-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
16146
16147 * files.el (find-file): Always use selected-window.
16148
16149 2011-11-07 Martin Rudalics <rudalics@gmx.at>
16150
16151 * window.el (window-combinations): Make WINDOW argument
16152 mandatory. Rewrite doc-string.
16153 (walk-window-subtree, window-atom-check, window-min-delta)
16154 (window-max-delta, window--resize-this-window)
16155 (window--resize-root-window-vertically, window-tree)
16156 (balance-windows, window-state-put): Rewrite doc-strings as to
16157 not mention the term "subwindow".
16158 (window--resize-subwindows-skip-p): Rename to
16159 window--resize-child-windows-skip-p.
16160 (window--resize-subwindows-normal): Rename to
16161 window--resize-child-windows-normal.
16162 (window--resize-subwindows): Rename to
16163 window--resize-child-windows.
16164 (window-or-subwindow-p): Rename to window--in-subtree-p.
16165
16166 2011-11-07 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
16167
16168 * mail/rmail.el (rmail-get-new-mail, rmail-insert-inbox-text):
16169 Ensure that mbox format messages end in two newlines (Bug#9974).
16170
16171 2011-11-06 Chong Yidong <cyd@gnu.org>
16172
16173 * window.el (window-combination-p): Function deleted; its
16174 side-effect is not used in any existing code.
16175 (window-combinations, window-combined-p): Call window-*-child
16176 directly.
16177
16178 2011-11-05 Chong Yidong <cyd@gnu.org>
16179
16180 * window.el (window-valid-p): Rename from window-any-p.
16181 (window-size-ignore, window-state-get): Callers changed.
16182 (window-normalize-window): Rename from window-normalize-any-window.
16183 New arg LIVE-ONLY, replacing window-normalize-live-window.
16184 (window-normalize-live-window): Delete.
16185 (window-combination-p, window-combined-p, window-combinations)
16186 (walk-window-subtree, window-atom-root, window-min-size)
16187 (window-sizable, window-sizable-p, window-size-fixed-p)
16188 (window-min-delta, window-max-delta, window-resizable)
16189 (window-resizable-p, window-full-height-p, window-full-width-p)
16190 (window-current-scroll-bars, window-point-1, set-window-point-1)
16191 (window-at-side-p, window-in-direction, window-resize)
16192 (adjust-window-trailing-edge, maximize-window, minimize-window)
16193 (window-deletable-p, delete-window, delete-other-windows)
16194 (record-window-buffer, unrecord-window-buffer)
16195 (switch-to-prev-buffer, switch-to-next-buffer, window--delete)
16196 (quit-window, split-window, window-state-put)
16197 (set-window-text-height, fit-window-to-buffer)
16198 (shrink-window-if-larger-than-buffer): Callers changed.
16199
16200 2011-11-04 Eli Zaretskii <eliz@gnu.org>
16201
16202 * mail/rmail.el (rmail-simplified-subject): Decode subject with
16203 rfc2047-decode-string.
16204 (rmail-mime-toggle-hidden): Declare to avoid byte-compilation
16205 warnings.
16206
16207 * window.el (window-body-height, window-body-width): Mention in
16208 the doc string that the return values are in frame's canonical
16209 units. (Bug#9949)
16210
16211 2011-11-03 Alan Mackenzie <acm@muc.de>
16212
16213 * progmodes/cc-langs.el (c-nonlabel-token-2-key): New variable for
16214 change in cc-engine.el.
16215
16216 2011-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
16217
16218 * window.el (switch-to-buffer): Use `force-same-window' interactively.
16219
16220 2011-11-02 Martin Rudalics <rudalics@gmx.at>
16221
16222 * window.el (quit-window): Call unrecord-window-buffer after
16223 showing another buffer in the window. (Bug#9937)
16224 (bury-buffer): Call switch-to-prev-buffer with second argument `bury'.
16225
16226 2011-11-02 Juanma Barranquero <lekktu@gmail.com>
16227
16228 * vc/vc-bzr.el (vc-bzr-state, vc-bzr-after-dir-status):
16229 Accept status with more than 9 shelves. (Bug#9935)
16230 Reported by Colin D Bennett <colin@gibibit.com>.
16231
16232 2011-11-01 Martin Rudalics <rudalics@gmx.at>
16233
16234 * help.el (with-help-window): Don't reference
16235 temp-buffer-show-specifiers in doc-string.
16236
16237 2011-10-31 Andreas Schwab <schwab@linux-m68k.org>
16238
16239 * subr.el (keymap--menu-item-with-binding): Ignore item if not a
16240 menu-item.
16241
16242 2011-10-30 Vinicius Jose Latorre <viniciusjl@ig.com.br>
16243
16244 * whitespace.el: New version 13.2.2.
16245 (whitespace-newline-mode): Disable properly. Reported by Sarah
16246 <EmacsWiki>.
16247
16248 2011-10-30 Ulf Jasper <ulf.jasper@web.de>
16249
16250 * net/newst-treeview.el: Remove "Time-stamp".
16251 (newsticker--group-manage-orphan-feeds): Do not call
16252 newsticker--treeview-tree-update.
16253 (newsticker-treeview-update, newsticker-treeview):
16254 Call newsticker--treeview-tree-update if necessary.
16255
16256 2011-10-30 Martin Rudalics <rudalics@gmx.at>
16257
16258 * window.el (window-iso-combination-p, window-iso-combined-p)
16259 (window-iso-combinations): Remove "iso-" infix.
16260 Suggested by Chong Yidong.
16261 (window-min-size-1, window-size-fixed-1, window-min-delta-1)
16262 (window-max-delta-1, window-resize, window--resize-siblings)
16263 (window--resize-this-window, adjust-window-trailing-edge)
16264 (split-window, balance-windows-1)
16265 (shrink-window-if-larger-than-buffer):
16266 * calendar/calendar.el (calendar-generate-window):
16267 * help.el (resize-temp-buffer-window): Adjust callers accordingly.
16268
16269 2011-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
16270
16271 * eshell/esh-cmd.el (eshell-rewrite-for-command): Don't modify the list
16272 in place (bug#9907).
16273 (eshell-subcommand-arg-values, eshell-rewrite-named-command)
16274 (eshell-rewrite-if-command, eshell-rewrite-for-command)
16275 (eshell-structure-basic-command, eshell-rewrite-while-command)
16276 (eshell-invokify-arg, eshell-parse-pipeline, eshell-parse-command)
16277 (eshell-parse-subcommand-argument, eshell-parse-lisp-argument)
16278 (eshell-trap-errors, eshell-do-pipelines, eshell-do-eval)
16279 (eshell-do-pipelines-synchronously, eshell-eval-command):
16280 Use backquotes and prefer setq to set.
16281 (eshell-lookup-function, function-p-func, eshell-functionp): Remove.
16282 (eshell-macrop): Use functionp.
16283 (eshell-do-eval): Handle multiple expressions in `while' body.
16284
16285 2011-10-30 Chong Yidong <cyd@gnu.org>
16286
16287 * emulation/viper-cmd.el (viper-exec-change): Use push-mark
16288 instead of set-mark (Bug#9810).
16289
16290 2011-10-30 Chong Yidong <cyd@gnu.org>
16291
16292 * window.el (split-window-below, split-window-right): Rename from
16293 split-window-above-each-other and split-window-side-by-side
16294 respectively. All callers changed.
16295 (split-window-sensibly, split-window-sensibly): Use them.
16296 (split-window-keep-point): Doc fix.
16297
16298 * isearch.el: Add isearch-scroll property to split-window-below
16299 and split-window-right.
16300
16301 * follow.el (follow-mode):
16302 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
16303 * progmodes/ada-xref.el (ada-gdb-application):
16304 * emulation/vip.el (vip-buffer-in-two-windows):
16305 * image-dired.el (image-dired-dired-with-window-configuration):
16306 * dired-x.el (dired-do-find-marked-files):
16307 * dired.el (dired-pop-to-buffer):
16308 * bs.el (bs--show-with-configuration):
16309 * vc/emerge.el (emerge-setup-windows):
16310 * textmodes/two-column.el (2C-two-columns):
16311 * textmodes/reftex-toc.el (reftex-toc):
16312 * progmodes/gdb-mi.el (gdb-setup-windows):
16313 * progmodes/fortran.el (fortran-window-create):
16314 * net/newst-treeview.el (newsticker--treeview-window-init):
16315 * emulation/ws-mode.el (wordstar-C-o-map, wordstar-mode):
16316 * emulation/tpu-edt.el (tpu-gold-map):
16317 * emulation/crisp.el (crisp-mode-map):
16318 * calendar/calendar.el (calendar-basic-setup): Callers changed.
16319
16320 2011-10-29 Chong Yidong <cyd@gnu.org>
16321
16322 * subr.el (y-or-n-p): Add code for batch mode (Bug#9818).
16323
16324 * mouse.el (mouse-yank-primary): Push the mark (Bug#9894).
16325
16326 * textmodes/flyspell.el (flyspell-word): Fix char offset for
16327 forged Ispell output (Bug#7904).
16328
16329 * emacs-lisp/package.el (package-refresh-contents): Add autoload.
16330
16331 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
16332
16333 * doc-view.el: Avoid ugly errors about not finding nil.
16334 (doc-view-ghostscript-program, doc-view-dvipdfm-program)
16335 (doc-view-dvipdf-program, doc-view-unoconv-program)
16336 (doc-view-ps2pdf-program, doc-view-pdftotext-program):
16337 Avoid nil or absolute file name as default value.
16338 (doc-view-pdf->txt, doc-view-ps->pdf): Use executable-find here.
16339
16340 2011-10-28 Alan Mackenzie <acm@muc.de>
16341
16342 * progmodes/cc-defs.el (c-version): -> 5.32.2.
16343
16344 2011-10-28 Alan Mackenzie <acm@muc.de>
16345
16346 Amend the handling of c-beginning/end-of-defun in nested declaration
16347 scopes.
16348
16349 * progmodes/cc-vars.el (c-defun-tactic): Move here from
16350 cc-langs.el. Change it to a defcustom.
16351
16352 * progmodes/cc-langs.el (c-defun-tactic): Move this variable to
16353 cc-vars.el.
16354
16355 * progmodes/cc-engine.el (c-beginning-of-statement-1):
16356 Prevent "class foo : bar" being spuriously recognized as a label.
16357
16358 * progmodes/cc-cmds.el (c-narrow-to-most-enclosing-decl-block):
16359 Add parameter `inclusive' (to include enclosing braces in the region).
16360 (c-widen-to-enclosing-decl-scope): New function.
16361 (c-while-widening-to-decl-block): New macro.
16362 (c-beginning-of-defun, c-end-of-defun): Change algorithm to keep going
16363 outward for defun boundaries, and correspondingly change symbol
16364 `respect-enclosure' to `go-outward'.
16365 (c-declaration-limits): Change algorithm to report only the "innermost"
16366 defun's boundaries.
16367
16368 2011-10-28 Deniz Dogan <deniz@dogan.se>
16369
16370 * net/rcirc.el (rcirc-mode): Use hard newlines.
16371
16372 2011-10-28 Alan Mackenzie <acm@muc.de>
16373
16374 Amend to indent and fontify macros "which include their own semicolon"
16375 correctly, using the "virtual semicolon" mechanism.
16376
16377 * progmodes/cc-defs.el: Update "virtual semicolon" comments.
16378
16379 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
16380 Recode to scan one line at a time rather than having \n and \r
16381 explicitly in c-stmt-delim-chars (for some modes, e.g. AWK).
16382 (c-forward-label): Amend for virtual semicolons.
16383 (c-at-macro-vsemi-p, c-macro-vsemi-status-unknown-p): New functions.
16384
16385 * progmodes/cc-fonts.el (c-font-lock-declarations): Take account
16386 of the new C macros.
16387
16388 * progmodes/cc-langs.el (c-at-vsemi-p-fn):
16389 (c-vsemi-status-unknown-p-fn): Move to earlier in the file.
16390 (c-opt-cpp-symbol, c-line-comment-start-regexp): New language vars.
16391 (c-opt-cpp-macro-define): Make into a full language variable.
16392 (c-stmt-delim-chars, c-stmt-delim-chars-with-comma): Special value for
16393 AWK Mode (including \n, \r) removed, no longer needed.
16394
16395 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode):
16396 Invoke c-make-macro-with-semi-re.
16397
16398 * progmodes/cc-vars.el (c-macro-with-semi-re):
16399 (c-macro-names-with-semicolon): New variables.
16400 (c-make-macro-with-semi-re): New function.
16401
16402 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
16403
16404 * vc/log-edit.el: Fill empty field rather than adding new one.
16405 (log-edit-add-field): New function.
16406 (log-edit-insert-changelog): Use it.
16407
16408 2011-10-28 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
16409
16410 * mail/rmail.el (rmail-mode-map): Add M-C-f as in rmailsum (bug#9802).
16411
16412 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
16413
16414 * progmodes/gdb-mi.el: Warn the user when -i=mi is missing.
16415 (gdb--check-interpreter): New function.
16416 (gdb): Use it.
16417
16418 2011-10-27 Glenn Morris <rgm@gnu.org>
16419
16420 * emacs-lisp/cl-extra.el (most-positive-float, most-negative-float)
16421 (least-positive-float, least-negative-float)
16422 (least-positive-normalized-float, least-negative-normalized-float)
16423 (float-epsilon, float-negative-epsilon):
16424 Remove unnecessary declarations.
16425
16426 * emacs-lisp/cl-extra.el (cl-float-limits): Add doc string.
16427 * emacs-lisp/cl.el (most-positive-float, most-negative-float)
16428 (least-positive-float, least-negative-float)
16429 (least-positive-normalized-float, least-negative-normalized-float)
16430 (float-epsilon, float-negative-epsilon): Add doc-strings,
16431 based on those in cl.texi.
16432
16433 * files.el (set-visited-file-name): If the major-mode changed,
16434 reload the local variables. (Bug#9796)
16435
16436 2011-10-27 Chong Yidong <cyd@gnu.org>
16437
16438 * subr.el (change-major-mode-after-body-hook): New hook.
16439 (run-mode-hooks): Run it.
16440
16441 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
16442 Use change-major-mode-before-body-hook.
16443
16444 * simple.el (fundamental-mode):
16445 * emacs-lisp/derived.el (define-derived-mode): Revert 2010-04-28
16446 change introducing fundamental-mode-hook.
16447
16448 2011-10-26 Juanma Barranquero <lekktu@gmail.com>
16449
16450 * term/w32-win.el (w32-default-color-map): Declare obsolete (Bug#9785).
16451
16452 2011-10-26 Michael Albinus <michael.albinus@gmx.de>
16453
16454 * ido.el (ido-file-name-all-completions-1): Do not require
16455 tramp.el explicitly. (Bug#7583)
16456
16457 2011-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
16458
16459 * progmodes/octave-mod.el:
16460 * progmodes/octave-inf.el: Update maintainer.
16461
16462 2011-10-26 Chong Yidong <cyd@gnu.org>
16463
16464 * subr.el (with-wrapper-hook): Rewrite doc.
16465
16466 2011-10-25 Michael Albinus <michael.albinus@gmx.de>
16467
16468 * net/tramp-sh.el (tramp-sh-handle-file-directory-p): Return t for
16469 filenames "/method:foo:". (Bug#9793)
16470
16471 2011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
16472
16473 * comint.el (comint-get-old-input-default): Fix use-prompt-regexp case
16474 (bug#9865).
16475
16476 2011-10-24 Glenn Morris <rgm@gnu.org>
16477
16478 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix. (Bug#9819)
16479
16480 2011-10-24 Michael Albinus <michael.albinus@gmx.de>
16481
16482 * notifications.el: Add the requirement of a running D-Bus session
16483 bus to the Commentary.
16484
16485 2011-10-24 Juri Linkov <juri@jurta.org>
16486
16487 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
16488 `search-whitespace-regexp' only when `isearch-regexp' is non-nil.
16489 (Bug#9364)
16490
16491 2011-10-24 Juri Linkov <juri@jurta.org>
16492
16493 * info.el (Info-following-node-name-re): Add newline to the list
16494 of allowed characters for leading space. (Bug#9824)
16495
16496 2011-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
16497
16498 * progmodes/octave-inf.el (inferior-octave-mode-map):
16499 Fix C-c C-h binding.
16500 * progmodes/octave-mod.el (octave-help): Remove.
16501
16502 2011-10-23 Michael Albinus <michael.albinus@gmx.de>
16503
16504 Sync with Tramp 2.2.3.
16505
16506 * net/tramp-cache.el (top): Pacify byte-compiler using
16507 `init-file-user' and `site-run-file'.
16508
16509 * net/trampver.el: Update release number.
16510
16511 2011-10-23 Chong Yidong <cyd@gnu.org>
16512
16513 * files.el (toggle-read-only): Remove obsolete comment about
16514 version control.
16515
16516 * vc/vc-hooks.el (vc-toggle-read-only): Make it an obsolete alias
16517 for toggle-read-only. Note that this hasn't called vc-next-action
16518 since 2008-05-02, though it wasn't documented at the time.
16519
16520 * vc/ediff-init.el (ediff-toggle-read-only-function):
16521 Use toggle-read-only.
16522
16523 2011-10-22 Alan Mackenzie <bug-cc-mode@gnu.org>
16524
16525 Fix bug #9560, sporadic wrong indentation; improve instrumentation
16526 of c-parse-state.
16527
16528 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
16529 correct faulty logical expression.
16530 (c-parse-state-state, c-record-parse-state-state):
16531 (c-replay-parse-state-state): New defvar/defuns.
16532 (c-debug-parse-state): Use new functions.
16533
16534 2011-10-22 Martin Rudalics <rudalics@gmx.at>
16535
16536 * mouse.el (mouse-drag-line): Fix minibuffer resizing broken by
16537 last fix. Use window-in-direction correctly.
16538
16539 2011-10-21 Chong Yidong <cyd@gnu.org>
16540
16541 * progmodes/idlwave.el (idlwave-mode):
16542 * progmodes/vera-mode.el (vera-mode): No need to set
16543 require-final-newline; that's done in prog-mode.
16544 Suggested by Stefan Monnier.
16545
16546 2011-10-21 Martin Rudalics <rudalics@gmx.at>
16547
16548 * mouse.el (mouse-drag-window-above)
16549 (mouse-drag-move-window-bottom, mouse-drag-move-window-top)
16550 (mouse-drag-mode-line-1, mouse-drag-header-line)
16551 (mouse-drag-vertical-line-rightward-window): Remove.
16552 (mouse-drag-line): New function.
16553 (mouse-drag-mode-line, mouse-drag-header-line)
16554 (mouse-drag-vertical-line): Call mouse-drag-line.
16555 * window.el (window-at-side-p, windows-at-side): New functions.
16556
16557 2011-10-21 Ulrich Mueller <ulm@gentoo.org>
16558
16559 * tar-mode.el (tar-grind-file-mode):
16560 Fix handling of setuid/setgid, handle sticky bit. (Bug#9817)
16561
16562 2011-10-21 Chong Yidong <cyd@gnu.org>
16563
16564 * progmodes/idlwave.el (idlwave-mode):
16565 * progmodes/vera-mode.el (vera-mode):
16566 Use mode-require-final-newline.
16567
16568 2011-10-20 Glenn Morris <rgm@gnu.org>
16569
16570 * vc/vc.el (vc-next-action): Handle removed directories. (Bug#9781)
16571
16572 2011-10-20 Christoph Scholtes <cschol2112@googlemail.com>
16573
16574 * emulation/cua-base.el (cua-set-mark): Fix case of string.
16575
16576 2011-10-20 Chong Yidong <cyd@gnu.org>
16577
16578 * emulation/cua-base.el (cua-mode):
16579 * mail/footnote.el (footnote-mode):
16580 * mail/mailabbrev.el (mail-abbrevs-mode):
16581 * net/xesam.el (xesam-minor-mode):
16582 * progmodes/bug-reference.el (bug-reference-mode):
16583 * progmodes/cap-words.el (capitalized-words-mode):
16584 * progmodes/compile.el (compilation-minor-mode)
16585 (compilation-shell-minor-mode):
16586 * progmodes/gud.el (gud-tooltip-mode):
16587 * progmodes/hideif.el (hide-ifdef-mode):
16588 * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
16589 * progmodes/subword.el (subword-mode):
16590 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
16591 * progmodes/which-func.el (which-function-mode):
16592 * term/tvi970.el (tvi970-set-keypad-mode):
16593 * term/vt100.el (vt100-wide-mode):
16594 * textmodes/flyspell.el (flyspell-mode):
16595 * textmodes/ispell.el (ispell-minor-mode):
16596 * textmodes/nroff-mode.el (nroff-electric-mode):
16597 * textmodes/paragraphs.el (use-hard-newlines):
16598 * textmodes/refill.el (refill-mode):
16599 * textmodes/reftex.el (reftex-mode):
16600 * textmodes/rst.el (rst-minor-mode):
16601 * textmodes/sgml-mode.el (html-autoview-mode)
16602 (sgml-electric-tag-pair-mode):
16603 * textmodes/tex-mode.el (latex-electric-env-pair-mode):
16604 * vc/diff-mode.el (diff-auto-refine-mode, diff-minor-mode):
16605 * emulation/crisp.el (crisp-mode):
16606 * emacs-lisp/eldoc.el (eldoc-mode):
16607 * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fixes for new
16608 minor mode behavior.
16609
16610 2011-10-19 Juri Linkov <juri@jurta.org>
16611
16612 * descr-text.el (describe-char): Add #x2010 and #x2011 to
16613 the list of hard-coded chars with escape-glyph face.
16614
16615 2011-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
16616
16617 * vc/log-edit.el (log-edit-empty-buffer-p): Ignore empty headers.
16618
16619 2011-10-19 Michael Albinus <michael.albinus@gmx.de>
16620
16621 * net/tramp.el (tramp-connectable-p): Make a stronger check on a
16622 running process.
16623
16624 2011-10-19 Glenn Morris <rgm@gnu.org>
16625
16626 * vc/vc-bzr.el (vc-bzr-after-dir-status):
16627 Ignore ignored files. (Bug#9726)
16628
16629 2011-10-19 Chong Yidong <cyd@gnu.org>
16630
16631 Doc fix for minor modes, stating that an omitted argument enables
16632 the mode unconditionally when called from Lisp.
16633
16634 * abbrev.el (abbrev-mode):
16635 * allout.el (allout-mode):
16636 * autoinsert.el (auto-insert-mode):
16637 * autoarg.el (autoarg-mode, autoarg-kp-mode):
16638 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
16639 (global-auto-revert-mode):
16640 * battery.el (display-battery-mode):
16641 * composite.el (global-auto-composition-mode)
16642 (auto-composition-mode):
16643 * delsel.el (delete-selection-mode):
16644 * desktop.el (desktop-save-mode):
16645 * dired-x.el (dired-omit-mode):
16646 * dirtrack.el (dirtrack-mode):
16647 * doc-view.el (doc-view-minor-mode):
16648 * double.el (double-mode):
16649 * electric.el (electric-indent-mode, electric-pair-mode):
16650 * emacs-lock.el (emacs-lock-mode):
16651 * epa-hook.el (auto-encryption-mode):
16652 * follow.el (follow-mode):
16653 * font-core.el (font-lock-mode):
16654 * frame.el (auto-raise-mode, auto-lower-mode, blink-cursor-mode):
16655 * help.el (temp-buffer-resize-mode):
16656 * hilit-chg.el (highlight-changes-mode)
16657 (highlight-changes-visible-mode):
16658 * hi-lock.el (hi-lock-mode):
16659 * hl-line.el (hl-line-mode, global-hl-line-mode):
16660 * icomplete.el (icomplete-mode):
16661 * ido.el (ido-everywhere):
16662 * image-file.el (auto-image-file-mode):
16663 * image-mode.el (image-minor-mode):
16664 * iswitchb.el (iswitchb-mode):
16665 * jka-cmpr-hook.el (auto-compression-mode):
16666 * linum.el (linum-mode):
16667 * longlines.el (longlines-mode):
16668 * master.el (master-mode):
16669 * mb-depth.el (minibuffer-depth-indicate-mode):
16670 * menu-bar.el (menu-bar-mode):
16671 * minibuf-eldef.el (minibuffer-electric-default-mode):
16672 * mouse-sel.el (mouse-sel-mode):
16673 * msb.el (msb-mode):
16674 * mwheel.el (mouse-wheel-mode):
16675 * outline.el (outline-minor-mode):
16676 * paren.el (show-paren-mode):
16677 * recentf.el (recentf-mode):
16678 * reveal.el (reveal-mode, global-reveal-mode):
16679 * rfn-eshadow.el (file-name-shadow-mode):
16680 * ruler-mode.el (ruler-mode):
16681 * savehist.el (savehist-mode):
16682 * scroll-all.el (scroll-all-mode):
16683 * scroll-bar.el (scroll-bar-mode):
16684 * server.el (server-mode):
16685 * shell.el (shell-dirtrack-mode):
16686 * simple.el (auto-fill-mode, transient-mark-mode)
16687 (visual-line-mode, overwrite-mode, binary-overwrite-mode)
16688 (line-number-mode, column-number-mode, size-indication-mode)
16689 (auto-save-mode, normal-erase-is-backspace-mode, visible-mode):
16690 * strokes.el (strokes-mode):
16691 * time.el (display-time-mode):
16692 * t-mouse.el (gpm-mouse-mode):
16693 * tool-bar.el (tool-bar-mode):
16694 * tooltip.el (tooltip-mode):
16695 * type-break.el (type-break-mode-line-message-mode)
16696 (type-break-query-mode):
16697 * view.el (view-mode):
16698 * whitespace.el (whitespace-mode, whitespace-newline-mode)
16699 (global-whitespace-mode, global-whitespace-newline-mode):
16700 * xt-mouse.el (xterm-mouse-mode): Doc fix.
16701
16702 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
16703 Fix autogenerated docstring.
16704
16705 2011-10-19 Juri Linkov <juri@jurta.org>
16706
16707 * net/browse-url.el (browse-url-can-use-xdg-open): Support LXDE
16708 by checking environment variables "DESKTOP_SESSION" and
16709 "XDG_CURRENT_DESKTOP". (Bug#9779)
16710
16711 2011-10-19 Juri Linkov <juri@jurta.org>
16712
16713 * net/browse-url.el (browse-url-browser-function): Add "Chromium".
16714 (browse-url-chromium-program, browse-url-chromium-arguments):
16715 New defcustoms.
16716 (browse-url-default-browser): Check for `browse-url-chromium' and
16717 call `browse-url-chromium-program'.
16718 (browse-url-chromium): New command. (Bug#9779)
16719
16720 2011-10-18 Juanma Barranquero <lekktu@gmail.com>
16721
16722 * facemenu.el (list-colors-duplicates): On Windows, detect more
16723 duplicates by assuming that only colors matching "^System" are
16724 special "system colors". (Bug#9722)
16725
16726 2011-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
16727
16728 * vc/log-edit.el (log-edit): Add "Author:" header to encourage people
16729 to distinguish the author from the committer.
16730
16731 2011-10-18 Michael Albinus <michael.albinus@gmx.de>
16732
16733 * net/tramp.el (tramp-file-name-handler): Load Tramp packages silently.
16734
16735 2011-10-18 Jirka Kosek <jirka@kosek.cz> (tiny change)
16736
16737 * international/mule.el (sgml-html-meta-auto-coding-function):
16738 Add support for detecting encoding in HTML5 specified only as
16739 <meta charset="UTF-8">. Implementation just makes http-equiv and
16740 content-type parts from HTML4 encoding string optional. (Bug#9716)
16741
16742 2011-10-18 Glenn Morris <rgm@gnu.org>
16743
16744 * vc/vc.el (vc-initial-comment): Mark as obsolete. (Bug#9745)
16745
16746 2011-10-18 Chong Yidong <cyd@gnu.org>
16747
16748 * faces.el (cursor): Doc fix.
16749
16750 2011-10-17 Chong Yidong <cyd@gnu.org>
16751
16752 * font-lock.el (font-lock-maximum-size): Mark as obsolete.
16753
16754 2011-10-17 Ryan Barrett <emacs@ryanb.org> (tiny change)
16755
16756 * dirtrack.el (dirtrack): Support shell buffers with path
16757 prefixes, e.g. tramp-based remote shells. (Bug#9647)
16758
16759 2011-10-17 Teodor Zlatanov <tzz@lifelogs.com>
16760
16761 * json.el: Bump version to 1.3 and note change in History.
16762 (json-alist-p, json-plist-p): Rewrite to avoid recursion.
16763
16764 2011-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
16765
16766 * comint.el (comint-insert-input, comint-send-input)
16767 (comint-get-old-input-default, comint-backward-matching-input)
16768 (comint-next-prompt): Use nil instead of `input' for field property of
16769 past user input (bug#114).
16770
16771 * minibuffer.el (completion--replace): Inherit surrounding properties
16772 (bug#114).
16773 (minibuffer-complete-and-exit): Use it.
16774
16775 * comint.el (comint--table-subvert): Quote the all-completions output
16776 (bug#9160).
16777
16778 2011-10-17 Martin Rudalics <rudalics@gmx.at>
16779
16780 * ido.el (ido-default-buffer-method): Remove redundant :type entry.
16781
16782 * menu-bar.el (menu-bar-file-menu): Add entry for making new
16783 window on right of selected. (Bug#9350) Reword other window
16784 entries and separate them from frame entries.
16785
16786 2011-10-15 Glenn Morris <rgm@gnu.org>
16787
16788 * emacs-lisp/ert.el (ert--explain-equal-rec, ert-select-tests):
16789 Doc fixes.
16790
16791 2011-10-15 Chong Yidong <cyd@stupidchicken.com>
16792
16793 * net/network-stream.el (network-stream-open-starttls):
16794 Improve detection of failure due to lack of TLS support.
16795
16796 * mail/sendmail.el (sendmail-query-once): Tweak prompt message,
16797 putting the input text in front and in bold.
16798
16799 2011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
16800
16801 * pcmpl-unix.el (pcomplete/ssh): SSH does allow ganging.
16802
16803 * mpc.el (mpc-songs-jump-to): Don't burp if the user clicks in an
16804 empty buffer.
16805
16806 * mouse.el (mouse-drag-mode-line-1): Modify the end-event we pushed on
16807 unread-command-events rather than pushing yet-another event.
16808
16809 2011-10-14 Eli Zaretskii <eliz@gnu.org>
16810
16811 * mail/sendmail.el (sendmail-query-once): Improve the wording of
16812 the explanation of the possible choices. Make the options passed
16813 to completing-read shorter.
16814
16815 2011-10-13 Agustín Martín Domingo <agustin.martin@hispalinux.es>
16816
16817 * textmodes/flyspell.el (flyspell-large-region): Make sure
16818 extended character mode is used if defined (Bug#1339).
16819
16820 2011-10-13 Eli Zaretskii <eliz@gnu.org>
16821
16822 * simple.el (what-cursor-position): Fix the display of the
16823 character info for LRE, LRO, RLE, and RLO characters by appending
16824 an invisible PDF.
16825
16826 2011-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
16827
16828 * emacs-lisp/timer.el (with-timeout): Make sure we cancel the timer
16829 even in case of error; add debug spec; simplify data flow.
16830 (with-timeout-handler): Remove.
16831
16832 2011-10-12 Michael Albinus <michael.albinus@gmx.de>
16833
16834 Fix Bug#6019, Bug#9315.
16835
16836 * files.el (set-auto-mode): Call `file-name-sans-versions' for the
16837 complete `buffer-file-name', the local file name part could look
16838 remotely (for example on VMS).
16839
16840 * net/ange-ftp.el (ange-ftp-run-real-handler): Make it an alias of
16841 `tramp-run-real-handler'.
16842 (ange-ftp-fix-name-for-vms): Handle the case, where `name' is
16843 already quoted by '"'.
16844
16845 * net/tramp.el (tramp-rfn-eshadow-update-overlay): Ignore errors.
16846 Let `file-name-handler-alist' be nil, the local file name part
16847 could look remotely (for example on VMS).
16848
16849 2011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
16850
16851 * textmodes/flyspell.el (flyspell-word): Move with-local-quit
16852 from here...
16853 (flyspell-post-command-hook): ...to here.
16854
16855 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
16856
16857 * mail/sendmail.el (send-mail-function): Don't use sendmail-query-once
16858 if not needed.
16859 (sendmail-query-once): Remove OS dependencies. Make it a 3-way choice
16860 using completion. Protect against "slow" callers.
16861 Remove the "message hack".
16862
16863 2011-10-11 Juri Linkov <juri@jurta.org>
16864
16865 * isearch.el (isearch-lazy-highlight-word): New variable.
16866 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
16867 Use it. (Bug#9727)
16868
16869 2011-10-11 Glenn Morris <rgm@gnu.org>
16870
16871 * progmodes/f90.el (f90-next-statement): Ignore preprocessor lines,
16872 like f90-previous-statement does.
16873
16874 2011-10-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
16875
16876 * eshell/eshell.el (eshell-command): History should be saved
16877 only in interactive use, to avoid error.
16878
16879 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
16880
16881 * minibuffer.el (completion-file-name-table): Fix last change,
16882 i.e. ignore normal errors but not the other ones.
16883
16884 2011-10-10 Martin Rudalics <rudalics@gmx.at>
16885
16886 * window.el (special-display-buffer-names)
16887 (special-display-regexps): Remove some remnants of earlier
16888 changes from doc-strings.
16889 (quit-windows-on): New function.
16890
16891 * vc/vc.el (vc-revert, vc-rollback):
16892 * vc/vc-dispatcher.el (vc-finish-logentry): Call quit-windows-on
16893 instead of deleting windows. (Bug#4557) (Bug#5310) (Bug#5556)
16894 (Bug#6183) (Bug#7074) (Bug#7447)
16895
16896 2011-10-09 Martin Rudalics <rudalics@gmx.at>
16897
16898 * window.el (frame-auto-hide-function): Add version tag.
16899 (Bug#9699)
16900
16901 2011-10-09 Michael Albinus <michael.albinus@gmx.de>
16902
16903 * net/tramp.el (tramp-file-name-handler): Add 'debug to the error
16904 condition.
16905
16906 2011-10-09 Leo Liu <sdl.web@gmail.com>
16907
16908 * mail/smtpmail.el (smtpmail-send-data): Add a missing space.
16909 (Bug#9701)
16910
16911 2011-10-08 Glenn Morris <rgm@gnu.org>
16912
16913 * progmodes/f90.el (f90-calculate-indent): Give preprocessor lines
16914 before the first code statement zero indent. (Bug#9690)
16915
16916 2011-10-08 Chong Yidong <cyd@stupidchicken.com>
16917
16918 * simple.el (count-words-region): Always count in the region.
16919 Report the number of lines and characters too.
16920 (count-words): New command, which counts in the buffer if the
16921 region is inactive, as count-words-region used to.
16922 (count-words--message): New function. Handle plurals.
16923 (count-lines-region): Make it an alias for count-words-region.
16924
16925 * bindings.el (esc-map): Replace count-lines-region with
16926 count-words-region.
16927
16928 2011-10-08 Martin Rudalics <rudalics@gmx.at>
16929
16930 * window.el (window--delete): Delete dedicated frame
16931 unconditionally when argument KILL is non-nil. (Bug#9699)
16932 (switch-to-buffer): Fix doc-string typo.
16933
16934 2011-10-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
16935
16936 * eshell/eshell.el (eshell-command): Avoid using hooks.
16937
16938 2011-10-07 Chong Yidong <cyd@stupidchicken.com>
16939
16940 * bindings.el ([M-left],[M-right]): Bind to left-word and
16941 right-word respectively.
16942
16943 2011-10-07 Glenn Morris <rgm@gnu.org>
16944
16945 * cus-start.el (debug-on-quit): Fix custom type.
16946
16947 2011-10-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
16948
16949 * subr.el (define-key-after): Clarify that the function is not
16950 useful for non-menu keymaps.
16951
16952 * progmodes/gdb-mi.el (gdb): Fix typo in doc string.
16953
16954 2011-10-06 Thierry Volpiatto <thierry.volpiatto@gmail.com>
16955
16956 * eshell/eshell.el (eshell-command): Enable `eshell-mode' only
16957 in current minibuffer (Fix bug with recursive minibuffers).
16958
16959 2011-10-06 Chong Yidong <cyd@stupidchicken.com>
16960
16961 * progmodes/gdb-mi.el (gdb): Doc fix.
16962
16963 2011-10-05 Martin Rudalics <rudalics@gmx.at>
16964
16965 * window.el (frame-auto-hide-function): New option replacing
16966 frame-auto-delete. Suggested by Stefan Monnier.
16967 (window--delete): Call frame-auto-hide-function instead of
16968 investigating frame-auto-delete.
16969 (window-point-1, set-window-point-1): New functions.
16970 (window-in-direction, record-window-buffer, window-state-get-1)
16971 (display-buffer-record-window): Use window-point-1 instead of
16972 window-point.
16973 (set-window-buffer-start-and-point): Use set-window-point-1.
16974
16975 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
16976
16977 * emacs-lisp/edebug.el: Heed checkdoc recommendations.
16978
16979 2011-10-05 Glenn Morris <rgm@gnu.org>
16980
16981 * progmodes/perl-mode.el (perl-electric-terminator): Doc fix.
16982 (perl-calculate-indent): Suppress scan errors. (Bug#2205)
16983
16984 2011-10-05 Leo Liu <sdl.web@gmail.com>
16985
16986 * subr.el (read-char-choice): Fix argument to buffer-live-p which
16987 works with buffer object.
16988
16989 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
16990
16991 * mpc.el (mpc-tool-bar-map): Add labels.
16992
16993 2011-10-04 Glenn Morris <rgm@gnu.org>
16994
16995 * calendar/holidays.el (calendar-check-holidays): Doc fix.
16996
16997 2011-10-04 Martin Rudalics <rudalics@gmx.at>
16998
16999 * window.el (window--delete): New function.
17000 (frame-auto-delete): Resuscitate option.
17001 (bury-buffer, replace-buffer-in-windows)
17002 (quit-window): Rewrite using window--delete.
17003 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
17004 Pass display-buffer-mark-dedicated to window--display-buffer-2
17005 (Bug#9639).
17006
17007 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
17008
17009 * pcmpl-unix.el (pcomplete/scp): Don't assume pcomplete-all-entries
17010 returns a list (bug#9554). Add remote file name completion.
17011 * comint.el (comint--table-subvert): Curry and get quote&unquote
17012 functions as arguments.
17013 (comint--complete-file-name-data): Adjust call accordingly.
17014 * pcomplete.el (pcomplete--table-subvert): Remove.
17015 (pcomplete-completions-at-point): Use comint--table-subvert instead.
17016
17017 * minibuffer.el (completion-table-case-fold): Use currying.
17018 (completion--styles-type, completion--cycling-threshold-type):
17019 New constants.
17020 (completion-styles, completion-category-overrides)
17021 (completion-cycle-threshold): Use them.
17022 * pcomplete.el (pcomplete-completions-at-point): Adjust call to
17023 completion-table-case-fold.
17024
17025 2011-10-03 Stephen Berman <stephen.berman@gmx.net>
17026
17027 * minibuffer.el (completion-category-overrides): Fix type of styles
17028 and add more user friendly tags (bug#9660).
17029
17030 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
17031
17032 * international/mule-cmds.el: Fix abuses of apply-partially (bug#9661).
17033 (mule-input-method-string): New widget.
17034 (default-input-method, language-info-custom-alist): Use it.
17035
17036 2011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
17037
17038 * pcomplete.el: Require comint.
17039 (pcomplete--common-suffix): Remove.
17040 (pcomplete--common-quoted-suffix): Use comint--common-suffix instead.
17041 (pcomplete--table-subvert): Sync with comint--table-subvert.
17042 (pcomplete--entries): Use comint-completion-file-name-table.
17043 * comint.el (comint-unquote-filename): Simplify.
17044 (comint-completion-file-name-table): New function (bug#9616).
17045 (comint--complete-file-name-data): Use it.
17046
17047 * pcmpl-gnu.el (pcmpl-gnu-with-file-buffer): New macro (bug#9643).
17048 (pcmpl-gnu-tar-buffer): Remove.
17049 (pcmpl-gnu-with-file-buffer): Use it to avoid leaving the tar's buffer
17050 around. Make sure pcomplete-suffix-list is only changed temporarily.
17051 Don't look inside the tar's file if it's too large.
17052
17053 2011-10-01 Chong Yidong <cyd@stupidchicken.com>
17054
17055 * cus-edit.el (custom-mode-map):
17056 * epa.el (epa-key-list-mode-map):
17057 * man.el (Man-mode-map):
17058 * startup.el (splash-screen-keymap):
17059 * simple.el (special-mode-map): Use scroll-up-command and
17060 scroll-down-command.
17061
17062 * progmodes/idlw-help.el (idlwave-help-mode-map):
17063 * progmodes/ebrowse.el (ebrowse-electric-position-mode-map):
17064 * net/newst-plainview.el (newsticker-mode-map):
17065 * emulation/ws-mode.el (wordstar-mode-map):
17066 * emulation/vi.el (vi-com-map):
17067 * calc/calc-graph.el (calc-graph-show-dumb):
17068 * term/sun.el (terminal-init-sun):
17069 * term/ns-win.el (global-map):
17070 * progmodes/grep.el (grep-mode-map):
17071 * progmodes/ebrowse.el (ebrowse-electric-list-mode-map):
17072 * mail/rmail.el (rmail-mode-map):
17073 * progmodes/cpp.el (cpp-edit-mode-map): Likewise.
17074
17075 * custom.el (custom-safe-themes, load-theme): Treat value of t for
17076 custom-safe-themes as special.
17077
17078 2011-10-01 Julien Danjou <julien@danjou.info>
17079
17080 * notifications.el (notifications-notify): Fix docstring.
17081
17082 2011-10-01 Per Starbäck <per@starback.se>
17083
17084 * pcmpl-gnu.el (pcomplete/tar): Fix tar-header-name call. (Bug#9643)
17085
17086 2011-09-30 Martin Rudalics <rudalics@gmx.at>
17087
17088 * startup.el (command-line-1): Fix last fix by inserting
17089 initial-scratch-message into *scratch* before displaying it.
17090 (Bug#9605) and (Bug#9636)
17091
17092 2011-09-29 Eli Zaretskii <eliz@gnu.org>
17093
17094 * simple.el (line-move): If auto-hscroll-mode is disabled and the
17095 window is hscrolled, move by logical lines. (Bug#9607)
17096 (line-move-visual): Update the doc string to the above effect.
17097
17098 2011-09-29 Martin Rudalics <rudalics@gmx.at>
17099
17100 * window.el (display-buffer-record-window): When WINDOW is the
17101 selected window use `point' instead of `window-point'. (Bug#9626)
17102
17103 * startup.el (command-line-1): Use insert-before-markers when
17104 inserting initial-scratch-message. (Bug#9605)
17105
17106 * help.el (help-window): Remove variable.
17107
17108 2011-09-29 Glenn Morris <rgm@gnu.org>
17109
17110 * pcmpl-cvs.el (pcomplete/cvs): Add "status" handler.
17111
17112 2011-09-29 Juanma Barranquero <lekktu@gmail.com>
17113
17114 * descr-text.el (describe-char-categories): Accept category
17115 descriptions more than one line long.
17116
17117 2011-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
17118
17119 * simple.el (delete-trailing-whitespace): Fix last change.
17120
17121 * progmodes/perl-mode.el (perl-syntax-propertize-function):
17122 Don't confuse "y => 3" as the beginning of a `y' operation.
17123
17124 * emacs-lisp/debug.el (debug-convert-byte-code): Don't assume the
17125 object has more than 4 slots (bug#9613).
17126
17127 2011-09-28 Juanma Barranquero <lekktu@gmail.com>
17128
17129 * subr.el (with-output-to-temp-buffer):
17130 * net/quickurl.el (quickurl, quickurl-browse-url):
17131 Fix typos in docstrings.
17132
17133 2011-09-27 Eli Zaretskii <eliz@gnu.org>
17134
17135 * minibuffer.el (completion-styles)
17136 (completion-category-overrides): Cross reference each other in doc
17137 strings.
17138
17139 2011-09-27 Glenn Morris <rgm@gnu.org>
17140
17141 * pcmpl-cvs.el (pcmpl-cvs-entries): Update for Emacs 22.1 changes
17142 to split-string. (Bug#9606)
17143
17144 2011-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
17145
17146 * mail/smtpmail.el (smtpmail-via-smtp): Fix STARTTLS detection
17147 (bug#9615).
17148
17149 2011-09-27 Chong Yidong <cyd@stupidchicken.com>
17150
17151 * emacs-lisp/package.el (list-packages): Fix echo area message.
17152
17153 2011-09-27 Leo Liu <sdl.web@gmail.com>
17154
17155 * ido.el (ido-read-internal): Accept cons cell HIST arg.
17156
17157 2011-09-25 Michael Albinus <michael.albinus@gmx.de>
17158
17159 * net/dbus.el (dbus-unregister-object): Don't release services for
17160 registered signals. (Bug#9581)
17161
17162 2011-09-25 Teodor Zlatanov <tzz@lifelogs.com>
17163
17164 * progmodes/cfengine.el (cfengine-auto-mode): Add convenience
17165 function that picks between cfengine 2 and 3 support
17166 automatically. Update docs accordingly.
17167
17168 2011-09-22 Kenichi Handa <handa@m17n.org>
17169
17170 * language/ind-util.el (indian-tml-base-table): Add TAMIL DIGIT
17171 ZERO.
17172 (indian-itrans-v5-table-for-tamil): New variable.
17173 (indian-tml-itrans-v5-hash): Use the above variable (Bug#9336).
17174
17175 2011-09-22 Ken Manheimer <ken.manheimer@gmail.com>
17176
17177 * allout.el (allout-this-command-hid-stuff): Buffer-local variable
17178 that's true if the current command involved collapsing of text.
17179 It's reset to false at the beginning of the next command.
17180 (allout-post-command-business): Move the cursor to the beginning
17181 of entry if the cursor is hidden and collapsing activity just
17182 happened.
17183
17184 2011-09-24 Chong Yidong <cyd@stupidchicken.com>
17185
17186 * mouse.el (mouse-drag-track): Set scroll-margin to 0 while
17187 tracking (Bug#9541).
17188
17189 2011-09-24 Ulf Jasper <ulf.jasper@web.de>
17190
17191 * net/newst-reader.el (newsticker-html-renderer)
17192 (newsticker-show-news): Automatically load html rendering package
17193 if newsticker-html-renderer is set. Fixes "Warning: defvar ignored
17194 because w3m-fill-column is let-bound" and the error "Symbol's value
17195 as variable is void: w3m-fill-column".
17196
17197 2011-09-24 Michael Albinus <michael.albinus@gmx.de>
17198
17199 * net/dbus.el (dbus-unregister-object): Remove match rule of signals.
17200 Release services only if they are defined. (Bug#9581)
17201
17202 2011-09-23 Richard Stallman <rms@gnu.org>
17203
17204 * textmodes/paragraphs.el (forward-sentence): For backwards case,
17205 distinguish start of paragraph from start of its text.
17206
17207 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs): Autoload.
17208
17209 * mail/rmail.el (rmail-view-buffer-kill-buffer-hook): New function.
17210 (rmail-generate-viewer-buffer): Put that hook on view buffer.
17211 (rmail-mode-kill-buffer-hook): Override that hook, to kill view buffer.
17212
17213 2011-09-23 Andreas Schwab <schwab@linux-m68k.org>
17214
17215 * international/mule-diag.el (mule-diag): Insert a newline after
17216 each fontset description.
17217
17218 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
17219
17220 * simple.el (delete-trailing-whitespace):
17221 Document last change; simplify.
17222
17223 2011-09-23 Peter J. Weisberg <pj@irregularexpressions.net>
17224
17225 * simple.el (delete-trailing-whitespace): Also delete
17226 extra newlines at the end of the buffer.
17227
17228 * textmodes/picture.el: Make motion commands obey shift-select-mode.
17229 (picture-newline): Use forward-line so as to ignore fields.
17230
17231 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
17232
17233 * subr.el (with-wrapper-hook): Fix edebug spec.
17234
17235 2011-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
17236
17237 * simple.el (kill-line): Note effect of `show-trailing-whitespace'
17238 (bug#4538).
17239
17240 2011-09-23 Michael Albinus <michael.albinus@gmx.de>
17241
17242 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
17243 Fix nasty bug using wrong cached values.
17244
17245 2011-09-23 Alan Mackenzie <acm@muc.de>
17246
17247 * progmodes/cc-defs.el (c-version): Increase to 5.31.9.
17248
17249 2011-09-23 Chong Yidong <cyd@stupidchicken.com>
17250
17251 * window.el (pop-to-buffer): Ensure right window is selected if we
17252 chose another frame.
17253
17254 2011-09-22 Eli Zaretskii <eliz@gnu.org>
17255
17256 * simple.el (what-cursor-position): Use get-char-property-change
17257 and next-single-char-property-change, to be able to show display
17258 properties that come from overlays as well as text properties.
17259
17260 2011-09-22 Chong Yidong <cyd@stupidchicken.com>
17261
17262 * window.el (pop-to-buffer-same-window): New (reinstated) fun.
17263
17264 * cmuscheme.el (run-scheme, switch-to-scheme):
17265 * cus-edit.el (customize-group, custom-buffer-create)
17266 (customize-browse):
17267 * info.el (info):
17268 * shell.el (shell):
17269 * mail/sendmail.el (mail):
17270 * progmodes/inf-lisp.el (inferior-lisp): Use it (Bug#9532).
17271
17272 2011-09-22 Richard Stallman <rms@gnu.org>
17273
17274 * textmodes/paragraphs.el (forward-sentence): When setting PAR-BEG,
17275 move back only to line beg, don't move back over blank lines.
17276
17277 2011-09-22 Michael Albinus <michael.albinus@gmx.de>
17278
17279 * files.el (copy-directory): Set directory attributes only in case
17280 they could be retrieved from the source directory. (Bug#9565)
17281
17282 2011-09-22 Dima Kogan <dkogan@secretsauce.net> (tiny change)
17283
17284 * progmodes/hideshow.el (hs-looking-at-block-start-p)
17285 (hs-find-block-beginning, hs-hide-level-recursive):
17286 Ignore strings as well as comments. (Bug#9502)
17287
17288 2011-09-22 Andrew Schein <andrew@andrewschein.com> (tiny change)
17289
17290 * progmodes/sql.el (sql-comint-postgres):
17291 Convert port number to a string. (Bug#9566)
17292
17293 2011-09-22 Martin Rudalics <rudalics@gmx.at>
17294
17295 * window.el (quit-window): Undedicate window when switching to
17296 previous buffer. Reported by Thierry Volpiatto
17297 <thierry.volpiatto@gmail.com>.
17298 (special-display-popup-frame): When popping up a new frame reset
17299 its previous buffers to nil. Simplify code.
17300
17301 2011-09-21 Michael Albinus <michael.albinus@gmx.de>
17302
17303 * net/tramp.el (tramp-handle-shell-command): Set process sentinel
17304 and process filter, as done also in `shell-command'.
17305
17306 2011-09-21 Martin Rudalics <rudalics@gmx.at>
17307
17308 * window.el (set-window-buffer-start-and-point):
17309 Call set-window-start with NOFORCE argument t.
17310 Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
17311 (quit-window): Reword doc-string. Handle new format of
17312 quit-restore parameter. Don't delete window if it has a
17313 previous buffer we can show instead of the present one.
17314 (display-buffer-record-window): Rewrite using a new format for
17315 the quit-restore window parameter
17316 (special-display-popup-frame, display-buffer-same-window)
17317 (display-buffer-reuse-window, display-buffer-pop-up-frame)
17318 (display-buffer-pop-up-window, display-buffer-use-some-window):
17319 Adapt symbol passed to display-buffer-record-window.
17320 * help.el (help-window-setup): Handle new format of quit-restore
17321 parameter.
17322
17323 2011-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
17324
17325 * faces.el (face-list): Fix docstring (bug#9564).
17326
17327 * window.el (display-buffer--action-function-custom-type):
17328 Don't include internal functions in the Custom interface.
17329
17330 2011-09-20 Juri Linkov <juri@jurta.org>
17331
17332 * info.el (Info-history-skip-intermediate-nodes): New defcustom.
17333 (Info-forward-node, Info-backward-node, Info-next-preorder)
17334 (Info-last-preorder): Use it. (Bug#9528)
17335
17336 2011-09-20 Juri Linkov <juri@jurta.org>
17337
17338 * info.el (Info-last-preorder): Visit last menu item only when
17339 `Info-scroll-prefer-subnodes' is non-nil (third test-case of bug#9528).
17340
17341 2011-09-20 Julien Danjou <julien@danjou.info>
17342
17343 * password-cache.el (password-cache-remove): Remove entries even if the
17344 value is nil, so that password with a nil value (negative caching) is
17345 possible to invalidate.
17346
17347 2011-09-20 Lawrence Mitchell <wence@gmx.li>
17348
17349 * progmodes/f90.el (f90-break-line): If breaking inside comment delete
17350 all whitespace around breakpoint. (Bug#9553)
17351 (f90-find-breakpoint): Only break at whitespace inside a comment.
17352
17353 2011-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
17354
17355 * minibuffer.el (completion-file-name-table): Keep track of errors.
17356 (completion-table-with-predicate): Handle the case where pred1 is nil.
17357 * pcomplete.el (pcomplete-completions-at-point): Simplify.
17358
17359 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
17360
17361 * emacs-lisp/debug.el (debugger-args): Give it a docstring.
17362 (debugger-return-value): Signal an error if the debugging context does
17363 not await any return value.
17364
17365 * ps-mule.el (ps-mule-plot-string): Don't inf-loop (bug#5108).
17366 * image-mode.el (image-toggle-display-text)
17367 (image-toggle-display-image): Stay away from evil `intangible'.
17368
17369 2011-09-19 Leo Liu <sdl.web@gmail.com>
17370
17371 * replace.el (occur-revert-arguments): Make it permanent-local.
17372 (occur-mode): Don't call font-lock-defontify.
17373
17374 2011-09-19 Chong Yidong <cyd@stupidchicken.com>
17375
17376 * net/ldap.el (ldap-search-internal): Don't push empty search
17377 result (Bug#9508).
17378
17379 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
17380
17381 * whitespace.el (whitespace-newline-mode): Disable it right (bug#9550).
17382
17383 2011-09-19 Michael Albinus <michael.albinus@gmx.de>
17384
17385 * net/tramp-sh.el (tramp-inline-compress-commands): Add "xz".
17386 Suggested by Liam Stitt <stittl@cuug.ab.ca>.
17387
17388 2011-09-18 Juri Linkov <juri@jurta.org>
17389
17390 * buff-menu.el (Buffer-menu-mode-map):
17391 * dired.el (dired-mode-map):
17392 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map)
17393 (lisp-interaction-mode-map):
17394 * emacs-lisp/package.el (package-menu-mode-map):
17395 * epa.el (epa-key-list-mode-map):
17396 * menu-bar.el (menu-bar-showhide-tool-bar-menu)
17397 (menu-bar-options-menu):
17398 * outline.el (outline-mode-menu-bar-map):
17399 * vc/vc-bzr.el (vc-bzr-shelve-menu-map, vc-bzr-extra-menu-map):
17400 * vc/vc-dir.el (vc-dir-menu-map):
17401 * vc/vc-git.el (vc-git-stash-menu-map, vc-git-extra-menu-map):
17402 Capitalize non-function content words in menu item strings.
17403
17404 * dired.el (dired-mode-map): Add menu item for
17405 `image-dired-dired-toggle-marked-thumbs'.
17406
17407 2011-09-18 Juri Linkov <juri@jurta.org>
17408
17409 * isearch.el (isearch-edit-string): Bind `isearch-new-case-fold'
17410 to `isearch-case-fold-search' and restore its original value
17411 after the `isearch-mode' call.
17412
17413 2011-09-18 Juri Linkov <juri@jurta.org>
17414
17415 * progmodes/grep.el (grep-process-setup): Don't check code for 1
17416 because `zgrep' returns 1 for successful matches (bug#9226).
17417
17418 2011-09-18 Juri Linkov <juri@jurta.org>
17419
17420 * info.el (Info-extract-menu-node-name): Check the second match
17421 for empty string (second test-case of bug#9528).
17422 (Info-last-preorder): Let-bind `Info-history' to nil to not add
17423 intermediate nodes to the history (first test-case of bug#9528).
17424
17425 2011-09-18 Juri Linkov <juri@jurta.org>
17426
17427 * info.el (Info-mode-syntax-table): New variable.
17428 (Info-mode): Set `:syntax-table' to `Info-mode-syntax-table' (bug#3312).
17429
17430 2011-09-18 Juri Linkov <juri@jurta.org>
17431
17432 * info.el (Info-file-supports-index-cookies):
17433 Increment line-beginning-position's arg from 3 to 4 because makeinfo
17434 outputs one more line for long file names (bug#4142).
17435
17436 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
17437
17438 * newcomment.el (comment-normalize-vars): If prompting for
17439 comment-start, set comment-start-skip too (Bug#8424).
17440
17441 2011-09-18 Johan Bockgård <bojohan@gnu.org>
17442
17443 * icomplete.el: Fix previous fix of Bug#5849.
17444 (icomplete-mode): Don't set completion-show-inline-help.
17445 (icomplete-minibuffer-setup): Set completion-show-inline-help
17446 locally during icompletion.
17447
17448 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
17449
17450 * woman.el (woman2-process-escapes): Don't delete unrecognized
17451 escapes (Bug#7843).
17452
17453 * files.el (inhibit-first-line-modes-regexps): Add image files.
17454 (hack-local-variables-prop-line): Return nil for malformed
17455 prop-lines (Bug#9044).
17456
17457 2011-09-18 Michael Albinus <michael.albinus@gmx.de>
17458
17459 * net/tramp.el (top): Don't require 'shell.
17460 (tramp-methods): Fix docstring.
17461 (tramp-get-remote-tmpdir): New defun, moved from tramp-sh.el.
17462 Return complete remote file name. Handle "smb" case.
17463 Use `tramp-tmpdir', if defined for the respective method.
17464 (tramp-make-tramp-temp-file): Adapt call of `tramp-get-remote-tmpdir'.
17465
17466 * net/tramp-compat.el (top): Require 'shell.
17467
17468 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
17469 (tramp-maybe-open-connection): Use `tramp-file-name-real-host' for
17470 `tramp-current-host'.
17471 (tramp-get-remote-tmpdir): Remove.
17472
17473 * net/tramp-smb.el (tramp-methods): Add `tramp-remote-shell' and
17474 `tramp-tmpdir' entries.
17475 (tramp-smb-errors): Add "NT_STATUS_IMAGE_ALREADY_LOADED".
17476 (tramp-smb-handle-file-attributes): Ignore errors.
17477 (tramp-smb-wait-for-output): Check also for process end.
17478
17479 2011-09-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
17480
17481 * mail/smtpmail.el (smtpmail-via-smtp): Ignore errors that arise
17482 when sending QUIT (bug#9312).
17483
17484 2011-09-17 Chong Yidong <cyd@stupidchicken.com>
17485
17486 * replace.el (occur-mode-map): Rebind occur-edit-mode to "e" (Bug#8463).
17487 (occur-edit-mode-map): Bind C-c C-c to occur-cease-edit and C-o to
17488 occur-mode-display-occurrence.
17489 (occur-edit-mode): Add usage message.
17490 (occur-cease-edit): New command.
17491 (occur-after-change-function): Use text properties to find the
17492 position of the prefix text.
17493 (occur-engine): Set stickiness of prefix text properties.
17494
17495 2011-09-17 Glenn Morris <rgm@gnu.org>
17496
17497 * progmodes/etags.el (complete-tag):
17498 Fix call to completion-in-region. (Bug#9526)
17499
17500 2011-09-17 Juri Linkov <juri@jurta.org>
17501
17502 * textmodes/ispell.el (ispell-word): Add to the error message
17503 the word, ispell program name and current dictionary (bug#9121).
17504 (ispell-tex-arg-end): Capitalize "error" in the error message.
17505
17506 2011-09-17 Andreas Schwab <schwab@linux-m68k.org>
17507
17508 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix overflow
17509 check. (Bug#4251)
17510
17511 2011-09-17 Juri Linkov <juri@jurta.org>
17512
17513 * window.el (window-safe-min-height, window-safe-min-width):
17514 Fix typos (followup to bug#9522).
17515
17516 2011-09-17 Sven Joachim <svenjoac@gmx.de>
17517
17518 * window.el (window-min-width, window-state-put): Fix typos (bug#9522).
17519
17520 2011-09-16 Eli Zaretskii <eliz@gnu.org>
17521
17522 * simple.el (line-move): If goal-column is set, move by logical
17523 lines, not by display lines. (Bug#971)
17524 (next-line, previous-line, goal-column, line-move-visual): Doc fix
17525 to reflect the above change.
17526
17527 2011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
17528
17529 * image.el (imagemagick-register-types): Use regexp-opt.
17530
17531 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
17532
17533 * window.el (display-buffer-base-action): Rename from
17534 display-buffer-default-action. Make default value empty.
17535 (display-buffer-overriding-action): Convert to defvar.
17536 (display-buffer-fallback-action): New var.
17537
17538 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
17539
17540 * emacs-lisp/package.el (package-alist): Fix risky-local-variable
17541 declaration.
17542 (package--add-to-archive-contents): If there is a duplicate entry
17543 with an older version, remove it.
17544 (package-menu-mark-delete, package-menu-mark-install)
17545 (package-menu-mark-unmark): Make unused args optional.
17546 (package-menu-mark-obsolete-for-deletion):
17547 Use package-menu-get-status instead of a regexp search.
17548 (package-menu-get-status): Use tabulated-list-entry.
17549 (package-menu-mark-upgrades): New command.
17550 (package-menu-mode-map): Bind it to U. Add it to menu bar.
17551 (package-menu-execute): Do installation before deletion.
17552 (package-menu-refresh, package-menu-execute): Use derived-mode-p
17553 instead of checking major-mode.
17554 (package-menu--find-upgrades): New function.
17555
17556 2011-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
17557
17558 * mail/smtpmail.el (smtpmail-send-command): Don't include AUTH
17559 passwords in the log buffer.
17560 (smtpmail-process-filter): Update the process marker so that the
17561 "broken by peer" status message is inserted in the right place.
17562
17563 2011-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
17564
17565 * textmodes/bibtex.el (bibtex-complete-string-cleanup)
17566 (bibtex-complete-crossref-cleanup): Adjust to accommodate needs of
17567 bibtex-completion-at-point-function.
17568 (bibtex-completion-at-point-function): Use them.
17569
17570 * newcomment.el (comment-add, comment-valid-prefix-p): Docfix.
17571
17572 * mpc.el (mpc-constraints-tag-lookup): New function.
17573 (mpc-constraints-restore): Use it to make jumping to "album=Foo" apply
17574 also to browser "album|playlist".
17575
17576 2011-09-14 Juri Linkov <juri@jurta.org>
17577
17578 * isearch.el (isearch-fail-pos): Add new arg `msg'. Doc fix.
17579 (isearch-edit-string): Use length of `isearch-string' when
17580 `isearch-fail-pos' returns nil.
17581 (isearch-message): Remove duplicate code and call
17582 `isearch-fail-pos' with arg `t'.
17583
17584 2011-09-14 Chong Yidong <cyd@stupidchicken.com>
17585
17586 * replace.el (occur-mode-goto-occurrence): Don't force using other
17587 window (Bug#9499).
17588
17589 * dired-aux.el (dired-do-chmod): Don't provide initial input.
17590
17591 2011-09-14 Martin Rudalics <rudalics@gmx.at>
17592
17593 * window.el (display-buffer-window): Remove.
17594 (display-buffer-record-window): Use help-setup window parameter
17595 instead of variable display-buffer-window.
17596 (display-buffer-function, special-display-buffer-names)
17597 (special-display-function): Mention help-setup parameter instead
17598 of display-buffer-window in doc-string.
17599 * help.el (help-window-setup): New argument help-window.
17600 Use help-window-setup parameter instead of display-buffer-window.
17601 Reword some messages.
17602 (with-help-window): Pass window used for displaying the buffer
17603 to help-window-setup. Don't set display-buffer-window.
17604
17605 2011-09-13 Glenn Morris <rgm@gnu.org>
17606
17607 * emacs-lisp/debug.el (debugger-make-xrefs):
17608 Preserve point. (Bug#9462)
17609
17610 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
17611
17612 * window.el (window-deletable-p): Use next-frame.
17613
17614 2011-09-13 Martin Rudalics <rudalics@gmx.at>
17615
17616 * window.el (window-auto-delete): Remove.
17617 (window-deletable-p): Remove argument FORCE. Don't deal with
17618 dedication and previous buffers.
17619 (switch-to-prev-buffer): Don't delete window.
17620 (delete-windows-on): Delete a window's frame if and only if the
17621 window is dedicated.
17622 (replace-buffer-in-windows): Delete buffer's window or frame if
17623 and only if window is dedicated.
17624 (quit-window): Handle quit-restore as before last change.
17625 (bury-buffer): Delete window only if window-deletable-p returns t.
17626
17627 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
17628
17629 * window.el (window-deletable-p): Never delete the last frame on a
17630 given terminal.
17631
17632 2011-09-13 Glenn Morris <rgm@gnu.org>
17633
17634 * help.el (describe-key-briefly): Copy previous standard-output change.
17635
17636 2011-09-13 PJ Weisberg <pj@irregularexpressions.net>
17637
17638 * help.el (where-is): Respect non-standard standard-output. (Bug#9030)
17639
17640 2011-09-13 Glenn Morris <rgm@gnu.org>
17641
17642 * emacs-lisp/lisp-mode.el (lisp-indent-function):
17643 * progmodes/scheme.el (scheme-indent-function): Doc fixes.
17644
17645 2011-09-12 Chong Yidong <cyd@stupidchicken.com>
17646
17647 * dired-aux.el (dired-mark-read-string): Don't return default
17648 value on empty input (Bug#9361).
17649 (dired-do-chxxx): Treat empty input for "touch" as no -t option.
17650 Omit initial minibuffer contents.
17651 (dired-do-chmod): Signal an error on empty input.
17652 (dired-mark-read-string): Don't return default on empty input.
17653
17654 * files.el (file-modes-symbolic-to-number): Doc fix.
17655
17656 2011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
17657
17658 * international/mule-cmds.el (ucs-completions): Remove.
17659 (read-char-by-name): Use complete-with-action instead; add metadata.
17660
17661 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
17662
17663 * window.el (display-buffer--action-function-custom-type)
17664 (display-buffer--action-custom-type): New vars.
17665 (display-buffer-alist, display-buffer-default-action)
17666 (display-buffer-overriding-action): Add defcustom types.
17667
17668 * frame.el (delete-other-frames): Doc fix (Bug#276).
17669
17670 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
17671
17672 * play/doctor.el (make-doctor-variables): Define `doctor-sent'.
17673
17674 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
17675
17676 Change modes that used same-window-* vars to use switch-to-buffer.
17677
17678 * progmodes/gdb-mi.el (gdb-restore-windows, gdb-setup-windows):
17679 Use switch-to-buffer.
17680
17681 * cus-edit.el (customize-group, custom-buffer-create)
17682 (customize-browse, custom-buffer-create-other-window):
17683 Use switch-to-buffer or switch-to-buffer-other-window.
17684
17685 * info.el (info, Info-find-node, Info-revert-find-node, Info-next)
17686 (Info-prev, Info-up, Info-speedbar-goto-node)
17687 (info-display-manual): Use switch-to-buffer.
17688 (Info-speedbar-goto-node): Use switch-to-buffer-other-frame.
17689
17690 * mail/sendmail.el (mail): Use switch-to-buffer.
17691 (mail-recover): Use switch-to-buffer-other-window.
17692
17693 * cmuscheme.el (run-scheme, switch-to-scheme):
17694 * ielm.el (ielm):
17695 * shell.el (shell):
17696 * net/rlogin.el (rlogin):
17697 * net/telnet.el (telnet, rsh):
17698 * progmodes/inf-lisp.el (inferior-lisp): Use switch-to-buffer.
17699
17700 2011-09-11 Andreas Schwab <schwab@linux-m68k.org>
17701
17702 * dired.el (dired-sort-toggle-or-edit): Revert last changes.
17703
17704 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
17705
17706 * dired.el (dired-sort-toggle-or-edit): -o doesn't exist on *BSD,
17707 so don't mention it (bug#9301).
17708 (dired-sort-toggle-or-edit): Clarify string further.
17709
17710 * faces.el (face-spec-set-match-display): Make `(type graphic)'
17711 match `x', `w32' and `ns', like the manual says (bug#9029).
17712
17713 * subr.el (eval-after-load): Doc string clarification (bug#9125).
17714 (process-kill-buffer-query-function): Mention the buffer name in
17715 the query.
17716
17717 * image-mode.el (image-next-line): The line parameter is mandatory
17718 (bug#9258).
17719
17720 * dired.el (dired-sort-toggle-or-edit): Mention -o and -g, too,
17721 which can be useful (bug#9301).
17722
17723 * textmodes/flyspell.el: Remove obsolete comment (bug#9368).
17724
17725 * subr.el (match-string): Mention that the current buffer should
17726 be the same as the search was done in (bug#9282).
17727
17728 * facemenu.el: Disable the remove-* commands if the mark isn't
17729 active (bug#9162).
17730
17731 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
17732
17733 * buff-menu.el (Buffer-menu-switch-other-window): Use second arg
17734 of display-buffer.
17735 (Buffer-menu-2-window): Use switch-to-buffer-other-window.
17736
17737 * replace.el (occur-mode-goto-occurrence)
17738 (occur-mode-display-occurrence) Use second arg of pop-to-buffer
17739 and display-buffer.
17740
17741 * mail/reporter.el (reporter-submit-bug-report): Use second arg of
17742 display-buffer.
17743
17744 * mail/sendmail.el (sendmail-user-agent-compose): Don't bind the
17745 special-display and same-window variables.
17746 (mail-other-window): Use switch-to-buffer-other-window.
17747 (mail-other-frame): USe switch-to-buffer-other-frame.
17748
17749 * progmodes/gdb-mi.el (gdb-frame-gdb-buffer):
17750 Use display-buffer-other-frame.
17751 (gdb-display-gdb-buffer): Use pop-to-buffer.
17752
17753 * progmodes/gud.el (gud-goto-info): Use info-other-window.
17754
17755 * progmodes/python.el: Don't set same-window-buffer-names.
17756
17757 * textmodes/bibtex.el (bibtex-search-entry): Use switch-to-buffer.
17758
17759 * window.el (display-buffer-alist): Add *Python*.
17760
17761 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
17762
17763 * window.el (display-buffer-alist): Add entry for buffers
17764 previously handled same-window-*.
17765 (display-buffer-alist, display-buffer-default-action)
17766 (display-buffer-overriding-action): Mark as risky.
17767 (display-buffer-alist): Document action function changes.
17768 (display-buffer--same-window-action)
17769 (display-buffer--other-frame-action): New variables.
17770 (switch-to-buffer, display-buffer-other-frame): Use them.
17771 (display-buffer): Rename reuse-frame entry to reusable-frames.
17772 (display-buffer-reuse-selected-window): Function deleted.
17773 (display-buffer-reuse-window): Handle reusable-frames alist entry.
17774 If it's omitted, check pop-up-frames/display-buffer-reuse-frames.
17775 (display-buffer-special): New function.
17776 (display-buffer--maybe-pop-up-frame-or-window): Rename from
17777 display-buffer-reuse-or-pop-window. Split off special-display
17778 part into display-buffer-special.
17779 (display-buffer-use-some-window): Don't perform any special
17780 pop-up-frames handling.
17781 (pop-to-buffer): Use window-normalize-buffer-to-switch-to.
17782 (display-buffer--maybe-same-window): Rename from
17783 display-buffer-maybe-same-window.
17784
17785 * info.el: Don't set same-window-regexps.
17786 (info-setup): New function.
17787 (info-other-window, info): Call it.
17788
17789 * cus-edit.el: Don't set same-window-regexps.
17790 (customize-group): New argument.
17791 (customize-group-other-window): Use it.
17792 (customize-face, customize-face-other-window): Likewise.
17793 (custom-buffer-create-other-window): Use pop-to-buffer directly.
17794
17795 * net/rlogin.el:
17796 * net/telnet.el:
17797 * progmodes/gud.el: Don't set same-window-regexps.
17798
17799 * cmuscheme.el:
17800 * ielm.el:
17801 * shell.el:
17802 * mail/sendmail.el:
17803 * progmodes/inf-lisp.el: Don't set same-window-buffer-names.
17804
17805 2011-09-10 Juri Linkov <juri@jurta.org>
17806
17807 * isearch.el (isearch-edit-string): Remove obsolete mention of
17808 `C-w' (`isearch-yank-word-or-char') from docstring.
17809 (isearch-query-replace): Fix typo in docstring (bug#9466).
17810
17811 2011-09-10 Juri Linkov <juri@jurta.org>
17812
17813 * paren.el (show-paren-function): Don't show escaped parens.
17814 Let-bind `unescaped' to `t' when paren is not escaped. (Bug#9461)
17815
17816 2011-09-10 Eli Zaretskii <eliz@gnu.org>
17817
17818 * mail/sendmail.el (mml-to-mime, mml-attach-file)
17819 (mm-default-file-encoding): Remove autoload forms, they are
17820 replaced with autoload cookies in mml.el and mm-encode.el.
17821 (mail-add-attachment): New command.
17822 (mail-mode-map): Add a menu-bar item for mail-add-attachment.
17823 (mail-mode): Mention mail-insert-file and mail-add-attachment in
17824 the doc string.
17825 (mml-to-mime, mml-attach-file, mm-default-file-encoding): Declare.
17826
17827 2011-09-10 Reuben Thomas <rrt@sc3d.org>
17828
17829 * simple.el (count-words-region): Use buffer if there's no region
17830 (bug#9429).
17831
17832 2011-09-09 Juri Linkov <juri@jurta.org>
17833
17834 * wdired.el (wdired-change-to-wdired-mode): Set buffer-local
17835 `isearch-filter-predicate' to `wdired-isearch-filter-read-only'.
17836 (wdired-isearch-filter-read-only): New function. (Bug#6362)
17837
17838 2011-09-09 Alan Mackenzie <acm@muc.de>
17839
17840 * progmodes/cc-mode.el (awk-mode): Prevent `define-derived-mode'
17841 spuriously generating `awk-mode-syntax-table'. (Bug #9448).
17842
17843 2011-09-09 Eli Zaretskii <eliz@gnu.org>
17844
17845 Fix for Savannah bug#9392.
17846 * simple.el (mail-encode-mml): New defvar.
17847
17848 * mail/rmail.el (mail-encode-mml): Add a defvar.
17849 (rmail-enable-mime-composing): Default to t.
17850 (rmail-forward): Use MIME method of forwarding only if both
17851 rmail-enable-mime-composing and rmail-enable-mime are non-nil.
17852 Set mail-encode-mml non-nil if the MIME method was used.
17853
17854 * mail/sendmail.el (mml-to-mime): Add autoload form.
17855 (mail-encode-mml): Add a defvar.
17856 (mail-mode): Make mail-encode-mml buffer-local and initialize it
17857 to nil.
17858 (mail-send): If mail-encode-mml is non-nil, run the outgoing
17859 message through mml-to-mime, and reset mail-encode-mml to nil.
17860
17861 2011-09-09 Glenn Morris <rgm@gnu.org>
17862
17863 * woman.el (woman-if-body): When processing an .el block,
17864 do not delete the next .el block as well. (Bug#9447)
17865 (woman-special-characters): Add oq, cq, and hy characters.
17866
17867 2011-09-08 Martin Rudalics <rudalics@gmx.at>
17868
17869 * window.el (window-deletable-p): Make sure window is live before
17870 invoking window-prev-buffers.
17871
17872 2011-09-08 Leo Liu <sdl.web@gmail.com>
17873
17874 * net/rcirc.el (rcirc-cmd-invite): New rcirc command. (Bug#9453)
17875
17876 2011-09-08 Juri Linkov <juri@jurta.org>
17877
17878 * progmodes/compile.el (compilation-environment): Make it
17879 a defcustom (bug#8340).
17880
17881 2011-09-08 Martin Rudalics <rudalics@gmx.at>
17882
17883 * window.el (frame-auto-delete): Rename to window-auto-delete.
17884 Make it control auto-deletion of windows and/or frames.
17885 (window-deletable-p): New argument FORCE. Rewrite conditions
17886 for deleting window/frame. (Bug#9419)
17887 (switch-to-prev-buffer, replace-buffer-in-windows, quit-window):
17888 Rewrite handling of case when window/frame can be deleted.
17889 (delete-windows-on): Call window-deletable-p with new FORCE
17890 argument t. (Bug#9456)
17891
17892 2011-09-07 Chong Yidong <cyd@stupidchicken.com>
17893
17894 * help-mode.el (help-mode): Restore autoload.
17895
17896 2011-09-07 Juri Linkov <juri@jurta.org>
17897
17898 * progmodes/compile.el (compilation-start): Let-bind `thisenv' to
17899 `compilation-environment'. Set buffer-local
17900 `compilation-environment' to `thisenv' later after (funcall mode).
17901 (Bug#8340)
17902
17903 * vc/vc-git.el (vc-git-grep): Remove --no-color. (Bug#9408)
17904 (vc-git-grep): Prepend "PAGER=" to `compilation-environment'
17905 instead of replacing its value. (Bug#8340)
17906
17907 2011-09-07 Juri Linkov <juri@jurta.org>
17908
17909 * progmodes/grep.el (grep-regexp-alist): Calculate column positions
17910 based on text properties put by `grep-filter' instead of matching
17911 escape sequences.
17912 (grep-mode): Set buffer-local `compilation-error-screen-columns'
17913 to the value of `grep-error-screen-columns' (bug#9438).
17914
17915 2011-09-07 Juri Linkov <juri@jurta.org>
17916
17917 * simple.el (next-error-highlight, next-error-highlight-no-select):
17918 Doc fix (bug#9432).
17919
17920 2011-09-07 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
17921
17922 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
17923 Check for null c-opt-block-decls-with-vars-key. (Bug#9443)
17924
17925 2011-09-07 Leo Liu <sdl.web@gmail.com>
17926
17927 * net/rcirc.el (rcirc-mode): Conditionally initialize
17928 rcirc-input-ring.
17929
17930 2011-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
17931
17932 * emacs-lisp/find-func.el (find-function-C-source): Only set
17933 find-function-C-source-directory after checking that we found a source
17934 file there (bug#9440).
17935
17936 2011-09-06 Alan Mackenzie <acm@muc.de>
17937
17938 * isearch.el (isearch-other-meta-char): Wherever a key list is
17939 unread, "unread" the prefix arg, too. This fixes bug #8901.
17940
17941 2011-09-05 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
17942
17943 * progmodes/grep.el (rgrep): Add "-type d" (bug#9414).
17944
17945 2011-09-05 Juri Linkov <juri@jurta.org>
17946
17947 * progmodes/grep.el (grep-process-setup): Fix comments (bug#8084).
17948
17949 2011-09-05 Juri Linkov <juri@jurta.org>
17950
17951 * progmodes/grep.el (grep-filter): Avoid incomplete processing by
17952 keeping point where processing of grep matches begins, and
17953 continue to delete remaining escape sequences from the same point.
17954 (grep-filter): Make leading zero optional in "0?1;31m" because
17955 git-grep emits "\033[1;31m" escape sequences unlike expected
17956 "\033[01;31m" as GNU Grep does (bug#9408).
17957 (grep-process-setup): Replace obsolete "ml=" with newer "sl=".
17958
17959 2011-09-05 Juri Linkov <juri@jurta.org>
17960
17961 * subr.el (y-or-n-p): Capitalize "yes".
17962
17963 2011-09-04 Michael Albinus <michael.albinus@gmx.de>
17964
17965 * net/tramp.el (top): Require 'shell. Use `tramp-unload-hook' but
17966 `tramp-cache-unload-hook' where appropriate.
17967 (tramp-methods): Rename `tramp-remote-sh' to
17968 `tramp-remote-shell'. Add `tramp-remote-shell-args'.
17969 (tramp-handle-shell-command): New defun, moved from tramp-sh.el.
17970
17971 * net/tramp-sh.el (top): Don't require 'shell.
17972 (tramp-methods): Add `tramp-remote-shell' and
17973 `tramp-remote-shell-args' entries.
17974 (tramp-sh-file-name-handler-alist): Use `tramp-handle-shell-command'.
17975 (tramp-sh-handle-shell-command): Remove.
17976 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
17977 Use `tramp-remote-shell'.
17978
17979 2011-09-03 Chong Yidong <cyd@stupidchicken.com>
17980
17981 * mail/sendmail.el (sendmail-query-once-function): Delete.
17982 (sendmail-query-once): Save directly to send-mail-function.
17983 Update message-send-mail-function too.
17984
17985 * mail/smtpmail.el (smtpmail-try-auth-methods): Clarify prompt.
17986
17987 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
17988
17989 * progmodes/python.el (python-mode-map): Use correct function to
17990 start python interpreter from menu-bar (as reported by Geert
17991 Kloosterman).
17992 (inferior-python-mode-map): Fix typo.
17993 (python-shell-map): Remove.
17994
17995 2011-09-03 Deniz Dogan <deniz@dogan.se>
17996
17997 * net/rcirc.el (rcirc-print): Simplify code for
17998 rcirc-scroll-show-maximum-output. There is no need to walk
17999 through all windows to find the right one.
18000
18001 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
18002
18003 * help.el (help-return-method): Doc fix.
18004
18005 2011-09-03 Martin Rudalics <rudalics@gmx.at>
18006
18007 * window.el (window-deletable-p): Don't return a non-nil value
18008 when there's a buffer that was shown in the window before.
18009 (Bug#9419)
18010 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
18011 Set window's previous buffers to nil.
18012
18013 2011-09-03 Eli Zaretskii <eliz@gnu.org>
18014
18015 * mail/rmailmm.el (rmail-mime-insert-tagline): Insert an extra
18016 newline before and after the tag line, so it doesn't interfere
18017 with determining the paragraph direction of bidirectional text.
18018
18019 2011-09-03 Leo Liu <sdl.web@gmail.com>
18020
18021 * files.el (find-file-not-true-dirname-list): Remove. (Bug#9422)
18022
18023 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
18024
18025 * window.el (pop-to-buffer-1, pop-to-buffer-same-window): Delete.
18026 (pop-to-buffer): Change interactive spec. Pass second argument
18027 directly to display-buffer.
18028 (display-buffer): Fix interactive spec. Use functionp to
18029 distinguish between a function and a list of functions.
18030
18031 * abbrev.el (edit-abbrevs):
18032 * arc-mode.el (archive-extract):
18033 * autoinsert.el (auto-insert):
18034 * bookmark.el (bookmark-bmenu-list):
18035 * files.el (find-file):
18036 * view.el (view-buffer):
18037 * progmodes/compile.el (compilation-goto-locus):
18038 * textmodes/bibtex.el (bibtex-initialize): Use switch-to-buffer.
18039
18040 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
18041
18042 * window.el (display-buffer-alist): Doc fix.
18043 (display-buffer): Add docstring. Don't treat
18044 display-buffer-default specially.
18045 (display-buffer-reuse-selected-window)
18046 (display-buffer-same-window, display-buffer-maybe-same-window)
18047 (display-buffer-reuse-window, display-buffer-pop-up-frame)
18048 (display-buffer-pop-up-window)
18049 (display-buffer-reuse-or-pop-window)
18050 (display-buffer-use-some-window): New functions.
18051 (display-buffer-default-action): Use them.
18052 (display-buffer-default): Delete.
18053 (pop-to-buffer-1): Fix choice of actions.
18054
18055 2011-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
18056
18057 * minibuffer.el (completion--insert-strings): Don't get confused by
18058 completion entries that end with an LF char.
18059
18060 2011-09-01 Eli Zaretskii <eliz@gnu.org>
18061
18062 * window.el (frame-auto-delete, window-deletable-p): Doc fix.
18063
18064 2011-09-01 Chong Yidong <cyd@stupidchicken.com>
18065
18066 * window.el (display-buffer): Restore interactive spec.
18067 (display-buffer-same-window, display-buffer-other-window):
18068 New functions.
18069 (pop-to-buffer-1): New function. Use the above.
18070 (pop-to-buffer, pop-to-buffer-same-window): Use it.
18071 (pop-to-buffer-other-window, pop-to-buffer-other-frame): Delete.
18072
18073 * view.el (view-buffer-other-window, view-buffer-other-frame):
18074 Just use pop-to-buffer.
18075
18076 2011-09-01 Thierry Volpiatto <thierry.volpiatto@gmail.com>
18077
18078 * vc/vc-rcs.el (vc-rcs-responsible-p): Handle directories. (Bug#9391)
18079
18080 2011-09-01 Wilfred Hughes <wilfred@potatolondon.com> (tiny change)
18081
18082 * vc/vc-git.el (vc-git-grep): Use --no-color. (Bug#9408)
18083
18084 2011-08-31 Richard Stallman <rms@gnu.org>
18085
18086 * mail/rmail.el (rmail-epa-decrypt): Rewrite to take account
18087 of the separation of rmail-view-buffer from rmail-buffer.
18088 If you say no to "replace original", the decrypt is in the
18089 view buffer. If you say yes, the decrypt goes into the
18090 rmail buffer also.
18091
18092 2011-08-31 Martin Rudalics <rudalics@gmx.at>
18093
18094 * window.el (display-buffer-window): Rewrite doc-string.
18095 (display-buffer-record-window): New function.
18096 (display-buffer-macro-specifiers)
18097 (display-buffer-even-window-sizes, display-buffer-set-height)
18098 (display-buffer-set-width, display-buffer-in-window)
18099 (display-buffer-reuse-window, display-buffer-split-specifiers)
18100 (display-buffer-side-specifiers, display-buffer-split-window-1)
18101 (display-buffer-split-window, display-buffer-split-atom-window)
18102 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
18103 (display-buffer-pop-up-side-window, display-buffer-in-side-window)
18104 (display-buffer-other-window-means-other-frame)
18105 (display-buffer-normalize-special)
18106 (display-buffer-normalize-default)
18107 (display-buffer-normalize-argument)
18108 (display-buffer-normalize-alist-1, display-buffer-normalize-alist)
18109 (display-buffer-normalize-specifiers, display-buffer-frame)
18110 (display-buffer-same-window, display-buffer-same-frame)
18111 (display-buffer-other-window)
18112 (display-buffer-same-frame-other-window)
18113 (display-buffer-other-frame, pop-to-buffer-same-window)
18114 (pop-to-buffer-same-frame, pop-to-buffer-other-window)
18115 (pop-to-buffer-same-frame-other-window, pop-to-buffer-other-frame)
18116 (switch-to-buffer-same-frame)
18117 (switch-to-buffer-other-window-same-frame)
18118 (display-buffer-alist-of-strings-p, display-buffer-alist-add)
18119 (display-buffer-alist-set-1, display-buffer-alist-set-2)
18120 (display-buffer-alist-set): Remove.
18121 (display-buffer-function, special-display-buffer-names)
18122 (special-display-regexps, special-display-function):
18123 In doc-string refer to display-buffer-window and quit-restore
18124 parameter.
18125 (pop-up-frame-alist, pop-up-frame-function, special-display-p)
18126 (special-display-frame-alist, special-display-popup-frame)
18127 (same-window-buffer-names, same-window-regexps, same-window-p)
18128 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
18129 (split-window-preferred-function, split-height-threshold)
18130 (split-width-threshold, window-splittable-p)
18131 (split-window-sensibly, window--try-to-split-window)
18132 (window--frame-usable-p, even-window-heights)
18133 (window--even-window-heights, window--display-buffer-1)
18134 (window--display-buffer-2, display-buffer-other-frame):
18135 Restore old Emacs 23 code, order and doc-strings where applicable.
18136 (display-buffer-default, display-buffer-assq-regexp): New functions.
18137 (display-buffer-alist): Rewrite doc-string.
18138 (display-buffer-default-action)
18139 (display-buffer-overriding-action): New variables.
18140 (display-buffer, switch-to-buffer): Rewrite.
18141 (pop-to-buffer): Restore Emacs 23 behavior but use
18142 window-normalize-buffer-to-display.
18143 (switch-to-buffer-other-window, switch-to-buffer-other-frame):
18144 Restore Emacs 23 behavior but use
18145 window-normalize-buffer-to-switch-to.
18146 (pop-to-buffer-same-window): Rewrite.
18147 (pop-to-buffer-other-window, pop-to-buffer-other-frame):
18148 Rewrite using Emacs 23 options.
18149
18150 2011-08-31 Michael Albinus <michael.albinus@gmx.de>
18151
18152 * net/tramp.el (tramp-root-regexp): Remove.
18153 (tramp-completion-file-name-regexp-unified)
18154 (tramp-completion-file-name-regexp-separate)
18155 (tramp-completion-file-name-regexp-url): Don't use leading volume
18156 letter on w32 systems. (Bug#5303, Bug#9311)
18157 (tramp-drop-volume-letter): Simplify definition.
18158 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
18159
18160 2011-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
18161
18162 * subr.el (event-modifiers): Fix "missing modifier" part of docstring
18163 (bug#9356).
18164
18165 2011-08-30 Reuben Thomas <rrt@sc3d.org> (tiny change)
18166
18167 * vc/pcvs-defs.el (cvs-find-file-and-jump): Docstring typo (bug#9369).
18168
18169 2011-08-29 Juri Linkov <juri@jurta.org>
18170
18171 * isearch.el (isearch-done): Don't display message "Mark saved"
18172 when arg `edit' is non-nil to prevent its flicker in the echo area.
18173
18174 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
18175
18176 * emacs-lisp/package.el (package-menu-mark-delete): Allow marking
18177 obsolete packages for deletion.
18178
18179 2011-08-28 Christoph Scholtes <cschol2112@googlemail.com>
18180
18181 * help-mode.el (help-mode-map): Add special-mode-map to parent.
18182 (help-mode): Derive help-mode from special-mode. Don't invoke
18183 view-mode from help-mode.
18184 (help-xref-override-view-map): Remove.
18185 (help-make-xrefs): Remove minor-mode-overriding-map-alist since
18186 view-mode is not used anymore.
18187
18188 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
18189
18190 * server.el (server-port): Doc fix.
18191
18192 * cus-theme.el (custom-theme-choose-mode): Inherit from
18193 special-mode (Bug#9124).
18194 (custom-theme-choose-mode-map): Add special-mode to parent.
18195
18196 2011-08-28 Alan Mackenzie <acm@muc.de>
18197
18198 * progmodes/cc-fonts.el
18199 (c-make-font-lock-BO-decl-search-function): New function.
18200 (c-basic-matchers-after - "Fontify the clauses after various
18201 keywords"): Extract the three keyword lists for the 3 erroneous
18202 constructs from the list of four, and use the new function above
18203 in place of an old one.
18204
18205 2011-08-28 Deniz Dogan <deniz@dogan.se>
18206
18207 * net/rcirc.el (rcirc-insert-prev-input)
18208 (rcirc-insert-next-input): Remove unused argument.
18209
18210 2011-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
18211
18212 * shell.el (shell-parse-pcomplete-arguments): Unquote args (bug#9160).
18213
18214 2011-08-27 Alan Mackenzie <acm@muc.de>
18215
18216 * progmodes/cc-menus.el (cc-imenu-c++-generic-expression): Make it
18217 handle function pointer parameters properly.
18218
18219 2011-08-27 Martin Rudalics <rudalics@gmx.at>
18220
18221 * window.el (display-buffer-reuse-window): Fix case where
18222 selected window was reused with non-nil OTHER-WINDOW argument.
18223 (Bug#9381)
18224
18225 2011-08-27 Deniz Dogan <deniz@dogan.se>
18226
18227 * net/rcirc.el (rcirc-check-auth-status): Adding support for
18228 oftc's NickServ messages.
18229
18230 2011-08-27 Glenn Morris <rgm@gnu.org>
18231
18232 * saveplace.el (save-place-limit): Make it finite. (Bug#9352)
18233
18234 2011-08-26 Chong Yidong <cyd@stupidchicken.com>
18235
18236 * emacs-lisp/package.el (package-install): Call package-initialize
18237 if called interactively.
18238
18239 2011-08-26 Leo Liu <sdl.web@gmail.com>
18240
18241 * emacs-lisp/cl-macs.el (defstruct): Fix format. (Bug#9357)
18242
18243 2011-08-25 Juri Linkov <juri@jurta.org>
18244
18245 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
18246 `search-whitespace-regexp' (bug#9364).
18247
18248 2011-08-25 Juri Linkov <juri@jurta.org>
18249
18250 * isearch.el (isearch-edit-string): Let-bind `search-ring' and
18251 `regexp-search-ring' to their global values to protect from
18252 updating by `read-from-minibuffer' (bug#9185).
18253
18254 2011-08-25 Juri Linkov <juri@jurta.org>
18255
18256 * textmodes/ispell.el (ispell-command-loop): Add newline
18257 at the end of the "Use option `i'..." line.
18258
18259 2011-08-25 Juri Linkov <juri@jurta.org>
18260
18261 * battery.el (display-battery-mode): If `battery-status-function'
18262 or `battery-mode-line-format' is nil, display the message and set
18263 `display-battery-mode' to nil (bug#9363).
18264
18265 2011-08-25 Eli Zaretskii <eliz@gnu.org>
18266
18267 * buff-menu.el (Buffer-menu-buffer+size): Remove calls to
18268 bidi-string-mark-left-to-right; they are unnecessary now.
18269
18270 2011-08-25 Deniz Dogan <deniz@dogan.se>
18271
18272 * net/quickurl.el: Documentation typo fixes.
18273
18274 2011-08-25 Chong Yidong <cyd@stupidchicken.com>
18275
18276 * window.el (bury-buffer, quit-window): Use bury-buffer-internal.
18277
18278 2011-08-25 Glenn Morris <rgm@gnu.org>
18279
18280 * emacs-lisp/derived.el (define-derived-mode): Doc fix.
18281
18282 * mail/smtpmail.el (smtpmail-smtp-user): Add version: tag.
18283 (smtpmail-via-smtp): Handle nil response from smtp.
18284
18285 2011-08-24 Juri Linkov <juri@jurta.org>
18286
18287 * proced.el (proced-marked): Inherit from `error' instead of
18288 `font-lock-warning-face'.
18289
18290 * ibuffer.el (ibuffer-marked-face): Change default face from
18291 `font-lock-warning-face' to `warning'.
18292 (ibuffer-deletion-face): Change default face from
18293 `font-lock-type-face' to `error'.
18294
18295 * battery.el (battery-update): Use the face `error' instead of
18296 `font-lock-warning-face' (bug#6117).
18297
18298 2011-08-24 Juri Linkov <juri@jurta.org>
18299
18300 * faces.el (success): Change face color from "Green3" to
18301 "ForestGreen" on light background (bug#9353).
18302
18303 2011-08-24 Chong Yidong <cyd@stupidchicken.com>
18304
18305 * window.el (quit-window): Rename from quit-restore-window.
18306 Use same arglist as old quit-window.
18307 (frame-auto-delete): Doc fix.
18308
18309 * view.el (view-mode-exit): Use quit-window.
18310
18311 2011-08-24 Juri Linkov <juri@jurta.org>
18312
18313 * isearch.el (isearch-ring-adjust1): Start visiting previous
18314 search strings from the index 0 (-1 + 1) instead of 1 (0 + 1).
18315 (isearch-repeat, isearch-edit-string): Call `isearch-ring-adjust1'
18316 for empty search string (when the last search string is reused
18317 automatically) to adjust the isearch ring to the last element and
18318 prepare the correct index for further M-p commands (bug#9185).
18319
18320 2011-08-24 Kenichi Handa <handa@m17n.org>
18321
18322 * international/ucs-normalize.el: If decomposition property of
18323 CHAR is the default one (i.e. a list of CHAR itself), treat it as
18324 nil.
18325 (nfd, nfkd): Likewise.
18326
18327 2011-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
18328
18329 * mpc.el (mpc--proc-filter): Don't signal mpc-proc-error since signals
18330 from process filters aren't reliably transmitted to the surrounding
18331 accept-process-output.
18332 (mpc-proc-check): New function.
18333 (mpc-proc-sync): Use it (bug#8293)
18334
18335 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
18336
18337 * emacs-lisp/eieio.el (eieio-defmethod, eieio-defgeneric):
18338 Add compatibility functions (bug#9313).
18339
18340 2011-08-23 Eli Zaretskii <eliz@gnu.org>
18341
18342 * cus-start.el (all): Add entry for bidi-paragraph-direction.
18343
18344 * international/uni-bidi.el: Regenerate.
18345
18346 2011-08-23 Kenichi Handa <handa@m17n.org>
18347
18348 * international/charprop.el:
18349 * international/uni-bidi.el:
18350 * international/uni-category.el:
18351 * international/uni-combining.el:
18352 * international/uni-comment.el:
18353 * international/uni-decimal.el:
18354 * international/uni-decomposition.el:
18355 * international/uni-digit.el:
18356 * international/uni-lowercase.el:
18357 * international/uni-mirrored.el:
18358 * international/uni-name.el:
18359 * international/uni-numeric.el:
18360 * international/uni-old-name.el:
18361 * international/uni-titlecase.el:
18362 * international/uni-uppercase.el: Regenerate.
18363
18364 2011-08-23 Martin Rudalics <rudalics@gmx.at>
18365
18366 * help.el (help-window-setup): Fix message displayed when other
18367 window is reused. (Bug#9341)
18368
18369 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
18370
18371 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list.
18372 * pcomplete.el (pcomplete-quote-argument): Fix thinko (bug#9161).
18373
18374 * pcomplete.el (pcomplete-parse-comint-arguments): Fix inf-loop.
18375 Mark obsolete.
18376 * shell.el (shell-parse-pcomplete-arguments): New function.
18377 (shell-completion-vars): Use it instead (bug#9160).
18378
18379 2011-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
18380
18381 * progmodes/sh-script.el (sh-maybe-here-document): Disable magic in
18382 strings and comments (bug#9333).
18383
18384 * emacs-lisp/debug.el (debug-arglist): New function.
18385 (debug-convert-byte-code): Use it. Handle lexical byte-codes.
18386 (debug-on-entry-1): Handle interpreted closures (bug#9120).
18387
18388 2011-08-22 Juri Linkov <juri@jurta.org>
18389
18390 * progmodes/compile.el (compilation-mode-font-lock-keywords):
18391 Revert regexp that highlights output switches to its old
18392 pre-2010-10-28 value and remove one `?' from it (bug#9319).
18393
18394 * progmodes/grep.el (grep-process-setup): Use `buffer-modified-p'
18395 to check for empty output (bug#9226).
18396
18397 2011-08-22 Chong Yidong <cyd@stupidchicken.com>
18398
18399 * progmodes/scheme.el (scheme-mode-syntax-table): Don't use
18400 symbol-constituent as the default, as that stops font-lock from
18401 working properly (Bug#8843).
18402
18403 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
18404
18405 * mail/smtpmail.el (smtpmail-via-smtp): Only bind
18406 `coding-system-for-*' around the process open call to avoid
18407 auth-source side effects.
18408 (smtpmail-try-auth-methods): Expand the secret password.
18409 (smtpmail-query-smtp-server): Allow `quit'-ing out in case the
18410 probe hangs.
18411
18412 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
18413
18414 * term.el (term-mouse-paste): Yank primary selection (Bug#6845).
18415
18416 * emacs-lisp/find-func.el (find-function-noselect): New arg
18417 lisp-only.
18418
18419 * emacs-lisp/edebug.el (edebug-instrument-function): Use it to
18420 signal an error for built-in functions (Bug#6664).
18421
18422 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
18423
18424 * mail/smtpmail.el (smtpmail-smtp-user): New variable.
18425 (smtpmail-try-auth-methods): Use it.
18426
18427 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
18428
18429 * font-lock.el (font-lock-fontify-region)
18430 (font-lock-unfontify-region, font-lock-default-fontify-buffer)
18431 (font-lock-default-unfontify-buffer)
18432 (font-lock-default-fontify-region)
18433 (font-lock-default-unfontify-region): Add docstrings (Bug#8624).
18434
18435 * progmodes/compile.el (compilation-error-properties):
18436 Fix confusion between file struct and message struct (Bug#9319).
18437 (compilation-error-regexp-alist-alist): Fix 2011-05-09 change to
18438 `ant' regexp.
18439
18440 * net/browse-url.el (browse-url-firefox): Don't call
18441 browse-url-firefox-sentinel unless using -remote (Bug#9328).
18442
18443 2011-08-20 Glenn Morris <rgm@gnu.org>
18444
18445 * tutorial.el (help-with-tutorial): Avoid an error on short screens.
18446
18447 * tutorial.el (tutorial--default-keys): Update some default bindings.
18448
18449 * files.el (hack-local-variables): Fully ignore case for "mode:".
18450
18451 2011-08-20 Alan Mackenzie <acm@muc.de>
18452
18453 Resolve invalid use of a regexp in regexp-opt.
18454
18455 * progmodes/cc-fonts.el (c-complex-decl-matchers): Add in special
18456 detection for a java annotation.
18457
18458 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Add in special
18459 detection for a java annotation.
18460
18461 * progmodes/cc-langs.el (c-prefix-spec-kwds-re): Remove the special
18462 handling for java.
18463 (c-modifier-kwds): Remove the regexp "@[A-za-z0-9]+".
18464
18465 2011-08-20 Chong Yidong <cyd@stupidchicken.com>
18466
18467 * startup.el (normal-top-level-add-subdirs-to-load-path): Doc fix
18468 (Bug#9274).
18469
18470 2011-08-20 Alan Mackenzie <acm@muc.de>
18471
18472 Fontify CPP expressions correctly when starting in the middle of
18473 such a construct. Mainly for when jit-lock etc. starts a chunk
18474 here.
18475
18476 * progmodes/cc-fonts.el (c-font-lock-context): New buffer local
18477 variable.
18478 (c-make-font-lock-search-form): New function, extracted from
18479 c-make-font-lock-search-function.
18480 (c-make-font-lock-search-function): Use the above function.
18481 (c-make-font-lock-context-search-function): New function.
18482 (c-cpp-matchers): Enhance the preprocessor expression case with
18483 the above function
18484 (c-font-lock-complex-decl-prepare): Test for being in a CPP form
18485 which takes an expression.
18486
18487 * progmodes/cc-langs.el (c-cpp-expr-intro-re): New lang-variable.
18488
18489 2011-08-20 Martin Rudalics <rudalics@gmx.at>
18490
18491 * window.el (display-buffer-reuse-window)
18492 (display-buffer-pop-up-window): Don't reuse or split a side
18493 window.
18494
18495 2011-08-19 Glenn Morris <rgm@gnu.org>
18496
18497 * files.el (hack-local-variables-prop-line, hack-local-variables):
18498 Downcase "Mode:". (Bug#9331)
18499
18500 2011-08-18 Chong Yidong <cyd@stupidchicken.com>
18501
18502 * international/characters.el: Add L and R categories.
18503
18504 * subr.el (bidi-string-mark-left-to-right): Rename from
18505 string-mark-left-to-right. Use category search.
18506
18507 * buff-menu.el (Buffer-menu-buffer+size): Callers changed.
18508
18509 2011-08-18 Juri Linkov <juri@jurta.org>
18510
18511 * faces.el (error, warning, success): New faces with definitions
18512 copied from old default values of `font-lock-warning-face',
18513 `compilation-warning', `compilation-info' (bug#6117).
18514
18515 * font-lock.el (font-lock-warning-face): Inherit from `error'.
18516
18517 * progmodes/compile.el (compilation-error): Inherit from `error'.
18518 (compilation-warning): Inherit from `warning'.
18519 (compilation-info): Inherit from `success'.
18520
18521 * dired.el (dired-marked): Inherit from `warning'.
18522 (dired-flagged): Inherit from `error'.
18523
18524 2011-08-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
18525
18526 * mail/smtpmail.el (auth-source): Require to avoid problems with
18527 binding variables (bug#9298). Also clean up some unused
18528 autoloads.
18529
18530 * net/network-stream.el (network-stream-open-starttls):
18531 Support using starttls.el without using gnutls-cli.
18532
18533 2011-08-17 Juri Linkov <juri@jurta.org>
18534
18535 * progmodes/grep.el (rgrep): Handle the case when
18536 `grep-find-command' is a cons cell (bug#9278).
18537
18538 2011-08-17 Martin Rudalics <rudalics@gmx.at>
18539
18540 * window.el (display-buffer-pop-up-frame): Run frame creation
18541 function with BUFFER current (as special-display-popup-frame
18542 does). Reported by Drew Adams.
18543
18544 2011-08-17 Daiki Ueno <ueno@unixuser.org>
18545
18546 * epa-mail.el: Simplify GnuPG group expansion using
18547 epg-expand-group.
18548 (epa-mail-group-alist, epa-mail-group-modtime)
18549 (epa-mail-gnupg-conf-file, epa-mail-parse-groups)
18550 (epa-mail-sync-groups, epa-mail-expand-recipient-1)
18551 (epa-mail-expand-recipients-2, epa-mail-expand-recipients):
18552 Remove.
18553
18554 2011-08-16 Feng Li <fengli@gmail.com> (tiny change)
18555
18556 * calc/calc-ext.el (math-defintegral-2): Remove nested backquote.
18557
18558 2011-08-16 Alan Mackenzie <acm@muc.de>
18559
18560 * progmodes/cc-engine.el (c-state-cache-non-literal-place):
18561 Correct, to avoid the inside of macros.
18562
18563 2011-08-16 Richard Stallman <rms@gnu.org>
18564
18565 * epa-mail.el: Handle GnuPG group definitions.
18566 (epa-mail-group-alist, epa-mail-group-modtime)
18567 (epa-mail-gnupg-conf-file): New variables.
18568 (epa-mail-parse-groups, epa-mail-sync-groups)
18569 (epa-mail-expand-recipient-1, epa-mail-expand-recipients-2)
18570 (epa-mail-expand-recipients): New functions.
18571 (epa-mail-encrypt): Call epa-mail-expand-recipients.
18572
18573 * mail/rmail.el (rmail-epa-decrypt): New command.
18574
18575 * epa.el (epa-decrypt-region): New arg MAKE-BUFFER-FUNCTION.
18576 Don't bind buffer-read-only, just inhibit-read-only.
18577 (epa--find-coding-system-for-mime-charset): Fix the non-xemacs case.
18578 (epa-decrypt-armor-in-region): Make error message clearer.
18579
18580 2011-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
18581
18582 * minibuffer.el (completion-pcm--merge-completions): Don't merge "a1b"
18583 and "a2b" to "ab" for `prefix'.
18584
18585 2011-08-14 Chong Yidong <cyd@stupidchicken.com>
18586
18587 * ibuf-ext.el (ibuffer-filter-disable): New arg for deleting
18588 filter groups.
18589 (ibuffer-included-in-filter-p-1): Use it. Suggested by Rafaël
18590 Fourquet (Bug#8804).
18591
18592 2011-08-12 Juanma Barranquero <lekktu@gmail.com>
18593
18594 * startup.el (argi): Declare as global variable (bug#9275).
18595
18596 2011-08-12 Chong Yidong <cyd@stupidchicken.com>
18597
18598 * subr.el (string-mark-left-to-right): Search the entire string
18599 for RTL script, not just the terminating character. Doc fix.
18600
18601 2011-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
18602
18603 * progmodes/js.el (js-syntax-propertize, js-syntax-propertize-regexp):
18604 New function.
18605 (js--regexp-literal, js-syntax-propertize-function): Remove.
18606 (js-mode): Use js-syntax-propertize to handle multilines (bug#9183).
18607 (js-mode-map): Don't rebind electric keys.
18608 (js-insert-and-indent): Remove.
18609 (js-mode): Setup electric-layout and electric-indent instead.
18610
18611 * epa-file.el (epa-file-select-keys): Revert to nil default (bug#9280).
18612
18613 2011-08-12 Daiki Ueno <ueno@unixuser.org>
18614
18615 * epa.el (epa-progress-callback-function): Fix the logic of
18616 displaying progress.
18617 * epa-file.el (epa-file-insert-file-contents): Make progress
18618 display more user-friendly.
18619 (epa-file-write-region): Ditto.
18620
18621 2011-08-10 Chong Yidong <cyd@stupidchicken.com>
18622
18623 * subr.el (string-mark-left-to-right): New function.
18624
18625 * buff-menu.el (Buffer-menu-buffer+size): Remove LRM argument.
18626 Use string-mark-left-to-right.
18627 (list-buffers-noselect): Caller changed.
18628
18629 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
18630 Use string-mark-left-to-right.
18631 (tabulated-list-print): Recenter after moving point.
18632
18633 2011-08-10 Juri Linkov <juri@jurta.org>
18634
18635 * progmodes/grep.el (rgrep): Don't bind `process-connection-type'.
18636 This finishes incomplete reversion of 2011-06-30T01:09:13Z!larsi@gnus.org
18637 intended by 2011-07-06T15:49:19Z!larsi@gnus.org.
18638
18639 2011-08-09 Chong Yidong <cyd@stupidchicken.com>
18640
18641 * hi-lock.el (hi-lock-unface-buffer): Fix interactive spec
18642 (Bug#7554).
18643
18644 2011-08-09 Andreas Schwab <schwab@linux-m68k.org>
18645
18646 * xt-mouse.el (xterm-mouse-event-read): Try to recover the raw
18647 character. (Bug#6594)
18648
18649 2011-08-08 Chong Yidong <cyd@stupidchicken.com>
18650
18651 * image-dired.el: Don't use find-file for temporary work (Bug#7895).
18652 (image-dired--with-db-file): New macro.
18653 (image-dired-write-tags, image-dired-remove-tag)
18654 (image-dired-create-gallery-lists, image-dired-write-comments)
18655 (image-dired-get-comment, image-dired-mark-tagged-files)
18656 (image-dired-list-tags, image-dired-gallery-generate): Use it.
18657 (image-dired-gallery-generate): Use insert-file-contents.
18658
18659 * time.el (display-time-world-list, display-time-world-display):
18660 * time-stamp.el (time-stamp-string):
18661 * vc/add-log.el (add-change-log-entry): Use setenv instead of
18662 set-time-zone-rule (Bug#7337).
18663
18664 2011-08-08 Daiki Ueno <ueno@unixuser.org>
18665
18666 * epg.el (epg--status-KEYEXPIRED, epg--status-KEYREVOKED): Fix typo.
18667 (epg-error-to-string, epg-errors-to-string): New function.
18668 (epg-wait-for-completion): Reverse errors list.
18669 (epg--check-error-for-decrypt, epg-sign-file, epg-sign-string)
18670 (epg-encrypt-file, epg-encrypt-string, epg-export-keys-to-file)
18671 (epg--import-keys-1, epg-receive-keys, epg-delete-keys)
18672 (epg-sign-keys, epg-generate-key-from-file)
18673 (epg-generate-key-from-string): Format errors by using
18674 epg-errors-to-string (bug#9255).
18675 (epg--status-INV_SGNR, epg--status-NO_SGNR): New status handler.
18676
18677 2011-08-07 Juri Linkov <juri@jurta.org>
18678
18679 * faces.el (list-faces-display): Remove extra angle bracket
18680 from `help-mode-map'.
18681
18682 * info.el (Info-history-toc-nodes): Doc fix.
18683
18684 * longlines.el (longlines-mode): Doc fix.
18685
18686 2011-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
18687
18688 * progmodes/js.el (js--regexp-literal): Accept regexps at the beginning
18689 of statements and in a few more cases (bug#9183).
18690
18691 * emacs-lisp/cl-macs.el (cl--make-usage-var, cl--make-usage-args):
18692 New functions.
18693 (cl-transform-lambda): Use them (bug#9239).
18694
18695 2011-08-05 Martin Rudalics <rudalics@gmx.at>
18696
18697 * window.el (display-buffer-same-window)
18698 (display-buffer-same-frame, display-buffer-other-window)
18699 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
18700 (pop-to-buffer-other-window)
18701 (pop-to-buffer-same-frame-other-window)
18702 (pop-to-buffer-other-frame): Make them defuns.
18703 (switch-to-buffer): Don't set LABEL argument of pop-to-buffer.
18704
18705 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
18706
18707 * subr.el (make-composed-keymap): Move from C. Change calling
18708 convention, and improve docstring to bring attention to a subtle point.
18709 * minibuffer.el (completing-read-default): Adjust accordingly.
18710
18711 2011-08-03 Michael Albinus <michael.albinus@gmx.de>
18712
18713 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
18714 (tramp-open-shell): Use `tramp-shell-quote-argument'.
18715
18716 * net/trampver.el: Update release number.
18717
18718 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
18719
18720 * progmodes/sh-script.el (sh-font-lock-paren): Don't mistake "main" for
18721 "in" (bug#9190).
18722
18723 2011-08-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
18724
18725 * mail/sendmail.el (sendmail-query-once): Restore the current
18726 buffer after querying (bug#9074).
18727
18728 * dired.el (dired-flagged): Use different faces for marked and
18729 flagged files (bug#6117).
18730
18731 * emacs-lisp/cl-macs.el (dolist): Mention that there's a nil block
18732 (bug#4433).
18733
18734 * ido.el (ido-mode): Switch off the message if called
18735 non-interactively.
18736
18737 * mail/smtpmail.el (smtpmail-query-smtp-server): Try port 25
18738 before 587, since it appears that that's more likely to work for
18739 more people.
18740
18741 * cus-edit.el (custom-file): When running under emacs -q, always
18742 refuse to save the customizations, even if the .emacs file doesn't
18743 exist.
18744
18745 * info.el: Remove the `Info-beginning-of-buffer' function
18746 (bug#8325).
18747
18748 * net/network-stream.el (network-stream-open-starttls):
18749 Use `starttls-available-p' to see whether starttls.el can be used.
18750
18751 2011-08-01 Martin Rudalics <rudalics@gmx.at>
18752
18753 * window.el (display-buffer-in-window): Don't set dedicated status
18754 of window here (Bug#9215).
18755 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
18756 (display-buffer-pop-up-side-window)
18757 (display-buffer-in-side-window): Set dedicated status of window here.
18758
18759 2011-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
18760
18761 * emacs-lisp/package.el (package-generate-autoloads): Load autoloads
18762 before binding generated-autoload-file.
18763
18764 2011-08-01 Deniz Dogan <deniz@dogan.se>
18765
18766 * net/rcirc.el (rcirc-handler-333): Clarify docstring.
18767
18768 2011-07-30 Michael Albinus <michael.albinus@gmx.de>
18769
18770 Sync with Tramp 2.2.2.
18771
18772 * net/trampver.el: Update release number.
18773
18774 2011-07-30 Juri Linkov <juri@jurta.org>
18775
18776 * dired-aux.el (dired-touch-initial): Remove function.
18777 (dired-do-chxxx): For op-symbol `touch', set `initial' to the
18778 current time, and `default' to the last modification time of the
18779 current marked file (bug#6887).
18780
18781 2011-07-28 Jose E. Marchesi <jemarch@gnu.org>
18782
18783 * simple.el (goto-line): Use string-to-number to provide a
18784 numeric argument to read-number (bug#9163).
18785
18786 2011-07-27 Michael Albinus <michael.albinus@gmx.de>
18787
18788 * net/tramp-sh.el (tramp-maybe-send-script): Don't let-bind the
18789 connection process, it could be nil.
18790
18791 2011-07-27 Leo Liu <sdl.web@gmail.com>
18792
18793 Simplify url handling in rcirc-mode.
18794
18795 * net/rcirc.el (rcirc-browse-url-map, rcirc-browse-url-at-point)
18796 (rcirc-browse-url-at-mouse): Remove.
18797 * net/rcirc.el (rcirc-markup-urls): Use `make-button'.
18798
18799 2011-07-26 Alan Mackenzie <acm@muc.de>
18800
18801 Fontify bitfield declarations properly.
18802
18803 * progmodes/cc-langs.el (c-has-bitfields): New lang variable.
18804 (c-symbol-chars): Now exported as a lang variable.
18805 (c-not-primitive-type-keywords): New lang variable.
18806
18807 * progmodes/cc-fonts.el (c-font-lock-declarations): Jump over the
18808 QT keyword "more" to prevent "more slots: ...." being spuriously
18809 parsed as a bitfield declaration.
18810
18811 * progmodes/cc-engine.el (c-beginning-of-statement-1):
18812 Refactor and enhance to handle bitfield declarations.
18813 (c-punctuation-in): New function.
18814 (c-forward-decl-or-cast-1): Enhance CASE 3 to handle bitfield
18815 declarations properly.
18816
18817 2011-07-26 Ulf Jasper <ulf.jasper@web.de>
18818
18819 * calendar/icalendar.el (icalendar--all-events): Take care of
18820 multiple vcalendars in a single file.
18821 (icalendar--convert-float-to-ical): Checkdoc fixes.
18822
18823 2011-07-25 Deniz Dogan <deniz@dogan.se>
18824
18825 * image.el (insert-image): Clarifying docstring.
18826
18827 2011-07-24 Michael Albinus <michael.albinus@gmx.de>
18828
18829 * net/tramp-sh.el (tramp-barf-unless-okay): Return the value of
18830 `tramp-send-command-and-check' if there is no error.
18831 (tramp-send-command-and-read): Suppress *all* errors if NOERROR.
18832
18833 2011-07-22 Alan Mackenzie <acm@muc.de>
18834
18835 Prevent cc-langs.elc being loaded at run time.
18836
18837 * progmodes/cc-mode.el: Remove two autoload forms which loaded
18838 cc-langs.
18839
18840 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Don't emit
18841 "(require 'cc-langs)". Quote a form so it will evaluate at
18842 (cc-mode's) compilation time.
18843
18844 2011-07-22 Michael Albinus <michael.albinus@gmx.de>
18845
18846 * net/tramp.el (tramp-file-name-handler): Avoid recursive
18847 loading. (Bug#9114)
18848
18849 2011-07-21 Martin Rudalics <rudalics@gmx.at>
18850
18851 * window.el (display-buffer-pop-up-window)
18852 (display-buffer-pop-up-side-window)
18853 (display-buffer-in-side-window): Call display-buffer-set-height
18854 and display-buffer-set-width after setting the new window's
18855 buffer so `fit-window-to-buffer' and friends work on the right buffer.
18856
18857 2011-07-20 Sam Steingold <sds@gnu.org>
18858
18859 * progmodes/etags.el (etags-file-of-tag, etags-tags-table-files)
18860 (etags-tags-included-tables): Call `convert-standard-filename' on
18861 the file names contained in TAGS so that windows Emacs can handle
18862 TAGS files created by cygwin ctags.
18863
18864 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
18865
18866 * proced.el (proced-update): Revert yesterday's bug#1779 patch,
18867 which apparently didn't work.
18868
18869 2011-07-19 Roland Winkler <winkler@gnu.org>
18870
18871 * proced.el (proced-send-signal): For *Marked Processes* buffer
18872 put point at beginning of buffer.
18873
18874 2011-07-19 Stephen Berman <stephen.berman@gmx.net>
18875
18876 * proced.el (proced-format): Make header lines align with the text
18877 (bug#1779).
18878
18879 2011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
18880
18881 * view.el (view-buffer): Allow running in `special' modes if we're
18882 visiting a file (bug#8615).
18883
18884 2011-07-19 Martin Rudalics <rudalics@gmx.at>
18885
18886 * window.el (display-buffer-alist-of-strings-p)
18887 (display-buffer-alist-set-1, display-buffer-alist-set-2):
18888 New functions.
18889 (display-buffer-alist-set): Rewrite to handle Emacs 23 options
18890 more accurately.
18891
18892 2011-07-18 Alan Mackenzie <acm@muc.de>
18893
18894 Fontify declarators properly when, e.g., a jit-lock chunk begins
18895 inside a declaration.
18896
18897 * progmodes/cc-langs.el (c-symbol-chars): Correct a typo.
18898
18899 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
18900 New function.
18901 (c-complex-decl-matchers): Insert reference to
18902 c-font-lock-enclosing-decls.
18903
18904 * progmodes/cc-engine.el (c-backward-single-comment):
18905 (c-backward-comments): Bind open-paren-in-column-0-is-defun-start
18906 to nil around calls to (forward-comment -1).
18907
18908 2011-07-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
18909
18910 * image.el (put-image): Doc typo fix.
18911
18912 * progmodes/etags.el (tags-search): Doc typo fix.
18913
18914 * mail/smtpmail.el (smtpmail-via-smtp): Query the user for
18915 password if we get errors 550 to 554.
18916
18917 2011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
18918
18919 * net/gnutls.el (gnutls-log-level): Remove.
18920
18921 * textmodes/fill.el (adaptive-fill-regexp): Include EN DASH as an
18922 indentation character (bug#6380).
18923
18924 * files.el (buffer-offer-save): Made permanently local (bug#6241).
18925
18926 * doc-view.el (doc-view-make-safe-dir): Rewrite the error message
18927 to clarify what the problem is (bug#4291).
18928
18929 * simple.el (current-kill): Clarify what
18930 `interprogram-paste-function' does (bug#7500).
18931 (auto-fill-mode): Document `auto-fill-function' in relation to
18932 `auto-fill-mode' (bug#2470).
18933
18934 2011-07-16 Lawrence Mitchell <wence@gmx.li>
18935
18936 * emacs-lisp/cl-macs.el (defstruct): Ignore argument to setf
18937 method if slot is read-only (bug#9035).
18938
18939 2011-07-16 Martin Rudalics <rudalics@gmx.at>
18940
18941 * frame.el (select-frame-set-input-focus): New argument NORECORD.
18942 * window.el (pop-to-buffer): Select window used even if it was
18943 selected before, see discussion of (Bug#8615), (Bug#6954).
18944 Pass argument NORECORD on to select-frame-set-input-focus.
18945
18946 2011-07-15 Glenn Morris <rgm@gnu.org>
18947
18948 * subr.el (read-char-choice): Allow quitting. (Bug#9001)
18949 Respect help-form.
18950
18951 2011-07-09 Lawrence Mitchell <wence@gmx.li>
18952
18953 * net/gnutls.el (gnutls-min-prime-bits): New variable.
18954 (gnutls-negotiate): Use it.
18955
18956 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
18957
18958 * net/gnutls.el (gnutls-negotiate):
18959 Upcase `gnutls-algorithm-priority'.
18960
18961 2011-07-15 Glenn Morris <rgm@gnu.org>
18962
18963 * jka-compr.el (jka-compr-verbose): Move from here...
18964 * jka-cmpr-hook.el (jka-compr-verbose): ... to here. (Bug#9090)
18965 Add missing :version tag.
18966 * info.el: No need to require jka-compr when compiling.
18967
18968 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
18969
18970 * net/gnutls.el (gnutls-algorithm-priority): New variable.
18971 (gnutls-negotiate): Use it.
18972
18973 * emacs-lisp/cl-macs.el (declare): Link to the "Declarations" node.
18974
18975 * info.el (Info-beginning-of-buffer): New command.
18976 (Info-mode-map): Use it instead of `beginning-of-buffer' to allow
18977 announcing `b' as the key (bug#8325).
18978 (Info-mode-menu): Use `Info-beginning-of-buffer' for consistency.
18979
18980 * emacs-lisp/cl-macs.el (declare): Doc string fix-up.
18981
18982 * international/mule-cmds.el
18983 (describe-specified-language-support): Make the error message
18984 clearer (bug#8905).
18985
18986 * emacs-lisp/cl-macs.el (declare): Add a doc string (bug#8690).
18987
18988 * isearch.el (isearch-barrier): Add a doc string, since it's
18989 mentioned in a function doc string (bug#8678).
18990
18991 2011-07-15 Martin Rudalics <rudalics@gmx.at>
18992
18993 * window.el (switch-to-buffer): Call pop-to-buffer with normalized
18994 buffer argument (Bug#9083) and self-identifying label argument.
18995
18996 2011-07-15 Glenn Morris <rgm@gnu.org>
18997
18998 * emacs-lisp/debug.el (debug): Doc fix. (Bug#8273)
18999
19000 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
19001
19002 * man.el (Man-fontify-manpage): Fix message when formatting the
19003 man page (bug#7929).
19004
19005 2011-07-14 Eli Zaretskii <eliz@gnu.org>
19006
19007 * buff-menu.el (Buffer-menu-buffer+size): Accept an additional
19008 argument LRM; if non-nil, append an invisible LRM character to the
19009 buffer name.
19010 (list-buffers-noselect): Call Buffer-menu-buffer+size with the
19011 last argument non-nil, when formatting buffer names.
19012 (Buffer-menu-mode, list-buffers-noselect): Force left-to-right
19013 paragraph direction.
19014
19015 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
19016
19017 * man.el (Man-bgproc-sentinel): Skip any arguments and only output
19018 the man page name (bug#7929).
19019
19020 * image.el (put-image): Mention the `put-image' overlay property
19021 (bug#7834).
19022
19023 * scroll-bar.el (set-scroll-bar-mode): Mention that
19024 `scroll-bar-mode' lists the values (bug#7772).
19025
19026 * image-mode.el (image-mode-fit-frame): Mention that it's a toggle
19027 command (bug#7729).
19028
19029 * rect.el (apply-on-rectangle): Return the point after the last
19030 operation.
19031 (string-rectangle): Go to the point after the last operation
19032 (bug#7522).
19033
19034 * printing.el (pr-toggle-region): Clarify the documentation
19035 slightly (bug#7493).
19036
19037 * time.el (display-time-update):
19038 Allow `display-time-mail-function' to return nil (bug#7158).
19039 Fix suggested by Detlev Zundel.
19040
19041 * vc/diff.el (diff): Clarify the order the file names are read
19042 (bug#7111).
19043
19044 * mouse.el (mouse-set-region): Link to `mouse-drag-copy-region' in
19045 the doc string (bug#7015).
19046
19047 * font-lock.el (font-lock-maximum-decoration): Mention what
19048 numeric levels mean (bug#6935).
19049
19050 * startup.el (initial-buffer-choice): Don't mention the `none'
19051 selection, which is against policy.
19052
19053 2011-07-14 Martin Rudalics <rudalics@gmx.at>
19054
19055 * window.el (display-buffer-normalize-special):
19056 Replace `dedicated' by `dedicate' to dedicate window (Bug#9072).
19057
19058 2011-07-14 Eli Zaretskii <eliz@gnu.org>
19059
19060 * subr.el (version<, version<=, version=): Mention "-CVS" and
19061 "-12345" alpha version numbers.
19062
19063 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
19064
19065 * bindings.el: Add advertised binding for set-mark-command
19066 (Bug#5772).
19067
19068 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
19069
19070 * bindings.el (mode-line-other-buffer):
19071 * bookmark.el (bookmark-bmenu-2-window):
19072 * bs.el (bs-cycle-next, bs-cycle-previous):
19073 * net/tramp-cmds.el (tramp-append-tramp-buffers): Revert to using
19074 switch-to-buffer.
19075
19076 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
19077 Delete.
19078
19079 2011-07-14 Juanma Barranquero <lekktu@gmail.com>
19080
19081 * follow.el (follow-debug-message, follow-redisplay):
19082 * jka-cmpr-hook.el (with-auto-compression-mode):
19083 Fix typos in docstrings.
19084
19085 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
19086
19087 * subr.el (with-silent-modifications): Clarify somewhat what the
19088 macro inhibits (bug#6525).
19089
19090 * simple.el (eval-expression): Note what it does if called
19091 interactively (bug#6495).
19092
19093 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
19094
19095 * window.el (switch-to-buffer): New arg FORCE-SAME-WINDOW.
19096 Use pop-to-buffer buffer-or-name if it is nil.
19097
19098 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
19099 Remove switch-to-buffer.
19100
19101 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
19102
19103 * files.el (make-directory): Clarify that an error will be raised
19104 if there's an error (bug#6397).
19105
19106 * startup.el (initial-buffer-choice): Add `none' as a choice
19107 (bug#6234).
19108
19109 * subr.el (add-hook): Clarify section about buffer-local hooks
19110 (bug#6218).
19111
19112 * dired.el (dired-flagged): Clarify doc string (bug#6117).
19113
19114 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
19115
19116 * tabify.el (untabify): Preserve the current column so that point
19117 doesn't move (bug#6032).
19118
19119 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
19120
19121 * progmodes/cperl-mode.el (cperl-syntaxify-by-font-lock):
19122 Rewrite to avoid awkward possessive "s" (bug#5986).
19123
19124 2011-07-13 Glenn Morris <rgm@gnu.org>
19125
19126 * dired.el (dired-use-ls-dired): Doc fix. (Bug#9039).
19127 (dired-insert-directory): Give a message the first time
19128 if ls is found not to support --dired.
19129
19130 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
19131
19132 * simple.el (toggle-truncate-lines): Clarify what is toggled
19133 (bug#5580). Text by Drew Adams.
19134
19135 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
19136
19137 * simple.el (blink-matching-open): Make the error message from the
19138 last change less verbose.
19139
19140 2011-07-13 Dan Nicolaescu <dann@ics.uci.edu>
19141
19142 * font-lock.el (font-lock-comment-face): Use the high contrast
19143 "yellow" color for font-lock-comment-face on low color terminals
19144 using a dark background color (bug#4221).
19145
19146 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
19147
19148 * dired.el (dired-insert-set-properties): Make the doc string
19149 reflect what it does now (bug#5325).
19150
19151 * simple.el (blink-matching-open): Say that we were unable to find
19152 the match within the limit, if we're limited (bug#5122).
19153
19154 * international/mule-cmds.el (prefer-coding-system): Add an
19155 example (bug#4869).
19156
19157 * progmodes/etags.el (tags-search): Document `file-list-form'
19158 (bug#4731).
19159
19160 2011-07-13 Lawrence Mitchell <wence@gmx.li>
19161
19162 * net/browse-url.el (browse-url-default-browser)
19163 (browse-url-browser-function): Make the default browser choice a
19164 bit more logical (bug#4300). Also clean up the doc string.
19165
19166 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
19167
19168 * bindings.el (completion-ignored-extensions): Add OpenMCL/Clozure
19169 binary endings (bug#4440).
19170
19171 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
19172
19173 * info.el (info-insert-file-contents): Inhibit jka-compr messages,
19174 which can be pretty annoying (bug#8971).
19175
19176 * jka-compr.el (jka-compr-verbose): New variable, and use
19177 throughout (bug#8971).
19178
19179 * info.el (Info-find-file): Fall back on the installation
19180 directory if we can't find the info node anywhere else.
19181
19182 2011-07-13 Sergei Organov <osv@javad.com> (tiny change)
19183
19184 * vc/vc.el (vc-revert-file):
19185 Don't set file time-stamp in the past. (Bug#5181)
19186
19187 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
19188
19189 * files.el (after-find-file): Give a better error message when
19190 trying to find a symlink that points to a file that doesn't exist
19191 (bug#4398).
19192
19193 * progmodes/cc-vars.el: Remove (probably) misleading comment
19194 (bug#4396).
19195
19196 2011-07-12 Johan Bockgård <bojohan@gnu.org>
19197
19198 * mouse-sel.el (mouse-sel-primary-overlay): Use the `region' face.
19199
19200 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
19201
19202 * mouse-sel.el: Hack restoring functionality, while keeping
19203 compatibility with 2010-07-03 changes to mouse selection.
19204 (mouse-sel-primary-overlay): New var.
19205 (mouse-sel-selection-alist): Use it.
19206 (mouse-sel-mode): Doc fix; remove points that are default features
19207 of mouse.el.
19208
19209 2011-07-12 Johan Bockgård <bojohan@gnu.org>
19210
19211 * progmodes/compile.el (compilation-error-regexp-alist-alist):
19212 Fix previous fix (bug#2490).
19213
19214 2011-07-12 Roland Winkler <winkler@gnu.org>
19215
19216 * textmodes/bibtex.el (bibtex-initialize):
19217 Use pop-to-buffer-same-window.
19218 (bibtex-search-entries): Fix interactive call.
19219
19220 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
19221
19222 * progmodes/compile.el (compilation-error-regexp-alist-alist):
19223 Fontise bytecomp Error lines more correctly (bug#2490).
19224 Fix suggested by Johan Bockgård.
19225
19226 * subr.el (remove-duplicates): Remove; `delete-dups' is sufficient.
19227
19228 * dired-x.el (dired-guess-default): Use `delete-dups'.
19229
19230 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
19231
19232 * dired.el (dired-mark-prompt):
19233 * dired-aux.el (dired-read-shell-command): Doc fix.
19234
19235 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
19236
19237 * mail/sendmail.el (sendmail-query-once):
19238 Use `customize-save-variable' unconditionally, now that it works under
19239 emacs -Q.
19240
19241 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
19242
19243 * cus-edit.el (custom-file): Take an optional no-error variable.
19244 (customize-save-variable): Set the variable, and give a warning if
19245 running under "emacs -q".
19246
19247 2011-07-11 Juanma Barranquero <lekktu@gmail.com>
19248
19249 * loadhist.el (unload-feature-special-hooks):
19250 Add `auto-coding-functions', `fill-nobreak-predicate' and
19251 `find-directory-functions' (bug#5327).
19252
19253 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
19254
19255 * vc/ediff.el (ediff-patch-file): Clarify doc string (bug#3138).
19256
19257 * cus-edit.el (custom-guess-name-alist): -alist variables should
19258 use the `alist' type (bug#3120). Suggested by Drew Adams.
19259
19260 * printing.el: Add documentation to all the `pr-toggle-' commands.
19261
19262 2011-07-11 Leo Liu <sdl.web@gmail.com>
19263
19264 * files.el (toggle-read-only): Only do the `C-x C-q' warning on VC
19265 backends where it makes sense (bug#2623).
19266
19267 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
19268
19269 * dired-x.el (dired-guess-default): Remove duplicate shell command
19270 entries (bug#2028).
19271 (dired-guess-default): Fix grammar in doc string (bug#2028).
19272 (dired-guess-shell-alist-user): Clarify the example a bit (bug#2030).
19273
19274 * subr.el (remove-duplicates): New conveniency function.
19275
19276 2011-07-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
19277
19278 * tool-bar.el (tool-bar-mode): Clarify positive/negative arguments
19279 (bug#1526).
19280
19281 2011-07-10 Martin Rudalics <rudalics@gmx.at>
19282
19283 * window.el (display-buffer-normalize-default): Don't invert
19284 meaning of even-window-heights. Reported by Eli Zaretskii
19285 <eliz@gnu.org>.
19286
19287 2011-07-10 Bob Rogers <rogers@rgrjr.dyndns.org>
19288
19289 * vc/vc.el (vc-diff-internal): Fix race condition (Bug#1256).
19290
19291 2011-07-10 Chong Yidong <cyd@stupidchicken.com>
19292
19293 * window.el (display-buffer): Fix arguments to
19294 display-buffer-reuse-window in last change.
19295
19296 * faces.el (link): Use a less saturated blue on light backgrounds.
19297
19298 * startup.el (fancy-startup-text, fancy-about-text)
19299 (fancy-startup-tail): Use font-lock faces, for background safety.
19300
19301 2011-07-09 Bob Nnamtrop <bobnnamtrop@gmail.com> (tiny change)
19302
19303 * emulation/viper-cmd.el (viper-change-state-to-vi):
19304 Limit triggering of abbrev expansion (Bug#9038).
19305
19306 2011-07-09 Martin Rudalics <rudalics@gmx.at>
19307
19308 * window.el (display-buffer-default-specifiers): Remove.
19309 (display-buffer-macro-specifiers): Remove default specifiers.
19310 (display-buffer-alist): Default to nil.
19311 (display-buffer-reuse-window): New optional argument other-window.
19312 (display-buffer-pop-up-window): Allow splitting internal
19313 windows. Check whether a live window was created.
19314 (display-buffer-other-window-means-other-frame)
19315 (display-buffer-normalize-arguments): Rename to
19316 display-buffer-normalize-argument and rewrite. Set the
19317 other-window specifier.
19318 (display-buffer-normalize-special): New function.
19319 (display-buffer-normalize-options): Rename to
19320 display-buffer-normalize-default and rewrite.
19321 (display-buffer-normalize-options-inhibit): Remove.
19322 (display-buffer-normalize-specifiers): Rewrite.
19323 (display-buffer): Process other-window specifier and call
19324 display-buffer-reuse-window with it. Emulate Emacs 23 behavior
19325 more faithfully.
19326 (pop-up-windows, even-window-heights): Restore Emacs 23 default values.
19327 (display-buffer-alist-set): Don't handle 'unset default values.
19328 (display-buffer-in-window, display-buffer-alist-set):
19329 Replace symbol "dedicated" by "dedicate". Reported by Tassilo Horn
19330 <tassilo@member.fsf.org>.
19331
19332 2011-07-09 Leo Liu <sdl.web@gmail.com>
19333
19334 * register.el (insert-register): Restore accidental change on
19335 2011-06-26. (Bug#9028)
19336
19337 2011-07-09 Glenn Morris <rgm@gnu.org>
19338
19339 * subr.el (remq): Handle the empty list. (Bug#9024)
19340
19341 2011-07-08 Andreas Schwab <schwab@linux-m68k.org>
19342
19343 * mail/sendmail.el (send-mail-function): No longer delay custom
19344 initialization.
19345 * custom.el (custom-initialize-delay): Doc fix.
19346
19347 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
19348
19349 * abbrev.el (expand-abbrev): Try to preserve point (bug#5805).
19350
19351 2011-07-08 Michael Albinus <michael.albinus@gmx.de>
19352
19353 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use a
19354 human-friendly prompt.
19355
19356 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
19357
19358 * vc/vc-bzr.el (vc-bzr-revision-keywords): Remove svn, it's only
19359 provided by a particular plugin.
19360
19361 2011-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
19362
19363 * mail/sendmail.el (sendmail-query-once): If we aren't allowed to
19364 save customizations (with "emacs -Q"), just set the variable
19365 instead of erroring out.
19366
19367 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
19368
19369 2011-07-08 Juri Linkov <juri@jurta.org>
19370
19371 * arc-mode.el (archive-zip-expunge, archive-zip-update)
19372 (archive-zip-update-case): Use 7z if found by `executable-find'.
19373 The order of searching the available programs is the same as in
19374 `archive-zip-extract' (bug#8968).
19375
19376 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
19377
19378 * menu-bar.el (menu-bar-line-wrapping-menu): Revert last change.
19379 (menu-bar-options-menu): Tweak descriptions.
19380
19381 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
19382
19383 * menu-bar.el (menu-bar-line-wrapping-menu): Make all the Options
19384 menu items into verb phrases (bug#1421). Also refill to fit under
19385 80 columns.
19386
19387 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
19388
19389 * info.el (info, Info-read-node-name-2, Info-read-node-name-1)
19390 (Info-read-node-name): Doc fix (Bug#1084).
19391
19392 * thingatpt.el (forward-thing, bounds-of-thing-at-point)
19393 (thing-at-point, beginning-of-thing, end-of-thing, in-string-p)
19394 (end-of-sexp, beginning-of-sexp)
19395 (thing-at-point-bounds-of-list-at-point, forward-whitespace)
19396 (forward-symbol, forward-same-syntax, word-at-point)
19397 (sentence-at-point): Doc fix (Bug#1144).
19398
19399 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
19400
19401 * info.el (Info-mode-map): Remove S-TAB binding, since [backtab]
19402 should cover it (bug#1281).
19403
19404 * cus-edit.el (custom-show): Mark as obsolete.
19405
19406 * net/network-stream.el (network-stream-open-starttls): If GnuTLS
19407 negotiation fails, then possibly try again with a non-encrypted
19408 connection (bug#9017).
19409
19410 * mail/smtpmail.el (smtpmail-stream-type): Note that `plain' can
19411 be used.
19412
19413 2011-07-07 Richard Stallman <rms@gnu.org>
19414
19415 * mail/rmail.el (rmail-next-error-move): Use `compilation-message'
19416 property, and handle its changed format.
19417 Look for the correct line number.
19418 Use file's line contents (but not past first =) to find
19419 correct line in message.
19420
19421 2011-07-07 Kenichi Handa <handa@m17n.org>
19422
19423 * international/characters.el (build-unicode-category-table):
19424 Delete it.
19425 (unicode-category-table): Set it by unicode-property-table-internal.
19426
19427 * international/mule-cmds.el (char-code-property-alist): Move to
19428 to src/chartab.c.
19429 (get-char-code-property): Call unicode-property-table-internal to
19430 load a file. Call get-unicode-property-internal where necessary.
19431 (put-char-code-property): Call unicode-property-table-internal to
19432 load a file. Call put-unicode-property-internal where necessary.
19433 put-unicode-property-internal where necessary.
19434 (char-code-property-description):
19435 Call unicode-property-table-internal to load a file.
19436
19437 * international/charprop.el:
19438 * international/uni-bidi.el:
19439 * international/uni-category.el:
19440 * international/uni-combining.el:
19441 * international/uni-comment.el:
19442 * international/uni-decimal.el:
19443 * international/uni-decomposition.el:
19444 * international/uni-digit.el:
19445 * international/uni-lowercase.el:
19446 * international/uni-mirrored.el:
19447 * international/uni-name.el:
19448 * international/uni-numeric.el:
19449 * international/uni-old-name.el:
19450 * international/uni-titlecase.el:
19451 * international/uni-uppercase.el: Regenerate.
19452
19453 * loadup.el: Load international/charprop.el before
19454 international/characters.
19455
19456 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
19457
19458 * window.el (next-buffer, previous-buffer): Signal an error if
19459 called from a minibuffer window.
19460
19461 * bindings.el: Revert 2011-07-04 change.
19462
19463 2011-07-06 Richard Stallman <rms@gnu.org>
19464
19465 * mail/rmailmm.el (rmail-mime-process): Use markers for buf positions.
19466 (rmail-mime-insert-bulk, rmail-mime-insert-text):
19467 Treat markers like ints.
19468 (rmail-mime-entity): Doc fix.
19469
19470 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
19471
19472 * mail/smtpmail.el (smtpmail-default-smtp-server): Made into a
19473 defcustom again for backwards compatibility.
19474
19475 * simple.el (shell-command-on-region): Fill.
19476
19477 * dired-aux.el (dired-kill-line): Add a doc string.
19478
19479 * dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults
19480 to "\\sw\\|\\s_" (bug#358).
19481
19482 * dired.el (dired-mode): Clarify "unmark or unflag" (bug#8770).
19483 (dired-unmark-backward): Ditto.
19484 (dired-flag-backup-files): Ditto.
19485
19486 * dired-x.el (dired-mark-sexp): Ditto.
19487
19488 2011-07-06 Richard Stallman <rms@gnu.org>
19489
19490 * mail/rmailmm.el: Give entity a new slot, TRUNCATED.
19491 (rmail-mime-entity): New arg TRUNCATED.
19492 (rmail-mime-entity-truncated, rmail-mime-entity-set-truncated):
19493 New functions.
19494 (rmail-mime-save): Warn if entity is truncated.
19495 (rmail-mime-toggle-hidden): Likewise, for showing.
19496 (rmail-mime-process-multipart): Record when an entity is truncated.
19497
19498 * mail/rmailmm.el (rmail-search-mime-message): Don't get confused
19499 if ENTITY is a string.
19500
19501 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
19502
19503 * emacs-lisp/lisp-mode.el (eval-defun-1): Update the documentation
19504 of faces when `M-C-x'-ing their definitions (bug#8378).
19505 Also clean up the code slightly.
19506
19507 * progmodes/grep.el (rgrep): Don't bind `process-connection-type',
19508 because that makes the colors go away.
19509
19510 * mail/sendmail.el (send-mail-function): Change the default to
19511 `sendmail-query-once'.
19512 (sendmail-query-once): Add an autoload cookie.
19513
19514 * net/network-stream.el (network-stream-open-starttls): Try using
19515 a plain connection even if the server offered STARTTLS, and we
19516 kinda wanted to use it, if Emacs doesn't have any STARTTLS
19517 capability. This should make smtpmail.el work in slightly more
19518 configurations.
19519
19520 2011-07-06 Michael Albinus <michael.albinus@gmx.de>
19521
19522 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
19523 New defun.
19524 * net/tramp-cmds.el (tramp-append-tramp-buffers): Use it.
19525
19526 2011-07-06 Michael R. Mauger <mmaug@yahoo.com>
19527
19528 * progmodes/sql.el: Version 3.0
19529 (sql-product-alist): Add product :completion-object,
19530 :completion-column, and :statement attributes.
19531 (sql-mode-menu, sql-interactive-mode-map): Fix List entries.
19532 (sql-mode-syntax-table): Mark all punctuation.
19533 (sql-font-lock-keywords-builder): Temporarily remove fallback on
19534 ansi keywords.
19535 (sql-regexp-abbrev, sql-regexp-abbrev-list): New functions.
19536 (sql-mode-oracle-font-lock-keywords): Improve.
19537 (sql-oracle-show-reserved-words): New function for development.
19538 (sql-product-font-lock): Simplify for source code buffers.
19539 (sql-product-syntax-table, sql-product-font-lock-syntax-alist):
19540 New functions.
19541 (sql-highlight-product): Set product specific syntax table.
19542 (sql-mode-map): Add statement movement functions.
19543 (sql-ansi-statement-starters, sql-oracle-statement-starters):
19544 New variable.
19545 (sql-statement-regexp, sql-beginning-of-statement)
19546 (sql-end-of-statement, sql-signum): New functions.
19547 (sql-buffer-live-p, sql=find-sqli-buffer): Add CONNECTION parameter.
19548 (sql-show-sqli-buffer): Bug fix.
19549 (sql-interactive-mode): Store connection data as buffer local.
19550 (sql-connect): Add NEW-NAME parameter. Redesign interaction
19551 with sql-interactive-mode.
19552 (sql-save-connection): Save buffer local settings.
19553 (sql-connection-menu-filter): Change menu entry name.
19554 (sql-product-interactive): Bug fix.
19555 (sql-preoutput-hold): New variable.
19556 (sql-interactive-remove-continuation-prompt): Bug fixes.
19557 (sql-debug-redirect): New variable.
19558 (sql-str-literal): New function.
19559 (sql-redirect, sql-redirect-one, sql-redirect-value, sql-execute):
19560 Redesign.
19561 (sql-oracle-save-settings, sql-oracle-restore-settings)
19562 (sql-oracle-list-all, sql-oracle-list-table): New functions.
19563 (sql-completion-object, sql-completion-column)
19564 (sql-completion-sqlbuf): New variables.
19565 (sql-build-completions-1, sql-build-completions)
19566 (sql-try-completion): New functions.
19567 (sql-read-table-name): Use them.
19568 (sql-contains-names): New buffer local variable.
19569 (sql-list-all, sql-list-table): Use it.
19570 (sql-oracle-completion-types): New variable.
19571 (sql-oracle-completion-object, sql-sqlite-completion-object)
19572 (sql-postgres-completion-object): New functions.
19573
19574 2011-07-06 Glenn Morris <rgm@gnu.org>
19575
19576 * window.el (pop-to-buffer): Doc fix.
19577
19578 2011-07-06 Markus Heiser <markus.heiser@darmarit.de> (tiny change)
19579
19580 * progmodes/gud.el (gud-pdb-marker-regexp): Accept \r char (Bug#5653).
19581
19582 2011-07-06 Chong Yidong <cyd@stupidchicken.com>
19583
19584 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
19585
19586 * info.el (Info-directory-toc-nodes): Minor doc fix (Bug#8833).
19587
19588 2011-07-05 Chong Yidong <cyd@stupidchicken.com>
19589
19590 * button.el (button): Inherit from link face. Suggested by Dan
19591 Nicolaescu.
19592
19593 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
19594
19595 * progmodes/gdb-mi.el: Fit in 80 columns.
19596 (gdb-setup-windows, gdb-restore-windows): Avoid other-window and
19597 switch-to-buffer.
19598
19599 * progmodes/which-func.el (which-func-ff-hook): Don't output a message
19600 if imenu is simply not configured (bug#8941).
19601
19602 2011-07-05 Ken Manheimer <ken.manheimer@gmail.com>
19603
19604 * allout.el (allout-post-undo-hook): New allout outline-change
19605 event hook to signal undo activity.
19606 (allout-post-command-business): Run allout-post-undo-hook if an
19607 undo just occurred.
19608 (allout-after-copy-or-kill-hook, allout-mode): Minor docstring changes.
19609 * allout-widgets.el (allout-widgets-after-undo-function):
19610 Ensure the integrity of the current item's decoration after it has been
19611 in the vicinity of an undo.
19612 (allout-widgets-mode): Include allout-widgets-after-undo-function
19613 on the new allout-post-undo-hook.
19614
19615 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
19616
19617 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-abbrev-table):
19618 Let define-derived-mode define it.
19619 * emacs-lisp/derived.el (define-derived-mode): Try to avoid creating
19620 cycles of abbrev-table inheritance (bug#8998).
19621
19622 2011-07-05 Roland Winkler <winkler@gnu.org>
19623
19624 * textmodes/bibtex.el: Add support for biblatex.
19625 (bibtex-BibTeX-entry-alist, bibtex-biblatex-entry-alist)
19626 (bibtex-BibTeX-field-alist, bibtex-biblatex-field-alist)
19627 (bibtex-dialect-list, bibtex-dialect, bibtex-no-opt-remove-re)
19628 (bibtex-entry-alist, bibtex-field-alist): New variables.
19629 (bibtex-entry-field-alist): Obsolete alias for
19630 bibtex-BibTeX-entry-alist.
19631 (bibtex-entry-alist, bibtex-field-alist): New widgets.
19632 (bibtex-set-dialect): New command.
19633 (bibtex-entry-type, bibtex-entry-head)
19634 (bibtex-entry-maybe-empty-head, bibtex-any-valid-entry-type):
19635 Bind via bibtex-set-dialect.
19636 (bibtex-Article, bibtex-Book, bibtex-Booklet, bibtex-InBook)
19637 (bibtex-InCollection, bibtex-InProceedings, bibtex-Manual)
19638 (bibtex-MastersThesis, bibtex-Misc, bibtex-PhdThesis)
19639 (bibtex-Proceedings, bibtex-TechReport, bibtex-Unpublished):
19640 Define via bibtex-set-dialect.
19641 (bibtex-name-in-field, bibtex-remove-OPT-or-ALT):
19642 Obey bibtex-no-opt-remove-re.
19643 (bibtex-vec-push, bibtex-vec-incr): New functions.
19644 (bibtex-format-entry, bibtex-field-list)
19645 (bibtex-print-help-message, bibtex-validate)
19646 (bibtex-search-entries): Use new format of bibtex-entry-alist.
19647
19648 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
19649
19650 * progmodes/compile.el (compilation-goto-locus):
19651 * net/tramp-cmds.el (tramp-append-tramp-buffers):
19652 * bs.el (bs-cycle-next, bs-cycle-previous):
19653 * bookmark.el (bookmark-bmenu-list, bookmark-bmenu-2-window):
19654 * bindings.el (mode-line-other-buffer):
19655 * autoinsert.el (auto-insert):
19656 * arc-mode.el (archive-extract):
19657 * abbrev.el (edit-abbrevs): Fix some uses of switch-to-buffer.
19658
19659 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
19660
19661 * emacs-lock.el (emacs-lock-mode): Fix typo in variable name.
19662 Fix check of `emacs-lock-unlockable-modes'.
19663 Coerce true values of `emacs-lock--try-unlocking' to t.
19664
19665 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
19666
19667 * obsolete/old-emacs-lock.el: Rename from emacs-lock.el.
19668 * emacs-lock.el: New file.
19669
19670 2011-07-05 Julien Danjou <julien@danjou.info>
19671
19672 * textmodes/rst.el (rst-define-level-faces): Use `facep' rather
19673 than `boundp' to check if face is set.
19674
19675 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
19676
19677 * register.el (registerv-make):
19678 * window.el (window-min-height): Fix typos in docstrings.
19679
19680 2011-07-05 Jan Djärv <jan.h.d@swipnet.se>
19681
19682 * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
19683 Update doc string.
19684
19685 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
19686
19687 * server.el (server-execute): Catch quit and call
19688 `server-return-error' to pass the error back to emacsclient and
19689 close the connection (bug#8942).
19690
19691 2011-07-04 Ken Manheimer <ken.manheimer@gmail.com>
19692
19693 * allout.el (allout-encrypt-unencrypted-on-saves): Do not provide
19694 insecure exception for current topic. Also note that auto-saves
19695 are handled differently.
19696
19697 (allout-auto-save-temporarily-disabled, allout-just-did-undo):
19698 State variables for tracking auto-save inhibition situation.
19699
19700 (allout-write-contents-hook-handler): Rename from
19701 'allout-write-file-hook-handler', and describe how it depends on
19702 write-contents-functions sensitivity to non-nil value to prevent
19703 file write.
19704
19705 (allout-auto-save-hook-handler): Remove. auto-save does not check
19706 this in individual buffers, only in the starting buffer, so this
19707 is not the right way for us to inhibit auto-save in a buffer
19708 according to its condition.
19709
19710 (allout-mode): Use new allout-write-contents-hook-handler, and
19711 only with write-contents-functions. Remove auto-save provisions -
19712 they're implemented elsewhere.
19713
19714 (allout-before-change-handler): If undo is in progress, note that
19715 for attention of allout-post-command-business.
19716
19717 (allout-post-command-business): If the command we're following was
19718 an undo, check for change in the status of encrypted items and
19719 adjust auto-save inhibitions accordingly.
19720
19721 (allout-toggle-subtree-encryption): Adjust auto-save inhibition
19722 according to whether there are or aren't any plain-text topics
19723 pending encryption.
19724
19725 (allout-inhibit-auto-save-info-for-decryption):
19726 Adjust buffer-saved-size and some allout state to inhibit auto-saves
19727 if there are plain-text topics pending encryption.
19728
19729 (allout-maybe-resume-auto-save-info-after-encryption): Adjust
19730 buffer-saved-size and some allout state to not inhibit auto-saves
19731 if there are no longer any plain-text topics pending encryption.
19732
19733 (allout-next-topic-pending-encryption, allout-encrypt-decrypted):
19734 No longer provide for exemption of the current topic.
19735
19736 2011-07-04 Juri Linkov <juri@jurta.org>
19737
19738 Add 7z operations to delete and save changed members (bug#8968).
19739 * arc-mode.el (archive-7z-expunge, archive-7z-update):
19740 New defcustoms.
19741 (archive-7z-write-file-member): New function.
19742 (archive-7z-summarize): Fix the number of dashes in the
19743 listing output.
19744
19745 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
19746
19747 * pcmpl-linux.el (pcomplete-pare-list): Re-add, from pcomplete.el
19748 (bug#8958).
19749
19750 2011-07-04 Chong Yidong <cyd@stupidchicken.com>
19751
19752 * bindings.el: Ignore next-buffer and previous-buffer in
19753 minibuffer-local-map.
19754
19755 * font-lock.el (font-lock-builtin-face): Change light background
19756 color to dark slate blue (Bug#6693).
19757
19758 2011-07-04 Wang Diancheng <dcwang@kingbase.com.cn> (tiny change)
19759
19760 * progmodes/gdb-mi.el (gdb): Use completion-at-point.
19761
19762 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
19763
19764 * files.el (find-file): Use pop-to-buffer-same-window (bug#8911).
19765 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
19766 Add switch-to-buffer.
19767
19768 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
19769
19770 * isearch.el (isearch-search-fun-function): Clarify further the
19771 meaning of the function returned.
19772
19773 2011-07-04 Michael Albinus <michael.albinus@gmx.de>
19774
19775 * net/tramp-cmds.el (tramp-cleanup-this-connection): New command.
19776
19777 * net/tramp-sh.el (tramp-color-escape-sequence-regexp): New defconst.
19778 (tramp-sh-handle-insert-directory, tramp-convert-file-attributes):
19779 Use it.
19780 (tramp-remote-path): Add "/bin" and "/usr/bin". On busyboxes,
19781 `tramp-default-remote-path' does not exist.
19782 (tramp-send-command-and-read): New optional argument NOERROR.
19783 (tramp-open-connection-setup-interactive-shell)
19784 (tramp-get-remote-path, tramp-get-remote-stat): Use it.
19785 (tramp-get-remote-readlink): Do not mask with `ignore-errors'.
19786 (tramp-process-sentinel): Flush also process' connection property.
19787 (tramp-sh-handle-start-file-process): Do not set process
19788 sentinel. It is done now ...
19789 (tramp-maybe-open-connection): ... here. (Bug#8929)
19790
19791 2011-07-04 MON KEY <monkey@sandpframing.com>
19792
19793 * play/animate.el (animate-string): Doc fixes and allow changing
19794 the buffer name (bug#5417).
19795
19796 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
19797
19798 * play/animate.el (animation-buffer-name): Rename from *animate*.
19799
19800 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
19801
19802 * emacs-lisp/timer.el: Use time-date fns rather than rolling our own.
19803 This is simpler and helps future-proof the code.
19804 (timer-until): Use time-subtract and float-time.
19805 (timer--time-less-p): Use time-less-p.
19806
19807 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
19808
19809 * type-break.el (timep): Use the value of `float-time' to avoid a
19810 byte-compiler warning.
19811
19812 * server.el (server-eval-and-print): Return any result, even nil.
19813
19814 2011-07-03 Paul Eggert <eggert@cs.ucla.edu>
19815
19816 * type-break.el: Accept time formats that the builtins accept.
19817 (timep, type-break-time-difference): Accept any format that
19818 float-time accepts, rather than insisting on (HIGH LOW USECS) format.
19819 This is simpler and helps future-proof the code.
19820 (type-break-time-difference): Round rather than ignoring
19821 subseconds components.
19822
19823 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
19824
19825 * info.el (Info-apropos-matches): Make non-interactive, since it
19826 doesn't seem to do anything useful as a command (bug#8829).
19827
19828 2011-07-03 Chong Yidong <cyd@stupidchicken.com>
19829
19830 * frame.el (frame-background-mode, frame-set-background-mode):
19831 Move from faces.el.
19832 (frame-default-terminal-background): New function.
19833
19834 * custom.el (custom-push-theme): Don't record faces in `changed'
19835 theme; this doesn't work correctly for per-frame face settings.
19836 (disable-theme): Use face-set-after-frame-default to reset faces.
19837 (custom--frame-color-default): New function.
19838
19839 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
19840
19841 * dired.el (dired-flagging-regexp): Remove unused variable
19842 (bug#8769).
19843
19844 2011-03-29 Kevin Ryde <user42@zip.com.au>
19845
19846 * progmodes/compile.el (compilation-error-regexp-alist-alist):
19847 `perl-Test2' extend to match possible "fail #N" rep count
19848 (bug#8377).
19849
19850 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
19851
19852 * mail/feedmail.el (feedmail-buffer-to-smtpmail):
19853 `smtpmail-via-smtp' now returns the error instead of nil.
19854
19855 * isearch.el (isearch-search-fun-function): Clarify the doc string
19856 (bug#8101).
19857
19858 2011-07-03 Richard Kim <emacs18@gmail.com> (tiny change)
19859
19860 * textmodes/texnfo-upd.el (texinfo-insert-menu): Don't insert
19861 unnecessary spaces (bug#8987).
19862
19863 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
19864
19865 * net/network-stream.el (open-network-stream): Use the
19866 :end-of-capability command thoughout.
19867
19868 2011-07-03 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
19869
19870 * net/network-stream.el (open-network-stream): Add the
19871 :end-of-capability command parameter, used by pop3.el.
19872
19873 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
19874
19875 * dired.el (dired-map-over-marks): Refill the doc string (bug#6814).
19876
19877 * fringe.el (fringe-query-style): Remove redundant text " (type ?
19878 for list)" (bug#6475).
19879
19880 * files.el (file-expand-wildcards): Ignore non-readable
19881 sub-directories while trying to find matches instead of signaling
19882 an error (bug#6297).
19883
19884 * man.el (Man-reference-regexp): Allow matching possible
19885 word-wrapped references (bug#6289).
19886
19887 * vc/vc.el (vc-modify-change-comment): Change *VC-log* to *vc-log*
19888 for consistency with the other vc buffers (bug#6197).
19889 (vc-checkin): Ditto.
19890
19891 * vc/vc-arch.el: Fix comments to match the *VC-log* name change.
19892
19893 * longlines.el (longlines-mode): Document what ARG does (bug#6150).
19894
19895 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
19896
19897 * custom.el (defcustom): Clarify that :set is only used in the
19898 Customize user interface (bug#6089).
19899
19900 * progmodes/flymake.el (flymake-mode): If the buffer isn't
19901 associated with a file, refuse to run instead of erroring out
19902 (bug#6084).
19903
19904 * textmodes/fill.el (fill-region): Remove the "Ordinarily" from
19905 the doc string, since it appears that using `fill-column' always
19906 controls the width (bug#7845).
19907
19908 * simple.el (shell-command-on-region): Say where the error output
19909 went if `shell-command-default-error-buffer' is set (bug#6857).
19910
19911 2011-07-02 Ken Manheimer <ken.manheimer@gmail.com>
19912
19913 * allout.el (allout-yank-processing): Adjust cursor position for
19914 backwards-deleted space.
19915
19916 (allout-rebullet-heading): Register changes with
19917 allout-exposure-changed-hook, so the modified topic is properly
19918 decorated.
19919
19920 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
19921
19922 * minibuffer.el (completion-in-region): Document PREDICATE
19923 (bug#7136).
19924
19925 * info-look.el (info-lookup-add-help): Clarify that ARGS is a list
19926 of keyword/argument pairs (bug#6904).
19927
19928 * replace.el (multi-occur):
19929 Mention `multi-occur-in-matching-buffers' in the doc string (bug#7566).
19930
19931 2011-07-02 Drew Adams <drew.adams@oracle.com>
19932
19933 * dired.el (dired-mark-if): Make the message about whether it's
19934 marking or unmarking clearer (bug#8523).
19935
19936 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
19937
19938 * disp-table.el (display-table-print-array): New function.
19939 (describe-display-table): Use it to print the vectors more pretty
19940 (Bug#8859).
19941
19942 2011-07-02 Martin Rudalics <rudalics@gmx.at>
19943
19944 * window.el (window-state-get-1): Don't assign clone numbers.
19945 Add clone-of item to list of window parameters.
19946 (window-state-put-2): Don't process clone numbers.
19947 (display-buffer-alist): Fix doc-string.
19948
19949 2011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
19950
19951 * subr.el (remq): Don't allocate if it's not needed.
19952 (keymap--menu-item-binding, keymap--menu-item-with-binding)
19953 (keymap--merge-bindings): New functions.
19954 (keymap-canonicalize): Use them to refine the canonicalization.
19955 * minibuffer.el (minibuffer-local-completion-map)
19956 (minibuffer-local-must-match-map): Move initialization from C.
19957 (minibuffer-local-filename-completion-map): Move initialization from C;
19958 don't inherit from anything here.
19959 (minibuffer-local-filename-must-match-map): Make obsolete.
19960 (completing-read-default): Use make-composed-keymap to combine
19961 minibuffer-local-filename-completion-map with either
19962 minibuffer-local-must-match-map or
19963 minibuffer-local-filename-completion-map.
19964
19965 2011-07-01 Glenn Morris <rgm@gnu.org>
19966
19967 * type-break.el (type-break-time-sum): Use dolist.
19968
19969 * textmodes/flyspell.el (flyspell-word-search-backward):
19970 Replace CL function.
19971
19972 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
19973
19974 * mouse.el (mouse--strip-first-event): New function.
19975 (function-key-map): Use it to map fringe clicks to normal clicks
19976 by default.
19977
19978 * vc/vc-bzr.el (vc-bzr-revision-keywords): Update.
19979 (vc-bzr-revision-completion-table): Add support for annotate and date.
19980
19981 * emacs-lisp/derived.el (define-derived-mode): Make abbrev-table
19982 inherit from parent.
19983
19984 2011-07-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
19985
19986 * dired-aux.el (dired-diff): Doc fixup (bug#8816).
19987 (dired-show-file-type): Doc fixup (bug#8818).
19988
19989 * dired.el (dired-mode): Fix up the doc string as suggested by
19990 Drew Adams (bug#8817).
19991
19992 * progmodes/flymake.el (flymake-find-file-hook): Add an `autoload'
19993 cookie, since the manual says that it should be possible to add
19994 this function to `find-file-hook' (bug#8709).
19995
19996 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
19997
19998 * progmodes/cfengine.el: Moved all cfengine3.el functionality
19999 here. Noted Ted Zlatanov as the maintainer.
20000 (cfengine-common-settings, cfengine-common-syntax): New functions
20001 to set up common things between `cfengine-mode' and
20002 `cfengine3-mode'.
20003 (cfengine3-mode): New mode.
20004 (cfengine3-defuns cfengine3-defuns-regex
20005 (cfengine3-class-selector-regex cfengine3-category-regex)
20006 (cfengine3-vartypes cfengine3-font-lock-keywords)
20007 (cfengine3-beginning-of-defun, cfengine3-end-of-defun)
20008 (cfengine3-indent-line): Add from cfengine3.el.
20009
20010 2011-07-01 Michael Albinus <michael.albinus@gmx.de>
20011
20012 * net/tramp.el (tramp-encoding-command-interactive): New defcustom.
20013
20014 * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
20015
20016 2011-07-01 Martin Rudalics <rudalics@gmx.at>
20017
20018 * window.el (same-window-buffer-names, same-window-regexps)
20019 (same-window-p, special-display-frame-alist)
20020 (special-display-popup-frame, special-display-function)
20021 (special-display-buffer-names, special-display-regexps)
20022 (special-display-p, pop-up-frame-alist, pop-up-frame-function)
20023 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
20024 (split-window-preferred-function, split-height-threshold)
20025 (split-width-threshold, even-window-heights)
20026 (display-buffer-mark-dedicated, window-splittable-p)
20027 (split-window-sensibly, window-safely-shrinkable-p):
20028 Un-obsolete.
20029 (display-buffer): Don't spread args with function specifier
20030 because special-display-popup-frame won't like it.
20031
20032 2011-07-01 Paul Eggert <eggert@cs.ucla.edu>
20033
20034 Time-stamp simplifications and fixes.
20035 These improve accuracy slightly, and future-proof the code
20036 against some potential changes to current-time format.
20037
20038 * woman.el (woman-decode-buffer, WoMan-log-end): Log fractional secs
20039 by using time-since and float-time.
20040
20041 * vc/ediff-util.el (ediff-calc-command-time): Use time-since
20042 and float-time. Say "NNN.NNN seconds" rather than "NNN seconds
20043 + NNN microseconds".
20044
20045 * type-break.el (type-break-time-sum): Rewrite using time-add.
20046
20047 * play/hanoi.el (hanoi-current-time-float): Remove.
20048 All uses replaced by float-time.
20049
20050 * nxml/rng-maint.el (rng-time-function): Rewrite using time-subtract.
20051 This yields a more-accurate answer.
20052 (rng-time-to-float): Remove; no longer needed.
20053
20054 * emacs-lisp/timer.el (timer-relative-time): Use time-add.
20055
20056 * calendar/timeclock.el (timeclock-seconds-to-time):
20057 Defalias to seconds-to-time, since they're the same thing.
20058
20059 * emacs-lisp/elp.el (elp-elapsed-time):
20060 * emacs-lisp/benchmark.el (benchmark-elapse):
20061 * allout-widgets.el (allout-elapsed-time-seconds): Use float-time.
20062
20063 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
20064
20065 * window.el (bury-buffer): Don't iconify the only frame.
20066 (switch-to-buffer): Revert to Emacs<23 behavior, i.e. do not fallback
20067 to pop-to-buffer. Use pop-to-buffer-same-frame if you don't like that.
20068
20069 2011-07-01 Chong Yidong <cyd@stupidchicken.com>
20070
20071 * eshell/em-smart.el (eshell-smart-display-navigate-list):
20072 Add mouse-yank-primary.
20073
20074 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
20075
20076 * progmodes/cfengine3.el: New file to support CFEngine 3.x.
20077
20078 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
20079
20080 * emacs-lisp/find-func.el (find-library--load-name): New fun.
20081 (find-library-name): Use it to find relative load names when provided
20082 absolute file name (bug#8803).
20083
20084 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
20085
20086 * textmodes/flyspell.el (flyspell-word): Consider words that
20087 differ only in case as potential doublons (bug#5687).
20088
20089 * net/soap-client.el (soap-invoke, soap-wsdl-resolve-references):
20090 Remove two rather uninteresting debugging-like messages to make
20091 debbugs.el more silent.
20092
20093 * comint.el (comint-password-prompt-regexp): Accept "Response" as
20094 a password-like phrase.
20095
20096 2011-06-30 Masatake YAMATO <yamato@redhat.com>
20097
20098 * progmodes/cc-guess.el: New file.
20099
20100 * progmodes/cc-langs.el (c-mode-menu): Add "Style..." submenu.
20101
20102 * progmodes/cc-styles.el (cc-choose-style-for-mode): New function
20103 derived from `c-basic-common-init'.
20104
20105 * progmodes/cc-mode.el (top-level): Require cc-guess.
20106 (c-basic-common-init): Use `cc-choose-style-for-mode'.
20107
20108 2011-06-30 Lawrence Mitchell <wence@gmx.li>
20109
20110 * progmodes/js.el (js-mode): Don't stomp on global settings (bug#8933).
20111
20112 2011-06-30 Alan Mackenzie <acm@muc.de>
20113
20114 * progmodes/cc-engine.el (c-guess-continued-construct):
20115 Correct the handling of template-args-cont, particularly for when font
20116 lock is disabled. Name this case as "CASE G".
20117
20118 2011-06-30 Ken Manheimer <ken.manheimer@gmail.com>
20119
20120 * allout.el (allout-yank-processing): Fix injection of extra space
20121 between bullet and non-whitespace character in first topic when
20122 pasting, ensuring that the actual spacing in the pasted topic
20123 following the bullet char is preserved. This extra space was
20124 causing pasted encrypted topics to get a decrypted status even
20125 when the content was actually still encrypted. Now the decryption
20126 status from before the paste is preserved.
20127
20128 (allout-flag-region): Set all allout overlays so they evaporate
20129 when reduced to zero length (evanescent), to prevent overlay
20130 leakage.
20131
20132 2011-06-30 Glenn Morris <rgm@gnu.org>
20133
20134 * w32-fns.el (w32-charset-info-alist): Declare.
20135
20136 * find-dired.el (find-grep-options): Simplify.
20137
20138 * term/ns-win.el (ns-set-resource): Declare.
20139
20140 * ses.el (row, col): Declare dynamic variables honestly.
20141
20142 * textmodes/reftex-parse.el (index-tags): Declare.
20143
20144 2011-06-30 Chong Yidong <cyd@stupidchicken.com>
20145
20146 * cus-edit.el (customize-push-and-save): New function.
20147
20148 * files.el (hack-local-variables-confirm): Use it.
20149
20150 * custom.el (load-theme): New arg NO-CONFIRM.
20151 Use customize-push-and-save (Bug#8720).
20152 (custom-enabled-themes): Doc fix.
20153
20154 * cus-theme.el (customize-create-theme)
20155 (custom-theme-merge-theme): Callers to load-theme changed.
20156
20157 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
20158
20159 * thingatpt.el (thing-at-point-short-url-regexp): Require that
20160 short URLs have at least one dot in them (bug #7614).
20161
20162 * progmodes/grep.el (rgrep): Bind `process-connection-type' to
20163 nil, because using a pty is apparently too slow (bug #895).
20164
20165 2011-06-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
20166
20167 * mail/sendmail.el (sendmail-query-once): New function.
20168 (sendmail-query-once-function): New variable.
20169
20170 2011-06-29 Glenn Morris <rgm@gnu.org>
20171
20172 * files.el (auto-mode-alist): Add .f03, .f08 for f90-mode.
20173
20174 * ses.el (top-level): Require cl when compiling.
20175 (ses-set-localvars): Fix error statement.
20176 Call it at compile time to silence a storm of warnings.
20177
20178 2011-06-29 Martin Rudalics <rudalics@gmx.at>
20179
20180 * window.el (normalize-live-buffer): Rename to
20181 window-normalize-buffer.
20182 (normalize-live-frame): Rename to window-normalize-frame.
20183 (normalize-any-window): Rename to window-normalize-any-window.
20184 (normalize-live-window): Rename to window-normalize-live-window.
20185 (make-window-atom): Rename to window-make-atom.
20186 (window-resize-reset): Rename to window--resize-reset.
20187 (window-resize-reset-1): Rename to window--resize-reset-1.
20188 (resize-mini-window): Rename to window--resize-mini-window.
20189 (resize-subwindows-skip-p): Rename to
20190 window--resize-subwindows-skip-p.
20191 (resize-subwindows-normal): Rename to
20192 window--resize-subwindows-normal.
20193 (resize-subwindows): Rename to window--resize-subwindows.
20194 (resize-other-windows): Rename to window--resize-siblings.
20195 (resize-this-window): Rename to window--resize-this-window.
20196 (resize-root-window): Rename to window--resize-root-window.
20197 (resize-root-window-vertically): Rename to
20198 window--resize-root-window-vertically.
20199 (normalize-buffer-to-display): Rename to
20200 window-normalize-buffer-to-display.
20201 (normalize-buffer-to-switch-to): Rename to
20202 window-normalize-buffer-to-switch-to.
20203 Correspondingly update all callers of the functions listed
20204 above.
20205 (display-buffer-alist, display-buffer-normalize-arguments)
20206 (display-buffer-normalize-options, display-buffer)
20207 (display-buffer-alist-set): Use "function" instead of
20208 "fun-with-args".
20209
20210 2011-06-28 Chong Yidong <cyd@stupidchicken.com>
20211
20212 * mail/emacsbug.el (report-emacs-bug): Handle non-gnu bug
20213 addresses more clearly. Add hyperlinks for bug-gnu-emacs and
20214 debbugs.gnu.org. Mention acknowledgment email.
20215
20216 2011-06-28 Lars Magne Ingebrigtsen <larsi@gnus.org>
20217
20218 * mail/smtpmail.el (smtpmail-send-it): Leave off changing the
20219 buffer multibyteness, since it shouldn't matter.
20220
20221 2011-06-28 Martin Rudalics <rudalics@gmx.at>
20222
20223 * window.el (display-buffer-in-side-window): Handle dedicated
20224 windows as in display-buffer-reuse-window.
20225 (display-buffer-normalize-alist): Use value of override
20226 specifier.
20227 (display-buffer-normalize-specifiers): Use value of
20228 other-window-means-other-frame specifier.
20229 (display-buffer-alist): Rewrite some texts in widgets.
20230 (display-buffer): Spread arguments when calling function
20231 specified by fun-with-args.
20232
20233 2011-06-28 Deniz Dogan <deniz@dogan.se>
20234
20235 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
20236 Unnest `let'.
20237
20238 * textmodes/css-mode.el (css-font-lock-keywords): Fix grouped
20239 selectors (Bug#5732).
20240 (css-proprietary-nmstart-re): Use `regexp-opt'.
20241
20242 2011-06-27 Jari Aalto <jari.aalto@cante.net>
20243
20244 * eshell/em-ls.el: Display `ls -l' dates in ISO format (Bug#8440).
20245 (eshell-ls-date-format): New defcustom.
20246 (eshell-ls-file): Use it.
20247
20248 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
20249
20250 * help-fns.el (describe-variable): Fix message for terminal-local vars.
20251
20252 2011-06-27 Katsumi Yamaoka <yamaoka@jpl.org>
20253
20254 * net/ange-ftp.el: Allow loading .gz files (Bug#6923).
20255 (ange-ftp-make-tmp-name): New arg.
20256 (ange-ftp-file-local-copy): Use it.
20257
20258 2011-06-27 Jambunathan K <kjambunathan@gmail.com>
20259
20260 * tar-mode.el (tar-untar-buffer): Set coding-system-for-write to
20261 no-conversion (Bug#8870).
20262
20263 2011-06-27 Martin Rudalics <rudalics@gmx.at>
20264
20265 * window.el (window-right, window-left, window-child)
20266 (window-child-count, window-last-child)
20267 (window-iso-combination-p, walk-window-tree-1)
20268 (window-atom-check-1, window-tree-1, delete-window)
20269 (window-state-get-1, display-buffer-even-window-sizes): Adapt to
20270 new naming conventions - window-vchild, window-hchild,
20271 window-next and window-prev are now called window-top-child,
20272 window-left-child, window-next-sibling and window-prev-sibling
20273 respectively.
20274 (resize-window-reset): Rename to window-resize-reset.
20275 (resize-window-reset-1): Rename to window-resize-reset-1.
20276 (resize-window): Rename to window-resize.
20277 (window-min-height, window-min-width)
20278 (resize-mini-window, resize-this-window, resize-root-window)
20279 (resize-root-window-vertically, adjust-window-trailing-edge)
20280 (enlarge-window, shrink-window, maximize-window)
20281 (minimize-window, delete-window, quit-restore-window)
20282 (split-window, balance-windows, balance-windows-area-adjust)
20283 (balance-windows-area, window-state-put-2)
20284 (display-buffer-even-window-sizes, display-buffer-set-height)
20285 (display-buffer-set-width, set-window-text-height)
20286 (fit-window-to-buffer): Rename all "resize-window" prefixed
20287 calls to use the "window-resize" prefix convention.
20288 (display-buffer-alist): Fix symbol for label specifier.
20289 (display-buffer-reuse-window): Set reuse-dedicated to cdr of
20290 corresponding specifier.
20291 Reported by Juanma Barranquero <lekktu@gmail.com>.
20292
20293 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
20294
20295 * ses.el (ses-destroy-cell-variable-range): Fix heading comment
20296 convention.
20297 (ses-call-printer): Does not pass an empty string to formatter when the
20298 cell is empty to keep from barking printer Calc math-format-value.
20299
20300 2011-06-27 Richard Stallman <rms@gnu.org>
20301
20302 * battery.el (battery-mode-line-limit): New variable.
20303 (battery-update): Handle it.
20304
20305 * mail/rmailmm.el (rmail-mime-process-multipart):
20306 Handle truncated messages.
20307
20308 2011-06-27 Glenn Morris <rgm@gnu.org>
20309
20310 * progmodes/flymake.el (flymake-err-line-patterns):
20311 Allow for column numbers in the ant/javac pattern. (Bug#8866)
20312
20313 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
20314
20315 * ses.el (ses-relocate-range): Keep rest of arguments for ses-range.
20316 (ses--clean-!, ses--clean-_): New functions.
20317 (ses-range): Add configurability of readout order, and conversion
20318 to Calc vector.
20319
20320 * ses.el (ses-repair-cell-reference-all): New function.
20321 (ses-cell-symbol): Set macro as safe, so that it can be used in
20322 formulas.
20323
20324 * ses.el: Update cycle detection algorithm.
20325 (ses-localvars): Add ses--Dijkstra-attempt-nb and
20326 ses--Dijkstra-weight-bound, and initial values thereof when applicable.
20327 (ses-set-localvars): New function.
20328 (ses-make-cell): Add property-list as a cell element.
20329 (ses-cell-property-get-fun, ses-cell-property-get)
20330 (ses-cell-property-delq-fun, ses-cell-property-set-fun)
20331 (ses-cell-property-pop-fun, ses-cell-property-get-handle-fun):
20332 New functions.
20333 (ses-cell-property-set, ses-cell-property-pop)
20334 (ses-cell-property-get-handle): New macro.
20335 (ses-cell-property-handle-car, ses-cell-property-handle-setcar):
20336 New aliases, used for code readability.
20337 (ses-calculate-cell, ses-update-cells): Use Dijkstra algorithm for
20338 cycle detection.
20339 (ses-self-reference-early-detection): New defcustom.
20340 (ses-formula-references): Robustify against self-referring cells.
20341 (ses-mode): Use ses-set-localvars.
20342 (ses-command-hook): Add call to ses-initialize-Dijkstra-attempt
20343 before lauching the update processing.
20344 (ses-initialize-Dijkstra-attempt): New function.
20345 (ses-recalculate-cell): Update for cycle detection based on
20346 Dijkstra algorithm.
20347
20348 * ses.el: Fix commenting and indenting convention.
20349
20350 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
20351
20352 * bs.el (bs-cycle-next): Complete last change.
20353
20354 2011-06-27 Drew Adams <drew.adams@oracle.com>
20355
20356 * faces.el (list-faces-display): Add help-mode-map to output (bug#8939).
20357
20358 2011-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
20359
20360 * net/network-stream.el (network-stream-open-starttls):
20361 Don't re-get capabilities unless we've reestablished connection.
20362 (network-stream-open-starttls): Fix stupid typo with gnutls-clii.
20363
20364 * mail/smtpmail.el (smtpmail-via-smtp): Bind coding-system-for-*
20365 to binary to possibly avoid line encoding issues on Windows (among
20366 other things).
20367
20368 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
20369
20370 * net/network-stream.el (open-network-stream): Return an :error
20371 saying what the problem was, if possible.
20372
20373 * mail/smtpmail.el (smtpmail-via-smtp): Report the error from the
20374 server.
20375
20376 * net/network-stream.el (network-stream-open-starttls): If we
20377 wanted to use STARTTLS, and the server offered it, but we weren't
20378 able to because we had no STARTTLS support, then close the connection.
20379 (open-network-stream): Return an :error element, if present.
20380
20381 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
20382
20383 * hl-line.el (hl-line-sticky-flag): Doc fix.
20384 (global-hl-line-sticky-flag): New option (Bug#8323).
20385 (global-hl-line-highlight): Obey it.
20386
20387 * vc/vc.el (vc-revert-show-diff): Default to t.
20388
20389 2011-06-26 Ken Manheimer <ken.manheimer@gmail.com>
20390
20391 * allout-widgets.el (allout-widgets-post-command-business):
20392 Stop decorating intermediate isearch matches. They're not being
20393 undecorated when an isearch is continued past, and isearch
20394 automatically collapses them. This leads to "widget leaks", where
20395 decorated items accumulate in collapsed areas. Lines with lots of
20396 hidden widgets can slow down cursor travel, substantially.
20397 Too much complicated machinery would be needed to ensure undecoration,
20398 so we're doing without this nicety.
20399
20400 (allout-widgets-tally-string): Don't try to do a hash-table-count
20401 of allout-widgets-tally when it's nil. This eliminates spurious "Error
20402 during redisplay: (wrong-type-argument hash-table-p nil)" warnings in
20403 *Messages* when allout-widgets-maintain-tally is t.
20404
20405 2011-06-26 Martin Rudalics <rudalics@gmx.at>
20406
20407 * window.el (display-buffer-normalize-argument): Rename to
20408 display-buffer-normalize-arguments. Handle special meaning of
20409 LABEL argument. Respect special-display-function when popping up
20410 a new frame. Fix code searching for a window showing the buffer
20411 on another frame.
20412 (display-buffer-normalize-specifiers):
20413 Call display-buffer-normalize-arguments.
20414 (display-buffer-in-window): Don't undedicate the window if its
20415 buffer remains the same.
20416 Reported by Drew Adams <drew.adams@oracle.com>.
20417 (display-buffer-alist): Add choice for same-window macro
20418 specfier.
20419 (display-buffer): Mention special meaning of LABEL argument in
20420 doc-string. Fix quoting. Don't pop up a new frame even as
20421 fallback.
20422
20423 2011-06-26 Juanma Barranquero <lekktu@gmail.com>
20424
20425 * bs.el (bs-cycle-next): Pass current buffer to `bury-buffer' to
20426 avoid deleting the current window in some cases (bug#8911).
20427
20428 2011-06-26 Andreas Schwab <schwab@linux-m68k.org>
20429
20430 * emacs-lisp/smie.el (smie-bnf->prec2): Fix last change.
20431 (Bug#8934)
20432
20433 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
20434
20435 * net/network-stream.el (network-stream-open-starttls):
20436 Use built-in TLS support if `gnutls-available-p' is true.
20437 (network-stream-open-tls): Ditto.
20438
20439 2011-06-26 Leo Liu <sdl.web@gmail.com>
20440
20441 * register.el (registerv): New struct.
20442 (registerv-make): New function.
20443 (jump-to-register, describe-register-1, insert-register):
20444 Support the jump-func, print-func and insert-func slot of a registerv
20445 struct. (Bug#8415)
20446
20447 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
20448
20449 * vc/vc.el (vc-revert-show-diff): New defcustom.
20450 (vc-diff-internal): New arg specifying diff buffer.
20451 (vc-revert): Obey vc-revert-show-diff. If we show a diff, don't
20452 reuse an existing *vc-diff* buffer (Bug#8927).
20453
20454 * progmodes/cperl-mode.el (cperl-mode): Derive from prog-mode.
20455
20456 2011-06-26 Glenn Morris <rgm@gnu.org>
20457
20458 * progmodes/f90.el (f90-critical-indent): New option.
20459 (f90-font-lock-keywords-2, f90-blocks-re, f90-end-block-re)
20460 (f90-start-block-re, f90-mode-abbrev-table): Add block, critical.
20461 (f90-mode): Doc fix.
20462 (f90-looking-at-critical, f90-looking-at-end-critical): New funcs.
20463 (f90-no-block-limit, f90-calculate-indent, f90-end-of-block)
20464 (f90-beginning-of-block, f90-next-block, f90-indent-region)
20465 (f90-match-end): Handle block, critical.
20466
20467 2011-06-25 Glenn Morris <rgm@gnu.org>
20468
20469 * calendar/diary-lib.el (diary-included-files): Doc fix.
20470 (diary-include-files): New function, extracted from
20471 diary-include-other-diary-files and diary-mark-included-diary-files.
20472 (diary-include-other-diary-files, diary-mark-included-diary-files):
20473 Just call diary-include-files.
20474 (diary-mark-entries): Reset diary-included-files on first call.
20475
20476 * calendar/diary-lib.el (diary-mark-entries)
20477 (diary-mark-included-diary-files):
20478 Visit included diary-files in temp buffers.
20479
20480 * progmodes/f90.el (f90-keywords-re, f90-font-lock-keywords-1)
20481 (f90-blocks-re, f90-program-block-re, f90-end-block-re)
20482 (f90-start-block-re, f90-imenu-generic-expression)
20483 (f90-looking-at-program-block-start, f90-no-block-limit):
20484 Add support for submodules.
20485
20486 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
20487 (f90-procedures-re, f90-constants-re): Add some F2008 stuff.
20488
20489 2011-06-25 Eli Zaretskii <eliz@gnu.org>
20490
20491 * net/ange-ftp.el (ange-ftp-insert-file-contents): Let-bind
20492 buffer-file-type before setting its value, to avoid disastrous
20493 global effects on decoding files for DOS/Windows systems. (Bug#8780)
20494
20495 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
20496
20497 * allout.el (allout-unload-function): Pass -1 to `allout-mode'.
20498
20499 * ses.el (ses-unload-function):
20500 * emacs-lisp/re-builder.el (re-builder-unload-function): Simplify.
20501
20502 * proced.el (proced-unload-function):
20503 * progmodes/cperl-mode.el (cperl-mode-unload-function): Remove.
20504
20505 2011-06-25 Andreas Rottmann <a.rottmann@gmx.at>
20506
20507 * server.el (server-create-window-system-frame): Add parameters arg.
20508 (server-process-filter): Doc fix. Handle frame-parameters.
20509
20510 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
20511
20512 Fix bug#8730, bug#8781.
20513
20514 * loadhist.el (unload--set-major-mode): New function.
20515 (unload-feature): Use it.
20516
20517 * progmodes/python.el (python-after-info-look): Add autoload cookie.
20518 (python-unload-function): New function.
20519
20520 2011-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
20521
20522 * mail/rmail.el (rmail-show-message-1): Use restore-buffer-modified-p.
20523
20524 2011-06-25 Giuseppe Scrivano <gscrivano@gnu.org>
20525
20526 * net/browse-url.el (browse-url-firefox-program): Add icecat to
20527 the candidates list.
20528
20529 2011-06-24 Juanma Barranquero <lekktu@gmail.com>
20530
20531 * progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
20532
20533 2011-06-23 Richard Stallman <rms@gnu.org>
20534
20535 * mail/rmail.el: Going to grep hit in Rmail buffer finds the message.
20536 (rmail-variables): Set next-error-move-function.
20537 (rmail-what-message): Take argument POS.
20538 (rmail-next-error-move): New function.
20539
20540 2011-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
20541
20542 * emacs-lisp/smie.el (smie-bnf->prec2): Give more understandable error
20543 messages for adjacent non-terminals.
20544
20545 2011-06-23 Richard Stallman <rms@gnu.org>
20546
20547 * mail/rmail.el (rmail-retry-ignored-headers): Add message-id.
20548 (rmail-show-message-1): Preserve buffer modified flag.
20549 (rmail-start-mail): Don't specify use of rmail-mail-return;
20550 that's done by mail-bury now.
20551 (rmail-mail-return): Handle arg NEWBUF.
20552
20553 2011-06-23 Michael Albinus <michael.albinus@gmx.de>
20554
20555 * net/tramp-sh.el (tramp-method-out-of-band-p): Check, whether
20556 SIZE is a number.
20557
20558 2011-06-23 Martin Rudalics <rudalics@gmx.at>
20559
20560 * window.el (get-lru-window, get-mru-window)
20561 (get-largest-window): Never return a minibuffer window.
20562 (display-buffer-pop-up-window): Fix a bug that could lead to
20563 reusing the minibuffer window.
20564 (display-buffer): Pass original specifier argument to
20565 display-buffer-function instead of the normalized one.
20566 Reported by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
20567
20568 2011-06-22 Leo Liu <sdl.web@gmail.com>
20569
20570 * minibuffer.el (completing-read-function)
20571 (completing-read-default): Move from minibuf.c.
20572
20573 2011-06-22 Richard Stallman <rms@gnu.org>
20574
20575 * mail/sendmail.el (mail-bury): If Rmail is in use, return nicely
20576 to Rmail even if not started by a special Rmail command.
20577
20578 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
20579 Copy the buffer currently showing just one message.
20580
20581 2011-06-22 Roland Winkler <winkler@gnu.org>
20582
20583 * textmodes/bibtex.el (bibtex-entry-update): Use mapc.
20584 (bibtex-clean-entry): First delete the old key so that a
20585 customized algorithm for generating the new key does not get
20586 confused by the old key.
20587 (bibtex-url): Obey regexp of first step.
20588 (bibtex-search-entries): Do not use add-to-list with local
20589 list-var.
20590
20591 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
20592
20593 * mail/smtpmail.el (smtpmail-try-auth-methods): If the user has
20594 stored a user name, then query for the password first, instead of
20595 waiting for SMTP to give an error message and the trying again.
20596
20597 2011-06-22 Lawrence Mitchell <wence@gmx.li>
20598
20599 * net/browse-url.el (browse-url-xdg-open): Use 0, rather than nil
20600 BUFFER in call-process.
20601
20602 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
20603
20604 * mail/smtpmail.el (smtpmail-via-smtp): Make sure we don't send
20605 QUIT twice.
20606 (smtpmail-try-auth-methods): Require user name and password from
20607 auth-source.
20608
20609 2011-06-22 Martin Rudalics <rudalics@gmx.at>
20610
20611 * window.el (display-buffer-default-specifiers)
20612 (display-buffer-alist): Remove entries for pop-up-frame-alist.
20613 Suggested by Katsumi Yamaoka <yamaoka@jpl.org>.
20614 (split-window): Normalize SIDE argument (Bug#8916).
20615
20616 * frame.el (pop-up-frame-alist, pop-up-frame-function)
20617 (special-display-frame-alist, special-display-popup-frame):
20618 Remove duplicate declarations. These are now in window.el.
20619
20620 2011-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
20621
20622 * mail/smtpmail.el (smtpmail-via-smtp):
20623 Set :use-starttls-if-possible so that we always use STARTTLS if the
20624 server supports it. SMTP servers that support STARTTLS commonly
20625 require it.
20626
20627 * net/network-stream.el (network-stream-open-starttls): Support
20628 upgrading to STARTTLS always, even if we don't have built-in support.
20629 (open-network-stream): Add the :always-query-capabilities keyword.
20630
20631 * mail/smtpmail.el: Rewritten to do opportunistic STARTTLS
20632 upgrades with `open-network-stream', and rely solely on
20633 auth-source for all credentials. Big changes throughout the file,
20634 but in particular:
20635 (smtpmail-auth-credentials): Remove.
20636 (smtpmail-starttls-credentials): Remove.
20637 (smtpmail-via-smtp): Check for servers saying they want AUTH after
20638 MAIL FROM, too.
20639
20640 * net/network-stream.el (network-stream-open-starttls):
20641 Provide support for client certificates both for external and built-in
20642 STARTTLS.
20643 (auth-source): Require.
20644 (open-network-stream): Document the :client-certificate keyword.
20645 (network-stream-certificate): Change cert-cert to cert and
20646 cert-key to key.
20647
20648 2011-06-21 Michael Albinus <michael.albinus@gmx.de>
20649
20650 * net/tramp-cache.el (top): Don't load the persistency file when
20651 "emacs -Q" has been called.
20652
20653 2011-06-21 Tim Harper <timcharper@gmail.com>
20654
20655 * term/ns-win.el (ns-initialize-window-system):
20656 Set application-specific `ApplePressAndHoldEnabled' system
20657 resource to NO as it is not yet supported by the NS port.
20658
20659 2011-06-21 Juanma Barranquero <lekktu@gmail.com>
20660
20661 * misc.el (list-dynamic-libraries--refresh): Compute header here...
20662 (list-dynamic-libraries): ...not here.
20663
20664 2011-06-21 Leo Liu <sdl.web@gmail.com>
20665
20666 * subr.el (sha1): Implement sha1 using secure-hash.
20667
20668 2011-06-21 Martin Rudalics <rudalics@gmx.at>
20669
20670 * window.el (display-buffer-alist): In default value do not
20671 enforce searching a window on any but the selected frame.
20672 Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
20673 (display-buffer-select-window): Remove function.
20674 (display-buffer-in-window): When a window on another frame gets
20675 reused, do not select it any more but just raise its frame if
20676 necessary (Bug#8851) and (Bug#8856).
20677 (display-buffer-normalize-options): Handle pop-up-frames related
20678 options more faithfully.
20679 (pop-to-buffer): Don't rely on `display-buffer' selecting the
20680 window if it is on another frame.
20681 (display-buffer-alist, display-buffer-default-specifiers):
20682 Don't make new frame unsplittable by default.
20683 (display-buffer-normalize-argument): Fix doc-string typo and use
20684 'same-frame-other-window instead of 'other-window when associating
20685 with display-buffer-macro-specifiers.
20686
20687 2011-06-21 Vincent Belaïche <vincent.b.1@hotmail.fr>
20688
20689 * play/5x5.el (5x5-solve-rotate-left, 5x5-solve-rotate-right):
20690 New functions.
20691 (5x5-mode-map, 5x5-mode-menu): Bind them.
20692 (5x5-draw-grid): Tweak the solver's rendering.
20693
20694 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
20695
20696 * progmodes/compile.el (compilation-error-regexp-alist-alist): Rename
20697 `caml' to `python-tracebacks-and-caml'; allow leading tabs (bug#8585).
20698
20699 2011-06-21 Drew Adams <drew.adams@oracle.com>
20700
20701 * menu-bar.el: Use function variable instead of switch-to-buffer.
20702 (menu-bar-select-buffer-function): New variable.
20703 (menu-bar-update-buffers): Use it (bug#8876).
20704
20705 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
20706
20707 * emacs-lisp/bytecomp.el (add-to-list): Add handler to check the
20708 variable's status.
20709
20710 2011-06-20 Jan Djärv <jan.h.d@swipnet.se>
20711
20712 * x-dnd.el (x-dnd-version-from-flags)
20713 (x-dnd-more-than-3-from-flags): New functions that handle long-as-cons
20714 and long as number (Bug#8899).
20715 (x-dnd-handle-xdnd): Call functions above (Bug#8899).
20716
20717 2011-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
20718
20719 * minibuffer.el (completion-metadata): Add `metadata' to the alist.
20720 (completion-try-completion, completion-all-completions): Compute the
20721 metadata argument if it's missing; make it optional (bug#8795).
20722
20723 * wid-edit.el: Use lex-bind and move towards completion-at-point.
20724 (widget-complete): Use new :completion-function property.
20725 (widget-completions-at-point): New function.
20726 (default): Use :completion-function instead of :complete.
20727 (widget-default-completions): Rename from widget-default-complete;
20728 Rewrite.
20729 (widget-string-complete, widget-file-complete, widget-color-complete):
20730 Remove functions.
20731 (file, symbol, function, variable, coding-system, color):
20732 * international/mule-cmds.el (default-input-method, charset)
20733 (language-info-custom-alist):
20734 * cus-edit.el (face): Use new property :completions.
20735
20736 * progmodes/pascal.el (pascal-completions-at-point): New function.
20737 (pascal-mode): Use it.
20738 (pascal-mode-map): Use completion-at-point.
20739 (pascal-toggle-completions): Make obsolete.
20740 (pascal-complete-word, pascal-show-completions):
20741 * progmodes/octave-mod.el (octave-complete-symbol):
20742 Redefine as obsolete alias.
20743 * progmodes/octave-inf.el (inferior-octave-completion-at-point):
20744 Signal absence of completion info for old Octave,
20745 (inferior-octave-complete): Redefine as obsolete alias.
20746 * progmodes/meta-mode.el: Use lexical-binding and completion-at-point.
20747 (meta-completions-at-point): Rename from meta-complete-symbol and
20748 adapt it for use on completion-at-point-functions.
20749 (meta-common-mode): Use it.
20750 (meta-looking-at-backward, meta-match-buffer): Remove.
20751 (meta-complete-symbol): Redefine as obsolete alias.
20752 (meta-common-mode-map): Use completion-at-point.
20753 * progmodes/make-mode.el: Use lexical-binding and completion-at-point.
20754 (makefile-mode-map): Use completion-at-point.
20755 (makefile-completions-at-point): Rename from makefile-complete and
20756 adapt it for use on completion-at-point-functions.
20757 (makefile-mode): Use it.
20758 (makefile-complete): Redefine as obsolete alias.
20759
20760 2011-06-20 Deniz Dogan <deniz@dogan.se>
20761
20762 * net/rcirc.el: Delete trailing whitespaces once and for all.
20763
20764 2011-06-20 Daniel Colascione <dan.colascione@gmail.com>
20765
20766 * emacs-lisp/syntax.el (syntax-ppss): Further improve docstring.
20767
20768 2011-06-19 Chong Yidong <cyd@stupidchicken.com>
20769
20770 * files.el (auto-mode-alist): Entry for m2-mode (Bug#8852).
20771
20772 * info.el (Info-apropos-toc-nodes): Minor doc fix (Bug#8833).
20773
20774 2011-06-19 Martin Rudalics <rudalics@gmx.at>
20775
20776 * window.el (display-buffer-other-window-means-other-frame):
20777 Call display-buffer-normalize-alist.
20778 (display-buffer-normalize-specifiers-1): Rename to
20779 display-buffer-normalize-argument. New argument other-frame.
20780 Rewrite.
20781 (display-buffer-normalize-specifiers-2): Rename to
20782 display-buffer-normalize-options.
20783 (display-buffer-normalize-alist-1): New function.
20784 (display-buffer-normalize-specifiers-3): Rename to
20785 display-buffer-normalize-alist.
20786 Call display-buffer-normalize-alist-1.
20787 (display-buffer-normalize-options-inhibit): New variable.
20788 (display-buffer-normalize-specifiers): Rewrite calling
20789 display-buffer-normalize-alist,
20790 display-buffer-normalize-argument, and
20791 display-buffer-normalize-options. Don't call the latter if
20792 display-buffer-normalize-options-inhibit is non-nil.
20793 (frame-auto-delete): New option.
20794 (window-deletable-p): Use frame-auto-delete.
20795 (window-list-no-nils, window-state-ignored-parameters)
20796 (window-state-get-1, window-state-get, window-state-put-list)
20797 (window-state-put-1, window-state-put-2, window-state-put):
20798 New functions.
20799 (display-buffer-normalize-options): Move special-display-p group
20800 after pop-up-frame group (Bug#8851) and (Bug#8856).
20801
20802 2011-06-18 Chong Yidong <cyd@stupidchicken.com>
20803
20804 * emacs-lisp/rx.el (rx-constituents): Add support for numbered
20805 groups (Bug#8776).
20806 (rx-submatch-n): New function.
20807 (rx): Document it.
20808
20809 * dired-x.el (dired-mark-unmarked-files): Fix interactive spec
20810 (Bug#8768).
20811
20812 * replace.el (occur-mode-map): Set occur-edit-mode binding to "e".
20813
20814 * textmodes/fill.el (default-justification): Add :safe (Bug#8879).
20815
20816 * cus-face.el (custom-declare-face): Call custom-theme-recalc face
20817 anytime existing face settings are present (Bug#8889).
20818
20819 * progmodes/delphi.el (delphi-mode-syntax-table): Use defvar.
20820 (delphi-mode): Use define-derived-mode to inherit from prog-mode.
20821 Remove unused argument.
20822
20823 2011-06-18 Martin Rudalics <rudalics@gmx.at>
20824
20825 * window.el (display-buffer-default-specifiers):
20826 Remove pop-up-frame. Add pop-up-window-min-height,
20827 pop-up-window-min-width, and another reuse-window specifier
20828 (Bug#8882). Reported by Dan Nicolaescu <dann@gnu.org>.
20829 (display-buffer-normalize-specifiers-2):
20830 Handle split-height-threshold and split-width-threshold also when
20831 pop-up-windows is unset. Add a reuse-window specifier for the
20832 case popping up a new window fails.
20833 (special-display-popup-frame): Remove double quoting.
20834 (display-buffer-normalize-specifiers-1): Fix thinko.
20835
20836 2011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
20837
20838 * shell.el (shell-completion-vars): Set pcomplete-termination-string
20839 according to comint-completion-addsuffix.
20840
20841 * pcomplete.el: Convert to lexical binding and fix bug#8819.
20842 (pcomplete-suffix-list): Mark as obsolete.
20843 (pcomplete-completions-at-point): Capture pcomplete-norm-func and
20844 pcomplete-seen in the closure.
20845 (pcomplete-comint-setup): Setup completion-at-point as well.
20846 (pcomplete--entries): New function.
20847 (pcomplete--env-regexp): New var.
20848 (pcomplete-entries): Rewrite to work with partial-completion and
20849 without relying on pcomplete-suffix-list.
20850 (pcomplete-pare-list): Remove, unused.
20851
20852 2011-06-17 Martin Rudalics <rudalics@gmx.at>
20853
20854 * window.el (display-buffer-alist): Set pop-up-window-min-height
20855 and pop-up-window-min-width in default value. Reported by
20856 Thierry Volpiatto <thierry.volpiatto@gmail.com>. New specifier
20857 other-window-means-other-frame.
20858 (display-buffer-macro-specifiers): Comment out entry for
20859 other-window specifier.
20860 (display-buffer-other-window-means-other-frame): New function.
20861 (display-buffer-normalize-specifiers-1): New arguments
20862 buffer-name and label. Treat other-window case specially.
20863 (display-buffer-normalize-specifiers-2): Treat other-window case
20864 specially.
20865 (display-buffer-normalize-specifiers-3): New function.
20866 (display-buffer-normalize-specifiers):
20867 Call display-buffer-normalize-specifiers-3.
20868
20869 2011-06-17 Martin Rudalics <rudalics@gmx.at>
20870
20871 * window.el (same-window-p): Fix two typos introduced when
20872 adding with-no-warnings.
20873 (display-buffer-normalize-specifiers-1): Don't check
20874 pop-up-frames for 'unset initialization.
20875 (display-buffer-normalize-specifiers-2): Major rewrite using
20876 special-display-p and same-window-p (Bug#8851) and (Bug#8856).
20877 (pop-up-frames, display-buffer-reuse-frames)
20878 (display-buffer-mark-dedicated): Don't initialize to 'unset.
20879 Suggested by David Engster <deng@randomsample.de>.
20880 (even-window-heights): Initialize to 'unset.
20881 (display-buffer-alist-set): Handle new 'unset initializations.
20882 (display-buffer-macro-specifiers): Don't pop up a new frame in the
20883 other window case.
20884
20885 2011-06-16 Martin Rudalics <rudalics@gmx.at>
20886
20887 * window.el (display-buffer-normalize-specifiers-1):
20888 Respect current value of pop-up-frames for most reasonable values of
20889 second argument of display-buffer (Bug#8865).
20890 (switch-to-buffer-same-frame, switch-to-buffer-other-window)
20891 (switch-to-buffer-other-window-same-frame)
20892 (switch-to-buffer-other-frame): Fix doc-strings. Reported by Drew
20893 Adams (Bug#8875).
20894 (display-buffer): Don't check noninteractive when calling
20895 display-buffer-pop-up-frame.
20896 (display-buffer-pop-up-frame): Never pop up a frame in
20897 noninteractive mode (Bug#8857).
20898 (enlarge-window, shrink-window): Don't report an error when the
20899 window can't be resized as requested (Bug#8862).
20900
20901 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
20902
20903 * pcmpl-rpm.el (pcomplete/rpm): Minor simplification.
20904
20905 * emacs-lisp/debug.el (debug): Don't leave the buffer in Debugger.
20906
20907 * abbrev.el (define-abbrev-table): Don't add a table multiple times.
20908
20909 2011-06-15 Alan Mackenzie <acm@muc.de>
20910
20911 * progmodes/cc-fonts.el (c-font-lock-declarations): 1: Whilst checking
20912 for declarators, disable knr checking to speed up for normal files.
20913 2: Refactor, replacing a sequence of nested if forms by a cond form.
20914
20915 2011-06-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
20916
20917 * net/network-stream.el (open-network-stream): Add the keyword
20918 :always-query-capabilities for the case where you want to force a
20919 `plain' network connection, but the protocol still requires the
20920 capabilitiy command (i.e., SMTP and EHLO).
20921
20922 * subr.el (process-live-p): Rename from `process-alive-p' for
20923 consistency with other `-live-p' functions.
20924
20925 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
20926
20927 * window.el (same-window-buffer-names, same-window-regexps)
20928 (special-display-frame-alist, special-display-popup-frame)
20929 (special-display-function, special-display-buffer-names)
20930 (special-display-regexps, pop-up-frame-alist)
20931 (pop-up-frame-function, pop-up-frames, display-buffer-reuse-frames)
20932 (pop-up-windows, split-window-preferred-function)
20933 (split-height-threshold, split-width-threshold, even-window-heights)
20934 (display-buffer-mark-dedicated): Don't encourage the use of
20935 display-buffer-alist from Elisp code.
20936
20937 2011-06-15 Dan Nicolaescu <dann@ics.uci.edu>
20938
20939 * progmodes/python.el (python-mode): Derive from prog-mode.
20940 * progmodes/ps-mode.el (ps-mode):
20941 * progmodes/mixal-mode.el (mixal-mode):
20942 * progmodes/cfengine.el (cfengine-mode):
20943 * progmodes/ld-script.el (ld-script-mode): Likewise.
20944
20945 2011-06-15 Martin Rudalics <rudalics@gmx.at>
20946
20947 * window.el (display-buffer-alist): Trim default value to avoid
20948 popping up a new frame (Bug#8857) or reusing an arbitrary window
20949 on another frame.
20950 (display-buffer): Do not fall back on popping up a new frame in
20951 batch mode (Bug#8857).
20952
20953 2011-06-14 Chong Yidong <cyd@stupidchicken.com>
20954
20955 * cus-theme.el (describe-theme-1): Use custom-theme-p.
20956 (custom-theme-summary): New function.
20957 (customize-themes): Use it.
20958
20959 2011-06-13 Glenn Morris <rgm@gnu.org>
20960
20961 * cus-dep.el (custom-make-dependencies): Use up command-line-args-left.
20962
20963 2011-06-13 Martin Rudalics <rudalics@gmx.at>
20964
20965 * help.el (help-window): Remove variable.
20966 (help-window-point-marker, temp-buffer-max-height)
20967 (temp-buffer-resize-mode, help-window-select): Rewrite doc-strings.
20968 (help-print-return-message): Don't set help-window.
20969 (resize-temp-buffer-window): Rewrite cod eand doc-string.
20970 (help-window-setup-finish): Remove.
20971 (help-window-display-message, help-window-setup)
20972 (with-help-window): Major rewrite based on new
20973 display-buffer-window variable.
20974
20975 * help-mode.el (help-mode-finish): Remove help-window related
20976 code.
20977
20978 * view.el (view-exits-all-viewing-windows): Remove reference to
20979 view-return-to-alist in doc-string.
20980 (view-return-to-alist): Make obsolete.
20981 (view-buffer): Call pop-to-buffer-same-window and remove
20982 undo-window code.
20983 (view-buffer-other-window): Call pop-to-buffer-other-window and
20984 simplify code. Ignore second argument.
20985 (view-buffer-other-frame): Call pop-to-buffer-other-frame and
20986 simplify code. Ignore second argument.
20987 (view-return-to-alist-update): Make obsolete.
20988 (view-mode-enter): Rename second argument to QUIT-RESTORE.
20989 Rewrite using quit-restore window parameters.
20990 (view-mode-exit): Rename second argument to EXIT-ONLY.
20991 Rewrite using quit-restore-window.
20992 (View-exit, View-exit-and-edit, View-leave, View-quit)
20993 (View-quit-all, View-kill-and-leave): Call view-mode-exit with
20994 appropriate arguments.
20995 (view-end-message): Use quit-restore window parameter.
20996
20997 * window.el (display-buffer-function): Rewrite doc-string.
20998 (display-buffer-window, display-buffer-alist): New variables.
20999 (display-buffer-split-specifiers)
21000 (display-buffer-side-specifiers)
21001 (display-buffer-macro-specifiers): New constants.
21002 (display-buffer-even-window-sizes, display-buffer-set-height)
21003 (display-buffer-set-width, display-buffer-select-window)
21004 (display-buffer-in-window, display-buffer-reuse-window)
21005 (display-buffer-split-window-1, display-buffer-split-window)
21006 (display-buffer-split-atom-window, display-buffer-pop-up-window)
21007 (display-buffer-pop-up-frame, display-buffer-pop-up-side-window)
21008 (display-buffer-in-side-window, normalize-buffer-to-display)
21009 (display-buffer-normalize-specifiers-1)
21010 (display-buffer-normalize-specifiers-2)
21011 (display-buffer-normalize-specifiers, display-buffer-frame):
21012 New functions.
21013 (display-buffer): Major rewrite.
21014 (display-buffer-other-window, display-buffer-other-frame)
21015 (pop-to-buffer, switch-to-buffer-other-window)
21016 (switch-to-buffer-other-frame): Rewrite.
21017 (display-buffer-same-window, display-buffer-same-frame)
21018 (display-buffer-same-frame-other-window)
21019 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
21020 (pop-to-buffer-other-window)
21021 (pop-to-buffer-same-frame-other-window)
21022 (pop-to-buffer-other-frame, switch-to-buffer-same-frame)
21023 (switch-to-buffer-other-window-same-frame): New functions.
21024 (same-window-p, special-display-p): Rewrite disabling warnings.
21025 Make obsolete.
21026 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
21027 (display-buffer-mark-dedicated): Initialize to symbol 'unset.
21028 Make obsolete
21029 (same-window-buffer-names, same-window-regexps)
21030 (special-display-frame-alist, special-display-popup-frame)
21031 (special-display-function, special-display-buffer-names)
21032 (special-display-regexps, pop-up-frame-alist)
21033 (pop-up-frame-function, split-window-preferred-function)
21034 (split-height-threshold, split-width-threshold)
21035 (even-window-heights): Make obsolete.
21036
21037 2011-06-12 Glenn Morris <rgm@gnu.org>
21038
21039 * term/xterm.el (terminal-init-xterm): `version' may be nil. (Bug#8838)
21040 Misc simplifications.
21041
21042 2011-06-12 Martin Rudalics <rudalics@gmx.at>
21043
21044 * window.el (window-safely-shrinkable-p): Restore function which
21045 was inadvertently removed in change from 2011-06-11. Declare as
21046 obsolete.
21047
21048 * calendar/calendar.el (calendar-generate-window):
21049 Use window-iso-combined-p instead of combination of one-window-p and
21050 window-safely-shrinkable-p.
21051
21052 2011-06-12 Glenn Morris <rgm@gnu.org>
21053
21054 * progmodes/fortran.el (fortran-mode-syntax-table):
21055 * progmodes/f90.el (f90-mode-syntax-table):
21056 Set % to punctuation. (Bug#8820)
21057 (f90-find-tag-default): Remove, no longer needed.
21058
21059 2011-06-12 Daniel Colascione <dan.colascione@gmail.com>
21060
21061 * emacs-lisp/syntax.el (syntax-ppss): Clarify which items are invalid.
21062
21063 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
21064
21065 * image.el (image-animated-p): Return animation delay in seconds.
21066 Avoid bit manipulation in Lisp; use `delay' entry in the metadata.
21067 (image-animate-timeout): Remove DELAY argument. Don't assume
21068 every subimage has the same delay; get it from image-animated-p.
21069 (image-animate): Caller changed.
21070
21071 2011-06-11 Michael Albinus <michael.albinus@gmx.de>
21072
21073 * net/tramp.el (tramp-debug-message): Add `tramp-with-progress-reporter'
21074 to ignored backtrace functions.
21075
21076 2011-06-11 Glenn Morris <rgm@gnu.org>
21077
21078 * calendar/appt.el (appt-disp-window-function): Doc fix.
21079 (appt-check): Handle overlapping appointments. (Bug#8337)
21080
21081 2011-06-11 Martin Rudalics <rudalics@gmx.at>
21082
21083 * window.el (window-tree-1, window-tree): New functions, moving
21084 the latter to window.el.
21085 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
21086 (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
21087 (bw-refresh-edges): Remove.
21088 (balance-windows-1, balance-windows-2): New functions.
21089 (balance-windows): Rewrite in terms of window tree functions,
21090 balance-windows-1 and balance-windows-2.
21091 (bw-adjust-window): Remove.
21092 (balance-windows-area-adjust): New function with functionality of
21093 bw-adjust-window but using resize-window.
21094 (set-window-text-height): Rewrite doc-string.
21095 Use normalize-live-window and resize-window.
21096 (enlarge-window-horizontally, shrink-window-horizontally):
21097 Rename argument to DELTA.
21098 (window-buffer-height): New function.
21099 (fit-window-to-buffer, shrink-window-if-larger-than-buffer):
21100 Rewrite using new window resize routines.
21101 (kill-buffer-and-window, mouse-autoselect-window-select):
21102 Use ignore-errors instead of condition-case.
21103 (quit-window): Call delete-frame instead of delete-windows-on
21104 for the only buffer on frame.
21105
21106 2011-06-10 Martin Rudalics <rudalics@gmx.at>
21107
21108 * loadup.el (top-level): Load window before files for the sake
21109 of replace-buffer-in-windows.
21110
21111 * files.el (read-buffer-to-switch)
21112 (switch-to-buffer-other-window)
21113 (switch-to-buffer-other-frame, display-buffer-other-frame):
21114 Move to window.el.
21115
21116 * simple.el (get-next-valid-buffer, last-buffer, next-buffer)
21117 (previous-buffer): Move to window.el.
21118
21119 * bindings.el (unbury-buffer): Move to window.el.
21120
21121 * window.el (delete-other-windows-vertically): Move after
21122 definition of delete-other-windows.
21123 (other-window, delete-windows-on, replace-buffer-in-windows):
21124 Move here from window.c.
21125 (record-window-buffer, unrecord-window-buffer)
21126 (set-window-buffer-start-and-point, switch-to-prev-buffer)
21127 (switch-to-next-buffer): New functions.
21128 (get-next-valid-buffer, last-buffer, next-buffer): Move here
21129 from simple.el. Call switch-to-next-buffer.
21130 (previous-buffer): Move here from simple.el.
21131 Call switch-to-prev-buffer.
21132 (bury-buffer): Move here from buffer.c. Switch to previous
21133 buffer when window cannot be deleted.
21134 (unbury-buffer): Move here from bindings.el.
21135 (ctl-x-map): Move binding for other-window from window.c to
21136 here.
21137 (read-buffer-to-switch, switch-to-buffer-other-window)
21138 (switch-to-buffer-other-frame): Move here from files.el.
21139 (normalize-buffer-to-switch-to): New functions.
21140 (switch-to-buffer): Move here from buffer.c.
21141 Use read-buffer-to-switch and normalize-buffer-to-switch-to.
21142
21143 2011-06-10 Martin Rudalics <rudalics@gmx.at>
21144
21145 * window.el (window-min-height, window-min-width): Move here
21146 from window.c. Add defcustoms and rewrite doc-strings.
21147 (resize-mini-window, resize-window): New functions.
21148 (adjust-window-trailing-edge, enlarge-window, shrink-window):
21149 Move here from window.c.
21150 (maximize-window, minimize-window): New functions.
21151 (delete-window, delete-other-windows, split-window): Move here
21152 from window.c.
21153 (window-split-min-size): New function.
21154 (split-window-keep-point): Mention split-window-above-each-other
21155 instead of split-window-vertically.
21156 (split-window-above-each-other, split-window-vertically):
21157 Rename split-window-vertically to split-window-above-each-other
21158 and provide defalias for old definition.
21159 (split-window-side-by-side, split-window-horizontally):
21160 Rename split-window-horizontally to split-window-side-by-side
21161 and provide defalias for the old definition.
21162 (ctl-x-map): Move bindings for delete-window,
21163 delete-other-windows and enlarge-window here from window.c.
21164 Replace bindings for split-window-vertically and
21165 split-window-horizontally by bindings for
21166 split-window-above-each-other and split-window-side-by-side.
21167
21168 * cus-start.el (all): Remove entries for window-min-height and
21169 window-min-width. Add entries for window-splits and
21170 window-nest.
21171
21172 2011-06-09 Glenn Morris <rgm@gnu.org>
21173
21174 * calendar/appt.el (appt-mode-line): New function.
21175 (appt-check, appt-disp-window): Use it.
21176
21177 * files.el (hack-one-local-variable-eval-safep):
21178 Allow minor-modes with explicit +/-1 arguments.
21179
21180 2011-06-09 Teodor Zlatanov <tzz@lifelogs.com>
21181
21182 * term/xterm.el (xterm): Add defgroup.
21183 (xterm-extra-capabilities): Add defcustom to supply known xterm
21184 capabilities, skip querying them, or query them (default).
21185 (terminal-init-xterm): Use it.
21186 (terminal-init-xterm-modify-other-keys): New function to set up
21187 modifyOtherKeys support to simplify `terminal-init-xterm'.
21188
21189 2011-06-09 Martin Rudalics <rudalics@gmx.at>
21190
21191 * window.el (resize-window-reset, resize-window-reset-1)
21192 (resize-subwindows-skip-p, resize-subwindows-normal)
21193 (resize-subwindows, resize-other-windows, resize-this-window)
21194 (resize-root-window, resize-root-window-vertically)
21195 (window-deletable-p, window-or-subwindow-p)
21196 (frame-root-window-p): New functions.
21197
21198 2011-06-09 Glenn Morris <rgm@gnu.org>
21199
21200 * net/ange-ftp.el (ange-ftp-switches-ok): New function.
21201 (ange-ftp-get-files): Use it.
21202
21203 2011-06-09 Alexander Klimov <alserkli@inbox.ru> (tiny change)
21204
21205 * mail/sendmail.el (mail-recover-1, mail-recover):
21206 * files.el (recover-file, recover-session):
21207 Handle dired-listing-switches not being just a single short option.
21208
21209 2011-06-09 Glenn Morris <rgm@gnu.org>
21210
21211 * calendar/appt.el (appt-display-message, appt-disp-window):
21212 Handle lists of appointments.
21213
21214 2011-06-08 Martin Rudalics <rudalics@gmx.at>
21215
21216 * window.el (one-window-p): Move down in code.
21217 Rewrite doc-string.
21218 (window-current-scroll-bars): Rewrite doc-string.
21219 Normalize live window argument.
21220 (walk-windows, get-window-with-predicate, count-windows):
21221 Rewrite doc-string. Use window-list-1.
21222 (window-in-direction-2, window-in-direction, get-mru-window):
21223 New functions.
21224
21225 2011-06-08 Reuben Thomas <rrt@sc3d.org>
21226
21227 * progmodes/flymake.el (flymake-compilation-prevents-syntax-check):
21228 Doc fix (Bug#8713).
21229
21230 2011-06-08 Chong Yidong <cyd@stupidchicken.com>
21231
21232 * repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
21233
21234 2011-06-08 Juanma Barranquero <lekktu@gmail.com>
21235
21236 * loadhist.el (unload-feature-special-hooks):
21237 Add `comint-output-filter-functions'.
21238
21239 2011-06-08 Ivan Kanis <gnu@kanis.fr>
21240
21241 * calendar/appt.el (appt-check): Move some initializations into the let.
21242
21243 2011-06-08 Martin Rudalics <rudalics@gmx.at>
21244
21245 * window.el (window-height): Defalias to window-total-height.
21246 (window-width): Defalias to window-body-width.
21247
21248 2011-06-07 Chong Yidong <cyd@stupidchicken.com>
21249
21250 * image-mode.el (image-toggle-animation): New command.
21251 (image-mode-map): Bind it to RET.
21252 (image-mode): Update message.
21253 (image-toggle-display-image): Avoid a spurious cache flush.
21254 (image-transform-rotation): Doc fix.
21255 (image-transform-properties): Return quickly in the normal case.
21256 (image-animate-loop): Rename from image-animate-max-time.
21257
21258 * image.el (image-animate-max-time): Move to image-mode.el.
21259 (create-animated-image): Remove unnecessary function.
21260 (image-animate): Rename from image-animate-start. New arg.
21261 (image-animate-stop): Remove; just use image-animate-timer.
21262 (image-animate-timer): Use car-safe.
21263 (image-animate-timeout): Rename argument.
21264
21265 2011-06-07 Martin Rudalics <rudalics@gmx.at>
21266
21267 * window.el (get-lru-window, get-largest-window): Move here from
21268 window.c. Rename first argument to ALL-FRAMES.
21269 Rephrase doc-strings.
21270 (get-buffer-window-list): Rewrite using window-list-1.
21271 Rephrase doc-string.
21272 (window-safe-min-height, window-safe-min-width): New constants.
21273 (window-size-ignore, window-min-size, window-min-size-1)
21274 (window-sizable, window-sizable-p, window-size-fixed-1)
21275 (window-size-fixed-p, window-min-delta-1, window-min-delta)
21276 (window-max-delta-1, window-max-delta, window-resizable)
21277 (window-resizable-p, window-total-height, window-total-width)
21278 (window-body-width): New functions.
21279 (window-full-height-p, window-full-width-p): Rewrite using
21280 window-total-size.
21281 (window-body-height): Rewrite using window-body-size.
21282
21283 2011-06-06 Martin Rudalics <rudalics@gmx.at>
21284
21285 * window.el (window-right, window-left, window-child)
21286 (window-child-count, window-last-child, window-any-p)
21287 (normalize-live-buffer, normalize-live-frame)
21288 (normalize-any-window, normalize-live-window)
21289 (window-iso-combination-p, window-iso-combined-p)
21290 (window-iso-combinations)
21291 (walk-window-tree-1, walk-window-tree, walk-window-subtree)
21292 (windows-with-parameter, window-with-parameter)
21293 (window-atom-root, make-window-atom, window-atom-check-1)
21294 (window-atom-check, window-side-check, window-check):
21295 New functions.
21296 (ignore-window-parameters, window-sides, window-sides-vertical)
21297 (window-sides-slots): New variables.
21298 (window-size-fixed): Move down in code. Minor doc-string fix.
21299
21300 2011-06-05 Andreas Schwab <schwab@linux-m68k.org>
21301
21302 * comint.el (comint-dynamic-complete-as-filename)
21303 (comint-dynamic-complete-filename): Correctly call
21304 completion-in-region.
21305
21306 2011-06-05 Deniz Dogan <deniz@dogan.se>
21307
21308 * net/rcirc.el (rcirc-prompt-for-encryption): Fix bug introduced
21309 in last change.
21310
21311 2011-06-05 Deniz Dogan <deniz@dogan.se>
21312
21313 * net/rcirc.el (rcirc-prompt-for-encryption): New function.
21314 (rcirc): Use it to prompt for encryption.
21315
21316 2011-06-05 Roland Winkler <winkler@gnu.org>
21317
21318 * textmodes/bibtex.el (bibtex-search-buffer): New variable.
21319 (bibtex-search-entries): New command bound to C-c C-a.
21320 (bibtex-display-entries): New function.
21321
21322 2011-06-05 Roland Winkler <winkler@gnu.org>
21323
21324 * textmodes/bibtex.el (bibtex-generate-url-list): Fix docstring.
21325 (bibtex-insert-kill): After yanking insert newline if necessary.
21326 (bibtex-initialize): Call bibtex-string-files-init only once.
21327 (bibtex-mode): Do not call easy-menu-add.
21328 (bibtex-validate-globally): Use save-excursion in bibtex buffers.
21329 (bibtex-yank): Set arg properly if nil.
21330
21331 2011-06-05 Roland Winkler <winkler@gnu.org>
21332
21333 * textmodes/bibtex.el (bibtex-search-entry-globally):
21334 New variable.
21335 (bibtex-search-entry): Use it.
21336
21337 2011-06-05 Roland Winkler <winkler@gnu.org>
21338
21339 * textmodes/bibtex.el (bibtex-entry-format): New option
21340 sort-fields.
21341 (bibtex-format-entry, bibtex-reformat): Honor this option.
21342 (bibtex-parse-entry): Return fields in proper order.
21343
21344 2011-06-05 Juanma Barranquero <lekktu@gmail.com>
21345
21346 * doc-view.el (doc-view-remove-if): Move computation of result out
21347 of `dolist' to silence misleading lexical-binding warning.
21348
21349 2011-06-04 Chong Yidong <cyd@stupidchicken.com>
21350
21351 * emacs-lisp/timer.el (timer-activate): Remove unused arg.
21352 (timer-activate, timer-activate-when-idle): Doc fix (Bug#8793).
21353
21354 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
21355
21356 * net/tramp-sh.el (tramp-find-shell): Apply workaround also for
21357 "SunOS 5.10".
21358
21359 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
21360
21361 * net/tramp.el (tramp-set-completion-function, tramp-parse-rhosts)
21362 (tramp-parse-shosts, tramp-parse-sconfig, tramp-parse-shostkeys)
21363 (tramp-parse-hosts, tramp-parse-passwd, tramp-parse-netrc)
21364 (tramp-parse-putty):
21365 * net/tramp-sh.el (tramp-completion-function-alist-rsh)
21366 (tramp-completion-function-alist-ssh)
21367 (tramp-completion-function-alist-telnet)
21368 (tramp-completion-function-alist-su)
21369 (tramp-completion-function-alist-putty): Set `tramp-autoload'
21370 cookie.
21371
21372 * net/tramp-ftp.el:
21373 * net/tramp-sh.el:
21374 * net/tramp-smb.el: Set `tramp-autoload' cookie, and eval after
21375 load "tramp.el" `tramp-set-completion-function'.
21376
21377 2011-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
21378
21379 * shell.el: Require and use pcomplete.
21380 (shell-dynamic-complete-functions): Add pcomplete-completions-at-point.
21381 (shell-completion-vars): Set pcomplete-default-completion-function.
21382
21383 2011-06-04 Deniz Dogan <deniz@dogan.se>
21384
21385 * iswitchb.el (iswitchb-window-buffer-p): Use `member' instead of
21386 `memq' (Bug#8799).
21387
21388 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
21389
21390 * subr.el (make-progress-reporter): Add "..." by default (bug#8785).
21391
21392 2011-06-02 Juanma Barranquero <lekktu@gmail.com>
21393
21394 * bs.el (bs--mark-unmark, bs--nth-wrapper):
21395 * mpc.el (mpc-select-extend, mpc-songpointer-context):
21396 * vc/log-view.el (log-view-beginning-of-defun):
21397 * vc/smerge-mode.el (smerge-apply-resolution-patch)
21398 (smerge-refine-forward, smerge-refine-chopup-region):
21399 Silence warning for unused `dotimes' counter variables.
21400
21401 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
21402
21403 * net/tramp.el (tramp-with-progress-reporter): Rename from
21404 with-progress-reporter. Use `declare'.
21405 * net/tramp-smb.el:
21406 * net/tramp-sh.el:
21407 * net/tramp-gvfs.el: Update all uses.
21408
21409 2011-06-02 Jay Belanger <jay.p.belanger@gmail.com>
21410
21411 * calc/calc.el (calc-kill-stack-buffer): Make sure that the trail
21412 buffer isn't killed before making it current.
21413
21414 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
21415
21416 Silence various byte-compiler warnings.
21417 * emacs-lisp/byte-run.el (make-obsolete-variable): New argument
21418 `access-type' and new obsolescence format.
21419 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): Adjust to
21420 new format.
21421 (byte-compile-check-variable): New `access-type' argument.
21422 Only warn if the access-type is obsolete.
21423 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
21424 (byte-compile-variable-set): Adjust callers.
21425 * help-fns.el (describe-variable): Adjust to new obsolescence format.
21426 * mail/sendmail.el (mail-mailer-swallows-blank-line): Only mark
21427 setting it as obsolete.
21428 * simple.el (minibuffer-completing-symbol):
21429 * font-lock.el (font-lock-beginning-of-syntax-function): Only mark read
21430 access as obsolete.
21431 * minibuffer.el (minibuffer-completing-file-name): Don't make it
21432 obsolete yet.
21433 * international/quail.el (quail-mouse-choose-completion): Remove unused
21434 code referring to obsolete var.
21435 (quail-choose-completion-string): Remove.
21436 * server.el (server-clients-with, server-kill-buffer-query-function)
21437 (server-kill-emacs-query-function): Silence "unused `proc'" warnings.
21438 * proced.el (proced-send-signal):
21439 * emacs-lisp/lisp.el (lisp-complete-symbol):
21440 Replace completion-annotate-function with completion-extra-properties.
21441
21442 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
21443
21444 * simple.el (goto-line): Use read-number.
21445 (overriding-map-is-bound): Remove.
21446 (saved-overriding-map): Change default.
21447 (save&set-overriding-map): Rename from ensure-overriding-map-is-bound;
21448 Take the map as argument.
21449 (universal-argument, negative-argument, digit-argument): Use it.
21450 (restore-overriding-map): Adjust.
21451 (do-auto-fill): Use fill-forward-paragraph.
21452 (keyboard-quit): Don't signal an error when debug-on-quit is non-nil.
21453
21454 * minibuffer.el (minibuffer-inactive-mode-map): New var.
21455 (minibuffer-inactive-mode): New major mode.
21456 * mouse.el (mouse-drag-region): Remove the "mouse-1 pops up
21457 the *Messages* buffer" hack.
21458 (mouse-popup-menubar): Don't burp if the event is a normal key.
21459
21460 Miscellaneous tweaks.
21461 * emacs-lisp/cl-macs.el (dolist, dotimes): Use the same strategy for
21462 lexical scoping as in subr.el's dolist and dotimes.
21463 * emacs-lisp/bytecomp.el (byte-compile-unfold-bcf):
21464 Silence compiler warning.
21465 * thingatpt.el (forward-whitespace): Trivial coding style fix.
21466 * subr.el (with-output-to-temp-buffer): Provide an edebug spec.
21467 * international/ccl.el (ccl-compile): Trivial simplification.
21468 * help-fns.el (help-do-arg-highlight): Silence compiler warning.
21469 * emacs-lisp/testcover.el (testcover-end): Remove spurious
21470 `printflag' argument.
21471 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
21472 Purecopy the whole obsolescence data.
21473
21474 2011-06-01 Leo Liu <sdl.web@gmail.com>
21475
21476 * net/rcirc.el (rcirc-decode-coding-system): Revert last change;
21477 improve doc-string as suggested by Marco Pessotto
21478 <melmothx@gmail.com>.
21479 (rcirc-print): Fix last change.
21480
21481 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
21482
21483 * minibuffer.el (complete-with-action): Return nil for the metadata and
21484 boundaries of non-functional tables.
21485 (completion-table-dynamic): Return nil for the metadata.
21486 (completion-table-with-terminator): Add default case, using
21487 complete-with-action.
21488 (completion--metadata): New function.
21489 (completion-all-sorted-completions, minibuffer-completion-help): Use it
21490 to try and avoid pathological performance problems.
21491 (completion--embedded-envvar-table): Return `category' metadata.
21492
21493 2011-05-31 Lars Magne Ingebrigtsen <larsi@gnus.org>
21494
21495 * subr.el (process-alive-p): New tiny convenience function.
21496
21497 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
21498
21499 * emacs-lisp/debug.el (debug): Save&restore not just the buffer's
21500 content but also its previous major mode.
21501
21502 2011-05-31 Helmut Eller <eller.helmut@gmail.com>
21503
21504 * emacs-lisp/debug.el (debug): Restore the previous content of the
21505 *Backtrace* buffer when we exit with C-M-c.
21506
21507 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
21508
21509 * minibuffer.el: Add metadata method to completion tables.
21510 (completion-category-overrides): New defcustom.
21511 (completion-metadata, completion--field-metadata)
21512 (completion-metadata-get, completion--styles)
21513 (completion--cycle-threshold): New functions.
21514 (completion-try-completion, completion-all-completions):
21515 Add `metadata' argument to choose completion-styles.
21516 (completion--do-completion): Use metadata to choose cycling.
21517 (completion-all-sorted-completions): Use metadata for sorting.
21518 Remove :completion-cycle-penalty which is not needed any more.
21519 (completion--try-word-completion): Add `metadata' argument.
21520 (minibuffer-completion-help): Check metadata for annotation function
21521 and sorting.
21522 (completion-file-name-table): Return `category' metadata.
21523 (minibuffer-completing-file-name): Make obsolete.
21524 * simple.el (minibuffer-completing-symbol): Make obsolete.
21525 * icomplete.el (icomplete-completions): Pass new `metadata' param to
21526 completion-try-completion.
21527
21528 2011-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
21529
21530 * mail/smtpmail.el (smtpmail-send-data): Add progress reporter.
21531
21532 2011-05-30 Leo Liu <sdl.web@gmail.com>
21533
21534 * net/rcirc.el (rcirc-debug-buffer): Use visible buffer name.
21535 (rcirc-print): Decode all incoming messages (bug#8744).
21536 (rcirc-decode-coding-system): Allow value nil for automatic coding
21537 system detection.
21538
21539 2011-06-01 Glenn Morris <rgm@gnu.org>
21540
21541 * mail/emacsbug.el (report-emacs-bug-hook): Mailclient ignores From.
21542
21543 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
21544
21545 * image.el (image-animate-max-time): Allow nil and t values.
21546 Default to nil.
21547 (create-animated-image): Doc fix.
21548 (image-animate-start): Remove second arg; just use
21549 image-animate-max-time.
21550 (image-animate-timeout): Doc fix. Args changed.
21551
21552 * image-mode.el (image-toggle-display-image): Ensure that the
21553 image spec passed to the animate timer is the same object as in
21554 the buffer's display property (Bug#6981).
21555 (image-transform-properties): Doc fix.
21556
21557 * image.el (image-animate-max-time): Default to nil.
21558
21559 2011-05-29 Martin Rudalics <rudalics@gmx.at>
21560
21561 * menu-bar.el (kill-this-buffer-enabled-p): Avoid looping over
21562 entire buffer list (Bug#8184).
21563
21564 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
21565
21566 * image.el (imagemagick-types-inhibit)
21567 (imagemagick-register-types): Doc fix.
21568
21569 2011-05-29 Deniz Dogan <deniz@dogan.se>
21570
21571 * net/rcirc.el (rcirc): Use the user's stored encryption method by
21572 default.
21573
21574 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
21575
21576 * select.el: Don't perform clipboard-manager saving in hooks;
21577 leave the hooks empty.
21578
21579 2011-05-28 Leo Liu <sdl.web@gmail.com>
21580
21581 * replace.el (occur-menu-map, occur-edit-mode-map): New vars.
21582 (occur-mode-map): Bind occur-edit-mode. Use occur-menu-map.
21583 (occur-edit-mode): New major mode (Bug#8463).
21584 (occur-after-change-function): New function.
21585 (occur-engine): Give Occur tags a read-only property.
21586
21587 2011-05-28 Kevin Ryde <user42@zip.com.au>
21588
21589 * subr.el (def-edebug-spec): Doc fix (Bug#8430).
21590
21591 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
21592
21593 * bindings.el (help-echo): Make the initial non-indicator dash
21594 empty on graphical terminals (Bug#7295).
21595
21596 * files.el (auto-mode-alist): Move config rule after the
21597 in-stripping one (Bug#8547).
21598
21599 * newcomment.el (comment-end-skip): Doc fix (Bug#8659).
21600
21601 * startup.el (normal-splash-screen): Remove gratuitous mode-line
21602 setting (Bug#8740).
21603
21604 2011-05-28 Alp Aker <aker@pitt.edu> (tiny change)
21605
21606 * buff-menu.el (Buffer-menu-revert-function, Buffer-menu-sort)
21607 (Buffer-menu-buffer+size): Use Buffer-menu-buffer-column
21608 (Bug#8539).
21609
21610 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
21611
21612 * emacs-lisp/re-builder.el (re-builder): Improve doc (Bug#8286).
21613
21614 2011-05-28 Dima Kogan <dkogan@cds.caltech.edu> (tiny change)
21615
21616 * progmodes/hideshow.el (hs-looking-at-block-start-p): New fun.
21617 (hs-hide-block-at-point, hs-find-block-beginning)
21618 (hs-already-hidden-p, hs-hide-block, hs-show-block): Use it
21619 (Bug#8279).
21620
21621 2011-05-28 Glenn Morris <rgm@gnu.org>
21622
21623 * startup.el (fancy-about-screen): Use standard mode line. (Bug#8740)
21624
21625 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
21626
21627 * help-fns.el (describe-function-1): If the function is a derived
21628 major mode, print the parent mode.
21629
21630 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode, java-mode)
21631 (idl-mode, pike-mode, awk-mode): Inherit from prog-mode.
21632
21633 2011-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
21634
21635 * minibuffer.el (completion--capf-wrapper): Check applicability before
21636 returning non-nil for non-exclusive completion data.
21637 * progmodes/etags.el (tags-completion-at-point-function):
21638 * info-look.el (info-lookup-completions-at-point): Mark as
21639 non-exclusive.
21640 (info-complete): Adjust accordingly.
21641
21642 * info-look.el: Convert to lexical-binding and completion-at-point.
21643 (info-lookup-completions-at-point): New function.
21644 (info-complete): Use it and completion-in-region.
21645
21646 2011-05-28 Drew Adams <drew.adams@oracle.com>
21647
21648 * isearch.el: Let M-e start with point at the first mismatched char.
21649 (isearch-fail-pos): New function.
21650 (isearch-edit-string): Use it.
21651
21652 2011-05-28 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
21653
21654 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
21655
21656 2011-05-27 Toby Cubitt <toby-predictive@dr-qubit.org>
21657
21658 * emacs-lisp/avl-tree.el: New avl-tree-stack datatype. Add new
21659 traversal functions for avl-trees.
21660 (avl-tree--stack): New struct.
21661 (avl-tree-stack-p, avl-tree--stack-repopulate): New funs.
21662 (avl-tree-enter): Add optional `updatefun' arg.
21663 (avl-tree--do-enter): Add optional `updatefun' arg.
21664 Change return value.
21665 (avl-tree-delete): Add optional `test' and `nilflag' args.
21666 (avl-tree--do-delete): Add `test' and `nilflag' args.
21667 Change return value.
21668 (avl-tree-member): Add optional `nilflag'
21669 (avl-tree-member-p): New function.
21670 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar): New functions.
21671 (avl-tree-stack, avl-tree-stack-pop, avl-tree-stack-first)
21672 (avl-tree-stack-empty-p): New functions.
21673
21674 * emacs-lisp/avl-tree.el (avl-tree--del-balance): Rename from
21675 avl-tree--del-balance1 and make it work both ways.
21676 (avl-tree--del-balance2): Remove.
21677 (avl-tree--enter-balance): Rename from avl-tree--enter-balance1 and
21678 make it work both ways.
21679 (avl-tree--enter-balance2): Remove.
21680 (avl-tree--switch-dir, avl-tree--dir-to-sign, avl-tree--sign-to-dir):
21681 New macros.
21682 (avl-tree--mapc, avl-tree-map): Add direction argument.
21683
21684 2011-05-27 David Michael <fedora.dm0@gmail.com> (tiny change)
21685
21686 * files.el (interpreter-mode-alist): Add rbash (bug#8745).
21687
21688 2011-05-27 Chong Yidong <cyd@stupidchicken.com>
21689
21690 * select.el: Support clipboard managers with built-in function
21691 x-clipboard-manager-save, via delete-frame-functions and
21692 kill-emacs-hook.
21693 (xselect-convert-to-targets): Add MULTIPLE target to list.
21694 (xselect-convert-to-save-targets): New function.
21695
21696 2011-05-27 Kenichi Handa <handa@m17n.org>
21697
21698 * mail/sendmail.el (mail-encode-header): Avoid double encoding by
21699 let-binding rfc2047-encode-encoded-words to nil.
21700
21701 2011-05-27 Glenn Morris <rgm@gnu.org>
21702
21703 * mail/emacsbug.el: Don't require url-util.
21704
21705 * shell.el (shell-directory-tracker): Case matters. (Bug#8735)
21706
21707 * files.el (set-auto-mode):
21708 Also respect mode: entries at the end of the file. (Bug#8586)
21709
21710 2011-05-26 Glenn Morris <rgm@gnu.org>
21711
21712 * files.el (hack-local-variables-prop-line, hack-local-variables):
21713 Downcase mode names, as seems to be traditional.
21714 (hack-local-variables, hack-local-variables-apply): Doc fixes.
21715
21716 * mail/emacsbug.el (report-emacs-bug): Mention checking From address.
21717 (report-emacs-bug-hook): Try to validate the From address. (Bug#8038)
21718
21719 2011-05-25 Julien Danjou <julien@danjou.info>
21720
21721 * textmodes/rst.el (rst-define-level-faces): Do not define face
21722 symbol if it is already defined.
21723
21724 2011-05-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
21725
21726 * play/5x5.el (5x5-new-game, 5x5-randomize):
21727 Reset 5x5-solver-output to nil when a new grid is cast.
21728 (5x5-log-init, 5x5-log): Use defsubst instead of defmacro to shunt
21729 these debugging traces, as defmacro breaks the compiled code.
21730
21731 2011-05-24 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
21732
21733 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
21734
21735 2011-05-24 Leo Liu <sdl.web@gmail.com>
21736
21737 * vc/vc-bzr.el (vc-bzr-sha1-program): Rename from sha1-program.
21738 (vc-bzr-sha1): Adapt.
21739
21740 * sha1.el: Remove. Function `sha1' is now builtin.
21741
21742 * bindings.el: Provide sha1 feature.
21743
21744 2011-05-24 Kenichi Handa <handa@m17n.org>
21745
21746 * mail/sendmail.el: Require `rfc2047'.
21747 (mail-insert-from-field): Do not perform RFC2047 encoding.
21748 (mail-encode-header): New function.
21749 (sendmail-send-it): Set buffer-file-coding-system of the work
21750 buffer to the return value of select-message-coding-system.
21751 Call mail-encode-header.
21752
21753 * mail/smtpmail.el (smtpmail-send-it): Call mail-encode-header.
21754
21755 2011-05-24 Sean Neakums <sneakums@zork.net> (tiny change)
21756
21757 * mail/supercite.el (sc-default-cite-frame):
21758 Handle sc-nested-citation-p when sc-cite-blank-lines-p is non-nil.
21759
21760 2011-05-24 Glenn Morris <rgm@gnu.org>
21761
21762 * progmodes/python.el (brm-menu): Declare.
21763
21764 * emulation/viper.el (viper-set-hooks): Declare.
21765
21766 * play/5x5.el (5x5-log-init, 5x5-log): Evaluate when compiling.
21767 (5x5-log-init, 5x5-log, 5x5-solver): Doc fixes.
21768 (math-map-vec, math-sub, math-mul, math-make-intv, math-reduce-vec)
21769 (math-format-number, math-pow, calcFunc-arrange, calcFunc-cvec)
21770 (calcFunc-diag, calcFunc-trn, calcFunc-inv, calcFunc-mrow)
21771 (calcFunc-mcol, calcFunc-vconcat, calcFunc-index): Declare.
21772
21773 2011-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
21774
21775 Add an :exit-function for completion-at-point.
21776
21777 * minibuffer.el (completion--done): New fun.
21778 (completion--do-completion): Use it. New arg `expect-exact'.
21779 (minibuffer-complete, minibuffer-complete-word): Don't output message,
21780 since completion--do-completion does it for us now.
21781 (minibuffer-force-complete): Use completion--done and
21782 completion--replace. Handle sole-completion case with more care.
21783 (minibuffer-complete-and-exit): Use new `expect-exact' arg.
21784 (completion-extra-properties): New var.
21785 (completion-annotate-function): Make obsolete.
21786 (minibuffer-completion-help): Adjust accordingly.
21787 Use completion-list-insert-choice-function.
21788 (completion-at-point, completion-help-at-point):
21789 Bind completion-extra-properties.
21790 (completion-pcm-word-delimiters): Add | (for uniquify, for example).
21791 * simple.el (completion-list-insert-choice-function): New var.
21792 (completion-setup-function): Preserve it.
21793 (choose-completion): Pay attention to it, shuffle the code a bit.
21794 (choose-completion-string): New arg `insert-function'.
21795
21796 * textmodes/bibtex.el: Convert to lexical binding.
21797 (bibtex-mode-map): Use completion-at-point.
21798 (bibtex-mode): Use define-derived-mode&completion-at-point-functions.
21799 (bibtex-completion-at-point-function): New fun, from bibtex-complete.
21800 (bibtex-complete): Define as obsolete alias.
21801 (bibtex-complete-internal): Remove.
21802 (bibtex-format-entry): Remove unused sub-group in regexp.
21803 * shell.el (shell--command-completion-data)
21804 (shell-environment-variable-completion):
21805 * pcomplete.el (pcomplete-completions-at-point):
21806 * comint.el (comint--complete-file-name-data): Use :exit-function
21807 instead of completion-table-with-terminator so it also works for
21808 choose-completion.
21809
21810 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
21811
21812 * <lots-of-files>.el: Don't quote lambda expressions with `quote'.
21813
21814 * vc/smerge-mode.el (smerge-refine-subst): Don't deactivate the mark
21815 (bug#8710).
21816
21817 * emacs-lisp/lisp.el (up-list): Fix forward movement (bug#8708).
21818
21819 2011-05-23 Ken Manheimer <ken.manheimer@gmail.com>
21820
21821 * allout.el (allout-inhibit-auto-fill-on-headline): Create new
21822 customization variable and implement: If non-nil, auto-fill will
21823 be inhibited while on topic's header line.
21824
21825 2011-05-23 Vincent Belaïche <vincentb1@users.sourceforge.net>
21826
21827 * play/5x5.el: I/ Add an arithmetic solver to suggest positions to
21828 click on. II/ Make 5x5 multisession. III/ Ensure that random grids
21829 always have a solution in grid size = 5 cases.
21830 (5x5-mode-map): Add keybinding to function `5x5-solve-suggest'.
21831 (5x5-solver-output, 5x5-log-buffer): New vars.
21832 (5x5-grid, 5x5-x-pos, 5x5-y-pos, 5x5-moves, 5x5-cracking):
21833 Make these variables buffer local to achieve 5x5 multi-session-ness.
21834 (5x5): Set 5x5-grid-size only if SIZE is non-negative.
21835 (5x5-grid-to-vec, 5x5-vec-to-grid, 5x5-log-init, 5x5-log, 5x5-solver)
21836 (5x5-solve-suggest): New funs.
21837 (5x5-randomize): Use 5x5-make-move instead of 5x5-flip-cell to
21838 randomize a grid so that we ensure that there is always a solution.
21839 (5x5-make-random-grid): Allow other movement than flipping.
21840
21841 2011-05-23 Kevin Ryde <user42@zip.com.au>
21842
21843 * emacs-lisp/advice.el (ad-read-advised-function):
21844 Use `function-called-at-point' as the default, if it has
21845 advice and passes PREDICATE.
21846
21847 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
21848
21849 * emacs-lisp/bytecomp.el (byte-compile-function-form): Only call
21850 byte-compile-lambda if it's actually a lambda.
21851
21852 * emacs-lisp/eieio.el (eieio-defgeneric-form-primary-only-one):
21853 Fix function quoting. Use backquote better.
21854
21855 2011-05-22 Yuanle Song <sylecn@gmail.com>
21856
21857 * nxml/rng-xsd.el (rng-xsd-check-pattern): Use case-sensitive
21858 matching (Bug#8516).
21859
21860 2011-05-22 Jari Aalto <jari.aalto@cante.net>
21861
21862 * vc/vc-dir.el (vc-default-dir-printer): Give edited tag a
21863 different face (Bug#8178).
21864
21865 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
21866
21867 * vc/diff-mode.el (diff-changed): Don't use terminal specs for
21868 defface (Bug#8144).
21869
21870 2011-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
21871
21872 * emacs-lisp/macroexp.el (macroexpand-all-1): Convert ' to #' for
21873 funcall as well (bug#8712). Warn when performing those conversions.
21874 * emacs-lisp/bytecomp.el (byte-compile-form): Fix error report.
21875
21876 * progmodes/grep.el (grep-mode): Fix it for good (bug#8684)!
21877
21878 2011-05-22 Glenn Morris <rgm@gnu.org>
21879
21880 * files.el (hack-local-variables-prop-line): Small simplifications.
21881 (hack-local-variables, hack-local-variables-prop-line):
21882 If MODE-ONLY, return the mode, rather than just `t'.
21883
21884 2011-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
21885
21886 * progmodes/grep.el (grep-mode): Fix last change (bug#8684).
21887
21888 2011-05-21 Glenn Morris <rgm@gnu.org>
21889
21890 * files.el (hack-local-variables-prop-line, hack-local-variables):
21891 If only interested in the mode, don't bother doing the other stuff.
21892
21893 * image-mode.el (image-after-revert-hook):
21894 Redraw all frames on which the image is visible. (Bug#8567)
21895
21896 * dired-aux.el (dired-touch-initial): Just use current-time. (Bug#6887)
21897
21898 * wid-edit.el (widget-checklist-match-inline):
21899 Fix 2011-04-19 change. (Bug#8649)
21900
21901 2011-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
21902
21903 * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
21904 Also allow singlespace after single-letter capitals followed by a dot.
21905
21906 * nxml/nxml-mode.el (nxml-electric-slash): Reindent when completion is
21907 enabled. Suggested by James Ahlborn <jahlborn@gmail.com> (bug#8704).
21908
21909 2011-05-20 Nix <nix@esperi.org.uk>
21910
21911 * files.el (basic-save-buffer-2):
21912 Fix handling of break-hardlink-on-save with non-existent files.
21913
21914 2011-05-19 Deniz Dogan <deniz@dogan.se>
21915
21916 * net/rcirc.el (rcirc-mode): Initialize rcirc-urls to nil.
21917 (rcirc-markup-urls): Check if rcirc-url-regexp is nil.
21918
21919 2011-05-19 Glenn Morris <rgm@gnu.org>
21920
21921 * progmodes/f90.el (f90-type-def-re):
21922 Handle "type, bind(c)". (Bug#8691)
21923
21924 * emacs-lisp/autoload.el (batch-update-autoloads):
21925 Set autoload-excludes by parsing loadup.el rather than Makefiles.
21926
21927 2011-05-18 Michael Albinus <michael.albinus@gmx.de>
21928
21929 * net/tramp.el (tramp-process-actions): Set "first-password-request"
21930 property for the correct connection in case of multihops.
21931
21932 2011-05-18 Glenn Morris <rgm@gnu.org>
21933
21934 * emacs-lisp/authors.el (authors-fixed-entries): Remove fakemail.c.
21935 * mail/sendmail.el (sendmail-program): Fall back to just "sendmail".
21936
21937 Rationalize calendar handling of day and month abbrev-arrays.
21938 * calendar/calendar.el (calendar-customized-p): New function.
21939 (calendar-abbrev-construct, calendar-make-alist): Change what it does.
21940 (calendar-day-name-array, calendar-month-name-array): Doc fix.
21941 Add :set function.
21942 (calendar-abbrev-length, calendar-day-abbrev-array)
21943 (calendar-month-abbrev-array): Make defcustoms, with appropriate :set.
21944 (calendar-day-abbrev-array, calendar-month-abbrev-array):
21945 Elements may no longer be nil.
21946 (calendar-day-name, calendar-month-name):
21947 Update for changed nature of abbrev arrays.
21948 * calendar/diary-lib.el (diary-name-pattern):
21949 Update for changed nature of abbrev arrays.
21950 (diary-mark-entries-1): Update calendar-make-alist calls.
21951 (diary-font-lock-date-forms): Doc fix for changed abbrev arrays.
21952 * calendar/cal-html.el (cal-html-day-abbrev-array):
21953 Simply inherit from calendar-day-abbrev-array.
21954
21955 2011-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
21956
21957 * progmodes/grep.el (grep-mode): Disable default
21958 compilation-directory-matcher setting (bug#8684).
21959
21960 2011-05-17 Michael Albinus <michael.albinus@gmx.de>
21961
21962 * net/tramp.el (tramp-handle-insert-file-contents): Use "dd"
21963 instead of "head" and "tail". There were problems with SunOS 5.9,
21964 and it performs better.
21965
21966 2011-05-17 Glenn Morris <rgm@gnu.org>
21967
21968 * mail/mail-utils.el (mail-dont-reply-to): Silence compiler.
21969
21970 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
21971 Replace obsolete function.
21972
21973 * shell.el (pcomplete-parse-arguments-function): Declare.
21974
21975 * calendar/appt.el (appt-message-warning-time, appt-display-mode-line)
21976 (appt-display-diary, appt-display-interval, appt-prev-comp-time)
21977 (appt-check): Doc fixes.
21978 (appt-disp-window-function, appt-delete-window-function):
21979 Remove needless special case in custom :type.
21980 (appt-display-count): Default to 0, not nil.
21981 (appt-check): Reset appt-display-count to 0, not nil.
21982
21983 2011-05-17 Juanma Barranquero <lekktu@gmail.com>
21984
21985 * progmodes/python.el (python-font-lock-keywords):
21986 Add the Python 3.X keyword "nonlocal" (bug#8639).
21987
21988 2011-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
21989
21990 * emacs-lisp/eieio.el (defmethod): Fix quoting of code (bug#8677).
21991
21992 2011-05-16 Kevin Ryde <user42@zip.com.au>
21993
21994 * info-look.el (makefile-automake-mode): New setups, looking in
21995 automake manual, then makefile-mode.
21996 (makefile-mode): Remove automake manual, have it just in
21997 makefile-automake-mode since there's various things different or
21998 not relevant to plain make.
21999 (makefile-mode): Remove "other-modes" non-existent automake-mode,
22000 believe a hypothetical automake-mode would go to makefile-mode,
22001 not the other way around.
22002
22003 2011-05-15 Chong Yidong <cyd@stupidchicken.com>
22004
22005 * vc/diff-mode.el (diff-fixup-modifs): Locate correct position for
22006 hunk-end tags (Bug#8672).
22007
22008 * vc/vc-annotate.el (vc-annotate-mode-map): Bind = to
22009 vc-annotate-show-diff-revision-at-line (Bug#8671).
22010
22011 2011-05-14 Glenn Morris <rgm@gnu.org>
22012
22013 * vc/add-log.el (add-change-log-entry): Don't start adding a new entry
22014 in the middle of an existing one with multiple authors. (Bug#8645)
22015 (change-log-font-lock-keywords): Also handle multiple author lines
22016 with leading tabs. (Bug#8644)
22017
22018 * calendar/appt.el (appt-check): Rename some local variables.
22019 Some simplification/reordering.
22020
22021 * mail/feedmail.el (feedmail-confirm-outgoing-timeout)
22022 (feedmail-sendmail-f-doesnt-sell-me-out)
22023 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
22024 (feedmail-debug-sit-for, feedmail-queue-express-hook)
22025 (feedmail-queue-runner-message-sender): Set :version.
22026 (bbdb-search, bbdb-records, smtp-via-smtp, smtp-server)
22027 (bbdb-dwim-net-address, vm-mail): Declare.
22028 (feedmail-binmail-gnulinuxish-template):
22029 Rename from feedmail-binmail-linuxish-template.
22030 (feedmail-buffer-to-smtp, feedmail-vm-mail-mode):
22031 Use insert-buffer-substring.
22032
22033 2011-05-14 Bill Carpenter <bill@carpenter.org>
22034
22035 * mail/feedmail.el (feedmail-patch-level): Increase.
22036 (feedmail-debug): New custom group.
22037 (feedmail-confirm-outgoing-timeout)
22038 (feedmail-sendmail-f-doesnt-sell-me-out)
22039 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
22040 (feedmail-debug-sit-for, feedmail-queue-express-hook): New options.
22041 (feedmail-sender-line, feedmail-from-line)
22042 (feedmail-fiddle-headers-upwardly, feedmail-enable-spray)
22043 (feedmail-spray-this-address)
22044 (feedmail-spray-address-fiddle-plex-list)
22045 (feedmail-queue-use-send-time-for-date)
22046 (feedmail-queue-use-send-time-for-message-id)
22047 (feedmail-last-chance-hook, feedmail-queue-runner-mode-setter)
22048 (feedmail-buffer-eating-function):
22049 Doc fixes.
22050 (feedmail-spray-via-bbdb, feedmail-buffer-to-smtp)
22051 (feedmail-vm-mail-mode, feedmail-message-action-scroll-up)
22052 (feedmail-message-action-scroll-down): New functions.
22053 (feedmail-queue-directory, feedmail-queue-draft-directory):
22054 Use expand-file-name.
22055 (feedmail-prompt-before-queue-standard-alist): Add scroll entries.
22056 Remove C-v help entry.
22057 (feedmail-queue-buffer-file-name): New variable.
22058 (feedmail-mail-send-hook-splitter, feedmail-buffer-to-binmail)
22059 (feedmail-buffer-to-smtpmail, feedmail-queue-express-to-draft)
22060 (feedmail-message-action-send-strong, feedmail-message-action-edit)
22061 (feedmail-message-action-draft, feedmail-message-action-draft-strong)
22062 (feedmail-message-action-queue, feedmail-message-action-queue-strong)
22063 (feedmail-message-action-toggle-spray)
22064 (feedmail-run-the-queue-no-prompts)
22065 (feedmail-run-the-queue-global-prompt, feedmail-queue-reminder)
22066 (feedmail-look-at-queue-directory, feedmail-queue-subject-slug-maker)
22067 (feedmail-create-queue-filename, feedmail-rfc822-time-zone):
22068 (feedmail-fiddle-header, feedmail-give-it-to-buffer-eater)
22069 (feedmail-envelope-deducer, feedmail-fiddle-from)
22070 (feedmail-fiddle-sender, feedmail-default-date-generator)
22071 (feedmail-fiddle-date, feedmail-fiddle-message-id)
22072 (feedmail-fiddle-spray-address)
22073 (feedmail-fiddle-list-of-spray-fiddle-plexes)
22074 (feedmail-fiddle-list-of-fiddle-plexes)
22075 (feedmail-fill-to-cc-function, feedmail-fill-this-one)
22076 (feedmail-one-last-look, feedmail-fqm-p): Add debug calls.
22077 (feedmail-queue-runner-message-sender, feedmail-binmail-template):
22078 Change default. Doc fix.
22079 (feedmail-queue-runner-cleaner-upper): Use feedmail-say-chatter.
22080 (feedmail-binmail-linuxish-template): New constant.
22081 (feedmail-buffer-to-sendmail): Doc fix. Add debug call.
22082 Respect feedmail-sendmail-f-doesnt-sell-me-out.
22083 (feedmail-send-it): Add debug call.
22084 Use feedmail-queue-buffer-file-name, and
22085 feedmail-send-it-immediately-wrapper.
22086 (feedmail-message-action-send): Add debug call.
22087 Use feedmail-send-it-immediately-wrapper.
22088 (feedmail-queue-express-to-queue): Add debug call.
22089 Run feedmail-queue-express-hook.
22090 (feedmail-message-action-help): Add debug call. Use feedmail-p-h-b-n.
22091 (feedmail-message-action-help-blat):
22092 Rename from feedmail-queue-send-edit-prompt-help-first.
22093 (feedmail-run-the-queue): Add debug call. Set buffer-file-type.
22094 Check line-endings. Handle errors better.
22095 (feedmail-queue-reminder-brief, feedmail-queue-reminder-medium):
22096 Doc fix. Add debug call.
22097 (feedmail-queue-send-edit-prompt): Doc fix. Add debug call.
22098 Use feedmail-queue-send-edit-prompt-inner.
22099 (feedmail-queue-runner-prompt, feedmail-scroll-buffer): New functions.
22100 (feedmail-queue-send-edit-prompt-inner): New function, extracted
22101 from feedmail-queue-send-edit-prompt.
22102 (feedmail-queue-send-edit-prompt-help)
22103 (feedmail-queue-send-edit-prompt-help-later): Remove functions.
22104 (feedmail-tidy-up-slug): Add debug call.
22105 Respect feedmail-queue-slug-suspect-regexp.
22106 (feedmail-queue-subject-slug-maker): Use buffer-substring-no-properties.
22107 (feedmail-dump-message-to-queue): Add debug call.
22108 Expand queue-directory.
22109 (feedmail-dump-message-to-queue): Change message slightly.
22110 Use feedmail-say-chatter.
22111 (feedmail-rfc822-date): Add debug call. Bind system-time-locale.
22112 (feedmail-send-it-immediately-wrapper): New function.
22113 (feedmail-send-it-immediately): Add debug calls. Use let not let*.
22114 Insert empty string rather than newline. Handle full-frame case.
22115 Use catch/throw. Use feedmail-say-chatter.
22116 (feedmail-fiddle-from): Try mail-host-address.
22117 (feedmail-default-message-id-generator): Doc fix.
22118 Bind system-time-locale. Handle missing end.
22119 (feedmail-fiddle-x-mailer): Add debug call.
22120 Handle feedmail-x-mailer-line being nil.
22121 (feedmail-accume-n-nuke-header, feedmail-deduce-address-list):
22122 Add debug call. Use buffer-substring-no-properties.
22123 (feedmail-say-debug, feedmail-say-chatter): New functions.
22124 (feedmail-find-eoh): Give an explicit error.
22125
22126 2011-05-13 Ulf Jasper <ulf.jasper@web.de>
22127
22128 * net/newst-treeview.el (newsticker-treeview-face): Change default
22129 family from helvetica to sans.
22130 (newsticker-treeview-tool-bar-map): Move tool-bar icons to
22131 etc/images/newsticker.
22132
22133 * net/newst-reader.el (newsticker-feed-face): Change default
22134 family from helvetica to sans.
22135
22136 * net/newst-plainview.el (newsticker-new-item-face)
22137 (newsticker-old-item-face, newsticker-immortal-item-face)
22138 (newsticker-obsolete-item-face, newsticker-date-face)
22139 (newsticker-statistics-face): Change default family from
22140 helvetica to sans.
22141 (newsticker--plainview-tool-bar-map): Move tool-bar icons to
22142 etc/images/newsticker.
22143
22144 * net/newst-backend.el (newsticker--do-run-auto-mark-filter)
22145 (newsticker--process-auto-mark-filter-match): Tell user about
22146 auto-marking.
22147
22148 2011-05-13 Didier Verna <didier@xemacs.org>
22149
22150 Common Lisp indentation improvements on defmethod and lambda-lists.
22151 * emacs-lisp/cl-indent.el: Advertise the changes and remove obsolete
22152 TODO entries.
22153 (lisp-lambda-list-keyword-parameter-indentation)
22154 (lisp-lambda-list-keyword-parameter-alignment)
22155 (lisp-lambda-list-keyword-alignment): New customizable user options.
22156 (lisp-indent-defun-method): Improve docstring.
22157 (extended-loop-p): Fix comment.
22158 (lisp-indent-lambda-list-keywords-regexp): New variable.
22159 (lisp-indent-lambda-list): New function.
22160 (lisp-indent-259): Use it.
22161 (lisp-indent-defmethod): Support for more than one
22162 method qualifier and properly indent methods lambda-lists.
22163 (defgeneric): Provide a missing common-lisp-indent-function property.
22164
22165 2011-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
22166
22167 * thingatpt.el (bounds-of-thing-at-point): Return nil rather than
22168 bounds for the empty string (bug#8667).
22169
22170 2011-05-13 Glenn Morris <rgm@gnu.org>
22171
22172 * mail/feedmail.el (feedmail-buffer-to-sendmail): Require sendmail.
22173
22174 * mail/sendmail.el (sendmail-program): Try executable-find first.
22175 (sendmail-send-it): `sendmail-program' cannot be unbound.
22176
22177 * calendar/appt.el (appt-make-list): Simplify.
22178 (appt-time-msg-list): Doc fix.
22179 (appt-check): Change mode-line message at the time of the appointment.
22180
22181 2011-05-12 Andreas Schwab <schwab@linux-m68k.org>
22182
22183 * progmodes/ld-script.el (ld-script-keywords)
22184 (ld-script-builtins): Update keywords list.
22185
22186 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
22187
22188 * progmodes/grep.el (grep-filter): Don't trip on partial lines.
22189
22190 * shell.el (shell-completion-vars): New function.
22191 (shell-mode):
22192 * simple.el (read-shell-command): Use it.
22193 (blink-matching-open): No need for " [...]" in minibuffer-message.
22194
22195 2011-05-12 Glenn Morris <rgm@gnu.org>
22196
22197 * calendar/appt.el (appt-now-displayed): Remove pointless variable.
22198 (appt-check): Simplify.
22199
22200 2011-05-12 Eli Zaretskii <eliz@gnu.org>
22201
22202 * vc/smerge-mode.el (smerge-resolve): Use null-device rather than a
22203 literal "/dev/null".
22204
22205 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
22206
22207 * emacs-lisp/lisp.el (lisp-complete-symbol, lisp-completion-at-point):
22208 Fix typo.
22209
22210 2011-05-12 Ralph Schleicher <rs@ralph-schleicher.de>
22211
22212 * progmodes/which-func.el (which-function):
22213 Use add-log-current-defun instead of add-log-current-defun-function,
22214 which might not be defined (Bug#8260).
22215
22216 2011-05-12 Glenn Morris <rgm@gnu.org>
22217
22218 * emacs-lisp/bytecomp.el (byte-compile-file-form-defmumble):
22219 Let byte-compile-initial-macro-environment always take precedence.
22220
22221 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
22222
22223 * net/rcirc.el: Add support for SSL/TLS connections.
22224 (rcirc-server-alist): New field `encryption'.
22225 (rcirc): Check `encryption' settings.
22226 (rcirc-connect): New arg `encryption'. Use open-network-stream.
22227 Merge make-local-variable into `set'.
22228 (rcirc--connection-open-p): New function.
22229 (rcirc-send-string, rcirc-clean-up-buffer): Use it to handle case where
22230 the process is not a network process (e.g. running gnutls-cli).
22231 (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
22232 Make rcirc-(en|de)code-coding-system local here.
22233 (rcirc-mode): Merge make-local-variable into `set'.
22234 (rcirc-parent-buffer): Make permanent buffer-local.
22235 (rcirc-multiline-minor-mode): Don't do it here.
22236 (rcirc-switch-to-server-buffer): Don't switch to a random buffer if
22237 there's no server buffer.
22238
22239 2011-05-11 Glenn Morris <rgm@gnu.org>
22240
22241 * newcomment.el (comment-kill): Prefix "unused" local.
22242
22243 * term/w32console.el (get-screen-color): Declare.
22244
22245 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
22246 Handle symbol elements of byte-compile-initial-macro-environment.
22247
22248 2011-05-10 Leo Liu <sdl.web@gmail.com>
22249
22250 * bookmark.el (bookmark-bmenu-mode-map):
22251 Bind bookmark-bmenu-search to `/'.
22252
22253 * mail/footnote.el: Convert to utf-8 encoding.
22254 (footnote-unicode-string, footnote-unicode-regexp): New variable.
22255 (Footnote-unicode): New function.
22256 (footnote-style-alist): Add unicode style to the list.
22257 (footnote-style): Doc fix.
22258
22259 2011-05-10 Jim Meyering <meyering@redhat.com>
22260
22261 Fix doubled-word typos.
22262 * international/quail.el (quail-insert-kbd-layout): and and -> and
22263 * kermit.el: and and -> and
22264 * net/ldap.el (ldap-search-internal): to to -> to
22265 * progmodes/vhdl-mode.el (vhdl-offsets-alist): Likewise.
22266 * progmodes/js.el (js-mode): and and -> and
22267 * textmodes/artist.el (artist-move-to-xy): at at -> at
22268 (artist-draw-region-trim-line-endings): if if -> if
22269 And Safetyc -> Safety.
22270 * textmodes/reftex-dcr.el (reftex-view-crossref): at at -> at a
22271
22272 2011-05-10 Glenn Morris <rgm@gnu.org>
22273 Stefan Monnier <monnier@iro.umontreal.ca>
22274
22275 * files.el (hack-one-local-variable-eval-safep):
22276 Consider "eval: (foo-mode)" to be safe. (Bug#8613)
22277
22278 2011-05-10 Glenn Morris <rgm@gnu.org>
22279
22280 * calendar/diary-lib.el (diary-list-entries-hook)
22281 (diary-mark-entries-hook, diary-nongregorian-listing-hook)
22282 (diary-nongregorian-marking-hook, diary-list-entries)
22283 (diary-include-other-diary-files, diary-mark-entries)
22284 (diary-mark-included-diary-files): Doc fixes.
22285
22286 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
22287
22288 * misc.el: Require tabulated-list.el during compilation.
22289
22290 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
22291
22292 * progmodes/compile.el (compilation-start):
22293 Run compilation-filter-hook for the async case too.
22294 (compilation-filter-hook): Doc fix.
22295
22296 2011-05-09 Deniz Dogan <deniz@dogan.se>
22297
22298 * wdired.el: Remove outdated installation comment. Fix usage
22299 comment.
22300
22301 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
22302
22303 * misc.el: Implement new command `list-dynamic-libraries'.
22304 (list-dynamic-libraries--loaded-only-p): New variable.
22305 (list-dynamic-libraries--refresh): New function.
22306 (list-dynamic-libraries): New command.
22307
22308 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
22309
22310 * progmodes/compile.el (compilation-error-regexp-alist-alist):
22311 Fix the ant regexp to handle end-line and end-column info from jikes.
22312 Re-introduce maven regexp. Give the ruby-Test::Unit regexp a
22313 higher priority to avoid clobbering by gnu.
22314
22315 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
22316
22317 * cus-face.el (custom-declare-face): Call custom-theme-recalc-face
22318 if the face has existing theme settings (Bug#8454).
22319
22320 2011-05-08 Ralph Schleicher <rs@ralph-schleicher.de>
22321
22322 * progmodes/perl-mode.el (perl-imenu-generic-expression):
22323 Only match variables declared via `my' or `our' (Bug#8261).
22324
22325 * net/browse-url.el (browse-url-of-dired-file): Allow browsing of
22326 special file names `.' and `..' (Bug#8259).
22327
22328 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
22329
22330 * progmodes/grep.el (grep-mode-font-lock-keywords):
22331 Remove buffer-changing entries.
22332 (grep-filter): New function.
22333 (grep-mode): Add it to compilation-filter-hook.
22334
22335 * progmodes/compile.el (compilation-filter-hook)
22336 (compilation-filter-start): New defvars.
22337 (compilation-filter): Call compilation-filter-hook prior to
22338 updating the process mark.
22339
22340 2011-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
22341
22342 * emacs-lisp/eieio.el (defmethod): Fix typo in last change.
22343
22344 2011-05-07 Eli Zaretskii <eliz@gnu.org>
22345
22346 * mail/sendmail.el (send-mail-function): On MS-Windows, default to
22347 mailclient-send-it even if window-system is nil. (Bug#8595)
22348
22349 * term/w32console.el (terminal-init-w32console):
22350 Call get-screen-color and use its output to set the frame
22351 background-mode. (Bug#8597)
22352
22353 2011-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
22354
22355 Make bytecomp.el understand that defmethod defines funs (bug#8631).
22356 * emacs-lisp/eieio.el (eieio--defalias, eieio--defgeneric-init-form):
22357 New functions.
22358 (defgeneric, eieio--defmethod): Use them.
22359 (eieio-defgeneric): Remove.
22360 (defmethod): Call defgeneric in a way visible to the byte-compiler.
22361
22362 2011-05-07 Glenn Morris <rgm@gnu.org>
22363
22364 * calendar/timeclock.el (timeclock-log-data): Remove unused local.
22365 Use let rather than let*.
22366 (timeclock-find-discrep): Remove unused local.
22367
22368 * calendar/diary-lib.el (diary-comment-start): Doc fix.
22369
22370 * calendar/appt.el (appt-time-msg-list): Doc fix.
22371
22372 2011-05-06 Noah Friedman <friedman@splode.com>
22373
22374 * apropos.el (apropos-print-doc): Only use
22375 emacs-lisp-docstring-fill-column when it is bound to an integer,
22376 per that variable's documentation.
22377
22378 2011-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
22379
22380 * lpr.el (print-region-1): Echo lpr-program's output, so error messages
22381 and warnings are not silently discarded (e.g. use -d instead of -P).
22382
22383 2011-05-06 Glenn Morris <rgm@gnu.org>
22384
22385 * calendar/appt.el (appt-message-warning-time): Doc fix.
22386 (appt-warning-time-regexp): New option.
22387 (appt-make-list): Respect appt-message-warning-time.
22388
22389 * calendar/diary-lib.el (diary-comment-start, diary-comment-end):
22390 New options.
22391 (diary-add-to-list): Strip comments from the displayed string.
22392 (diary-mode): Set comment-start and comment-end.
22393
22394 * vc/diff-mode.el (smerge-refine-subst): Declare.
22395 (diff-refine-hunk): Don't require smerge-mode when compiling.
22396
22397 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
22398
22399 * simple.el (list-processes): Return nil as the docstring says.
22400
22401 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
22402
22403 * net/ange-ftp.el (ange-ftp-binary-file-name-regexp): Set default
22404 to "".
22405 (ange-ftp-write-region, ange-ftp-insert-file-contents)
22406 (ange-ftp-copy-file-internal): Use only `ange-ftp-binary-file' for
22407 determining of binary transfer. (Bug#7383)
22408
22409 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
22410
22411 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
22412 Fix port computation bug. (Bug#8618)
22413
22414 2011-05-05 Glenn Morris <rgm@gnu.org>
22415
22416 * allout-widgets.el (allout-widgets-mode-inhibit): Declare before use.
22417
22418 * simple.el (shell-dynamic-complete-functions)
22419 (comint-dynamic-complete-functions): Declare.
22420
22421 * net/network-stream.el (gnutls-negotiate):
22422 * simple.el (tabulated-list-print): Fix declarations.
22423
22424 * progmodes/gud.el (syntax-symbol, syntax-point):
22425 Remove unnecessary and incorrect declarations.
22426
22427 * emacs-lisp/check-declare.el (check-declare-scan):
22428 Handle byte-compile-initial-macro-environment in bytecomp.el.
22429
22430 2011-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
22431
22432 Fix earlier half-done eieio-defmethod change (bug#8338).
22433 * emacs-lisp/eieio.el (eieio--defmethod): Rename from eieio-defmethod.
22434 Streamline and change calling convention.
22435 (defmethod): Adjust accordingly and simplify.
22436 (eieio-defclass): Fix broken calls to eieio-defmethod and redirect to
22437 new eieio--defmethod.
22438 (slot-boundp): Minor CSE simplification.
22439
22440 2011-05-05 Milan Zamazal <pdm@zamazal.org>
22441
22442 * progmodes/glasses.el (glasses-separate-capital-groups): New option.
22443 (glasses-make-readable): Use glasses-separate-capital-groups.
22444
22445 2011-05-05 Juanma Barranquero <lekktu@gmail.com>
22446
22447 * emacs-lisp/warnings.el (warning-level-aliases): Reflow docstring.
22448 (warning-series): Doc fix.
22449 (display-warning): Don't try to create the buffer if we just found it.
22450
22451 2011-05-04 Chong Yidong <cyd@stupidchicken.com>
22452
22453 * emacs-lisp/autoload.el (generated-autoload-file): Set to nil.
22454 (autoload-find-generated-file): New function.
22455 (generate-file-autoloads): Bind generated-autoload-file to
22456 buffer-file-name.
22457 (update-file-autoloads, update-directory-autoloads):
22458 Use autoload-find-generated-file. If called interactively, prompt for
22459 output file (Bug#7989).
22460 (batch-update-autoloads): Doc fix.
22461
22462 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
22463
22464 * term/w32-win.el (dynamic-library-alist): Add `gnutls'.
22465
22466 2011-05-04 Glenn Morris <rgm@gnu.org>
22467
22468 * calendar/diary-lib.el (diary-fancy-date-pattern): Turn it into a
22469 function, so it follows changes in calendar-date-style.
22470 (diary-fancy-date-matcher): New function.
22471 (diary-fancy-font-lock-keywords): Use diary-fancy-date-matcher.
22472 (diary-fancy-font-lock-fontify-region-function):
22473 Use diary-fancy-date-pattern as a function.
22474
22475 * calendar/diary-lib.el (diary-fancy-date-pattern): Do not use
22476 non-numbers for `year' etc pseudo-variables. (Bug#8583)
22477
22478 2011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
22479
22480 * net/gnutls.el (gnutls-negotiate): Use CL-style keyword arguments
22481 instead of positional arguments. Allow :keylist and :crlfiles
22482 arguments.
22483 (open-gnutls-stream): Call it.
22484
22485 * net/network-stream.el (network-stream-open-starttls): Adjust to
22486 call `gnutls-negotiate' with :process and :hostname arguments.
22487
22488 2011-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
22489
22490 * minibuffer.el (completion--message): New function.
22491 (completion--do-completion, minibuffer-complete)
22492 (minibuffer-force-complete, minibuffer-complete-word): Use it.
22493 (completion--do-completion): Don't ignore completion-auto-help when in
22494 icomplete-mode.
22495
22496 * whitespace.el (whitespace-trailing-regexp): Don't rely on the
22497 internal encoding (e.g. tibetan zero is not whitespace).
22498 (global-whitespace-mode): Prefer save-current-buffer.
22499 (whitespace-trailing-regexp): Remove useless save-match-data.
22500 (whitespace-empty-at-bob-regexp): Minor simplification.
22501
22502 2011-05-03 Chong Yidong <cyd@stupidchicken.com>
22503
22504 * emacs-lisp/autoload.el (generated-autoload-file): Doc fix (Bug#7989).
22505
22506 2011-05-03 Agustín Martín Domingo <agustin.martin@hispalinux.es>
22507
22508 * textmodes/ispell.el (ispell-add-per-file-word-list):
22509 Use `concat' to create string for insertion.
22510
22511 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
22512
22513 * textmodes/bibtex.el (bibtex-fill-field-bounds, bibtex-fill-entry):
22514 Avoid open-line which runs post-self-insert-hook.
22515 (bibtex-fill-entry): Remove unused `end' var.
22516
22517 2011-05-03 Dirk Ullrich <dirk.ullrich@googlemail.com> (tiny change)
22518
22519 * textmodes/ispell.el (ispell-add-per-file-word-list):
22520 Protect against `nil' value of `comment-start' (Bug#8579).
22521
22522 2011-05-03 Leo Liu <sdl.web@gmail.com>
22523
22524 * isearch.el (isearch-yank-pop): New command.
22525 (isearch-mode-map): Bind it to `M-y'.
22526 (isearch-forward): Mention it.
22527
22528 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
22529
22530 * simple.el (minibuffer-complete-shell-command): Remove.
22531 (minibuffer-local-shell-command-map): Use completion-at-point.
22532 (read-shell-command): Setup completion vars here instead.
22533 (read-expression-map): Bind TAB to symbol completion.
22534
22535 * textmodes/ispell.el (lookup-words): Use with-temp-buffer; signal
22536 error directly rather via storing it into `results'.
22537
22538 2011-05-02 Leo Liu <sdl.web@gmail.com>
22539
22540 * vc/diff.el: Fix description.
22541
22542 2011-05-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
22543
22544 * server.el (server-eval-at): New function.
22545
22546 2011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
22547
22548 * net/network-stream.el (open-network-stream): Take a :nowait
22549 parameter and pass it on to `make-network-process'.
22550 (network-stream-open-plain): Ditto.
22551
22552 2011-04-30 Andreas Schwab <schwab@linux-m68k.org>
22553
22554 * faces.el (face-spec-set-match-display): Don't match toolkit
22555 options on terminal frames.
22556
22557 2011-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
22558
22559 * progmodes/pascal.el: Use lexical binding.
22560 (pascal-mode-map): Remove author preferences.
22561
22562 * pcomplete.el (pcomplete-std-complete): Don't abuse
22563 completion-at-point.
22564
22565 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
22566
22567 * calc/calccomp.el (math-comp-to-string-flat-term): Simplify by
22568 removing code that has been dead since 1991 or so.
22569
22570 * startup.el (command-line): When warning about "_emacs", use a
22571 delayed warning to allow the user to filter it out.
22572
22573 2011-04-28 Deniz Dogan <deniz@dogan.se>
22574
22575 * net/rcirc.el (rcirc-handler-353): Fix bug for channels which the
22576 user has not joined.
22577
22578 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
22579
22580 * pcomplete.el (pcomplete-completions-at-point): Return nil if there
22581 aren't any completions at point.
22582
22583 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
22584
22585 * subr.el (display-delayed-warnings): New function.
22586 (delayed-warnings-hook): New variable.
22587
22588 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
22589
22590 * minibuffer.el (completion-at-point, completion-help-at-point):
22591 Don't presume that a given completion-at-point-function will always
22592 use the same calling convention.
22593
22594 * pcomplete.el (pcomplete-completions-at-point):
22595 Obey pcomplete-ignore-case. Don't call pcomplete-norm-func unless
22596 pcomplete-seen is non-nil.
22597 (pcomplete-comint-setup): Also recognize the new comint/shell
22598 completion functions.
22599 (pcomplete-do-complete): Don't call pcomplete-norm-func unless
22600 pcomplete-seen is non-nil.
22601
22602 2011-04-27 Niels Giesen <niels.giesen@gmail.com>
22603
22604 * calendar/icalendar.el (diary-lib): Add require statement.
22605 (icalendar--create-uid): Read out a uid from a text-property on
22606 the first character in the entry. This allows for code to add its
22607 own uid to the entry.
22608 (icalendar--convert-float-to-ical): Add export of
22609 `diary-float'-entries save for those with the optional DAY
22610 argument.
22611
22612 2011-04-27 Daniel Colascione <dan.colascione@gmail.com>
22613
22614 * subr.el (shell-quote-argument): Use alternate escaping strategy
22615 when we spot a variable reference in a string.
22616
22617 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
22618
22619 * cus-start.el (all): Define customization for debug-on-event.
22620
22621 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
22622
22623 * subr.el (shell-quote-argument): Escape correctly under Windows.
22624
22625 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
22626
22627 * emulation/cua-base.el (cua-selection-mode): Make it toggle again.
22628
22629 2011-04-25 Michael Albinus <michael.albinus@gmx.de>
22630
22631 * net/tramp.el (tramp-process-actions): Add POS argument.
22632 Delete region between POS and (pos).
22633
22634 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
22635 Use `nil' position in `tramp-process-actions' call.
22636 (tramp-maybe-open-connection): Call `tramp-process-actions' with pos.
22637
22638 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Use `nil'
22639 position in `tramp-process-actions' call.
22640
22641 * net/trampver.el: Update release number.
22642
22643 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
22644
22645 * custom.el (defcustom): Obey lexical-binding.
22646
22647 Fix octave-inf completion problems reported by Alexander Klimov.
22648 * progmodes/octave-inf.el (inferior-octave-mode-syntax-table):
22649 Inherit from octave-mode-syntax-table.
22650 (inferior-octave-mode): Set info-lookup-mode.
22651 (inferior-octave-completion-at-point): New function.
22652 (inferior-octave-complete): Use it and completion-in-region.
22653 (inferior-octave-dynamic-complete-functions): Use it as well, and use
22654 comint-filename-completion.
22655 * progmodes/octave-mod.el (octave-mode-syntax-table): Use _ syntax for
22656 symbol elements which shouldn't be word elements.
22657 (octave-font-lock-keywords, octave-beginning-of-defun)
22658 (octave-function-header-regexp): Adjust regexps accordingly.
22659 (octave-mode-map): Also use info-lookup-symbol for C-c C-h.
22660
22661 2011-04-25 Juanma Barranquero <lekktu@gmail.com>
22662
22663 * net/gnutls.el (gnutls-errorp): Declare before first use.
22664
22665 2011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
22666
22667 * net/gnutls.el (gnutls-negotiate): Add hostname, verify-flags,
22668 verify-error, and verify-hostname-error parameters. Check whether
22669 default trustfile exists before going to use it. Add missing
22670 argument to gnutls-message-maybe call. Return value.
22671 Reported by Claudio Bley <claudio.bley@gmail.com>.
22672 (open-gnutls-stream): Add usage example.
22673
22674 * net/network-stream.el (network-stream-open-starttls): Give host
22675 parameter to `gnutls-negotiate'.
22676 (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
22677 * subr.el (shell-quote-argument): Escape correctly under Windows.
22678
22679 2011-04-24 Daniel Colascione <dan.colascione@gmail.com>
22680
22681 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
22682 Use correct match group (bug#8438).
22683
22684 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
22685
22686 * emacs-lisp/package.el (package-built-in-p): Fix typo.
22687 (package-menu--generate): New arg specifying packages to show.
22688 (package-menu-refresh, package-menu-execute, list-packages):
22689 Callers changed.
22690 (package-show-package-list): New function, replacing deleted
22691 package--list-packages (renamed because it is non-internal).
22692
22693 * finder.el (finder-list-matches): Use package-show-package-list
22694 instead of deleted package--list-packages.
22695
22696 * vc/vc-annotate.el (vc-annotate-goto-line): New command.
22697 Based on a previous implementation by Juanma Barranquero (Bug#8366).
22698 (vc-annotate-mode-map): Bind it to RET.
22699
22700 2011-04-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
22701
22702 * progmodes/etags.el (next-file): Don't use set-buffer to change
22703 buffers (Bug#8478).
22704
22705 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
22706
22707 * files.el (auto-mode-alist): Use js-mode for .json (Bug#8529).
22708
22709 * apropos.el (apropos-label-face): Avoid variable-pitch face.
22710 (apropos-accumulator): Doc fix.
22711 (apropos-function, apropos-macro, apropos-command)
22712 (apropos-variable, apropos-face, apropos-group, apropos-widget)
22713 (apropos-plist): Add face property.
22714 (apropos-symbols-internal): Fix indentation.
22715 (apropos-print): Simplify help, and recognize apropos-multi-type.
22716 (apropos-print-doc): Use button-type-get to extract the button's
22717 face property. Fill docstring (Bug#8352).
22718
22719 2011-04-23 Juanma Barranquero <lekktu@gmail.com>
22720
22721 * buff-menu.el (Buffer-menu--buffers): Fix typo in docstring (bug#8535).
22722
22723 * play/mpuz.el (mpuz-silent): Doc fix.
22724 (mpuz-mode-map): Use mapc.
22725 (mpuz-put-number-on-board): Rename parameter L to COLUMNS.
22726 (mpuz-letter-to-digit, mpuz-check-all-solved, mpuz-create-buffer):
22727 Fix typos in docstrings.
22728
22729 * play/doctor.el (doc$, doctor-$, doctor-read-print, doctor-read-token)
22730 (doctor-nounp, doctor-pronounp): Fix typos in docstrings.
22731
22732 * mouse-drag.el (mouse-drag-throw): Fix typo in docstring.
22733
22734 2011-04-23 Chong Yidong <cyd@stupidchicken.com>
22735
22736 * minibuffer.el (completion--do-completion): Avoid the "Next char
22737 not unique" prompt if icomplete-mode is enabled (Bug#5849).
22738
22739 * mouse.el (mouse-drag-mode-line-1): Make sure that if we push
22740 mouse-2 into unread-command-events, it is interpreted correctly.
22741
22742 * image-mode.el (image-type, image-mode-map, image-minor-mode-map)
22743 (image-toggle-display): Doc fix.
22744
22745 2011-04-23 Stephen Berman <stephen.berman@gmx.net>
22746
22747 * textmodes/page.el (what-page): Use line-number-at-pos to
22748 calculate line number (Bug#6825).
22749
22750 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
22751
22752 * eshell/esh-mode.el (find-tag-interactive): Declare function.
22753 (eshell-find-tag): Remove `with-no-warnings', unneeded now.
22754 Pass argument NO-DEFAULT to `find-tag-interactive'.
22755
22756 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
22757
22758 Lexical-binding cleanup.
22759
22760 * progmodes/ada-mode.el (ada-after-change-function, ada-loose-case-word)
22761 (ada-no-auto-case, ada-capitalize-word, ada-untab, ada-narrow-to-defun):
22762 * progmodes/ada-prj.el (ada-prj-initialize-values)
22763 (ada-prj-display-page, ada-prj-field-modified, ada-prj-display-help)
22764 (ada-prj-show-value):
22765 * progmodes/ada-xref.el (ada-find-any-references, ada-gdb-application):
22766 * progmodes/antlr-mode.el (antlr-with-displaying-help-buffer)
22767 (antlr-invalidate-context-cache, antlr-options-menu-filter)
22768 (antlr-language-option-extra, antlr-c++-mode-extra, antlr-run-tool):
22769 * progmodes/bug-reference.el (bug-reference-push-button):
22770 * progmodes/fortran.el (fortran-line-length):
22771 * progmodes/glasses.el (glasses-change):
22772 * progmodes/octave-mod.el (octave-fill-paragraph):
22773 * progmodes/python.el (python-mode, python-pdbtrack-track-stack-file)
22774 (python-pdbtrack-grub-for-buffer, python-sentinel):
22775 * progmodes/sql.el (sql-save-connection):
22776 * progmodes/tcl.el (tcl-indent-command, tcl-popup-menu):
22777 * progmodes/xscheme.el (xscheme-enter-debugger-mode):
22778 Mark unused parameters.
22779
22780 * progmodes/compile.el (compilation--flush-directory-cache)
22781 (compilation--flush-parse, compile-internal): Mark unused parameters.
22782 (compilation-buffer-name): Rename parameter MODE-NAME to NAME-OF-MODE.
22783 (compilation-next-error-function): Remove unused variable `timestamp'.
22784
22785 * progmodes/cpp.el (cpp-parse-close): Remove unused variable `begin'.
22786 (cpp-signal-read-only, cpp-grow-overlay): Mark unused parameters.
22787
22788 * progmodes/dcl-mode.el (dcl-end-of-command):
22789 Remove unused variable `start'.
22790 (dcl-calc-command-indent-multiple, dcl-calc-cont-indent-relative)
22791 (dcl-option-value-basic, dcl-option-value-offset)
22792 (dcl-option-value-margin-offset, dcl-option-value-comment-line):
22793 Mark unused parameters.
22794 (dcl-save-local-variable): Remove unused variable `val'.
22795 (mode): Declare.
22796
22797 * progmodes/delphi.el (delphi-save-state, delphi-after-change):
22798 Mark unused parameters.
22799 (delphi-ignore-changes): Move before first use.
22800 (delphi-charset-token-at): Remove unused variable `start'.
22801 (delphi-else-start): Remove unused variable `if-count'.
22802 (delphi-comment-block-start, delphi-comment-block-end):
22803 Remove unused variable `kind'.
22804 (delphi-indent-line): Remove unused variable `new-point'.
22805
22806 * progmodes/ebrowse.el (ebrowse-files-list)
22807 (ebrowse-list-of-matching-members, ebrowse-tags-list-members-in-file):
22808 Mark unused parameters. Don't quote `lambda'.
22809 (ebrowse-sort-tree-list, ebrowse-same-tree-member-buffer-list):
22810 Don't quote `lambda'.
22811 (ebrowse-revert-tree-buffer-from-file, ebrowse-tags-choose-class)
22812 (ebrowse-goto-visible-member/all-member-lists): Mark unused parameters.
22813 (ebrowse-create-tree-buffer): Rename parameter OBARRAY to CLASSES.
22814 (ebrowse-toggle-mark-at-point): Remove unused variable `pnt'.
22815 Use `ignore-errors'.
22816 (ebrowse-frozen-tree-buffer-name, ebrowse-find-source-file)
22817 (ebrowse-view/find-file-and-search-pattern)
22818 (ebrowse-view/find-member-declaration/definition):
22819 Rename parameter TAGS-FILE-NAME to TAGS-FILE.
22820 (ebrowse-find-class-declaration, ebrowse-view-class-declaration):
22821 Rename parameter PREFIX-ARG to PREFIX.
22822 (ebrowse-tags-read-name): Remove unused variables `start' and
22823 `member-info'.
22824 (ebrowse-display-member-buffer): Rename variable `tags-file-name'
22825 to `tags-file'.
22826
22827 * progmodes/etags.el (local-find-tag-hook): Declare.
22828 (tag-partial-file-name-match-p, tag-any-match-p, list-tags):
22829 Mark unused parameters.
22830
22831 * progmodes/executable.el (compilation-error-regexp-alist): Declare.
22832 (executable-interpret): Mark unused parameter.
22833
22834 * progmodes/flymake.el (flymake-process-sentinel)
22835 (flymake-after-change-function)
22836 (flymake-create-temp-with-folder-structure)
22837 (flymake-get-include-dirs-dot): Mark unused parameters.
22838 (flymake-safe-delete-directory): Remove unused variable `err'.
22839
22840 * progmodes/gdb-mi.el (speedbar-change-initial-expansion-list)
22841 (speedbar-timer-fn, speedbar-line-text)
22842 (speedbar-change-expand-button-char, speedbar-delete-subblock)
22843 (speedbar-center-buffer-smartly): Declare functions.
22844 (gdb-find-watch-expression): Remove unused variable `array'.
22845 (gdb-edit-value, gdb-gdb, gdb-ignored-notification, gdb-thread-created)
22846 (gdb-starting): Mark unused parameters.
22847 (gud-gdbmi-marker-filter): Remove unused variable `output-record'.
22848 (gdb-table-string): Remove unused variable `res'.
22849 (gdb-place-breakpoints): Remove unused variables `flag' and `bptno'.
22850 (gdb-disassembly-handler-custom): Remove unused variable `pos'.
22851 (gdb-display-buffer): Remove unused variable `cur-size'.
22852
22853 * progmodes/gud.el (gud-def): Use `defalias' instead of `defun' to
22854 allow lexical-binding compilation.
22855 (gud-expansion-speedbar-buttons, gud-gdb-goto-stackframe)
22856 (gud-dbx-massage-args, gud-xdb-massage-args, gud-perldb-massage-args)
22857 (gud-jdb-massage-args, gud-jdb-find-source, gud-find-class):
22858 Mark unused parameters.
22859 (gud-gdb-marker-filter): Remove unused variable `match'.
22860 (gud-find-class): Bind `syntax-symbol' and `syntax-point' to suitable
22861 lambda expressions and funcall them, instead of using `fset'.
22862
22863 * progmodes/hideif.el (hif-parse-if-exp): Rename parameter
22864 HIF-TOKEN-LIST to TOKEN-LIST and let-bind `hif-token-list'.
22865
22866 * progmodes/hideshow.el (hs-hide-block-at-point): Remove unused
22867 variable `header-beg'; use `let'.
22868
22869 * progmodes/icon.el (indent-icon-exp): Remove unused variables
22870 `restart', `last-sexp' and `at-do'.
22871
22872 * progmodes/js.el (js--debug): Mark unused parameter.
22873 (js--parse-state-at-point): Remove unused variable `bound'; use `let'.
22874 (js--splice-into-items): Remove unused variable `item'.
22875 (js--read-symbol, js--read-tab): Pass 1/-1 to `ido-mode', not t/nil.
22876
22877 * progmodes/make-mode.el (makefile-make-font-lock-keywords):
22878 Rename parameter FONT-LOCK-KEYWORDS to FL-KEYWORDS.
22879 (makefile-complete): Remove unused variable `try'.
22880 (makefile-fill-paragraph, makefile-match-function-end):
22881 Mark unused parameters.
22882
22883 * progmodes/octave-inf.el (inferior-octave-complete):
22884 Remove unused variable `proc'.
22885 (inferior-octave-output-digest): Mark unused parameter.
22886
22887 * progmodes/perl-mode.el (perl-calculate-indent):
22888 Remove unused variable `err'.
22889
22890 * progmodes/prolog.el (prolog-mode-keybindings-inferior)
22891 (prolog-indent-line): Mark unused parameters.
22892 (prolog-indent-line): Remove unused variable `beg'.
22893
22894 * progmodes/ps-mode.el (reporter-prompt-for-summary-p)
22895 (reporter-dont-compact-list): Declare.
22896
22897 * progmodes/sh-script.el (sh-font-lock-quoted-subshell):
22898 Remove unused variable `char'.
22899 (sh-debug): Mark unused parameter.
22900 (sh-get-indent-info): Remove unused variable `start'.
22901 (sh-calculate-indent): Remove unused variable `var'.
22902
22903 * progmodes/simula.el (simula-popup-menu): Mark unused parameter.
22904 (simula-electric-keyword): Remove unused variable `null'.
22905 (simula-search-backward, simula-search-forward): Remove unused
22906 variables `begin' and `end'.
22907
22908 * progmodes/vera-mode.el (vera-guess-basic-syntax):
22909 Remove unused variable `pos'.
22910 (vera-electric-tab, vera-comment-uncomment-region):
22911 Mark unused parameters.
22912 (vera-electric-tab): Rename parameter PREFIX-ARG to PREFIX.
22913
22914 2011-04-22 Chong Yidong <cyd@stupidchicken.com>
22915
22916 * emacs-lisp/package.el (package--builtins, package-alist)
22917 (package-load-descriptor, package-built-in-p, package-activate)
22918 (define-package, package-installed-p)
22919 (package-compute-transaction, package-buffer-info)
22920 (package--push): Doc fix. Distinguish more clearly between
22921 version strings and version lists.
22922
22923 2011-04-21 Juanma Barranquero <lekktu@gmail.com>
22924
22925 Lexical-binding cleanup.
22926
22927 * play/5x5.el (5x5-make-random-solution, 5x5-make-mutate-current)
22928 (5x5-make-mutate-best):
22929 * play/fortune.el (fortune-in-buffer):
22930 * play/gomoku.el (gomoku-init-display):
22931 * play/solitaire.el (solitaire, solitaire-do-check):
22932 * play/tetris.el (tetris-default-update-speed-function):
22933 Mark unused parameters.
22934
22935 * play/bubbles.el (bubbles-mode): Set `show-trailing-whitespace'.
22936 (bubbles--shift): Remove unused variable `char-org'.
22937 (bubbles--set-faces): Remove unused variable `fg-col'. Simplify.
22938 (bubbles--show-images): Remove unused variable `char'.
22939
22940 * play/decipher.el (decipher-keypress, decipher-alphabet-keypress)
22941 (decipher-get-undo, decipher-set-map, decipher-complete-alphabet)
22942 (decipher-resync, decipher-loop-with-breaks, decipher--analyze)
22943 (decipher-analyze-buffer): Use ?\s.
22944 (decipher-make-checkpoint): Remove unused variable `mapping'.
22945
22946 * play/doctor.el (doctor-doc): Rename parameter DOCTOR-SENT to SENT.
22947
22948 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
22949 Remove unused variable `result'; use `let'.
22950
22951 * play/gametree.el (gametree-current-layout, gametree-apply-layout):
22952 Rename parameter TOP-LEVEL to FROM-TOP-LEVEL; use `ignore-errors'.
22953 (gametree-children-shown-p, gametree-compute-reduced-score):
22954 Use `ignore-errors'.
22955
22956 * play/handwrite.el (ps-lpr-switches): Declare.
22957 (handwrite): Remove unused variables `pmin' and `lastp'.
22958
22959 * play/hanoi.el (hanoi-move-ring): Remove unused variable `total-steps'.
22960
22961 * play/landmark.el (landmark-init-display)
22962 (landmark-update-naught-weights): Mark unused parameters.
22963 (landmark-y): Remove unused variable `noise'. Simplify.
22964 (landmark-human-plays): Remove unused variable `score'.
22965
22966 * play/mpuz.el (mpuz-try-letter): Remove unused variable `message'.
22967 (mpuz-try-proposal): Remove unused variable `game'.
22968
22969 * play/zone.el (life-patterns): Declare.
22970
22971 2011-04-20 Juanma Barranquero <lekktu@gmail.com>
22972
22973 * vc/vc.el (ediff-vc-internal): Declare function.
22974
22975 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
22976
22977 * shell.el: Use lexical-binding and std completion UI.
22978 (shell-filter-ctrl-a-ctrl-b): Work as a preoutput filter.
22979 (shell-mode): Put shell-filter-ctrl-a-ctrl-b on
22980 comint-preoutput-filter-functions rather than on
22981 comint-output-filter-functions.
22982 (shell-command-completion, shell--command-completion-data)
22983 (shell-filename-completion, shell-environment-variable-completion)
22984 (shell-c-a-p-replace-by-expanded-directory): New functions.
22985 (shell-dynamic-complete-functions, shell-dynamic-complete-command)
22986 (shell-dynamic-complete-filename, shell-replace-by-expanded-directory)
22987 (shell-dynamic-complete-environment-variable): Use them.
22988 (shell-dynamic-complete-as-environment-variable)
22989 (shell-dynamic-complete-as-command): Remove.
22990 (shell-match-partial-variable): Match past point.
22991 * comint.el: Clean up use of completion-at-point-functions.
22992 (comint-completion-at-point): New function.
22993 (comint-mode): Use it completion-at-point-functions.
22994 (comint-dynamic-complete): Make it obsolete.
22995 (comint-replace-by-expanded-history-before-point): Add dry-run arg.
22996 (comint-c-a-p-replace-by-expanded-history): New function.
22997 (comint-dynamic-complete-functions)
22998 (comint-replace-by-expanded-history): Use it.
22999 * minibuffer.el (completion-table-with-terminator): Allow dynamic
23000 termination strings. Try harder to avoid second try-completion.
23001 (completion-in-region-mode-map): Disable bindings that don't work yet.
23002
23003 * comint.el: Use lexical-binding. Require CL.
23004 (comint-dynamic-complete-functions): Use comint-filename-completion.
23005 (comint-completion-addsuffix): Tweak custom type.
23006 (comint-filename-completion, comint--common-suffix)
23007 (comint--common-quoted-suffix, comint--table-subvert)
23008 (comint--complete-file-name-data): New functions.
23009 (comint-dynamic-complete-as-filename, comint-dynamic-complete-filename)
23010 (comint-dynamic-list-filename-completions): Use them.
23011 (comint-dynamic-simple-complete): Make obsolete.
23012
23013 * minibuffer.el (completion-in-region-mode):
23014 Keep completion-in-region-mode--predicate global.
23015 (completion-in-region--postch):
23016 Assume completion-in-region-mode--predicate is not null.
23017
23018 * progmodes/flymake.el (flymake-start-syntax-check-process):
23019 Obey `dir'. Simplify.
23020
23021 * vc/vc.el (vc-version-ediff): Call ediff-vc-internal directly, since
23022 we're in VC after all.
23023
23024 2011-04-20 Christoph Scholtes <cschol2112@googlemail.com>
23025
23026 * vc/vc.el (vc-diff-build-argument-list-internal)
23027 (vc-version-ediff, vc-ediff): New commands.
23028 (vc-version-diff): Use vc-diff-build-argument-list-internal.
23029
23030 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
23031
23032 * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Remove dead code,
23033 add sanity check.
23034
23035 * obsolete/erc-hecomplete.el: Make obsolete.
23036 * obsolete/: Standardize obsolescence info in the header.
23037
23038 2011-04-20 Glenn Morris <rgm@gnu.org>
23039
23040 * calendar/solar.el (solar-horizontal-coordinates):
23041 Use the longitude argument rather than `calendar-longitude'.
23042 (solar-date-next-longitude): Remove unused locals.
23043
23044 2011-04-20 Vinicius Jose Latorre <viniciusjl@ig.com.br>
23045
23046 * whitespace.el: New version 13.2.1.
23047
23048 2011-04-20 felix <EmacsWiki> (tiny change)
23049
23050 * whitespace.el (global-whitespace-mode): Keep highlight when
23051 switching between major modes on a file.
23052
23053 2011-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
23054
23055 * progmodes/octave-mod.el (octave-in-comment-p, octave-in-string-p)
23056 (octave-not-in-string-or-comment-p): Use syntax-ppss so it works with
23057 multi-line comments as well.
23058
23059 2011-04-19 Juanma Barranquero <lekktu@gmail.com>
23060
23061 Lexical-binding cleanup.
23062
23063 * arc-mode.el (archive-mode-revert):
23064 * cmuscheme.el (scheme-interactively-start-process):
23065 * custom.el (custom-initialize-delay):
23066 * dnd.el (dnd-open-local-file, dnd-open-remote-url):
23067 * dos-w32.el (direct-print-region-helper, direct-print-region-function):
23068 * emacs-lock.el (emacs-lock-clear-sentinel):
23069 * ezimage.el (defezimage):
23070 * follow.el (follow-avoid-tail-recenter):
23071 * fringe.el (set-fringe-mode-1):
23072 * generic-x.el (bat-generic-mode-compile):
23073 * help-mode.el (help-info-variable, help-do-xref)
23074 (help-mode-revert-buffer):
23075 * help.el (view-emacs-todo):
23076 * iswitchb.el (iswitchb-completion-help):
23077 * jka-compr.el (jka-compr-make-temp-name, jka-compr-load):
23078 * kmacro.el (kmacro-cycle-ring-next, kmacro-cycle-ring-previous)
23079 (kmacro-delete-ring-head, kmacro-bind-to-key, kmacro-view-macro):
23080 * locate.el (locate-update):
23081 * longlines.el (longlines-encode-region)
23082 (longlines-after-change-function):
23083 * outline.el (outline-isearch-open-invisible):
23084 * ps-def.el (declare-function, charset-dimension, char-width)
23085 (encode-char):
23086 * ps-mule.el (ps-mule-plot-string):
23087 * recentf.el (recentf-make-menu-items, recentf-cancel-dialog)
23088 (recentf-edit-list-select, recentf-edit-list-validate)
23089 (recentf-open-files-action):
23090 * rect.el (delete-whitespace-rectangle-line)
23091 (rectangle-number-line-callback):
23092 * register.el (window-configuration-to-register)
23093 (frame-configuration-to-register):
23094 * scroll-bar.el (scroll-bar-mode, toggle-horizontal-scroll-bar):
23095 * select.el (xselect-convert-to-string, xselect-convert-to-length)
23096 (xselect-convert-to-targets, xselect-convert-to-delete)
23097 (xselect-convert-to-filename, xselect-convert-to-charpos)
23098 (xselect-convert-to-lineno, xselect-convert-to-colno)
23099 (xselect-convert-to-os, xselect-convert-to-host)
23100 (xselect-convert-to-user, xselect-convert-to-class)
23101 (xselect-convert-to-name, xselect-convert-to-integer)
23102 (xselect-convert-to-atom, xselect-convert-to-identity):
23103 * subr.el (declare, ignore, process-kill-without-query)
23104 (text-clone-maintain):
23105 * terminal.el (te-get-char, te-tic-sentinel):
23106 * tool-bar.el (tool-bar-make-keymap):
23107 * tooltip.el (tooltip-timeout, tooltip-hide, tooltip-help-tips):
23108 * type-break.el (type-break-mode, type-break-noninteractive-query):
23109 * view.el (View-back-to-mark):
23110 * wid-browse.el (widget-browse-action, widget-browse-widget)
23111 (widget-browse-widgets, widget-browse-sexp):
23112 * widget.el (define-widget-keywords):
23113 * xt-mouse.el (xterm-mouse-translate, turn-off-xterm-mouse-tracking):
23114 Mark unused parameters.
23115
23116 * align.el (align-adjust-col-for-rule): Mark unused parameter.
23117 (align-areas): Remove unused variable `look'.
23118 (align-region): Remove unused variables `real-end' and `pos-list'.
23119
23120 * apropos.el (apropos-score-doc): Remove unused variable `i'.
23121
23122 * bindings.el (mode-line-modified, mode-line-remote):
23123 Mark unused parameters.
23124 (mode-line-mule-info): Mark unused parameter; don't quote `lambda'.
23125
23126 * buff-menu.el (Buffer-menu-revert-function): Mark unused parameters.
23127 (Buffer-menu-mode): Mark unused parameter; don't quote `lambda'.
23128
23129 * comint.el (comint-history-isearch-pop-state)
23130 (comint-postoutput-scroll-to-bottom, comint-truncate-buffer)
23131 (comint-strip-ctrl-m, comint-read-noecho): Mark unused parameters.
23132 (comint-substitute-in-file-name): Doc fix.
23133
23134 * completion.el (cmpl-statistics-block): Mark unused parameter.
23135 (add-completions-from-tags-table, add-completions-from-lisp-buffer)
23136 (save-completions-to-file, load-completions-from-file):
23137 Remove unused local variable `e'.
23138
23139 * composite.el (compose-chars): Remove unused variable `len'.
23140 (lgstring-insert-glyph): Remove unused variable `g'.
23141 (compose-glyph-string): Remove unused variables `ascent',
23142 `descent', `lbearing' and `rbearing'.
23143 (compose-glyph-string-relative): Remove unused variables
23144 `lbearing', `rbearing' and `wadjust'.
23145 (compose-gstring-for-graphic): Remove unused variables `header',
23146 `wadjust', `xoff' and `yoff'. Use `let', not `let*'.
23147 (compose-gstring-for-terminal): Remove unused variables `header'
23148 and `nchars'. Use `let', not `let*'.
23149
23150 * cus-edit.el (Custom-set, Custom-save, custom-reset)
23151 (Custom-reset-current, Custom-reset-saved, Custom-reset-standard)
23152 (Custom-buffer-done, custom-buffer-create-internal)
23153 (custom-browse-visibility-action, custom-browse-group-tag-action)
23154 (custom-browse-variable-tag-action, custom-browse-face-tag-action)
23155 (widget-magic-mouse-down-action, custom-toggle-parent)
23156 (custom-add-parent-links, custom-toggle-hide-variable)
23157 (custom-face-edit-value-visibility-action, custom-face-edit-fix-value)
23158 (custom-toggle-hide-face, face, hook, custom-group-link-action)
23159 (custom-face-menu-create, custom-variable-menu-create, get)
23160 (custom-group-menu-create, Custom-no-edit): Mark unused parameters.
23161 (custom-reset-standard-save-and-update): Remove unused variable `value'.
23162 (customize-apropos): Remove unused variable `tests'.
23163 (custom-group-value-create): Remove unused variable `hidden-p'.
23164 (sort-fold-case): Declare.
23165
23166 * cus-theme.el (custom-reset-standard-faces-list)
23167 (custom-reset-standard-variables-list): Declare.
23168 (customize-create-theme, custom-theme-revert, custom-theme-write)
23169 (custom-theme-choose-mode, customize-themes, custom-theme-save):
23170 Mark unused parameters.
23171
23172 * dabbrev.el (dabbrev-completion): Remove unused variable `init'.
23173
23174 * delim-col.el (delimit-columns-max): Move defvar before first use.
23175
23176 * descr-text.el (describe-char-categories): Don't quote `lambda'.
23177 (describe-char): Don't quote `lambda'. Mark unused parameter.
23178
23179 * desktop.el (desktop-save-buffer-p): Mark unused parameter.
23180 (auto-insert): Declare.
23181 (desktop-restore-file-buffer): Rename desktop-* parameters;
23182 mark unused ones.
23183 (desktop-create-buffer): Rename desktop-* parameters and bind them.
23184 (desktop-buffer): Rename desktop-* parameters.
23185
23186 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
23187 (dframe-reposition-frame-xemacs, dframe-help-echo)
23188 (dframe-hack-buffer-menu, dframe-set-timer, dframe-set-timer-internal):
23189 Mark unused parameters.
23190
23191 * dired-aux.el (backup-extract-version-start, overwrite-query)
23192 (overwrite-backup-query, rename-regexp-query)
23193 (rename-non-directory-query): Declare.
23194 (dired-shell-stuff-it, dired-do-create-files): Mark unused parameters.
23195 (dired-add-entry): Remove unused variable `orig-file-name'.
23196 (dired-copy-file-recursive): Remove unused variable `dirfailed'.
23197 Use parameter PRESERVE-TIME instead of accessing dynamic variable
23198 `dired-copy-preserve-time' directly.
23199 (dired-do-create-files-regexp): Remove unused variable `fn-count'.
23200 (dired-insert-subdir-newpos): Rename unused variable `pos'.
23201
23202 * dired-x.el (dired-omit-size-limit): Move defcustom before first use.
23203 (dired-virtual-revert, dired-make-relative-symlink):
23204 Mark unused parameters.
23205 (manual-program): Declare.
23206 (dired-x-hands-off-my-keys): Rename parameters of lambda expression.
23207 (inode, s, mode, nlink, uid, gid, size, time, name, sym): Declare them,
23208 wrapped in `with-no-warnings' to avoid replacing one warning by another.
23209
23210 * dirtrack.el (dirtrack): Remove unused variable `multi-line'.
23211
23212 * dos-fns.el (dos-8+3-filename): Remove unused variable `i'.
23213
23214 * echistory.el (electric-history-in-progress, Helper-return-blurb):
23215 Declare.
23216
23217 * edmacro.el (edmacro-finish-edit): Remove unused variable `kmacro'.
23218
23219 * electric.el (Electric-command-loop): Rename parameter
23220 INHIBIT-QUIT to INHIBIT-QUITTING and bind `inhibit-quit'.
23221
23222 * expand.el (expand-in-literal): Remove unused variable `here'.
23223
23224 * facemenu.el (facemenu-add-new-color):
23225 Remove unused variable `docstring'.
23226
23227 * faces.el (face-id, make-face-bold, make-face-unbold, make-face-italic)
23228 (make-face-unitalic, make-face-bold-italic): Mark unused parameters.
23229 (face-attr-construct): Mark unused parameter. Doc fix.
23230 (read-color): Remove unused variable `hex-string'.
23231
23232 * files.el (parse-colon-path): Rename argument CD-PATH to SEARCH-PATH.
23233 (locate-dominating-file): Remove unused vars `prev-file' and `user'.
23234 (remote-file-name-inhibit-cache, revert-buffer): Clean up docstrings.
23235 (display-buffer-other-frame): Remove unused variable `old-window'.
23236 (kill-buffer-hook): Declare.
23237 (insert-file-contents-literally, set-auto-mode, risky-local-variable-p):
23238 Mark unused parameters.
23239 (after-find-file): Pass 1 to `auto-save-mode', not t.
23240
23241 * files-x.el (auto-insert): Declare.
23242 (modify-file-local-variable-prop-line): Remove unused variable `val'.
23243
23244 * find-lisp.el (find-lisp-find-dired-internal): Remove unused
23245 variable `buf'. Mark unused parameter.
23246 (find-lisp-insert-directory): Mark unused parameter.
23247
23248 * format.el (format-decode-run-method): Mark unused parameter; doc fix.
23249 (format-encode-region): Remove unused variables `cur-buf' and `result'.
23250 (format-common-tail): Remove, unused.
23251 (format-deannotate-region): Remove unused variable `loc'.
23252 (format-annotate-region): Remove unused variable `p'.
23253 (format-annotate-single-property-change): Remove unused variables
23254 `default' and `tail'.
23255
23256 * forms.el (read-file-filter): Declare.
23257 (forms--iif-hook, forms--revert-buffer): Mark unused parameters.
23258
23259 * frame.el (frame-creation-function-alist): Mark unused parameter.
23260 (frame-geom-spec-cons): Pass FRAME to `frame-geom-value-cons'.
23261
23262 * hilit-chg.el (hilit-chg-cust-fix-changes-face-list, hilit-chg-clear):
23263 Remove unused parameters.
23264 (hilit-chg-set-face-on-change): Remove unused variable `beg-decr'.
23265 (highlight-compare-with-file): Remove unused variable `buf-b-read-only'.
23266
23267 * htmlfontify.el (hfy-default-footer, hfy-decor, hfy-invisible)
23268 (hfy-parse-tags-buffer, hfy-prepare-index-i, hfy-prepare-index)
23269 (hfy-prepare-tag-map): Mark unused parameters.
23270 (htmlfontify-buffer): Use `called-interactively-p'.
23271
23272 * ibuf-ext.el (ibuffer-do-kill-lines, ibuffer-jump-to-buffer)
23273 (ibuffer-copy-filename-as-kill, ibuffer-mark-on-buffer)
23274 (ibuffer-do-occur): Mark unused parameters.
23275 (ibuffer-forward-next-marked): Remove unused variable `curmark'.
23276 (ibuffer-diff-buffer-with-file-1): Remove unused variable `proc'.
23277
23278 * ibuffer.el: Don't quote `lambda'.
23279 (ibuffer-count-marked-lines, ibuffer-count-deletion-lines)
23280 (ibuffer-unmark-all, ibuffer-toggle-marks, ibuffer-redisplay-engine):
23281 Mark unused parameters.
23282
23283 * ido.el (ido-mode, ido-wide-find-dir-or-delete-dir)
23284 (ido-completing-read): Mark unused parameters.
23285 (ido-copy-current-word): Mark unused parameters;
23286 remove unused variable `name'.
23287 (ido-sort-merged-list): Remove unused parameter `dirs'.
23288
23289 * ielm.el (ielm-input-sender): Mark unused parameter.
23290 (ielm-string, ielm-form, ielm-pos, ielm-result, ielm-error-type)
23291 (ielm-output, ielm-wbuf, ielm-pmark): Declare.
23292 (ielm-eval-input): Rename argument IELM-STRING to INPUT-STRING to keep
23293 `ielm-string' as a dynamic variable accessible from the IELM prompt.
23294 Bind `ielm-string' to INPUT-STRING. Remove unused variable `err'.
23295
23296 * image-dired.el (image-dired-display-thumbs): Remove unused
23297 variables `curr-file' and `count'.
23298 (image-dired-remove-tag): Remove unused variable `start'.
23299 (image-dired-tag-files, image-dired-create-thumbs): Remove unused
23300 variable `curr-file'
23301 (image-dired-rotate-original): Remove unused variable `temp-file'.
23302 (image-dired-mouse-select-thumbnail, image-dired-mouse-toggle-mark):
23303 Remove unused variable `file'.
23304 (image-dired-gallery-generate): Remove unused variable `curr'.
23305 (image-dired-dired-edit-comment-and-tags): Mark unused parameters.
23306
23307 * indent.el (tab-to-tab-stop): Remove unused variable `opoint'.
23308
23309 * info-xref.el (info-xref-goto-node-p): Remove unused variable `err'.
23310
23311 * informat.el (texinfo-command-start, texinfo-command-end): Declare.
23312
23313 * isearch.el (minibuffer-history-symbol): Declare.
23314 (isearch-edit-string): Remove unused variable `err'.
23315 (isearch-message-prefix, isearch-message-suffix):
23316 Mark unused parameters.
23317
23318 * ls-lisp.el (ls-lisp-insert-directory): Remove unused variable `fil'.
23319
23320 * macros.el (insert-kbd-macro): Remove unused variable `mods'.
23321
23322 * makesum.el (double-column): Remove unused variable `cnt'.
23323
23324 * misearch.el (multi-isearch-pop-state): Mark unused parameter.
23325 (ido-ignore-item-temp-list): Declare.
23326
23327 * mouse-drag.el (mouse-drag-throw): Remove unused variables
23328 `mouse-delta', `window-last-row', `mouse-col-delta', `window-last-col',
23329 `adjusted-mouse-col-delta' and `adjusted-mouse-delta'.
23330 (mouse-drag-drag): Remove unused variables `mouse-delta' and
23331 `mouse-col-delta'.
23332
23333 * mouse-sel.el (mouse-extend-internal):
23334 Remove unused variable `orig-window-frame'.
23335
23336 * pcomplete.el (pcomplete-args, pcomplete-begins, pcomplete-last)
23337 (pcomplete-index, pcomplete-stub, pcomplete-seen, pcomplete-norm-func):
23338 Move declarations before first use.
23339 (pcomplete-opt): Mark unused parameters; doc fix.
23340
23341 * proced.el (proced-revert): Mark unused parameter.
23342 (proced-send-signal): Remove unused variable `err'.
23343
23344 * ps-print.el (ps-print-preprint-region, ps-print-preprint):
23345 Rename parameter PREFIX-ARG to ARG.
23346 (ps-basic-plot-string, ps-basic-plot-whitespace):
23347 Mark unused parameters.
23348
23349 * replace.el (replace-count): Define.
23350 (occur-revert-function): Mark unused parameters.
23351 (ido-ignore-item-temp-list, isearch-error, isearch-forward)
23352 (isearch-case-fold-search, isearch-string): Declare.
23353 (occur-engine): Rename parameter CASE-FOLD-SEARCH to CASE-FOLD and
23354 bind `case-fold-search'. Remove unused variables `beg' and `end',
23355 and simplify.
23356 (replace-eval-replacement): Rename parameter REPLACE-COUNT to
23357 COUNT and bind `replace-count'.
23358 (replace-loop-through-replacements): Rename parameter REPLACE-COUNT
23359 to COUNT.
23360
23361 * savehist.el (print-readably, print-string-length): Declare.
23362
23363 * shadowfile.el (shadow-expand-cluster-in-file-name):
23364 Remove unused variable `cluster'.
23365 (shadow-copy-file): Remove unused variable `i'.
23366 (shadow-noquery, shadow-clusters, shadow-site-cluster)
23367 (shadow-parse-fullname, shadow-parse-name, shadow-define-cluster)
23368 (shadow-define-literal-group, shadow-define-regexp-group)
23369 (shadow-make-group, shadow-shadows-of): Clean up docstrings.
23370
23371 * shell.el (shell-filter-ctrl-a-ctrl-b): Mark unused parameter.
23372 (shell): Use `called-interactively-p'.
23373 (shell-directory-tracker): Remove unused variable `chdir-failure'.
23374
23375 * simple.el (compilation-context-lines, comint-file-name-quote-list)
23376 (comint-file-name-chars, comint-delimiter-argument-list): Declare.
23377 (delete-backward-char): Remove unused variable `ocol'.
23378 (minibuffer-avoid-prompt, minibuffer-history-isearch-pop-state)
23379 (line-move-1, event-apply-alt-modifier, event-apply-super-modifier)
23380 (event-apply-hyper-modifier, event-apply-shift-modifier)
23381 (event-apply-control-modifier, event-apply-meta-modifier):
23382 Mark unused parameters.
23383 (undo-make-selective-list): Remove duplicate variable `undo-elt'.
23384 (normal-erase-is-backspace-mode): Remove unused variable `old-state'.
23385
23386 * speedbar.el (speedbar-ignored-directory-expressions)
23387 (speedbar-supported-extension-expressions, speedbar-directory-buttons)
23388 (speedbar-find-file, speedbar-dir-follow)
23389 (speedbar-directory-buttons-follow, speedbar-tag-find)
23390 (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
23391 (speedbar-buffers-line-directory, speedbar-buffer-click):
23392 Mark unused parameters.
23393 (speedbar-tag-file): Remove unused variable `mode'.
23394 (speedbar-buffers-tail-notes): Remove unused variable `mod'; simplify.
23395
23396 * strokes.el (strokes-decode-buffer): Remove unused variable `ext'.
23397
23398 * talk.el (talk): Remove unused variable `display'.
23399
23400 * tar-mode.el (tar-subfile-save-buffer): Remove unused variable `name'.
23401 (tar-write-region-annotate): Mark unused parameter.
23402
23403 * time.el (now, time, load, mail, 24-hours, hour, 12-hours, am-pm)
23404 (minutes, seconds, time-zone, day, year, monthname, month, dayname):
23405 Declare them, wrapped in `with-no-warnings' to avoid replacing one
23406 warning by another.
23407
23408 * time-stamp.el (time-stamp-string-preprocess):
23409 Remove unused variable `require-padding'.
23410
23411 * tree-widget.el (widget-glyph-enable): Declare.
23412 (tree-widget-action): Mark unused parameter.
23413
23414 * w32-fns.el (x-get-selection): Mark unused parameter.
23415 (autoload-make-program, generated-autoload-file): Declare.
23416
23417 * wdired.el (wdired-revert): Mark unused parameters.
23418 (wdired-xcase-word): Remove unused variable `err'.
23419
23420 * whitespace.el (whitespace-buffer-changed): Mark unused parameters.
23421 (whitespace-help-scroll): Remove unused variable `data-help'.
23422
23423 * wid-edit.el (widget-mouse-help, widget-overlay-inactive)
23424 (widget-image-insert, widget-after-change, default)
23425 (widget-default-format-handler, widget-default-notify)
23426 (widget-default-prompt-value, widget-info-link-action)
23427 (widget-url-link-action, widget-function-link-action)
23428 (widget-variable-link-action, widget-file-link-action)
23429 (widget-emacs-library-link-action, widget-emacs-commentary-link-action)
23430 (widget-field-prompt-internal, widget-field-action, widget-field-match)
23431 (widget-choice-mouse-down-action, toggle, widget-radio-button-notify)
23432 (widget-insert-button-action, widget-delete-button-action, visibility)
23433 (widget-documentation-link-action, widget-documentation-string-action)
23434 (widget-const-prompt-value, widget-regexp-match, symbol)
23435 (widget-coding-system-prompt-value)
23436 (widget-key-sequence-value-to-external, sexp)
23437 (widget-sexp-value-to-internal, character, vector, cons)
23438 (widget-choice-prompt-value, widget-boolean-prompt-value)
23439 (widget-color--choose-action): Mark unused parameters.
23440 (widget-item-match-inline, widget-choice-match-inline)
23441 (widget-checklist-match, widget-checklist-match-inline)
23442 (widget-group-match): Rename parameter VALUES to VALS.
23443 (widget-field-value-set): Remove unused variable `size'.
23444 (widget-color-action): Remove unused variables `value' and `start'.
23445
23446 * windmove.el (windmove-wrap-loc-for-movement): Remove unused
23447 variable `dir'. Doc fix.
23448 (windmove-find-other-window): Don't pass it.
23449
23450 * window.el (count-windows): Mark unused parameter.
23451 (bw-adjust-window): Remove unused variable `err'.
23452
23453 * woman.el (woman-file-name): Remove unused variable `default'.
23454 (woman-expand-directory-path): Rename parameters WOMAN-MANPATH and
23455 WOMAN-PATH to PATH-DIRS and PATH-REGEXPS, respectively.
23456 (global-font-lock-mode): Declare.
23457 (woman-decode-region): Mark unused parameter.
23458 (woman-get-tab-stop): Rename parameter TAB-STOP-LIST to TAB-STOPS.
23459
23460 * x-dnd.el (x-dnd-default-test-function, x-dnd-handle-old-kde)
23461 (x-dnd-handle-xdnd, x-dnd-handle-motif): Mark unused parameters.
23462 (x-dnd-handle-moz-url): Remove unused variable `title'.
23463 (x-dnd-handle-xdnd): Remove unused variables `x', `y' and `ret-action'.
23464
23465 * xml.el (xml-parse-tag, xml-parse-attlist):
23466 Remove unused variable `pos'.
23467
23468 2011-04-19 Glenn Morris <rgm@gnu.org>
23469
23470 * calendar/cal-tex.el (cal-tex-list-holidays, cal-tex-cursor-month)
23471 (cal-tex-cursor-week, cal-tex-cursor-week2, cal-tex-cursor-week-iso)
23472 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
23473 (cal-tex-cursor-filofax-daily, cal-tex-mini-calendar)
23474 * calendar/cal-html.el (cal-html-insert-minical):
23475 * calendar/diary-lib.el (diary-list-entries-1, diary-list-entries)
23476 (calendar-mark-date-pattern):
23477 Prefix "unused" locals.
23478
23479 * calendar/cal-dst.el (dst-adjust-time): Remove never-implemented
23480 optional argument `style'.
23481
23482 * calendar/appt.el (appt-make-list):
23483 * calendar/cal-china.el (calendar-chinese-date-string):
23484 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits)
23485 (diary-hebrew-yahrzeit):
23486 * calendar/cal-tex.el (cal-tex-last-blank-p, cal-tex-cursor-week2):
23487 * calendar/calendar.el (calendar-generate-window):
23488 * calendar/time-date.el (time-to-days):
23489 Remove unused local variables.
23490
23491 2011-04-18 Chong Yidong <cyd@stupidchicken.com>
23492
23493 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Use a custom
23494 glyphless-char-display table.
23495 (tabulated-list-glyphless-char-display): New var.
23496
23497 2011-04-18 Sam Steingold <sds@gnu.org>
23498
23499 * vc/add-log.el (change-log-font-lock-keywords): Add "Thanks to"
23500 to acknowledgments.
23501
23502 2011-04-17 Glenn Morris <rgm@gnu.org>
23503
23504 * calendar/diary-lib.el (diary-sexp-entry):
23505 * calendar/holidays.el (holiday-sexp):
23506 Set debug-on-error rather than the removed stack-trace-on-error.
23507
23508 2011-04-16 Glenn Morris <rgm@gnu.org>
23509
23510 * progmodes/f90.el: Use lexical-binding.
23511 (f90-get-correct-indent): Remove unnecessary local variable `cont'.
23512
23513 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
23514
23515 * mail/sendmail.el (mail-mode-map): Use completion-at-point.
23516 (mail-mode): Setup mailalias completion here instead.
23517 * mail/mailalias.el: Use lexical-binding.
23518 (pattern, mailalias-done): Declare dynamic.
23519 (mail-completion-at-point-function): New function, from mail-complete.
23520 (mail-complete): Use it.
23521 (mail-completion-expand): New function.
23522 (mail-get-names): Use it.
23523 (mail-directory, mail-directory-process, mail-directory-stream):
23524 Don't use `pattern' for lexically bound arg.
23525
23526 * emacs-lisp/lisp-mode.el (eval-defun-2): Use eval-sexp-add-defvars.
23527
23528 * htmlfontify.el (hfy-etags-cmd): Remove inoperant eval-and-compile.
23529 (hfy-e2x-etags-cmd, hfy-etags-cmd-alist-default)
23530 (hfy-etags-cmd-alist): Don't eval-and-compile any more.
23531
23532 * emacs-lisp/bytecomp.el (byte-temp-output-buffer-show)
23533 (byte-save-window-excursion, byte-temp-output-buffer-setup)
23534 (byte-interactive-p): Define them again, for use when inlining
23535 old code.
23536
23537 2011-04-15 Juanma Barranquero <lekktu@gmail.com>
23538
23539 * loadup.el: Use `string-to-number', not `string-to-int'.
23540
23541 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
23542
23543 * progmodes/gud.el (gud-gdb): Use completion-at-point instead of
23544 gud-gdb-complete-command.
23545 (gud-gdb-completions): New function, from gud-gdb-complete-command.
23546 (gud-gdb-completion-at-point): New function.
23547 (gud-gdb-completions): Remove.
23548
23549 2011-04-14 Michael Albinus <michael.albinus@gmx.de>
23550
23551 * net/tramp-sh.el (tramp-sh-handle-file-attributes): Handle the case
23552 when the scripts fail. Use `tramp-do-file-attributes-with-ls' then.
23553 (tramp-do-copy-or-rename-file-out-of-band): Do not check any longer
23554 whether `executable-find' is bound.
23555
23556 * net/tramp-smb.el (tramp-smb-handle-copy-file): Fix docstring.
23557
23558 2011-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
23559
23560 * minibuffer.el (completion-in-region-mode-predicate)
23561 (completion-in-region-mode--predicate): New vars.
23562 (completion-in-region, completion-in-region--postch)
23563 (completion-in-region-mode): Use them.
23564 (completion--capf-wrapper): Also return the hook function.
23565 (completion-at-point, completion-help-at-point):
23566 Adjust and provide a predicate.
23567
23568 Preserve arg names for advice of subr and lexical functions (bug#8457).
23569 * help-fns.el (help-function-arglist): Consolidate the subr and
23570 new-byte-code cases. Add argument `preserve-names' to extract names
23571 from the docstring when needed.
23572 * emacs-lisp/advice.el (ad-define-subr-args, ad-undefine-subr-args)
23573 (ad-subr-args-defined-p, ad-get-subr-args, ad-subr-arglist): Remove.
23574 (ad-arglist): Use help-function-arglist's new arg.
23575 (ad-definition-type): Use cond.
23576
23577 2011-04-13 Juanma Barranquero <lekktu@gmail.com>
23578
23579 * autorevert.el (auto-revert-handler):
23580 Bind `remote-file-name-inhibit-cache', not `tramp-cache-inhibit-cache',
23581 which was removed in 2010-10-02T13:21:43Z!michael.albinus@gmx.de.
23582 Don't quote lambda.
23583
23584 * image-mode.el (image-transform-set-scale):
23585 Fix change in 2011-04-09T20:28:01Z!cyd@stupidchicken.com.
23586
23587 2011-04-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
23588
23589 * net/network-stream.el (network-stream-open-starttls): Only do
23590 opportunistic STARTTLS upgrades if we have built-in GnuTLS support.
23591 Upgrades via gnutls-cli are too slow to be done opportunistically.
23592
23593 2011-04-12 Juanma Barranquero <lekktu@gmail.com>
23594
23595 * dframe.el (dframe-current-frame): Remove spurious quote.
23596
23597 2011-04-12 Glenn Morris <rgm@gnu.org>
23598
23599 * calendar/cal-tex.el (cal-tex-end-document):
23600 Try to automatically use latin1 input if needed.
23601
23602 * calendar/cal-hebrew.el (diary-hebrew-rosh-hodesh):
23603 Don't try to cons a mark onto an empty element.
23604
23605 2011-04-11 Leo Liu <sdl.web@gmail.com>
23606
23607 * ido.el (ido-buffer-internal): Allow method 'kill for virtual
23608 buffers.
23609 (ido-kill-buffer-at-head): Support killing virtual buffers.
23610
23611 2011-04-10 Chong Yidong <cyd@stupidchicken.com>
23612
23613 * minibuffer.el (completion-show-inline-help): New var.
23614 (completion--do-completion, minibuffer-complete)
23615 (minibuffer-force-complete, minibuffer-complete-word):
23616 Inhibit minibuffer messages if completion-show-inline-help is nil.
23617
23618 * icomplete.el (icomplete-mode): Bind completion-show-inline-help
23619 to avoid interference from inline help (Bug#5849).
23620
23621 2011-04-10 Leo Liu <sdl.web@gmail.com>
23622
23623 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
23624 Fix typo.
23625
23626 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
23627
23628 * image-mode.el (image-toggle-display-image): Signal an error if
23629 not in Image mode.
23630 (image-transform-mode, image-transform-resize)
23631 (image-transform-set-rotation): Doc fix.
23632 (image-transform-set-resize): Delete.
23633 (image-transform-set-scale, image-transform-fit-to-height)
23634 (image-transform-fit-to-width): Handle image-toggle-display-image
23635 and image-transform-resize directly.
23636
23637 2011-04-08 Sho Nakatani <lay.sakura@gmail.com>
23638
23639 * doc-view.el (doc-view-fit-width-to-window)
23640 (doc-view-fit-height-to-window, doc-view-fit-page-to-window):
23641 New functions for fitting the shown image to the Emacs window size.
23642 (doc-view-mode-map): Add bindings for the new functions.
23643
23644 2011-04-08 Juanma Barranquero <lekktu@gmail.com>
23645
23646 * vc/vc-annotate.el (vc-annotate-show-log-revision-at-line):
23647 Fix typo in docstring.
23648
23649 2011-04-08 Eli Zaretskii <eliz@gnu.org>
23650
23651 * files.el (file-size-human-readable): Produce one digit after
23652 decimal, like "ls -lh" does.
23653
23654 * ls-lisp.el (ls-lisp-format-file-size): Allow for 7 characters in
23655 the file size representation.
23656
23657 * simple.el (list-processes): If async subprocesses are not
23658 available, error out with a clear error message.
23659
23660 2011-04-08 Chong Yidong <cyd@stupidchicken.com>
23661
23662 * help.el (help-form-show): New function, to be called from C.
23663 Put help-form output in a buffer named differently than *Help*.
23664
23665 2011-04-08 Eli Zaretskii <eliz@gnu.org>
23666
23667 * files.el (file-size-human-readable): New function.
23668
23669 * ls-lisp.el (ls-lisp-format-file-size): Use it, instead of
23670 computing the representation inline. Don't require `cl'.
23671
23672 2011-04-08 Glenn Morris <rgm@gnu.org>
23673
23674 * man.el (Man-page-header-regexp): Solaris < 2.6 no longer supported.
23675
23676 * net/browse-url.el (browse-url-firefox):
23677 Test system-type, not system-configuration.
23678
23679 * vc/log-edit.el (log-edit-empty-buffer-p): New function.
23680 (log-edit-insert-cvs-template, log-edit-insert-cvs-rcstemplate):
23681 Use log-edit-empty-buffer-p. (Bug#7598)
23682
23683 * net/rlogin.el (rlogin-process-connection-type): Simplify.
23684 (rlogin-mode-map): Initialize in the defvar.
23685 (rlogin): Use ignore-errors.
23686
23687 * replace.el (occur-mode-map): Some fixes for menu items.
23688
23689 2011-04-07 Aaron S. Hawley <aaron.s.hawley@gmail.com>
23690
23691 * play/morse.el (denato-region): Handle varying case. (Bug#8386)
23692
23693 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
23694
23695 * emacs-lisp/cconv.el (cconv--analyse-use): Ignore "ignored" when
23696 issuing unused warnings.
23697
23698 * emacs-lisp/tabulated-list.el (tabulated-list-print): Use lambda
23699 macro directly.
23700
23701 * simple.el: Lisp reimplement of list-processes. Based on an
23702 earlier reimplementation by Leo Liu, but using tabulated-list.el.
23703 (process-menu-mode): New major mode.
23704 (list-processes--refresh, list-processes):
23705 (process-menu-visit-buffer): New functions.
23706
23707 * files.el (save-buffers-kill-emacs): Don't assume any return
23708 value of list-processes, which is undocumented anyway.
23709
23710 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
23711
23712 * emacs-lisp/tabulated-list.el: New file.
23713
23714 * emacs-lisp/package.el: Use Tabulated List mode.
23715 (package-menu-mode-map): Inherit from tabulated-list-mode-map.
23716 (package-menu-mode): Derive from tabulated-list-mode. Set up the
23717 table format using Tabulated List mode variables.
23718 (package--push): New macro, replacing package-list-maybe-add.
23719 (package-menu--generate): Use package--push. Renamed from
23720 package--generate-package-list.
23721 (package-menu-refresh, list-packages): Use it.
23722 (package-menu--print-info): Rename from package-print-package.
23723 Return insertion data instead of inserting it directly.
23724 (package-menu-describe-package, package-menu-execute):
23725 Use tabulated-list-get-id.
23726 (package-menu-mark-delete, package-menu-mark-install)
23727 (package-menu-mark-unmark, package-menu-backup-unmark)
23728 (package-menu-mark-obsolete-for-deletion):
23729 Use tabulated-list-put-tag.
23730 (package--list-packages, package-menu-revert)
23731 (package-menu-get-package, package-menu-get-version)
23732 (package-menu-sort-by-column): Functions deleted.
23733 (package-menu-package-list, package-menu-sort-key): Vars deleted.
23734 (package-menu--status-predicate, package-menu--version-predicate)
23735 (package-menu--name-predicate)
23736 (package-menu--description-predicate): Handle arguments in the
23737 Tabulated List format.
23738 (package-list-packages-no-fetch): Call list-packages.
23739
23740 2011-04-06 Juanma Barranquero <lekktu@gmail.com>
23741
23742 * files.el (after-find-file-from-revert-buffer): Remove variable.
23743 (after-find-file): Don't bind it.
23744 (revert-buffer-in-progress-p): New variable.
23745 (revert-buffer): Bind it.
23746 Pass nil for `after-find-file-from-revert-buffer'.
23747
23748 * saveplace.el (save-place-find-file-hook): Use new variable
23749 `rever-buffer-in-progress-p', not `after-find-file-from-revert-buffer'.
23750
23751 2011-04-06 Glenn Morris <rgm@gnu.org>
23752
23753 * Makefile.in (AUTOGEN_VCS): New variable.
23754 (autoloads): Use $AUTOGEN_VCS.
23755
23756 * calendar/cal-move.el (calendar-scroll-toolkit-scroll): New function.
23757 * calendar/calendar.el (calendar-mode-map):
23758 Check for toolkit scroll bars. (Bug#8305)
23759
23760 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
23761
23762 * minibuffer.el (completion-in-region--postch)
23763 (completion-in-region-mode): Remove unnecessary messages.
23764
23765 2011-04-05 Juanma Barranquero <lekktu@gmail.com>
23766
23767 * font-lock.el (font-lock-refresh-defaults):
23768 Don't bind `hi-lock--inhibit-font-lock-hook', removed in
23769 2010-10-09T04:09:19Z!cyd@stupidchicken.com and 2010-10-11T23:57:49Z!lekktu@gmail.com (2010-10-12).
23770
23771 * info.el (Info-directory-list, Info-read-node-name-2)
23772 (Info-split-parameter-string): Doc fixes.
23773 (Info-virtual-nodes): Reflow docstring.
23774 (Info-find-file, Info-directory-toc-nodes, Info-history-toc-nodes)
23775 (Info-apropos-toc-nodes, info-finder, Info-get-token)
23776 (Info-find-emacs-command-nodes, Info-speedbar-key-map):
23777 Fix typos in docstrings.
23778 (Info-revert-buffer-function, Info-search, Info-isearch-pop-state)
23779 (Info-speedbar-hierarchy-buttons, Info-speedbar-goto-node)
23780 (Info-speedbar-buttons, Info-desktop-buffer-misc-data)
23781 (Info-restore-desktop-buffer): Mark unused parameters.
23782 (Info-directory-find-file, Info-directory-find-node)
23783 (Info-history-find-file, Info-history-find-node, Info-toc-find-node)
23784 (Info-virtual-index-find-node, Info-apropos-find-file)
23785 (Info-apropos-find-node, Info-finder-find-file, Info-finder-find-node):
23786 Mark unused parameters; fix typos in docstrings.
23787 (Info-virtual-index): Remove unused local variable `nodename'.
23788
23789 2011-04-05 Deniz Dogan <deniz@dogan.se>
23790
23791 * net/rcirc.el: Update my e-mail address.
23792 (rcirc-mode-map): Remove M-o binding.
23793
23794 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
23795
23796 * startup.el (command-line): Save the cursor's theme-face
23797 directly, instead of using face-override-spec.
23798
23799 * custom.el (load-theme): Minor optimization in assigning faces.
23800
23801 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
23802
23803 * help-fns.el (describe-variable): Complete all variables having
23804 documentation, including keywords.
23805 http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00112.html
23806
23807 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
23808
23809 Convert to lexical-binding.
23810
23811 * bs.el (bs-refresh, bs-sort-buffer-interns-are-last)
23812 (bs--get-marked-string, bs--get-modified-string)
23813 (bs--get-readonly-string, bs--get-size-string, bs--get-name)
23814 (bs--get-mode-name, bs--get-file-name): Mark unused arguments.
23815 (bs--configuration-name-for-prefix-arg): Rename argument PREFIX-ARG.
23816
23817 * ehelp.el (electric-help-execute-extended)
23818 (electric-help-ctrl-x-prefix):
23819 * hexl.el (hexl-revert-buffer-function):
23820 * linum.el (linum-after-change, linum-after-scroll):
23821 * emacs-lisp/re-builder.el (reb-auto-update): Mark unused arguments.
23822
23823 * help-fns.el (help-describe-category-set): Remove unused ERR variable.
23824
23825 2011-04-04 Daiki Ueno <ueno@unixuser.org>
23826
23827 * epa-dired.el:
23828 * epa-mail.el:
23829 * epa-hook.el:
23830 * epa-file.el:
23831 * epa.el:
23832 * epg.el: Use lexical binding.
23833
23834 2011-04-03 Chong Yidong <cyd@stupidchicken.com>
23835
23836 * dired-aux.el (dired-create-files): Add docstring (Bug#7970).
23837
23838 * textmodes/flyspell.el (flyspell-word): Recognize default
23839 dictionary case for flyspell-mark-duplications-exceptions.
23840 Use regexp matching for languages.
23841 (flyspell-mark-duplications-exceptions): Add "that" and "had" for
23842 default dictionary (Bug#7926).
23843
23844 2011-04-02 Chong Yidong <cyd@stupidchicken.com>
23845
23846 * emacs-lisp/package.el (package--with-work-buffer):
23847 Recognize https URLs.
23848
23849 * net/network-stream.el: Move from gnus/proto-stream.el.
23850 Change prefix to network-stream throughout.
23851 (open-protocol-stream): Merge into open-network-stream, leaving
23852 open-protocol-stream as an alias. Handle nil BUFFER args.
23853
23854 * subr.el (open-network-stream): Move to net/network-stream.el.
23855
23856 2011-04-02 Glenn Morris <rgm@gnu.org>
23857
23858 * find-dired.el (find-exec-terminator): New option.
23859 (find-ls-option): Test for -ls support.
23860 (find-ls-subdir-switches): Test for -b in find-ls-option.
23861 (find-dired, find-grep-dired): Doc fixes.
23862 (find-dired): Use find-exec-terminator.
23863
23864 * find-dired.el (find-ls-option, find-ls-subdir-switches)
23865 (find-grep-options): Do not autoload these defcustoms, remove purecopy.
23866 (find-name-arg): Remove purecopy.
23867
23868 * progmodes/grep.el (grep-find-use-xargs): Doc fix.
23869 (grep-compute-defaults): Check for `-exec COMMAND +' support.
23870 Set grep-find-use-xargs, grep-find-command, and grep-find-template
23871 accordingly. Don't add the null-device if not needed.
23872
23873 * files.el (save-some-buffers): Doc fix.
23874
23875 2011-04-02 Eli Zaretskii <eliz@gnu.org>
23876
23877 * makefile.w32-in (EMACS): Default to ../src/$(BLD)/emacs.exe.
23878
23879 2011-04-01 Juanma Barranquero <lekktu@gmail.com>
23880
23881 * progmodes/idlwave.el (idlwave-one-key-select, idlwave-list-abbrevs):
23882 Use `dolist' rather than `mapcar'.
23883
23884 2011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
23885
23886 Add lexical binding.
23887
23888 * subr.el (apply-partially): Use new closures rather than CL.
23889 (--dolist-tail--, --dotimes-limit--): Don't declare dynamic.
23890 (dolist, dotimes): Use slightly different expansion for lexical code.
23891 (functionp): Move to C.
23892 (letrec): New macro.
23893 (with-wrapper-hook): Use it and apply-partially instead of CL.
23894 (eval-after-load): Preserve lexical-binding.
23895 (save-window-excursion, with-output-to-temp-buffer): Turn them
23896 into macros.
23897
23898 * simple.el (with-wrapper-hook, apply-partially): Move to subr.el.
23899
23900 * help-fns.el (help-split-fundoc): Return nil if there's nothing else
23901 than the arglist.
23902 (help-add-fundoc-usage): Don't add `Not documented'.
23903 (help-function-arglist): Handle closures, subroutines, and new
23904 byte-code-functions.
23905 (help-make-usage): Remove leading underscores.
23906 (describe-function-1): Handle closures.
23907 (describe-variable): Use special-variable-p for completion.
23908
23909 * files.el (lexical-binding): Declare safe.
23910
23911 * emacs-lisp/pcase.el: Don't use destructuring-bind.
23912 (pcase--memoize): Rename from pcase-memoize. Change weakness.
23913 (pcase): Add `let' pattern.
23914 Change memoization so it actually works.
23915 (pcase-mutually-exclusive-predicates): Add byte-code-function-p.
23916 (pcase--u1) <guard, pred>: Fix possible shadowing problem.
23917 <let>: New case.
23918
23919 * emacs-lisp/macroexp.el: Use lexical binding.
23920 (macroexpand-all-1): Check obsolete macros. Expand compiler-macros.
23921 Don't convert ' to #' without checking that it's indeed quoting
23922 a lambda.
23923
23924 * emacs-lisp/lisp-mode.el (eval-last-sexp-1):
23925 Use eval-sexp-add-defvars.
23926 (eval-sexp-add-defvars): New fun.
23927
23928 * emacs-lisp/float-sup.el (pi): Don't declare as dynamically bound.
23929
23930 * emacs-lisp/eieio.el (byte-compile-file-form-defmethod):
23931 Don't autoload.
23932 (eieio-defgeneric-form-primary-only-one): Use `byte-compile' rather
23933 than the internal `byte-compile-lambda'.
23934 (defmethod): Don't hide code under quotes.
23935 (eieio-defmethod): New `code' argument.
23936
23937 * emacs-lisp/eieio-comp.el: Remove.
23938
23939 * emacs-lisp/edebug.el (edebug-eval-defun)
23940 (edebug-eval-top-level-form): Use eval-sexp-add-defvars.
23941 (edebug-toggle): Avoid `eval'.
23942
23943 * emacs-lisp/disass.el (disassemble-internal): Handle new
23944 `closure' objects.
23945 (disassemble-1): Handle new byte codes.
23946
23947 * emacs-lisp/cl.el (pushnew): Silence warning.
23948
23949 * emacs-lisp/cl-macs.el (cl-byte-compile-block)
23950 (cl-byte-compile-throw): Remove.
23951 (cl-block-wrapper, cl-block-throw): Use compiler-macros instead.
23952
23953 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Properly quote CL
23954 closures.
23955
23956 * emacs-lisp/cconv.el: New file.
23957
23958 * emacs-lisp/bytecomp.el: Use lexical binding instead of
23959 a "bytecomp-" prefix. Macroexpand everything as a separate phase.
23960 (byte-compile-initial-macro-environment):
23961 Handle declare-function here.
23962 (byte-compile--lexical-environment): New var.
23963 (byte-stack-ref, byte-stack-set, byte-discardN)
23964 (byte-discardN-preserve-tos): New lap codes.
23965 (byte-interactive-p): Don't use any more.
23966 (byte-compile-push-bytecodes, byte-compile-push-bytecode-const2):
23967 New macros.
23968 (byte-compile-lapcode): Use them and handle new lap codes.
23969 (byte-compile-obsolete): Remove.
23970 (byte-compile-arglist-signature): Handle new byte-code arg"lists".
23971 (byte-compile-arglist-warn): Check late def of inlinable funs.
23972 (byte-compile-cl-warn): Don't silence warnings for compiler-macros
23973 since they should have been expanded by now.
23974 (byte-compile--outbuffer): Rename from bytecomp-outbuffer.
23975 (byte-compile-from-buffer): Remove unused second arg.
23976 (byte-compile-preprocess): New function.
23977 (byte-compile-toplevel-file-form): New function to distinguish
23978 file-form calls from outside from file-form calls from hunk-handlers.
23979 (byte-compile-file-form): Simplify.
23980 (byte-compile-file-form-defsubst): Remove.
23981 (byte-compile-file-form-defmumble): Simplify now that
23982 byte-compile-lambda always returns a byte-code-function.
23983 (byte-compile): Preprocess.
23984 (byte-compile-byte-code-maker, byte-compile-byte-code-unmake):
23985 Remove, not used any more.
23986 (byte-compile-arglist-vars, byte-compile-make-lambda-lexenv)
23987 (byte-compile-make-args-desc): New funs.
23988 (byte-compile-lambda): Handle lexical functions. Always return
23989 a byte-code-function.
23990 (byte-compile-reserved-constants): New var, to make up room for
23991 closed-over variables.
23992 (byte-compile-constants-vector): Obey it.
23993 (byte-compile-top-level): New args `lexenv' and `reserved-csts'.
23994 (byte-compile-macroexpand-declare-function): New function.
23995 (byte-compile-form): Call byte-compile-unfold-bcf to inline immediate
23996 byte-code-functions.
23997 (byte-compile-form): Check obsolescence here.
23998 (byte-compile-inline-lapcode, byte-compile-unfold-bcf): New functions.
23999 (byte-compile-variable-ref): Remove.
24000 (byte-compile-dynamic-variable-op): New fun.
24001 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
24002 (byte-compile-variable-set): New funs.
24003 (byte-compile-discard): Add 2 args.
24004 (byte-compile-stack-ref, byte-compile-stack-set)
24005 (byte-compile-make-closure, byte-compile-get-closed-var): New funs.
24006 (byte-compile-funarg, byte-compile-funarg-2): Remove, handled in
24007 macroexpand-all instead.
24008 (byte-compile-quote-form): Remove.
24009 (byte-compile-push-binding-init, byte-compile-not-lexical-var-p)
24010 (byte-compile-bind, byte-compile-unbind): New funs.
24011 (byte-compile-let): Handle let* and lexical binding.
24012 (byte-compile-let*): Remove.
24013 (byte-compile-catch, byte-compile-unwind-protect)
24014 (byte-compile-track-mouse, byte-compile-condition-case):
24015 Handle a new :fun-body form, used for lexical scoping.
24016 (byte-compile-save-window-excursion)
24017 (byte-compile-with-output-to-temp-buffer): Remove.
24018 (byte-compile-defun): Simplify.
24019 (byte-compile-stack-adjustment): New fun.
24020 (byte-compile-out): Use it.
24021 (byte-compile-refresh-preloaded): Don't reload byte-compiler files.
24022
24023 * emacs-lisp/byte-run.el (make-obsolete): Don't set the `byte-compile'
24024 handler any more.
24025
24026 * emacs-lisp/byte-opt.el: Use lexical binding.
24027 (byte-inline-lapcode): Remove (to bytecomp).
24028 (byte-compile-inline-expand): Pay attention to inlining to/from
24029 lexically bound code.
24030 (byte-compile-unfold-lambda): Don't handle byte-code-functions
24031 any more.
24032 (byte-optimize-form-code-walker): Don't handle save-window-excursion
24033 any more and don't call compiler-macros.
24034 (byte-compile-splice-in-already-compiled-code): Remove.
24035 (byte-code): Don't inline any more.
24036 (disassemble-offset): Receive `bytes' as argument rather than via
24037 dynamic scoping.
24038 (byte-compile-tag-number): Declare before first use.
24039 (byte-decompile-bytecode-1): Handle new byte-codes, don't change
24040 `return' even if make-spliceable.
24041 (byte-compile-side-effect-and-error-free-ops): Add stack-ref, remove
24042 obsolete interactive-p.
24043 (byte-optimize-lapcode): Optimize new lap-codes.
24044 Don't trip up on new form of `byte-constant' lap code.
24045
24046 * emacs-lisp/autoload.el (make-autoload): Don't burp on trivial macros.
24047
24048 * emacs-lisp/advice.el (ad-arglist): Use help-function-arglist.
24049
24050 * custom.el (custom-initialize-default, custom-declare-variable):
24051 Use `defvar'.
24052
24053 * Makefile.in (BIG_STACK_DEPTH, BIG_STACK_OPTS, BYTE_COMPILE_FLAGS):
24054 New variables.
24055 (compile-onefile, .el.elc, compile-calc, recompile): Use them.
24056 (COMPILE_FIRST): Add macroexp and cconv.
24057 * makefile.w32-in: Mirror changes in Makefile.in.
24058
24059 * vc/cvs-status.el:
24060 * vc/diff-mode.el:
24061 * vc/log-edit.el:
24062 * vc/log-view.el:
24063 * vc/smerge-mode.el:
24064 * textmodes/bibtex-style.el:
24065 * textmodes/css-mode.el:
24066 * startup.el:
24067 * uniquify.el:
24068 * minibuffer.el:
24069 * newcomment.el:
24070 * reveal.el:
24071 * server.el:
24072 * mpc.el:
24073 * emacs-lisp/smie.el:
24074 * doc-view.el:
24075 * dired.el:
24076 * abbrev.el: Use lexical binding.
24077
24078 2011-04-01 Eli Zaretskii <eliz@gnu.org>
24079
24080 * info.el (info-display-manual): New function.
24081
24082 2011-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
24083
24084 * loadup.el: Load minibuffer after loaddefs, to use define-minor-mode.
24085
24086 2011-03-31 Tassilo Horn <tassilo@member.fsf.org>
24087
24088 * net/rcirc.el (rcirc-handler-001): Only authenticate, if there's
24089 an entry for that server in rcirc-authinfo. (Bug#8385)
24090
24091 2011-03-31 Glenn Morris <rgm@gnu.org>
24092
24093 * progmodes/f90.el (f90-find-tag-default): Handle multiple `%'.
24094
24095 * generic-x.el (etc-fstab-generic-mode): Add ext4, sysfs keywords.
24096
24097 2011-03-30 Christoph Scholtes <cschol2112@googlemail.com>
24098
24099 * progmodes/python.el (python-default-interpreter)
24100 (python-python-command-args, python-jython-command-args)
24101 (python-which-shell, python-which-args, python-which-bufname)
24102 (python-file-queue, python-comint-output-filter-function)
24103 (python-toggle-shells, python-shell): Remove obsolete defcustoms,
24104 variables and functions.
24105
24106 2011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
24107
24108 * minibuffer.el (completion-table-dynamic): Optimize `boundaries'.
24109 (completion-in-region-mode): New minor mode.
24110 (completion-in-region): Use it.
24111 (completion-in-region--data, completion-in-region-mode-map): New vars.
24112 (completion-in-region--postch): New function.
24113 (completion--capf-misbehave-funs, completion--capf-safe-funs):
24114 New vars.
24115 (completion--capf-wrapper): New function.
24116 (completion-at-point): Use it to track well-behavedness of
24117 hook functions.
24118 (completion-help-at-point): New command.
24119
24120 2011-03-30 Jason Merrill <jason@redhat.com> (tiny change)
24121
24122 * vc/add-log.el (add-change-log-entry): Don't use whitespace
24123 syntax class to search for whitespace on a single line
24124 (Message-ID: <4D938140.4030905@redhat.com>).
24125
24126 2011-03-30 Leo Liu <sdl.web@gmail.com>
24127
24128 * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
24129 New commands.
24130 (edit-abbrevs-map): Bind them here.
24131 (write-abbrev-file): New optinal arg VERBOSE. (Bug#5937)
24132
24133 2011-03-29 Ken Manheimer <ken.manheimer@gmail.com>
24134
24135 * allout.el (allout-hide-by-annotation, allout-flag-region):
24136 Reduce possibility of overlay leakage by making them volatile.
24137
24138 * allout-widgets.el (allout-widgets-tally): Define as nil so the
24139 hash is not shared between buffers. Mode initialization is
24140 responsible for giving it a useful starting value.
24141 (allout-item-span): Reduce possibility of overlay leakage by
24142 making them volatile.
24143 (allout-widgets-count-buttons-in-region): Add diagnostic function
24144 for tracking down button overlay leaks.
24145
24146 2011-03-29 Leo Liu <sdl.web@gmail.com>
24147
24148 * ido.el (ido-read-internal): Use the default history var
24149 minibuffer-history if no HISTORY is specified.
24150
24151 2011-03-28 Brian T. Sniffen <bsniffen@akamai.com> (tiny change)
24152
24153 * net/imap.el (imap-shell-open, imap-process-connection-type):
24154 Use imap-process-connection-type for 'shell' streams as well as
24155 Kerberos, SSL, other subprocesses.
24156
24157 2011-03-28 Leo Liu <sdl.web@gmail.com>
24158
24159 * abbrev.el (abbrev-table-empty-p): New function.
24160 (prepare-abbrev-list-buffer): Place empty abbrev tables after
24161 nonempty ones. (Bug#5937)
24162
24163 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
24164
24165 * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
24166
24167 2011-03-27 Leo Liu <sdl.web@gmail.com>
24168
24169 * ansi-color.el (ansi-color-names-vector): Allow cons cell value
24170 for foreground and background colors.
24171 (ansi-color-make-color-map): Adapt.
24172
24173 2011-03-25 Leo Liu <sdl.web@gmail.com>
24174
24175 * midnight.el (midnight-time-float): Remove. Note it calculates
24176 the microsecond component incorrectly and seconds-to-time does the
24177 same job.
24178 Remove redundant (require 'timer).
24179
24180 * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
24181 (ido-completions): Remove unused arguments. (Bug#8329)
24182
24183 2011-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
24184
24185 * minibuffer.el (completion--flush-all-sorted-completions):
24186 Remove itself from hook.
24187 (completion-at-point): Let the functions perform the completion
24188 immediately and return nil or t.
24189 * comint.el (comint-dynamic-complete-functions): Now identical to
24190 completion-at-point-functions.
24191 (comint-dynamic-list-input-ring): Remove unused var `index'.
24192 (comint--match-partial-filename, comint--unquote&expand-filename):
24193 New funs, split from comint-match-partial-filename.
24194 (comint-dynamic-complete): Use completion-at-point.
24195 (comint-dynamic-complete-filename): Use comint--match-partial-filename.
24196
24197 2011-03-24 Drew Adams <drew.adams@oracle.com>
24198
24199 * thingatpt.el: Support `defun'.
24200
24201 2011-03-23 Leo Liu <sdl.web@gmail.com>
24202
24203 * abbrevlist.el: Move to obsolete/abbrevlist.el.
24204
24205 * help-mode.el (help-mode-finish): Tweak regexp.
24206
24207 2011-03-23 Glenn Morris <rgm@gnu.org>
24208
24209 * eshell/esh-opt.el (eshell-eval-using-options):
24210 Do not bind unused local variable `eshell-option-stub'.
24211
24212 * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
24213
24214 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
24215
24216 * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
24217 keymap variable in `with-no-warnings' to avoid a warning when the
24218 keymap has been already `defconst'ed.
24219
24220 2011-03-22 Leo Liu <sdl.web@gmail.com>
24221
24222 * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
24223 encode all chars in abbrevs; otherwise use emacs-mule or
24224 utf-8-emacs. (Bug#8308)
24225
24226 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
24227
24228 * simple.el (backward-delete-char-untabify):
24229 Avoid warning about using `delete-backward-char'.
24230
24231 * image.el (image-type-file-name-regexps): Make it variable.
24232 `imagemagick-register-types' modifies it, and the user may want
24233 to add new extensions for known image types.
24234 (imagemagick-register-types): Throw error if not using ImageMagick.
24235
24236 2011-03-22 Leo Liu <sdl.web@gmail.com>
24237
24238 * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
24239 located before rcirc-prompt-end-marker.
24240 (rcirc-complete): Error if point is not after rcirc prompt.
24241 Handle the case when table is nil.
24242 (rcirc-user-authenticated): Define to fix compiler warning.
24243
24244 2011-03-22 Chong Yidong <cyd@stupidchicken.com>
24245
24246 * custom.el (custom--inhibit-theme-enable): Make it affect only
24247 custom-theme-set-variables and custom-theme-set-faces.
24248 (provide-theme): Ignore custom--inhibit-theme-enable.
24249 (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
24250 (custom-enabling-themes): Delete variable.
24251 (enable-theme): Accept only loaded themes as arguments.
24252 Ignore the special custom-enabled-themes variable.
24253 (custom-enabled-themes): Forbid themes from setting this.
24254 Eliminate use of custom-enabling-themes.
24255 (custom-push-theme): Quote "changed" custom var entry.
24256
24257 2011-03-21 Leo Liu <sdl.web@gmail.com>
24258
24259 * ido.el (ido-read-internal): Add ido-selected to history instead
24260 of user input.
24261
24262 2011-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
24263
24264 * subr.el (deferred-action-list, deferred-action-function):
24265 Mark obsolete.
24266
24267 2011-03-21 Leo Liu <sdl.web@gmail.com>
24268
24269 * vc/log-view.el: Remove (require 'wid-edit), not needed after the
24270 change on 2011-02-13 (bug#8309).
24271
24272 * minibuffer.el (read-file-name-function): Change default value.
24273 (read-file-name--defaults): Rename from read-file-name-defaults.
24274 (read-file-name-default): Rename from read-file-name.
24275 (read-file-name): Call read-file-name-function.
24276
24277 2011-03-21 Glenn Morris <rgm@gnu.org>
24278
24279 * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
24280 Doc fixes.
24281
24282 2011-03-21 Chong Yidong <cyd@stupidchicken.com>
24283
24284 * cus-theme.el: Add missing provide statement.
24285 (customize-create-theme): Extract theme value correctly.
24286 (custom-theme-visit-theme): Autoload.
24287 (customize-create-theme): Prompt before inserting default faces.
24288
24289 2011-03-20 Jay Belanger <jay.p.belanger@gmail.com>
24290
24291 * calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
24292 units and musical notes.
24293
24294 2011-03-20 Leo Liu <sdl.web@gmail.com>
24295
24296 * ido.el (ido-read-internal): Use completing-read-default.
24297 (ido-completing-read): Fix compatibility with completing-read.
24298
24299 2011-03-20 Christian Ohler <ohler@gnu.org>
24300
24301 * emacs-lisp/ert.el (ert-run-tests-batch): Remove unused variable.
24302 (ert-delete-all-tests): Use `called-interactively-p' rather than
24303 `interactive-p'.
24304 (ert--make-xrefs-region): Respect END.
24305
24306 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
24307
24308 * dired-aux.el (dired-create-directory): Signal an error if the
24309 directory already exists (Bug#8246).
24310
24311 * facemenu.el (list-colors-display): Call list-faces-display
24312 inside with-help-window.
24313 (list-colors-print): Use display property to align the final
24314 column, instead of checking window-width.
24315
24316 2011-03-19 Eli Zaretskii <eliz@gnu.org>
24317
24318 * vc/emerge.el (emerge-metachars): Separate value for ms-dos and
24319 windows-nt systems.
24320 (emerge-protect-metachars): Quote correctly for ms-dos and
24321 windows-nt systems.
24322
24323 2011-03-19 Ralph Schleicher <rs@ralph-schleicher.de>
24324
24325 * info.el (info-initialize): Replace all uses of `:' with
24326 path-separator for compatibility with non-Unix systems.
24327 Cache quoting of path-separator. (Bug#8258)
24328
24329 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
24330
24331 * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
24332 (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
24333 (mouse-avoidance-mode): Fix typos in docstrings.
24334
24335 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
24336
24337 * startup.el (package-subdirectory-regexp): Move from package.el.
24338 Omit \\` and \\', and let callers add them.
24339
24340 * emacs-lisp/package.el (package-strip-version)
24341 (package-load-all-descriptors): Add \\` and \\' to
24342 package-subdirectory-regexp before using it.
24343 (package-untar-buffer): New arg DIR; ensure that file untars only
24344 into this expected directory. Remove superfluous delete-region.
24345 (package-unpack): Caller changed.
24346 (package-tar-file-info): Use package-subdirectory-regexp.
24347
24348 2011-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
24349
24350 * vc/diff-mode.el (diff-mode-map): Shadow problematic bindings from
24351 diff-mode-shared-map (bug#8284).
24352 (diff-mode-shared-map): Re-introduce some bindings that were problematic.
24353
24354 2011-03-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
24355
24356 * calendar/time-date.el (format-seconds): Use assoc instead of
24357 assoc-string, since assoc-string doesn't exist in XEmacs.
24358
24359 2011-03-17 Juanma Barranquero <lekktu@gmail.com>
24360
24361 * custom.el (custom-known-themes): Reflow docstring.
24362 (custom-theme-load-path): Fix typo in docstring.
24363 (load-theme): Fix typo in error message.
24364 (custom-available-themes, custom-variable-theme-value):
24365 Use `let', not `let*'.
24366
24367 2011-03-17 Jay Belanger <jay.p.belanger@gmail.com>
24368
24369 * calc/README: Mention inclusion of musical notes.
24370
24371 * calc/calc-units.el (calc-lu-quant): Rename from
24372 `calc-logunits-quantity'.
24373 (calcFunc-lupquant): Rename from `calcFunc-powerquant'.
24374 (calcFunc-lufquant): Rename from `calcFunc-fieldquant'.
24375 (calc-db): Rename from `calc-dblevel'.
24376 (calcFunc-dbpower): Rename from `calcFunc-dbpowerlevel'.
24377 (calcFunc-dbfield): Rename from `calcFunc-dbfieldlevel'.
24378 (calc-np): Rename from `calc-nplevel'.
24379 (calcFunc-nppower): Rename from `calcFunc-nppowerlevel'.
24380 (calcFunc-npfield): Rename from `calcFunc-npfieldlevel'.
24381 (calc-lu-plus): Rename from `calc-logunits-add'.
24382 (calcFunc-lupadd): Rename from `calcFunc-lupoweradd'.
24383 (calcFunc-lufadd): Rename from `calcFunc-lufieldadd'.
24384 (calc-lu-minus): Rename from `calc-logunits-sub'.
24385 (calcFunc-lupsub): Rename from `calcFunc-lupowersub'.
24386 (calcFunc-lufsub): Rename from `calcFunc-lufieldsub'.
24387 (calc-lu-times): Rename from `calc-logunits-mul'.
24388 (calcFunc-lupmul): Rename from `calcFunc-lupowermul'.
24389 (calcFunc-lufmul): Rename from `calcFunc-lufieldmul'.
24390 (calc-lu-divide): Rename from `calc-logunits-div'.
24391 (calcFunc-lupdiv): Rename from `calcFunc-lupowerdiv'.
24392 (calcFunc-lufdiv): Rename from `calcFunc-lufielddiv'.
24393
24394 * calc/calc-ext.el (calc-init-extensions): Update the names of the
24395 functions being autoloaded.
24396
24397 * calc/calc.el (calc-lu-power-reference): Rename from
24398 `calc-logunits-power-reference'.
24399 (calc-lu-field-reference): Rename from
24400 `calc-logunits-field-reference'.
24401
24402 * calc/calc-help.el (calc-l-prefix-help):
24403 Mention musical note functions.
24404
24405 2011-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
24406
24407 * minibuffer.el (completion-all-sorted-completions):
24408 Use :completion-cycle-penalty text property if present.
24409
24410 2011-03-16 Ken Manheimer <ken.manheimer@gmail.com>
24411
24412 * allout.el (allout-yank-processing): Adjust for new rebulleting
24413 regime so bullet being yanked is used without prompting the user
24414 for a choice.
24415
24416 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
24417
24418 * startup.el (command-line): Warn the user that _emacs is deprecated.
24419
24420 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
24421
24422 * progmodes/delphi.el (delphi-search-path, delphi-indent-level)
24423 (delphi-verbose, delphi-comment-face, delphi-string-face)
24424 (delphi-keyword-face, delphi-ignore-changes, delphi-indent-line)
24425 (delphi-mode-abbrev-table, delphi-debug-buffer, delphi-tab)
24426 (delphi-find-unit, delphi-find-current-xdef, delphi-fill-comment)
24427 (delphi-new-comment-line, delphi-font-lock-defaults)
24428 (delphi-debug-mode-map, delphi-mode-syntax-table, delphi-mode):
24429 Fix typos in docstrings.
24430
24431 2011-03-15 Ken Manheimer <ken.manheimer@gmail.com>
24432
24433 * allout.el (allout-make-topic-prefix, allout-rebullet-heading):
24434 Invert the roles of character and string values for INSTEAD, so a
24435 string is used for the more common case of a defaulting prompt.
24436
24437 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
24438
24439 * progmodes/ruby-mode.el (ruby-backward-sexp):
24440 * progmodes/ebrowse.el (ebrowse-draw-file-member-info):
24441 * play/gamegrid.el (gamegrid-make-face):
24442 * play/bubbles.el (bubbles--grid-width, bubbles--grid-height)
24443 (bubbles--colors, bubbles--shift-mode, bubbles--initialize-images):
24444 * notifications.el (notifications-notify):
24445 * net/xesam.el (xesam-search-engines):
24446 * net/quickurl.el (quickurl-list-insert):
24447 * vc/vc-hg.el (vc-hg-dir-printer): Fix use of case.
24448
24449 2011-03-15 Chong Yidong <cyd@stupidchicken.com>
24450
24451 * startup.el (command-line): Update package subdirectory regexp.
24452
24453 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
24454
24455 * allout.el (allout-abbreviate-flattened-numbering)
24456 (allout-mode-deactivate-hook): Fix up obsolescence "date".
24457
24458 * subr.el (read-char-choice): Only show the cursor after the prompt,
24459 not after the answer.
24460
24461 2011-03-15 Kevin Ryde <user42@zip.com.au>
24462
24463 * help-fns.el (variable-at-point): Skip leading quotes, if any
24464 (bug#8253).
24465
24466 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
24467
24468 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
24469 warning message.
24470
24471 2011-03-14 Michael Albinus <michael.albinus@gmx.de>
24472
24473 * shell.el (shell): When called interactively, offer to change the
24474 shell file name on remote hosts.
24475
24476 2011-03-13 Teodor Zlatanov <tzz@lifelogs.com>
24477
24478 * net/ldap.el (ldap-search-internal): Add `auth-source-search'
24479 integration for LDAP parameters. The host, base, user or binddn,
24480 and secret tokens can be specified in a netrc file, for instance.
24481 This is optional because an `auth-source' parameter must be
24482 specified in the search attributes.
24483
24484 2011-03-13 Juanma Barranquero <lekktu@gmail.com>
24485
24486 * help.el (describe-mode): Link to the mode's definition (bug#8185).
24487
24488 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
24489
24490 * ebuff-menu.el (electric-buffer-menu-mode-map): Move initialization
24491 into declaration. Remove redundant and harmful binding.
24492
24493 2011-03-12 Eli Zaretskii <eliz@gnu.org>
24494
24495 * files.el (file-ownership-preserved-p): Pass `integer' as an
24496 explicit 2nd argument to `file-attributes'. If the file's owner
24497 is the Administrators group on Windows, and the current user is
24498 Administrator, consider that a match.
24499
24500 * server.el (server-ensure-safe-dir): Consider server directory
24501 safe on MS-Windows if its owner is the Administrators group while
24502 the current Emacs user is Administrator. Use `=' to compare
24503 numerical UIDs, since they could be integers or floats.
24504
24505 2011-03-12 Juanma Barranquero <lekktu@gmail.com>
24506
24507 * vc/vc-bzr.el (vc-bzr-state): Handle bzr 2.3.0 (follow-up to bug#8170).
24508
24509 2011-03-12 Michael Albinus <michael.albinus@gmx.de>
24510
24511 Sync with Tramp 2.2.1.
24512
24513 * net/tramp-sh.el (tramp-methods): Exchange "%k" marker with options.
24514
24515 * net/trampver.el: Update release number.
24516
24517 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
24518
24519 * progmodes/compile.el (compilation--previous-directory): Fix up
24520 various nil/dead-marker mismatches (bug#8014).
24521 (compilation-directory-properties, compilation-error-properties):
24522 Don't call it at a position past the one we're about to change.
24523
24524 * emacs-lisp/bytecomp.el (byte-compile-make-obsolete-variable):
24525 Disable obsolescence warnings in the file that declares it.
24526
24527 2011-03-11 Ken Manheimer <ken.manheimer@gmail.com>
24528
24529 * allout-widgets.el (allout-widgets-tally):
24530 Initialize allout-widgets-tally as a hash table rather than nil to
24531 prevent mode-line redisplay warnings. Also, clarify the module
24532 description and fix a comment typo.
24533
24534 2011-03-11 Juanma Barranquero <lekktu@gmail.com>
24535
24536 * help-fns.el (describe-variable): Don't complete keywords.
24537 Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
24538
24539 2011-03-10 Chong Yidong <cyd@stupidchicken.com>
24540
24541 * emacs-lisp/package.el (package-version-join): Impose a standard
24542 string representation for pre/alpha/beta version lists.
24543 (package-unpack-single): Standardize the directory name by passing
24544 it through package-version-join.
24545 (package-strip-rcs-id): Accept any version string that does not
24546 signal an error in version-to-list.
24547
24548 2011-03-10 Michael Albinus <michael.albinus@gmx.de>
24549
24550 * simple.el (delete-trailing-whitespace): Return nil for the
24551 benefit of `write-file-functions'.
24552
24553 2011-03-10 Glenn Morris <rgm@gnu.org>
24554
24555 * vc/vc-hg.el (vc-hg-pull, vc-hg-merge-branch): Use vc-hg-program.
24556
24557 * vc/vc-git.el (vc-git-program): New option.
24558 (vc-git-branches, vc-git-pull, vc-git-merge-branch, vc-git-command)
24559 (vc-git--call): Use it.
24560
24561 * eshell/esh-util.el (eshell-condition-case): Doc fix.
24562
24563 * cus-edit.el (Custom-newline): If no button at point, look
24564 for a subgroup button at start-of-line. (Bug#2298)
24565
24566 * mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
24567
24568 2011-03-10 Julien Danjou <julien@danjou.info>
24569
24570 * avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if
24571 `cursor-type' is nil.
24572
24573 2011-03-09 Jay Belanger <jay.p.belanger@gmail.com>
24574
24575 * calc/calc.el (calc-mode-map): Don't bind "C-_" to `calc-missing-key'.
24576
24577 2011-03-09 Ken Manheimer <ken.manheimer@gmail.com>
24578
24579 * allout.el: Change so yank of distinctive-bullet items
24580 preserves the existing header prefix, rebulleting it if necessary,
24581 rather than replacing it. This is necessary for proper operation
24582 of cooperative addons like allout-widgets.
24583 (allout-make-topic-prefix, allout-rebullet-heading):
24584 Change SOLICIT arg to INSTEAD, and interpret additionally a string
24585 value as alternate bullet to be used, instead of prompting the user
24586 for a bullet character.
24587
24588 2011-03-09 Michael Albinus <michael.albinus@gmx.de>
24589
24590 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
24591 Do not use `tramp-file-name-port', because this returns also
24592 `tramp-default-port'.
24593
24594 2011-03-09 Deniz Dogan <deniz.a.m.dogan@gmail.com>
24595
24596 * net/rcirc.el (rcirc-handler-001): Remove useless
24597 with-rcirc-process-buffer.
24598 (rcirc-check-auth-status): Swap arguments to string-match.
24599
24600 2011-03-09 Glenn Morris <rgm@gnu.org>
24601
24602 * shell.el (shell-mode):
24603 Set comint-input-ring-size from HISTSIZE. (Bug#7889)
24604
24605 * progmodes/gdb-mi.el (gdb): Improve 2010-12-08 change.
24606 Check for GDBHISTFILE, HISTSIZE, etc. (Bug#7889)
24607
24608 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
24609
24610 * emacs-lisp/package.el (package-refresh-contents)
24611 (package-menu-execute): Use condition-case-no-debug.
24612
24613 2011-03-08 Michael Albinus <michael.albinus@gmx.de>
24614
24615 * simple.el (shell-command-to-string): Use `process-file'.
24616
24617 * emacs-lisp/package.el (package-tar-file-info): Handle also
24618 remote files.
24619
24620 * emacs-lisp/package-x.el (package-upload-buffer-internal):
24621 Use `equal' for upload base check.
24622
24623 2011-03-08 Arni Magnusson <arnima@hafro.is> (tiny change)
24624
24625 * textmodes/texinfo.el (texinfo-environments):
24626 Add deftypecv, deftypeivar, deftypemethod, deftypeop, html. (Bug#2783)
24627
24628 2011-03-08 Glenn Morris <rgm@gnu.org>
24629
24630 * cus-start.el (cursor-in-non-selected-windows):
24631 Fix :set quoting oddness. (Bug#8192)
24632
24633 * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
24634 in some setf expressions. (Bug#2159)
24635
24636 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
24637
24638 * custom.el (custom-available-themes): Return themes in
24639 alphabetical order.
24640
24641 See ChangeLog.15 for earlier changes.
24642
24643 ;; Local Variables:
24644 ;; coding: utf-8
24645 ;; End:
24646
24647 Copyright (C) 2011-2013 Free Software Foundation, Inc.
24648
24649 This file is part of GNU Emacs.
24650
24651 GNU Emacs is free software: you can redistribute it and/or modify
24652 it under the terms of the GNU General Public License as published by
24653 the Free Software Foundation, either version 3 of the License, or
24654 (at your option) any later version.
24655
24656 GNU Emacs is distributed in the hope that it will be useful,
24657 but WITHOUT ANY WARRANTY; without even the implied warranty of
24658 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24659 GNU General Public License for more details.
24660
24661 You should have received a copy of the GNU General Public License
24662 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.