Make Info-edit obsolete
[bpt/emacs.git] / lisp / ChangeLog
... / ...
CommitLineData
12013-02-21 Glenn Morris <rgm@gnu.org>
2
3 * info.el (Info-enable-edit): Remove.
4 (Info-edit): Disable it rather than using Info-enable.
5 (Info-edit-mode-hook, Info-edit-map, Info-edit-mode, Info-edit)
6 (Info-cease-edit): Make editing of Info files obsolete.
7
8 * informat.el (Info-tagify):
9 Handle buffers not visiting files. (Bug#13763)
10
112013-02-21 Juanma Barranquero <lekktu@gmail.com>
12
13 * calc/calc-graph.el (calc-graph-show-dumb): Fix typo.
14
152013-02-21 Glenn Morris <rgm@gnu.org>
16
17 * files.el (basic-save-buffer): Move check for existing parent
18 directory after hooks. (Bug#13773)
19
202013-02-20 Stefan Monnier <monnier@iro.umontreal.ca>
21
22 * simple.el (command-execute): Move from C. Add obsolete check.
23 (extended-command-history): Move from C.
24
252013-02-20 Ulrich Müller <ulm@gentoo.org>
26
27 * jka-cmpr-hook.el (jka-compr-compression-info-list)
28 (jka-compr-mode-alist-additions): Handle .txz suffix for
29 XZ-compressed tar archives (bug#13770).
30
312013-02-20 Bastien Guerry <bzg@gnu.org>
32
33 * outline.el (outline-regexp, outline-heading-end-regexp):
34 Make variables, not options (bug#13731).
35
362013-02-20 Glenn Morris <rgm@gnu.org>
37
38 * image.el (image-current-frame): Change from variable to function.
39 (image-show-frame): Rename from image-nth-frame. Update callers.
40 * image-mode.el (image-multi-frame): New variable.
41 (image-mode-map, image-mode, image-goto-frame):
42 Use image-multi-frame rather than image-current-frame.
43 (image-mode, image-goto-frame): Use image-current-frame as
44 function rather than as variable.
45
46 * emacs-lisp/cl-lib.el (cl-floatp-safe): Make it an alias for floatp.
47 * emacs-lisp/cl-macs.el (cl--make-type-test)
48 (cl--compiler-macro-assoc): Use floatp rather than cl-floatp-safe.
49
502013-02-19 Michael Albinus <michael.albinus@gmx.de>
51
52 * net/tramp-cache.el (tramp-get-hash-table): New defun.
53 (tramp-get-file-property, tramp-set-file-property)
54 (tramp-get-connection-property, tramp-set-connection-property): Use it.
55 (tramp-flush-file-property, tramp-flush-directory-property):
56 Rename argument to KEY.
57 (tramp-flush-connection-property): Simplify a little bit.
58 (tramp-connection-property-p): New defun.
59 (top): Reapply saved values only if there isn't a corresponding
60 entry in `tramp-connection-properties'.
61
622013-02-19 Fabián Ezequiel Gallina <fgallina@cuca>
63
64 * progmodes/python.el (python-indent-context):
65 Fix python-info-line-ends-backslash-p call.
66 (python-info-line-ends-backslash-p)
67 (python-info-beginning-of-backslash): Respect line-number argument.
68 (python-info-current-line-comment-p):
69 Fix behavior when not at beginning-of-line.
70 (python-util-position): Remove function.
71 (python-util-goto-line): New function.
72
732013-02-19 Michael Albinus <michael.albinus@gmx.de>
74
75 * eshell/em-unix.el (eshell/su): Require tramp.
76 (eshell/sudo): Require tramp. Remove now unnecessary check.
77
78 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Let-bind
79 `tramp-current-connection' in order to avoid an error when several
80 commands are invoked in a short time in eshell and friends.
81
822013-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
83
84 Cleanup some of EIEIO's namespace.
85 * emacs-lisp/eieio.el (eieio--define-field-accessors): New macro.
86 Use it to define all the class-* and object-* field accessors (renamed
87 to eieio--class-* and eieio--object-*). Update all uses.
88 (eieio--class-num-slots, eieio--object-num-slots): Rename from
89 class-num-slots and object-num-slots.
90 (eieio--check-type): New macro.
91 (eieio-defclass, eieio-oref, eieio-oref-default, same-class-p)
92 (object-of-class-p, child-of-class-p, object-slots, class-slot-initarg)
93 (eieio-oset, eieio-oset-default, object-assoc, object-assoc-list)
94 (object-assoc-list-safe): Use it.
95 (eieio-defclass): Tighten regexp.
96 (eieio--defmethod): Use `memq'. Signal an error for unknown method kind.
97 Remove unreachable code.
98 (object-class-fast): Declare obsolete.
99 (eieio-class-name, eieio-object-name, eieio-object-set-name-string)
100 (eieio-object-class, eieio-object-class-name, eieio-class-parents)
101 (eieio-class-children, eieio-class-precedence-list, eieio-class-parent):
102 Rename from class-name, object-name, object-set-name-string,
103 object-class, object-class-name, class-parents, class-children,
104 class-precedence-list, class-parent; with obsolete alias.
105 (class-of, class-direct-superclasses, class-direct-subclasses):
106 Declare obsolete.
107 (eieio-defmethod): Use `memq'; remove unreachable code.
108 * emacs-lisp/eieio-base.el (eieio-persistent-read):
109 * emacs-lisp/eieio-opt.el (eieio-class-button, eieio-describe-generic)
110 (eieio-browse-tree, eieio-browse): Use eieio--check-type.
111
112
1132013-02-18 Michael Heerdegen <michael_heerdegen@web.de>
114
115 * emacs-lisp/eldoc.el (eldoc-highlight-function-argument):
116 Use font-lock-keyword-face for macros and special forms (bug#8345).
117
1182013-02-17 Didier Verna <didier@didierverna.net>
119
120 * net/network-stream.el (network-stream-open-starttls):
121 Check that response to the starttls-command is non-nil. (Bug#13706)
122
1232013-02-17 Stefan Monnier <monnier@iro.umontreal.ca>
124
125 * font-lock.el (lisp-font-lock-keywords-1, lisp-font-lock-keywords-2):
126 Don't assume all identifier chars have syntax word.
127 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
128 Remove bar-not-symbol. Adjust callers.
129 (lisp-mode-variables): Don't set a font-lock-syntax-table.
130
1312013-02-17 Leo Liu <sdl.web@gmail.com>
132
133 * net/rcirc.el (rcirc-keepalive): Fix invalid timer error.
134
1352013-02-17 Glenn Morris <rgm@gnu.org>
136
137 * menu-bar.el (menu-bar-tools-menu): Fix case of EDE entry.
138
139 * image-mode.el (image-mode-map): Add image-dired menu entry.
140
141 * image-dired.el (tumme): Make this alias obsolete.
142
1432013-02-16 Glenn Morris <rgm@gnu.org>
144
145 * image.el (image-animated-types): Remove.
146 (image-multi-frame-p): Rename from image-animated-p, and generalize.
147 (image-animated-p): Make obsolete alias.
148 (image-animate, image-nth-frame, image-animate-timeout):
149 Use image-multi-frame-p.
150 (image-animate-timeout): If no delay, use image-default-frame-delay.
151 * image-mode.el (image-mode, image-toggle-animation):
152 Use image-multi-frame-p. (Bug#763, bug#10739)
153 (image-mode): Adjust startup message for a multi-frame image.
154
155 * image-mode.el (image-mode-map): Give it a menu.
156
1572013-02-16 Michael Albinus <michael.albinus@gmx.de>
158
159 * net/tramp-cache.el (tramp-connection-properties): New customer
160 option.
161 (tramp-get-connection-property): Use it.
162
163 * net/tramp-compat.el (top): Require 'trampver.
164
165 * net/tramp-sh.el (tramp-remote-process-environment):
166 Set tramp-autoload cookie.
167
1682013-02-16 Kevin Ryde <user42@zip.com.au>
169
170 * info-look.el (info-lookup-select-mode): If major-mode has no
171 info-lookup-alist entry then search up derived-mode-parent (bug#8660).
172
1732013-02-16 Jambunathan K <kjambunathan@gmail.com>
174
175 * replace.el (read-regexp): Tighten the regexp that matches tag.
176 When tag is retrieved with `find-tag-default', use regexp that
177 matches tag at point. Also update docstring (Bug#13687).
178
1792013-02-16 Eli Zaretskii <eliz@gnu.org>
180
181 * autorevert.el (auto-revert-notify-add-watch): With 'w32notify',
182 add watch for the file, not its parent directory, since w32notify
183 sets up the watch for the directory internally. (Bug#13725)
184
1852013-02-16 Glenn Morris <rgm@gnu.org>
186
187 * image.el (image-default-frame-delay): New variable.
188 (image-animated-p): Use image-default-frame-delay.
189 (image-minimum-frame-delay): New constant.
190 (image-animate-timeout): Use image-minimum-frame-delay.
191
192 * image.el (image-nth-frame): New, split from image-animate-timeout.
193 (image-animate-timeout): Use image-nth-frame.
194 * image-mode.el (image-goto-frame, image-next-frame)
195 (image-previous-frame): New commands.
196 (image-mode-map): Add new frame commands.
197
1982013-02-16 Jonas Bernoulli <jonas@bernoul.li>
199
200 * emacs-lisp/tabulated-list.el (tabulated-list-print-col):
201 If col-desc already has help-echo, use it. (Bug#13563)
202
2032013-02-16 Glenn Morris <rgm@gnu.org>
204
205 * image.el (image-current-frame): New variable.
206 (image-animate-timeout): Set image-current-frame.
207 * image-mode.el (image-mode): For animated images,
208 display a frame counter via mode-line-process.
209
210 * font-lock.el (lisp-font-lock-keywords-1): Add defvar-local.
211
2122013-02-15 Stefan Monnier <monnier@iro.umontreal.ca>
213
214 * simple.el (eval-expression): Let `exp' set the mark (bug#13724).
215
2162013-02-15 Alan Mackenzie <acm@muc.de>
217
218 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode): When a
219 global minor mode has been enabled, call the minor mode function
220 for a new buffer once only, after the major mode hook, whilst
221 allowing that hook explicitly to disable the minor mode.
222 (MODE-disable-in-buffer): New (generated) function.
223 (disable-MODE): New (generated) buffer local variable.
224
2252013-02-15 Jambunathan K <kjambunathan@gmail.com>
226
227 * iswitchb.el (iswitchb-read-buffer): Bind `C-.' and `C-,' to
228 `iswitchb-next-match' and `iswitchb-prev-match' resply.
229 * ido.el (ido-init-completion-maps): Bind `C-.' and `C-,' to
230 `ido-next-match' and `ido-prev-match' resply.
231 * icomplete.el (icomplete-minibuffer-map): Unbind `C-s' and `C-r'.
232 Bind `C-.' and `C-,' to `icomplete-forward-completions' and
233 `icomplete-backward-completions' (Bug#13708).
234
2352013-02-15 Glenn Morris <rgm@gnu.org>
236
237 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
238
2392013-02-15 Stefan Monnier <monnier@iro.umontreal.ca>
240
241 * net/goto-addr.el (goto-address-fontify): Add start and end args.
242 (goto-address-fontify-region): Use them instead of narrowing, so
243 syntax-ppss has access to the whole buffer.
244
2452013-02-15 Fabián Ezequiel Gallina <fgallina@cuca>
246
247 * progmodes/python.el: Explain how to restore "cc-mode"-like
248 forward-sexp movement in header documentation (Bug#13642).
249 (python-nav--forward-sexp): Behave like emacs-lisp-mode in
250 comments and strings (GH bug 114).
251
2522013-02-15 Fabián Ezequiel Gallina <fgallina@cuca>
253
254 * progmodes/python.el (python-info-current-defun): Fix current
255 defun detection (Bug#13618).
256
2572013-02-15 Chong Yidong <cyd@gnu.org>
258
259 * xml.el (xml-parse-string): Fix typo in handling of bad character
260 references.
261
2622013-02-15 Glenn Morris <rgm@gnu.org>
263
264 * play/fortune.el (fortune-compile): Simplify and fix previous change.
265
2662013-02-14 Michael Albinus <michael.albinus@gmx.de>
267
268 * net/tramp.el (tramp-debug-message):
269 Add `tramp-condition-case-unless-debug'.
270 (tramp-debug-on-error): New defvar.
271 (tramp-condition-case-unless-debug): New defun.
272 (tramp-file-name-handler): Use it.
273
2742013-02-14 Juri Linkov <juri@jurta.org>
275
276 * info.el (Info-isearch-filter): Treat non-nil values of
277 `search-invisible' including its default value `open'
278 like the value `t' to match hidden text. (Bug#13402)
279
2802013-02-14 Glenn Morris <rgm@gnu.org>
281
282 * help-fns.el (find-lisp-object-file-name): Give special treatment
283 to all ~/.foo.elc files, not just ~/.emacs. (Bug#9007)
284
2852013-02-14 David Biesack <sasdjb@d72933.na.sas.com> (tiny change)
286
287 * net/quickurl.el (quickurl-save-urls):
288 Ensure quickurl-urls is not truncated on printing. (Bug#9276)
289
2902013-02-14 Dmitry Gutov <dgutov@yandex.ru>
291
292 * progmodes/ruby-mode.el (ruby-parse-partial): Don't increase
293 depth for unfinished percent literal. Not using it in the caller.
294 (ruby-move-to-block): Jump over multiline literals of all types,
295 ignoring code-looking contents inside them.
296 (ruby-add-log-current-method): Improve performance at the expense
297 of accuracy. `ruby-block-contains-point' is relatively slow, so
298 only use it for method and singleton class blocks.
299
3002013-02-13 Michael Albinus <michael.albinus@gmx.de>
301
302 Use ControlMaster where applicable. (Bug#13677)
303
304 * net/tramp.el (tramp-ssh-controlmaster-template): New defvar,
305 replacing `tramp-detect-ssh-controlmaster'.
306 (tramp-default-method): Use it.
307
308 * net/tramp-sh.el (tramp-methods) [scp, scp1, scp2, scpx, sftp]:
309 [rsync, ssh, ssh1, ssh2, sshx]: Add ControlPath and ControlMaster
310 arguments.
311 [scpc, rsyncc]: Remove methods.
312 (top): Remove completion functions for "scpc", "rsyncc", "ssh1_old"
313 and "ssh2_old".
314 (tramp-do-copy-or-rename-file-out-of-band): Change trace level.
315 (tramp-maybe-open-connection): Reuse tmpfile for ControlPath.
316
3172013-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
318
319 * emacs-lisp/package.el (package--initialized): Move before first use.
320
3212013-02-13 Jambunathan K <kjambunathan@gmail.com>
322
323 * icomplete.el (icomplete-hide-common-prefix): New user option.
324 (icomplete-first-match): New face.
325 (icomplete-completions): Correct handling of "complete but not
326 unique" (Bug#12638).
327
3282013-02-13 YE Qianchuan <stool.ye@gmail.com> (tiny change)
329
330 * descr-text.el (describe-char): Display the script (bug#13698).
331
3322013-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
333
334 * tmm.el: Use lexical-binding and current-active-maps.
335 (tmm-menubar): Use map-keymap and pcase.
336 (tmm--completion-table): New function.
337 (tmm-prompt): Use it to fix the menu order.
338 (tmm-get-keybind): Use current-active-maps.
339
3402013-02-12 Christopher Schmidt <christopher@ch.ristopher.com>
341
342 Add dired-hide-details-mode. (Bug#6799)
343
344 * locate.el (locate-mode): Set parent mode property to dired-mode.
345
346 * find-dired.el (find-dired): Call dired-insert-set-properties on
347 initial information line. Set process mark on end of buffer.
348 (find-dired-sentinel):
349 Call dired-insert-set-properties on summary.
350
351 * dired.el (dired-hide-details-hide-symlink-targets)
352 (dired-hide-details-hide-information-lines): New options.
353 (dired-insert-directory):
354 Set properties after final treatment of output.
355 (dired-insert-set-properties):
356 Set dired-hide-details-* properties.
357 (dired-mode-map): Bind dired-hide-details-mode.
358 (dired-mode): Set buffer-invisibility-spec to a list.
359 (dired-next-line): Skip hidden lines.
360 (dired-previous-line): Use dired-next-line.
361 (dired-hide-details-mode): New minor mode.
362 (dired-hide-details-update-invisibility-spec): New function.
363
3642013-02-13 Glenn Morris <rgm@gnu.org>
365
366 * play/yow.el: Move to obsolete/. (Bug#9384)
367
3682013-02-13 Juri Linkov <juri@jurta.org>
369
370 * vc/ediff-util.el (ediff-recenter): Use `select-frame-set-input-focus'
371 to select `ediff-control-frame' and set input focus correctly on Xfce.
372 (Bug#12218)
373
3742013-02-13 Juri Linkov <juri@jurta.org>
375
376 * image-mode.el (image-mode-map):
377 * doc-view.el (doc-view-mode-map):
378 * vc/ediff-util.el (ediff-setup-keymap):
379 Make S-SPC scroll in the opposite sense to SPC. (Bug#2145)
380
3812013-02-13 Dmitry Gutov <dgutov@yandex.ru>
382
383 * progmodes/ruby-mode.el (ruby-move-to-block): Improve
384 performance. Instead of recalculating indentation fully for each
385 line, sum up indentation depth based only on visited lines.
386 (ruby-parse-partial): Increase the depth after "do" even when END
387 is right after it.
388 (ruby-parse-partial): When END is in the middle of a percent
389 literal, increase the depth if the delimiter chars belong to the
390 paren syntax class.
391
3922013-02-13 Kirill A. Korinskiy <catap@catap.ru>
393
394 * play/fortune.el (fortune-compile): Also make the compiled file
395 if it does not exist at all, not just if it is old. (Bug#5338)
396
3972013-02-13 Glenn Morris <rgm@gnu.org>
398
399 * emacs-lisp/package.el (package-menu-execute): Doc fix.
400
4012013-02-13 Yves Baumes <ybaumes@gmail.com> (tiny change)
402
403 * lisp/emacs-lisp/package.el (package-menu-execute):
404 Add optional noquery argument. (Bug#13625)
405
4062013-02-13 Michael Albinus <michael.albinus@gmx.de>
407
408 * net/ange-ftp.el (ange-ftp-make-directory): Don't raise an error,
409 if DIR exists and PARENTS is non-nil.
410
4112013-02-13 Juanma Barranquero <lekktu@gmail.com>
412
413 * progmodes/js.el (js--multi-line-declaration-indentation):
414 Silence byte-compiler warning.
415
4162013-02-12 Michael Albinus <michael.albinus@gmx.de>
417
418 * net/tramp-adb.el (tramp-adb-handle-start-file-process): Rewrite.
419
420 * net/tramp-compat.el (top): Declare `remote-file-name-inhibit-cache'
421 only if it doesn't exist.
422
423 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
424 Set process marker.
425
4262013-02-12 Tassilo Horn <tsdh@gnu.org>
427
428 * doc-view.el (doc-view-odf->pdf-converter-soffice): Use separate
429 UserInstallation when calling soffice to work around LibreOffice
430 bug 37531.
431
4322013-02-12 Glenn Morris <rgm@gnu.org>
433
434 * files.el (basic-save-buffer):
435 Offer to create a non-existing directory. (Bug#3016)
436
437 * calc/calc-graph.el (calc-graph-show-dumb):
438 * calendar/calendar.el (calendar-mode-map):
439 * cus-edit.el (custom-mode-map):
440 * ehelp.el (electric-help-map):
441 * emulation/vip.el (vip-mode-map):
442 * epa.el (epa-key-list-mode-map):
443 * info.el (Info-mode-map):
444 * mail/rmail.el (rmail-mode-map):
445 * mail/rmailsum.el (rmail-summary-mode-map):
446 * man.el (Man-mode-map):
447 * net/newst-plainview.el (newsticker-mode-map):
448 * progmodes/cpp.el (cpp-edit-mode-map):
449 * progmodes/grep.el (grep-mode-map):
450 * progmodes/idlw-help.el (idlwave-help-mode-map):
451 * simple.el (special-mode-map):
452 * startup.el (splash-screen-keymap):
453 * view.el (view-mode-map):
454 Make S-SPC scroll in the opposite sense to SPC. (Bug#2145)
455
4562013-02-11 Elias Pipping <pipping@lavabit.com>
457
458 * doc-view.el (doc-view-current-cache-dir): Beware % escapes
459 (bug#13679).
460
4612013-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
462
463 * cus-start.el (all): Remove inhibit-local-menu-bar-menus.
464
4652013-02-11 Glenn Morris <rgm@gnu.org>
466
467 * vc/diff.el (diff-use-labels): New variable.
468 (diff-no-select): Use --label rather than -L, and first
469 check that it is supported. (Bug#11067)
470
471 * files.el (enable-dir-local-variables): New variable.
472 (hack-dir-local-variables): Respect enable-dir-local-variables.
473 * tutorial.el (help-with-tutorial):
474 Ignore directory-local variables. (Bug#11127)
475
476 * vc/vc-svn.el (vc-svn-command): Move --non-interactive from here...
477 (vc-svn-global-switches): ... to here. (Bug#13513)
478
4792013-02-10 Christopher Schmidt <christopher@ch.ristopher.com>
480
481 * minibuf-eldef.el (minibuffer-default--in-prompt-regexps):
482 Handle "foo (bar, default: xxx): " prompts.
483
4842013-02-10 Chong Yidong <cyd@gnu.org>
485
486 * files.el (basic-save-buffer-1): Do not set
487 buffer-file-coding-system-explicit (Bug#4533).
488
489 * mail/emacsbug.el (report-emacs-bug): Change binding of
490 report-emacs-bug-insert-to-mailer to C-c M-i (Bug#13510).
491
4922013-02-09 Jay Belanger <jay.p.belanger@gmail.com>
493
494 * calc/calc.el (calc-allow-units-as-numbers): New variable.
495 * calc/calc-units.el (calc-convert-units): Use new variable.
496
4972013-02-09 Eli Zaretskii <eliz@gnu.org>
498
499 * subr.el (buffer-file-type, default-buffer-file-type): Remove.
500
501 * net/ange-ftp.el (ange-ftp-insert-file-contents): Don't reference
502 buffer-file-type.
503
504 * mail/feedmail.el (feedmail-force-binary-write): Doc fix.
505 (feedmail-run-the-queue, feedmail-dump-message-to-queue)
506 (feedmail-send-it-immediately): Don't bind buffer-file-type, bind
507 coding-system-for-write instead.
508
509 * jka-compr.el (jka-compr-write-region): Don't bind
510 buffer-file-type.
511
512 * emacs-lisp/bytecomp.el (byte-compile-file): Don't bind
513 buffer-file-type.
514
515 * files.el (file-name-buffer-file-type-alist): Remove defvar.
516 (insert-file-contents-literally): Remove reference to
517 file-name-buffer-file-type-alist.
518
519 * dos-w32.el (file-name-buffer-file-type-alist): Deprecate and
520 make-obsolete.
521 (find-buffer-file-type-match, find-buffer-file-type): Remove.
522 (find-buffer-file-type-coding-system): Remove references to
523 find-buffer-file-type-match, find-buffer-file-type, and
524 buffer-file-type.
525 Don't put find-buffer-file-type-coding-system into
526 file-coding-system-alist.
527 (find-file-binary, find-file-text): Bind coding-system-for-read
528 instead of file-name-buffer-file-type-alist.
529
5302013-02-09 Jambunathan K <kjambunathan@gmail.com>
531
532 * doc-view.el: Use (and prefer) soffice as default ODF->PDF
533 converter (Bug#13622).
534 (doc-view-unoconv-program): Make obsolete alias.
535 (doc-view-odf->pdf-converter-program): New variable.
536 (doc-view-odf->pdf-converter-function): New variable.
537 (doc-view-mode-p): Use it.
538 (doc-view-odf->pdf-converter-unoconv):
539 Rename from `doc-view-odf->pdf-converter-unoconv'.
540 (doc-view-odf->pdf-converter-soffice): New function.
541 (doc-view-convert-current-doc):
542 Use `doc-view-odf->pdf-converter-function'.
543
5442013-02-09 Chong Yidong <cyd@gnu.org>
545
546 * minibuffer.el (minibuffer-inactive-mode-map): Bind mouse-1 to
547 view-echo-area-messages (Bug#13340).
548
549 * help.el (view-echo-area-messages): Use display-buffer.
550
551 * dired-x.el (dired-do-run-mail): Prompt for confirmation
552 (Bug#13561).
553
5542013-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
555
556 * emacs-lisp/byte-run.el (eval-when-compile, eval-and-compile):
557 Eval body right away, now that we do eager macroexpansion (bug#13605).
558
559 * simple.el (end-of-buffer): Don't touch unrelated windows (bug#13466).
560 (fundamental-mode): Use run-mode-hooks.
561
562 * eshell/esh-proc.el (eshell/kill): Fix last change.
563 * eshell/em-ls.el (eshell-ls-dir): Fix use of CL in last change.
564
5652013-02-08 Aidan Gauland <aidalgol@no8wireless.co.nz>
566
567 * eshell/esh-proc.el (eshell/kill): Rewrite.
568
569 * eshell/em-ls.el (show-almost-all): Declare.
570 (eshell-do-ls): Add support for -A argument.
571
5722013-02-08 Jambunathan K <kjambunathan@gmail.com>
573
574 * icomplete.el (icomplete-forward-completions)
575 (icomplete-backward-completions): Handle corner case (bug#13602).
576
5772013-02-07 Michael Albinus <michael.albinus@gmx.de>
578
579 * vc/vc-hooks.el (vc-find-file-hook): `buffer-file-truename' can
580 be nil. Handle this. (Bug#13636)
581
5822013-02-07 Richard Stallman <rms@gnu.org>
583
584 * mail/rmail.el (rmail-variables): Specify `no-conversion' for
585 `save-buffer-coding-system'.
586
5872013-02-07 Alan Mackenzie <acm@muc.de>
588
589 Fix bug in state cache mechanism. Remove 'BOD "strategy". Refactor.
590 * progmodes/cc-engine.el (c-get-fallback-scan-pos): Remove.
591 (c-parse-state-get-strategy): Don't return 'BOD any more.
592 (c-append-lower-brace-pair-to-state-cache):
593 Extra parameter HERE instead of narrowing.
594 Widen to top of buffer before searching backwards for a brace pair.
595 (c-state-push-any-brace-pair): Add HERE parameter to function call.
596 (c-append-to-state-cache): Extra parameter HERE in place of narrowing.
597 Narrow to parameter HERE, in place of being called narrowed.
598 (c-remove-stale-state-cache): Extra parameter HERE in place of
599 narrowing. Check there's an open brace in the cache before
600 searching for its match.
601 (c-invalidate-state-cache-1): Add HERE parameter to function call.
602 (c-parse-state-1): Don't narrow here for 'forward strategy,
603 instead passing extra parameter HERE to several functions.
604 Remove 'BOD strategy.
605
6062013-02-06 Nicolas Richard <theonewiththeevillook@yahoo.fr> (tiny change)
607
608 * emacs-lisp/package.el (describe-package-1): Tell what archive is
609 used to install the package.
610
6112013-02-06 Glenn Morris <rgm@gnu.org>
612
613 * vc/vc-hooks.el (vc-find-file-hook): Don't ask about following links
614 if we can't get user input. (Bug#6567)
615
616 * startup.el (command-line): If simple.el is missing,
617 test and warn about for some possible causes.
618
6192013-02-05 Jan Djärv <jan.h.d@swipnet.se>
620
621 * cus-start.el (all): Add ns-use-native-fullscreen.
622
6232013-02-05 Glenn Morris <rgm@gnu.org>
624
625 * profiler.el (profiler-report-mode-map): Add a restart menu entry.
626
627 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
628 Fix directory creation in fallback case.
629
6302013-02-04 Thierry Volpiatto <thierry.volpiatto@gmail.com>
631
632 * vc/vc.el (vc-next-action): Fix inf-loop (bug#13610).
633 (vc-update-change-log): Use dolist.
634
6352013-02-04 Chong Yidong <cyd@gnu.org>
636
637 * thingatpt.el: Rewrite the URL detection routines, absorbing some
638 code from ffap.el.
639 (thing-at-point-beginning-of-url-regexp): New var.
640 (thing-at-point-uri-schemes): Update list of URI schemes.
641 (thing-at-point-url-regexp): Variable deleted.
642 (thing-at-point-markedup-url-regexp): Disallow newlines.
643 (thing-at-point-newsgroup-regexp)
644 (thing-at-point-newsgroup-heads)
645 (thing-at-point-default-mail-uri-scheme): New variables.
646 (thing-at-point-bounds-of-url-at-point): Rewrite. Use ffap's
647 method to find the possible bounds of the URI at point.
648 New optional argument to find ill-formed URIs.
649 (thing-at-point-url-at-point): Rewrite. New arguments for finding
650 ill-formed URIs. Use thing-at-point-bounds-of-url-at-point, and
651 the scheme-adding heuristics from ffap-url-at-point.
652 (thing-at-point--bounds-of-well-formed-url): New function.
653 Do parens matching to decide whether to include parens in the URI
654 (Bug#9153).
655
656 * ffap.el: Require thingatpt.
657 (ffap-url-at-point): Delegate URI detection to thing-at-point.
658 All URI-valid characters are now recognized (Bug#5673).
659 (ffap-string-at-point): Use use-region-p.
660 (ffap-url-regexp): Extra character is handled by thing-at-point.
661 (ffap-string-at-point-mode-alist): Allow parentheses.
662 (ffap-newsgroup-regexp, ffap-newsgroup-heads, ffap-newsgroup-p):
663 Convert to aliases; code moved to thingatpt.el.
664 (ffap-gnus-hook): Use setq-local.
665
6662013-02-04 Glenn Morris <rgm@gnu.org>
667
668 * emacs-lisp/ert.el (ert--explain-format-atom):
669 Don't try to print non-characters as characters. (Bug#13543)
670
6712013-02-03 Michael Albinus <michael.albinus@gmx.de>
672
673 * net/tramp.el (tramp-debug-message): Extend function exclude list.
674 (tramp-backtrace): New defun.
675 (tramp-handle-insert-file-contents): Use `visit' when inserting
676 the local copy.
677
678 * net/tramp-sh.el (tramp-sh-handle-set-visited-file-modtime):
679 Use `remote-file-name-inhibit-cache'.
680
6812013-02-03 Stefan Monnier <monnier@iro.umontreal.ca>
682
683 * progmodes/cperl-mode.el (cperl-mode): Avoid byte-compile warning
684 (bug#13614).
685
686 * subr.el (internal--called-interactively-p--get-frame): Avoid filling
687 current-load-list (bug#13366).
688
6892013-02-02 Christopher Schmidt <christopher@ch.ristopher.com>
690
691 * progmodes/compile.el (compilation-error-regexp-alist-alist):
692 Identify g++ template instantiation trace. (Bug#12287)
693 (compilation-mode-hook, compilation-start-hook)
694 (compilation-window-height): Simplify docstrings. (Bug#13379)
695
6962013-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
697
698 * mouse.el (mouse-drag-track): Always deactivate the mark before
699 running the final event's command since that command is in charge of
700 activating the mark if needed (bug#13523).
701
7022013-02-02 Juri Linkov <juri@jurta.org>
703
704 * replace.el (perform-replace): Move let-bindings of isearch-*
705 variables deeper to the loop that searches for the next match.
706 Add bindings for `isearch-nonincremental' and `isearch-adjusted'.
707 Use `isearch-search-fun-default' instead of `isearch-search-fun'.
708 (Bug#13579)
709
710 * isearch.el (isearch-search-fun-default): Check for null
711 first element of isearch-cmds as a precaution when it's used
712 with inactive isearch.
713
7142013-02-02 Andrew W. Nosenko <andrew.w.nosenko@gmail.com> (tiny change)
715
716 * net/tramp.el (tramp-check-for-regexp): Avoid "Args out of range"
717 error when buffer in question is narrowed so position 1 is out of
718 visible part.
719
7202013-02-02 Glenn Morris <rgm@gnu.org>
721
722 * textmodes/remember.el (remember-clipboard): Doc fix.
723
7242013-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
725
726 * progmodes/make-mode.el (makefile-fill-paragraph): Reset syntax-table
727 properties (bug#13179).
728
7292013-02-02 Juri Linkov <juri@jurta.org>
730
731 * progmodes/grep.el (grep-regexp-alist): Use variable grep-match-face
732 instead of hard-coded default face `match'. (Bug#9438)
733
7342012-02-01 Christopher Schmidt <christopher@ch.ristopher.com>
735
736 * vc/vc-arch.el (vc-arch-registered):
737 * vc/vc-bzr.el (vc-bzr-registered):
738 * vc/vc-cvs.el (vc-cvs-registered):
739 * vc/vc-git.el (vc-git-registered):
740 * vc/vc-hg.el (vc-hg-registered):
741 * vc/vc-mtn.el (vc-mtn-registered):
742 * vc/vc-svn.el (vc-svn-registered): Suppress load messages.
743 (Bug#13139)
744
745 * info.el (Info-next-reference, Info-prev-reference): Add numeric
746 prefix argument. (Bug#11656)
747
7482013-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
749
750 * help-fns.el (help-split-fundoc): Don't insert byte-compiled body.
751
7522013-02-01 Glenn Morris <rgm@gnu.org>
753
754 * vc/vc-hooks.el (vc-menu-map): Disable vc-rollback menu item
755 if the backend is known not to support it.
756
757 * imenu.el (imenu-default-create-index-function):
758 Tweak infinite loop test to check for forward motion as well as none.
759
7602013-02-01 Alex Harsanyi <AlexHarsanyi@gmail.com>
761
762 * net/soap-client.el (soap-invoke): Encode the string for
763 `url-request-data' as UTF-8.
764 Fixes <http://code.google.com/p/emacs-soap-client/issues/detail?id=16>.
765
7662013-02-01 Glenn Morris <rgm@gnu.org>
767
768 * calc/calc-help.el (calc-view-news): Use view-emacs-news.
769
770 * calc/README, calc/README.prev: Rename/merge to etc/CALC-NEWS.
771
7722013-01-31 Michael Albinus <michael.albinus@gmx.de>
773
774 * net/tramp.el (tramp-tramp-file-p): Comment check for
775 `string-as-unibyte'. The function does not exist on XEmacs, and
776 likely we need another approach.
777
778 * net/tramp-sh.el (tramp-compute-multi-hops): Check, whether
779 `tramp-gw-*' variables are bound.
780
7812013-01-31 Glenn Morris <rgm@gnu.org>
782
783 * files.el (basic-save-buffer-2): Choose coding system for
784 writing the file before backing it up, to reduce delay between
785 backing up and writing the new version. (Bug#13522)
786
7872013-01-31 Michal Nazarewicz <mina86@mina86.com>
788
789 * simple.el (cycle-spacing): New command.
790 (just-one-space): Use it.
791
7922013-01-31 Stefan Monnier <monnier@iro.umontreal.ca>
793
794 * progmodes/opascal.el: Rename from delphi.el. Use lexical-binding.
795 (opascal-newline-always-indents): Remove custom.
796 (opascal-tab, opascal-newline): Remove commands.
797 (opascal-new-comment-line): Insert "\n" instead of calling newline.
798 (opascal-mode-map): Keep default bindings for RET and TAB and DEL.
799 (opascal-save-match-data): Remove, use save-match-data instead.
800 (opascal-save-state): Use with-silent-modifications.
801
802 * progmodes/pascal.el (pascal-mode-syntax-table): Accept //..\n comments
803 (bug#13585).
804
8052013-01-30 Juri Linkov <juri@jurta.org>
806
807 * frame.el (toggle-frame-maximized, toggle-frame-fullscreen):
808 Use fullboth as an alias for fullscreen. Suggested by Jan Djärv in
809 <http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00203.html>.
810
8112013-01-30 Stefan Monnier <monnier@iro.umontreal.ca>
812
813 * progmodes/make-mode.el (makefile-backslash-region): Don't compute
814 column if we're just deleting the backslashes.
815 (makefile-fill-paragraph): Use eolp.
816
8172013-01-30 Michael Albinus <michael.albinus@gmx.de>
818
819 * autorevert.el (auto-revert-use-notify): Fix docstring.
820
8212013-01-30 Leo Liu <sdl.web@gmail.com>
822
823 * imenu.el (imenu--truncate-items): Fix subalist checking (bug#13576).
824
8252013-01-30 Glenn Morris <rgm@gnu.org>
826
827 * mouse.el (mouse-drag-line): Avoid pushing same event onto
828 unread-command-events twice in some cases. This tries to implement
829 the 2012-07-26 changes in a different way. (Bug#13560)
830
8312013-01-30 Fabián Ezequiel Gallina <fgallina@cuca>
832
833 * progmodes/python.el
834 (python-pdbtrack-comint-output-filter-function): Enhancements on
835 stacktrace detection. (thanks @gnovak)
836
8372013-01-30 Stefan Monnier <monnier@iro.umontreal.ca>
838
839 * jit-lock.el (jit-lock-stealth-chunk-start): Don't widen (bug#13542).
840 (jit-lock-mode, jit-lock-functions, jit-lock-context-unfontify-pos):
841 Use defvar-local.
842 (jit-lock-register): Use setq-local.
843
8442013-01-30 Jay Belanger <jay.p.belanger@gmail.com>
845
846 * calc-units.el (math-default-units-table): Remove initial value.
847 (calc-convert-units): Treat expressions where all the units cancel as
848 if they didn't have units.
849
8502013-01-30 Michael Albinus <michael.albinus@gmx.de>
851
852 * net/tramp.el (tramp-process-connection-type): Fix docstring.
853 (tramp-completion-reread-directory-timeout): Fix type.
854 (tramp-connection-min-time-diff): New defcustom.
855
856 * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
857
8582013-01-30 Glenn Morris <rgm@gnu.org>
859
860 * imenu.el (imenu-default-create-index-function):
861 Put back a version of the infinite loop test removed 2013-01-23.
862
8632013-01-30 Fabián Ezequiel Gallina <fgallina@cuca>
864
865 * progmodes/python.el (python-shell-parse-command):
866 Find python-shell-interpreter with modified environment.
867
8682013-01-30 Stefan Monnier <monnier@iro.umontreal.ca>
869
870 * emacs-lisp/cl.el (cl-set-getf): Add compatibility alias.
871
8722013-01-29 Alan Mackenzie <acm@muc.de>
873
874 Amend to fontify /regexp/s in actions correctly.
875 * cc-awk.el (c-awk-harmless-char-re, c-awk-harmless-string*-re):
876 (c-awk-harmless-string*-here-re): Braces, parens and semicolons
877 are no longer included.
878 (c-awk-harmless-line-char-re, c-awk-harmless-line-string*-re):
879 What used to be these variables without "-line" in the name.
880 (c-awk-neutral-re): { is no longer neutral. Escaped newlines now are.
881 (c-awk-non-arith-op-bra-re): Now also matches {.
882 (c-awk-pre-exp-alphanum-kwd-re): New regexp to match "print",
883 "return", and "case".
884 (c-awk-kwd-regexp-sign-re): New, to match "print", etc., followed
885 by /.
886 (c-awk-syntax-tablify-/): Check special cases "print /re/", etc.
887 (c-awk-set-syntax-table-properties): Extend FSM to handle {,},(,),;.
888
8892013-01-29 Michael Albinus <michael.albinus@gmx.de>
890
891 * autorevert.el (auto-revert-use-notify):
892 Use `custom-initialize-default' for initialization. (Bug#13583)
893
894 * net/ange-ftp.el (ange-ftp-skip-msgs): Add another message.
895
896 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
897 Catch `suppress'. Otherwise, `tramp-run-real-handler' might be called
898 in `tramp-file-name-handler'.
899 (tramp-gw-tunnel-method, tramp-gw-socks-method): Declare for
900 compatibility.
901 (tramp-compute-multi-hops): Check, whether
902 `tramp-gw-tunnel-method' and `tramp-gw-socks-method' are non-nil.
903
9042013-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
905
906 * hi-lock.el (hi-lock-unface-buffer): Don't assume `face' is a symbol
907 (bug#13297).
908
9092013-01-27 Dmitry Gutov <dgutov@yandex.ru>
910
911 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Remove some
912 checks made superfluous by the \_< operator.
913 * progmodes/ruby-mode.el (ruby-move-to-block): Work with (maybe
914 temporarily) broken indentation.
915 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
916 Highlight nested constants, too. \_< broke that.
917
9182013-01-27 Nobuyoshi Nakada <nobu@ruby-lang.org>
919
920 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Use "\\_<"
921 instead of "\\b".
922
9232013-01-27 Michael Albinus <michael.albinus@gmx.de>
924
925 * autorevert.el (auto-revert-handler): Notifications which result
926 from a saved file shall not be taken into account. (Bug#13557)
927
9282013-01-26 Andreas Schwab <schwab@linux-m68k.org>
929
930 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Add optional
931 parameter BAR-NOT-SYMBOL to control syntax of | for font-lock.
932 (lisp-mode): Pass t for it. (Bug#13556)
933
9342013-01-25 Alan Mackenzie <acm@muc.de>
935
936 AWK Mode: Fix indentation bug at top level. Bug #12274.
937
938 * progmodes/cc-engine.el (c-guess-basic-syntax): Move CASE 5P to
939 just before CASE 5D.
940
9412013-01-25 Dmitry Antipov <dmantipov@yandex.ru>
942
943 * net/socks.el (socks-nslookup-host): Use string-to-number.
944
9452013-01-25 Michael Albinus <michael.albinus@gmx.de>
946
947 * autorevert.el (auto-revert-remote-files)
948 (auto-revert-notify-exclude-dir-regexp): New defcustoms.
949 (auto-revert-notify-enabled, auto-revert-use-notify)
950 (auto-revert-notify-watch-descriptor-hash-list)
951 (auto-revert-notify-modified-p, auto-revert-notify-event-p)
952 (auto-revert-notify-event-descriptor)
953 (auto-revert-notify-event-action)
954 (auto-revert-notify-event-file-name): Doc fix.
955 (global-auto-revert-mode): Reorder checks.
956 (auto-revert-notify-rm-watch): Respect changed values of
957 `auto-revert-notify-watch-descriptor-hash-list'.
958 (auto-revert-notify-add-watch): Check for
959 `auto-revert-notify-exclude-dir-regexp'. Adapt filters for
960 `inotify-add-watch'. Watch `default-directory' instead of
961 `buffer-file-name'. `auto-revert-notify-watch-descriptor-hash-list'
962 has a changed meaning now. (Bug#13540)
963 (auto-revert-notify-handler): Change implementation wrt events
964 returning from a directory.
965 (auto-revert-handler): Reorder implementation for checks of remote
966 files.
967 (auto-revert-buffers): Fix parentheses error.
968
9692013-01-25 Fabián Ezequiel Gallina <fgallina@cuca>
970
971 * progmodes/python.el: Enhancements to header documentation about
972 skeletons. (Bug#5716)
973
974 * imenu.el (imenu-default-create-index-function): Remove useless
975 infinite loop check. (Bug#13438)
976
9772013-01-25 Alan Mackenzie <acm@muc.de>
978
979 Fix a bug in the state cache mechanism. Refactor this a bit.
980
981 * progmodes/cc-engine.el (c-parse-state-get-strategy): Remove the
982 `cache-pos' element from the return value.
983 (c-append-lower-brace-pair-to-state-cache): "Narrow" to end of
984 buffer to enable proper searching from beyond HERE. Amend the
985 test for detecting the sought brace pair. Amend the value written
986 to the "brace desert cache" when the brace isn't found.
987 (c-remove-stale-state-cache): Rename `good-pos' to `start-point',
988 and several other variables analogously.
989 (c-remove-stale-state-cache-backwards): Change `cache-pos' from a
990 parameter to a locally calculated variable.
991 (c-parse-state-1): Change the calling conventions to the two
992 defuns involving `cache-pos'.
993
9942013-01-25 Chong Yidong <cyd@gnu.org>
995
996 * xml.el (xml-entity-or-char-ref-re): Fix regexp.
997
9982013-01-24 Aaron Ecay <aaronecay@gmail.com> (tiny change)
999
1000 * paren.el (show-paren-function): Make sure to set 'priority and
1001 'face only if the overlay does exist.
1002
10032013-01-24 Michael Albinus <michael.albinus@gmx.de>
1004
1005 * net/tramp.el (tramp-tramp-file-p): Check, whether NAME is unibyte.
1006
1007 * net/tramp-sh.el (tramp-sh-handle-set-file-acl): Do not suppress
1008 basic attributes.
1009 (tramp-sh-handle-set-file-acl): Improve error checking.
1010
10112013-01-24 Dmitry Antipov <dmantipov@yandex.ru>
1012
1013 * doc-view.el (doc-view-display): Force mode line update until all
1014 document is converted. Suggested by Stefan Monnier (Bug#13164).
1015
10162013-01-23 Bastien Guerry <bzg@gnu.org>
1017
1018 * paren.el (show-paren-function): Make sure an overlay exists
1019 before trying to delete it. Also use `pos' as a position only
1020 when it is an integer.
1021
10222013-01-23 Dmitry Antipov <dmantipov@yandex.ru>
1023
1024 * play/gametree.el (gametree-break-line-here): Use point-marker.
1025
10262013-01-22 Michael Albinus <michael.albinus@gmx.de>
1027
1028 * net/tramp-cmds.el (tramp-bug, tramp-append-tramp-buffers):
1029 Mark descriptive parts with `display' property.
1030
10312013-01-21 Agustín Martín Domingo <agustin.martin@hispalinux.es>
1032
1033 * textmodes/ispell.el (ispell-hunspell-dictionary-equivs-alist):
1034 New variable to map standard dict names to hunspell ones.
1035 (ispell-set-spellchecker-params): Make sure specific dict names
1036 are used for standard dicts with hunspell.
1037
10382013-01-21 Tassilo Horn <tsdh@gnu.org>
1039
1040 * textmodes/reftex-cite.el (reftex-format-citation): Add format
1041 chars for note (%N) and url (%U).
1042 * textmodes/reftex-vars.el (reftex-cite-format): Document them.
1043
10442013-01-21 Juri Linkov <juri@jurta.org>
1045
1046 * frame.el: Bind `f10' in `esc-map' to `toggle-frame-maximized'
1047 in addition to existing separate binding `meta f10' in `global-map'.
1048 (Bug#13484)
1049
10502013-01-21 Michael Albinus <michael.albinus@gmx.de>
1051
1052 Improve XEmacs compatibility.
1053
1054 * net/tramp.el (tramp-replace-environment-variables): Make it a defun.
1055
1056 * net/tramp-adb.el (top): Require `time-date'.
1057 (tramp-adb-ls-output-time-less-p): Use `tramp-time-less-p'.
1058 (tramp-adb-handle-copy-file, tramp-adb-handle-rename-file):
1059 Use `tramp-file-name-handler'.
1060 (tramp-adb-maybe-open-connection):
1061 Use `tramp-compat-set-process-query-on-exit-flag'.
1062
1063 * net/tramp-sh.el (tramp-sh-handle-file-acl):
1064 Use `tramp-compat-funcall'.
1065
1066 * net/tramp-smb.el (tramp-smb-handle-file-acl): Use `looking-at' and
1067 `tramp-compat-funcall'.
1068
10692013-01-21 Jürgen Hötzel <juergen@archlinux.org>
1070
1071 * net/tramp-adb.el (tramp-adb-handle-start-file-process): Complete
1072 reimplementation using "adb shell command ..." instead of running
1073 remote shell interactively.
1074
10752013-01-20 Glenn Morris <rgm@gnu.org>
1076
1077 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
1078 Add native profiler menu entries.
1079
1080 * profiler.el (profiler-running-p): New function.
1081 (profiler-cpu-profile): Use profiler-running-p.
1082 (profiler-report-mode-map): Add some more menu entries.
1083
10842013-01-19 Glenn Morris <rgm@gnu.org>
1085
1086 * mail/unrmail.el (unrmail): Do not mangle the mbox From line;
1087 fixes 2012-12-07 change. (Bug#13499)
1088
10892013-01-19 Leo Liu <sdl.web@gmail.com>
1090
1091 * dired.el (dired-get-marked-files): Prune erroneous values due to
1092 last change. (Bug#13152)
1093
10942013-01-19 Glenn Morris <rgm@gnu.org>
1095
1096 * progmodes/etags.el (tags-table-check-computed-list):
1097 Preserve point in tags buffer. (Bug#13412)
1098
1099 * emacs-lisp/lisp-mode.el (lisp-indent-function): Doc fix.
1100
11012013-01-19 Christian Wittern <cwittern@gmail.com> (tiny change)
1102 Chong Yidong <cyd@gnu.org>
1103
1104 * image-mode.el (image-next-file, image-previous-file):
1105 New commands (Bug#8453).
1106 (image-mode-map): Bind them to n and p.
1107 (image-mode--images-in-directory): New helper function.
1108
11092013-01-19 Chong Yidong <cyd@gnu.org>
1110
1111 * image-mode.el (image-mode-fit-frame): Add a frame argument.
1112 Suggested by Drew Adams (Bug#7730). Handle window decorations;
1113 save and restore the old window configuration.
1114
11152013-01-18 Leo Liu <sdl.web@gmail.com>
1116
1117 * progmodes/js.el: Tweak autoload cookie for alias.
1118
11192013-01-17 Michael Albinus <michael.albinus@gmx.de>
1120
1121 * autorevert.el (auto-revert-notify-watch-descriptor): Make it
1122 buffer local, again. This was lost with the fix on 2013-01-12.
1123
11242013-01-17 Jürgen Hötzel <juergen@archlinux.org>
1125
1126 * eshell/esh-util.el (eshell-path-env): Make it buffer local, in
1127 order to support several eshell buffers in parallel.
1128
11292013-01-17 Michael Albinus <michael.albinus@gmx.de>
1130
1131 * autorevert.el (auto-revert-use-notify): In the :set function, do
1132 not modify `kill-buffer-hook'.
1133 (auto-revert-notify-rm-watch):
1134 Remove `auto-revert-notify-rm-watch' from `kill-buffer-hook'.
1135 (auto-revert-notify-add-watch): Do not call
1136 `auto-revert-notify-rm-watch', but add it to a buffer local
1137 `kill-buffer-hook'.
1138
11392013-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
1140
1141 * emacs-lisp/trace.el (trace--read-args): Use a closure and an honest
1142 call to `eval' rather than a backquoted lambda.
1143
11442013-01-15 Stefan Monnier <monnier@iro.umontreal.ca>
1145
1146 * emacs-lisp/nadvice.el (advice--tweak): Make it possible for `tweak'
1147 to return an explicit nil.
1148 (advice--remove-function): Change accordingly.
1149
1150 * emacs-lisp/advice.el (ad-preactivate-advice): Adjust the cleanup to
1151 the use of nadvice.el.
1152
1153 * progmodes/which-func.el (which-function): Silence imenu errors
1154 (bug#13433).
1155
11562013-01-15 Michael R. Mauger <mmaug@yahoo.com>
1157
1158 * progmodes/sql.el: (sql-imenu-generic-expression):
1159 (sql-mode-font-lock-object-name): Match schema qualified names.
1160 (sql-connect): Use string keys.
1161 (sql-product-interactive): Wait for interpreter prompt.
1162 (sql-comint-oracle): Set process coding based on NLS_LANG.
1163
11642013-01-15 Michael R. Mauger <mmaug@yahoo.com>
1165
1166 * progmodes/sql.el (sql-output-to-send): Remove, unused.
1167 (sql-interactive-remove-continuation-prompt):
1168 (sql-send-magic-terminator, sql-interactive-mode): Remove references.
1169
11702013-01-14 Leo Liu <sdl.web@gmail.com>
1171
1172 * calendar/calendar.el (calendar-redraw): Sync window-point and point.
1173 (Bug#13420)
1174
11752013-01-14 Glenn Morris <rgm@gnu.org>
1176
1177 * progmodes/compile.el (compilation-error-regexp-alist-alist):
1178 Fix interpretation of gnu line.col1-col2 format. (Bug#13335)
1179
11802013-01-13 Fabián Ezequiel Gallina <fgallina@cuca>
1181
1182 * progmodes/python.el (python-nav-end-of-statement):
1183 Fix cornercase when handling multiline strings.
1184
11852013-01-13 Richard Stallman <rms@gnu.org>
1186
1187 * mail/sendmail.el (mail-position-on-field): Add doc string.
1188
1189 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
1190 Get current message boundaries and pass them to
1191 message-forward-make-body-mime. Minor style changes.
1192
11932013-01-13 Eli Zaretskii <eliz@gnu.org>
1194
1195 * cus-start.el (all): Avoid warnings about
1196 scroll-bar-adjust-thumb-portion on platforms where it is not defined.
1197
11982013-01-11 Jan Djärv <jan.h.d@swipnet.se>
1199
1200 * cus-start.el (all): Add scroll-bar-adjust-thumb-portion.
1201
12022013-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
1203
1204 * jit-lock.el (jit-lock-debug-mode): New minor mode.
1205 (jit-lock--debug-fontifying): New var.
1206 (jit-lock--debug-fontify): New function.
1207 * subr.el (condition-case-unless-debug): Don't prevent catching the
1208 error, just let the debbugger run.
1209 * emacs-lisp/timer.el (timer-event-handler): Don't prevent debugging
1210 timer code and don't drop errors silently.
1211
12122013-01-12 Michael Albinus <michael.albinus@gmx.de>
1213
1214 * autorevert.el (auto-revert-notify-watch-descriptor): Give it
1215 `permanent-local' property.
1216 (auto-revert-notify-handler): Use `file-equal-p'.
1217
12182013-01-12 Eli Zaretskii <eliz@gnu.org>
1219
1220 * autorevert.el (auto-revert-notify-handler): Fix filtering of
1221 file notification by ACTION. For filtering by file name, compare
1222 only the non-directory part of the file name.
1223
12242013-01-12 Stefan Monnier <monnier@iro.umontreal.ca>
1225
1226 * autorevert.el: Use cl-lib instead of cl.
1227
1228 * vc/vc-bzr.el (vc-bzr--sanitize-header): New function (bug#13307).
1229 (vc-bzr-checkin): Use it.
1230 * vc/log-edit.el (log-edit-extract-headers): Don't presume FUNCTION
1231 will preserve match-data.
1232
12332013-01-11 Felix H. Dahlke <fhd@ubercode.de>
1234
1235 * progmodes/js.el: Fix multiline declarations's indentation (bug#8576).
1236 (js--declaration-keyword-re): New var.
1237 (js--multi-line-declaration-indentation): New function.
1238 (js--proper-indentation): Use it.
1239
12402013-01-11 Aaron S. Hawley <Aaron.Hawley@vtinfo.com>
1241
1242 * calc/calc.el (calc-highlight-selections-with-faces)
1243 (calc-dispatch):
1244 * comint.el (comint-history-isearch-message):
1245 * emacs-lisp/edebug.el (edebug-read, edebug-eval-defun):
1246 * ffap.el (ffap-string-at-point-region, ffap-next)
1247 (ffap-string-at-point, ffap-string-around)
1248 (ffap-copy-string-as-kill, ffap-highlight-overlay)
1249 (ffap-literally):
1250 * font-lock.el (font-lock-keywords-alist)
1251 (font-lock-removed-keywords-alist):
1252 * help-mode.el (help-xref-symbol-regexp):
1253 * info.el (Info-find-emacs-command-nodes):
1254 * international/mule.el (add-to-coding-system-list):
1255 * isearch.el (isearch-message-function, isearch-fail-pos):
1256 * misearch.el (multi-isearch-next-buffer-function):
1257 * newcomment.el (comment-box):
1258 * printing.el (pr-txt-printer-alist, pr-ps-printer-alist)
1259 (pr-setting-database):
1260 * progmodes/cc-fonts.el (c-font-lock-keywords-3)
1261 (c++-font-lock-keywords-3, objc-font-lock-keywords-3)
1262 (java-font-lock-keywords-3, idl-font-lock-keywords-3)
1263 (pike-font-lock-keywords-3):
1264 * progmodes/compile.el (compile):
1265 * progmodes/etags.el (tags-table-files)
1266 (tags-table-files-function, tags-included-tables-function):
1267 * progmodes/gdb-mi.el (gdb, gdb-setup-windows)
1268 (gdb-restore-windows):
1269 * ps-print.el (ps-even-or-odd-pages, ps-spool-buffer-with-faces)
1270 (ps-n-up-filling-database):
1271 * server.el (server-buffer, server-log):
1272 * simple.el (newline, delete-backward-char, delete-forward-char)
1273 (minibuffer-history-isearch-message, kill-line, track-eol)
1274 (temporary-goal-column):
1275 * textmodes/flyspell.el (flyspell-mark-duplications-flag)
1276 (flyspell-default-deplacement-commands):
1277 * textmodes/ispell.el (ispell-accept-output):
1278 * textmodes/sgml-mode.el (html-tag-help):
1279 * vc/compare-w.el (compare-ignore-whitespace)
1280 (compare-ignore-case, compare-windows-dehighlight):
1281 * vc/diff.el (diff):
1282 * whitespace.el (whitespace-point)
1283 (whitespace-font-lock-refontify, whitespace-bob-marker)
1284 (whitespace-eob-marker): Fix ambiguous doc string cross-reference(s).
1285
12862013-01-11 Michael Albinus <michael.albinus@gmx.de>
1287
1288 * autorevert.el (top): Require 'cl in order to pacify byte compiler.
1289 (auto-revert-notify-rm-watch): Ignore errors.
1290 (auto-revert-notify-add-watch): Ignore errors. Use '(modify) for
1291 inotify, and '(size last-write-time) for w32notify.
1292 Set buffer-local `auto-revert-use-notify' to nil when adding a file
1293 watch fails - this is a fallback to the file modification check.
1294 (auto-revert-notify-event-p, auto-revert-notify-event-descriptor)
1295 (auto-revert-notify-event-action)
1296 (auto-revert-notify-event-file-name): New defuns.
1297 (auto-revert-notify-handler): Use them. Implement first
1298 plausibility checks.
1299 (auto-revert-handler): Handle also `auto-revert-tail-mode'.
1300
13012013-01-11 Julien Danjou <julien@danjou.info>
1302
1303 * color.el (color-rgb-to-hsv): Fix conversion computing in case min and
1304 max are almost equal. Also return the correct value for V which is
1305 already between 0 and 1.
1306
13072013-01-11 Dmitry Antipov <dmantipov@yandex.ru>
1308
1309 * emacs-lisp/ert.el (ert-run-test): Use point-max-marker.
1310
13112013-01-11 Eli Zaretskii <eliz@gnu.org>
1312
1313 * autorevert.el (auto-revert-notify-rm-watch)
1314 (auto-revert-notify-add-watch): Fix typos in w32notify function
1315 names.
1316
13172013-01-10 Michael Albinus <michael.albinus@gmx.de>
1318
1319 * autorevert.el (auto-revert-notify-enabled): Move up.
1320 (auto-revert-use-notify): New defcustom.
1321 (auto-revert-mode, global-auto-revert-mode)
1322 (auto-revert-notify-add-watch, auto-revert-handler)
1323 (auto-revert-buffers): Use `auto-revert-use-notify' instead of
1324 `auto-revert-notify-enabled'.
1325
13262013-01-10 Elias Pipping <pipping@exherbo.org>
1327
1328 * files.el (auto-mode-alist): Use doc-view for djvu files (bug#13164).
1329 * doc-view.el (doc-view-document->bitmap):
1330 Use doc-view-single-page-converter-function instead of
1331 single-page-converter arg; adjust callers.
1332
13332013-01-10 Feng Li <fengli@gmail.com> (tiny change)
1334
1335 * progmodes/which-func.el (which-function): Understand Semantic's use
1336 of overlays in imenu--index-alist.
1337
13382013-01-10 Wolfgang Jenkner <wjenkner@inode.at>
1339
1340 * man.el: Handle different "man -k" behaviors (bug#13160). Use utf-8.
1341 (Man-man-k-use-anchor): New var.
1342 (Man-parse-man-k): New function.
1343 (Man-completion-table): Use it.
1344 (man): Flush the completion cache between uses.
1345
13462013-01-10 Michael Albinus <michael.albinus@gmx.de>
1347
1348 * autorevert.el: Add file watch support.
1349 (auto-revert-notify-enabled): New defconst.
1350 (auto-revert-notify-watch-descriptor-hash-list)
1351 (auto-revert-notify-watch-descriptor)
1352 (auto-revert-notify-modified-p): New defvars.
1353 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
1354 (auto-revert-notify-handler): New defuns.
1355 (auto-revert-mode, global-auto-revert-mode): Remove file watches
1356 when mode is disabled.
1357 (auto-revert-handler): Check for `auto-revert-notify-modified-p'.
1358 (auto-revert-buffers): Add file watches for active buffers.
1359
13602013-01-10 Dmitry Antipov <dmantipov@yandex.ru>
1361
1362 * cus-start.el (toplevel): Only allow float values for
1363 scroll-up-aggressively and scroll-down-aggressively.
1364 Allow any number for line-spacing.
1365
13662013-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
1367
1368 * doc-view.el (doc-view-pdfdraw-program): Allow "pdfdraw" name.
1369 (doc-view-pdf->png-converter-function): Use mupdf if available.
1370 (doc-view-djvu->png-converter-function)
1371 (doc-view-ps->png-converter-function): Remove.
1372 (doc-view--image-file-pattern): Replace doc-view--image-file-extension.
1373 (doc-view-goto-page, doc-view-convert-current-doc, doc-view-display)
1374 (doc-view-already-converted-p): Adjust accordingly.
1375 (doc-view-mode-p): Simplify.
1376 (doc-view-enlarge): Use setq-local.
1377 (doc-view-pdf->png-converter-ghostscript)
1378 (doc-view-djvu->png-converter-ddjvu)
1379 (doc-view-pdf->png-converter-mupdf): Rework to call
1380 doc-view-start-process directly.
1381 (doc-view-pdf/ps->png): Simplify accordingly.
1382 (doc-view-pdf->png-1, doc-view-djvu->png-1): Remove.
1383 (doc-view-document->bitmap): Rename from doc-view-document->png.
1384 (doc-view-convert-current-doc): Merge pdf and djvu cases.
1385 (doc-view-set-slice-from-bounding-box): Fix completion table.
1386 (doc-view-mode): Use add-hook for after-revert-hook.
1387
13882013-01-10 Glenn Morris <rgm@gnu.org>
1389
1390 * emacs-lisp/authors.el (authors-ignored-files)
1391 (authors-valid-file-names, authors-renamed-files-alist):
1392 Add some more entries.
1393
13942013-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
1395
1396 * image-mode.el (image-mode-winprops): Don't throw away the fallback
1397 `t' pseudo-window entry.
1398
13992013-01-10 Alan Mackenzie <acm@muc.de>
1400
1401 Fix bugs in the c-parse-state mechanism. Reuse some markers
1402 instead of continually generating new ones.
1403
1404 * progmodes/cc-engine.el (c-state-old-cpp-beg-marker)
1405 (c-state-old-cpp-end-marker): New variables.
1406 (c-append-lower-brace-pair-to-state-cache): Start a backward
1407 search for "}" definitively outside CPP constructs.
1408 (c-remove-stale-state-cache): Inform the caller of a need to
1409 search back for a brace pair in certain circumstances.
1410 (c-state-maybe-marker): New macro.
1411 (c-parse-state): Reuse markers when appropriate.
1412
14132013-01-10 Glenn Morris <rgm@gnu.org>
1414
1415 * simple.el (execute-extended-command): Doc fix.
1416 Bind prefix-arg around read-extended-command, for prompt. (Bug#13395)
1417
14182013-01-10 Chong Yidong <cyd@gnu.org>
1419
1420 * faces.el (read-face-name): Doc fix.
1421
14222013-01-10 Roland Winkler <winkler@gnu.org>
1423
1424 * emacs-lisp/crm.el: Allow any regexp for separators.
1425 (crm-default-separator): All spaces around the default comma separator.
1426 (crm--completion-command): New macro.
1427 (crm-completion-help, crm-complete, crm-complete-word): Use it.
1428 (crm-complete-and-exit): Handle non-single-char separators.
1429
14302013-01-09 Elias Pipping <pipping@lavabit.com>
1431
1432 * doc-view.el: Add support for DjVu (bug#13164).
1433 (doc-view-djvu->png-converter-function): New config var.
1434 (doc-view-single-page-converter-function, doc-view--image-type)
1435 (doc-view--image-file-extension): New vars.
1436 (doc-view-mode): Initialize them.
1437 (doc-view-goto-page): Use them.
1438 (doc-view-mode-p): Add support for ddjvu.
1439 (doc-view-djvu->png-converter-ddjvu, doc-view-djvu->png-1)
1440 (doc-view-set-up-single-converter): New funs.
1441 (doc-view-pdf/ps->png): Extend for djvu.
1442 (doc-view-document->png): Rename from doc-view-pdf->png.
1443 (doc-view-convert-current-doc): Handle djvu.
1444 (doc-view-insert-image, doc-view-display)
1445 (doc-view-already-converted-p): Don't hardcode png.
1446 (doc-view-set-doc-type): Recognize djvu docs.
1447
14482013-01-09 Elias Pipping <pipping@lavabit.com>
1449
1450 * doc-view.el: Add support for mupdf converter (bug#13164).
1451 (doc-view-pdfdraw-program, doc-view-pdf->png-converter-function)
1452 (doc-view-ps->png-converter-function): New config vars.
1453 (doc-view-pdf->png-converter-ghostscript)
1454 (doc-view-ps->png-converter-ghostscript)
1455 (doc-view-pdf->png-converter-mupdf): New functions.
1456 (doc-view-pdf/ps->png, doc-view-pdf->png-1): Use them.
1457
14582013-01-09 Jürgen Hötzel <juergen@archlinux.org>
1459
1460 * net/tramp.el (tramp-eshell-directory-change): Check remote-path
1461 first in session cache: When `tramp-own-remote-path' is in
1462 `tramp-remote-path', the remote path is only set in the session
1463 cache.
1464
14652013-01-09 Glenn Morris <rgm@gnu.org>
1466
1467 * emacs-lisp/trace.el (trace-function-foreground)
1468 (trace-function-background): Doc fix.
1469
14702013-01-09 Juri Linkov <juri@jurta.org>
1471
1472 * international/mule-cmds.el (read-char-by-name): Move let-binding
1473 of completion-ignore-case around completing-read to fix regression
1474 exhibited by the test case `C-x 8 RET *acc TAB' and caused by
1475 `string-match-p' using the nil value of `case-fold-search' and
1476 `completion-ignore-case' in `completion-pcm--all-completions'.
1477 (Bug#12615).
1478
14792013-01-09 Glenn Morris <rgm@gnu.org>
1480
1481 * progmodes/compile.el (compilation-parse-errors):
1482 Fix typo. (Bug#13369)
1483
14842013-01-09 Vitalie Spinu <spinuvit@gmail.com> (tiny change)
1485
1486 * comint.el (comint-send-input): Check size of buffer before
1487 waiting for process output, in case already accepted. (Bug#13290)
1488
14892013-01-09 Paul Eggert <eggert@cs.ucla.edu>
1490
1491 Spelling fixes.
1492 * net/tramp-adb.el (tramp-adb-get-toolbox):
1493 Fix misspelling of 'unknown'.
1494
14952013-01-08 Juri Linkov <juri@jurta.org>
1496
1497 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
1498 * progmodes/flymake.el (flymake-errline, flymake-warnline):
1499 Use underline style wave on terminals that support it. (Bug#13000)
1500
15012013-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
1502
1503 * emacs-lisp/pcase.el (pcase--split-equal): Also take advantage if
1504 the predicate returns nil.
1505
1506 * simple.el: Use lexical-binding.
1507 (primitive-undo): Use pcase.
1508 (minibuffer-history-isearch-push-state): Use a closure.
1509
15102013-01-08 Aaron S. Hawley <aaron.s.hawley@gmail.com>
1511
1512 * simple.el (primitive-undo): Move from undo.c.
1513
15142013-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
1515
1516 * vc/pcvs.el (cvs-cleanup-collection): Extend meaning of `rm-handled'.
1517 (cvs-mode-remove-handled): Use it (bug#13380).
1518
1519 * emacs-lisp/nadvice.el (advice--tweak): New function.
1520 (advice--remove-function, advice--subst-main): Use it.
1521
1522 * emacs-lisp/advice.el: Update commentary.
1523
15242013-01-08 Michael Albinus <michael.albinus@gmx.de>
1525
1526 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
1527 Remove spurious entry.
1528
15292013-01-08 Glenn Morris <rgm@gnu.org>
1530
1531 * net/tramp.el (tramp-default-host-alist): Add :version.
1532
15332013-01-08 Juri Linkov <juri@jurta.org>
1534
1535 * info.el (Info-read-node-name-2): Don't duplicate suffixes for
1536 single completion. (Bug#12456)
1537 (info--manual-names): Expand node completions into an explicit list
1538 before appending it to another list. Filter out internal buffers
1539 with the leading space in the buffer name. (Bug#10771)
1540
15412013-01-08 Juri Linkov <juri@jurta.org>
1542
1543 * info.el (Info-read-node-name-1): Allow empty node name in (FILENAME)
1544 that defaults to the Top node.
1545 (Info-goto-node, Info-read-node-name): Doc fix to mention that
1546 the short format (FILENAME) goes to the Top node.
1547 (Info-build-node-completions): Rename arg `file' to `filename'.
1548 (Bug#13365)
1549
15502013-01-07 Bastien Guerry <bzg@gnu.org>
1551
1552 * menu-bar.el (menu-bar-search-documentation-menu):
1553 Use `apropos-user-option' and fix the help message.
1554
15552013-01-07 Bastien Guerry <bzg@gnu.org>
1556
1557 * apropos.el (apropos-do-all): Update docstring.
1558 (apropos-user-option-button): New face.
1559 (apropos-user-option): Rename from `apropos-variable' and update
1560 docstring.
1561 (apropos-variable): Rewrite, now show all variables by default.
1562 (apropos-print): Mention "User option" instead of "Variable" when
1563 printing doc for user options. (Bug#13276)
1564
15652013-01-07 Jürgen Hötzel <juergen@archlinux.org>
1566
1567 * net/tramp-adb.el (tramp-do-parse-file-attributes-with-ls):
1568 Handle filename correctly, when parsing "source -> target" symlink
1569 output.
1570 (tramp-adb-handle-set-file-times): New defun.
1571
15722013-01-07 Stefan Monnier <monnier@iro.umontreal.ca>
1573
1574 * emacs-lisp/advice.el (ad-activate-advised-definition): Refresh the
1575 advice list when the interactive-spec of ad-Advice-* changes.
1576
15772013-01-07 Katsumi Yamaoka <yamaoka@jpl.org>
1578
1579 * wid-edit.el (widget-default-get): Work for inlined elements.
1580 (Bug#12670)
1581
15822013-01-07 Michael Albinus <michael.albinus@gmx.de>
1583
1584 * net/tramp.el (tramp-default-host-alist): New defcustom.
1585 (tramp-find-host): Use it.
1586 (tramp-eshell-directory-change): Move from tramp-sh.el. Add to
1587 `eshell-directory-change-hook'.
1588
1589 * net/tramp-adb.el (top): Add adb specific entry in
1590 `tramp-default-host-alist'.
1591 (tramp-adb-file-name-host): Remove function.
1592 (tramp-adb-execute-adb-command, tramp-adb-maybe-open-connection):
1593 Use `tramp-file-name-host' instead of `tramp-adb-file-name-host'.
1594
1595 * net/tramp-sh.el: Move eshell integration code to tramp.el.
1596
15972013-01-06 Jürgen Hötzel <juergen@archlinux.org>
1598
1599 * net/tramp-adb.el (tramp-methods): Add `tramp-tmpdir' entry.
1600
16012013-01-06 Michael Albinus <michael.albinus@gmx.de>
1602
1603 * net/tramp-adb.el (tramp-adb-ls-toolbox-regexp): The file size can
1604 consist of more than one digit.
1605 (tramp-adb-file-name-handler-alist):
1606 Use `tramp-handle-file-exists-p' consistently.
1607 (tramp-adb-file-name-handler): Don't tweak `tramp-default-host'.
1608 (tramp-adb-handle-file-exists-p): Remove function.
1609 (tramp-adb-file-name-host): New defun.
1610 (tramp-adb-execute-adb-command, tramp-adb-maybe-open-connection):
1611 Use it.
1612 (tramp-adb-maybe-open-connection): Set "remote-path" property.
1613
16142013-01-06 Chong Yidong <cyd@gnu.org>
1615
1616 * vc/vc.el (vc-next-action): Detect buffer modifications
1617 conflicting with locking VCS operation (Bug#11490).
1618
1619 * vc/vc-hooks.el (vc-after-save): DTRT for locking VCSes.
1620
16212013-01-05 Michael Albinus <michael.albinus@gmx.de>
1622
1623 * net/tramp-adb.el (tramp-do-parse-file-attributes-with-ls):
1624 (tramp-adb-handle-directory-files-and-attributes): Fix typos.
1625
16262013-01-05 Jürgen Hötzel <juergen@archlinux.org>
1627
1628 * net/tramp-adb.el (tramp-adb-handle-file-attributes): More robust
1629 parsing of ls output using regular expression (handle filenames
1630 with spaces). Use virtual device number.
1631 (tramp-do-parse-file-attributes-with-ls): New defun (Code
1632 cleanup).
1633
16342013-01-04 Daiki Ueno <ueno@gnu.org>
1635
1636 * epg.el: Silence byte-compiler warnings.
1637 (epg--start): Use delete-char instead of delete-backward-char.
1638 (epg-wait-for-completion): Pass FRAME arg to redraw-frame.
1639
16402013-01-04 Daiki Ueno <ueno@gnu.org>
1641
1642 * epg.el (epg--start): Don't call "tty" program on W32 platforms.
1643 Suggested by Eli Zaretskii <eliz@gnu.org>.
1644
16452013-01-04 Michael Albinus <michael.albinus@gmx.de>
1646
1647 * net/tramp-sh.el (tramp-set-file-uid-gid): UID and GID must be
1648 non-negative integers. Otherwise, the default values are used.
1649 (tramp-convert-file-attributes): Convert uid and gid to integers.
1650
16512013-01-04 Glenn Morris <rgm@gnu.org>
1652
1653 * term.el (term-handle-colors-array): Ensure face attributes
1654 are fully specified, not nil. (Bug#13337)
1655
1656 * term.el (term-default-fg-color, term-default-bg-color):
1657 Fix custom type.
1658
1659 * progmodes/etags.el (tags-compression-info-list): Doc fix.
1660 (tag-find-file-of-tag-noselect): Check auto-compression-mode
1661 rather than 'jka-compr being loaded. (Bug#13338)
1662
16632013-01-04 Wesley Dawson <whd@lavabit.com> (tiny change)
1664
1665 * icomplete.el (icomplete-completions):
1666 Honor icomplete-prospects-height once more following
1667 2012-11-29 changes. (Bug#13224)
1668
16692013-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
1670
1671 * subr.el (internal--called-interactively-p--get-frame): Find aliases
1672 of called-interactively-p as well (bug#13237).
1673
1674 * view.el (view--enable, view--disable): Rename from view-mode-enable
1675 and view-mode-disable and assume it's called from view-mode.
1676 (view-mode-enable, view-mode-disable): Redefine as obsolete
1677 compatibility layer above view-mode.
1678 (view-mode-enter): Call `view-mode'.
1679
1680 * files.el (after-find-file): Call `view-mode'.
1681
1682 * doc-view.el (doc-view-scale-internally): New var.
1683 (doc-view-enlarge, doc-view-insert-image): Obey it.
1684
16852013-01-03 Daiki Ueno <ueno@gnu.org>
1686
1687 * epg.el (epg--start): Ignore errors when /dev/fd/0 does not
1688 exist. (Bug#13344)
1689
16902013-01-03 Glenn Morris <rgm@gnu.org>
1691
1692 * mail/rmail.el (rmail-set-header-1): Ignore case.
1693 Handle multi-line headers. (Bug#13330)
1694
1695 * progmodes/make-mode.el (makefile-fill-paragraph): Add doc.
1696 Handle paragraph starting at beginning of buffer.
1697
1698 * subr.el (eval-after-load): Don't purecopy the form, so that it
1699 can be nconc'd later on; reverts 2009-11-11 change. (Bug#13331)
1700
1701 * emacs-lisp/byte-run.el (defun): Place cl declarations
1702 after any interactive spec. (Bug#13265)
1703
17042013-01-02 Andreas Schwab <schwab@linux-m68k.org>
1705
1706 * emacs-lisp/byte-run.el (defmacro): Use same argument parsing as
1707 defun. Don't check for DECL if DOCSTRING isn't a string.
1708 (defun): Likewise.
1709
17102013-01-02 Glenn Morris <rgm@gnu.org>
1711
1712 * eshell/em-cmpl.el (eshell-pcomplete):
1713 More thoroughly imitate pcomplete. (Bug#13293)
1714
1715 * files.el (parse-colon-path): Doc fix. (Bug#12351)
1716 Return nil for empty path elements. (Bug#13296)
1717
17182013-01-02 Fabián Ezequiel Gallina <fgallina@cuca>
1719
1720 * progmodes/python.el (python-nav-end-of-statement): Rewrite in
1721 order to improve efficiency (Based on Daniel Colascione's
1722 <dancol@dancol.org> patch). (Bug#13182)
1723
17242013-01-02 Glenn Morris <rgm@gnu.org>
1725
1726 * vc/log-edit.el (log-edit-header-contents-regexp): Add doc string.
1727
17282013-01-02 Andreas Schwab <schwab@linux-m68k.org>
1729
1730 * emacs-lisp/byte-run.el (defmacro): Don't lose final nil if
1731 neither DOCSTRING nor DECL was given. (Bug#13316)
1732
17332013-01-02 Michael Albinus <michael.albinus@gmx.de>
1734
1735 * net/tramp-sh.el (tramp-sh-handle-set-file-acl): Add argument to
1736 `error' call.
1737 (tramp-do-copy-or-rename-file): Ignore errors when calling
1738 `set-file-extended-attributes'.
1739
1740 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
1741 Add handler for `file-acl'.
1742 (tramp-smb-handle-file-acl): New defun.
1743
17442013-01-02 Jay Belanger <jay.p.belanger@gmail.com>
1745
1746 * calc/README: Mention ISO 8601 week-numbering dates.
1747
17482013-01-01 Martin Rudalics <rudalics@gmx.at>
1749
1750 * view.el (view-mode-enable): New argument run-view-mode-hook.
1751 Run view-mode-hook only when it's non-nil (Bug#13315).
1752 (view-mode-enter): Call view-mode-enable with run-view-mode-hook
1753 argument t.
1754
17552012-12-31 Jürgen Hötzel <juergen@archlinux.org>
1756
1757 * net/tramp-adb.el (tramp-adb-maybe-open-connection): Handle errors
1758 (No device connected, invalid device name). (Bug #13299)
1759
17602012-12-31 Martin Rudalics <rudalics@gmx.at>
1761
1762 * window.el (window-resizable--p): Rename to window-resizable-p.
1763 (window-resize-no-error): New function.
1764
1765 * mail/rmail.el (rmail-maybe-display-summary): Restore behavior
1766 broken in fix from 2012-12-28.
1767
17682012-12-31 Stefan Monnier <monnier@iro.umontreal.ca>
1769
1770 * subr.el (special-form-p): Don't signal errors on undef aliases.
1771
17722012-12-31 Jay Belanger <jay.p.belanger@gmail.com>
1773
1774 * calc/calc-forms.el (math-parse-date): Try using
1775 `math-parse-iso-date' when it looks like it might be needed.
1776 Allow times of 24:00.
1777 (math-parse-date-validate, math-parse-iso-date-validate): Allow times
1778 of 24:00.
1779
17802012-12-30 Glenn Morris <rgm@gnu.org>
1781
1782 * net/mairix.el (rmail, rmail-summary-displayed, rmail-summary):
1783 Remove unnecessary/buggy autoloads (missing interactive). (Bug#13294)
1784 (rmail-summary-displayed, rmail-summary): Declare.
1785 (mairix-rmail-display): Just require rmail.
1786
17872012-12-30 Chong Yidong <cyd@gnu.org>
1788
1789 * emacs-lisp/package.el (package-untar-buffer): Improve integrity
1790 check for the tarball contents.
1791
17922012-12-30 Matt Fidler <matt.fidler@alcon.com> (tiny change)
1793
1794 * emacs-lisp/package.el (package-untar-buffer): Handle problematic
1795 tarfile content listings (Bug#13136).
1796
17972012-12-30 Mark Lillibridge <mark.lillibridge@hp.com>
1798
1799 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
1800 Insert the undecoded text of the message being forwarded. (Bug#9521)
1801
18022012-12-30 Michael Albinus <michael.albinus@gmx.de>
1803
1804 * net/tramp-sh.el (tramp-set-file-uid-gid): Convert UID and GID to
1805 integers, if they are real numbers. (Bug#13282)
1806
1807 * net/tramp-sh.el (tramp-sh-handle-set-file-selinux-context):
1808 Return `t' on success.
1809
1810 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
1811 Add handler for `set-file-selinux-context'.
1812
18132012-12-29 Michael Albinus <michael.albinus@gmx.de>
1814
1815 * net/tramp-sh.el (tramp-sh-handle-file-acl): Suppress basic attributes.
1816 (tramp-sh-handle-set-file-acl): Return `t' on success.
1817
18182012-12-29 Eli Zaretskii <eliz@gnu.org>
1819
1820 * files.el (backup-buffer-copy, basic-save-buffer-2):
1821 If set-file-extended-attributes fails, fall back on set-file-modes
1822 instead of signaling an error. (Bug#13298)
1823 (basic-save-buffer): Likewise.
1824
18252012-12-29 Fabián Ezequiel Gallina <fgallina@cuca>
1826
1827 * progmodes/python.el: Support other commands triggering
1828 python-indent-line so indentation cycling continues to work.
1829 (python-indent-trigger-commands): New defcustom.
1830 (python-indent-line): Use it.
1831
18322012-12-29 Fabián Ezequiel Gallina <fgallina@cuca>
1833
1834 * progmodes/python.el (python-shell-send-region): Add blank lines
1835 for non sent code so backtraces remain correct.
1836
18372012-12-29 Fabián Ezequiel Gallina <fgallina@cuca>
1838
1839 * progmodes/python.el: Remove cl dependency.
1840 (python-syntax-count-quotes): Replace incf call.
1841 (python-fill-string): Replace setf call.
1842
18432012-12-29 Damien Cassou <damien.cassou@gmail.com>
1844
1845 * info.el (info-other-window): New arg, for consistency with info.
1846
18472012-12-28 Martin Rudalics <rudalics@gmx.at>
1848
1849 * mail/rmail.el (rmail-maybe-display-summary):
1850 Rewrite (Bug#13066).
1851
18522012-12-28 Andreas Schwab <schwab@linux-m68k.org>
1853
1854 * epg.el (epg--start): Modify process-environment locally.
1855
18562012-12-28 Daiki Ueno <ueno@gnu.org>
1857
1858 * epg.el: Support pinentry-curses.
1859 Suggested by Werner Koch in
1860 <http://lists.gnu.org/archive/html/emacs-devel/2007-02/msg00755.html>.
1861 (epg-agent-file, epg-agent-mtime): New variable.
1862 (epg--start): Record the modified time of gpg-agent socket file,
1863 to restore Emacs frame after pinentry-curses termination.
1864 (epg-wait-for-completion): Restore Emacs frame here.
1865
18662012-12-27 Juri Linkov <juri@jurta.org>
1867
1868 * info.el (Info-file-completions): New variable.
1869 (Info-read-node-name-1): Complete node names in the Info file
1870 when a file name is given. Call `Info-build-node-completions'
1871 with a file name.
1872 (Info-build-node-completions): Add new arg `file'. When it is
1873 non-nil, visit it in a temporary buffer and cache its completions in
1874 `Info-current-file-completions'. Move most of the function body to
1875 `Info-build-node-completions-1'.
1876 (Info-build-node-completions-1): New function with the body from
1877 `Info-build-node-completions'. (Bug#12456)
1878
18792012-12-27 Juri Linkov <juri@jurta.org>
1880
1881 * frame.el (frame-maximization-style): Remove user option.
1882 (cycle-frame-maximized): Remove function.
1883 (toggle-frame-maximized): Rewrite and bind to M-<f10>.
1884 (toggle-frame-fullscreen): New command bound to <f11> instead of
1885 `toggle-frame-maximized'.
1886 http://lists.gnu.org/archive/html/emacs-devel/2012-12/msg00703.html
1887
18882012-12-27 Michael Albinus <michael.albinus@gmx.de>
1889
1890 * net/tramp.el (tramp-handle-file-accessible-directory-p): New defun.
1891
1892 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
1893 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
1894 * net/tramp-sh.el (tramp-sh-file-name-handler-alist): Add handler
1895 for `file-accessible-directory-p'. (Bug#13275)
1896
18972012-12-27 Sam Steingold <sds@gnu.org>
1898
1899 * progmodes/cperl-mode.el (cperl-calculate-indent): Do not stagger
1900 continuations, see <http://stackoverflow.com/questions/3582436>.
1901
19022012-12-27 Dmitry Gutov <dgutov@yandex.ru>
1903
1904 * progmodes/ruby-mode.el (ruby-indent-beg-re): Only allow "class",
1905 "module" and "def" to have indentation before them.
1906 Regression from 2012-09-07T04:15:56Z!dgutov@yandex.ru (see the new test).
1907
1908 * progmodes/ruby-mode.el: Bump the version to 1.2 (Bug#13200).
1909
19102012-12-27 Alan Mackenzie <acm@muc.de>
1911
1912 Speed up fontification where there's large brace blocks.
1913 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Add a limit
1914 to a call of c-beginning-of-decl-1.
1915
19162012-12-27 Vitalie Spinu <spinuvit@gmail.com> (tiny change)
1917
1918 * comint.el (comint-adjust-window-point): New function.
1919 (comint-postoutput-scroll-to-bottom):
1920 Call comint-adjust-window-point (Bug#13248).
1921
19222012-12-26 Dmitry Gutov <dgutov@yandex.ru>
1923
1924 * progmodes/ruby-mode.el (auto-mode-alist): `purecopy' the
1925 Rakefile regexp.
1926 (auto-mode-alist): Associate .gemspec files with ruby-mode
1927 (https://bugs.ruby-lang.org/issues/5453).
1928
19292012-12-26 Jürgen Hötzel <juergen@archlinux.org>
1930
1931 * net/tramp-adb.el (tramp-adb-get-ls-command): New defun.
1932 Suppress coloring, if possible (required for BusyBox based systems like
1933 CyanogenMod).
1934 (tramp-adb-handle-file-attributes)
1935 (tramp-adb-handle-insert-directory)
1936 (tramp-adb-handle-file-name-all-completions): Use it.
1937 (tramp-adb-get-toolbox): New defun. Check for remote shell
1938 implementation (BusyBox or Toolbox).
1939
19402012-12-24 Constantin Kulikov <zxnotdead@gmail.com> (tiny change)
1941
1942 * startup.el (initial-buffer-choice): Allow function as value
1943 (Bug#13251).
1944 (command-line-1): Handle case where initial-buffer-choice
1945 specifies a function.
1946 * server.el (server-execute): Handle case where
1947 initial-buffer-choice specifies a function.
1948
19492012-12-24 Lars Ingebrigtsen <larsi@gnus.org>
1950
1951 * mail/smtpmail.el (smtpmail-try-auth-method): Refactored out into
1952 its own function.
1953 (smtpmail-try-auth-methods): Forget the user name/password if the
1954 login is unsuccessful (bug#12424).
1955
19562012-12-22 Michael Albinus <michael.albinus@gmx.de>
1957
1958 * notifications.el (notifications-notify): Protect body with
1959 `with-demoted-errors'.
1960
1961 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
1962 Check properties of remote device. Restart connection, if there is a
1963 change.
1964
19652012-12-21 Chong Yidong <cyd@gnu.org>
1966
1967 * sort.el (sort-subr): Doc fix (Bug#13056).
1968
19692012-12-21 Bastien Guerry <bzg@gnu.org>
1970
1971 * progmodes/etags.el (tags-search): Fix typo. Bug #13232.
1972
19732012-12-21 Michael Albinus <michael.albinus@gmx.de>
1974
1975 * simple.el (process-file): Overwrite stderr file, if exists.
1976
19772012-12-21 Daiki Ueno <ueno@gnu.org>
1978
1979 * epg.el (epg--start): Print GPG_AGENT_INFO in the debug buffer.
1980 (epg-error): Set `error-message' property.
1981
19822012-12-21 Chong Yidong <cyd@gnu.org>
1983
1984 * international/mule-cmds.el (read-char-by-name): Signal an error
1985 if the user does not supply a valid character (Bug#13177).
1986
1987 * simple.el (transpose-subr-1): Preserve marker positions by
1988 changing the insertion sequence (Bug#13122).
1989
19902012-12-21 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
1991
1992 * simple.el (kill-region): Deactivate mark even for empty regions
1993 (Bug#13169).
1994
19952012-12-21 Chong Yidong <cyd@gnu.org>
1996
1997 * help-fns.el (describe-variable): Make sure we get the right
1998 buffer name (Bug#13105). Suggested by Kelly Dean.
1999
20002012-12-20 Michael R. Mauger <mmaug@yahoo.com>
2001
2002 * comint.el (comint-redirect-previous-input-string): New variable.
2003 (comint-redirect-setup, comint-redirect-cleanup)
2004 (comint-redirect-preoutput-filter): Use it. Fixes redirection bug.
2005 (comint-redirect-preoutput-filter): Fix verbose message.
2006
20072012-12-20 Michael Albinus <michael.albinus@gmx.de>
2008
2009 * progmodes/grep.el (rgrep): Escape command line. Sometimes, it
2010 is too long for Tramp. See discussion in
2011 <http://thread.gmane.org/gmane.emacs.tramp/8233/focus=8244>.
2012
2013 * progmodes/compile.el (compilation-start): Remove line escape
2014 template.
2015
20162012-12-20 Dmitry Antipov <dmantipov@yandex.ru>
2017
2018 * vc/ediff-ptch.el (ediff-map-patch-buffer): Use `point-min-marker'.
2019 Adjust comment.
2020
20212012-12-19 Jonas Bernoulli <jonas@bernoul.li>
2022
2023 * emacs-lisp/lisp-mnt.el (lm-section-end): Always end before the
2024 following non-comment text (bug#13207).
2025 (lm-header-multiline): Continuation lines need to be indented more than
2026 the first line.
2027 (lm-homepage): New function.
2028 (lm-with-file): Don't be confused if narrowing is in effect.
2029
20302012-12-19 Stefan Monnier <monnier@iro.umontreal.ca>
2031
2032 * vc/diff-mode.el (diff-post-command-hook): Don't ignore changes at the
2033 very beginning of a hunk (e.g. killing the first line).
2034
20352012-12-19 Michael Albinus <michael.albinus@gmx.de>
2036
2037 * net/tramp-sh.el (tramp-sh-handle-file-acl): Delete empty lines
2038 and text properties from returned ACL string.
2039 (tramp-sh-handle-set-file-acl): Do not use additional parentheses
2040 for "setfacl" command.
2041
20422012-12-18 Michael Albinus <michael.albinus@gmx.de>
2043
2044 * net/tramp.el (tramp-error-with-buffer): Give a hint to use
2045 `tramp-cleanup-this-connection', when the process has died.
2046 (Bug#13151)
2047
20482012-12-17 Stefan Monnier <monnier@iro.umontreal.ca>
2049
2050 * icomplete.el (icomplete-completions): Also use … to truncate prefix.
2051
20522012-12-17 Kevin Ryde <user42@zip.com.au>
2053
2054 * files.el (auto-save-file-name-p): Use \` and \' (bug#13186).
2055
20562012-12-17 Michael Albinus <michael.albinus@gmx.de>
2057
2058 Add support for preserving ACL entries of files.
2059
2060 * net/tramp.el (tramp-file-name-for-operation): Add `file-acl' and
2061 `set-file-acl' handlers.
2062
2063 * net/tramp-adb.el (tramp-adb-handle-copy-file):
2064 Handle PRESERVE-EXTENDED-ATTRIBUTES.
2065
2066 * net/tramp-compat.el (tramp-compat-copy-file):
2067 Handle PRESERVE-EXTENDED-ATTRIBUTES.
2068
2069 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
2070 Add `file-acl' and `set-file-acl' handlers.
2071 (tramp-gvfs-handle-copy-file):
2072 Handle PRESERVE-EXTENDED-ATTRIBUTES.
2073 (tramp-gvfs-handle-file-acl, tramp-gvfs-handle-set-file-acl):
2074 New defuns.
2075
2076 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
2077 Add `file-acl' and `set-file-acl' handlers.
2078 (tramp-remote-acl-p, tramp-sh-handle-file-acl)
2079 (tramp-sh-handle-set-file-acl): New defuns.
2080 (tramp-sh-handle-copy-file, tramp-do-copy-or-rename-file):
2081 Handle PRESERVE-EXTENDED-ATTRIBUTES.
2082
2083 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
2084 Add `file-acl' and `set-file-acl' handlers.
2085 (tramp-smb-handle-copy-file): Handle PRESERVE-EXTENDED-ATTRIBUTES.
2086
20872012-12-17 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
2088
2089 * help-macro.el (make-help-screen): Instead of switch-to-buffer
2090 use pop-to-buffer with NORECORD argument t. As buffer name, use
2091 *Metahelp* with a leading space (Bug#13190).
2092
20932012-12-16 Romain Francoise <romain@orebokech.com>
2094
2095 * files.el (file-extended-attributes)
2096 (set-file-extended-attributes): New functions.
2097 (backup-buffer): Use them to handle both SELinux context and ACL
2098 entries.
2099 (backup-buffer-copy): Work with an alist of extended attributes,
2100 rather than an SELinux context.
2101 (basic-save-buffer-2): Ditto.
2102
21032012-12-16 Timo Myyrä <timo.myyra@gmail.com>
2104
2105 * battery.el (battery-bsd-apm): New function.
2106
21072012-12-16 Jay Belanger <jay.p.belanger@gmail.com>
2108
2109 * calc/calc.el (calc-standard-date-formats): Adjust one of the
2110 standard date formats.
2111
21122012-12-15 Juri Linkov <juri@jurta.org>
2113
2114 * isearch.el (isearch-mode-map): Bind `C-x 8 RET' to
2115 `isearch-insert-char-by-name'.
2116 (with-isearch-suspended): New defmacro with body mostly from
2117 `isearch-edit-string' except the part that sets
2118 `isearch-new-string' and `isearch-new-message'.
2119 (isearch-edit-string): Use new macro `with-isearch-suspended' with
2120 body that sets `isearch-new-string' and `isearch-new-message'.
2121 (isearch-insert-char-by-name): New command.
2122 * international/mule-cmds.el (read-char-by-name): Let-bind
2123 `enable-recursive-minibuffers' to t.
2124 http://lists.gnu.org/archive/html/emacs-devel/2012-12/msg00234.html
2125
21262012-12-15 Juri Linkov <juri@jurta.org>
2127
2128 * isearch.el (isearch-delete-char, isearch-del-char): Doc fix.
2129 (Bug#13175)
2130
21312012-12-15 Christopher Schmidt <christopher@ch.ristopher.com>
2132
2133 * dired-x.el (dired-guess-shell-command): Put colon at the end of
2134 the prompt. (Bug#13045)
2135
21362012-12-14 Glenn Morris <rgm@gnu.org>
2137
2138 * emacs-lisp/macroexp.el (macroexp--warn-and-return):
2139 Try to include filename in non-bytecomp warning. (Bug#13132)
2140
21412012-12-14 Paul Eggert <eggert@cs.ucla.edu>
2142
2143 Fix permissions bugs with setgid directories etc. (Bug#13125)
2144 * files.el (backup-buffer): Don't rely on 9th output of
2145 file-attributes, as it's now a placeholder. Instead, use the new
2146 optional arg of file-ownership-preserved-p.
2147 (file-ownership-preserved-p): New optional arg GROUP.
2148 Fix mishandling of setuid directories that would cause this
2149 function to return t when it should have returned nil.
2150 Document what happens if the file does not exist, and when
2151 it's not known whether the ownership will be preserved.
2152 * net/tramp-sh.el (tramp-sh-handle-file-ownership-preserved-p):
2153 Likewise.
2154 (tramp-get-local-gid): Use group-gid for integer, as that's
2155 faster and more reliable.
2156
21572012-12-14 Julien Danjou <julien@danjou.info>
2158
2159 * progmodes/sql.el (sql-mode-postgres-font-lock-keywords):
2160 Update keywords list, data type and PL/pgSQL.
2161
21622012-12-14 Dave Abrahams <dave@boostpro.com>
2163
2164 * vc/ediff-util.el (ediff-buffer-type): New function.
2165 (ediff-clone-buffer-for-current-diff-comparison): Compute the buf-type
2166 rather than taking it as as argument.
2167 (ediff-inferior-compare-regions): Adjust calls accordingly (bug#11319).
2168
21692012-12-14 Ryan Crum <ryan.crum@eleostech.com>
2170
2171 * json.el: Add pretty-print option (bug#12634).
2172 (json-encoding-separator, json-encoding-default-indentation)
2173 (json--encoding-current-indentation, json-encoding-pretty-print)
2174 (json-encoding-lisp-style-closings): New vars.
2175 (json--with-indentation): New macro.
2176 (json-encode-hash-table, json-encode-alist, json-encode-plist)
2177 (json-encode-array): Use it to obey json-encoding-pretty-print.
2178 (json-pretty-print-buffer, json-pretty-print): New commands.
2179
21802012-12-14 Dmitry Gutov <dgutov@yandex.ru>
2181
2182 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
2183 Extract `ruby-syntax-propertize-expansions'.
2184 (ruby-syntax-propertize-expansions): Only change syntax on
2185 certain string delimiters, to punctuation. This way the common
2186 functions like forward-word and thing-at-point still work.
2187 (ruby-match-expression-expansion): Improve readability.
2188 (ruby-block-contains-point): New function.
2189 (ruby-add-log-current-method): Handle several edge cases.
2190
21912012-12-13 Juanma Barranquero <lekktu@gmail.com>
2192
2193 * emacs-lisp/edebug.el (edebug-unload-function): Make sure that
2194 unload-feature finishes even when aborting an ongoing edebug session.
2195 Also, do not worry about edebug-mode, unload-feature takes care of it.
2196
21972012-12-13 Andreas Schwab <schwab@suse.de>
2198
2199 * net/tls.el (tls-program): Update customize type.
2200
22012012-12-13 Juanma Barranquero <lekktu@gmail.com>
2202
2203 * emacs-lisp/edebug.el (edebug--require-cl-read): New function.
2204 (edebug-setup-hook, cl-read-load-hooks): Use it.
2205 (edebug-unload-function): New function. (Bug#13163)
2206
22072012-12-13 Michael Albinus <michael.albinus@gmx.de>
2208
2209 * net/tramp-adb.el (tramp-adb-file-name-p): Make it a defsubst.
2210 Otherwise, there could be errors in autoloading. (Bug#13151)
2211
22122012-12-13 Jürgen Hötzel <juergen@archlinux.org>
2213
2214 * net/tramp-adb.el (tramp-adb-wait-for-output): Remove spurious " ^H"
2215 sequences.
2216
22172012-12-13 Alan Mackenzie <acm@muc.de>
2218
2219 Make CC Mode not hang when _some_ lines end in CRLF. Bug #11841.
2220 * progmodes/cc-engine.el (c-backward-comments): Add code to work
2221 around `forward-comment' not recognizing ^M as whitespace.
2222
22232012-12-13 Fabián Ezequiel Gallina <fgallina@cuca>
2224
2225 * progmodes/python.el (python-skeleton-class)
2226 (python-skeleton-def): Do not add space after defun name.
2227
22282012-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
2229
2230 * emacs-lisp/cl.el (letf): Make it an alias of cl-letf.
2231 (cl--symbol-function): Remove (now that funbound is like nil).
2232
22332012-12-12 Glenn Morris <rgm@gnu.org>
2234
2235 * button.el (button--area-button-p): Fix typo.
2236
22372012-12-12 Sam Steingold <sds@gnu.org>
2238
2239 * frame.el (frame-maximization-style): New user option.
2240 (toggle-frame-maximized): Toggle frame maximization according to
2241 `frame-maximization-style', bound to <f11>.
2242 (cycle-frame-maximized): Cycle between all maximization styles and
2243 non-maximized frame, bound to shift-<f11>.
2244
22452012-12-12 David Cadé <codename68@gmail.com>
2246
2247 * mpc.el (mpc-format): Use truncate-string-to-width (bug#13143).
2248
22492012-12-12 Jonas Bernoulli <jonas@bernoul.li>
2250
2251 * lisp/emacs-lisp/eieio.el: Prettier object pretty-printing (bug#13115).
2252 (eieio-override-prin1): Don't quote kewords and booleans.
2253 (object-write) <eieio-default-superclass>: Don't put closing parens
2254 on new line, avoid needless empty lines, align values that are objects
2255 with the slot keyword (instead of beginning on the same line).
2256 (eieio-list-prin1): Align value with slot keyword; increase
2257 eieio-print-depth before printing members of the list.
2258
22592012-12-11 Stefan Monnier <monnier@iro.umontreal.ca>
2260
2261 * mail/emacsbug.el (report-emacs-bug): Move the intangible text to
2262 a display text-property.
2263 (report-emacs-bug-hook): Don't bother deleting it any more.
2264
2265 * hilit-chg.el (highlight-save-buffer-state): Delete.
2266 Use with-silent-modifications instead.
2267 (hilit-chg-set-face-on-change): Only fixup the text that's modified.
2268
2269 * button.el: Handle buttons in display text-properties.
2270 (button--area-button-p, button--area-button-string):
2271 Use (STRING . STRING-POS) representation instead of just STRING.
2272
22732012-12-11 Eli Zaretskii <eliz@gnu.org>
2274
2275 * makefile.w32-in (compile4-SH): Fix a typo that caused term
2276 subdirectory be skipped.
2277
22782012-12-11 Glenn Morris <rgm@gnu.org>
2279
2280 * net/rcirc.el (rcirc-urls, rcirc-condition-filter): Doc fixes.
2281
2282 * progmodes/f90.el (f90-line-continued, f90-indent-region):
2283 Treat preprocessor lines embedded in continuations like comments.
2284 (f90-indent-line): Special-case preprocessor lines. (Bug#13138)
2285
22862012-12-11 Jay Belanger <jay.p.belanger@gmail.com>
2287
2288 * calc/calc.el (calc-standard-date-formats): Add more date
2289 formats.
2290 * calc/calc-forms.el (math-parse-iso-date): New function.
2291 (math-parse-date): Use `math-parse-iso-date' when appropriate.
2292 (math-parse-iso-date-validate): Add extra error checking.
2293 (calc-date-notation): Add ability to access new date formats.
2294
22952012-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
2296
2297 * hi-lock.el (hi-lock--regexps-at-point): Fix boundary case for
2298 font-lock as well as when there's no text-property.
2299
23002012-12-10 Jambunathan K <kjambunathan@gmail.com>
2301
2302 * hi-lock.el: Refine the choice of default face.
2303 (hi-lock-keyword->face): New function. Use it wherever we used
2304 cadadadr instead.
2305 (hi-lock--regexps-at-point): Ignore faces that can't come from hi-lock.
2306 (hi-lock--last-face): Remove var.
2307 (hi-lock--unused-faces): New var to replace it.
2308 (hi-lock-read-face-name): Use/maintain it.
2309 (hi-lock-unface-buffer): Maintain it. Fix error for the C-u case.
2310 (hi-lock-set-pattern): Ignore new rule if it has the same regexp even
2311 if it has another face.
2312
23132012-12-10 Eli Zaretskii <eliz@gnu.org>
2314
2315 * subr.el (w32notify-handle-event): New function.
2316 (inotify-handle-event): Doc fix.
2317
23182012-12-10 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
2319
2320 * subr.el (inotify-event-p, inotify-handle-event): New functions.
2321
23222012-12-10 Dani Moncayo <dmoncayo@gmail.com>
2323
2324 * simple.el (just-one-space): Doc fix.
2325
23262012-12-10 Eli Zaretskii <eliz@gnu.org>
2327
2328 * textmodes/texinfo.el (texinfo-enable-quote-envs): Add "smallexample".
2329
23302012-12-10 Le Wang <l26wang@gmail.com>
2331
2332 * hilit-chg.el (hilit-chg-set-face-on-change): Don't burp in
2333 narrowed buffer (bug#12361).
2334
23352012-12-10 Juanma Barranquero <lekktu@gmail.com>
2336
2337 * vc/vc-hooks.el (vc-state): Doc fix.
2338
23392012-12-10 Glenn Morris <rgm@gnu.org>
2340
2341 * mail/rmail.el (rmail-maybe-display-summary):
2342 Preserve buffer, in case select-window changes it. (Bug#13066)
2343
23442012-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
2345
2346 * emacs-lisp/cl.el, emacs-lisp/cl-lib.el: Move cl-unload-function and
2347 cl-load-hook where they belong.
2348
23492012-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
2350
2351 * emacs-lisp/cl-lib.el (cl-declaim): Paren typo.
2352
23532012-12-09 Eli Zaretskii <eliz@gnu.org>
2354
2355 Parallelize byte compilation on MS-Windows.
2356 * makefile.w32-in (WINS_BASIC1, WINS_BASIC2, WINS_BASIC3)
2357 (WINS_BASIC4): New variables, subdivide subdirectories into 4 parts.
2358 (WINS_BASIC): Define as concatenation of the above.
2359 (compile): Subdivide into 4 separate and independent jobs that can
2360 be run in parallel.
2361 (compile0-CMD, compile0-SH): New targets for compiling
2362 COMPILE_FIRST files, which are prerequisites for the rest of the
2363 byte-compilation.
2364 (compile1-CMD, compile2-CMD, compile3-CMD, compile4-CMD):
2365 New targets for parallel compilation with cmd.exe.
2366 (compile1-SH, compile2-SH, compile3-SH, compile4-SH): Ditto for
2367 compiling under a Unixy shell.
2368
23692012-12-09 Chong Yidong <cyd@gnu.org>
2370
2371 * simple.el (set-mark-default-inactive): Delete this
2372 accidentally-introduced option.
2373 (set-mark-command, exchange-point-and-mark): Remove calls.
2374
23752012-12-09 Glenn Morris <rgm@gnu.org>
2376
2377 * emacs-lisp/lisp-mode.el (eval-defun-1): Doc fix.
2378 Respect a defcustom's :set function, if appropriate. (Bug#109)
2379 (eval-defun): Doc fix.
2380
23812012-12-08 Juri Linkov <juri@jurta.org>
2382
2383 * info.el (Info-copy-current-node-name, Info-breadcrumbs)
2384 (Info-fontify-node, Info-bookmark-make-record): Remove the
2385 file extension from Info-current-file (Bug#13016).
2386
23872012-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
2388
2389 * hi-lock.el (hi-lock-unface-buffer): If there's no matching regexp at
2390 point, still provide some default.
2391 (hi-lock--regexps-at-point): Don't enforce a "hi-lock-" prefix on face
2392 names, since we don't use it right now. Actually return the list.
2393 (hi-lock-file-patterns, hi-lock-interactive-patterns): Use defvar-local.
2394
23952012-12-07 Chong Yidong <cyd@gnu.org>
2396
2397 * novice.el (disabled-command-function): Remove a spurious help
2398 xref (Bug#13043). Suggested by Kelly Dean.
2399
2400 * subr.el (text-clone-maintain): Fix clone overlay deletion when a
2401 syntax is specified (Bug#13025).
2402
2403 * info.el (Info-set-mode-line): Remove the file extension from
2404 Info-current-file if there is one (Bug#13016).
2405
24062012-12-07 Glenn Morris <rgm@gnu.org>
2407
2408 * mail/rmail.el (rmail-mime-decoded): New permanent local.
2409 (rmail-show-message-1): Set rmail-mime-decoded when appropriate.
2410 * mail/rmailedit.el (rmail-cease-edit): Respect rmail-mbox-format
2411 and rmail-mime-decoded. (Bug#9841)
2412
2413 * mail/unrmail.el (unrmail-mbox-format): New option. (Bug#6574)
2414 (batch-unrmail, unrmail): Doc fixes.
2415 (unrmail): Respect unrmail-mbox-format.
2416 * mail/rmail.el (rmail-mbox-format): New option.
2417 (rmail-show-message-1): Respect rmail-mbox-format.
2418
24192012-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
2420
2421 * emacs-lisp/cl-macs.el (cl-tagbody): New macro.
2422
24232012-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
2424
2425 Further cleanup of the "cl-" namespace. Fit CL in 80 columns.
2426 * emacs-lisp/cl-macs.el (cl--pop2, cl--optimize-safety)
2427 (cl--optimize-speed, cl--not-toplevel, cl--parse-loop-clause)
2428 (cl--expand-do-loop, cl--proclaim-history, cl--declare-stack)
2429 (cl--do-proclaim, cl--proclaims-deferred): Rename from the "cl-" prefix.
2430 (cl-progv): Don't rely on dynamic scoping to find the body.
2431 * emacs-lisp/cl-lib.el (cl--optimize-speed, cl--optimize-safety)
2432 (cl--proclaims-deferred): Rename from the "cl-" prefix.
2433 (cl-declaim): Use backquotes.
2434 * emacs-lisp/cl-extra.el (cl-make-random-state, cl-random-state-p):
2435 Use "cl--" prefix for the object's tag.
2436
2437 * ses.el: Use advice-add/remove.
2438 (ses--advice-copy-region-as-kill, ses--advice-yank): New functions.
2439 (copy-region-as-kill, yank): Use advice-add.
2440 (ses-unload-function): Use advice-remove.
2441
24422012-12-06 Jonas Bernoulli <jonas@bernoul.li>
2443
2444 * button.el: Make them work in header-lines (bug#12817).
2445 (button-map): Add bindings for header-line and mode-line use.
2446 (button-get, button-put, button-label): `button' may now be a string.
2447 (button-activate): Don't make it a defsubst.
2448 (button--area-button-p, button--area-button-string): New functions.
2449 (make-text-button): Fix the return value when `beg' was a string.
2450 (push-button): Handle the mode-line case.
2451
24522012-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
2453
2454 * progmodes/sql.el: Use cl-lib and lexical-binding; various cleanup.
2455 (sql-signum): Remove. Use `cl-signum' instead.
2456 (sql-read-passwd): Remove; use read-passwd instread.
2457 (sql-get-login-ext): Use read-string.
2458 (sql-get-login): Use dolist and pcase.
2459 (sql--completion-table): Rename from sql-try-completion.
2460 Use complete-with-action.
2461 (sql-mode): Don't change abbrev-all-caps globally.
2462 (sql-connect): Don't rely on dynamic scoping for `new-name'.
2463 (sql-postgres-completion-object): Initialize vars in their `let'.
2464 (sql-comint-sybase, sql-comint-sqlite, sql-comint-mysql)
2465 (sql-comint-solid, sql-comint-ms, sql-comint-postgres)
2466 (sql-comint-interbase): Use a single append, without setq.
2467 (sql-comint-linter): Same, and unwind-protect the LINTER_MBX var.
2468
2469 * hi-lock.el: Rework the default face and the serialize regexp code.
2470 (hi-lock--auto-select-face-defaults): Remove.
2471 (hi-lock-string-serialize-serial): Remove.
2472 (hi-lock--hashcons-hash): Rename from hi-lock-string-serialize-hash;
2473 make weak.
2474 (hi-lock--hashcons): Rename from hi-lock-string-serialize, return an
2475 equal string.
2476 (hi-lock-set-pattern): Adjust accordingly.
2477 (hi-lock--regexps-at-point): Simplify accordingly.
2478 (hi-lock--auto-select-face-defaults): Remove.
2479 (hi-lock--last-face): New var to replace it.
2480 (hi-lock-read-face-name): Rewrite (bug#11095).
2481 (hi-lock-unface-buffer): Arrange for the face to be the next default.
2482
24832012-12-06 Michael Albinus <michael.albinus@gmx.de>
2484
2485 * net/tramp.el (tramp-replace-environment-variables):
2486 Hide compiler warning.
2487 (tramp-file-name-for-operation): Remove `executable-find',
2488 `start-process', `call-process' and `call-process-region'.
2489
2490 * net/tramp-compat.el (top): Don't require 'tramp-util and 'tramp-vc.
2491
2492 * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error): Ensure backward
2493 compatibility.
2494
2495 * net/tramp-sh.el (top): Remove `tramp-sh-handle-call-process-region'.
2496
24972012-12-06 Chong Yidong <cyd@gnu.org>
2498
2499 * ffap.el (ffap-replace-file-component): Fix typo.
2500
25012012-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
2502
2503 * progmodes/octave-mod.el (octave-mark-block): Move out of tokens and
2504 fix open-paren-like token test (bug#12785).
2505
25062012-12-06 Glenn Morris <rgm@gnu.org>
2507
2508 * mail/rmailsum.el (rmail-new-summary): Tweak for
2509 rmail-maybe-display-summary changing buffer. (Bug#13066)
2510
25112012-12-06 Juri Linkov <juri@jurta.org>
2512
2513 * info.el (Info-fontify-node): Don't hide the last newline.
2514 (Bug#12272)
2515
25162012-12-06 Katsumi Yamaoka <yamaoka@jpl.org>
2517
2518 * mail/mailabbrev.el (mail-abbrev-expand-wrapper): Work in minibuffer
2519 so as to enable message-read-from-minibuffer to expand mail aliases.
2520
25212012-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
2522
2523 * minibuf-eldef.el (minibuf-eldef-update-minibuffer): Don't mess with
2524 the `intangible' property.
2525 Suggested by Christopher Schmidt <christopher@ch.ristopher.com>
2526
25272012-12-05 Deniz Dogan <deniz@dogan.se>
2528
2529 * net/rcirc.el (rcirc-urls): Update documentation.
2530 (rcirc-condition-filter): New function.
2531 (rcirc-browse-url, rcirc-markup-urls): Use only URLs before point
2532 and exclude consecutive duplicate URLs (Bug#6082).
2533
25342012-12-05 Michael Albinus <michael.albinus@gmx.de>
2535
2536 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
2537 Check return code of copy command.
2538
2539 * net/tramp-adb.el (tramp-adb-sdk-dir, tramp-adb-prompt):
2540 Use group `tramp'. Add version.
2541
25422012-12-05 Chong Yidong <cyd@gnu.org>
2543
2544 * ffap.el (ffap-url-regexp): Don't require matching at front of
2545 string (Bug#4952).
2546 (ffap-url-p): If only a substring matches, return that.
2547 (ffap-url-at-point): Use the return value of ffap-url-p.
2548 (ffap-read-file-or-url, ffap-read-file-or-url-internal)
2549 (find-file-at-point, dired-at-point, dired-at-point-prompter)
2550 (ffap-guess-file-name-at-point): Likewise.
2551 (ffap-replace-file-component): Fix typo.
2552
2553 * info.el (info-display-manual): Add existing Info buffers, whose
2554 files may not be in Info-directory-list, to the completion.
2555 (info--manual-names): New helper function.
2556
25572012-12-05 Glenn Morris <rgm@gnu.org>
2558
2559 * vc/vc-hg.el (vc-hg-resolve-when-done, vc-hg-find-file-hook):
2560 New functions, for detecting and resolving conflicts. (Bug#10709)
2561
25622012-12-04 Jambunathan K <kjambunathan@gmail.com>
2563
2564 * hi-lock.el (hi-lock-auto-select-face): New user variable.
2565 (hi-lock-auto-select-face-defaults): New buffer local variable.
2566 (hi-lock-read-face-name): Honor `hi-lock-auto-select-face'.
2567 (hi-lock-unface-buffer): Prompt user with useful defaults.
2568 With prefix arg, unhighlight all hi-lock patterns in buffer.
2569
25702012-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
2571
2572 * obsolete/terminal.el, obsolete/longlines.el: Add obsolecence info.
2573
25742012-12-04 Michael Albinus <michael.albinus@gmx.de>
2575
2576 * Makefile.in (TRAMP_SRC):
2577 * makefile.w32-in (TRAMP_SRC): Add tramp-adb.el.
2578
25792012-12-04 Juergen Hoetzel <juergen@archlinux.org>
2580
2581 * net/tramp-adb.el: New package.
2582
25832012-12-04 Chong Yidong <cyd@gnu.org>
2584
2585 * terminal.el: Move to obsolete/.
2586
2587 * longlines.el: Move to obsolete/.
2588
2589 * vc/ediff-diff.el (ediff-extract-diffs, ediff-extract-diffs3):
2590 Remove code referring to longlines mode.
2591
25922012-12-03 Juri Linkov <juri@jurta.org>
2593
2594 * sort.el (delete-duplicate-lines): New command. (Bug#13032)
2595
25962012-12-03 Agustín Martín Domingo <agustin.martin@hispalinux.es>
2597
2598 * textmodes/ispell.el (ispell-init-process)
2599 (ispell-start-process, ispell-internal-change-dictionary):
2600 Make sure personal dictionary name is expanded after initial
2601 `default-directory' value. Use expanded strings for
2602 keep/restart checks and for value (Bug#13019).
2603
26042012-12-03 Jay Belanger <jay.p.belanger@gmail.com>
2605
2606 * calc/calc-forms.el (math-date-to-iso-dt): Fix weekday number.
2607
26082012-12-03 Leo Liu <sdl.web@gmail.com>
2609
2610 * files.el (dir-locals-read-from-file): Check file non-empty
2611 before reading. (Bug#13038)
2612
26132012-12-03 Glenn Morris <rgm@gnu.org>
2614
2615 * jka-cmpr-hook.el (jka-compr-get-compression-info):
2616 Remove any version extension before checking filename. (Bug#13006)
2617 (jka-compr-compression-info-list): Belated :version bump.
2618
26192012-12-03 Chong Yidong <cyd@gnu.org>
2620
2621 * simple.el (transient-mark-mode): Doc fix (Bug#11523).
2622
2623 * buff-menu.el (Buffer-menu-delete-backwards, Buffer-menu-mode)
2624 (buffer-menu): Doc fix (Bug#12294).
2625
26262012-12-03 Roland Winkler <winkler@gnu.org>
2627
2628 * calendar/diary-lib.el (diary-header-line-format): Use keybinding
2629 of diary-show-all-entries in the diary buffer (Bug#12994).
2630
26312012-12-03 Michael Albinus <michael.albinus@gmx.de>
2632
2633 * net/tramp-sh.el (tramp-perl-encode): Use "read STDIN" instead of
2634 "<STDIN>". This is binary safe.
2635
26362012-12-03 Jay Belanger <jay.p.belanger@gmail.com>
2637
2638 * calc/calc-forms.el (math-absolute-from-iso-dt)
2639 (math-date-to-iso-dt, math-parse-iso-date-validate)
2640 (math-iso-dt-to-date): New functions.
2641 (math-fd-iso-dt, math-fd-isoyear, math-fd-isoweek)
2642 (math-fd-isoweekday): New variables.
2643 (calc-date-notation, math-parse-standard-date, math-format-date)
2644 (math-format-date-part): Add support for more formatting codes.
2645
26462012-12-02 Dmitry Gutov <dgutov@yandex.ru>
2647
2648 * vc/vc.el (vc-delete-file, vc-rename-file): Default to the
2649 current buffer's file name when called interactively (Bug#12488).
2650
26512012-12-02 Juri Linkov <juri@jurta.org>
2652
2653 * info.el (info-display-manual): Don't clobber an existing Info
2654 buffer (Bug#10770). Add completion (Bug#10771).
2655
26562012-12-01 Yuya Nishihara <yuya@tcha.org> (tiny change)
2657
2658 * vc/vc-hooks.el (vc-find-file-hook): Expand buffer-file-truename
2659 before using it for comparison (Bug#5297).
2660
26612012-12-01 Jari Aalto <jari.aalto@cante.net>
2662
2663 * textmodes/css-mode.el (css-current-defun-name): New function.
2664 (css-mode): Use it.
2665
2666 * textmodes/sgml-mode.el (html-current-defun-name): New function.
2667 (html-mode): Use it.
2668
26692012-12-01 Chong Yidong <cyd@gnu.org>
2670
2671 Modularize add-log-current-defun (Bug#2224).
2672 Suggested by Jari Aalto.
2673
2674 * vc/add-log.el (add-log-current-defun-function): Doc fix.
2675 (add-log-current-defun): Move mode-specific code to other files.
2676 (add-log-lisp-like-modes, add-log-c-like-modes)
2677 (add-log-tex-like-modes): Variables deleted.
2678
2679 * emacs-lisp/lisp-mode.el (lisp-current-defun-name): New.
2680 (lisp-mode-variables): Use it.
2681
2682 * progmodes/cc-mode.el (c-common-init):
2683 * progmodes/cperl-mode.el (cperl-mode): Set a value for
2684 add-log-current-defun-function.
2685
2686 * progmodes/m4-mode.el (m4-current-defun-name): New function.
2687 (m4-mode): Use it.
2688
2689 * progmodes/perl-mode.el (perl-current-defun-name): New.
2690 (perl-mode): Use it.
2691
2692 * progmodes/scheme.el (scheme-mode-variables, dsssl-mode):
2693 Use lisp-current-defun-name.
2694
2695 * textmodes/tex-mode.el (tex-current-defun-name): New.
2696 (tex-common-initialization): Use it.
2697
2698 * textmodes/texinfo.el (texinfo-current-defun-name): New.
2699 (texinfo-mode): Use it.
2700
27012012-12-01 Chong Yidong <cyd@gnu.org>
2702
2703 * emacs-lisp/lisp-mode.el (lisp-mode-variables, lisp-mode):
2704 * progmodes/autoconf.el (autoconf-mode):
2705 * progmodes/js.el (js-mode):
2706 * progmodes/make-mode.el (makefile-mode, makefile-makepp-mode)
2707 (makefile-bsdmake-mode, makefile-imake-mode, makefile-browse):
2708 * progmodes/perl-mode.el (perl-mode):
2709 * progmodes/sh-script.el (sh-mode, sh-set-shell):
2710 * textmodes/css-mode.el (css-mode):
2711 * textmodes/sgml-mode.el (html-mode, sgml-mode)
2712 (sgml-tags-invisible, sgml-guess-indent):
2713 * textmodes/tex-mode.el (tex-common-initialization)
2714 (latex-complete-bibtex-keys, tex-shell, tex-main-file)
2715 (doctex-mode, plain-tex-mode, latex-mode):
2716 * textmodes/texinfo.el (texinfo-mode): Use setq-local.
2717
27182012-12-01 Kirk Kelsey <kirk.kelsey@0x4b.net>
2719
2720 * vc/vc-hg.el (vc-hg-next-revision):
2721 Ensure use of default "tip" output format. (Bug#6968)
2722
27232012-12-01 Kim F. Storm <storm@cua.dk>
2724
2725 * startup.el (fancy-startup-tail): Add a clickable link
2726 (Bug#2176).
2727
27282012-12-01 Chong Yidong <cyd@gnu.org>
2729
2730 * startup.el (fancy-startup-tail): Improve the message about
2731 auto-save files (Bug#2176).
2732
2733 * files.el (recover-session): Improve the descriptive message, and
2734 use substitute-command-keys.
2735
27362012-12-01 Glenn Morris <rgm@gnu.org>
2737
2738 * ido.el (ido-file-internal):
2739 Handle other-window, other-frame for dired. (Bug#13036)
2740
27412012-11-30 Glenn Morris <rgm@gnu.org>
2742
2743 * icomplete.el (icomplete-separator): Fix :version.
2744
27452012-11-30 Chong Yidong <cyd@gnu.org>
2746
2747 * shell.el (shell): For C-u M-x shell, use an inactive shell
2748 buffer as the default (Bug#1975).
2749 (shell-apply-ansi-color, shell-reapply-ansi-color): New functions.
2750 (shell-mode): Use them to reapply ansi colorization if Shell mode
2751 is re-enabled.
2752
27532012-11-30 Yuriy Vostrikov <delamonpansie@gmail.com> (tiny change)
2754
2755 * vc/vc-git.el (vc-git-command): Disable the pager (Bug#6137).
2756
27572012-11-30 Samuel Bronson <naesten@gmail.com>
2758
2759 * progmodes/grep.el (grep-compute-defaults): Do not pass the -e
2760 flag to xargs, for compatibility with BSD xargs (Bug#11703).
2761
27622012-11-30 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
2763
2764 * textmodes/fill.el (fill-region-as-paragraph): Handle overshoot
2765 by move-to-column (Bug#3234).
2766
27672012-11-30 Chong Yidong <cyd@gnu.org>
2768
2769 * longlines.el (longlines-wrap-line, longlines-encode-region):
2770 Preserve text properties (Bug#1425).
2771
27722012-11-30 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
2773
2774 * vc/vc.el (vc-register): Allow registering a file which is
2775 already registered with a different backend (Bug#10589).
2776
27772012-11-29 Jambunathan K <kjambunathan@gmail.com>
2778 Stefan Monnier <monnier@iro.umontreal.ca>
2779
2780 * icomplete.el: Change separator; add ido-style commands.
2781 (icomplete-show-key-bindings): Remove custom var.
2782 (icomplete-get-keys): Remove function.
2783 (icomplete-forward-completions, icomplete-backward-completions):
2784 New commands.
2785 (icomplete-minibuffer-map): New var.
2786 (icomplete-minibuffer-setup): Use it.
2787 (icomplete-exhibit): Don't delay if the list of completions is known.
2788 (icomplete-separator): New custom.
2789 (icomplete-completions): Use it.
2790 * minibuffer.el (completion-all-sorted-completions): Delete duplicates.
2791 (minibuffer-force-complete-and-exit): New command.
2792 (minibuffer--complete-and-exit): New function extracted from
2793 minibuffer-complete-and-exit.
2794 (minibuffer-complete-and-exit): Use it.
2795
2796 * progmodes/etags.el (visit-tags-table-buffer): Give a more precise
2797 error message when the file doesn't exist (bug#12974).
2798
27992012-11-29 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
2800
2801 * simple.el (activate-mark): Run activate-mark-hook (bug#13027).
2802
28032012-11-29 Glenn Morris <rgm@gnu.org>
2804
2805 * files.el (hack-dir-local-variables): Warn if try to set
2806 coding via dir-locals, since it doesn't work. (Bug#7169)
2807
2808 Add desktop support for restoring vc-dir buffers. (Bug#10606)
2809 * vc/vc-dir.el (vc-dir-mode): Autoload it (for desktop restore).
2810 Set buffer-local value of desktop-save-buffer.
2811 (vc-dir-desktop-buffer-misc-data, vc-dir-restore-desktop-buffer):
2812 New functions.
2813 (desktop-buffer-mode-handlers): Add vc-dir-mode entry.
2814 * desktop.el (desktop-save-buffer-p): Treat vc-dir like dired.
2815
2816 * files.el (inhibit-local-variables-ignore-case): New. (Bug#10610)
2817 (inhibit-local-variables-p): Use inhibit-local-variables-ignore-case.
2818 Doc fix.
2819 (inhibit-local-variables-regexps, inhibit-local-variables-suffixes):
2820 Doc fixes.
2821
28222012-11-28 Jay Belanger <jay.p.belanger@gmail.com>
2823
2824 * calc/calc-forms.el (calc-date-notation): Fix regexp
2825 used to find time codes. Fix symbol for seconds.
2826
28272012-11-27 Glenn Morris <rgm@gnu.org>
2828
2829 * emacs-lisp/derived.el (derived-mode-make-docstring):
2830 Don't mention "abbrev" or "syntax" if nil. (Bug#11277)
2831
28322012-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
2833
2834 * textmodes/table.el (table-insert): Don't use `symbol-name' on
2835 lexically scoped variables (bug#13005).
2836
28372012-11-27 Glenn Morris <rgm@gnu.org>
2838
2839 * vc/vc-hooks.el (vc-mistrust-permissions):
2840 Default to t, to avoid data-loss. (Bug#11490)
2841
28422012-11-27 Fabián Ezequiel Gallina <fgallina@cuca>
2843
2844 * progmodes/python.el (python-indent-guess-indent-offset):
2845 If indentation is guessed make python-indent-offset buffer-local.
2846
2847 Fix Imenu regression.
2848 * progmodes/python.el (python-nav-beginning-of-defun):
2849 Fix forward movement when statement(s) separates point from defun.
2850 (python-imenu-prev-index-position): New function.
2851
28522012-11-27 Eli Zaretskii <eliz@gnu.org>
2853
2854 * subr.el (buffer-file-type): Declare with defvar-local. Doc fix.
2855
2856 * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
2857 Don't set buffer-file-type. Return nil. (Bug#12989)
2858
28592012-11-27 Glenn Morris <rgm@gnu.org>
2860
2861 * hippie-exp.el (hippie-expand-try-functions-list):
2862 Re-autoload it. (Bug#12982)
2863
28642012-11-27 Eli Zaretskii <eliz@gnu.org>
2865
2866 * descr-text.el (describe-char-padded-string):
2867 Call internal-char-font only on GUI frames. (Bug#11964)
2868
28692012-11-27 Andreas Schwab <schwab@linux-m68k.org>
2870
2871 * buff-menu.el (Buffer-menu-buffer+size-width): Fix customize type
2872 and obsoletion message.
2873
28742012-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
2875
2876 * emacs-lisp/cl-macs.el (cl--transform-lambda): Add back `declare' in
2877 the constructs to keep outside of the `cl-block' (bug#12977).
2878
28792012-11-27 Chong Yidong <cyd@gnu.org>
2880
2881 * mouse.el (mouse-drag-line): Even if the line is not draggable,
2882 keep reading until we get the up-event anyway, in order to process
2883 the up-event for mouse-1-click-follows-link (Bug#12971).
2884
28852012-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
2886
2887 * emacs-lisp/advice.el (ad-should-compile): Don't compile advice if the
2888 base function is not yet defined (bug#12965).
2889 (ad-activate-advised-definition): Use ad-compile-function.
2890 (ad-activate): Use cond.
2891
28922012-11-25 Leo Liu <sdl.web@gmail.com>
2893
2894 * textmodes/sgml-mode.el (sgml-tag): Fix indentation for closing tag.
2895 (Bug#12979)
2896
28972012-11-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
2898
2899 * textmodes/reftex-parse.el (reftex-parse-from-file): Use variable
2900 reftex-section-info-function in order to be compatible with
2901 Texinfo integration.
2902
2903 * textmodes/reftex.el (reftex-section-pre-regexp)
2904 (reftex-section-post-regexp, reftex-section-info-function):
2905 New variable.
2906 (reftex-compile-variables): Use variables reftex-section-pre-regexp,
2907 reftex-section-post-regexp, and reftex-section-info-function in order
2908 to be compatible with Texinfo integration.
2909
2910 * textmodes/reftex-toc.el (reftex-toc-promote-action):
2911 use reftex-section-pre-regexp variable in order to be compatible with
2912 Texinfo integration.
2913
29142012-11-25 Chong Yidong <cyd@gnu.org>
2915
2916 * faces.el: Make face-spec-set more analogous to setq.
2917 (face-spec-set): Change the third arg to specify whether this
2918 function is being called via defface, customize, or a third party.
2919 Set the appropriate symbol properties. Clear the override spec if
2920 setting via Custom. Initialize face if necessary. (Bug#4988)
2921 (face-spec-recalc): Allow theme faces to completely replace the
2922 defface spec, in the same way as custom faces (Bug#8454).
2923
2924 * cus-face.el (custom-declare-face): Move face initialization to
2925 face-spec-set.
2926 (custom-theme-set-faces): Don't initialize the face name here, as
2927 that is now done in face-spec-set.
2928
2929 * cus-edit.el (custom-face-set, custom-face-mark-to-save)
2930 (custom-face-reset-saved, custom-face-mark-to-reset-standard):
2931 Simplify by using the new arg to face-spec-set.
2932
2933 * emacs-lisp/lisp-mode.el (eval-defun-1): When evaluating defface,
2934 reset face-override-spec too, and use custom-declare-face.
2935
29362012-11-24 Jan Djärv <jan.h.d@swipnet.se>
2937
2938 * term/ns-win.el (ns-initialize-window-system): Move creation of
2939 fontsets here (Bug#11964).
2940
29412012-11-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
2942
2943 * ses.el (ses-rename-cell): Correct bug on mode-line update after
2944 cell renaming.
2945
29462012-11-24 Chong Yidong <cyd@gnu.org>
2947
2948 * woman.el (woman-default-faces, woman-monochrome-faces): Mark as
2949 obsolete.
2950
2951 * custom.el (custom-theme-set-variables): Use a topological sort
2952 for ordering by custom dependencies (Bug#12952).
2953 (custom--sort-vars, custom--sort-vars-1): New functions.
2954
29552012-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
2956
2957 * emacs-lisp/bytecomp.el (byte-compile-file): Setup default value for
2958 lexical-binding (bug#12938).
2959
29602012-11-24 Wolfgang Jenkner <wjenkner@inode.at>
2961
2962 * image-mode.el (image-transform-check-size): Use assertions only
2963 for images of type imagemagick.
2964
2965 Otherwise no error, image-transform-fit-to-{width,height} is
2966 silently ignored, as before. Doc fix.
2967
29682012-11-24 Chong Yidong <cyd@gnu.org>
2969
2970 * faces.el (color-defined-p): Doc fix (Bug#12853).
2971
29722012-11-24 Juri Linkov <juri@jurta.org>
2973
2974 * dired.el (dired-mark): Add optional arg `interactive'.
2975 Check for `use-region-p' if `interactive' is non-nil.
2976 (dired-unmark, dired-flag-file-deletion): Add optional arg
2977 `interactive'. Call `dired-mark' with the arg `interactive'.
2978 (Bug#10624)
2979
2980 * wdired.el: Revert 2012-10-17 change partly and replace it with
2981 Patch by Christopher Schmidt <christopher@ch.ristopher.com>.
2982 (wdired-finish-edit): Add marks for new file names to
2983 `wdired-old-marks'. Restore marks using `dired-mark-remembered'
2984 after `revert-buffer'.
2985 (wdired-do-renames): Remove calls to `dired-remove-file',
2986 `dired-add-file', `dired-add-entry'. (Bug#11795)
2987
29882012-11-24 Alan Mackenzie <acm@muc.de>
2989
2990 * progmodes/cc-defs.el (c-version): Bump to 5.32.4.
2991
2992 Fix bugs in the state cache. Enhance a debugging mechanism.
2993 * progmodes/cc-engine.el (c-parse-state-get-strategy): Don't use
2994 "brace at column zero" strategy for C++.
2995 (c-append-lower-brace-pair-to-state-cache): Repair algorithm.
2996 (c-parse-state-point): New variable.
2997 (c-record-parse-state-state): Record old parse state with
2998 `copy-tree'. Record previous value of point.
2999 (c-debug-parse-state-double-cons): New debugging function.
3000 (c-debug-parse-state): Call the above new function.
3001 (c-toggle-parse-state-debug): Output a confirmatory message.
3002
3003 * progmodes/cc-mode.el (c-before-change, c-after-change):
3004 Call c-invalidate-state-cache from `c-before-change' instead of
3005 `c-after-change'.
3006
30072012-11-23 Chong Yidong <cyd@gnu.org>
3008
3009 * find-cmd.el (find-constituents): Add executable, ipath,
3010 readable, samefile, writable, daystart, regextype (Bug#12856).
3011
30122012-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
3013
3014 * emacs-lisp/ert.el, emacs-lisp/ert-x.el: Use cl-lib and lexical-binding.
3015
30162012-11-22 Paul Eggert <eggert@cs.ucla.edu>
3017
3018 * calc/calc.el (calc-gregorian-switch): Move to after calc-refresh
3019 definition. This fixes a bootstrap failure.
3020 (calc-gregorian-switch): In menu, put dates before regions.
3021 This is easier to follow, lines up better in the menu, and lets us
3022 coalesce regions that switch at the same time. Give country
3023 names, not "Vatican", as that's better for non-expert users.
3024 Use names that are stable between the date of switch and now, e.g.,
3025 Bohemia and Moravia (which existed then and now) and not
3026 Czechoslovakia (which didn't exist then and doesn't exist now).
3027 What is now the U.S. mostly did not switch at the same time as
3028 Britain, so omit the U.S. Correct spelling of "Britain".
3029 Catholic Switzerland was too much of a mess, so omit it.
3030
30312012-11-22 Jay Belanger <jay.p.belanger@gmail.com>
3032
3033 * calc/calc.el (calc-gregorian-switch): Refresh the Calc buffer
3034 after the variable is changed.
3035
30362012-11-21 Daniel Colascione <dancol@dancol.org>
3037
3038 * progmodes/sql.el (sql-mode-font-lock-object-name): Support IF NOT EXISTS
3039 in SQL declarations for font-lock.
3040 (sql-imenu-generic-expression): Teach imenu about IF NOT EXISTS.
3041
30422012-11-21 Glenn Morris <rgm@gnu.org>
3043
3044 * faces.el (face-underline-p, face-inverse-video-p, face-bold-p)
3045 (face-italic-p): Add optional argument "inherit".
3046
3047 * faces.el (set-face-inverse-video, set-face-bold, set-face-italic):
3048 Remove -p suffix from names, for consistency with other set-face-*.
3049 (set-face-inverse-video): Fix interactive spec.
3050 * play/gamegrid.el (gamegrid-make-mono-tty-face):
3051 * textmodes/table.el (table--update-cell-face):
3052 Use set-face-inverse-video rather than now obsolete alias.
3053
30542012-11-21 Eli Zaretskii <eliz@gnu.org>
3055
3056 * simple.el (line-move): Don't call line-move-partial if
3057 scroll-conservatively is in effect. (Bug#12927)
3058
30592012-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
3060
3061 * eshell/em-cmpl.el (eshell-pcomplete): Refine fix for bug#12838:
3062 Fallback on completion-at-point rather than
3063 pcomplete-expand-and-complete, and only if pcomplete actually failed.
3064 (eshell-cmpl-initialize): Setup completion-at-point.
3065
3066 * pcomplete.el (pcomplete--entries): Obey pcomplete-ignore-case.
3067
3068 * emacs-lisp/ert.el (ert--expand-should-1): Adapt to cl-lib.
3069
30702012-11-21 Michael Albinus <michael.albinus@gmx.de>
3071
3072 * net/tramp-sh.el (tramp-do-copy-or-rename-file): If both files
3073 are remote, check out-of-band property for both.
3074
30752012-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
3076
3077 * window.el (switch-to-buffer): Re-add the warning that was lost in the
3078 code rewrite.
3079
30802012-11-21 Paul Eggert <eggert@cs.ucla.edu>
3081
3082 More minor time fixes.
3083 * calendar/time-date.el: Commentary fix.
3084 * net/tramp-sh.el (tramp-do-file-attributes-with-ls): Undo last change;
3085 too much other code depends on (0 0) time stamps.
3086 * net/tramp.el (tramp-time-less-p, tramp-time-subtract):
3087 Add a couple of FIXME comments.
3088
3089 Minor cleanup for times as lists of four integers.
3090 * files.el (dir-locals-directory-cache):
3091 * ps-bdf.el (bdf-file-mod-time, bdf-read-font-info):
3092 Doc fixes.
3093 * net/tramp-sh.el (tramp-do-file-attributes-with-ls):
3094 * ps-bdf.el (bdf-file-newer-than-time):
3095 Process four-integers time stamps, not two. Doc fixes.
3096
30972012-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
3098
3099 * uniquify.el (uniquify-managed): Use defvar-local.
3100 (rename-buffer, create-file-buffer): Advise with advice-add.
3101 (uniquify-unload-function): Unadvise accordingly.
3102
3103 * emacs-lisp/trace.el: Rewrite, use nadvice and lexical-binding.
3104 (trace-buffer): Don't purecopy.
3105 (trace-entry-message, trace-exit-message): Add `context' arg.
3106 (trace--timer): New var.
3107 (trace-make-advice): Adjust for use in nadvice.
3108 Add `context' argument. Delay `display-buffer' via a timer.
3109 (trace-function-internal): Use advice-add.
3110 (trace--read-args): New function.
3111 (trace-function-foreground, trace-function-background): Use it.
3112 (trace-function): Rename to trace-function-foreground and redefine as
3113 an alias to that new name.
3114 (untrace-function, untrace-all): Adjust to the use of nadvice.
3115
3116 * emacs-lisp/bytecomp.el (byte-compile): Fix handling of closures.
3117
3118 * emacs-lisp/byte-run.el (defun-declarations-alist): Fix last change.
3119
3120 * subr.el (called-interactively-p-functions): New var.
3121 (internal--called-interactively-p--get-frame): New macro.
3122 (called-interactively-p, interactive-p): Rewrite in Lisp.
3123 * emacs-lisp/nadvice.el (advice--called-interactively-skip): New fun.
3124 (called-interactively-p-functions): Use it.
3125 * emacs-lisp/edebug.el (edebug--called-interactively-skip): New fun.
3126 (called-interactively-p-functions): Use it.
3127 * allout.el (allout-called-interactively-p): Don't assume
3128 called-interactively-p is a subr.
3129
31302012-11-20 Glenn Morris <rgm@gnu.org>
3131
3132 * profiler.el (profiler-report-mode-map): Add a menu.
3133 No need to bind `q' because we derive from special-mode.
3134 (profiler-report-find-entry): Handle calls from the menu-bar.
3135
31362012-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
3137
3138 * emacs-lisp/byte-run.el (defun-declarations-alist):
3139 Allow a compiler-macro to be a lambda expression.
3140
3141 * progmodes/python.el: Use cl-lib. Move var declarations outside of
3142 eval-when-compile.
3143 (python-syntax-context): Add compiler-macro.
3144 (python-font-lock-keywords): Simplify with De Morgan.
3145
3146 * vc/diff-mode.el (diff-hunk): Don't make useless timers.
3147
3148 * files.el (load-file): Require match in minibuffer selection, as was
3149 the case in Emacs-20 before we changed the spec to allow .elc files
3150 (bug#12935).
3151
3152 * json.el: Don't require cl since we don't use it.
3153 * color.el: Don't require cl.
3154 (color-complement): `caddr' -> `nth 2'.
3155
3156 * calendar/time-date.el (time-to-seconds): De-obsolete.
3157
31582012-11-19 Jay Belanger <jay.p.belanger@gmail.com>
3159
3160 * calc/calc-forms.el (math-leap-year-p): Fix formula for negative
3161 year numbers.
3162 (math-date-to-julian-dt): Adjust the initial approximation for the
3163 year to deal with the new definition of the DATE.
3164
31652012-11-19 Daniel Colascione <dancol@dancol.org>
3166
3167 * term/w32-win.el (cygwin-convert-path-from-windows):
3168 Accomodate rename of cygwin_convert_path* to cygwin_convert_file_name*.
3169
31702012-11-18 Chong Yidong <cyd@gnu.org>
3171
3172 * filecache.el (file-cache--read-list): New function.
3173 (file-cache-add-directory-list, file-cache-add-file-list)
3174 (file-cache-delete-file-list, file-cache-delete-directory-list):
3175 Use it to read a list of files or directories (Bug#12846).
3176 (file-cache-add-file, file-cache-add-directory)
3177 (file-cache-delete-file-list, file-cache-delete-file-regexp)
3178 (file-cache-delete-directory): Print an message.
3179
31802012-11-18 Jay Belanger <jay.p.belanger@gmail.com>
3181
3182 * calc/calc-forms.el (math-date-to-dt): Use integer date when
3183 calling `math-date-to-julian-dt' and 'math-date-to-gregorian-dt'.
3184
31852012-11-18 Glenn Morris <rgm@gnu.org>
3186
3187 * image.el (insert-image, insert-sliced-image): Doc fix.
3188
31892012-11-18 Chong Yidong <cyd@gnu.org>
3190
3191 * emacs-lisp/syntax.el (syntax-propertize-function): Doc fix
3192 (Bug#12810).
3193
31942012-11-18 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
3195
3196 * vc/vc-svn.el (vc-svn-merge-news): Properly parse the merge
3197 response when the target file is in a subdirectory (Bug#12757).
3198
31992012-11-18 Chong Yidong <cyd@gnu.org>
3200
3201 * filecache.el (file-cache-add-file-list): Doc fix (Bug#12694).
3202
32032012-11-18 Glenn Morris <rgm@gnu.org>
3204
3205 * emacs-lisp/cl-lib.el (face-underline-p):
3206 Use set-face-underline rather than the alias set-face-underline-p.
3207
3208 * window.el (with-temp-buffer-window): Doc fix.
3209 * subr.el (with-output-to-temp-buffer):
3210 Add doc xref to with-temp-buffer-window.
3211
32122012-11-18 Juanma Barranquero <lekktu@gmail.com>
3213
3214 * woman.el (woman-non-underline-faces): Use `set-face-underline'.
3215 * calc/calc.el (math-format-date-cache): Declare.
3216
32172012-11-17 Paul Eggert <eggert@cs.ucla.edu>
3218
3219 Calc by default uses the Gregorian calendar for all dates (Bug#12633).
3220 It also uses January 1, 1 AD as its day number 1.
3221 * calc/calc-forms.el (math-julian-date-beginning)
3222 (math-julian-date-beginning-int): Implement this.
3223
32242012-11-17 Juanma Barranquero <lekktu@gmail.com>
3225
3226 * descr-text.el (quail-find-key):
3227 * dired.el (desktop-file-name):
3228 * dirtrack.el (shell-prefixed-directory-name, shell-process-cd):
3229 * generic-x.el (comint-mode, comint-exec):
3230 * image-dired.el (widget-forward):
3231 * info.el (speedbar-add-expansion-list, speedbar-center-buffer-smartly)
3232 (speedbar-change-expand-button-char)
3233 (speedbar-change-initial-expansion-list, speedbar-delete-subblock)
3234 (speedbar-make-specialized-keymap, speedbar-make-tag-line):
3235 * printing.el (easy-menu-add-item, easy-menu-remove-item)
3236 (widget-field-action, widget-value-set):
3237 * speedbar.el (imenu--make-index-alist):
3238 * term.el (ring-empty-p, ring-ref, ring-insert-at-beginning)
3239 (ring-length, ring-insert):
3240 * vcursor.el (compare-windows-skip-whitespace):
3241 * woman.el (dired-get-filename):
3242 Declare functions.
3243
3244 * term/w32-win.el (cygwin-convert-path-from-windows): Fix declaration.
3245
32462012-11-17 Jay Belanger <jay.p.belanger@gmail.com>
3247
3248 * calc/calc.el (calc-gregorian-switch): New variable.
3249
3250 * calc/calc-forms.el (math-day-in-year, math-dt-before-p)
3251 (math-absolute-from-gregorian-dt, math-absolute-from-julian-dt)
3252 (math-date-to-julian-dt, math-date-to-gregorian-dt): New functions.
3253 (math-leap-year-p): Add option to distinguish between Julian
3254 and Gregorian calendars.
3255 (math-day-number): Use `math-day-in-year' to do the computations.
3256 (math-absolute-from-dt): Rename from `math-absolute-from-date'.
3257 Use `math-absolute-from-gregorian' and `math-absolute-from-julian'
3258 to do the computations.
3259 (math-date-to-dt): Use `math-date-to-julian-dt' and
3260 `math-date-to-gregorian-dt' to do the computations.
3261 (calcFunc-weekday, math-format-date-part): Use the new version of
3262 the DATE to determine the weekday.
3263 (calcFunc-newmonth, calcFunc-newyear): Use `calc-gregorian-switch'
3264 when necessary.
3265
32662012-11-17 Eli Zaretskii <eliz@gnu.org>
3267
3268 * term/w32-win.el (w32-handle-dropped-file): Use 'file://' only on
3269 Cygwin; otherwise use 'file:'. (Bug#12914)
3270 (cygwin-convert-path-from-windows): Declare, to avoid
3271 byte-compiler warnings.
3272
32732012-11-17 Andreas Politz <politza@fh-trier.de>
3274
3275 * ibuffer.el (ibuffer-mark-forward, ibuffer-unmark-forward)
3276 (ibuffer-unmark-backward, ibuffer-mark-interactive): Support plain
3277 prefix and negative numeric prefix args (Bug#12795).
3278
32792012-11-17 Stephen Berman <stephen.berman@gmx.net>
3280
3281 * play/gamegrid.el (gamegrid-add-score-with-update-game-score-1):
3282 Don't signal an error with a score that is too low to add to the
3283 list of top scores. (Bug#12779)
3284
32852012-11-17 Chong Yidong <cyd@gnu.org>
3286
3287 * help-mode.el (help-xref-interned): End on point-min (Bug#12737).
3288
3289 * filecache.el (file-cache-add-file): Handle relative file name in
3290 the argument (Bug#12694).
3291
32922012-11-16 Jürgen Hötzel <juergen@archlinux.org> (tiny change)
3293
3294 * eshell/em-unix.el (eshell/mkdir): Handle "--parents" (bug#12897).
3295
32962012-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
3297
3298 * emacs-lisp/advice.el (ad-make-advised-definition): Improve last fix.
3299
3300 * emacs-lisp/cl-lib.el: Set more meaningful version number.
3301
33022012-11-16 Martin Rudalics <rudalics@gmx.at>
3303
3304 * window.el (enlarge-window, shrink-window): Don't mention return
3305 value in doc-string (Bug#12896).
3306 (window--display-buffer): Don't resize frames - it won't work
3307 with all window managers and defeat pop-up-frame-alist.
3308 (display-buffer-alist): In doc-string explain that CONDITION can
3309 be a function and which arguments are passed to it (Bug#12854).
3310 (display-buffer-assq-regexp): New argument ACTION. Handle lambda
3311 expressions (Bug#12854).
3312 (display-buffer): Pass ACTION argument to
3313 display-buffer-assq-regexp.
3314
33152012-11-16 Glenn Morris <rgm@gnu.org>
3316
3317 * window.el (fit-frame-to-buffer-bottom-margin)
3318 (fit-frame-to-buffer, fit-window-to-buffer): Doc fixes.
3319
3320 * faces.el (face-underline-p): Use face-attribute-specified-or.
3321
33222012-11-16 Juanma Barranquero <lekktu@gmail.com>
3323
3324 * emacs-lisp/cl-macs.el (cl-loop, cl-do, cl-do*): Doc fixes.
3325
33262012-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
3327
3328 * emacs-lisp/cl-macs.el (cl-flet, cl-flet*): Fix docstring (bug#12895).
3329
33302012-11-16 Glenn Morris <rgm@gnu.org>
3331
3332 * eshell/em-cmpl.el (eshell-pcomplete): New command. (Bug#12838)
3333 (eshell-cmpl-initialize): Bind eshell-pcomplete to TAB, C-i.
3334
3335 * faces.el (face-underline-p): Doc fix. Handle :underline being
3336 things other than `t' (a string, a list).
3337 (face-inverse-video-p): Doc fix.
3338 (set-face-underline): Rename it back from set-face-underline-p.
3339 Doc fix. Allow interactive input of values other than t.
3340 (read-face-attribute): Apply formatting to :underline,
3341 since like :box and :stipple it can take list values.
3342
3343 * term.el (ansi-term): Don't let C-x escape-char binding
3344 clobber the more standard C-c binding. (Bug#12842)
3345
3346 * subr.el (set-temporary-overlay-map): Doc fix.
3347
33482012-11-16 Martin Rudalics <rudalics@gmx.at>
3349
3350 * window.el (record-window-buffer)
3351 (display-buffer-record-window): When copying the markers to
3352 window-point preserve window-point-insertion-type. (Bug#12588)
3353
33542012-11-16 Glenn Morris <rgm@gnu.org>
3355
3356 * emacs-lisp/eieio-datadebug.el (eieio-debug-methodinvoke):
3357 * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error):
3358 Use new names for hooks rather than obsolete aliases.
3359
33602012-11-15 Daniel Colascione <dancol@dancol.org>
3361
3362 * term/w32-win.el (w32-handle-dropped-file): Use a "file://"
3363 prefix instead of "file:" so that when FILE-NAME begins with "//",
3364 as it does when the target file is on a network share, url-handler
3365 isn't confused.
3366
33672012-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
3368
3369 * emacs-lisp/advice.el (ad-definition-type): Make sure we don't use
3370 a preactivated advice from an old advice.el; they're not compatible!
3371
33722012-11-15 Katsumi Yamaoka <yamaoka@jpl.org>
3373
3374 * emacs-lisp/nadvice.el (advice--make-interactive-form):
3375 Fix string-spec case.
3376
3377 * emacs-lisp/advice.el (ad-make-advised-definition): Fix undefined case.
3378
33792012-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
3380
3381 * emacs-lisp/nadvice.el: Add buffer-local support to add-function.
3382 (advice--buffer-local-function-sample): New var.
3383 (advice--set-buffer-local, advice--buffer-local): New functions.
3384 (add-function, remove-function): Use them.
3385
33862012-11-15 Drew Adams <drew.adams@oracle.com>
3387
3388 * imenu.el (imenu--split-submenus): Use imenu--subalist-p (bug#12717).
3389
33902012-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
3391
3392 * emacs-lisp/cl-macs.el (cl--transform-lambda): Defend against
3393 potential binding of print-gensym to t, and prettify (back)quotes in
3394 case they appear in args's default values (bug#12884).
3395
33962012-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
3397
3398 * emacs-lisp/nadvice.el: Add around advice for interactive specs.
3399 (advice-eval-interactive-spec): New function.
3400 (advice--make-interactive-form): Support around advice (bug#12844).
3401
34022012-11-14 Dmitry Gutov <dgutov@yandex.ru>
3403
3404 * progmodes/ruby-mode.el (ruby-expr-beg): Make heredoc detection
3405 more strict. Add docstring.
3406 (ruby-expression-expansion-re): Extract from
3407 `ruby-match-expression-expansion'.
3408 (ruby-syntax-propertize-function): After everything else, search
3409 for expansions in string literals, mark their insides as
3410 whitespace syntax and save match data for font-lock.
3411 (ruby-font-lock-keywords): Use the 2nd group from expression
3412 expansion matches.
3413 (ruby-match-expression-expansion): Use the match data saved to the
3414 text property in ruby-syntax-propertize-function.
3415
34162012-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
3417
3418 * emacs-lisp/gv.el (setf): Fix debug spec for multiple assignments
3419 (bug#12879).
3420
34212012-11-13 Dmitry Gutov <dgutov@yandex.ru>
3422
3423 * progmodes/ruby-mode.el (ruby-move-to-block): Looks for a block
3424 start/end keyword a bit harder. Works with different values of N.
3425 Add more comments.
3426 (ruby-end-of-block): Update accordingly.
3427
34282012-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
3429
3430 * woman.el (woman-file-name): Don't mess with unread-command-events
3431 (bug#12861).
3432
3433 * emacs-lisp/advice.el: Layer on top of nadvice.el.
3434 Remove out of date self-require hack.
3435 (ad-do-advised-functions): Use simple `dolist'.
3436 (ad-advice-name, ad-advice-protected, ad-advice-enabled)
3437 (ad-advice-definition): Redefine as functions.
3438 (ad-advice-classes): Move before first use.
3439 (ad-make-origname, ad-set-orig-definition, ad-clear-orig-definition)
3440 (ad-make-mapped-call, ad-make-advised-docstring,ad-make-plain-docstring)
3441 (ad--defalias-fset): Remove functions.
3442 (ad-make-advicefunname, ad-clear-advicefunname-definition): New funs.
3443 (ad-get-orig-definition): Rewrite.
3444 (ad-make-advised-definition-docstring): Change base docstring.
3445 (ad-real-orig-definition): Rewrite.
3446 (ad-map-arglists): Change name of called function.
3447 (ad--make-advised-docstring): Redirect `function' from ad-Advice-...
3448 (ad-make-advised-definition): Simplify.
3449 (ad-assemble-advised-definition): Tweak for new calling context.
3450 (ad-activate-advised-definition): Setup ad-Advice-* i.s.o ad-Orig-*.
3451 (ad--defalias-fset): Rename from ad-handle-definition. Make it set the
3452 function and call ad-activate if needed.
3453 (ad-activate, ad-deactivate): Don't call ad-handle-definition any more.
3454 (ad-recover): Clear ad-Advice-* instead of ad-Orig-*.
3455 (ad-compile-function): Compile ad-Advice-*.
3456 (ad-activate-on-top-level, ad-with-auto-activation-disabled): Remove.
3457 (ad-start-advice, ad-stop-advice): Remove.
3458
34592012-11-13 Dmitry Gutov <dgutov@yandex.ru>
3460
3461 * progmodes/ruby-mode.el (ruby-add-log-current-method): Print the
3462 period before class method names, not after. Remove handling of
3463 one impossible case. Add comments.
3464
34652012-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
3466
3467 * emacs-lisp/advice.el: Remove support for freezing.
3468 (ad-make-freeze-docstring, ad-make-freeze-definition): Remove functions.
3469 (ad-make-single-advice-docstring, ad-defadvice-flags, defadvice):
3470 Remove support for `freeze'.
3471
3472 * emacs-lisp/cl.el (dolist, dotimes, declare): Use advice-add to
3473 override the default.
3474 * emacs-lisp/cl-macs.el (cl-dolist, cl-dotimes): Rewrite without using
3475 cl--dotimes/dolist.
3476 * subr.el (dolist, dotimes, declare): Redefine them normally, even when
3477 `cl' is loaded.
3478
3479 * emacs-lisp/nadvice.el (advice--normalize): New function, extracted
3480 from add-advice.
3481 (advice--strip-macro): New function.
3482 (advice--defalias-fset): Use them to handle macros.
3483 (advice-add): Use them.
3484 (advice-member-p): Correctly handle macros.
3485
34862012-11-13 Dmitry Gutov <dgutov@yandex.ru>
3487
3488 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
3489 Never font-lock the beginning of singleton class as heredoc.
3490
34912012-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
3492
3493 * emacs-lisp/gv.el (gv-define-simple-setter): One more fix (bug#12871).
3494
34952012-11-13 Wolfgang Jenkner <wjenkner@inode.at>
3496
3497 * ansi-color.el (ansi-color-apply-sequence): Implement SGR codes
3498 39 and 49 (bug#12792). Also, treat unimplemented parameters as 0,
3499 thereby restoring the behavior of revisions prior to 2012-08-15T03:33:55Z!monnier@iro.umontreal.ca.
3500
35012012-11-13 Fabián Ezequiel Gallina <fgallina@cuca>
3502
3503 Fix end-of-defun misbehavior.
3504 * progmodes/python.el (python-nav-beginning-of-defun): Rename from
3505 python-beginning-of-defun-function. Handle nested defuns
3506 correctly.
3507 (python-nav-end-of-defun): Rename from
3508 python-end-of-defun-function. Ensure forward movement.
3509 (python-info-current-defun): Reimplement to work as intended
3510 with new fixed python-nav-{end,beginning}-of-defun. Stop scanning
3511 parent defuns as soon as possible.
3512
35132012-11-13 Glenn Morris <rgm@gnu.org>
3514
3515 * progmodes/flymake.el (flymake-error-bitmap)
3516 (flymake-warning-bitmap, flymake-fringe-indicator-position): Doc fixes.
3517 (flymake-error-bitmap, flymake-warning-bitmap): Fix :types.
3518
35192012-11-13 Dmitry Gutov <dgutov@yandex.ru>
3520
3521 * progmodes/ruby-mode.el (ruby-move-to-block): When moving
3522 backward, always stop at indentation. Reverts the change from
3523 2012-08-12T22:06:56Z!monnier@iro.umontreal.ca (Bug#12851).
3524
35252012-11-13 Glenn Morris <rgm@gnu.org>
3526
3527 * ibuffer.el (ibuffer-mode-map, ibuffer-mode):
3528 Add ibuffer-filter-by-derived-mode.
3529
3530 * ibuffer.el (ibuffer-mode-map): Don't have two menu items with
3531 the same name shadowing each other.
3532
3533 * window.el (with-temp-buffer-window): Doc tweak.
3534
3535 * emacs-lisp/debug.el (debugger-bury-or-kill): Doc tweak.
3536
3537 * help.el (temp-buffer-max-height):
3538 * window.el (fit-frame-to-buffer, fit-frame-to-buffer-bottom-margin):
3539 * emacs-lisp/debug.el (debugger-bury-or-kill): Fix :version.
3540
35412012-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
3542
3543 * emacs-lisp/nadvice.el: New package.
3544 * subr.el (special-form-p): New function.
3545 * emacs-lisp/elp.el: Use lexical-binding and advice-add.
3546 (elp-all-instrumented-list): Remove var.
3547 (elp-not-profilable): Remove elp-wrapper.
3548 (elp-profilable-p): Use autoloadp and special-form-p.
3549 (elp--advice-name): New const.
3550 (elp-instrument-function): Use advice-add.
3551 (elp--instrumented-p): New predicate.
3552 (elp-restore-function): Use advice-remove.
3553 (elp-restore-all, elp-reset-all): Use mapatoms.
3554 (elp-set-master): Use elp--instrumented-p.
3555 (elp--make-wrapper): Rename from elp-wrapper, return a function
3556 suitable for advice-add. Use cl-inf.
3557 (elp-results): Use mapatoms+elp--instrumented-p.
3558 * emacs-lisp/debug.el: Use lexical-binding and advice-add.
3559 (debug-function-list): Remove var.
3560 (debug): Rename arg, and then let-bind it explicitly inside.
3561 (debugger-setup-buffer): Rename arg.
3562 (debugger-setup-buffer): Adjust counts to new debug-on-entry setup.
3563 (debugger-frame-number): Adjust to new debug-on-entry setup.
3564 (debug--implement-debug-on-entry): Rename from
3565 implement-debug-on-entry, add argument.
3566 (debugger-special-form-p): Remove, use special-form-p instead.
3567 (debug-on-entry): Use advice-add.
3568 (debug--function-list): New function.
3569 (cancel-debug-on-entry): Use it, along with advice-remove.
3570 (debug-arglist, debug-convert-byte-code, debug-on-entry-1): Remove.
3571 (debugger-list-functions): Use debug--function-list instead of
3572 debug-function-list.
3573 * emacs-lisp/advice.el (ad-save-real-definition): Remove, unused.
3574 (ad-special-form-p): Remove, use special-form-p instead.
3575 (ad-set-advice-info): Use add-function and remove-function.
3576 (ad--defalias-fset): Adjust accordingly.
3577
35782012-11-10 Glenn Morris <rgm@gnu.org>
3579
3580 * mail/emacsbug.el (report-emacs-bug-tracker-url)
3581 (report-emacs-bug-bug-alist, report-emacs-bug-choice-widget)
3582 (report-emacs-bug-create-existing-bugs-buffer)
3583 (report-emacs-bug-parse-query-results)
3584 (report-emacs-bug-query-existing-bugs): Remove. (Bug#7449)
3585
3586 * term.el (term-default-fg-color, term-default-bg-color):
3587 Make obsolete, rather than just saying "deprecated" in the doc.
3588
3589 * term.el (term): Rename from `term-face'.
3590 (term-current-face, ansi-term-color-vector)
3591 (term-default-fg-color, term-default-bg-color, term-ansi-reset):
3592 Update all users.
3593
35942012-11-10 Jan Djärv <jan.h.d@swipnet.se>
3595
3596 * server.el (server-create-window-system-frame): Handle Nextstep
3597 specially (Bug#12780).
3598
35992012-11-10 Glenn Morris <rgm@gnu.org>
3600
3601 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs):
3602 Unautoload, and make obsolete. (Bug#7449)
3603
36042012-11-10 Chong Yidong <cyd@gnu.org>
3605
3606 * vc/diff-mode.el (diff-delete-trailing-whitespace): Rewrite, and
3607 rename from diff-remove-trailing-whitespace (Bug#12831).
3608
36092012-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
3610
3611 * emacs-lisp/advice.el: Require `cl-lib' at run-time to fix
3612 miscompilation of trace.el.
3613
36142012-11-10 Glenn Morris <rgm@gnu.org>
3615
3616 * vc/diff-mode.el (diff-remove-trailing-whitespace): Doc fix.
3617
36182012-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
3619
3620 * emacs-lisp/gv.el (gv-define-simple-setter): Fix last change
3621 (bug#12812).
3622
36232012-11-10 Chong Yidong <cyd@gnu.org>
3624
3625 * minibuf-eldef.el (minibuffer-eldef-shorten-default): Convert to
3626 a defcustom with an appropriate :set function.
3627 (minibuffer-default--in-prompt-regexps): New function.
3628
36292012-11-10 Glenn Morris <rgm@gnu.org>
3630
3631 * emacs-lisp/cl.el (define-setf-expander, defsetf)
3632 (define-modify-macro): Doc fixes.
3633
3634 * emacs-lisp/gv.el (gv-letplace): Fix doc typo.
3635 (gv-define-simple-setter): Update doc of `fix-return'.
3636
36372012-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
3638
3639 * emacs-lisp/gv.el (gv-define-simple-setter): Don't evaluate `val'
3640 twice when `fix-return' is set (bug#12813).
3641
3642 * emacs-lisp/cl.el (defsetf): Pass the third arg to
3643 gv-define-simple-setter (bug#12812).
3644
3645 * woman.el (woman-decode-region): Disable adaptive-fill when rendering
3646 (bug#12756).
3647
36482012-11-10 Glenn Morris <rgm@gnu.org>
3649
3650 * emacs-lisp/gv.el (gv-define-setter): Fix doc typo.
3651
3652 * emacs-lisp/cl-extra.el (cl-prettyexpand):
3653 * emacs-lisp/cl-lib.el (cl-proclaim, cl-declaim):
3654 * emacs-lisp/cl-macs.el (cl-destructuring-bind, cl-locally)
3655 (cl-the, cl-compiler-macroexpand): Add basic doc strings.
3656
3657 * emacs-lisp/cl-extra.el (cl-maplist, cl-mapcan): Doc fix.
3658
36592012-11-10 Leo Liu <sdl.web@gmail.com>
3660
3661 * ido.el (ido-set-matches-1): Improve flex matching performance by
3662 removing backtracking in the regexp (suggested by Stefan). (Bug#12796)
3663
36642012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
3665
3666 * emacs-lisp/advice.el (ad-set-advice-info): Set defalias-fset-function.
3667 (ad--defalias-fset): New function.
3668 (ad-safe-fset): Remove.
3669 (ad-make-freeze-definition): Use cl-letf*.
3670
36712012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
3672
3673 * subr.el (dolist): Don't bind VAR in RESULT.
3674
3675 * emacs-lisp/advice.el: Miscellaneous cleanup. Use lexical-binding.
3676 (fset, documentation): Don't save real def since we don't advise.
3677 (ad-do-advised-functions): Remove problematic `result-form'.
3678 (ad-safe-fset): `ad-real-fset' => `fset'.
3679 (ad-read-advised-function): Don't assume that ad-do-advised-functions
3680 uses CL's dolist internally.
3681 (ad-arglist): Remove unused arg `name'.
3682 (ad-docstring, ad-make-advised-docstring):
3683 `ad-real-documentation' => `documentation'.
3684 (warning-suppress-types): Declare.
3685 (ad-set-arguments): Simple CSE.
3686 (ad-recover-normality): Sanity check.
3687
3688 * emacs-lisp/bytecomp.el (byte-compile-out-toplevel): Don't turn
3689 (funcall '(lambda ..) ..) into ((lambda ..) ..).
3690
36912012-11-09 Vincent Belaïche <vincentb1@users.sourceforge.net>
3692
3693 * ses.el: symbol to coordinate mapping is made by symbol property
3694 `ses-cell'. This means that the same mapping is done for all SES
3695 sheets. That is good enough for cells with standard A1 names, but
3696 not for named cell. So a hash map is added for the latter.
3697 (defconst ses-localvars): Add local variable ses--named-cell-hashmap
3698 (ses-sym-rowcol): Use hashmap for named cell.
3699 (ses-is-cell-sym-p): New defun.
3700 (ses-decode-cell-symbol): New defun.
3701 (ses-create-cell-variable): Add cell to hashmap when name is not
3702 A1-like.
3703 (ses-rename-cell): Check that cell new name is not already in
3704 spreadsheet with the use of ses-is-cell-sym-p
3705 (ses-rename-cell): Use hash map for named cells, but accept also
3706 renaming back to A1-like.
3707
37082012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
3709
3710 * emacs-lisp/advice.el: Use new dynamic docstrings.
3711 (ad-make-advised-definition-docstring, ad-advised-definition-p):
3712 Use dynamic-docstring-function instead of ad-advice-info.
3713 (ad--make-advised-docstring): New function extracted from
3714 ad-make-advised-docstring.
3715 (ad-make-advised-docstring): Use it.
3716 * progmodes/sql.el (sql--make-help-docstring): New function, extracted
3717 from sql-help.
3718 (sql-help): Use it with dynamic-docstring-function.
3719
3720 * env.el (env--substitute-vars-regexp): Don't use rx (for bootstrap).
3721
37222012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
3723
3724 * files.el (hack-one-local-variable--obsolete): New function.
3725 (hack-one-local-variable): Use it for obsolete settings.
3726
3727 * subr.el (locate-user-emacs-file): If both old and new name exist, use
3728 the new name.
3729
3730 * progmodes/js.el (js--filling-paragraph): New var.
3731 (c-forward-sws, c-backward-sws, c-beginning-of-macro): Advise.
3732 (js-c-fill-paragraph): Prefer advice to cl-letf so the rebinding is
3733 less sneaky.
3734
37352012-11-08 Julien Danjou <julien@danjou.info>
3736
3737 * progmodes/ruby-mode.el (auto-mode-alist): Add Rakefile in
3738 `auto-mode-alist' (Bug#12835).
3739
37402012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
3741
3742 * progmodes/perl-mode.el (perl-prettify-symbols): New defcustom.
3743 (perl--prettify-symbols-alist): New const.
3744 (perl--font-lock-compose-symbol, perl--font-lock-symbols-keywords):
3745 New functions.
3746 (perl-font-lock-keywords-2): Use them.
3747 (perl-electric-noindent-p): New function.
3748 (perl-mode): Use it to set up electric-indent-mode.
3749 (perl-electric-terminator, perl-indent-command): Mark obsolete.
3750 (perl-mode-map): Remove bindings for them.
3751 (perl-imenu-generic-expression, perl-outline-level):
3752 Match functions&packages in column>0.
3753
3754 * env.el (env--substitute-vars-regexp): New const.
3755 (substitute-env-vars): Use it. Add `only-defined' arg.
3756 * net/tramp.el (tramp-replace-environment-variables): Use it.
3757
3758 * emacs-lisp/bytecomp.el (byte-compile-initial-macro-environment):
3759 Byte-compile *before* eval in eval-and-compile.
3760 (byte-compile-log-warning): Remove redundant inhibit-read-only.
3761 (byte-compile-file-form-autoload): Don't hide actual definition.
3762 (byte-compile-maybe-guarded): Accept `functionp' as well.
3763
3764 * emacs-lisp/gv.el (gv-ref, gv-deref): New function and macro.
3765
37662012-11-07 Michael Albinus <michael.albinus@gmx.de>
3767
3768 * notifications.el (notifications-get-server-information-method):
3769 New defconst.
3770 (notifications-get-capabilities): Fix docstring.
3771 (notifications-get-server-information): New defun.
3772
37732012-11-06 Agustín Martín Domingo <agustin.martin@hispalinux.es>
3774
3775 * textmodes/ispell.el (ispell-region): Standard re-indent for better
3776 readability.
3777
3778 * textmodes/ispell.el: Experimental support for support debugging.
3779 (ispell-create-debug-buffer): Create a `ispell-debug-buffer' debug
3780 buffer for ispell.
3781 (ispell-print-if-debug): New function to print stuff to
3782 `ispell-debug-buffer' if debugging is enabled.
3783 (ispell-region, ispell-process-line): Use `ispell-print-if-debug' to
3784 show some debugging info.
3785 (ispell-buffer-with-debug): New function that creates a debugging
3786 buffer and calls `ispell-buffer' with debugging enabled.
3787
3788 * textmodes/ispell.el (ispell-region): Do not prefix sent string by
3789 comment in autoconf mode. (Bug#12768)
3790
37912012-11-06 Dmitry Antipov <dmantipov@yandex.ru>
3792
3793 * emacs-lisp/byte-opt.el (toplevel): Add compare-window-configurations,
3794 frame-first-window, frame-root-window, frame-selected-window,
3795 minibuffer-selected-window, minibuffer-window,
3796 window-absolute-pixel-edges, window-at, window-body-height,
3797 window-body-width, window-display-table, window-combination-limit,
3798 window-frame, window-fringes, window-inside-absolute-pixel-edges,
3799 window-inside-edges, window-inside-pixel-edges, window-left-child,
3800 window-left-column, window-margins, window-next-buffers,
3801 window-next-sibling, window-new-normal, window-new-total,
3802 window-normal-size, window-parameter, window-parameters, window-parent,
3803 window-pixel-edges, window-point, window-prev-buffers,
3804 window-prev-sibling, window-redisplay-end-trigger, window-scroll-bars,
3805 window-start, window-text-height, window-top-child, window-top-line,
3806 window-total-height, window-total-width and window-use-time to the list
3807 of functions without side-effects.
3808 (toplevel): Add window-valid-p to the list of error-free functions
3809 without side-effects.
3810
38112012-11-05 Agustín Martín Domingo <agustin.martin@hispalinux.es>
3812
3813 * textmodes/ispell.el (ispell-program-name):
3814 Update spellchecker parameters when customized.
3815
38162012-11-04 Glenn Morris <rgm@gnu.org>
3817
3818 * vc/vc-svn.el (vc-svn-state-heuristic): Avoid calling svn. (Bug#7850)
3819
38202012-11-04 Chong Yidong <cyd@gnu.org>
3821
3822 * bookmark.el (bookmark-bmenu-switch-other-window): Avoid binding
3823 same-window-* variables.
3824
38252012-11-04 Juri Linkov <juri@jurta.org>
3826
3827 * isearch.el (isearch-help-for-help, isearch-describe-bindings)
3828 (isearch-describe-key, isearch-describe-mode): Use a display
3829 action instead of binding same-window-* variables (Bug#10040).
3830
38312012-11-03 Glenn Morris <rgm@gnu.org>
3832
3833 * emacs-lisp/cl-macs.el (cl-parse-loop-clause):
3834 Rename handler properties back from cl-- to cl-. (Bug#12788)
3835
3836 * emacs-lisp/cl-macs.el (cl-do-all-symbols): Add doc string.
3837
38382012-11-03 Eli Zaretskii <eliz@gnu.org>
3839
3840 * term/pc-win.el: Don't load term/internal from here.
3841
3842 * loadup.el: Load term/internal from here.
3843
38442012-11-03 Fabián Ezequiel Gallina <fgallina@cuca>
3845
3846 * progmodes/python.el (inferior-python-mode): Fix hang in
3847 jit-lock (Bug#12645).
3848
38492012-11-03 Martin Rudalics <rudalics@gmx.at>
3850
3851 * window.el (switch-to-visible-buffer)
3852 (switch-to-buffer-preserve-window-point): Fix doc-strings.
3853
38542012-11-03 Glenn Morris <rgm@gnu.org>
3855
3856 * emacs-lisp/cl-lib.el (cl--random-time):
3857 Rename from cl-random-time. (Bug#12773)
3858 (cl--gensym-counter, cl--random-state): Update callers.
3859 * emacs-lisp/cl-extra.el (cl-make-random-state): Update callers.
3860
38612012-11-03 Chong Yidong <cyd@gnu.org>
3862
3863 * cus-start.el: Make cursor-type customizable (Bug#11633).
3864
38652012-11-02 Glenn Morris <rgm@gnu.org>
3866
3867 * filecache.el: No need to load find-lisp when compiling.
3868 (find-lisp-find-files): Autoload it.
3869 (file-cache-add-directory-recursively): Don't require find-lisp.
3870
3871 * image.el (image-type-from-file-name): Trivial simplification.
3872
3873 * emacs-lisp/bytecomp.el (byte-compile-eval):
3874 Decouple "noruntime" and "cl-functions" warnings.
3875
38762012-11-01 Stephen Berman <stephen.berman@gmx.net>
3877
3878 * play/gomoku.el (gomoku-display-statistics): Update mode line
3879 only if in Gomoku buffer; don't capitalize "won" (Bug#12771).
3880
38812012-10-31 Martin Rudalics <rudalics@gmx.at>
3882
3883 * window.el (quit-restore-window): If the window has been
3884 created on an existing frame and ended up as the sole window on
3885 that frame, do not delete it (Bug#12764).
3886
38872012-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
3888
3889 * progmodes/sh-script.el (sh--inside-noncommand-expression):
3890 Rename from sh--inside-arithmetic-expression, handle more cases
3891 (bug#11263).
3892
3893 * progmodes/sh-script.el (sh--inside-arithmetic-expression): New func.
3894 (sh-font-lock-open-heredoc): Use it (bug#12770).
3895
38962012-10-30 Glenn Morris <rgm@gnu.org>
3897
3898 * emacs-lisp/cl-extra.el (cl-mapc): Add autoload cookie. Doc fix.
3899
3900 * emacs-lisp/cl.el (letf): Doc fix. (Bug#12760)
3901
39022012-10-29 Chong Yidong <cyd@gnu.org>
3903
3904 * isearch.el (isearch-other-meta-char): Ensure that a reprocessed
3905 function key is stored in a keyboard macro (Bug#4894).
3906
3907 * thingatpt.el (number-at-point): Apply a thing-at-point property.
3908
39092012-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
3910
3911 * vc/diff-mode.el (diff-context->unified): Don't get confused by "hunk
3912 header comments".
3913 (diff-unified->context, diff-context->unified)
3914 (diff-reverse-direction, diff-fixup-modifs): Use `use-region-p'.
3915
3916 * emacs-lisp/cl.el (letf): Add missing indent rules (bug#12759).
3917
3918 * files.el (find-alternate-file): Only ask one question (bug#12487).
3919
39202012-10-29 Chong Yidong <cyd@gnu.org>
3921
3922 * vc/vc-hooks.el (vc-file-clearprops): Kill vc-parent-buffer.
3923 Suggested by Dan Nicolaescu (Bug#6326).
3924
3925 * info.el (Info-complete-menu-item): Avoid duplicates (Bug#12705).
3926
3927 * startup.el (fancy-about-screen): Don't message (Bug#12680).
3928
3929 * thingatpt.el (thing-at-point): Doc fix (Bug#12691).
3930
3931 * imenu.el (imenu): Inhibit push-mark message (Bug#12726).
3932
3933 * face-remap.el (face-remap-add-relative): Handle the case where a
3934 face-remapping-alist entry is a cons cell (Bug#12762).
3935
39362012-10-29 Kevin Ryde <user42@zip.com.au>
3937
3938 * woman.el (woman-parse-numeric-value): Handle picas correctly
3939 (Bug#12639).
3940
39412012-10-29 Glenn Morris <rgm@gnu.org>
3942
3943 * emacs-lisp/cl.el (defsetf): Doc fix.
3944
39452012-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
3946
3947 * progmodes/sh-script.el (sh-font-lock-paren): Also put punctuation
3948 syntax to the matching opener, if any (bug#12547).
3949 (sh-smie-sh-forward-token, sh-smie-sh-backward-token): Recognize this
3950 matching open as a "case-(".
3951 (sh-smie-rc-grammar): Add a corresponding rule for it.
3952
39532012-10-28 Daniel Hackney <dan@haxney.org>
3954
3955 * emacs-lisp/package.el (package-generate-autoloads): Kill buffer
3956 "PKGNAME-autoloads.el" in case we created it.
3957
39582012-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
3959
3960 * minibuffer.el (completion--sifn-requote): Rewrite to handle things
3961 like Tramp's "/foo:~bar//baz" -> "/scpc:foo:/baz" mapping (bug#11714).
3962 (completion--twq-all): Disable too-strict assertions.
3963
3964 * tmm.el (tmm-prompt): Use map-keymap (bug#12744).
3965
39662012-10-27 Eli Zaretskii <eliz@gnu.org>
3967
3968 * profiler.el (profiler-report-make-entry-part): Fix help-echo
3969 text to match the real keybindings.
3970
39712012-10-27 Juri Linkov <juri@jurta.org>
3972
3973 * wdired.el (wdired-keep-marker-rename): New defcustom.
3974 (wdired-do-renames): Use it instead of `dired-keep-marker-rename'.
3975 (Bug#11795)
3976
3977 * dired.el (dired-keep-marker-rename): Add reference to
3978 `wdired-keep-marker-rename' in the docstring.
3979 Add default character value ?R to display initially in
3980 Customization UI instead of ?@.
3981
39822012-10-27 Martin Rudalics <rudalics@gmx.at>
3983
3984 * window.el (display-buffer): In doc-string describe
3985 window-height and window-width alist entries.
3986
3987 * time.el (display-time-world): Restore fit-window-to-buffer
3988 behavior.
3989
39902012-10-27 Chong Yidong <cyd@gnu.org>
3991
3992 * subr.el (insert-buffer-substring-as-yank): Doc fix.
3993
39942012-10-26 Jambunathan K <kjambunathan@gmail.com>
3995
3996 * minibuffer.el (completion-category-overrides): New completion
3997 category `bookmark' (bug#11131).
3998
39992012-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
4000
4001 * emacs-lisp/advice.el (ad-assemble-advised-definition):
4002 Silence bogus compiler warnings for ad-do-it.
4003
4004 * bookmark.el (bookmark-completing-read): Set the completion category
4005 to `bookmark' (bug#11131).
4006
40072012-10-26 Bastien <bzg@altern.org>
4008 Stefan Monnier <monnier@iro.umontreal.ca>
4009
4010 * face-remap.el: Use lexical-binding.
4011 (text-scale-adjust): Improve docstring. Use itself for the temporary
4012 overlay-map bindings, so as to repeat the "Use..." message each time.
4013
40142012-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
4015
4016 * emacs-lisp/macroexp.el (macroexp--expand-all):
4017 Obey byte-compile-warning-enabled-p (bug#12486).
4018
4019 * vc/diff-mode.el (diff-end-of-hunk): Also skip potential "no LF at eol".
4020 (diff-refine-hunk): Similarly, handle the "no LF at eol" (bug#12584).
4021
40222012-10-26 Martin Rudalics <rudalics@gmx.at>
4023
4024 * mouse.el (mouse-drag-line): Move last form into preceding when
4025 clause (Bug#12731).
4026
4027 * help.el (resize-temp-buffer-window): Fix doc-string.
4028
40292012-10-25 David Engster <deng@randomsample.de>
4030
4031 * emacs-lisp/eieio.el (eieio-update-lisp-imenu-expression):
4032 Remove. This feature is already integrated in imenu.
4033
4034 * emacs-lisp/eieio-opt.el: Remove require for `button' since it is
4035 always loaded. Require `speedbar' unconditionally.
4036
40372012-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
4038
4039 * dired.el (dired-get-marked-files): Allow ! on . and .. (bug#12725).
4040
4041 * minibuffer.el (minibuffer-force-complete): Fix thinko.
4042
4043 * net/ldap.el (ldap-search-internal): The official ldif format starts
4044 with a "version: 1" header (bug#12724).
4045
4046 * emacs-lisp/package.el (package-installed-p): Warn if not ready
4047 (bug#12721).
4048
40492012-10-25 Glenn Morris <rgm@gnu.org>
4050
4051 * emacs-lisp/cl-macs.el (cl-progv): Doc fix.
4052
40532012-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
4054
4055 * minibuffer.el (minibuffer-force-complete): Use one more marker
4056 for the temporary-overlay-map command (bug#12619).
4057
40582012-10-24 Chong Yidong <cyd@gnu.org>
4059
4060 * time.el (display-time-world-mode): Derive from special-mode.
4061 (display-time-world): Use display-buffer (Bug#12708).
4062 (display-time-world-mode-map): Variable deleted.
4063 (display-time-world-display): Wrap the final delete-char inside
4064 inhibit-read-only.
4065
40662012-10-24 Chong Yidong <cyd@gnu.org>
4067
4068 * dired.el (dired-mark, dired-unmark, dired-flag-file-deletion):
4069 Doc fix.
4070
4071 * emacs-lisp/easymenu.el (easy-menu-define): Doc fix (Bug#12628).
4072
40732012-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
4074
4075 * minibuffer.el (completion--all-sorted-completions-location): New var.
4076 (completion--cache-all-sorted-completions)
4077 (completion--flush-all-sorted-completions): Use it.
4078 (completion-in-region, completion-in-region--postch)
4079 (completion-at-point, completion-help-at-point): Use markers in
4080 completion-in-region--data (bug#12619).
4081
40822012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
4083
4084 * progmodes/compile.el (compilation-start): Try to handle common
4085 quoting of `cd' argument (bug#12640).
4086
4087 * vc/diff-mode.el (diff-hunk): `save-excursion' while refining
4088 (bug#12671).
4089
40902012-10-23 Glenn Morris <rgm@gnu.org>
4091
4092 * progmodes/gud.el (gud-menu-map):
4093 Check gdb-active-process is bound. (Bug#12358)
4094
40952012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
4096
4097 * repeat.el (repeat): Set real-this-command (bug#12232).
4098
4099 * htmlfontify.el (hfy-post-html-hook):
4100 * filesets.el (filesets-cache-fill-content-hook):
4101 * arc-mode.el (archive-extract-hook):
4102 * progmodes/cc-mode.el (c-prepare-bug-report-hook):
4103 * net/rcirc.el (rcirc-sentinel-functions)
4104 (rcirc-receive-message-functions, rcirc-activity-functions)
4105 (rcirc-print-functions):
4106 * net/dbus.el (dbus-event-error-functions):
4107 * emacs-lisp/eieio.el (eieio-pre-method-execution-functions):
4108 * emacs-lisp/checkdoc.el (checkdoc-style-functions)
4109 (checkdoc-comment-style-functions): Don't use "-hooks" suffix.
4110 * term/sun.el (sun-raw-prefix-hooks):
4111 * mail/sendmail.el (mail-yank-hooks): Use make-obsolete-variable.
4112
41132012-10-23 Michael Albinus <michael.albinus@gmx.de>
4114
4115 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
4116 Set `tramp-chunksize' to 1. This improves the performance.
4117 (tramp-smb-wait-for-output): Add timeout to
4118 `tramp-accept-process-output' calls.
4119
41202012-10-23 Chong Yidong <cyd@gnu.org>
4121
4122 * faces.el (font-list-limit): Define as an obsolete variable.
4123
4124 * startup.el (command-line):
4125 * cus-start.el: Don't refer to font-list-limit.
4126
4127 * newcomment.el (comment-normalize-vars): Doc fix (Bug#12583).
4128
41292012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
4130
4131 * subr.el (internal-temp-output-buffer-show): Rename from
4132 temp-output-buffer-show, since previously compiled files expect this name.
4133
41342012-10-23 Glenn Morris <rgm@gnu.org>
4135
4136 * image.el (image-type-from-file-name): If multiple types match,
4137 return the first one that is supported. (Bug#9045)
4138
41392012-10-22 Glenn Morris <rgm@gnu.org>
4140
4141 * image.el (imagemagick-enabled-types): Doc fix.
4142
41432012-10-22 Takafumi Arakaki <aka.tkf@gmail.com> (tiny change)
4144
4145 * progmodes/which-func.el (which-func-current): The hash-table may have
4146 an explicit nil (bug#12338).
4147
41482012-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
4149
4150 * electric.el (electric-pair-delete-selection-self-insert-function):
4151 Rename to electric-pair-will-use-region, return a boolean.
4152 (electric-pair-mode): Adjust accordingly. Don't require delsel.
4153
4154 * delsel.el (delete-selection-helper): Use a function instead of a hook.
4155 (delete-selection-pre-hook): Use use-region-p.
4156 (delete-selection-self-insert-function): Remove.
4157 (self-insert-command): Obey self-insert-uses-region-functions.
4158 (self-insert-iso): Revert to previous setting, since we don't actually
4159 know what that command does.
4160 (delete-selection-self-insert-hooks): Remove.
4161
41622012-10-22 Simon Law <sfllaw@sfllaw.ca> (tiny change)
4163
4164 * delsel.el (delete-selection-helper): New function, extracted from
4165 delete-selection-pre-hook.
4166 (delete-selection-pre-hook): Use it.
4167 (delete-selection-self-insert-function): New function.
4168 (delete-selection-self-insert-hooks): New hook.
4169 (self-insert-command, self-insert-iso): Use it.
4170 * electric.el (electric-pair-syntax): New function, extracted from
4171 electric-pair-post-self-insert-function.
4172 (electric-pair-post-self-insert-function): Use it.
4173 (electric-pair-delete-selection-self-insert-function): New function.
4174 (electric-pair-mode): Require delsel and setup
4175 delete-selection-self-insert-hooks (bug#11520).
4176
41772012-10-20 Chong Yidong <cyd@gnu.org>
4178
4179 * vc/vc.el (vc-diff-internal): Set up Diff mode even if there are
4180 no changes to show (Bug#12586).
4181
4182 * eshell/esh-cmd.el (eshell-rewrite-for-command): Copy the body
4183 list explicitly (Bug#12571).
4184
41852012-10-20 Arne Jørgensen <arne@arnested.dk>
4186
4187 * progmodes/flymake.el (flymake-create-temp-inplace):
4188 Use file-truename.
4189
41902012-10-20 Eli Zaretskii <eliz@gnu.org>
4191
4192 * loadup.el: Update comment about uncompiled Lisp files. (Bug#12395)
4193
41942012-10-20 Jay Belanger <jay.p.belanger@gmail.com>
4195
4196 * calc/calc-units.el (math-extract-units): Properly extract powers
4197 of units.
4198
41992012-10-20 Daniel Colascione <dancol@dancol.org>
4200
4201 * frame.el (make-frame): Set x-display-name as we used to in order
4202 to unbreak creating an X11 frame from an Emacs daemon started
4203 without a display.
4204
42052012-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
4206
4207 * minibuffer.el (minibuffer-force-complete): Make the next completion use
4208 the same completion-field (bug#12221).
4209
42102012-10-19 Martin Rudalics <rudalics@gmx.at>
4211
4212 * emacs-lisp/debug.el (debug): Record height of debugger window
4213 also when debugger will be back (Bug#8789).
4214
42152012-10-18 Chong Yidong <cyd@gnu.org>
4216
4217 * progmodes/gdb-mi.el (gdb-display-buffer-other-frame-action):
4218 Convert to defcustom.
4219 (gdb-get-source-file): Don't bind pop-up-windows.
4220
4221 * progmodes/gud.el (gud-display-line): Don't specially re-use
4222 other frames for the gdb-mi case (Bug#12648).
4223
42242012-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
4225
4226 * emacs-lisp/advice.el: Clean up commentary a bit.
4227 (ad-do-advised-functions, ad-with-originals): Use `declare'.
4228 (byte-code-function-p): Never redefine.
4229
4230 * emacs-lisp/gv.el (cond): Same fix as before for `if'.
4231
42322012-10-18 Glenn Morris <rgm@gnu.org>
4233
4234 * dired.el (dired-sort-toggle): Some ls implementations only allow
4235 a single option string. (Bug#12666)
4236
4237 * minibuffer.el (completion-cycle-threshold): Doc fix.
4238
42392012-10-17 Kenichi Handa <handa@gnu.org>
4240
4241 * international/mule.el (set-keyboard-coding-system):
4242 Recover input meta mode when the new coding system doesn not use 8-bit.
4243 Supply TERMINAL arg to set-input-meta-mode.
4244
42452012-10-17 Michael Heerdegen <michael_heerdegen@web.de>
4246
4247 * wdired.el (wdired-old-marks): New variable.
4248 (wdired-change-to-wdired-mode): Locally set wdired-old-marks.
4249 (wdired-do-renames): Move point with renamed file and don't lose
4250 mark status (Bug#11795).
4251
42522012-10-16 Juri Linkov <juri@jurta.org>
4253
4254 * replace.el (query-replace-help): Mention multi-buffer replacement
4255 keys in the Help message. (Bug#12655)
4256
42572012-10-15 Chong Yidong <cyd@gnu.org>
4258
4259 * emacs-lisp/byte-run.el (defsubst): Doc fix.
4260
42612012-10-14 Eli Zaretskii <eliz@gnu.org>
4262
4263 * window.el (display-buffer): Doc fix.
4264
4265 * progmodes/compile.el (compilation-error-regexp-alist-alist):
4266 Adjust the msft regexp to the output of Studio 2010, and move msft
4267 before edg-1. See the discussion on emacs-devel,
4268 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00579.html,
4269 for the details.
4270
42712012-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
4272
4273 * emacs-lisp/eieio.el (eieio-oset-default, eieio-oset, oset-default)
4274 (oset): Move uses of object-class-fast macro after its definition.
4275
4276 * emacs-lisp/gv.el (if): Don't use closures in non-lexical-binding code.
4277
42782012-10-13 Chong Yidong <cyd@gnu.org>
4279
4280 * textmodes/ispell.el (ispell-pdict-save): If flyspell-mode is
4281 enabled, re-enable it (Bug#11963).
4282
42832012-10-13 Martin Rudalics <rudalics@gmx.at>
4284
4285 * emacs-lisp/debug.el (debug): When debugger-will-be-back is
4286 non-nil, restore window configuration (Bug#12623).
4287
42882012-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
4289
4290 * help-fns.el (describe-variable, describe-function-1):
4291 * help-mode.el (help-make-xrefs): Remove error handler, made unneeded.
4292
4293 * emacs-lisp/eieio.el (lisp-imenu-generic-expression): Fix typo.
4294
42952012-10-12 Glenn Morris <rgm@gnu.org>
4296
4297 * mail/rmailsum.el (rmail-header-summary):
4298 Fix 2010-11-26 test for multiline Subject: field. (Bug#12625)
4299
43002012-10-12 Fabián Ezequiel Gallina <fgallina@cuca>
4301
4302 * progmodes/python.el (python-mode-map):
4303 Replace subtitute-key-definition with proper command remapping.
4304 (python-nav--up-list): Fix behavior for blocks on the same level.
4305
43062012-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
4307
4308 * help-fns.el (describe-function-1): Handle autoloads w/o docstrings.
4309
4310 * emacs-lisp/bytecomp.el (byte-compile-eval): Adjust to long-ago
4311 changes to the format of load-history.
4312
4313 * international/mule-cmds.el (read-char-by-name): Move let-binding of
4314 completion-ignore-case in case that var is buffer-local (bug#12615).
4315
43162012-10-11 Kenichi Handa <handa@gnu.org>
4317
4318 * international/eucjp-ms.el: Re-generated.
4319
43202012-10-10 Kenichi Handa <handa@gnu.org>
4321
4322 * select.el (xselect--encode-string): If a coding is specified for
4323 selection, and that is compatible with COMPOUND_TEXT, use it.
4324
43252012-10-10 Martin Rudalics <rudalics@gmx.at>
4326
4327 * window.el (switch-to-buffer-preserve-window-point): New option.
4328 (switch-to-buffer):
4329 Obey `switch-to-buffer-preserve-window-point' (Bug#4041).
4330
43312012-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
4332
4333 * newcomment.el (comment-start-skip, comment-end-skip, comment-end):
4334 Don't document nil as a useful value (bug#12583).
4335
43362012-10-09 Michael Albinus <michael.albinus@gmx.de>
4337
4338 * net/tramp.el (tramp-debug-message):
4339 Remove "tramp-with-progress-reporter" from regexp of ignored functions.
4340 (with-tramp-progress-reporter): Rename from
4341 `tramp-with-progress-reporter'.
4342 (with-tramp-file-property, with-tramp-connection-property):
4343 Move from tramp-cache.el, rename from `with-file-property' and
4344 `with-connection-property', respectively.
4345
4346 * net/tramp-cache.el: Remove `with-file-property' and
4347 `with-connection-property'.
4348
4349 * net/tramp.el:
4350 * net/tramp-gvfs.el:
4351 * net/tramp-sh.el:
4352 * net/tramp-smb.el: Adapt callees.
4353
4354 * net/trampver.el: Update release number.
4355
43562012-10-09 Glenn Morris <rgm@gnu.org>
4357
4358 * w32-fns.el (set-message-beep):
4359 * term/w32-win.el (set-message-beep): Update declarations.
4360
43612012-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
4362
4363 * bindings.el (mode-line-toggle-read-only, mode-line-toggle-modified)
4364 (mode-line-widen, mode-line-input-method-map)
4365 (mode-line-coding-system-map, mode-line-remote)
4366 (mode-line-unbury-buffer, mode-line-bury-buffer)
4367 (mode-line-next-buffer, mode-line-previous-buffer):
4368 Replace save-selected-window+select-window => with-selected-window.
4369
4370 * progmodes/cc-bytecomp.el (cc-bytecomp-defmacro): Remove, unused.
4371 * progmodes/cc-vars.el (bq-process): Remove, unused.
4372
4373 * emacs-lisp/cl-macs.el (cl-defstruct): Obey the :read-only property.
4374
43752012-10-09 Fabián Ezequiel Gallina <fgallina@cuca>
4376
4377 Implemented `backward-up-list'-like navigation.
4378 * progmodes/python.el (python-nav-up-list)
4379 (python-nav-backward-up-list): New functions.
4380 (python-mode-map): Define substitute key for backward-up-list to
4381 python-nav-backward-up-list.
4382
43832012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
4384
4385 * progmodes/python.el (python-fill-paragraph): Rename from
4386 python-fill-paragraph-function. Fixed fill-paragraph for
4387 decorators (Bug#12605).
4388
43892012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
4390
4391 * progmodes/python.el (python-shell-output-filter): Handle extra
4392 carriage return in OSX (Bug#12409).
4393
43942012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
4395
4396 Fix shell handling of unbalanced quotes and parens in output.
4397 * progmodes/python.el (python-rx-constituents): Add string-delimiter.
4398 (python-syntax-propertize-function): Use it.
4399 (python-shell-output-syntax-table): New var.
4400 (inferior-python-mode): Prevent unbalanced parens/quotes from
4401 previous output mess with current input context.
4402
44032012-10-08 Juanma Barranquero <lekktu@gmail.com>
4404
4405 * generic-x.el (javascript-generic-mode, javascript-generic-mode-hook):
4406 Make obsolete aliases of js-mode and js-mode-hook (from js.el).
4407
44082012-10-08 Michael Albinus <michael.albinus@gmx.de>
4409
4410 * ffap.el (ffap-replace-file-component): Support Tramp file name
4411 syntax, not only ange-ftp's one.
4412
44132012-10-08 Glenn Morris <rgm@gnu.org>
4414
4415 * cus-start.el (message-log-max): Set :version.
4416
4417 * calendar/calendar.el (calendar-intermonth-header): Doc fix.
4418
44192012-10-08 Martin Rudalics <rudalics@gmx.at>
4420
4421 * emacs-lisp/edebug.el (edebug-pop-to-buffer): Don't try to split
4422 the minibuffer window (Bug#10851).
4423
44242012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
4425
4426 Enhancements on forward-sexp movement.
4427 * progmodes/python.el (python-nav-beginning-of-statement)
4428 (python-nav-end-of-statement): Return point-marker.
4429 (python-nav-forward-sexp): lisp-like forward-sexp behavior.
4430 (python-info-current-symbol)
4431 (python-info-statement-starts-block-p): Rename from
4432 python-info-beginning-of-block-p.
4433 (python-info-statement-ends-block-p): Rename from
4434 python-info-end-of-block-p.
4435 (python-info-beginning-of-statement-p)
4436 (python-info-end-of-statement-p)
4437 (python-info-beginning-of-block-p, python-info-end-of-block-p):
4438 New functions.
4439
44402012-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
4441
4442 * comint.el (comint-preinput-scroll-to-bottom): Preserve the
4443 frame-selected-windows.
4444
44452012-10-08 Daniel Colascione <dancol@dancol.org>
4446
4447 * battery.el (battery-status-function): Check for
4448 w32-battery-status itself, not system-time windows-nt.
4449
4450 * frame.el: Require cl-lib.
4451 (display-format-alist): New variable mapping frame types to
4452 functions that initialize them.
4453 (window-system-for-display): New function: interprets
4454 display-format-alist.
4455 (make-frame-on-display): Remove existing display-selection logic
4456 and just forward to make-frame, which will now DTRT.
4457 (make-frame): Restructure to use window-system-for-display to
4458 figure out how to create a frame on a given display.
4459 (display-mouse-p): Look for frame-type w32, not a particular
4460 system-type.
4461
4462 * loadup.el: Load w32 lisp code when we have the w32 feature.
4463
4464 * mouse.el (mouse-yank-primarY): Look for frame-type w32, not
4465 system-type windows-nt.
4466
4467 * server.el (server-create-window-system-frame): Look for window
4468 type.
4469 (server-proces-filter): Only force a window system when windows-nt
4470 _and_ w32. Explain why.
4471
4472 * simple.el (normal-erase-is-backspace-mode): Add w32 to the list
4473 of window systems we configure for the mode.
4474
4475 * startup.el (command-line): Mark window system is initialized
4476 after we've done it.
4477
4478 * common-win.el (x-select-text): Look for w32, not windows-nt.
4479
4480 * ns-win.el: Require cl-lib. Add ourselves to
4481 display-format-alist.
4482 (ns-initialize-window-system): Assert we're not initialized twice.
4483
4484 * w32-win.el: Enable lexical binding; require cl-lib; add
4485 ourselves to display-format-alist.
4486 (w32-handle-dropped-file): Convert incoming dropped files from
4487 Windows paths to Cygwin ones before passing them on to the rest of
4488 Emacs.
4489 (w32-drag-n-drop): New paramter new-frame. Simplify logic.
4490 (w32-initialize-window-system): Assert we're not initialized twice.
4491
4492 * x-win.el: Require cl-lib; add ourselves to display-format-alist.
4493 (x-initialize-window-system): Assert we're not initialized twice.
4494
4495 * w32-common-fns.el: New File.
4496 (w32-version, w32-using-nt, w32-get-clipboard-data)
4497 (w32-set-clipboard-data, x-set-selection, x-get-selection)
4498 (w32-charset-info-alist, x-last-selected, text)
4499 (x-get-selection-value, x-selection-value): Move here.
4500
4501 * w32-fns.el: Require w32-common-fns.
4502 (w32-version, w32-using-nt, w32-get-clipboard-data)
4503 (w32-set-clipboard-data, x-set-selection, x-get-selection)
4504 (w32-charset-info-alist, x-last-selected, text)
4505 (x-get-selection-value, x-selection-value): Move to
4506 w32-common-fns.
4507
4508 * w32-vars.el:
4509 (w32-allow-system-shell, w32-system-shells): Define only in
4510 non-cygwin case.
4511
45122012-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
4513
4514 * subr.el (read-passwd-map): Don't use `defconst' (bug#12597).
4515 (read-passwd): Remove a few more potential sources of leaks.
4516
45172012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
4518
4519 * progmodes/python.el (inferior-python-mode)
4520 (python-shell-make-comint): Fix initialization of local
4521 variables copied from parent buffer.
4522
45232012-10-07 Jan Djärv <jan.h.d@swipnet.se>
4524
4525 * term/ns-win.el (ns-read-file-name): Update declaration to match
4526 nsfns.m.
4527 (ns-respond-to-change-font): Change fontsize separatly so we are sure
4528 it is set when font is acted upon.
4529
45302012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
4531
4532 Enhancements to indentation.
4533 * progmodes/python.el (python-indent-context): Give priority to
4534 inside-string context. Make comments indentation markers.
4535 (python-indent-region): Do not mess with strings, unless it's the
4536 enclosing set of quotes.
4537
45382012-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
4539
4540 * window.el (internal--before-save-selected-window)
4541 (internal--after-save-selected-window): New functions extracted from
4542 save-selected-window. Make sure we return the `alist' we construct.
4543 (save-selected-window): Use them.
4544
4545 * textmodes/tex-mode.el (tex-recenter-output-buffer):
4546 Use with-selected-window.
4547
4548 * emacs-lisp/autoload.el (make-autoload): Add `cl-defmacro' to the
4549 forms that define macros (bug#12593).
4550
45512012-10-07 Kenichi Handa <handa@gnu.org>
4552
4553 * international/mule-conf.el (compound-text-with-extensions):
4554 Add :mime-charset property as x-ctext.
4555
45562012-10-07 Stefan Merten <smerten@oekonux.de>
4557
4558 * textmodes/rst.el (rst-new-adornment-down, rst-indent-field)
4559 (rst-indent-literal-normal, rst-indent-literal-minimized)
4560 (rst-indent-comment): Correct :version tag.
4561 (rst-official-cvs-rev): Correct version string.
4562
45632012-10-07 Glenn Morris <rgm@gnu.org>
4564
4565 * mail/rmailmm.el (rmail-mime-process-multipart):
4566 Do not confuse a multipart message with an epilogue
4567 with a "truncated" one; fixes 2011-06-27 change. (Bug#10101)
4568
45692012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
4570
4571 Fix shell output retrieval and comint-prompt-regexp init.
4572 * progmodes/python.el (inferior-python-mode):
4573 (python-shell-make-comint): Fix initialization of
4574 comint-prompt-regexp from copied file local variables.
4575 (python-shell-fetched-lines): Remove var.
4576 (python-shell-output-filter-in-progress): Rename from
4577 python-shell-fetch-lines-in-progress.
4578 (python-shell-output-filter-buffer): Rename from
4579 python-shell-fetch-lines-string.
4580 (python-shell-fetch-lines-filter): Delete function.
4581 (python-shell-output-filter): New function.
4582 (python-shell-send-string-no-output): Use them.
4583
45842012-10-07 Glenn Morris <rgm@gnu.org>
4585
4586 * hi-lock.el (hi-lock-process-phrase):
4587 Try to make it less fragile. (Bug#7161)
4588
4589 * hi-lock.el (hi-lock-face-phrase-buffer): Doc fix.
4590
45912012-10-06 Glenn Morris <rgm@gnu.org>
4592
4593 * ehelp.el (electric-help-mode): Use help-mode rather than
4594 non-existent mode `help'.
4595 (electric-help-map): Use button-buffer-map. (Bug#10917)
4596
4597 * textmodes/reftex-vars.el (reftex-create-bibtex-header)
4598 (reftex-create-bibtex-footer): Fix custom types.
4599
4600 * progmodes/sh-script.el (sh-indent-after-continuation):
4601 Add explicit :group.
4602
4603 * textmodes/rst.el (rst-preferred-decorations)
4604 (rst-shift-basic-offset): Clarify obsolescence versions.
4605
4606 * profiler.el (profiler): Add missing group :version tag.
4607 * avoid.el (mouse-avoidance-banish-position):
4608 * proced.el (proced-renice-command):
4609 * calc/calc.el (calc-ensure-consistent-units):
4610 * calendar/icalendar.el (icalendar-import-format-uid):
4611 * net/tramp.el (tramp-save-ad-hoc-proxies):
4612 * progmodes/bug-reference.el (bug-reference-bug-regexp):
4613 * progmodes/flymake.el (flymake-error-bitmap)
4614 (flymake-warning-bitmap, flymake-fringe-indicator-position):
4615 * progmodes/sh-script.el (sh-indent-after-continuation):
4616 * progmodes/verilog-mode.el (verilog-auto-template-warn-unused)
4617 (verilog-before-save-font-hook, verilog-after-save-font-hook):
4618 * progmodes/vhdl-mode.el (vhdl-makefile-default-targets)
4619 (vhdl-array-index-record-field-in-sensitivity-list)
4620 (vhdl-indent-comment-like-next-code-line):
4621 * textmodes/reftex-vars.el (reftex-ref-style-alist)
4622 (reftex-ref-macro-prompt, reftex-ref-style-default-list)
4623 (reftex-cite-key-separator, reftex-create-bibtex-header)
4624 (reftex-create-bibtex-footer):
4625 * textmodes/rst.el (rst-new-adornment-down, rst-indent-field)
4626 (rst-indent-literal-normal, rst-indent-literal-minimized)
4627 (rst-indent-comment): Add missing custom :version tags.
4628
4629 * calendar/timeclock.el (timeclock-modeline-display):
4630 Add missing obsolete alias for renamed user option.
4631
4632 * strokes.el (strokes-modeline-string):
4633 * emulation/crisp.el (crisp-mode-modeline-string):
4634 * eshell/esh-mode.el (eshell-status-in-modeline):
4635 Aliases to defcustoms must come before the defcustom.
4636
4637 * calendar/cal-tex.el (cal-tex-diary, cal-tex-cursor-week)
4638 (cal-tex-cursor-week2, cal-tex-cursor-week-iso)
4639 (cal-tex-cursor-week-monday): Doc fixes.
4640 (cal-tex-cursor-week2-summary): Doc fix.
4641 Rename from cal-tex-cursor-week-at-a-glance.
4642
4643 * calendar/cal-menu.el (cal-menu-context-mouse-menu):
4644 Tweak week descriptions. Add cal-tex-cursor-week2-summary.
4645
4646 * calendar/calendar.el (calendar-mode-map):
4647 Add cal-tex-cursor-week2-summary.
4648
46492012-10-06 Stefan Monnier <monnier@iro.umontreal.ca>
4650
4651 * emacs-lisp/cl-macs.el (cl-defstruct): Improve docstring.
4652
4653 * subr.el (read-passwd-map): New var.
4654 (read-passwd): Use `read-string' again.
4655 * minibuffer.el (delete-minibuffer-contents): Make it interactive.
4656
46572012-10-06 Jambunathan K <kjambunathan@gmail.com>
4658
4659 * register.el (append-to-register, prepend-to-register):
4660 Deactivate mark, as does `copy-to-register' (bug#12389).
4661
46622012-10-06 Chong Yidong <cyd@gnu.org>
4663
4664 * files.el (auto-mode-alist): Add .by and .wy (Semantic grammars).
4665
46662012-10-06 Ikumi Keita <ikumi@ikumi.que.jp> (tiny change)
4667
4668 * international/characters.el: Fix simple mistake ((car chars) ->
4669 elt), delete duplicated code.
4670
46712012-10-06 Glenn Morris <rgm@gnu.org>
4672
4673 * subr.el (read-passwd): Allow C-u to erase entry. (Bug#12570)
4674
46752012-10-06 Julian Scheid <julians37@gmail.com> (tiny change)
4676
4677 * color.el (color-hsl-to-rgb): Fix incorrect results for
4678 small and large hue values. (Bug#12559)
4679
46802012-10-05 Fabián Ezequiel Gallina <fgallina@cuca>
4681
4682 Enhancements to docstring formatting when filling paragraphs.
4683 * progmodes/python.el (python-fill-docstring-style): Rename from
4684 python-fill-string-style. Added new style.
4685 (python-fill-string): Use new style. Better checks for
4686 docstrings.
4687
46882012-10-05 Glenn Morris <rgm@gnu.org>
4689
4690 * net/newst-treeview.el (newsticker-group-move-feed): Doc fix.
4691
4692 * color.el (color-name-to-rgb, color-rgb-to-hex)
4693 (color-hue-to-rgb, color-hsl-to-rgb, color-rgb-to-hsv)
4694 (color-rgb-to-hsl, color-srgb-to-xyz, color-saturate-hsl)
4695 (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
4696 (color-lighten-name, color-darken-hsl, color-darken-name): Doc fixes.
4697
4698 * emacs-lisp/timer.el (with-timeout): Add missing progn. (Bug#12577)
4699
47002012-10-05 Juanma Barranquero <lekktu@gmail.com>
4701
4702 * ido.el (ido-directory-too-big-p): Pass dir through file-truename
4703 to get the correct size across symlinks.
4704
4705 * ido.el (ido-buffer-disable-smart-matches): Fix typo in docstring.
4706
47072012-10-04 Juri Linkov <juri@jurta.org>
4708
4709 * replace.el (query-replace-interactive): Declare obsolete.
4710 (query-replace-read-from): Add the last incremental search string
4711 to the list of default values accessible via M-n.
4712 (map-query-replace-regexp): Use `read-regexp'.
4713 (query-replace, query-replace-regexp, query-replace-regexp-eval)
4714 (map-query-replace-regexp, replace-string, replace-regexp):
4715 Fix docstrings to replace mentions of `query-replace-interactive'
4716 with alternatives. (Bug#12526)
4717
47182012-10-04 Juri Linkov <juri@jurta.org>
4719
4720 * dired.el (dired-shrink-to-fit): Declare obsolete. (Bug#1806)
4721 (dired-pop-to-buffer): Declare obsolete.
4722 (dired-mark-pop-up): Doc fix.
4723
47242012-10-04 Fabián Ezequiel Gallina <fgallina@cuca>
4725
4726 Allow user to set docstring style for fill-paragraph.
4727 * progmodes/python.el
4728 (python-fill-comment-function, python-fill-string-function)
4729 (python-fill-decorator-function, python-fill-paren-function):
4730 Remove :safe for defcustoms.
4731 (python-fill-string-style): New defcustom
4732 (python-fill-paragraph-function): Enhance context detection.
4733 (python-fill-string): Honor python-fill-string-style settings.
4734
47352012-10-04 Martin Rudalics <rudalics@gmx.at>
4736
4737 * emacs-lisp/edebug.el (edebug-pop-to-buffer): Select window
4738 after setting its buffer (Bug#10805).
4739
47402012-10-03 Fabián Ezequiel Gallina <fgallina@cuca>
4741
4742 Fix cornercase for string syntax.
4743 * progmodes/python.el (python-syntax-propertize-function):
4744 Simplify and enhance the regexp for unescaped quotes. Now it also
4745 matches quotes in weird situations like the single quote in
4746 "something\"'".
4747 (python-syntax-stringify): Simplify num-quotes detecting code.
4748
47492012-10-03 Glenn Morris <rgm@gnu.org>
4750
4751 * help-macro.el (three-step-help):
4752 Revert 2012-09-29 change. (Bug#12567)
4753
47542012-10-03 Martin Rudalics <rudalics@gmx.at>
4755
4756 * menu-bar.el (kill-this-buffer): Don't do anything when
4757 `menu-frame' is not alive or visible (Bug#8184).
4758
4759 * emacs-lisp/debug.el (debug): When quitting the debugger window
4760 restore current buffer (Bug#12502).
4761
47622012-10-02 Chong Yidong <cyd@gnu.org>
4763
4764 * progmodes/hideif.el (hif-lookup, hif-defined):
4765 Handle semantic-c-takeover-hideif.
4766
47672012-10-02 Paul Eggert <eggert@cs.ucla.edu>
4768
4769 Change sampling interval units from ms to ns.
4770 * profiler.el (profiler-sampling-interval): Change units
4771 from ms to ns, multiplying the default by 1000000 so that
4772 it remains 1 ms.
4773 (profiler-report-cpu-line-format): Give enough room for
4774 the maximum counters on 64-bit hosts.
4775 (profiler-report-render-calltree-1): Call them "CPU samples",
4776 not "Time (ms)", since they are not milliseconds now (and
4777 never really were).
4778
47792012-10-02 Sergio Durigan Junior <sergiodj@riseup.net> (tiny change)
4780
4781 * net/eudcb-bbdb.el (eudc-bbdb-format-record-as-result):
4782 Fix querying BBDB for entries without a last name (Bug#11580).
4783
47842012-10-02 Chong Yidong <cyd@gnu.org>
4785
4786 * emacs-lisp/eieio.el: Restore Version header.
4787
47882012-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
4789
4790 * vc/diff-mode.el (diff--auto-refine-data): New var.
4791 (diff-hunk): Use it to delay refinement.
4792 (diff-mode): Remove overlays when we turn off font-lock.
4793
4794 * textmodes/table.el: Use lexical-binding, dolist, define-minor-mode.
4795 (table-initialize-table-fixed-width-mode)
4796 (table-set-table-fixed-width-mode): Remove functions.
4797 (table-command-list): Move initialization into declaration.
4798 (table--tweak-menu-for-xemacs): Move defun outside mapcar.
4799 (table-with-cache-buffer): Use `declare'.
4800 (table-span-cell): Simplify via CSE.
4801 (table-fixed-width-mode): Use define-minor-mode.
4802 (table-call-interactively, table-funcall, table-apply): Remove.
4803 (table-function): New function, to replace them.
4804
4805 * bookmark.el (bookmark-search-pattern): Remove var.
4806 (bookmark-read-search-input): Remove function.
4807 (bookmark-bmenu-search): Reimplement using a minibuffer.
4808
4809 * faces.el (modeline): Remove obsolete face name.
4810
4811 * vc/add-log.el (add-log-buffer-file-name-function): Demote to defvar
4812 and give a non-nil default value.
4813 (add-change-log-entry): Simplify accordingly.
4814
48152012-10-01 Dmitry Gutov <dgutov@yandex.ru>
4816
4817 * vc/vc-git.el (vc-git-log-edit-toggle-signoff): New function.
4818 (vc-git-log-edit-toggle-amend): New function.
4819 (vc-git-log-edit-toggle-signoff): New function.
4820 (vc-git-log-edit-mode): New major mode.
4821 (vc-git-log-edit-mode-map): Keymap for it.
4822 (vc-git-checkin): Handle "Amend" and "Sign-Off" headers.
4823
4824 * vc/log-edit.el (log-edit-font-lock-keywords): Allow hyphens in
4825 header names.
4826 (log-edit-toggle-header): New function.
4827 (log-edit-extract-headers): Accept function values in HEADERS alist.
4828
48292012-10-01 David Engster <deng@randomsample.de>
4830
4831 * emacs-lisp/eieio-opt.el (eieio-describe-class): Add filename
4832 from symbol property and change message to be more consistent with
4833 Emacs proper.
4834 (eieio-describe-generic): Add filename for each implementation.
4835 Fix indices for generic and normal methods.
4836 (eieio-method-def, eieio-class-def): New buttons.
4837 (eieio-help-find-method-definition)
4838 (eieio-help-find-class-definition): New functions.
4839 (eieio-help-mode-augmentation-maybee): Add buttons to filenames of
4840 class, constructor and method definitions.
4841
4842 * emacs-lisp/eieio.el (eieiomt-add, eieio-defclass): Save file
4843 information in symbol property.
4844 (scoped-class): Remove.
4845 (eieio-slot-name-index, call-next-method): Check if it is bound.
4846
48472012-10-01 Leo P. White <lpw25@cam.ac.uk>
4848
4849 * emacs-lisp/eieio-custom.el (eieio-custom-mode-map): New option.
4850 (eieio-custom-mode): New major mode.
4851 (eieio-customize-object): Use it.
4852
48532012-10-01 Eric Ludlam <zappo@gnu.org>
4854
4855 * emacs-lisp/eieio-base.el (eieio-persistent-read): New input args
4856 specifying the expected class, and whether subclassing is allowed.
4857 (eieio-persistent-convert-list-to-object):
4858 (eieio-persistent-validate/fix-slot-value)
4859 (eieio-persistent-slot-type-is-class-p): New functions.
4860 (eieio-named::slot-missing): Doc fix.
4861
4862 * emacs-lisp/eieio-datadebug.el (data-debug/eieio-insert-slots):
4863 Stop using unused publd variable.
4864
4865 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click):
4866 (eieio-speedbar-description, eieio-speedbar-derive-line-path)
4867 (eieio-speedbar-object-buttonname, eieio-speedbar-make-tag-line)
4868 (eieio-speedbar-handle-click): Do not specify a class for the
4869 method. Fixes method invocation order problems with EDE.
4870
48712012-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
4872
4873 * emacs-lisp/bytecomp.el (byte-compiler-abbreviate-file): New function.
4874 (byte-compile-warning-prefix, byte-compile-file): Use it (bug#12508).
4875
48762012-10-01 Karl Fogel <kfogel@red-bean.com>
4877
4878 * bookmark.el (bookmark-version-control): Give tags in the
4879 :type choices (Bug#12309), and improve doc string.
4880 (bookmark-write-file): Bind `print-circle' to `t' to allow
4881 circular custom bookmark types. (Bug#12503)
4882
48832012-10-01 Paul Eggert <eggert@cs.ucla.edu>
4884
4885 Revert the FOLLOW-SYMLINKS change for file-attributes.
4886 * files.el (remote-file-name-inhibit-cache, after-find-file):
4887 * time.el (display-time-file-nonempty-p): Undo last change.
4888
4889 * profiler.el (profiler-sampling-interval): Change default back to 1.
4890 See Stefan Monnier in
4891 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00863.html>.
4892
48932012-10-01 Fabián Ezequiel Gallina <fgallina@cuca>
4894
4895 Shell output catching a la gud-gdb.
4896 * progmodes/python.el (python-shell-fetch-lines-in-progress)
4897 (python-shell-fetch-lines-string, python-shell-fetched-lines):
4898 New Vars.
4899 (python-shell-fetch-lines-filter): New function.
4900 (python-shell-send-string-no-output): Use them.
4901
49022012-09-30 Tomohiro Matsuyama <tomo@cx4a.org>
4903
4904 * profiler.el (profiler-sampling-interval): Rename from
4905 profiler-sample-interval.
4906 (profiler-sampling-interval): Default to 10.
4907 (profiler-find-profile): New command (was profiler-find-log).
4908 (profiler-find-profile-other-window): New command.
4909 (profiler-find-profile-other-frame): New command.
4910 (profiler-profile): Introduce API-level data structure.
4911
49122012-09-30 Paul Eggert <eggert@cs.ucla.edu>
4913
4914 file-attributes has a new optional arg FOLLOW-SYMLINKS.
4915 * files.el (remote-file-name-inhibit-cache):
4916 * time.el (display-time-file-nonempty-p): Use it.
4917 * files.el (after-find-file): Don't chase links before calling
4918 file-exists-p, as file-exists-p already does the right thing.
4919
49202012-09-30 Ralf Angeli <angeli@caeruleus.net>
4921
4922 Merge from standalone RefTeX repository.
4923
4924 The following ChangeLog entries are shortened versions of the
4925 original ones with file paths adapted. A not so strongly edited
4926 version of the original ChangeLog can be found in the commit log.
4927
4928 * textmodes/reftex-auc.el: Move `provide' call to bottom of file.
4929 (reftex-arg-cite): Use `reftex-cite-key-separator'.
4930 Correctly handle new value type returned by `reftex-citation'.
4931
4932 * textmodes/reftex-cite.el (reftex-create-bibtex-file): Make sure
4933 that entries with whitespace at various places are found.
4934 Doc fix. Include entries that are cross-referenced from cited entries.
4935 Include @String definitions in the resulting bib file. Add header
4936 and footer defined in `reftex-create-bibtex-header' and
4937 `reftex-create-bibtex-footer'.
4938 (reftex-do-citation): Make it possible again to insert
4939 non-existent entries. Save match data when asking for optional
4940 arguments. Return all keys, not just the first one.
4941 (reftex-all-used-citation-keys): Fix regexp to correctly extract
4942 all citations in the same line.
4943 (reftex-parse-bibtex-entry): Accept additional optional argument
4944 `raw' and keep quotes or braces if it is non-nil. Match fields
4945 containing hyphens besides word constituents.
4946 (reftex-get-string-refs): New function.
4947 (reftex-extract-bib-entries): Check if BibTeX file changed on disk
4948 and ask if it should be reread in case it did.
4949 (reftex-pop-to-bibtex-entry)
4950 (reftex-extract-bib-entries-from-thebibliography): Match \bibitem
4951 entries with spaces or tabs in front of arguments.
4952 (reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
4953 (reftex-parse-bibtex-entry, reftex-create-bibtex-file):
4954 Match entries containing numbers and symbol constituents.
4955 (reftex-do-citation, reftex-figure-out-cite-format):
4956 Use `reftex-cite-key-separator'.
4957
4958 * textmodes/reftex-dcr.el: Move provide statement to end of file.
4959 (reftex-mouse-view-crossref): Explain why point is set.
4960
4961 * textmodes/reftex-global.el: Whitespace changes.
4962
4963 * textmodes/reftex-index.el: Move provide statement to end of
4964 file.
4965 (reftex-index-selection-or-word): Use `reftex-region-active-p'.
4966 (reftex-index-visit-phrases-buffer): Set marker when visiting
4967 buffer. This allows for returning from the phrases file to the
4968 file one was just editing instead of the file where the last
4969 phrases was added from.
4970 (reftex-index-phrases-syntax-table): New variable. Give ?\"
4971 punctuation syntax as it usually is not used as string quote in
4972 TeX-related modes and may occur unmatched. The change also
4973 prevents fontification of quoted content.
4974 (reftex-index-phrases-mode): Use it.
4975
4976 * textmodes/reftex-parse.el (reftex-parse-from-file):
4977 Move backward one char if a `\' was matched after a section macro.
4978 (reftex-parse-from-file): Use beginning of match instead of end as
4979 bound.
4980
4981 * textmodes/reftex-ref.el: Adapt creation of
4982 `reftex-<package>-<macro>' functions to new structure of
4983 `reftex-ref-style-alist'.
4984 (reftex-reference): Use `reftex-ref-style-list' function.
4985 Adapt to new structure of `reftex-ref-style-alist'. Prompt for a
4986 reference macro if `reftex-ref-macro-prompt' is non-nil.
4987 (reftex-reference): Pass refstyle to `reftex-format-special'.
4988 Determine reference macro by looking at
4989 `reftex-ref-style-default-list' and `reftex-ref-style-alist'.
4990 Use only one special format function.
4991 (reftex-varioref-vref, reftex-fancyref-fref)
4992 (reftex-fancyref-Fref): Remove definitions. The functions are now
4993 generated from `reftex-ref-style-alist'.
4994 (reftex-format-vref, reftex-format-Fref, reftex-format-fref):
4995 Remove.
4996 (reftex-format-special): New function.
4997
4998 * textmodes/reftex-sel.el
4999 (reftex-select-cycle-ref-style-internal): Adapt to new structure
5000 of `reftex-ref-style-alist'. Remove code for testing macro type.
5001 (reftex-select-toggle-varioref)
5002 (reftex-select-toggle-fancyref): Remove.
5003 (reftex-select-cycle-ref-style-internal)
5004 (reftex-select-cycle-ref-style-forward)
5005 (reftex-select-cycle-ref-style-backward): New functions.
5006 (reftex-select-label-map): Use `v' and `V' for general cycling
5007 through reference styles. Add `p' for switching between number
5008 and page reference types.
5009
5010 * textmodes/reftex-toc.el (reftex-re-enlarge):
5011 Call `enlarge-window' only if there is something to do because in Emacs
5012 the horizontal version throws an error even if the parameter is 0.
5013
5014 * textmodes/reftex-vars.el (reftex-label-alist): Doc fix.
5015 (reftex-plug-into-AUCTeX): Doc fix.
5016 (reftex-vref-is-default, reftex-fref-is-default): Adapt doc
5017 string. Adapt to new name.
5018 (reftex-ref-style-alist): Change structure so that it is not
5019 possible to use multiple different package names within a style.
5020 Remove the symbols for symbols for macro type distinction.
5021 Add characters for macro selection.
5022 (reftex-ref-macro-prompt, reftex-create-bibtex-header)
5023 (reftex-create-bibtex-footer): New variables.
5024 (reftex-format-ref-function): Mention third argument of special
5025 format function.
5026 (reftex-ref-style-alist, reftex-ref-style-default-list):
5027 New variables.
5028 (reftex-vref-is-default, reftex-fref-is-default): Adapt doc string
5029 to new implementation. Mark as obsolete. Add compatibility code
5030 for honoring the variable values in case they are set.
5031 (reftex-cite-format-builtin, reftex-bibliography-commands):
5032 Add support for ConTeXt.
5033 (reftex-format-ref-function, reftex-format-cite-function):
5034 Fix custom type.
5035 (reftex-cite-key-separator): New variable.
5036
5037 * textmodes/reftex.el (reftex-syntax-table-for-bib)
5038 (reftex-mode): Do not derive `reftex-syntax-table-for-bib' from
5039 `reftex-syntax-table' because parens have to retain their paren
5040 syntax in order for parsing of BibTeX entries like @book(...) to
5041 work.
5042 (reftex-in-comment): Do not error out if `comment-start-skip' is
5043 not set. Deal correctly with escaped comment characters.
5044 (reftex-tie-multifile-symbols): Add doc string.
5045 Initialize `reftex-ref-style-list'.
5046 (reftex-untie-multifile-symbols): Add doc string.
5047 (reftex-add-index-macros): Doc fix.
5048 (reftex-ref-style-activate, reftex-ref-style-toggle)
5049 (reftex-ref-style-list): New functions.
5050 (reftex-mode-menu): Use them. Adapt to new structure of
5051 `reftex-ref-style-alist'.
5052 (reftex-select-with-char): Kill the RefTeX Select buffer when
5053 done.
5054 (reftex-remove-if): New function.
5055 (reftex-erase-all-selection-and-index-buffers)
5056 (reftex-mode-menu): Reference styles are now computed from
5057 `reftex-ref-style-alist'. Fix typo.
5058 (reftex-report-bug): New function.
5059 (reftex-uniquify, reftex-uniquify-by-car): Replace O(n^2)
5060 algorithms with O(n log n). Introduce optional argument SORT (not
5061 yet used).
5062
50632012-09-30 Fabián Ezequiel Gallina <fgallina@cuca>
5064
5065 Enhancements for triple-quote string syntax.
5066 * progmodes/python.el (python-syntax-propertize-function):
5067 Match both quote cases in one regexp.
5068 (python-syntax-stringify): Handle matches properly.
5069
50702012-09-30 Juri Linkov <juri@jurta.org>
5071
5072 * arc-mode.el (archive-summarize): Let-bind `buffer-file-truename'
5073 to nil around the call to `insert' to prevent
5074 directory time modification by lock_file. (Bug#2295)
5075 * tar-mode.el (tar-summarize-buffer): Idem.
5076
50772012-09-30 Juri Linkov <juri@jurta.org>
5078
5079 * facemenu.el (list-colors-sort): Add option "Luminance".
5080 (list-colors-sort-key): Implement it.
5081
5082 * vc/diff-mode.el (diff-refine-removed):
5083 * vc/ediff-init.el (ediff-fine-diff-A):
5084 * vc/smerge-mode.el (smerge-refined-removed):
5085 Change background color "#ffaaaa" to "#ffbbbb". (Bug#10181)
5086
50872012-09-30 Jan Djärv <jan.h.d@swipnet.se>
5088
5089 * term/ns-win.el (x-file-dialog): New function.
5090
50912012-09-30 Juanma Barranquero <lekktu@gmail.com>
5092
5093 * ido.el (ido-max-directory-size): Default to nil; the current
5094 default is small for POSIX systems, and impractical on Windows 7
5095 now that lstat returns directory sizes for NTFS.
5096
50972012-09-30 Martin Rudalics <rudalics@gmx.at>
5098
5099 In buffer display functions handle window-height/window-width
5100 alist entries. Suggested by Juri Linkov as fix for Bug#1806.
5101 * window.el (window--display-buffer): New argument ALIST.
5102 Obey window-height and window-width alist entries.
5103 (window--try-to-split-window): New argument ALIST.
5104 Bind window-combination-limit to t when the window's size shall be
5105 changed and window-combination-limit equals `window-size'.
5106 (display-buffer-in-atom-window)
5107 (display-buffer-in-major-side-window)
5108 (display-buffer-in-side-window, display-buffer-same-window)
5109 (display-buffer-reuse-window, display-buffer-pop-up-frame)
5110 (display-buffer-pop-up-window, display-buffer-below-selected)
5111 (display-buffer-at-bottom, display-buffer-in-previous-window)
5112 (display-buffer-use-some-window): Adjust all callers of
5113 window--display-buffer and window--try-to-split-window.
5114 (fit-frame-to-buffer): New option.
5115 (fit-window-to-buffer): Can resize frames if fit-frame-to-buffer
5116 is non-nil.
5117 (display-buffer-in-major-side-window): Evaluate window-height /
5118 window-width alist entries.
5119
5120 * help.el (temp-buffer-resize-frames)
5121 (temp-buffer-resize-regexps): Remove options.
5122 (temp-buffer-resize-mode): Adjust doc-string.
5123 (resize-temp-buffer-window): Don't consult
5124 temp-buffer-resize-regexps. Use fit-frame-to-buffer instead of
5125 temp-buffer-resize-frames.
5126
5127 * dired.el (dired-mark-pop-up):
5128 Call display-buffer-below-selected with a fit-window-to-buffer alist
5129 entry.
5130
51312012-09-30 Chong Yidong <cyd@gnu.org>
5132
5133 * server.el (server-host): Document the security implications.
5134 (server-auth-key): Doc fix.
5135
5136 * startup.el (initial-buffer-choice): Doc fix.
5137
5138 * minibuffer.el (minibuffer-local-filename-syntax): Doc fix.
5139
5140 * simple.el (delete-trailing-whitespace): Avoid an unnecessary
5141 restriction change.
5142
5143 * bindings.el (goto-map): Bind M-g TAB to move-to-column.
5144
5145 * help-fns.el (help-fns--obsolete): Fix last change.
5146
51472012-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
5148
5149 * winner.el (winner-mode-map): Obey winner-dont-bind-my-keys here.
5150 (minor-mode-map-alist): Remove redundant code.
5151
5152 * vc/pcvs.el (cvs-cleanup-collection): Keep entries that are currently
5153 visited in a buffer.
5154 (cvs-insert-visited-file): New function.
5155 (find-file-hook): Use it.
5156
5157 * vc/pcvs-info.el (cvs-fileinfo-pp): Don't use non-existent faces.
5158
5159 * vc/log-edit.el (log-edit-font-lock-keywords): Ignore case to
5160 chose face.
5161 (log-edit-empty-buffer-p): Don't require a space after a header.
5162
5163 * vc/ediff-util.el (ediff-diff-at-point): Don't assume point-min==1.
5164
5165 * tutorial.el (help-with-tutorial): Use minibuffer-with-setup-hook.
5166
5167 * textmodes/text-mode.el (paragraph-indent-minor-mode): Make it
5168 a proper minor-mode.
5169
5170 * textmodes/tex-mode.el (tex-mode-map): Don't bind paren keys.
5171
51722012-09-29 Glenn Morris <rgm@gnu.org>
5173
5174 * winner.el (winner-mode): Remove variable (let define-minor-mode
5175 handle it).
5176 (winner-dont-bind-my-keys, winner-boring-buffers, winner-mode-hook):
5177 Doc fixes.
5178 (winner-mode-leave-hook): Rename to winner-mode-off-hook.
5179 (winner-mode): Use define-minor-mode.
5180
5181 * vc/vc-sccs.el (vc-sccs-registered): Use the progn trick to get
5182 the full definition in loaddefs, rather than duplicating it.
5183
5184 * help-macro.el (three-step-help): No need to autoload defcustom.
5185
5186 * progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
5187 (inferior-lisp-program, inferior-lisp-load-command)
5188 (inferior-lisp-prompt, inferior-lisp-mode-hook):
5189 No need to autoload defcustoms.
5190
5191 * hippie-exp.el (hippie-expand-try-functions-list)
5192 (hippie-expand-verbose, hippie-expand-dabbrev-skip-space)
5193 (hippie-expand-dabbrev-as-symbol, hippie-expand-no-restriction)
5194 (hippie-expand-max-buffers, hippie-expand-ignore-buffers)
5195 (hippie-expand-only-buffers): No need to autoload defcustoms.
5196 * progmodes/vhdl-mode.el (vhdl-line-expand):
5197 Explicitly load hippie-exp, so it does not get autoloaded
5198 while hippie-expand-try-functions-list is let-bound.
5199
52002012-09-28 Glenn Morris <rgm@gnu.org>
5201
5202 * emacs-lisp/cl.el (flet): Fix case of obsolescence message.
5203
5204 * emacs-lisp/bytecomp.el (byte-compile-cl-file-p):
5205 Only "cl.el" counts as cl these days.
5206
52072012-09-28 Juri Linkov <juri@jurta.org>
5208
5209 Display archive errors in the echo area instead of inserting
5210 to the file buffer.
5211
5212 * arc-mode.el (archive-extract-by-stdout): Change arg STDERR-FILE
5213 to STDERR-TEST that can be a regexp matching a successful output.
5214 Create a temporary file and redirect stderr to it. Search for
5215 STDERR-TEST in the stderr output and display it in the echo area
5216 if no match is found.
5217 (archive-extract-by-file): New function like
5218 `archive-extract-by-stdout' but extracting archives to files
5219 and looking for successful matches in stdout. Function body is
5220 mostly copied from `archive-rar-extract'.
5221 (archive-rar-extract): Use `archive-extract-by-file'.
5222 (archive-7z-extract): Use `archive-extract-by-stdout'. (Bug#10347)
5223
52242012-09-28 Leo Liu <sdl.web@gmail.com>
5225
5226 * pcomplete.el (pcomplete-show-completions):
5227 Use minibuffer-message to make pcomplete usable in minibuffer.
5228
5229 * ido.el (ido-set-matches-1): Fix 2012-09-11 change.
5230
52312012-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
5232
5233 * type-break.el: Use lexical-binding.
5234 (type-break-mode): Use define-minor-mode.
5235
5236 * emacs-lisp/pcase.el (pcase--mark-used): New.
5237 (pcase--u1): Use it (bug#12512).
5238
5239 * custom.el (load-theme): Set buffer-file-name so the load is recorded
5240 in load-history with the right file name.
5241
52422012-09-28 Tassilo Horn <tsdh@gnu.org>
5243
5244 * doc-view.el (doc-view-current-cache-doc-pdf): New function.
5245 (doc-view-doc->txt, doc-view-convert-current-doc): Use it.
5246 (doc-view-get-bounding-box): Make bounding box slicing work for
5247 ODF and DVI documents.
5248
52492012-09-28 Glenn Morris <rgm@gnu.org>
5250
5251 * type-break.el (type-break-mode, type-break-interval)
5252 (type-break-good-rest-interval, type-break-keystroke-threshold):
5253 No need to autoload.
5254 (type-break-good-rest-interval, type-break-keystroke-threshold):
5255 Add :set-after.
5256
52572012-09-28 Chong Yidong <cyd@gnu.org>
5258
5259 * progmodes/verilog-mode.el (verilog-auto-inst-interfaced-ports):
5260 Add :version tag.
5261
52622012-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
5263
5264 * json.el (json-encode-char): Codes 127-160 aren't "ASCII printable".
5265
52662012-09-27 Glenn Morris <rgm@gnu.org>
5267
5268 * faces.el (x-display-name): Declare (for without-x builds).
5269
5270 * linum.el (linum-format): Don't autoload it. Improve :type.
5271
5272 * progmodes/tcl.el: Don't require outline when compiling.
5273 (outline-regexp, outline-level): Declare.
5274 * textmodes/sgml-mode.el: Don't require outline when compiling.
5275 (outline-regexp, outline-heading-end-regexp, outline-level): Declare.
5276
5277 * term.el (term-ansi-reset):
5278 Try setting term-ansi-face-already-done to nil. (Bug#11785)
5279
5280 * vc/vc.el (vc-next-action): Only gripe about committing read-only
5281 files for RCS and SCCS. (Bug#9781)
5282
52832012-09-27 Chong Yidong <cyd@gnu.org>
5284
5285 * progmodes/verilog-mode.el (verilog-mode-release-emacs): Fix last
5286 change; value should be t.
5287
52882012-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
5289
5290 * image-mode.el: Use lexical-binding.
5291 (image-mode-winprops): Use t to stand for the window of
5292 a buffer that's not displayed.
5293 * doc-view.el (doc-view-new-window-function): Handle the new
5294 t in winprops.
5295 (doc-view-enlarge): Make it a real nop if the size is not changed.
5296 (doc-view-display): Handle the case where the buffer is not (yet?)
5297 displayed in any window.
5298 (doc-view-saved-settings): New var.
5299 (doc-view-mode): Use it.
5300 (doc-view-fallback-mode): Set it.
5301
5302 * minibuf-eldef.el: Make it possible to replace (default ...) with [...].
5303 Set lexical-binding.
5304 (minibuffer-eldef-shorten-default): New var.
5305 (minibuffer-default-in-prompt-regexps): Use it for new default.
5306 (minibuf-eldef-setup-minibuffer): Add replacement functionality.
5307
53082012-09-26 Juanma Barranquero <lekktu@gmail.com>
5309
5310 * international/uni-bidi.el:
5311 * international/uni-category.el:
5312 * international/uni-name.el:
5313 * international/uni-numeric.el: Regenerate.
5314
53152012-09-26 Tomohiro Matsuyama <tomo@cx4a.org>
5316 Stefan Monnier <monnier@iro.umontreal.ca>
5317
5318 * profiler.el: New file.
5319
53202012-09-26 Stefan Monnier <monnier@iro.umontreal.ca>
5321
5322 * emacs-lisp/testcover.el (testcover-after): Add gv-expander.
5323 (testcover-reinstrument): Simplify with CSE.
5324
53252012-09-26 Juanma Barranquero <lekktu@gmail.com>
5326
5327 * window.el (temp-buffer-window-setup): Fix typo in docstring.
5328
53292012-09-25 Wilson Snyder <wsnyder@wsnyder.org>
5330
5331 * verilog-mode.el (verilog-auto-ascii-enum, verilog-auto-inout)
5332 (verilog-auto-input, verilog-auto-insert-lisp)
5333 (verilog-auto-output, verilog-auto-output-every, verilog-auto-reg)
5334 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-undef)
5335 (verilog-auto-unused, verilog-auto-wire)
5336 (verilog-forward-or-insert-line): Fix AUTOs with no trailing
5337 newline. Reported by Andrew Jones.
5338 (verilog-auto-inst) Support expanding $clog2 in AUTOINST.
5339 Reported by Brad Dobbie.
5340 (verilog-batch-delete-trailing-whitespace):
5341 Create verilog-batch-delete-trailing-whitespace.
5342 Reported by Brad Dobbie.
5343 (verilog-auto-inout-param): Support AUTOINOUTPARAM for copying
5344 parameters from another module. Reported by Dan Katz.
5345 (verilog-auto, verilog-auto-assign-modport)
5346 (verilog-auto-inout-modport): Add AUTOASSIGNMODPORT and
5347 AUTOINOUTMODPORT for UVM interface module shell generation.
5348 Reported by Brad Dobbie.
5349 (verilog-auto-inst-interfaced-ports): Make default nil, as more
5350 standard behavior.
5351 (verilog-auto): Fix AUTO parameters with parenthesis arguments.
5352 Reported by Matt Martin.
5353
53542012-09-25 Martin Rudalics <rudalics@gmx.at>
5355
5356 * window.el (window--resize-child-windows): When resizing child
5357 windows proportionally, process them in reverse order to
5358 preserve the "when splitting a window the new one gets the odd
5359 line" behavior.
5360 (window--resize-root-window-vertically): When resizing the
5361 minibuffer window try to affect only windows at the bottom of the
5362 frame. (Bug#12419)
5363
53642012-09-25 Chong Yidong <cyd@gnu.org>
5365
5366 * subr.el (declare): Doc fix.
5367
5368 * help-fns.el (help-fns--obsolete): Handle macros properly.
5369
53702012-09-25 Chong Yidong <cyd@gnu.org>
5371
5372 * bookmark.el (bookmark-jump-noselect): Use a declare form to mark
5373 this function obsolete.
5374
5375 * calendar/cal-x.el (calendar-two-frame-setup)
5376 (calendar-only-one-frame-setup, calendar-one-frame-setup):
5377 * calendar/calendar.el (american-calendar, european-calendar)
5378 (calendar-for-loop):
5379 * comint.el (comint-dynamic-simple-complete)
5380 (comint-dynamic-complete-as-filename, comint-unquote-filename):
5381 * desktop.el (desktop-load-default):
5382 * dired-x.el (dired-omit-here-always)
5383 (dired-hack-local-variables, dired-default-directory):
5384 * emacs-lisp/derived.el (derived-mode-class):
5385 * emacs-lisp/timer.el (timer-set-time-with-usecs):
5386 * emacs-lock.el (toggle-emacs-lock):
5387 * epa.el (epa-display-verify-result):
5388 * epg.el (epg-sign-keys, epg-start-sign-keys)
5389 (epg-passphrase-callback-function):
5390 * eshell/esh-util.el (eshell-for):
5391 * eshell/eshell.el (eshell-remove-from-window-buffer-names)
5392 (eshell-add-to-window-buffer-names):
5393 * files.el (locate-file-completion):
5394 * imenu.el (imenu-example--create-c-index)
5395 (imenu-example--create-lisp-index)
5396 (imenu-example--lisp-extract-index-name)
5397 (imenu-example--name-and-position):
5398 * international/mule-cmds.el (princ-list):
5399 * international/mule-diag.el (decode-codepage-char):
5400 * international/mule-util.el (detect-coding-with-priority):
5401 * iswitchb.el (iswitchb-read-buffer):
5402 * mail/mailalias.el (mail-complete):
5403 * mail/sendmail.el (mail-sent-via):
5404 * mouse.el (mouse-popup-menubar-stuff, mouse-popup-menubar)
5405 (mouse-major-mode-menu):
5406 * password-cache.el (password-read-and-add):
5407 * pcomplete.el (pcomplete-parse-comint-arguments):
5408 * progmodes/sh-script.el (sh-maybe-here-document):
5409 * replace.el (query-replace-regexp-eval):
5410 * savehist.el (savehist-load):
5411 * simple.el (choose-completion-delete-max-match):
5412 * term.el (term-dynamic-simple-complete):
5413 * vc/ediff-init.el (ediff-check-version):
5414 * vc/ediff-wind.el (ediff-choose-window-setup-function-automatically):
5415 * vc/vc.el (vc-diff-switches-list):
5416 * view.el (view-return-to-alist-update): Likewise.
5417
5418 * subr.el (eval-next-after-load, makehash, insert-string)
5419 (assoc-ignore-representation, assoc-ignore-case): Use declare to
5420 mark obsolete.
5421 (mode-line-inverse-video): Variable deleted.
5422
5423 * international/mule-util.el (string-to-sequence): Remove.
5424
5425 * calendar/calendar.el (calendar-version):
5426 * calendar/icalendar.el (icalendar-extract-ical-from-buffer)
5427 (icalendar-convert-diary-to-ical):
5428 * cus-edit.el (custom-mode):
5429 * ansi-color.el (ansi-color-unfontify-region):
5430 * international/latin1-disp.el (latin1-char-displayable-p):
5431 * progmodes/cwarn.el (turn-on-cwarn-mode):
5432 * progmodes/which-func.el (which-func-update-1):
5433 Use define-obsolete-function-alias.
5434
5435 * net/newst-backend.el (newsticker-cache-filename):
5436 * net/newst-treeview.el (newsticker-groups-filename):
5437 Fix incorrect obsolescence declaration.
5438
5439 * allout.el (allout-passphrase-hint-string): Likewise.
5440 (allout-init): Use a declare form to mark obsolete.
5441
5442 * emacs-lisp/byte-run.el (make-obsolete): Doc fix; emphasize that
5443 this applies to functions.
5444
5445 * iswitchb.el (iswitchb-read-buffer): Move code of
5446 iswitchb-define-mode-map here, and delete that obsolete function.
5447
5448 * net/snmp-mode.el (snmp-font-lock-keywords-3): Don't use obsolete
5449 font-lock-reference-face.
5450
54512012-09-25 Glenn Morris <rgm@gnu.org>
5452
5453 * buff-menu.el (Buffer-menu-name-width, Buffer-menu-size-width):
5454 Doc fixes.
5455
5456 * eshell/em-term.el (eshell-term-name):
5457 Default to term-term-name. (Bug#12485)
5458
54592012-09-24 Fabián Ezequiel Gallina <fgallina@cuca>
5460
5461 * progmodes/python.el (python-shell-send-buffer): Better handling
5462 of "if __name__ == '__main__':" conditionals when sending the buffer.
5463
54642012-09-24 Glenn Morris <rgm@gnu.org>
5465
5466 * eshell/esh-cmd.el (eshell-find-alias-function):
5467 Tighten up file-name regexp. (Bug#12499)
5468
54692012-09-24 Fabián Ezequiel Gallina <fgallina@cuca>
5470
5471 Enhancements for triple-quote string syntax.
5472 * progmodes/python.el (python-quote-syntax): Remove.
5473 (python-syntax-propertize-function): New value.
5474 (python-syntax-count-quotes, python-syntax-stringify):
5475 New functions.
5476
54772012-09-24 Chong Yidong <cyd@gnu.org>
5478
5479 * mail/supercite.el (sc-version): Remove obsolete function.
5480 (sc-describe): Don't mark as obsolete, since it is bound.
5481 (sc-submit-bug-report): Remove.
5482
5483 * vc/log-edit.el (cvs-changelog-full-paragraphs)
5484 (cvs-commit-buffer-require-final-newline): Remove.
5485 (log-edit-require-final-newline)
5486 (log-edit-changelog-full-paragraphs): Default to t.
5487
5488 * vc/pcvs-defs.el (cvs-diff-buffer-name, cvs-diff-ignore-marks)
5489 * vc/vc-hooks.el (vc-ignore-vc-files, vc-master-templates)
5490 * vc/vc.el (vc-checkout-carefully): Likewise.
5491
5492 * vc/emerge.el (emerge-mode): Make it an obsolete alias.
5493 (emerge-version): Remove.
5494
5495 * progmodes/compile.el (compile-internal): Remove.
5496 (compilation-parse-errors-function): Fix typo.
5497
5498 * international/mule.el (set-char-table-default): Remove.
5499 (set-coding-priority, make-coding-system, generic-char-p)
5500 (charset-list, charset-bytes, charset-id): Use declare to mark
5501 functions as obsolete.
5502
5503 * vc/pcvs-defs.el (cvs-buffer-name-alist)
5504 (cvs-invert-ignore-marks): Remove references to obsolete vars.
5505 * vc/vc-hooks.el (vc-default-registered): Don't use
5506 vc-master-templates.
5507
5508 * font-lock.el (font-lock-reference-face):
5509 Use define-obsolete-variable-alias.
5510
5511 * generic-x.el (rul-generic-mode): Use font-lock-constant-face.
5512 * calendar/calendar.el (calendar-font-lock-keywords):
5513 * calendar/diary-lib.el (diary-font-lock-keywords)
5514 (diary-fancy-font-lock-keywords):
5515 * textmodes/reftex-sel.el (reftex-insert-docstruct):
5516 * textmodes/reftex-index.el (reftex-insert-index):
5517 * textmodes/reftex-cite.el (reftex-format-bib-entry):
5518 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
5519 * progmodes/ps-mode.el (ps-mode-font-lock-keywords-1):
5520 * progmodes/prolog.el (prolog-font-lock-keywords):
5521 * progmodes/idlwave.el (idlwave-idl-keywords):
5522 * progmodes/ada-mode.el (ada-font-lock-keywords):
5523 * net/snmp-mode.el (snmp-font-lock-keywords-3): Likewise.
5524
55252012-09-24 Glenn Morris <rgm@gnu.org>
5526
5527 * mail/emacsbug.el (report-emacs-bug): Include `lsb_release -d'.
5528
55292012-09-23 Fabián Ezequiel Gallina <fgallina@cuca>
5530
5531 * progmodes/python.el (python-indent-line): More consistent cursor
5532 movement behavior.
5533
55342012-09-23 Stefan Merten <smerten@oekonux.de>
5535
5536 * textmodes/rst.el: Fix compiler warning.
5537
55382012-09-23 Roland Winkler <winkler@gnu.org>
5539
5540 * textmodes/bibtex.el (bibtex-autokey-transcriptions):
5541 Transcribe also LaTeX hyphenation.
5542 (bibtex-reformat): Bug fix. Do not quote twice the elements of
5543 bibtex-reformat-previous-options.
5544
55452012-09-23 Roland Winkler <winkler@gnu.org>
5546
5547 * proced.el (proced-renice-command): New variable.
5548 (proced-marked-processes): New function.
5549 (proced-with-processes-buffer): New macro.
5550 (proced-send-signal): Use them.
5551 (proced-renice): New command bound to r.
5552
55532012-09-23 Roland Winkler <winkler@gnu.org>
5554
5555 * ibuf-ext.el (ibuffer-switch-to-saved-filter-groups): If list
5556 ibuffer-saved-filter-groups has one element, shortcut the call of
5557 completing-read. (Bug#12331)
5558
55592012-09-23 Chong Yidong <cyd@gnu.org>
5560
5561 * bindings.el (mode-line-toggle-read-only):
5562 * bs.el (bs-toggle-readonly):
5563 * buff-menu.el (Buffer-menu-toggle-read-only):
5564 * dired.el (dired-toggle-read-only):
5565 * ibuffer.el (ibuffer-do-toggle-read-only): Use read-only-mode.
5566
55672012-09-23 Chong Yidong <cyd@gnu.org>
5568
5569 * image.el (image-type-available-p): Adapt to init-image-library
5570 argument changes.
5571
55722012-09-22 Juri Linkov <juri@jurta.org>
5573
5574 * dired.el (dired-mode-map): Add [remap read-only-mode] for
5575 `dired-toggle-read-only'. (Bug#12462)
5576
55772012-09-22 Martin Rudalics <rudalics@gmx.at>
5578
5579 * subr.el (temp-output-buffer-show): New function.
5580 (with-output-to-temp-buffer): Call temp-output-buffer-show
5581 instead of internal-temp-output-buffer-show.
5582
55832012-09-22 Chong Yidong <cyd@gnu.org>
5584
5585 * files.el (ctl-x-map): Bind C-x C-q to read-only-mode
5586 (Bug#12462).
5587
5588 * repeat.el (repeat): Doc fix (Bug#12348).
5589
5590 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix
5591 (Bug#10909).
5592
5593 * simple.el (shell-command-on-region): Doc fix.
5594 (read-only-mode): Doc fix.
5595
55962012-09-22 Eli Zaretskii <eliz@gnu.org>
5597
5598 * emacs-lisp/timer.el (run-with-idle-timer)
5599 (timer-activate-when-idle): Warn against reinvoking an idle timer
5600 from within its own timer action. (Bug#12447)
5601
56022012-09-22 Martin Rudalics <rudalics@gmx.at>
5603
5604 * cus-start.el (window-combination-limit): Add new optional
5605 values.
5606 * window.el (temp-buffer-window-show)
5607 (window--try-to-split-window): Handle new values of
5608 window-combination-limit (Bug#1806).
5609 (split-window): Test window-combination-limit for t instead of
5610 non-nil.
5611 (display-buffer-at-bottom): New buffer display action function.
5612 * help.el (temp-buffer-resize-regexps): New option.
5613 (temp-buffer-resize-mode): Rewrite doc-string.
5614 (resize-temp-buffer-window): Obey temp-buffer-resize-regexps.
5615 Don't resize reused window. Suggested by Glenn Morris.
5616
56172012-09-22 Stefan Merten <smerten@oekonux.de>
5618
5619 * textmodes/rst.el: Revamp section title faces.
5620 (rst-official-version)
5621 (rst-package-emacs-version-alist): Sync with official version
5622 V1.4.0.
5623 (rst-faces-defaults, rst-set-level-default)
5624 (rst-level-face-max, rst-level-face-base-color)
5625 (rst-level-face-base-light, rst-level-face-format-light)
5626 (rst-level-face-step-light, rst-define-level-faces): Obsolete.
5627 (rst-adornment-faces-alist): Match new setup.
5628 (rst-level-1, rst-level-2, rst-level-3, rst-level-4)
5629 (rst-level-5, rst-level-6): New faces.
5630
56312012-09-22 Chong Yidong <cyd@gnu.org>
5632
5633 * simple.el (undo): Handle indirect buffers (Bug#8207).
5634
56352012-09-21 Leo Liu <sdl.web@gmail.com>
5636
5637 IDO: Disable match re-ordering for buffer switching.
5638 * ido.el (ido-buffer-disable-smart-matches): New variable.
5639 (ido-set-matches-1): Use it. (Bug#2042)
5640
56412012-09-21 Jose Marino <marinoj@nso.edu> (tiny change)
5642
5643 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
5644 Fix 2011-05-17 change. (Bug#12418)
5645
56462012-09-21 Leo Liu <sdl.web@gmail.com>
5647
5648 * subr.el (ignore-errors): Mention with-demoted-errors in doc-string.
5649
56502012-09-21 Glenn Morris <rgm@gnu.org>
5651
5652 * emacs-lisp/shadow.el (load-path-shadows-font-lock-keywords):
5653 Be more robust about locating simple.el.
5654
56552012-09-21 Glenn Morris <rgm@gnu.org>
5656
5657 * mail/emacsbug.el (report-emacs-bug): Trap load-path-shadows errors.
5658
56592012-09-21 Joel Bion <jpbion@westvi.com> (tiny change)
5660
5661 * pcmpl-gnu.el (pcmpl-gnu-tarfile-regexp): Add tar.xz. (Bug#12382)
5662
56632012-09-20 Juri Linkov <juri@jurta.org>
5664
5665 * replace.el (query-replace-read-from): Use `read-regexp' instead
5666 of `read-from-minibuffer' when `regexp-flag' is non-nil.
5667 (occur-read-primary-args): Use `read-regexp' instead of
5668 `read-string'.
5669 (multi-occur-in-matching-buffers): Use `read-regexp' instead of
5670 `read-from-minibuffer'.
5671 * isearch.el (isearch-occur): Use `read-regexp' instead of
5672 `read-string'.
5673 * dired.el (dired-read-regexp): Use `read-regexp' instead of
5674 `read-from-minibuffer'.
5675 * progmodes/grep.el (grep-read-regexp): Use `read-regexp' instead
5676 of `read-string'. (Bug#7567)
5677
5678 * replace.el (read-regexp): Rename DEFAULT-VALUE arg to DEFAULTS
5679 and allow accepting a list of strings prepended to a list of
5680 standard default values. Doc fix. (Bug#12321)
5681
5682 * replace.el (read-regexp): Add HISTORY arg. (Bug#7567)
5683
5684 * replace.el (read-regexp): Don't add ": " when PROMPT already
5685 ends with a colon and space. (Bug#12321)
5686
56872012-09-20 Tassilo Horn <tsdh@gnu.org>
5688
5689 * doc-view.el (doc-view-display): Better fix for the cl-assertion
5690 error.
5691
56922012-09-20 Stefan Merten <smerten@oekonux.de>
5693
5694 * textmodes/rst.el: Integrate support for `imenu' and `which-function'.
5695 Fixes feature request bug#11711.
5696 (rst-mode): Create `imenu-create-index-function'.
5697 (rst-get-stripped-line): Delete after refactoring.
5698 (rst-section-tree, rst-section-tree-rec)
5699 (rst-section-tree-point): Refactor and document properly.
5700 (rst-imenu-find-adornments-for-position)
5701 (rst-imenu-convert-cell, rst-imenu-create-index):
5702 New function.
5703
57042012-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
5705
5706 * emacs-lisp/macroexp.el (macroexp--obsolete-warning): New function.
5707 (macroexp--expand-all): Use it.
5708 (macroexp--funcall-and-return): Remove by folding it into its sole
5709 caller (macroexp--warn-and-return).
5710 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete):
5711 Use macroexp--obsolete-warning.
5712
5713 * calc/calc.el: Fix last change by removing the whole chunk, since it
5714 was only needed back when Calc was not bundled.
5715
57162012-09-20 Martin Rudalics <rudalics@gmx.at>
5717
5718 * emacs-lisp/debug.el (debug): Restore assignment to
5719 debugger-old-buffer removed on 2012-09-08.
5720
57212012-09-20 Juri Linkov <juri@jurta.org>
5722
5723 * dired-aux.el (dired-diff): Remove (require 'diff) since
5724 `diff-latest-backup-file' is now autoloaded.
5725
57262012-09-20 Chong Yidong <cyd@gnu.org>
5727
5728 * vc/diff.el (diff-latest-backup-file): Autoload.
5729
57302012-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
5731
5732 * calc/calc.el: Remove redundant autoload shape check.
5733 (sel-mode): Don't defvar.
5734 (calc-get-stack-element): Add `sel-mode' arg instead.
5735 (calc-top, calc-top-list): Pass it this additional argument.
5736 * calc/calc-store.el (calc-store-map):
5737 * calc/calc-map.el (calc-apply, calc-reduce, calc-map)
5738 (calc-map-equation, calc-outer-product, calc-inner-product):
5739 * calc/calc-aent.el (calc-alg-entry): Don't bind sel-mode.
5740
5741 * emacs-lisp/macroexp.el (macroexp--expand-all): Fix last change.
5742
57432012-09-19 Juri Linkov <juri@jurta.org>
5744
5745 * dired-aux.el (dired-diff): Add (require 'diff) because
5746 `diff-latest-backup-file' is not autoloaded.
5747 (dired-do-chxxx, dired-do-chmod): Set `no-error-if-not-filep' arg
5748 of `dired-get-filename' to t to not report error when there is
5749 no default file on the current line.
5750
57512012-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
5752
5753 * emacs-lisp/macroexp.el (macroexp--funcall-if-compiled): Rename from
5754 macroexp--eval-if-compile.
5755 (macroexp--funcall-and-return, macroexp--warn-and-return): New funs.
5756 (macroexp--expand-all): Use them (bug#12371).
5757
5758 * doc-view.el (doc-view-guess-paper-size)
5759 (doc-view-scale-bounding-box): Fix unbound `caddr'.
5760
57612012-09-19 Tassilo Horn <tsdh@gnu.org>
5762
5763 New feature: set optimal slice from BoundingBox information.
5764 * doc-view.el (doc-view-mode-map): Add keybinding.
5765 (doc-view-menu): Add menu entry.
5766 (doc-view-set-slice): Adapt docstring.
5767 (doc-view-get-bounding-box, doc-view-guess-paper-size)
5768 (doc-view-scale-bounding-box)
5769 (doc-view-set-slice-from-bounding-box): New functions.
5770 (doc-view-paper-sizes): New defvar.
5771
57722012-09-19 Glenn Morris <rgm@gnu.org>
5773
5774 * emacs-lisp/macroexp.el (byte-compile-warn-obsolete)
5775 (byte-compile-log-warning): Autoload. (Bug#12371)
5776
5777 * calendar/calendar.el (calendar-american-month-header)
5778 (calendar-european-month-header, calendar-iso-month-header)
5779 (calendar-month-header): New options.
5780 (calendar-set-date-style): Set calendar-month-header. Redraw calendar.
5781 (calendar-generate-month): Use calendar-month-header. (Bug#9510)
5782
57832012-09-19 Jan Djärv <jan.h.d@swipnet.se>
5784
5785 * startup.el (command-line-ns-option-alist): Add -g and --geometry.
5786
57872012-09-18 Juri Linkov <juri@jurta.org>
5788
5789 * dired-aux.el (dired-diff): Restore original functionality of
5790 getting the default value, but keep new feature of using the
5791 latest existing backup file (`diff-latest-backup-file').
5792
57932012-09-18 Juri Linkov <juri@jurta.org>
5794
5795 * dired.el (dired-mark): If the region is active in Transient Mark
5796 mode, mark all files in the active region. Doc fix.
5797 (dired-unmark, dired-flag-file-deletion, dired-unmark-backward):
5798 Doc fix. (Bug#10624)
5799
58002012-09-18 Juri Linkov <juri@jurta.org>
5801
5802 * dired-aux.el (dired-do-chxxx, dired-do-chmod): Default file
5803 attributes for M-n are pulled from the file at point.
5804 (dired-do-chgrp, dired-do-chown, dired-do-touch): Doc fix.
5805 Suggested by Drew Adams. (Bug#10624)
5806
58072012-09-18 Dmitry Gutov <dgutov@yandex.ru>
5808
5809 * progmodes/ruby-mode.el (ruby-brace-to-do-end): Don't add extra
5810 whitespace after "end".
5811 (ruby-do-end-to-brace): Collapse block to one line if it fits
5812 within fill-column.
5813
58142012-09-18 Martin Rudalics <rudalics@gmx.at>
5815
5816 * emacs-lisp/debug.el (debugger-bury-or-kill): Fix customization
5817 value.
5818 (debug): Don't remove debugger window when debugger is expected
5819 to be back.
5820
58212012-09-18 Chong Yidong <cyd@gnu.org>
5822
5823 * custom.el (defface): Doc fix.
5824
5825 * cus-edit.el (custom-unlispify-remove-prefixes): Add warning.
5826
58272012-09-18 Martin Blais <blais@furius.ca> (tiny change)
5828
5829 * progmodes/compile.el (compilation-start): Use compilation-always-kill
5830 to initialize query-on-exit; then test that instead (bug#12288).
5831
58322012-09-17 Stefan Merten <smerten@oekonux.de>
5833
5834 * textmodes/rst.el: Add support for `testcover'.
5835 (rst-defcustom-testcover, rst-testcover-add-compose)
5836 (rst-testcover-add-1value): New functions.
5837 (rst-portable-mark-active-p): Replace by `use-region-p'.
5838 (rst-update-section, rst-classify-adornment)
5839 (rst-find-title-line): Mark `1value' forms.
5840 (rst-classify-adornment): Remove superfluous form.
5841 (rst-update-section, rst-get-adornments-around)
5842 (rst-adornment-complete-p, rst-get-next-adornment)
5843 (rst-adjust, rst-promote-region)
5844 (rst-display-adornments-hierarchy, rst-straighten-adornments)
5845 (rst-find-pfx-in-region, rst-section-tree-rec)
5846 (rst-section-tree-point, rst-toc-insert, rst-toc-insert-node)
5847 (rst-toc-node, rst-toc, rst-forward-section)
5848 (rst-iterate-leftmost-paragraphs)
5849 (rst-iterate-leftmost-paragraphs-2, rst-enumerate-region)
5850 (rst-bullet-list-region)
5851 (rst-convert-bullets-to-enumeration, rst-font-lock-keywords)
5852 (rst-compile-find-conf, rst-compile)
5853 (rst-repeat-last-character): Fix style.
5854
58552012-09-17 Chong Yidong <cyd@gnu.org>
5856
5857 * comint.el (comint--complete-file-name-data): Don't add a space
5858 if the status is `sole'; that adds a gratuitous space in the
5859 completion-cycling case (Bug#12092).
5860
5861 * pcomplete.el (pcomplete-completions-at-point): Likewise.
5862
58632012-09-17 Richard Stallman <rms@gnu.org>
5864
5865 * mail/rmailmm.el (rmail-mime-toggle-raw): Do rmail-mime-insert
5866 only in the mime-shown mode, not in raw mode.
5867 (rmail-mime): Toggle off mime by displaying the message without
5868 mime processing. (Bug#12305)
5869
5870 * mail/rmail.el (rmail-retry-failure):
5871 Turn off mime processing first. (Bug#12037)
5872
5873 * epa-mail.el (epa-mail-encrypt): Fix bug when a name has no key.
5874
58752012-09-17 Chong Yidong <cyd@gnu.org>
5876
5877 * shell.el (shell-file-name-chars, shell-file-name-quote-list)
5878 (shell-dynamic-complete-functions): Convert to defcustom.
5879 (shell-prompt-pattern, shell-completion-fignore): Doc fix.
5880
5881 * bookmark.el (bookmark-bmenu-toggle-filenames): Doc fixes.
5882 * comint.el (comint-prompt-read-only):
5883 * custom.el (defcustom):
5884 * hi-lock.el (hi-lock-mode):
5885 * ibuffer.el (ibuffer-formats):
5886 * ielm.el (ielm-prompt-read-only):
5887 * novice.el (disable-command):
5888 * saveplace.el (toggle-save-place):
5889 * speedbar.el (speedbar-supported-extension-expressions):
5890 * startup.el (auto-save-list-file-prefix, init-file-user)
5891 (after-init-hook, inhibit-startup-echo-area-message):
5892 * strokes.el (strokes-help):
5893 * time-stamp.el (time-stamp):
5894 * calendar/calendar.el (calendar, diary-file):
5895 * calendar/diary-lib.el (diary-mail-entries, diary)
5896 (diary-list-entries-hook):
5897 * calendar/holidays.el (holidays, calendar-holidays):
5898 * calendar/lunar.el (lunar-phases):
5899 * calendar/solar.el (sunrise-sunset):
5900 * emulation/edt.el (edt-load-keys):
5901 * emulation/viper.el (viper-mode):
5902 * eshell/em-alias.el (eshell-command-aliases-list):
5903 * eshell/esh-util.el (eshell-convert-numeric-arguments):
5904 * international/ogonek.el (ogonek-information):
5905 * net/tramp-cmds.el (tramp-bug):
5906 * net/quickurl.el (quickurl-reread-hook-postfix):
5907 * play/decipher.el (decipher-font-lock-keywords):
5908 * progmodes/cc-styles.el (c-set-style):
5909 * progmodes/idlw-shell.el (idlwave-shell-prompt-pattern):
5910 * progmodes/inf-lisp.el (inferior-lisp-prompt):
5911 * progmodes/octave-mod.el (octave-mode):
5912 * progmodes/sql.el (sql-mode, sql-interactive-mode, sql-password):
5913 * progmodes/verilog-mode.el (verilog-read-defines):
5914 * textmodes/two-column.el (2C-mode): Likewise.
5915
59162012-09-16 Katsumi Yamaoka <yamaoka@jpl.org>
5917
5918 * mail/mailabbrev.el (mail-abbrev-expand-hook): Work for a mail aliasee
5919 that holds many addresses.
5920
59212012-09-16 Chong Yidong <cyd@gnu.org>
5922
5923 * align.el (align-areas): Call the indication function with
5924 positions instead of markers for arguments (Bug#12343).
5925
5926 * files.el (parse-colon-path): Use split-string (Bug#12351).
5927
5928 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
5929 (display-buffer-function): Mark as obsolete.
5930
5931 * progmodes/compile.el (compilation-parse-errors): Accept list
5932 values similar to font-lock-keywords (Bug#12136).
5933 Suggested by Oleksandr Manzyuk.
5934 (compilation-error-regexp-alist): Doc fix.
5935
59362012-09-15 Glenn Morris <rgm@gnu.org>
5937
5938 * version.el (emacs-bzr-version-bzr): New function.
5939 (emacs-bzr-get-version): Add optional EXTERNAL argument.
5940
5941 * vc/vc-bzr.el (vc-bzr-working-revision): For lightweight local
5942 checkouts, check the parent dirstate matches the branch.
5943 Add "--tree" to "bzr revno" arguments. Don't try to shorten the
5944 empty string.
5945
5946 * version.el (emacs-bzr-version): Doc fix.
5947 (emacs-bzr-version-dirstate): New function.
5948 (emacs-bzr-get-version): For lightweight checkouts, if the parent
5949 is local try and check that it matches the branch. If not, just
5950 use dirstate information. (Bug#12441)
5951
59522012-09-14 Juri Linkov <juri@jurta.org>
5953
5954 * dired-aux.el (dired-do-chmod): Use `eq' to detect empty input.
5955 (Bug#12399)
5956
59572012-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
5958
5959 * emacs-lisp/advice.el (ad-prognify): Remove, use macroexp-progn.
5960
5961 * emacs-lisp/edebug.el: Miscellaneous cleanup.
5962 Remove obsolete byte-compiler hack that tried to silence some warnings.
5963 (edebug-submit-bug-report): Remove.
5964 (edebug-get-buffer-window, edebug-sit-for, edebug-input-pending-p):
5965 Remove aliases, use the un-prefixed name instead.
5966 (edebug-pop-to-buffer): Consider other frames.
5967 (edebug-original-read):: Make it more obvious that it's always defined.
5968 (edebug--make-form-data-entry, edebug--form-data-name)
5969 (edebug--form-data-begin, edebug--form-data-end): Rename from the
5970 single-dashed name, and implement with cl-defstruct.
5971 (edebug-set-form-data-entry): Use the standard accessors.
5972 (edebug-make-top-form-data-entry): Use push.
5973 (edebug-no-match): Drop useless `funcall'.
5974 (mapcar, mapconcat, mapatoms, apply, funcall): Don't add debug specs
5975 to functions.
5976 (defsubst, dont-compile, eval-when-compile, eval-and-compile)
5977 (delay-mode-hooks, with-temp-file, with-temp-message, ad-dolist)
5978 (with-syntax-table, push, pop, 1value, noreturn, defadvice)
5979 (easy-menu-define, with-custom-print): Remove redundant specs.
5980 (edebug-outside-overriding-local-map)
5981 (edebug-outside-overriding-terminal-local-map): Remove, unused.
5982 (edebug--display): Bind unread-command-events directly to nil rather
5983 than binding it to unread-command-events and later setting it to nil.
5984 (edebug--display): Kill edebug-eval-buffer here...
5985 (edebug--recursive-edit): ...rather than here.
5986 Bind standard-output and standard-input.
5987 (edebug-eval): Check cl-macroexpand-all is fboundp.
5988 (edebug-temp-display-freq-count): Fix last change.
5989
5990 * emacs-lisp/easymenu.el (easy-menu-define): Add `debug' spec.
5991 * subr.el (noreturn, 1value): Add `debug' spec.
5992 * emacs-lisp/advice.el: Require cl-lib.
5993 (ad-copy-tree): Remove, use copy-tree instead.
5994 (ad-dolist): Remove use dolist or cl-dolist instead.
5995 (ad-do-return): Remove, use cl-return instead.
5996 (defadvice): Add `debug' spec.
5997
59982012-09-13 Juri Linkov <juri@jurta.org>
5999
6000 * dired-aux.el (dired-do-chxxx): Use `eq' to detect empty input.
6001 (Bug#12399)
6002
60032012-09-13 Glenn Morris <rgm@gnu.org>
6004
6005 * calc/calc.el (math-compose-expr):
6006 * calc/calc-ext.el (math-compose-expr):
6007 * progmodes/cc-defs.el (cl-macroexpand-all):
6008 * progmodes/cc-langs.el (delete-duplicates, mapcan)
6009 (cl-macroexpand-all): Update declarations.
6010
6011 * vc/vc.el: No need to require ediff.
6012 (ediff-load-version-control): Declare.
6013 (ediff-vc-internal): Fix declaration.
6014 (vc-version-ediff): Require ediff.
6015
60162012-09-13 Paul Eggert <eggert@cs.ucla.edu>
6017
6018 Use a more backwards-compatible timer format (Bug#12430).
6019 * emacs-lisp/timer.el (timer): PSECS is now at the end, rather than
6020 being right after USECS, as that better supports old code that
6021 inadvisedly looked directly at the timer vector.
6022
60232012-09-13 Kenichi Handa <handa@gnu.org>
6024
6025 * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
6026 ("Chinese-CNS", "Chinese-EUC-TW"): Add chinese-gbk to
6027 `coding-priority' property of these language environment.
6028
60292012-09-13 Paul Eggert <eggert@cs.ucla.edu>
6030
6031 Fix glitches caused by addition of psec to timers (Bug#12430).
6032 * image.el (image-animate-timer):
6033 * time.el (display-time-world-timer):
6034 Use timer--function and timer--args rather than raw access to
6035 timer vector.
6036
60372012-09-13 Glenn Morris <rgm@gnu.org>
6038
6039 * emacs-lisp/bytecomp.el (byte-compile-warning-prefix):
6040 If not compiling a file, try using load-file-name.
6041
60422012-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
6043
6044 * emacs-lisp/edebug.el (edebug-outside-unread-command-events):
6045 Fix last change.
6046 (edebug-update-eval-list): Use `push'.
6047
6048 * emacs-lisp/edebug.el: Use lexical-binding.
6049 Remove the "edebug-" prefix from non-dynamically-scoped variables.
6050 Mark unused args with underscore.
6051 (edebug-save-restriction, edebug-outside-excursion): Use `declare'.
6052 (edebug-form-data): Use defvar-local.
6053 (edebug-make-before-and-after-form, edebug-make-after-form):
6054 Use backquote.
6055 (edebug-args, edebug-value, edebug-after-index, edebug-arg-mode):
6056 Not dynamically scoped any more.
6057 (edebug--enter-trace): Add arguments `function' and `args'.
6058 Rename from edebug-enter-trace.
6059 (edebug-enter): Call it accordingly. Bind edebug-function explicitly.
6060 (edebug--update-coverage): Add `after-index' and `value' args.
6061 Rename from edebug-update-coverage.
6062 (edebug-slow-after): Call it accordingly.
6063 (edebug--recursive-edit): Add arg `arg-mode'. Rename from
6064 edebug-recursive-edit.
6065 (edebug--display): Call it accordingly. Add args `value',
6066 `offset-index', and `arg-mode'. Rename from edebug-display.
6067 (edebug-debugger, edebug): Call it accordingly.
6068 (edebug-eval-display-list): Use dolist.
6069
60702012-09-12 Juri Linkov <juri@jurta.org>
6071
6072 * info.el (Info-search): Don't check for isearch-mode and
6073 isearch-regexp before let-binding search-spaces-regexp to
6074 Info-search-whitespace-regexp.
6075 (Info-isearch-search): Let-bind Info-search-whitespace-regexp to
6076 search-whitespace-regexp if isearch-lax-whitespace or
6077 isearch-regexp-lax-whitespace is non-nil.
6078 (Info-mode): Don't set local variable search-whitespace-regexp.
6079 http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00811.html
6080
60812012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
6082
6083 * emacs-lisp/debug.el (debugger-outer-unread-command-char, debug)
6084 (debugger-env-macro): Remove support for unread-command-char.
6085
6086 * subr.el (set-temporary-overlay-map): Minimize slightly the impact of
6087 the temporary map re-appearing on emulation-mode-map-alists.
6088
6089 * emacs-lisp/edebug.el (def-edebug-form-spec): Remove, it's been broken
6090 since 22.1.
6091
6092 * ehelp.el (with-electric-help): Accept functions in
6093 electric-help-form-to-execute.
6094 (electric-help-execute-extended, electric-help-ctrl-x-prefix): Use it.
6095 And replace unread-command-char -> unread-command-events.
6096
60972012-09-12 Michael Albinus <michael.albinus@gmx.de>
6098
6099 Sync with Tramp 2.2.6.
6100
6101 * net/tramp.el (tramp-accept-process-output): Don't use
6102 JUST-THIS-ONE in the XEmacs case.
6103
6104 * net/trampver.el: Update release number.
6105
61062012-09-12 Martin Rudalics <rudalics@gmx.at>
6107
6108 * emacs-lisp/debug.el (debugger-previous-window-height):
6109 New variable.
6110 (debug): When debugger-jumping-flag is non-nil try to restore
6111 height of debugger window. (Bug#8789)
6112
61132012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
6114
6115 * emacs-lisp/edebug.el (edebug-enter): Don't mess with
6116 overriding-local-map and pre/post-command-hook here.
6117 (edebug-recursive-edit): Do it here instead (bug#12345).
6118 (edebug-outside-unread-command-char): Remove all uses of
6119 unread-command-char.
6120
6121 * emacs-lisp/debug.el (debug): Don't bind debug-on-error since
6122 inhibit-debugger is bound instead.
6123
61242012-09-11 Bastien Guerry <bzg@gnu.org>
6125
6126 * subr.el (set-temporary-overlay-map): Add a docstring.
6127 (Bug#12346)
6128
61292012-09-11 Bastien Guerry <bzg@gnu.org>
6130
6131 * minibuffer.el (completion-table-subvert): Fix docstring.
6132 (Bug#12347)
6133
61342012-09-11 Bastien Guerry <bzg@gnu.org>
6135
6136 * help-fns.el (describe-variable): Fix typo. (Bug#12346)
6137
61382012-09-10 Michael R. Mauger <mmaug@yahoo.com>
6139
6140 * progmodes/sql.el: Version 3.1
6141 (sql-db2-escape-newlines): New variable.
6142 (sql-escape-newlines-filter): Use it.
6143
61442012-09-10 Juanma Barranquero <lekktu@gmail.com>
6145
6146 * custom.el (custom-theme-load-confirm): Remove unneeded assignment.
6147
61482012-09-10 Dan Nicolaescu <dann@gnu.org>
6149
6150 * vc/diff-mode.el (diff-mode-menu):
6151 Bind diff-remove-trailing-whitespace.
6152
61532012-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
6154
6155 * emacs-lisp/lisp-mode.el (emacs-list-byte-code-comment-re): New var.
6156 (emacs-lisp-byte-code-comment, emacs-lisp-byte-code-syntax-propertize)
6157 (emacs-lisp-byte-code-mode): New functions.
6158 (eval-sexp-add-defvars): Don't skip defvars in column >0.
6159 (eval-defun-2): Remove bogus interactive spec.
6160 (lisp-indent-line): Remove redundant whole-exp code, now done in
6161 indent-according-to-mode.
6162 (save-match-data): Remove redundant indent data.
6163
6164 * emacs-lisp/benchmark.el (benchmark-run, benchmark-run-compiled):
6165 Use `declare'.
6166
61672012-09-09 Juri Linkov <juri@jurta.org>
6168
6169 * replace.el (replace-regexp-lax-whitespace): New defcustom.
6170 (replace-lax-whitespace, query-replace-regexp)
6171 (query-replace-regexp-eval, replace-regexp): Doc fix.
6172 (perform-replace, replace-highlight): Let-bind
6173 isearch-lax-whitespace to replace-lax-whitespace and
6174 isearch-regexp-lax-whitespace to replace-regexp-lax-whitespace.
6175
6176 * isearch.el (isearch-query-replace): Let-bind
6177 replace-lax-whitespace to isearch-lax-whitespace and
6178 replace-regexp-lax-whitespace to
6179 isearch-regexp-lax-whitespace. (Bug#10885)
6180
61812012-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
6182
6183 * eshell/em-unix.el (eshell/sudo): Explicitly drop return value.
6184
61852012-09-09 Alan Mackenzie <acm@muc.de>
6186
6187 * progmodes/cc-engine.el (c-state-cache-init):
6188 Initialise c-state-semi-nonlit-pos-cache\(-limit\)? properly.
6189 (c-record-parse-state-state):
6190 Record c-state-semi-nonlit-pos-cache\(-limit\)?.
6191
61922012-09-09 Andreas Schwab <schwab@linux-m68k.org>
6193
6194 * register.el (register-separator): Rename from
6195 separator-register. All uses changed. Doc fix.
6196 (register): Fix version.
6197
61982012-09-09 Chong Yidong <cyd@gnu.org>
6199
6200 * replace.el (query-replace-map): Bind four new symbols for
6201 requesting window scrolling.
6202
6203 * subr.el (y-or-n-p): Handle the window-scrolling bindings in
6204 query-replace-map (Bug#8948).
6205
6206 * custom.el (custom-theme-load-confirm): Use y-or-n-p.
6207
6208 * emacs-lisp/map-ynp.el (map-y-or-n-p): Don't bind scrolling keys
6209 since they are now in query-replace-map.
6210
6211 * window.el (scroll-other-window-down): Make the arg optional.
6212
62132012-09-09 Chong Yidong <cyd@gnu.org>
6214
6215 * files.el (hack-local-variables-confirm): Use quit-window to kill
6216 the *Local Variables* buffer.
6217
62182012-09-08 Dmitry Gutov <dgutov@yandex.ru>
6219
6220 * progmodes/ruby-mode.el (ruby-toggle-block): Guess the current block,
6221 not just expect to be at its beginning. Adjust callees.
6222 Succeed when do-end block has no space before the pipe character.
6223 (ruby-brace-to-do-end): When the original block is one-liner,
6224 convert to multiline. Reindent the result.
6225
62262012-09-08 Jambunathan K <kjambunathan@gmail.com>
6227
6228 * register.el (register): New group.
6229 (separator-register): New user option.
6230 (increment-register): Route it to `append-to-register', if
6231 register contains text. Implication is that `C-x r +' can now be
6232 used for appending to a text register (bug#12217).
6233 (append-to-register, prepend-to-register): Add separator based on
6234 `separator-register'.
6235
62362012-09-08 Alan Mackenzie <acm@muc.de>
6237
6238 AWK Mode: make auto-newline work when there's "==" in the pattern.
6239 * progmodes/cc-cmds.el (c-point-syntax): Handle virtual semicolons
6240 correctly.
6241 * progmodes/cc-engine.el (c-guess-basic-syntax CASE 5A.3):
6242 Test more rigorously for "=" token.
6243
62442012-09-08 Dmitry Gutov <dgutov@yandex.ru>
6245
6246 * progmodes/ruby-mode.el (ruby-match-expression-expansion):
6247 Only fail when reached LIMIT.
6248
62492012-09-08 Chong Yidong <cyd@gnu.org>
6250
6251 * dired.el (dired-mode-map): Don't bind M-=.
6252
6253 * dired-aux.el (dired-diff): Use backup file as default.
6254
62552012-09-08 Drew Adams <drew.adams@oracle.com>
6256
6257 * subr.el (add-to-history): Fix delete usage (Bug#12314).
6258
62592012-09-08 Chong Yidong <cyd@gnu.org>
6260
6261 * subr.el (syntax-after, syntax-class): Doc fix.
6262
62632012-09-08 Martin Rudalics <rudalics@gmx.at>
6264
6265 * window.el (display-buffer-in-previous-window): New buffer
6266 display action function.
6267
6268 * emacs-lisp/debug.el (debugger-bury-or-kill): New option.
6269 (debugger-previous-window): New variable.
6270 (debug): Rewrite using display-buffer-in-previous-window,
6271 quit-restore-window and debugger-bury-or-kill. (Bug#8789)
6272
62732012-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
6274
6275 * emacs-lisp/byte-run.el (defun): Tweak message. Simplify code.
6276
62772012-09-07 Matt McClure <mlm@aya.yale.edu> (tiny change)
6278
6279 * progmodes/python.el (python-shell-send-string):
6280 When default-directory is remote, create temp file on remote
6281 filesystem.
6282 (python-shell-send-file): When file is remote, pass local view of
6283 file paths to remote Python interpreter. (Bug#12340)
6284
62852012-09-07 Chong Yidong <cyd@gnu.org>
6286
6287 * window.el (switch-to-buffer): Doc fix (Bug#12181).
6288
6289 * files.el (after-find-file): Don't fail on a read-only buffer if
6290 require-final-newline is `visit' or `visit-save' (Bug#11156).
6291
6292 * subr.el (read-char-choice): Allow quitting via ESC ESC.
6293
6294 * userlock.el (ask-user-about-supersession-threat):
6295 Use read-char-choice (Bug#12093).
6296
62972012-09-07 Chong Yidong <cyd@gnu.org>
6298
6299 * subr.el (buffer-narrowed-p): New function.
6300
6301 * ses.el (ses-widen):
6302 * simple.el (count-words--buffer-message):
6303 * net/browse-url.el (browse-url-of-buffer): Use it.
6304
6305 * simple.el (count-words-region): Don't signal an error if there
6306 is a non-nil prefix arg and the mark is not set.
6307
6308 * help.el (describe-key-briefly): Allow the message to be seen
6309 when invoked from the minibuffer (Bug#7014).
6310
63112012-09-07 Dmitry Gutov <dgutov@yandex.ru>
6312
6313 * progmodes/ruby-mode.el (ruby-end-of-defun)
6314 (ruby-beginning-of-defun): Simplify, allow indentation before
6315 block beginning and end keywords.
6316 (ruby-beginning-of-defun): Only consider 3 keywords defun beginners.
6317 (ruby-end-of-defun): Expect that the point is at the beginning of
6318 the defun.
6319
63202012-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
6321
6322 * emacs-lisp/cl-macs.el (cl--do-arglist): Understand _ on &key args
6323 (bug#12367).
6324 (cl--make-usage-args): Strip _ from argument names.
6325
63262012-09-06 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
6327
6328 * progmodes/vhdl-mode.el (vhdl-speedbar-initialize): Don't use
6329 obsolete alias speedbar-key-map.
6330 (vhdl-doc-variable, vhdl-doc-mode): Use called-interactively-p.
6331 (vhdl-index-menu-init): Don't use obsolete variable
6332 font-lock-maximum-size.
6333
63342012-09-06 Chong Yidong <cyd@gnu.org>
6335
6336 * frame.el (window-system-version): Mark as obsolete.
6337
6338 * speedbar.el (speedbar-update-flag, speedbar-mode): Remove uses
6339 of obsolete variable speedbar-key-map.
6340
63412012-09-06 Juri Linkov <juri@jurta.org>
6342
6343 * replace.el (replace-lax-whitespace): New defcustom.
6344 (query-replace, query-replace-regexp, query-replace-regexp-eval)
6345 (replace-string, replace-regexp): Mention it in docstrings.
6346 (perform-replace, replace-highlight): Let-bind
6347 isearch-lax-whitespace and isearch-regexp-lax-whitespace according
6348 to the values of replace-lax-whitespace and regexp-flag.
6349 Don't let-bind search-whitespace-regexp. (Bug#10885)
6350
6351 * isearch.el (isearch-query-replace): Let-bind
6352 replace-lax-whitespace instead of let-binding
6353 replace-search-function and replace-re-search-function.
6354 (isearch-lazy-highlight-search): Let-bind isearch-lax-whitespace
6355 and isearch-regexp-lax-whitespace to lazy-highlight variables.
6356 (isearch-toggle-symbol): Set isearch-regexp to nil
6357 in isearch-word mode (like in isearch-toggle-word).
6358
63592012-09-06 Juri Linkov <juri@jurta.org>
6360
6361 * replace.el (replace-search-function)
6362 (replace-re-search-function): Set default values to nil.
6363 (perform-replace): Let-bind isearch-related variables based on
6364 replace-related values, call `isearch-search-fun' and let-bind
6365 the result to `search-function'. Remove code that sets
6366 `search-function' and `search-string' separately for
6367 `delimited-flag'.
6368 (replace-highlight): Add new argument `delimited-flag' and
6369 rename other arguments to the names used in `perform-replace'.
6370 Let-bind `isearch-word' to the argument `delimited-flag'.
6371 (Bug#10885, bug#10887)
6372
63732012-09-07 Dmitry Gutov <dgutov@yandex.ru>
6374
6375 * progmodes/ruby-mode.el (ruby-indent-beg-re): Add pieces from
6376 ruby-beginning-of-indent, simplify, allow all keywords to have
6377 indentation before them.
6378 (ruby-beginning-of-indent): Adjust for above. Search until the
6379 found point is not inside a string or comment.
6380 (ruby-font-lock-keywords): Allow symbols to start with "@"
6381 character, give them higher priority than variables.
6382 (ruby-syntax-propertize-function)
6383 (ruby-font-lock-syntactic-keywords): Remove the "not comments"
6384 matchers. Expression expansions are not comments when inside a
6385 string, and there comment syntax status is irrelevant.
6386 (ruby-match-expression-expansion): New function. Check that
6387 expression expansion is inside a string, and it's not escaped.
6388 (ruby-font-lock-keywords): Use it.
6389
63902012-09-05 Martin Rudalics <rudalics@gmx.at>
6391
6392 * help.el (temp-buffer-max-height): New default value.
6393 (temp-buffer-resize-frames): New option.
6394 (resize-temp-buffer-window): Optionally resize frame.
6395
6396 * window.el (fit-frame-to-buffer-bottom-margin): New option.
6397 (fit-frame-to-buffer): New function.
6398
63992012-09-05 Glenn Morris <rgm@gnu.org>
6400
6401 * emulation/cua-rect.el (cua--init-rectangles):
6402 * textmodes/picture.el (picture-mode-map):
6403 * play/blackbox.el (blackbox-mode-map): Remap right-char and left-char
6404 like forward-char and backward-char. (Bug#12317)
6405
64062012-09-05 Leo Liu <sdl.web@gmail.com>
6407
6408 * progmodes/flymake.el (flymake-warning-re): New variable.
6409 (flymake-parse-line): Use it.
6410
64112012-09-05 Glenn Morris <rgm@gnu.org>
6412
6413 * calendar/holidays.el (holiday-christian-holidays):
6414 Rename an entry. (Bug#12289)
6415
64162012-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
6417
6418 * progmodes/sh-script.el (sh-font-lock-paren): Don't burp at BOB
6419 (bug#12222).
6420
64212012-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
6422
6423 * loadup.el: Load macroexp. Remove hack.
6424 * emacs-lisp/macroexp.el (macroexp--eval-if-compile): New function.
6425 (macroexp--expand-all): Use it to get better warnings.
6426 (macroexp--backtrace, macroexp--trim-backtrace-frame)
6427 (internal-macroexpand-for-load): New functions.
6428 (macroexp--pending-eager-loads): New var.
6429 (emacs-startup-hook): New hack to replace one in loadup.el.
6430 * emacs-lisp/cl-macs.el (cl--compiler-macro-list*)
6431 (cl--compiler-macro-cXXr): Move to top, before they can be used.
6432 (cl-psetf): Simplify.
6433 (cl-defstruct): Add indent rule.
6434
64352012-09-04 Lars Ingebrigtsen <larsi@gnus.org>
6436
6437 * mail/smtpmail.el (smtpmail-send-it): Prefer the From: header
6438 over `user-mail-address' for the SMTP MAIL FROM envelope.
6439 (smtpmail-via-smtp): Ditto.
6440
64412012-09-04 Dmitry Gutov <dgutov@yandex.ru>
6442
6443 * progmodes/ruby-mode.el: Clean up keybindings.
6444 (ruby-mode-map): Don't bind ruby-electric-brace,
6445 ruby-beginning-of-defun, ruby-end-of-defun, ruby-mark-defun,
6446 backward-kill-word, reindent-then-newline-and-indent.
6447 (ruby-mark-defun): Remove.
6448 (ruby-electric-brace): Remove. Obsoleted by electric-indent-chars.
6449 (ruby-mode): Set local beginning-of-defun-function and
6450 end-of-defun-function values.
6451
64522012-09-03 Martin Rudalics <rudalics@gmx.at>
6453
6454 * window.el (temp-buffer-window-setup-hook)
6455 (temp-buffer-window-show-hook): New hooks.
6456 (temp-buffer-window-setup, temp-buffer-window-show)
6457 (with-temp-buffer-window): New functions.
6458 (fit-window-to-buffer): Remove unused optional argument OVERRIDE.
6459 (special-display-popup-frame): Make sure the window used shows BUFFER.
6460
6461 * help.el (temp-buffer-resize-mode): Fix doc-string.
6462 (resize-temp-buffer-window): New optional argument WINDOW.
6463
6464 * files.el (recover-file, save-buffers-kill-emacs):
6465 * dired.el (dired-mark-pop-up): Use with-temp-buffer-window.
6466
64672012-09-02 Michael Albinus <michael.albinus@gmx.de>
6468
6469 * eshell/em-unix.el (eshell/sudo): When we have an ad-hoc
6470 remote definition of `default-directory', ensure we can connect.
6471
64722012-09-02 Juri Linkov <juri@jurta.org>
6473
6474 Toggle whitespace matching mode with M-s SPC.
6475 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00008.html
6476
6477 * isearch.el (search-whitespace-regexp): Doc fix.
6478 Remove cons cell customization.
6479 (isearch-mode-map): Bind "\M-s " to isearch-toggle-lax-whitespace.
6480 (isearch-lax-whitespace, isearch-regexp-lax-whitespace):
6481 New variables.
6482 (isearch-forward, isearch-forward-regexp): Doc fix.
6483 (isearch-toggle-lax-whitespace): New command.
6484 (search-forward-lax-whitespace, search-backward-lax-whitespace)
6485 (re-search-forward-lax-whitespace)
6486 (re-search-backward-lax-whitespace): New functions.
6487 (isearch-whitespace-regexp): Remove function.
6488 (isearch-query-replace): Let-bind replace-search-function and
6489 replace-re-search-function.
6490 (isearch-occur): Let-bind search-spaces-regexp according to the
6491 value of isearch-lax-whitespace and isearch-regexp-lax-whitespace.
6492 (isearch-quote-char): Check isearch-regexp-lax-whitespace in the
6493 condition for C-q SPC.
6494 (isearch-search-fun-default): Use new functions mentioned above.
6495 (isearch-search-forward, isearch-search-backward): Remove functions.
6496 (isearch-search): Don't let-bind search-spaces-regexp.
6497 (isearch-lazy-highlight-space-regexp): Remove variable.
6498 (isearch-lazy-highlight-lax-whitespace)
6499 (isearch-lazy-highlight-regexp-lax-whitespace): New variables.
6500 (isearch-lazy-highlight-new-loop): Use them.
6501 (isearch-lazy-highlight-search): Don't let-bind search-spaces-regexp.
6502
65032012-09-02 Chong Yidong <cyd@gnu.org>
6504
6505 * dired.el (dired-mode-map): Menu string fixes (Bug#11616).
6506
65072012-09-02 Glenn Morris <rgm@gnu.org>
6508
6509 * simple.el (undo): Tweak message in undo-only case. (Bug#12283)
6510
65112012-09-01 Glenn Morris <rgm@gnu.org>
6512
6513 * term.el: Tidy up menu definitions.
6514 (term-mode-map): Use easymenu for In/Out, Complete menus.
6515 (term-pager-break-map): Initialize in the defvar.
6516 (term-terminal-menu, term-signals-menu): Define with easymenu.
6517 (term-terminal-menu): Also show it in line-mode. (Bug#11957)
6518 (term-pager-menu): New, extracted from term-process-pager.
6519 (term-mode, term-char-mode, term-process-pager): Use easymenu-add.
6520 (term-update-mode-line): Propertize line/char and page items.
6521 (term-process-pager): Move keymap initialization elsewhere.
6522
65232012-09-01 Martin Rudalics <rudalics@gmx.at>
6524
6525 * window.el (switch-to-prev-buffer): Handle additional values of
6526 BURY-OR-KILL argument. Don't switch in minibuffer window.
6527 (switch-to-next-buffer): Don't switch in minibuffer window.
6528 (quit-restore-window): New function based on quit-window.
6529 Handle additional values of former KILL argument.
6530 (quit-window): Call quit-restore-window with appropriate
6531 interpretation of KILL argument.
6532 (display-buffer-below-selected): New buffer display action
6533 function.
6534
65352012-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
6536
6537 * minibuffer.el (completion-at-point-functions): Complete docstring
6538 (bug#12254).
6539
65402012-09-01 Paul Eggert <eggert@cs.ucla.edu>
6541
6542 Better seed support for (random).
6543 * play/5x5.el, play/animate.el, play/cookie1.el, play/dissociate.el:
6544 * play/doctor.el, play/dunnet.el, play/gomoku.el, play/landmark.el:
6545 * play/mpuz.el, play/tetris.el, play/zone.el:
6546 * calc/calc-comb.el (math-init-random-base):
6547 * play/blackbox.el (bb-init-board):
6548 * play/life.el (life):
6549 * server.el (server-use-tcp):
6550 * type-break.el (type-break):
6551 Remove unnecessary call to (random t).
6552 * net/sasl.el (sasl-unique-id-function):
6553 Change (random t) to (random), now that the latter is more random.
6554 * play/life.el (life-initialized): Remove no-longer-needed var.
6555
65562012-08-31 Alp Aker <alp.tekin.aker@gmail.com>
6557
6558 * window.el (switch-to-prev-buffer, switch-to-next-buffer):
6559 Consider frame's buffer predicate when choosing the buffer.
6560 (Bug#12081)
6561
65622012-08-30 Richard Stallman <rms@gnu.org>
6563
6564 * simple.el (special-mode-map): Delete binding for `z'.
6565
65662012-08-30 Andreas Schwab <schwab@linux-m68k.org>
6567
6568 * progmodes/compile.el (compilation-always-kill): Doc fix.
6569
65702012-08-30 Chong Yidong <cyd@gnu.org>
6571
6572 * window.el (display-buffer-reuse-frames): Make the obsolescence
6573 message more informative.
6574
65752012-08-30 Glenn Morris <rgm@gnu.org>
6576
6577 * paren.el (show-paren-delay):
6578 Add a :set function. Doc fix. (Bug#12297)
6579
65802012-08-29 Martin Blais <blais@furius.ca> (tiny change)
6581
6582 * progmodes/compile.el (compilation-always-kill): New var.
6583 (compilation-start): Use it.
6584
65852012-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
6586
6587 * simple.el (read-only-mode): Move from files.el for bootstrapping.
6588 * files.el (read-only-mode): Move to simple.el.
6589
6590 * files.el (read-only-mode): New minor mode.
6591 (toggle-read-only): Use it and mark obsolete.
6592 (find-file--read-only):
6593 * vc/vc.el (vc-next-action, vc-checkout):
6594 * vc/vc-cvs.el (vc-cvs-checkout):
6595 * obsolete/vc-mcvs.el (vc-mcvs-update):
6596 * ffap.el (ffap--toggle-read-only): Update callers.
6597
65982012-08-29 Michael Albinus <michael.albinus@gmx.de>
6599
6600 * eshell/esh-ext.el (eshell-external-command): Do not examine
6601 remote shell scripts.
6602 See <https://bugs.launchpad.net/ubuntu/+source/emacs23/+bug/1035790>.
6603
6604 * net/tramp-sh.el (tramp-remote-path): Add "/sbin" and
6605 "/usr/local/sbin".
6606
66072012-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
6608
6609 * emacs-lisp/cl-lib.el (buffer-string): Fix setter macro (bug#12293).
6610
66112012-08-28 Leo Liu <sdl.web@gmail.com>
6612
6613 * progmodes/sh-script.el (sh-dynamic-complete-functions): Adapt to
6614 completion-at-point. (Bug#12220)
6615
6616 * skeleton.el (skeleton-untabify): Change to nil (bug#12223).
6617
6618 * progmodes/sh-script.el (sh-indent-comment): Change to t (bug#12267).
6619
66202012-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
6621
6622 * files.el (safe-local-eval-forms): Fix before-save-hook entry to
6623 be buffer-local; add delete-trailing-whitespace (bug#12259).
6624
66252012-08-28 Jeremy Moore <jmoore@ieee.org> (tiny change)
6626
6627 * progmodes/hideif.el (hif-compress-define-list):
6628 Fix typo. (Bug#11951)
6629
66302012-08-28 Dan Nicolaescu <dann@gnu.org>
6631
6632 * progmodes/hideshow.el (hs-block-end-regexp): Restore lost
6633 buffer local setting.
6634
6635 * net/rcirc.el (rcirc-split-message): Fix for buffer-local
6636 rcirc-encode-coding-system.
6637
66382012-08-28 Leo Liu <sdl.web@gmail.com>
6639
6640 * net/rcirc.el (rcirc-split-message): New function.
6641 (rcirc-send-message): Use it. (Bug#12051)
6642
66432012-08-28 Juri Linkov <juri@jurta.org>
6644
6645 * info.el (Info-fontify-node): Hide empty lines at the end of
6646 the node. (Bug#12272)
6647
66482012-08-27 Drew Adams <drew.adams@oracle.com>
6649
6650 * dired.el (dired-pop-to-buffer): Make window start at beginning
6651 of buffer (Bug#12281).
6652
66532012-08-26 Chong Yidong <cyd@gnu.org>
6654
6655 * window.el (special-display-regexps, special-display-frame-alist)
6656 (special-display-buffer-names, special-display-function)
6657 (display-buffer-reuse-frames): Mark as obsolete.
6658
6659 * progmodes/compile.el: Don't use display-buffer-reuse-frames.
6660
6661 * help.el (help-print-return-message): Don't treat
6662 display-buffer-reuse-frames specially.
6663
66642012-08-26 Chong Yidong <cyd@gnu.org>
6665
6666 * progmodes/gdb-mi.el (gdb-display-buffer-other-frame-action):
6667 New variable, replacing gdb-frame-parameters.
6668 (gdb-frame-io-buffer, gdb-frame-breakpoints-buffer)
6669 (gdb-frame-threads-buffer, gdb-frame-memory-buffer)
6670 (gdb-frame-disassembly-buffer, gdb-frame-stack-buffer)
6671 (gdb-frame-locals-buffer, gdb-frame-registers-buffer): Use it.
6672 (def-gdb-frame-for-buffer): Macro deleted. It is easier to define
6673 the functions directly with gdb-display-buffer-other-frame-action.
6674 (gdb-display-breakpoints-buffer, gdb-display-threads-buffer)
6675 (gdb-display-memory-buffer, gdb-display-disassembly-buffer)
6676 (gdb-display-stack-buffer, gdb-display-locals-buffer)
6677 (gdb-display-registers-buffer): Define directly.
6678 (def-gdb-display-buffer): Macro deleted.
6679 (gdb-display-buffer): Remove second and third args, callers don't
6680 use them. Defer to the default display-buffer behavior, apart
6681 from making windows dedicated.
6682 (gdb-setup-windows): Don't call display-buffer unnecessarily.
6683
6684 * progmodes/gud.el (gud-display-line): Just use display-buffer.
6685
6686 * window.el (display-buffer-pop-up-frame): Handle a
6687 pop-up-frame-parameters alist entry.
6688 (display-buffer): Document it.
6689
66902012-08-26 Chong Yidong <cyd@gnu.org>
6691
6692 * isearch.el (search-whitespace-regexp): Make string and nil
6693 values apply to both ordinary and regexp search. Allow a cons
6694 cell value to distinguish between the two.
6695 (isearch-whitespace-regexp, isearch-search-forward)
6696 (isearch-search-backward): New functions.
6697 (isearch-occur, isearch-search-fun-default, isearch-search)
6698 (isearch-lazy-highlight-new-loop): Use them.
6699 (isearch-forward, isearch-forward-regexp): Doc fix.
6700
67012012-08-26 Chong Yidong <cyd@gnu.org>
6702
6703 * faces.el (help-argument-name): Always inherit from italic
6704 (Bug#12213).
6705
67062012-08-25 Martin Rudalics <rudalics@gmx.at>
6707
6708 * window.el (window--even-window-heights): Even heights when
6709 WINDOW and the selected window form a vertical combination.
6710 (display-buffer-use-some-window): Provide that window used gets
6711 sized back by quit-window. (Bug#11880) and (Bug#12091)
6712
67132012-08-24 Paul Eggert <eggert@cs.ucla.edu>
6714
6715 Fix file time stamp problem with bzr and CVS (Bug#12001).
6716 * vc/vc-cvs.el (vc-cvs-parse-entry): Ignore subsecond information
6717 in the file's time stamp, since the version control system loses
6718 that information.
6719
67202012-08-22 Juri Linkov <juri@jurta.org>
6721
6722 * info.el (Info-fontify-node): Hide the suffix of the
6723 Info file name in the header line. (Bug#12187)
6724
67252012-08-22 Glenn Morris <rgm@gnu.org>
6726
6727 * calendar/cal-tex.el (cal-tex-weekly-common):
6728 Restore leading blank page.
6729
67302012-08-22 Le Wang <l26wang@gmail.com>
6731
6732 * misc.el (forward-to-word, backward-to-word): Activate or extend
6733 the region under `shift-select-mode'. (Bug#12231)
6734
67352012-08-22 Bastien Guerry <bzg@gnu.org>
6736
6737 * progmodes/executable.el (executable-prefix): Set to "#!" instead
6738 of "#! ". http://www.in-ulm.de/~mascheck/various/shebang/#details
6739 gives details on why the space is never needed.
6740
67412012-08-22 Martin Rudalics <rudalics@gmx.at>
6742
6743 * window.el (walk-window-tree, window-with-parameter):
6744 New optional argument MINIBUF to control whether these functions
6745 should run on the minibuffer window.
6746 (window-at-side-list): Don't operate on minibuffer window.
6747 (window-in-direction): Simplify and rewrite doc-string.
6748 (window--size-ignore): Rename to window--size-ignore-p.
6749 Update callers.
6750 (display-buffer-in-atom-window, window--major-non-side-window)
6751 (window--major-side-window, display-buffer-in-major-side-window)
6752 (delete-side-window, display-buffer-in-side-window):
6753 New functions.
6754 (window--side-check, window-deletable-p, delete-window)
6755 (delete-other-windows, split-window): Handle side windows and
6756 atomic windows appropriately.
6757 (window--display-buffer): Call display-buffer-record-window also
6758 when the window buffer did not change.
6759
67602012-08-22 Christopher Schmidt <christopher@ch.ristopher.com>
6761
6762 * help-fns.el (help-fns--key-bindings):
6763 Abbreviate non-symbol remap targets. (Bug#12174)
6764
67652012-08-22 Martin Rudalics <rudalics@gmx.at>
6766
6767 * dired.el (dired-mark-remembered): Don't clobber point.
6768 (Bug#11795)
6769
67702012-08-22 Glenn Morris <rgm@gnu.org>
6771
6772 * progmodes/bug-reference.el (bug-reference): New custom group.
6773 (bug-reference-bug-regexp): Make it a defcustom.
6774
67752012-08-22 Daiki Ueno <ueno@unixuser.org>
6776
6777 * progmodes/js.el (js-indent-level, js-expr-indent-offset)
6778 (js-paren-indent-offset, js-square-indent-offset)
6779 (js-curly-indent-offset): Add :safe (Bug#12257).
6780
67812012-08-22 Edward O'Connor <hober0@gmail.com>
6782
6783 * json.el (json-key-format): Add error properties.
6784 (json-encode-key): New function.
6785 (json-encode-hash-table, json-encode-alist, json-encode-plist):
6786 Use json-encode-key.
6787
67882012-08-22 Glenn Morris <rgm@gnu.org>
6789
6790 * calendar/cal-tex.el (cal-tex-longday): New function, replacing...
6791 (cal-tex-leftday, cal-tex-rightday): Remove functions.
6792 (cal-tex-weekly-common, cal-tex-cursor-filofax-2week):
6793 Update for above change.
6794
67952012-08-21 Andreas Schwab <schwab@linux-m68k.org>
6796
6797 * cus-face.el (custom-face-attributes): Fix customize type for the
6798 :underline attribute. (Bug#11805)
6799
68002012-08-21 Martin Rudalics <rudalics@gmx.at>
6801
6802 * window.el (window-point-1, set-window-point-1): Remove.
6803 (window-in-direction, record-window-buffer)
6804 (set-window-buffer-start-and-point, split-window-below)
6805 (window--state-get-1, display-buffer-record-window):
6806 Replace calls to window-point-1 and set-window-point-1 by calls to
6807 window-point and set-window-point respectively.
6808
68092012-08-21 Glenn Morris <rgm@gnu.org>
6810
6811 * calendar/cal-tex.el (cal-tex-weekly-common): New function.
6812 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-week):
6813 Use it.
6814
6815 * calendar/cal-tex.el (cal-tex-rightday): Add optional funcname arg.
6816 (cal-tex-shortday): New function.
6817 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-week)
6818 (cal-tex-cursor-filofax-daily): Use the above.
6819
6820 * calendar/cal-tex.el (cal-tex-leftday, cal-tex-rightday):
6821 New functions.
6822 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-2week)
6823 (cal-tex-cursor-filofax-week): Use them.
6824
6825 * calendar/cal-tex.el (cal-tex-lefthead, cal-tex-righthead):
6826 New constants.
6827 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-2week)
6828 (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily): Use them.
6829
6830 * calendar/cal-tex.el (cal-tex-preamble): Generate new buffers.
6831 (cal-tex-end-document): Don't rely on buffer name.
6832
6833 * calendar/cal-tex.el (cal-tex-cursor-filofax-year):
6834 Use cal-tex-vspace.
6835 (cal-tex-vspace, cal-tex-hspace, cal-tex-em, cal-tex-bf)
6836 (cal-tex-Huge-bf, cal-tex-large-bf): Use cal-tex-cmd.
6837 (cal-tex-scriptsize, cal-tex-huge, cal-tex-Huge, cal-tex-large):
6838 Use cal-tex-arg.
6839
6840 * calendar/cal-tex.el (cal-tex-cursor-filofax-year)
6841 (cal-tex-cursor-week, cal-tex-cursor-week2)
6842 (cal-tex-cursor-week-iso, cal-tex-cursor-week-at-a-glance)
6843 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
6844 (cal-tex-cursor-filofax-daily, cal-tex-cursor-day)
6845 (cal-tex-insert-preamble, cal-tex-b-document)
6846 (cal-tex-e-document, cal-tex-b-center, cal-tex-e-center):
6847 Improve cal-tex-cmd usage.
6848
6849 * calendar/cal-tex.el (cal-tex-filofax-paper): New function.
6850 (cal-tex-cursor-filofax-year, cal-tex-cursor-filofax-2week)
6851 (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily): Use it.
6852 (cal-tex-weekly-paper): New function.
6853 (cal-tex-cursor-week, cal-tex-cursor-week2)
6854 (cal-tex-cursor-week-iso, cal-tex-cursor-week-monday)
6855 (cal-tex-cursor-day): Use it.
6856
6857 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance)
6858 (cal-tex-cursor-filofax-week): Remove leading blank page.
6859
6860 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance):
6861 Add autoload cookie. For now at least, don't use color, since
6862 no other cal-tex function does.
6863
6864 * calendar/cal-tex.el (cal-tex-cursor-week-iso)
6865 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
6866 (cal-tex-cursor-filofax-daily): Correct start date for diary entries.
6867
68682012-08-21 Juri Linkov <juri@jurta.org>
6869
6870 * info.el (Info-file-attributes): New variable.
6871 (info-insert-file-contents): Add file attributes to
6872 `Info-file-attributes'. Clear the caches `Info-index-nodes' and
6873 `Info-toc-nodes' when previous modtime of the Info file is less
6874 than new modtime.
6875 (Info-toc-nodes, Info-index-nodes): Move definitions up to the top
6876 of info.el. (Bug#12230)
6877
68782012-08-20 Glenn Morris <rgm@gnu.org>
6879
6880 * calendar/diary-lib.el (diary-include-files, diary-sexp-entry):
6881 * calendar/holidays.el (calendar-holiday-list):
6882 Report errors with display-warning rather than beep'n'sleep.
6883
68842012-08-20 Michael Albinus <michael.albinus@gmx.de>
6885
6886 * net/tramp.el (tramp-accept-process-output): Accept only output
6887 from PROC. Otherwise, process filters and sentinels might be
6888 confused. (Bug#12145)
6889
68902012-08-20 Chong Yidong <cyd@gnu.org>
6891
6892 * descr-text.el (describe-text-properties-1): Use overlays-in to
6893 report on empty overlays (Bug#3322).
6894
68952012-08-20 Glenn Morris <rgm@gnu.org>
6896
6897 * mail/rmailout.el (rmail-output-read-file-name):
6898 Trap and report errors in rmail-output-file-alist elements.
6899
6900 * font-lock.el (font-lock-add-keywords): Doc fix (quote face names
6901 since most non-font-lock faces are not also variables).
6902
69032012-08-20 Edward Reingold <reingold@iit.edu>
6904
6905 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance):
6906 New function. (Bug12160)
6907
69082012-08-19 Glenn Morris <rgm@gnu.org>
6909
6910 * mail/rmailout.el (rmail-output-read-file-name):
6911 Fix previous change (when the alist is nil or does not match).
6912
69132012-08-19 Chong Yidong <cyd@gnu.org>
6914
6915 * xml.el (xml-escape-string): Don't refer to xml-entity-alist
6916 (Bug#12228).
6917
69182012-08-18 Chong Yidong <cyd@gnu.org>
6919
6920 * simple.el (yank-handled-properties): New defcustom.
6921 (yank-excluded-properties): Add font-lock-face and category.
6922 (yank): Doc fix.
6923
6924 * subr.el (remove-yank-excluded-properties):
6925 Obey yank-handled-properties. The special handling of font-lock-face
6926 and category is now done this way, instead of being hard-coded.
6927 (insert-for-yank-1): Remove font-lock-face handling.
6928 (yank-handle-font-lock-face-property)
6929 (yank-handle-category-property): New function.
6930
69312012-08-17 Glenn Morris <rgm@gnu.org>
6932
6933 * mail/rmailout.el (rmail-output-read-file-name):
6934 Check rmail-output-file-alist against the full message body
6935 in the correct rmail buffer. (Bug#12214)
6936
69372012-08-17 Michael Albinus <michael.albinus@gmx.de>
6938
6939 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
6940 Eliminate superfluous prompt. (Bug#12203)
6941
69422012-08-17 Chong Yidong <cyd@gnu.org>
6943
6944 * mouse.el (mouse-appearance-menu): If x-select-font returns a
6945 font spec, set the font directly (Bug#3228).
6946
69472012-08-17 Martin Rudalics <rudalics@gmx.at>
6948
6949 * window.el (delete-window): Fix last fix.
6950
69512012-08-16 Martin Rudalics <rudalics@gmx.at>
6952
6953 * window.el (window-valid-p): Move to window.c.
6954 (window-child, window-child-count, window-last-child)
6955 (window-normalize-window, window-combined-p)
6956 (window-combinations, window-atom-root, window-min-size)
6957 (window-sizable, window-sizable-p, window-size-fixed-p)
6958 (window-min-delta, window-max-delta, window--resizable)
6959 (window--resizable-p, window-resizable, window-total-size)
6960 (window-full-height-p, window-full-width-p, window-body-size)
6961 (window-at-side-p, adjust-window-trailing-edge, maximize-window)
6962 (minimize-window, window-deletable-p, delete-window)
6963 (delete-other-windows, set-window-buffer-start-and-point)
6964 (next-buffer, previous-buffer, split-window, balance-windows-2)
6965 (set-window-text-height, window-buffer-height)
6966 (fit-window-to-buffer, shrink-window-if-larger-than-buffer)
6967 (truncated-partial-width-window-p): Minor code adjustments.
6968 In doc-strings state whether the argument window has to denote a
6969 live, valid or any window.
6970
69712012-08-16 Phil Sainty <psainty@orcon.net.nz> (tiny change)
6972
6973 * progmodes/subword.el (subword-forward-function)
6974 (subword-backward-function, subword-forward-regexp)
6975 (subword-backward-regexp): New variables.
6976 (subword-forward, subword-forward-internal, subword-backward-internal):
6977 Use new variables, eg so that different "word" definitions
6978 can be easily used. (Bug#11411)
6979
69802012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
6981
6982 * vc/vc-mtn.el (vc-mtn-revision-completion-table): Handle completion
6983 for composite selectors.
6984 * vc/vc.el (vc-diff-build-argument-list-internal): Don't prevent
6985 operation just because we can't find a previous revision.
6986
69872012-08-15 Chong Yidong <cyd@gnu.org>
6988
6989 * frame.el (set-frame-font): Accept font objects.
6990
69912012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
6992
6993 * textmodes/tex-mode.el (tex-insert-quote): ~ is a space (bug#12137).
6994
69952012-08-15 Wolfgang Jenkner <wjenkner@inode.at>
6996
6997 * man.el (Man-overstrike-face, Man-underline-face)
6998 (Man-reverse-face): Remove variables.
6999 (Man-overstrike, Man-underline, Man-reverse): New faces.
7000 (Man-fontify-manpage): Use them instead of the variables.
7001 (Man-cleanup-manpage): Comment change.
7002 (Man-ansi-color-map): New variable.
7003 (Man-fontify-manpage): Use it.
7004 Call ansi-color-apply-on-region to replace ad hoc code (bug#12147).
7005
7006 Implement ANSI SGR parameters 22-27 (bug#12146).
7007 * ansi-color.el (ansi-colors): Doc fix.
7008 (ansi-color-context, ansi-color-context-region): Doc fix.
7009 (ansi-color--find-face): New function.
7010 (ansi-color-apply, ansi-color-apply-on-region): Use it.
7011 Rename the local variable `face' to `codes' since it is now a list of
7012 ansi codes. Doc fix.
7013 (ansi-color-get-face): Remove.
7014 (ansi-color-parse-sequence): New function, derived from
7015 ansi-color-get-face.
7016 (ansi-color-apply-sequence): Use it. Rewrite, and support ansi
7017 codes 22-27.
7018
70192012-08-14 Stefan Monnier <monnier@iro.umontreal.ca>
7020
7021 * subr.el (read-passwd): Allow use from a minibuffer.
7022
70232012-08-14 Eli Zaretskii <eliz@gnu.org>
7024
7025 * tooltip.el (tooltip-identifier-from-point): Don't treat tokens
7026 inside comments and strings as identifiers.
7027
7028 * progmodes/gud.el (gud-tooltip-print-command): Quote the
7029 expression to evaluate. This allows to evaluate expressions with
7030 embedded whitespace.
7031 (gud-tooltip-tips): Add a blank before the newline in the
7032 message-box text, for the benefit of message-box emulation on
7033 MS-Windows.
7034
7035 * progmodes/gdb-mi.el (gdb-tooltip-print): Don't ignore error
7036 messages from GDB, pop them up in a tooltip to give feedback to
7037 user.
7038 (gdb-tooltip-print-1): Quote the expression to evaluate.
7039 This allows to evaluate expressions with embedded whitespace.
7040 (gdb-inferior-io--init-proc): Don't send "-inferior-tty" command
7041 if the TTY name is nil or empty (which happens when communicating
7042 with the inferior via pipes, e.g. on MS-Windows).
7043 (gdb-internals): If GDB sends a "&\n" empty debugging message,
7044 don't send that to the GUD buffer.
7045
70462012-08-14 Glenn Morris <rgm@gnu.org>
7047
7048 * emacs-lisp/bytecomp.el (byte-compile-setq-default):
7049 Optimize away setq-default with no args, as for setq. (Bug#12195)
7050
70512012-08-14 Chong Yidong <cyd@gnu.org>
7052
7053 * minibuffer.el (read-file-name): Doc fix (Bug#10881).
7054
7055 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Doc fix
7056 (Bug#12085).
7057
70582012-08-14 Glenn Morris <rgm@gnu.org>
7059
7060 * emacs-lisp/bytecomp.el (byte-recompile-file): Doc fix.
7061
70622012-08-14 Michael Albinus <michael.albinus@gmx.de>
7063
7064 * net/tramp-sh.el (tramp-open-shell): Cache the shell name.
7065 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
7066 Use cached shell name.
7067
70682012-08-14 Fabián Ezequiel Gallina <fgallina@cuca>
7069
7070 * progmodes/python.el (python-shell-send-string):
7071 (python-shell-send-setup-code): Do not use `format' with `message'.
7072
70732012-08-14 Dmitry Gutov <dgutov@yandex.ru>
7074
7075 * progmodes/ruby-mode.el: Improve percent literals (bug#6286).
7076 (ruby-percent-literal-beg-re): New constant.
7077 (ruby-syntax-general-delimiters-goto-beg): Rename to
7078 `ruby-syntax-enclosing-percent-literal', improve literal type check.
7079 (ruby-syntax-propertize-general-delimiters): Rename to
7080 `ruby-syntax-propertize-percent-literal', it's a shorter and more
7081 popular term. Adjust comments everywhere.
7082 (ruby-syntax-propertize-percent-literal): Only propertize when not
7083 inside a simple string or comment. When the literal is unclosed,
7084 leave the text after it unpropertized.
7085 (ruby-syntax-methods-before-regexp): New constant.
7086 (ruby-syntax-propertize-function): Use it to recognize regexps.
7087 Don't look at the text after regexp, just use the whitelist.
7088
70892012-08-14 Andreas Schwab <schwab@linux-m68k.org>
7090
7091 * emacs-lisp/bytecomp.el (byte-recompile-file): When LOAD is
7092 non-nil always load the compiled file if it exists. (Bug#12197)
7093
70942012-08-14 Chong Yidong <cyd@gnu.org>
7095
7096 * hi-lock.el (hi-lock-mode): Do not unilaterally enable font lock.
7097 (hi-lock-set-pattern): When deciding whether to use font lock or
7098 overlays, look at font-lock-mode instead of font-lock-fontified
7099 (Bug#12168).
7100 (hi-lock-mode, hi-lock-line-face-buffer, hi-lock-unface-buffer)
7101 (hi-lock-face-buffer, hi-lock-face-phrase-buffer): Doc fix.
7102
71032012-08-14 Daiki Ueno <ueno@unixuser.org>
7104
7105 * subr.el (internal--after-with-selected-window): Fix typo
7106 (Bug#12193).
7107
71082012-08-14 Fabián Ezequiel Gallina <fgallina@cuca>
7109
7110 Use `completion-table-dynamic' for completion functions.
7111 * progmodes/python.el
7112 (python-shell-completion--do-completion-at-point)
7113 (python-shell-completion--get-completions):
7114 Remove functions.
7115 (python-shell-completion-complete-at-point): New function.
7116 (python-completion-complete-at-point): Use it.
7117
71182012-08-13 Jambunathan K <kjambunathan@gmail.com>
7119
7120 * vc/vc-dir.el (vc-dir-hide-state): New command (bug#12159).
7121 (vc-dir-hide-up-to-date): Route it to `vc-dir-hide-state'.
7122
71232012-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
7124
7125 * subr.el (function-get): Refine `autoload' arg so it can also
7126 autoload functions for gv.el (bug#12191).
7127 * emacs-lisp/edebug.el (get-edebug-spec): Adjust so it only
7128 autoloads macros.
7129
7130 * color.el (color-xyz-to-lab, color-lab-to-xyz, color-cie-de2000):
7131 Prefer pcase-let over destructuring-bind.
7132 * vc/diff-mode.el (diff-remove-trailing-whitespace): Same.
7133 Also, remove whitespace as we go, rather than after accumulating the
7134 various places.
7135
7136 * subr.el (internal--before-with-selected-window)
7137 (internal--after-with-selected-window): Fix typo seleted->selected.
7138 (with-selected-window): Adjust callers.
7139 Reported by Dmitry Gutov <dgutov@yandex.ru>.
7140
71412012-08-13 Bastien Guerry <bzg@gnu.org>
7142
7143 * window.el (special-display-popup-frame): Minor docstring
7144 enhancement. (Bug#12172)
7145
71462012-08-13 Andreas Schwab <schwab@linux-m68k.org>
7147
7148 * tar-mode.el (tar-header-data-end): Only ignore size for files of
7149 type 1-6.
7150 (tar-header-block-summarize, tar-get-descriptor): Handle pax
7151 extended headers.
7152
7153 * files.el (hack-local-variables-filter): Remove useless eval.
7154
71552012-08-13 Martin Rudalics <rudalics@gmx.at>
7156
7157 * subr.el (with-selected-window): Fix last change.
7158
71592012-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
7160
7161 * subr.el (internal--before-with-seleted-window)
7162 (internal--after-with-seleted-window): New functions.
7163 (with-selected-window): Use them, to replace dependency on
7164 tty-top-frame.
7165
71662012-08-12 Nobuyoshi Nakada <nobu@ruby-lang.org>
7167
7168 * progmodes/ruby-mode.el (ruby-mode-map): Remove unnecessary
7169 binding for `newline'.
7170 (ruby-move-to-block): When moving backward, stop at block opening,
7171 not indentation.
7172 * progmodes/ruby-mode.el (ruby-brace-to-do-end)
7173 (ruby-do-end-to-brace, ruby-toggle-block): New functions.
7174 * progmodes/ruby-mode.el (ruby-mode-map): Add binding for
7175 `ruby-toggle-block'.
7176
71772012-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
7178
7179 * ibuffer.el (ibuffer-do-toggle-read-only):
7180 * dired.el (dired-toggle-read-only):
7181 * buff-menu.el (Buffer-menu-toggle-read-only):
7182 * bindings.el (mode-line-toggle-read-only):
7183 * bs.el (bs-toggle-readonly): Call toggle-read-only interactively.
7184
71852012-08-12 Andreas Schwab <schwab@linux-m68k.org>
7186
7187 * descr-text.el (describe-char): Put the overlays over the
7188 "displayed as" character.
7189
71902012-08-12 Jay Belanger <jay.p.belanger@gmail.com>
7191
7192 * calc/calc-units.el (math-default-units-table): Give an
7193 initial value.
7194 (math-put-default-units): Add options to put composite units and
7195 unit systems in the default units table.
7196 (calc-convert-units): Send composite units to
7197 `math-put-default-units' when appropriate.
7198
71992012-08-11 Glenn Morris <rgm@gnu.org>
7200
7201 * emacs-lisp/copyright.el (copyright-update-directory): Logic fix.
7202
7203 * tutorial.el (help-with-tutorial):
7204 * emacs-lisp/copyright.el (copyright-update-directory):
7205 * emacs-lisp/autoload.el (autoload-find-generated-file)
7206 (autoload-find-file): Disable local eval: (for insurance).
7207
7208 * files.el (hack-local-variables-filter): If an eval: form is not
7209 known to be safe, and enable-local-variables is :safe, then ignore
7210 the form totally, as is done for non-eval forms. (Bug#12155)
7211 This is CVE-2012-3479.
7212
72132012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
7214
7215 * emacs-lisp/rx.el (rx-constituents): Don't define as constant.
7216 (rx-form): Simplify.
7217
72182012-08-09 Dmitry Gutov <dgutov@yandex.ru>
7219
7220 * progmodes/ruby-mode.el (ruby-expr-beg, ruby-parse-partial):
7221 ?, _, and : are symbol constituents, ! is not (but kinda should be).
7222 (ruby-syntax-propertize-heredoc): Use ruby-singleton-class-p.
7223 (ruby-syntax-propertize-function): Adjust for changes in
7224 `ruby-syntax-propertize-heredoc'.
7225
72262012-08-09 Nobuyoshi Nakada <nobu@ruby-lang.org>
7227
7228 * progmodes/ruby-mode.el (ruby-mode-map): Remove deprecated
7229 binding (use `M-;' instead).
7230 (ruby-singleton-class-p): New function.
7231 (ruby-expr-beg, ruby-in-here-doc-p) Use it.
7232
72332012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
7234
7235 * emacs-lisp/cl-macs.el (cl-loop): Improve debug spec.
7236
72372012-08-10 Chong Yidong <cyd@gnu.org>
7238
7239 * progmodes/python.el (python-shell-get-process-name): Don't mess
7240 with same-window-buffer-names.
7241
7242 * eshell/eshell.el (eshell-add-to-window-buffer-names)
7243 (eshell-remove-from-window-buffer-names): Make obsolete.
7244 (eshell-buffer-name, eshell-unload-hook): Don't use them.
7245 (eshell): Just use pop-to-buffer-same-window instead.
7246
72472012-08-10 Chong Yidong <cyd@gnu.org>
7248
7249 * bindings.el: Bind M-= back to count-words-region.
7250
7251 * simple.el (count-words-region): Accept a prefix arg for acting
7252 on the entire buffer.
7253 (count-words--buffer-message): New helper function.
7254
72552012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
7256
7257 * term/x-win.el (x-menu-bar-open): Always pass last-nonmenu-event.
7258 * subr.el (eventp): `nil' is not an event, and eventp is not hot.
7259 (event-start, event-end): Use posn-at-point to return a more
7260 informative posn.
7261 (posnp): New function.
7262 * mouse.el (popup-menu-normalize-position): Use it.
7263
72642012-08-10 Masatake YAMATO <yamato@redhat.com>
7265
7266 * mouse.el (popup-menu-normalize-position): New function.
7267 (popup-menu): Use `popup-menu-normalize-position' to normalize
7268 the form for POSITION argument.
7269
7270 * term/x-win.el (x-menu-bar-open):
7271 Use the value returend from (posn-at-point) as position
7272 passed to `popup-menu'.
7273
72742012-08-09 Jay Belanger <jay.p.belanger@gmail.com>
7275
7276 * calc/calccomp.el (math-compose-expr): Add extra argument
7277 indicating that parentheses should be put around products in
7278 denominators. Give multiplication precedence over division during
7279 composition.
7280
72812012-08-09 Chong Yidong <cyd@gnu.org>
7282
7283 * man.el (Man-switches, Man-sed-command, Man-awk-command)
7284 (Man-mode-hook, Man-cooked-hook, Man-untabify-command-args)
7285 (Man-untabify-command, manual-program): Convert to defcustom
7286 (Bug#10429).
7287
7288 * vc/add-log.el (change-log-mode): Bind comment-start to nil.
7289
7290 * descr-text.el (describe-char): Don't insert extra newlines
7291 (Bug#10127).
7292
7293 * vc/log-view.el (log-view-diff): Use use-region-p (Bug#10133).
7294 (log-view-diff-changeset, log-view-minor-wrap): Likewise.
7295
7296 * align.el (align-region): Delete temporary markers (Bug#10047).
7297 Plus some code cleanups.
7298
72992012-08-09 Fabián Ezequiel Gallina <fgallina@cuca>
7300
7301 * progmodes/python.el (python-pdbtrack-tracked-buffer)
7302 (python-pdbtrack-buffers-to-kill, python-shell-internal-buffer)
7303 (python-shell-internal-last-output): Use make-local-variable
7304 instead of make-variable-buffer-local.
7305
73062012-08-09 Fabián Ezequiel Gallina <fgallina@cuca>
7307
7308 * progmodes/python.el: Enhancements to forward-sexp.
7309 (python-nav-forward-sexp): Rename from
7310 python-nav-forward-sexp-function.
7311 (python-nav--forward-sexp, python-nav--backward-sexp):
7312 New functions.
7313
73142012-08-09 Jay Belanger <jay.p.belanger@gmail.com>
7315
7316 * calc/calc-menu.el (calc-modes-menu): Add entries for matrix
7317 modes and simplification modes.
7318
73192012-08-09 Stefan Monnier <monnier@iro.umontreal.ca>
7320
7321 * delsel.el (delete-selection-pre-hook): Don't propagate the
7322 file-supersession signals (bug#12161).
7323
73242012-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
7325
7326 * emacs-lisp/cl.el (cl-map-keymap-recursively, cl-map-intervals)
7327 (cl-map-extents): Add compatibility aliases (bug#12135).
7328
73292012-08-08 Michael Albinus <michael.albinus@gmx.de>
7330
7331 * net/tramp-sh.el (tramp-find-file-exists-command): Protect the
7332 tests by `ignore-error'.
7333 (tramp-find-shell): Open also a new shell, when cache is already
7334 set. Reported by Carsten Bormann <cabo@tzi.org>. (Bug#12148)
7335
73362012-08-08 Juri Linkov <juri@jurta.org>
7337
7338 * bookmark.el: Add `defaults' property to the bookmark record.
7339 (bookmark-current-buffer): Doc fix.
7340 (bookmark-make-record): Add `defaults' property with default values
7341 to the bookmark record.
7342 (bookmark-minibuffer-read-name-map): Remove key binding "\C-u"
7343 with `bookmark-insert-current-bookmark'.
7344 (bookmark-set): Get `defaults' property from the bookmark record
7345 and use it in `read-from-minibuffer'.
7346 (bookmark-insert-current-bookmark): Remove function.
7347
7348 * info.el (Info-bookmark-make-record): Add `defaults' property
7349 with values of canonical Info node name, the current Info file
7350 name and the current Info node name. (Bug#12107)
7351
73522012-08-08 Juri Linkov <juri@jurta.org>
7353
7354 * files.el (basic-save-buffer): Use `buffer-name' as the default
7355 of `read-file-name' when buffer is not visiting a file (bug#12128).
7356
73572012-08-08 Juri Linkov <juri@jurta.org>
7358
7359 * info.el (Info-isearch-search): Doc fix.
7360 (Info-search): Change search-failed message from "initial node" to
7361 "end of node" (bug#12078).
7362 (Info-isearch-search): Change `isearch-string-state' to
7363 `isearch--state-string'.
7364
73652012-08-08 Glenn Morris <rgm@gnu.org>
7366
7367 * language/persian.el: Remove file.
7368 * language/misc-lang.el: Move unique part of persian.el here.
7369 * loadup.el: Remove language/persian.
7370
73712012-08-08 Óscar Fuentes <ofv@wanadoo.es>
7372
7373 * vc/diff-mode.el (diff-remove-trailing-whitespace): New function.
7374
73752012-08-08 Fabián Ezequiel Gallina <fgallina@cuca>
7376
7377 * progmodes/python.el: Fix defsubst warning.
7378 (python-syntax-context) Rename from python-info-ppss-context.
7379 (python-syntax-context-type): Rename from
7380 python-info-ppss-context-type.
7381 (python-syntax-comment-or-string-p): Rename from
7382 python-info-ppss-comment-or-string-p.
7383
73842012-08-08 Jay Belanger <jay.p.belanger@gmail.com>
7385
7386 * calc/calc-misc.el (calc-record-why): Don't record a message twice.
7387
73882012-08-07 Andreas Schwab <schwab@linux-m68k.org>
7389
7390 * emacs-lisp/lisp-mode.el (eval-defun-1): Handle standard value of
7391 a defcustom that is quoted with backquote.
7392
7393 * calc/calc-prog.el (math-do-defmath): Use backquote forms.
7394 Fix handling of interactive spec when the body uses return.
7395 (math-do-arg-check, math-define-function-body): Use backquote forms.
7396 * calc/calc-ext.el (math-defcache): Likewise.
7397 * calc/calc-rewr.el (math-rwfail, math-rweval): Likewise.
7398 * allout.el (allout-new-exposure): Likewise.
7399 * calc/calcalg2.el (math-tracing-integral): Likewise.
7400 * info.el (Info-last-menu-item): Likewise.
7401 * emulation/vip.el (vip-loop): Likewise.
7402 * textmodes/artist.el (artist-funcall): Likewise.
7403 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle):
7404 Construct menu-item directly.
7405
7406 * progmodes/autoconf.el (font-lock-syntactic-keywords):
7407 Don't declare.
7408
74092012-08-07 Chong Yidong <cyd@gnu.org>
7410
7411 * simple.el (deactivate-mark): Preserve text properties when
7412 saving the primary selection (Bug#8384).
7413
74142012-08-07 Kevin Ryde <user42@zip.com.au>
7415
7416 * woman.el (woman0-if): Quietly treat ".if v" as false (Bug#12109).
7417 (woman-parse-numeric-value): On a bad .IP line, issue a warning
7418 and continue processing (Bug#12110).
7419
74202012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
7421
7422 * progmodes/cperl-mode.el (cperl-mode): Yet another fix for
7423 syntax-propertize-function (bug#10095).
7424
74252012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
7426
7427 * help-fns.el (help-fns--key-bindings, help-fns--signature)
7428 (help-fns--parent-mode, help-fns--obsolete): New funs, extracted from
7429 describe-function-1.
7430 (describe-function-1): Use them. Move compiler macro after sig.
7431 (help-fns--compiler-macro): Use function-get. Assume we're already in
7432 standard-output. Adjust layout to new call order.
7433
7434 * emacs-lisp/cl-macs.el (cl--sm-macroexpand): Fix handling of
7435 re-binding a symbol that has a symbol-macro (bug#12119).
7436
74372012-08-06 Mohsen BANAN <libre@mohsen.1.banan.byname.net>
7438
7439 * language/persian.el: New file. (Bug#11812)
7440 * loadup.el: Add language/persian.el.
7441
74422012-08-06 Chong Yidong <cyd@gnu.org>
7443
7444 * window.el (window--maybe-raise-frame): New function.
7445 (window--display-buffer): Split off from here.
7446 (display-buffer-reuse-window, display-buffer-pop-up-frame)
7447 (display-buffer-pop-up-window, display-buffer-use-some-window):
7448 Obey an inhibit-switch-frame action alist entry.
7449 (display-buffer): Update doc.
7450
7451 * replace.el (occur-after-change-function): Avoid losing focus by
7452 using the inhibit-switch-frame display parameter (Bug#12139).
7453
74542012-08-06 Fabián Ezequiel Gallina <fgallina@cuca>
7455
7456 Make internal shell process buffer names start with space.
7457 * progmodes/python.el (python-shell-make-comint): Add optional
7458 argument INTERNAL.
7459 (run-python-internal): Use it.
7460 (python-shell-internal-get-or-create-process): Check for new
7461 internal buffer names.
7462
74632012-08-06 Glenn Morris <rgm@gnu.org>
7464
7465 * eshell/esh-ext.el (eshell/addpath): Use dolist and mapconcat.
7466 Do less getting and setting of environment variables.
7467
74682012-08-05 Chong Yidong <cyd@gnu.org>
7469
7470 * proced.el (proced): Add substitution string to docstring to
7471 trigger autoloading of the proced library on C-h f (Bug#1768).
7472
7473 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
7474 Don't show defvars which have no second argument (Bug#8638).
7475
7476 * imenu.el (imenu-generic-expression): Move documentation here
7477 from imenu--generic-function.
7478 (imenu--generic-function): Refer to imenu-generic-expression.
7479
74802012-08-05 Vegard Øye <vegard_oye@hotmail.com> (tiny change)
7481
7482 * emulation/viper-init.el (viper-deflocalvar): Add docstring and
7483 indentation declaration.
7484 (viper-loop): Add indentation declaration (Bug#7025).
7485
74862012-08-05 Chong Yidong <cyd@gnu.org>
7487
7488 * help-fns.el (describe-variable): Add hyperlink for
7489 directory-local variables files. Improve buffer-local and
7490 permanent-local reporting; suggested by MON KEY (Bug#6644).
7491
7492 * help-mode.el (help-dir-local-var-def): New button type.
7493
7494 * files.el (kill-buffer-hook): Provide a defvar.
7495
74962012-08-05 Glenn Morris <rgm@gnu.org>
7497
7498 * eshell/esh-ext.el (eshell/addpath):
7499 Also update eshell-path-env. (Bug#12013)
7500
75012012-08-05 Chong Yidong <cyd@gnu.org>
7502
7503 * wdired.el (wdired-mode, wdired-change-to-wdired-mode): Doc fixes.
7504
7505 * fringe.el (fringe-styles): Add docstring.
7506 (fringe--check-mode): New function.
7507 (set-fringe-mode, set-fringe-style): Use it.
7508 (fringe-mode, set-fringe-style): Doc fixes (Bug#6480).
7509
7510 * files.el (set-auto-mode): Fix invalid setq call.
7511
75122012-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
7513
7514 * isearch.el: Misc simplification; use defstruct.
7515 (isearch-mode-map): Dense maps now work like sparse ones.
7516 (isearch--state): New defstruct.
7517 (isearch-string-state, isearch-message-state, isearch-point-state)
7518 (isearch-success-state, isearch-forward-state)
7519 (isearch-other-end-state, isearch-word-state, isearch-error-state)
7520 (isearch-wrapped-state, isearch-barrier-state)
7521 (isearch-case-fold-search-state, isearch-pop-fun-state): Remove,
7522 replaced by defstruct's accessors.
7523 (isearch--set-state): Rename from isearch-top-state and change
7524 calling convention.
7525 (isearch-push-state): Use new isearch--get-state.
7526 (isearch-toggle-word): Disable regexp when enabling word.
7527 (isearch-message-prefix): Remove unused arg _c-q-hack.
7528 (isearch-message-suffix): Remove unused arg _ellipsis.
7529
75302012-08-04 Andreas Schwab <schwab@linux-m68k.org>
7531
7532 * simple.el (list-processes--refresh): For a server use :host or
7533 :local as the address.
7534 (list-processes): Doc fix.
7535
75362012-08-04 Michal Nazarewicz <mina86@mina86.com>
7537
7538 * lisp/mpc.el: Support password in host argument.
7539 (mpc--proc-connect): Parse and use new password element.
7540 Set mpc-proc variable instead of returning process.
7541 (mpc-proc): Adjust accordingly.
7542
75432012-08-03 Eli Zaretskii <eliz@gnu.org>
7544
7545 * whitespace.el (whitespace-display-mappings): Use Unicode
7546 codepoints, instead of emacs-mule codepoints. See
7547 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-07/msg00366.html
7548 for the details.
7549
7550 * files.el (file-truename): Don't skip symlink-chasing part on
7551 windows-nt. Incorporate the resolution of 8+3 short aliases on
7552 Windows into the loop that recursively chases symlinks.
7553 Compare directory and its parent case-insensitively on MS-Windows and
7554 MS-DOS.
7555
75562012-08-03 Chong Yidong <cyd@gnu.org>
7557
7558 * menu-bar.el (menu-bar-tools-menu): Remove PCL-CVS.
7559
7560 * sort.el (sort-regexp-fields): Doc fix.
7561
75622012-08-03 Tassilo Horn <tsdh@gnu.org>
7563
7564 * textmodes/reftex.el (reftex-compile-variables): Make keyvals
7565 labels regex position point at the expected place.
7566
75672012-08-03 MON KEY <monkey@sandpframing.com>
7568
7569 * net/imap.el (imap-interactive-login, imap-authenticate)
7570 (imap-mailbox-lsub, imap-mailbox-list)
7571 (imap-mailbox-status-asynch, imap-mailbox-acl-delete)
7572 (imap-fetch, imap-message-flag-permanent-p, imap-envelope-from)
7573 (imap-parse-response): Doc fix.
7574
75752012-08-03 João Távora <joaotavora@gmail.com>
7576
7577 * textmodes/tex-mode.el (latex-forward-sexp): Terminate the loop
7578 if sexp scanning does not move point (Bug#5734).
7579
75802012-08-02 Tassilo Horn <tsdh@gnu.org>
7581
7582 * textmodes/reftex-vars.el (reftex-default-label-alist-entries):
7583 Add listings, minted, and ctable packages.
7584 (reftex-label-alist-builtin): Move listings, minted, and ctable
7585 entries before LaTeX.
7586 (reftex-label-alist): Docfix.
7587
75882012-08-02 Bastien Guerry <bzg@gnu.org>
7589
7590 * replace.el (occur): Fix docstring (bug#12122).
7591
75922012-08-02 Glenn Morris <rgm@gnu.org>
7593
7594 * emacs-lisp/authors.el (authors-renamed-files-alist): Add ms-w32.h.
7595
75962012-08-02 Paul Eggert <eggert@cs.ucla.edu>
7597
7598 Obsolete alias inactivate-current-input-method-function (Bug#10150).
7599 * international/mule-cmds.el: Create
7600 inactivate-current-input-method-function as an obsolete alias for
7601 deactivate-current-input-method-function. See Katsumi Yamaoka in
7602 <http://bugs.gnu.org/10150#46>.
7603
76042012-08-01 Jay Belanger <jay.p.belanger@gmail.com>
7605
7606 * calc/calc-mode.el (calc-set-simplify-mode): Use `cond' instead
7607 of nested `if's.
7608
76092012-08-01 Glenn Morris <rgm@gnu.org>
7610
7611 * progmodes/autoconf.el (autoconf-definition-regexp):
7612 Add AH_TEMPLATE, adjust submatch numbering.
7613 (autoconf-font-lock-keywords, autoconf-imenu-generic-expression)
7614 (autoconf-current-defun-function): Update for above change.
7615 (autoconf-current-defun-function): First skip to end of current word.
7616
76172012-08-01 Rupert Swarbrick <rswarbrick@gmail.com> (tiny change)
7618
7619 * calendar/cal-html.el (cal-html-insert-agenda-days):
7620 Fix typo. (Bug#12018)
7621
76222012-07-31 Fabián Ezequiel Gallina <fgallina@cuca>
7623
7624 Shell processes: enhancements to startup and CEDET compatibility.
7625 * progmodes/python.el (python-shell-send-setup-max-wait): Delete var.
7626 (python-shell-make-comint): accept-process-output at startup.
7627 (run-python-internal): Set inferior-python-mode-hook to nil.
7628 (python-shell-internal-get-or-create-process): call sit-for.
7629 (python-preoutput-result): Add obsolete alias.
7630 (python-shell-internal-send-string): Use it.
7631 (python-shell-send-setup-code): Remove call to
7632 accept-process-output.
7633
76342012-07-31 Andreas Schwab <schwab@linux-m68k.org>
7635
7636 * buff-menu.el (list-buffers-noselect): Use prefix-numeric-value.
7637 (Bug#12108)
7638
76392012-07-31 Jay Belanger <jay.p.belanger@gmail.com>
7640
7641 * calc-mode.el (calc-basic-simplification-mode): Rename from
7642 `calc-limited-simplification-mode'.
7643 (calc-alg-simplification-mode): New function.
7644 (calc-set-simplify-mode): Adjust message.
7645
7646 * calc.el (calc-set-mode-line): Adjust mode line display for
7647 basic simplification mode.
7648
7649 * calc-help.el (calc-m-prefix-help): Update help message.
7650
7651 * calc-ext.el (calc-init-extensions): Add bindings and autoloads
7652 for `calc-basic-simplify-mode' and `calc-alg-simplify-mode'.
7653
76542012-07-31 Bastien Guerry <bzg@gnu.org>
7655
7656 * man.el (man): Fix comment. (bug#12101)
7657
76582012-07-31 Martin Rudalics <rudalics@gmx.at>
7659
7660 * window.el (switch-to-prev-buffer, switch-to-next-buffer):
7661 Don't return a non-nil value when no suitable buffer was found.
7662
76632012-07-31 Fabián Ezequiel Gallina <fgallina@cuca>
7664
7665 * progmodes/python.el (run-python-internal): Disable font lock for
7666 internal shells.
7667
76682012-07-30 Stefan Merten <smerten@oekonux.de>
7669
7670 * textmodes/rst.el: Silence `checkdoc-ispell'.
7671 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
7672 (rst-official-version, rst-official-cvs-rev)
7673 (rst-package-emacs-version-alist): Update to upstream V1.3.1.
7674 (rst-mode-map): New key binding.
7675
76762012-07-30 Paul Eggert <eggert@cs.ucla.edu>
7677
7678 Update .PHONY listings in makefiles.
7679 * Makefile.in (.PHONY): Add all, doit, custom-deps, finder-data,
7680 autoloads, update-subdirs, updates, bzr-update, update-authors,
7681 compile-onefile, compile-calc, backup-compiled-files,
7682 compile-after-backup, compile-one-process, mh-autoloads,
7683 bootstrap-clean, distclean, maintainer-clean.
7684
76852012-07-29 Jay Belanger <jay.p.belanger@gmail.com>
7686
7687 * calc/calc.el (calc-simplify-mode): Make 'alg the default value.
7688 (calc-set-mode-line): Don't display "AlgSimp ".
7689
7690 * calc/calc-mode.el (calc-alg-simplify-mode): Remove function.
7691 (calc-lim-simplify-mode): New function.
7692 (calc-set-simplify-mode): Default to 'alg.
7693 (calc-default-simplify-mode): Make algebraic simplifications
7694 the default.
7695
7696 * calc/calc-ext.el (calc-init-extensions): Remove binding for
7697 `calc-alg-simplify-mode'. Add binding for `calc-lim-simplify-mode'.
7698
7699 * calc/calc-help.el (calc-m-prefix-help): Change messages to
7700 indicate new simplification modes.
7701
7702 * calc/README: Mention new default simplification mode.
7703
7704 * calc/calc.el (math-normalize-error): New variable.
7705 (math-normalize): Set `math-normalize-error' to t
7706 when there's an error.
7707
7708 * calc/calc-alg.el (math-simplify): Don't simplify when
7709 `math-normalize' returns an error.
7710
77112012-07-29 Eli Zaretskii <eliz@gnu.org>
7712
7713 * international/mule-cmds.el (set-locale-environment): Revert last
7714 change, since display-graphic-p returns nil when this function is
7715 called during startup. Instead...
7716
7717 * term/w32console.el (terminal-init-w32console): ...setup the
7718 keyboard and terminal encoding for TTY sessions here. (Bug#12082)
7719
77202012-07-29 Juri Linkov <juri@jurta.org>
7721
7722 * simple.el (goto-line): Don't display default line number in the
7723 prompt because it should be displayed by `read-number' (bug#9952).
7724 Add the current line number to the defaults of `goto-line' to
7725 allow its easier modification by users with `M-n' (bug#9201).
7726
7727 * subr.el (read-number): Support multiple default values like in
7728 other minibuffer reading functions. Replace `read' with
7729 `string-to-number' for consistency with `number-to-string'.
7730
77312012-07-29 Paul Eggert <eggert@cs.ucla.edu>
7732
7733 deactive->inactive, inactivate->deactivate spelling fixes (Bug#10150)
7734 * emulation/viper-init.el (viper-deactivate-input-method-action):
7735 Rename from viper-inactivate-input-method-action.
7736 (viper-deactivate-input-method):
7737 Rename from viper-inactivate-input-method.
7738 * follow.el (follow-inactive-menu): Rename from follow-deactive-menu.
7739 * international/mule-cmds.el (deactivate-input-method):
7740 Rename from inactivate-input-method.
7741 Also run input-method-deactivate-hook.
7742 (deactivate-current-input-method-function):
7743 Rename from inactivate-current-input-method-function.
7744 (input-method-deactivate-hook): New hook.
7745 (input-method-inactivate-hook): Mark obsolete.
7746 (inactivate-input-method): Mark obsolete.
7747
7748 * international/quail.el (quail-activate):
7749 Also run quail-deactivate-hook.
7750 (quail-deactivate): Rename from quail-inactivate.
7751 * international/robin.el (robin-activate):
7752 Also run robin-deactivate-hook.
7753 (robin-deactivate): Rename from robin-inactivate.
7754
77552012-07-29 Chong Yidong <cyd@gnu.org>
7756
7757 * simple.el (indicate-copied-region): New function.
7758 (kill-ring-save): Split off from here.
7759
7760 * rect.el (copy-rectangle-as-kill): Call indicate-copied-region.
7761 (kill-rectangle): Set deactivate-mark to t on read-only error.
7762
7763 * register.el (copy-to-register, copy-rectangle-to-register):
7764 Deactivate the mark, and use indicate-copied-region (Bug#10056).
7765 (append-to-register, prepend-to-register): Call indicate-copied-region.
7766
77672012-07-29 Juri Linkov <juri@jurta.org>
7768
7769 * simple.el (async-shell-command-buffer): New defcustom.
7770 (shell-command): Use it. (Bug#4719)
7771
77722012-07-28 Eli Zaretskii <eliz@gnu.org>
7773
7774 * international/mule-cmds.el (set-locale-environment): In a
7775 console session on MS-Windows, set up keyboard and terminal
7776 encoding from the OEM codepage, not the ANSI codepage.
7777 (Bug#12055)
7778
77792012-07-28 Chong Yidong <cyd@gnu.org>
7780
7781 * progmodes/gdb-mi.el (gdb-place-breakpoints): Fix the call to
7782 gdb-get-location.
7783
77842012-07-28 Leo Liu <sdl.web@gmail.com>
7785
7786 * progmodes/cc-menus.el (cc-imenu-objc-function): Avoid leaving nil in
7787 the alist (bug#12029).
7788
77892012-07-28 Eli Zaretskii <eliz@gnu.org>
7790
7791 * makefile.w32-in (custom-deps, finder-data, updates, compile)
7792 (compile-always, compile-first)
7793 ($(lisp)/calendar/cal-loaddefs.el)
7794 ($(lisp)/calendar/diary-loaddefs.el)
7795 ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
7796 ($(lisp)/net/tramp-loaddefs.el, bootstrap)
7797 ($(lisp)/progmodes/cc-mode.elc): Depend on $(lisp)subdirs.el,
7798 instead of on update-subdirs.
7799 (bootstrap-clean): Delete $(lisp)/subdirs.el.
7800
78012012-07-28 Chong Yidong <cyd@gnu.org>
7802
7803 * vc/vc.el (vc-root-diff, vc-print-root-log): Prompt for a
7804 directory if vc-deduce-backend returns nil (Bug#7350).
7805
7806 * simple.el (delete-trailing-lines): New option.
7807 (delete-trailing-whitespace): Obey it (Bug#11879).
7808
78092012-07-28 David Engster <deng@randomsample.de>
7810
7811 * xml.el (xml-node-name, xml-parse-file, xml-parse-region):
7812 Explanation of new 'symbol-qnames feature in doc-strings.
7813 (xml-maybe-do-ns): Return expanded names as plain symbols if
7814 'symbol-qnames was provided in XML-NS argument (Bug#11916).
7815 (xml-parse-tag-1): Deal with new definition of PARSE-NS argument.
7816
78172012-07-27 Fabián Ezequiel Gallina <fgallina@cuca>
7818
7819 Consistent completion in inferior python with emacs -nw.
7820 * progmodes/python.el (inferior-python-mode): replace "<tab>"
7821 binding in inferior-python-mode-map with "\t".
7822 (python-shell-completion-complete-at-point)
7823 (python-completion-complete-at-point): Remove interactive spec.
7824
78252012-07-27 Jay Belanger <jay.p.belanger@gmail.com>
7826
7827 * calc/calccomp.el (math-compose-expr): Undo previous change.
7828
78292012-07-27 Fabián Ezequiel Gallina <fgallina@cuca>
7830
7831 * progmodes/python.el (python-mode-map): Add keybinding for
7832 run-python.
7833 (python-shell-make-comint): Fix pop-to-buffer call.
7834 (run-python): Autoload. New arg SHOW.
7835 (python-shell-get-or-create-process): Do not pop python process
7836 buffer.
7837
78382012-07-27 Michael Albinus <michael.albinus@gmx.de>
7839
7840 * notifications.el (notifications-on-action-signal)
7841 (notifications-on-closed-signal): Use also the bus address for the map.
7842 (notifications-notify, notifications-close-notification)
7843 (notifications-get-capabilities): Add optional argument BUS.
7844
78452012-07-27 Tassilo Horn <tsdh@gnu.org>
7846
7847 * textmodes/reftex-vars.el (reftex-label-alist-builtin):
7848 Add support for the lstlisting and minted environments, and for the
7849 ctable macro.
7850 * textmodes/reftex.el (reftex-compile-variables): Also recognize
7851 labels written in keyvals syntax.
7852
78532012-07-27 Jay Belanger <jay.p.belanger@gmail.com>
7854
7855 * calc/calccomp.el (math-compose-expr): Use parentheses when
7856 there is a product in the denominator of a fraction.
7857
78582012-07-26 Eli Zaretskii <eliz@gnu.org>
7859
7860 * makefile.w32-in ($(lisp)/calendar/cal-loaddefs.el)
7861 ($(lisp)/calendar/diary-loaddefs.el)
7862 ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
7863 ($(lisp)/net/tramp-loaddefs.el): Depend on update-subdirs.
7864 Fixes failures in parallel bootstrap because subdirs.el is being
7865 rewritten while the autoload files are built at the same time,
7866 which needs to load subdirs.el.
7867
78682012-07-26 Martin Rudalics <rudalics@gmx.at>
7869
7870 * mouse.el (popup-menu): Fix doc-string and re-indent code.
7871 (mouse-drag-line): Don't exit tracking when a switch-frame or
7872 switch-window event occurs (Bug#12006).
7873
78742012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
7875
7876 * mouse.el (popup-menu): Fix last change.
7877
78782012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
7879
7880 Autoload from Lisp with more care. Follow aliases when looking for
7881 function properties.
7882 * subr.el (autoloadp): New function.
7883 (symbol-file): Use it.
7884 (function-get): New function.
7885 * emacs-lisp/macroexp.el (macroexp--expand-all): Use function-get and
7886 autoload-do-load.
7887 * emacs-lisp/lisp-mode.el (lisp-font-lock-syntactic-face-function)
7888 (lisp-indent-function):
7889 * emacs-lisp/gv.el (gv-get):
7890 * emacs-lisp/edebug.el (get-edebug-spec, edebug-basic-spec):
7891 * emacs-lisp/byte-opt.el (byte-optimize-form):
7892 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
7893 * emacs-lisp/autoload.el (make-autoload, autoload-print-form):
7894 Use function-get.
7895 * emacs-lisp/cl.el: Don't propagate function properties any more.
7896
7897 * speedbar.el (speedbar-add-localized-speedbar-support):
7898 * emacs-lisp/disass.el (disassemble-internal):
7899 * desktop.el (desktop-load-file):
7900 * help-fns.el (help-function-arglist, find-lisp-object-file-name)
7901 (describe-function-1):
7902 * emacs-lisp/find-func.el (find-function-noselect):
7903 * emacs-lisp/elp.el (elp-instrument-function):
7904 * emacs-lisp/advice.el (ad-has-proper-definition):
7905 * apropos.el (apropos-safe-documentation, apropos-macrop):
7906 * emacs-lisp/debug.el (debug-on-entry):
7907 * emacs-lisp/cl-macs.el (cl-compiler-macroexpand):
7908 * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
7909 * calc/calc.el (name): Use autoloadp & autoload-do-load.
7910
79112012-07-25 Alp Aker <alp.tekin.aker@gmail.com>
7912
7913 * international/mule-cmds.el (ucs-insert): Mark it as an obsolete
7914 function, not an obsolete variable (Bug#12046).
7915
79162012-07-25 Andreas Schwab <schwab@linux-m68k.org>
7917
7918 * faces.el (face-spec-reset-face): Fix last change. (Bug#12042)
7919
79202012-07-25 Christopher Schmidt <christopher@ch.ristopher.com>
7921
7922 * emacs-lisp/pp.el (pp-display-expression): Select old selected
7923 window only if it is still live (Bug#12034).
7924
79252012-07-25 Martin Rudalics <rudalics@gmx.at>
7926
7927 * subr.el (redirect-frame-focus): Add advertised calling
7928 convention (Bug#12030).
7929
79302012-07-25 Paul Eggert <eggert@cs.ucla.edu>
7931
7932 Prefer typical American spelling for "acknowledgment".
7933 * vc/add-log.el (change-log-acknowledgment): Rename from
7934 change-log-acknowledgement, with an alias for the old name.
7935
79362012-07-25 Jay Belanger <jay.p.belanger@gmail.com>
7937
7938 * calc-alg.el (math-simplify-divide): Don't cross multiply
7939 in an equation when the lhs is a variable.
7940
79412012-07-24 Julien Danjou <julien@danjou.info>
7942
7943 * net/netrc.el (netrc-find-service-number, netrc-store-data):
7944 Remove, unused.
7945
79462012-07-23 Eli Zaretskii <eliz@gnu.org>
7947
7948 * startup.el (command-line): Don't display an empty user name in
7949 the error message about non-existent home directory, when
7950 init-file-user was set to an empty string. See
7951 http://lists.gnu.org/archive/html/bug-gnu-emacs/2012-07/msg00835.html
7952 for the details and context.
7953
79542012-07-22 Vincent Belaïche <vincentb1@users.sourceforge.net>
7955
7956 * ses.el (ses-cell-formula-aset): New macro.
7957 (ses-cell-references-aset): New macro.
7958 (ses-cell-p): New function.
7959 (ses-rename-cell): Do no longer rely on complex operations like
7960 ses-cell-set-formula or ses-set-cell to change the cell and handle
7961 the undo at the same time, but rather use lower level new macros
7962 `ses-cell-formula-aset' and `ses-cell-references-aset' and handle
7963 the undo directly. Refresh the mode line.
7964
79652012-07-21 Leo Liu <sdl.web@gmail.com>
7966
7967 * progmodes/cc-cmds.el (c-defun-name):
7968 Use match-string-no-properties instead for consistency.
7969
79702012-07-20 Leo Liu <sdl.web@gmail.com>
7971
7972 * progmodes/cc-cmds.el (c-defun-name): Handle objc selectors properly.
7973 (Bug#7879)
7974
7975 * progmodes/cc-langs.el (c-symbol-start): Include char _ (bug#11986).
7976
79772012-07-20 Stefan Monnier <monnier@iro.umontreal.ca>
7978
7979 * userlock.el, emacs-lisp/map-ynp.el: Declare part of `emacs' package.
7980 * progmodes/bug-reference.el, misearch.el: Provide themselves
7981 (bug#11915).
7982
7983 * progmodes/cperl-mode.el (cperl-unwind-to-safe): Don't inf-loop at end
7984 of narrowed buffer (bug#11966).
7985
79862012-07-20 Vincent Belaïche <vincentb1@users.sourceforge.net>
7987
7988 * ses.el (ses-rename-cell): Set new name also in reference list of
7989 cells of which the renamed cell depends.
7990
79912012-07-20 Masatake YAMATO <yamato@redhat.com>
7992
7993 * term/x-win.el (x-menu-bar-open): Use `frame-parameter'
7994 to check whether menu-bar is shown or not. If not shown,
7995 show the menu-bar as a popup menu instead of using tmm.
7996 * mouse.el (popup-menu): Accept `point' as `position' argument.
7997
79982012-07-20 Dmitry Gutov <dgutov@yandex.ru>
7999
8000 * progmodes/ruby-mode.el (ruby-parse-partial): No error when end
8001 up inside string symbol literal (bug#11923).
8002
80032012-07-20 Eli Zaretskii <eliz@gnu.org>
8004
8005 * startup.el (fancy-startup-text): Read the whole tutorial, not
8006 just its first 256 bytes. Prevents gibberish in display of the
8007 tutorial title.
8008
80092012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
8010
8011 Drop idle buffer compaction due to an absence of the
8012 proved efficiency.
8013 * compact.el: Remove.
8014
80152012-07-19 Sam Steingold <sds@gnu.org>
8016
8017 * vc/vc-dispatcher.el (vc-compilation-mode): Add, based on
8018 vc-bzr-pull & vc-bzr-merge-branch.
8019 * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch): Use it.
8020 (vc-bzr-error-regexp-alist): Rename from vc-bzr-error-regex-alist
8021 for consistency with compilation-error-regexp-alist.
8022 * vc/vc-git.el (vc-git-error-regexp-alist): Add.
8023 (vc-git-pull, vc-git-merge-branch): Call vc-compilation-mode.
8024 * vc/vc-hg.el (vc-hg-error-regexp-alist): Add.
8025 (vc-hg-pull, vc-hg-merge-branch): Call vc-compilation-mode.
8026
80272012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
8028
8029 * emacs-lisp/chart.el: Use lexical-binding.
8030 (chart-emacs-storage): Don't hardcode the list of entries.
8031
80322012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
8033
8034 Next round of tweaks caused by Fgarbage_collect changes.
8035 * emacs-lisp/chart.el (chart-emacs-storage): Adjust again.
8036
80372012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
8038
8039 Compact buffers when idle.
8040 * compact.el: New file.
8041
80422012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
8043
8044 * subr.el (eventp): Presume that if it looks vaguely like an event,
8045 it's an event (bug#10190).
8046
80472012-07-19 Fabián Ezequiel Gallina <fgallina@cuca>
8048
8049 Enhancements to ppss related code (thanks Stefan).
8050 * progmodes/python.el (python-indent-context)
8051 (python-indent-calculate-indentation, python-indent-dedent-line)
8052 (python-indent-electric-colon, python-nav-forward-block)
8053 (python-mode-abbrev-table)
8054 (python-info-assignment-continuation-line-p): Simplify checks
8055 for ppss context.
8056 (python-info-continuation-line-p): Cleanup.
8057 (python-info-ppss-context): Do not catch 'quote.
8058 (python-info-ppss-context-type)
8059 (python-info-ppss-comment-or-string-p): Simplify.
8060
80612012-07-18 Fabián Ezequiel Gallina <fgallina@cuca>
8062
8063 * progmodes/python.el: Enhancements to eldoc support.
8064 (python-info-current-symbol): New function.
8065 (python-eldoc-at-point): Use python-info-current-symbol.
8066 (python-info-current-defun): Fix cornercase on first defun scan.
8067 (python-eldoc--get-doc-at-point): Use python-info-current-symbol
8068 and signal error when no inferior python process is available.
8069
80702012-07-18 Dmitry Gutov <dgutov@yandex.ru>
8071
8072 * vc/vc-git.el (vc-git-state): Don't call `vc-git-registered',
8073 assume it's always t.
8074 (vc-git-registered): Remove caching, the function is only called
8075 once.
8076 (vc-git-branches): Use `vc-git--call' instead of `call-process'.
8077
80782012-07-18 Chong Yidong <cyd@gnu.org>
8079
8080 * subr.el (last-input-char, last-command-char): Remove (Bug#9195).
8081
8082 * simple.el (count-words): Report on narrowing (Bug#9959).
8083
8084 * bindings.el: Bind M-= to count-words.
8085
8086 * faces.el (face-spec-reset-face): Handle reverse video (Bug#4238).
8087
80882012-07-18 Masatake YAMATO <yamato@redhat.com>
8089
8090 * progmodes/sh-script.el (sh-imenu-generic-expression):
8091 Capture a function with `function' keyword and without parentheses
8092 like "function FOO" (bug#11856).
8093
80942012-07-18 Tassilo Horn <tassilo@member.fsf.org>
8095
8096 * window.el (split-window-sensibly): Make WINDOW argument
8097 optional.
8098
80992012-07-18 Chong Yidong <cyd@gnu.org>
8100
8101 * subr.el (keyboard-translate): Doc fix (Bug#7261).
8102
8103 * isearch.el (isearch-mode-map): Handle C-x 8 key translations,
8104 and make C-x 8 RET exit isearch (Bug#11439).
8105
8106 * international/iso-transl.el: Move isearch-mode-map key
8107 definitions to isearch.el.
8108
81092012-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
8110
8111 * emacs-lisp/eieio.el: Adapt further to gv.el (bug#11970).
8112 (eieio-defclass): Use gv-define-setter when possible.
8113
81142012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
8115
8116 Reflect recent changes in Fgarbage_collect.
8117 * emacs-lisp/chart.el (chart-emacs-storage): Change to
8118 reflect new format of data returned by Fgarbage_collect.
8119
81202012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
8121
8122 New utility functions + python-info-ppss-context fix (Bug#11910).
8123 * progmodes/python.el (python-info-beginning-of-block-statement-p)
8124 (python-info-ppss-comment-or-string-p): New functions.
8125 (python-info-ppss-context): Small fix for string check.
8126
81272012-07-17 Juri Linkov <juri@jurta.org>
8128
8129 * dired-aux.el (dired-do-async-shell-command): Doc fix.
8130 (dired-do-async-shell-command): Don't add `*' at the end of the
8131 command (Bug#11815).
8132 (dired-do-shell-command): Doc fix.
8133 (dired-shell-stuff-it): Strip the trailing "&" and ";" if any.
8134 Join the individual commands using either "&" or ";" as the
8135 separator depending on the values of these trailing characters.
8136 At the end re-add the trailing "&". (Bug#10598)
8137
8138 * simple.el (async-shell-command): Sync the interactive spec with
8139 `shell-command'. Doc fix.
8140 (shell-command): Doc fix.
8141
81422012-07-17 Juri Linkov <juri@jurta.org>
8143
8144 * descr-text.el (describe-char): Fix format args. (Bug#10129)
8145
81462012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
8147
8148 Final renames and doc fixes for movement commands (bug#11899).
8149 * progmodes/python.el (python-nav-beginning-of-statement):
8150 Rename from python-nav-statement-start.
8151 (python-nav-end-of-statement): Rename from
8152 python-nav-statement-end.
8153 (python-nav-beginning-of-block): Rename from
8154 python-nav-block-start.
8155 (python-nav-end-of-block): Rename from python-nav-block-end.
8156
81572012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
8158
8159 * progmodes/python.el (python-shell-send-string-no-output):
8160 Allow accept-process-output to quit, keeping shell process ready for
8161 future interactions (Bug#11868).
8162
81632012-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
8164
8165 * emacs-lisp/cl-macs.el (cl-progv): Use a properly prefixed var name.
8166
8167 * emacs-lisp/elint.el (elint-find-args-in-code):
8168 Use help-function-arglist, so as to handle lexical byte-code.
8169
8170 * progmodes/sh-script.el (sh-syntax-propertize-function): Fix last
8171 change (bug#11826).
8172
81732012-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
8174
8175 * progmodes/cc-engine.el (c-forward-sws, c-backward-sws):
8176 Avoid spuriously marking the buffer as modified because of c-is-sws.
8177
8178 * progmodes/sh-script.el (sh-syntax-propertize-function): Mark "${#VAR"
8179 as not-a-comment (bug#11946).
8180
8181 * emacs-lisp/macroexp.el (macroexp-let2): Use more informative names
8182 for uninterned vars.
8183
8184 * xt-mouse.el (xterm-mouse-translate-1, xterm-mouse-event-read):
8185 Use read-event since we don't really want to read chars but bytes.
8186
8187 * textmodes/tex-mode.el (tex-font-lock-keywords-1): Highlight not only
8188 $$..$$ but also $..$ using regexps (bug#11953).
8189 Use tex-verbatim for \url and \path.
8190 (tex-font-lock-keywords): Define as defconst like the others.
8191 (tex-common-initialization): Don't use font-lock-syntax-table any more.
8192
81932012-07-16 René Kyllingstad <Rene@Kyllingstad.com> (tiny change)
8194
8195 * international/mule-cmds.el (ucs-insert): Make it an obsolete
8196 alias for insert-char.
8197
81982012-07-16 Fabián Ezequiel Gallina <fgallina@cuca>
8199
8200 * progmodes/python.el: Simplified imenu implementation.
8201 (python-nav-jump-to-defun): Remove command.
8202 (python-mode-map): Use `imenu' instead.
8203 (python-nav-list-defun-positions-cache)
8204 (python-imenu-include-defun-type, python-imenu-make-tree)
8205 (python-imenu-subtree-root-label, python-imenu-index-alist):
8206 Remove vars.
8207 (python-nav-list-defun-positions, python-nav-read-defun)
8208 (python-imenu-tree-assoc, python-imenu-make-element-tree)
8209 (python-imenu-make-tree, python-imenu-create-index):
8210 Remove functions.
8211 (python-mode): Update to interact with imenu by setting
8212 `imenu-extract-index-name-function' only.
8213
82142012-07-16 Fabián Ezequiel Gallina <fgallina@cuca>
8215
8216 * progmodes/python.el: Enhancements to navigation commands.
8217 (python-nav-backward-sentence)
8218 (python-nav-forward-sentence): Remove.
8219 (python-nav-backward-statement, python-nav-forward-statement)
8220 (python-nav-statement-start, python-nav-statement-end)
8221 (python-nav-backward-block, python-nav-forward-block)
8222 (python-nav-block-start, python-nav-block-end)
8223 (python-nav-forward-sexp-function)
8224 (python-info-current-line-comment-p)
8225 (python-info-current-line-empty-p): New functions.
8226 (python-indent-context): Use `python-nav-statement-start'.
8227
82282012-07-16 Michael Albinus <michael.albinus@gmx.de>
8229
8230 * eshell/em-ls.el (eshell/ls): Use `apply'.
8231
8232 * eshell/em-unix.el (eshell/su, eshell/sudo): Apply Tramp's ad-hoc
8233 multi-hops, instead of Tramp internals.
8234
8235 * vc/ediff.el (ediff-directories): Add trailing space to prompts.
8236
8237 * vc/ediff-diff.el (ediff-same-file-contents): Handle the case,
8238 when F1 and F2 are located on different hosts.
8239
82402012-07-14 Chong Yidong <cyd@gnu.org>
8241
8242 * xt-mouse.el: Implement extended mouse coordinates (Bug#10642).
8243 (xterm-mouse-translate): Move code into xterm-mouse-translate-1.
8244 (xterm-mouse-translate-extended, xterm-mouse-translate-1)
8245 (xterm-mouse--read-event-sequence-1000)
8246 (xterm-mouse--read-event-sequence-1006): New functions. For old
8247 mouse protocol, handle M-mouse-X events correctly.
8248 (xterm-mouse-event): New arg specifying mouse protocol.
8249 (turn-on-xterm-mouse-tracking-on-terminal)
8250 (turn-off-xterm-mouse-tracking-on-terminal): Send DEC 1006
8251 sequence to toggle extended coordinates on newer XTerms.
8252 This appears to be harmless on terminals which do not support this.
8253
82542012-07-14 Leo Liu <sdl.web@gmail.com>
8255
8256 Add fringe bitmap indicators for flymake. (Bug#11253)
8257 * progmodes/flymake.el (flymake-highlight-line): Use fringe bitmaps.
8258 (flymake-make-overlay): New arg BITMAP.
8259 (flymake-error-bitmap, flymake-warning-bitmap)
8260 (flymake-fringe-indicator-position): New user variables.
8261
8262 * fringe.el: New bitmap exclamation-mark.
8263
82642012-07-14 Jan Djärv <jan.h.d@swipnet.se>
8265
8266 * progmodes/cc-cmds.el (c-defun-name): Recognize Objective-C methods
8267 also (Bug#7879).
8268
82692012-07-14 Chong Yidong <cyd@gnu.org>
8270
8271 * electric.el (electric-pair-post-self-insert-function): Fix pair
8272 insertion in empty-region case (Bug#11520).
8273
82742012-07-14 Chong Yidong <cyd@gnu.org>
8275
8276 * bindings.el: Consolidate ctl-x-r-map bindings.
8277 Bind copy-rectangle-as-kill to C-x r w.
8278
8279 * rect.el, register.el: Move bindings to bindings.el.
8280
82812012-07-14 Reuben Thomas <rrt@sc3d.org>
8282
8283 * rect.el (copy-rectangle-as-kill): New command (Bug#739).
8284
82852012-07-13 Andreas Schwab <schwab@linux-m68k.org>
8286
8287 * emacs-lisp/cl.el (labels): Remove spurious quote. (Bug#11938)
8288
82892012-07-13 Juanma Barranquero <lekktu@gmail.com>
8290
8291 * bindings.el (top): Use `mapc' instead of `mapcar'.
8292
8293 * loadup.el (top): Remove bogus `if' choice (brought by 2008-06-21T01:38:39Z!monnier@iro.umontreal.ca).
8294
82952012-07-13 Michael Albinus <michael.albinus@gmx.de>
8296
8297 * progmodes/sql.el (sql-comint): Suppress the check for program on
8298 remote hosts. Reported by Francis Devereux <francis@devrx.org>.
8299 (Bug#11908)
8300
83012012-07-13 Chong Yidong <cyd@gnu.org>
8302
8303 * bindings.el: Assign a non-nil permanent-local property to
8304 per-buffer variables which lack a default value (Bug#11930).
8305
8306 * help-fns.el (describe-variable): In the "automatically becomes
8307 local" notice, take note of permanent-local variables.
8308
83092012-07-13 Chong Yidong <cyd@gnu.org>
8310
8311 * files.el (toggle-read-only): Doc fix and code cleanup. New arg
8312 to allow printing the message when called from Lisp.
8313
8314 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
8315 Remove toggle-read-only.
8316
8317 * bs.el (bs-toggle-readonly):
8318 * buff-menu.el (Buffer-menu-toggle-read-only):
8319 Remove with-no-warnings around toggle-read-only.
8320
8321 * ffap.el (ffap--toggle-read-only): Accept a list of buffers.
8322 Remove with-no-warnings around toggle-read-only.
8323 (ffap-read-only, ffap-read-only-other-window)
8324 (ffap-read-only-other-frame): Callers changed.
8325
8326 * help-mode.el: Don't require view package.
8327 (help-mode-finish): Set buffer-read-only instead of calling
8328 toggle-read-only.
8329
8330 * bindings.el (mode-line-toggle-read-only):
8331 * dired.el (dired-toggle-read-only):
8332 * ibuffer.el (ibuffer-do-toggle-read-only): Call toggle-read-only
8333 with non-nil second arg.
8334
8335 * emacs-lisp/eieio-custom.el (eieio-customize-object):
8336 * vc/ediff.el (ediff-set-read-only-in-buf-A): Set buffer-read-only
8337 directly.
8338
83392012-07-12 Eli Zaretskii <eliz@gnu.org>
8340
8341 * emacs-lisp/bytecomp.el (byte-recompile-directory): Use cl-incf,
8342 not incf.
8343
83442012-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
8345
8346 More CL cleanups and reduction of use of cl.el.
8347 * woman.el, winner.el, vc/vc-rcs.el, vc/vc-hooks.el, vc/vc-hg.el:
8348 * vc/vc-git.el, vc/vc-dir.el, vc/vc-bzr.el, vc/vc-annotate.el:
8349 * textmodes/tex-mode.el, textmodes/sgml-mode.el, tar-mode.el:
8350 * strokes.el, ses.el, server.el, progmodes/js.el, progmodes/gdb-mi.el:
8351 * progmodes/flymake.el, progmodes/ebrowse.el, progmodes/compile.el:
8352 * play/tetris.el, play/snake.el, play/pong.el, play/landmark.el:
8353 * play/hanoi.el, play/decipher.el, play/5x5.el, nxml/nxml-mode.el:
8354 * net/secrets.el, net/quickurl.el, midnight.el, mail/footnote.el:
8355 * image-dired.el, ibuffer.el, ibuf-macs.el, ibuf-ext.el, hexl.el:
8356 * eshell/eshell.el, eshell/esh-io.el, eshell/esh-ext.el:
8357 * eshell/esh-cmd.el, eshell/em-ls.el, eshell/em-hist.el:
8358 * eshell/em-cmpl.el, eshell/em-banner.el:
8359 * calendar/parse-time.el: Use cl-lib.
8360 * wid-browse.el, wdired.el, vc/vc.el, vc/vc-mtn.el, vc/vc-cvs.el:
8361 * vc/vc-arch.el, tree-widget.el, textmodes/texinfo.el:
8362 * textmodes/refill.el, textmodes/css-mode.el, term/tvi970.el:
8363 * term/ns-win.el, term.el, shell.el, ps-samp.el:
8364 * progmodes/perl-mode.el, progmodes/pascal.el, progmodes/gud.el:
8365 * progmodes/glasses.el, progmodes/etags.el, progmodes/cwarn.el:
8366 * play/gamegrid.el, play/bubbles.el, novice.el, notifications.el:
8367 * net/zeroconf.el, net/xesam.el, net/snmp-mode.el, net/mairix.el:
8368 * net/ldap.el, net/eudc.el, net/browse-url.el, man.el:
8369 * mail/mailheader.el, mail/feedmail.el: Don't use CL.
8370 * ibuf-ext.el (ibuffer-mark-old-buffers): Use float-time.
8371 * eshell/esh-opt.el (eshell-eval-using-options): Quote code with
8372 `lambda' rather than with `quote'.
8373 (eshell-do-opt): Adjust accordingly.
8374 (eshell-process-option): Simplify.
8375 * eshell/esh-var.el:
8376 * eshell/em-script.el: Require `esh-opt' for eshell-eval-using-options.
8377 * emacs-lisp/pcase.el (pcase--dontcare-upats, pcase--let*)
8378 (pcase--expand, pcase--u1): Rename pcase's internal `dontcare' pattern
8379 to `pcase--dontcare'.
8380 * emacs-lisp/cl.el (labels): Mark obsolete.
8381 (cl--letf, letf): Move to cl-lib.
8382 (cl--letf*, letf*): Remove.
8383 * emacs-lisp/cl-lib.el (cl-nth-value): Use defalias.
8384 * emacs-lisp/cl-macs.el (cl-dolist, cl-dotimes): Add indent rule.
8385 (cl-progv): Rewrite.
8386 (cl--letf, cl-letf): Move from cl.el.
8387 (cl-letf*): New macro.
8388 * emacs-lisp/cl-extra.el (cl--progv-before, cl--progv-after): Remove.
8389
83902012-07-11 Michael Albinus <michael.albinus@gmx.de>
8391
8392 * net/ange-ftp.el (ange-ftp-cf1): Update the files cache.
8393
83942012-07-11 Chong Yidong <cyd@gnu.org>
8395
8396 * vc/log-edit.el (log-edit-vc-backend): New variable.
8397 (log-edit): Doc fix.
8398
8399 * vc/vc-dispatcher.el (vc-log-edit): New args. Use PARAMS
8400 argument of log-edit to set up all local variables.
8401 (vc-start-logentry): New optional arg specifying VC backend.
8402
8403 * vc/vc.el (vc-checkin): Use it.
8404 (vc-deduce-fileset): Handle Log Edit buffers.
8405 (vc-diff): Make first argument optional too.
8406
8407 * vc/log-view.el (log-view-vc-fileset, log-view-vc-backend): Doc fix.
8408
84092012-07-10 Michael Albinus <michael.albinus@gmx.de>
8410
8411 * eshell/esh-ext.el (eshell-remote-command): Remove remote part of
8412 command, just in case. The function is not needed anymore.
8413 (eshell-external-command): Do not call `eshell-remote-command'.
8414
84152012-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
8416
8417 Reduce use of (require 'cl).
8418 * vc/smerge-mode.el, vc/pcvs.el, vc/pcvs-util.el, vc/pcvs-info.el:
8419 * vc/diff-mode.el, vc/cvs-status.el, uniquify.el, scroll-bar.el:
8420 * register.el, progmodes/sh-script.el, net/gnutls.el, net/dbus.el:
8421 * msb.el, mpc.el, minibuffer.el, international/ucs-normalize.el:
8422 * international/quail.el, info-xref.el, imenu.el, image-mode.el:
8423 * font-lock.el, filesets.el, edmacro.el, doc-view.el, bookmark.el:
8424 * battery.el, avoid.el, abbrev.el: Use cl-lib.
8425 * vc/pcvs-parse.el, vc/pcvs-defs.el, vc/log-view.el, vc/log-edit.el:
8426 * vc/diff.el, simple.el, pcomplete.el, lpr.el, comint.el, loadhist.el:
8427 * jit-lock.el, international/iso-ascii.el, info.el, frame.el, bs.el:
8428 * emulation/crisp.el, electric.el, dired.el, cus-dep.el, composite.el:
8429 * calculator.el, autorevert.el, apropos.el: Don't require CL.
8430 * emacs-lisp/bytecomp.el (byte-recompile-directory, display-call-tree)
8431 (byte-compile-unfold-bcf, byte-compile-check-variable):
8432 * emacs-lisp/byte-opt.el (byte-compile-trueconstp)
8433 (byte-compile-nilconstp):
8434 * emacs-lisp/autoload.el (make-autoload): Use pcase.
8435 * face-remap.el (text-scale-adjust): Simplify pcase patterns.
8436
8437 * emacs-lisp/gv.el (cond): Make it a valid place.
8438 (if): Simplify slightly.
8439
8440 * emacs-lisp/pcase.el (pcase): Accept self-quoting exps as "upatterns".
8441 (pcase--self-quoting-p): New function.
8442 (pcase--u1): Use it.
8443
84442012-07-10 Glenn Morris <rgm@gnu.org>
8445
8446 * emacs-lisp/authors.el (authors-fixed-entries):
8447 (authors-renamed-files-alist): Update for configure.in -> configure.ac.
8448
84492012-07-09 Paul Eggert <eggert@cs.ucla.edu>
8450
8451 Rename configure.in to configure.ac (Bug#11603).
8452 * emacs-lisp/authors.el (authors-canonical-file-name):
8453 * progmodes/autoconf.el (autoconf-mode):
8454 Prefer configure.ac to configure.in.
8455
84562012-07-08 Chong Yidong <cyd@gnu.org>
8457
8458 * mouse.el (mouse-drag-line): Rewrite the track-mouse loop.
8459 Implement the mouse-1-click-follows-link handling properly.
8460
8461 * info.el (Info-link-keymap): Use follow-link mechanism for
8462 header-line links (Bug#374).
8463
8464 * simple.el (deactivate-mark): Do not set the primary selection
8465 if another program has acquired it (Bug#11772).
8466
84672012-07-07 Kevin Ryde <user42@zip.com.au>
8468
8469 * woman.el (woman-strings): Fix double-quote handling (Bug#1151).
8470 (woman-decode-region): Replace escaped-escapes without destroying
8471 bold or underline (Bug#11552).
8472 (woman2-process-escapes): Handle nofill regions (Bug#11591).
8473
84742012-07-07 Chong Yidong <cyd@gnu.org>
8475
8476 * simple.el (yank-pop-change-selection): Doc fix (Bug#11361).
8477 (interprogram-cut-function, interprogram-paste-function):
8478 Mention that we typically mean the clipboard.
8479
84802012-07-06 Glenn Morris <rgm@gnu.org>
8481
8482 * kmacro.el (kmacro-call-macro): Restore repeat message. (Bug#11817)
8483
8484 * files.el (toggle-read-only): Restrict message to interactive use.
8485
84862012-07-06 Michael Albinus <michael.albinus@gmx.de>
8487
8488 * net/tramp.el (tramp-restricted-shell-hosts-alist): New defcustom.
8489
8490 * net/tramp-sh.el (tramp-maybe-open-connection): Handle it.
8491
84922012-07-06 Glenn Morris <rgm@gnu.org>
8493
8494 * Makefile.in (compile-one-process): Rename from "recompile".
8495
8496 * Makefile.in (bzr-update): "compile" is the same as "recompile
8497 autoloads", but parallelizable, so use that instead.
8498
84992012-07-06 Dmitry Gutov <dgutov@yandex.ru>
8500
8501 * window.el (quit-window): Always restore window height when
8502 it's saved in quit-restore parameter (Bug#11810).
8503
85042012-07-06 Glenn Morris <rgm@gnu.org>
8505
8506 * simple.el (kill-whole-line): Doc tweak.
8507
85082012-07-06 Eli Zaretskii <eliz@gnu.org>
8509
8510 * files.el (file-relative-name): Compare file names
8511 case-insensitively if on MS-Windows or MS-DOS, or if
8512 read-file-name-completion-ignore-case is non-nil. Don't use
8513 case-fold-search for this purpose. (Bug#11827)
8514
85152012-07-17 Andreas Schwab <schwab@linux-m68k.org>
8516
8517 * calendar/cal-dst.el (calendar-current-time-zone):
8518 Return calendar-current-time-zone-cache if non-nil.
8519
85202012-07-17 Masatake YAMATO <yamato@redhat.com>
85212012-07-06 Andreas Schwab <schwab@linux-m68k.org>
8522
8523 * calendar/cal-dst.el (calendar-current-time-zone):
8524 Return calendar-current-time-zone-cache if non-nil.
8525
85262012-07-06 Glenn Morris <rgm@gnu.org>
8527
8528 * Makefile.in (cvs-update): Remove old alias.
8529
85302012-07-05 Michael Albinus <michael.albinus@gmx.de>
8531
8532 Sync with Tramp 2.2.6-pre.
8533
8534 * net/tramp.el (tramp-drop-volume-letter): Provide an XEmacs
8535 compatible declaration.
8536
8537 * net/tramp-cmds.el (tramp-append-tramp-buffers):
8538 Protect `list-load-path-shadows' call.
8539
8540 * net/tramp-compat.el (top): Require packages, which aren't
8541 autoloaded anymore for XEmacs. Protect call of
8542 `tramp-file-name-handler' by `tramp-compat-funcall', pacifying the
8543 compiler. Do not require tramp-util.el and tramp-vc.el anymore,
8544 it hurts at least for SXEmacs.
8545 (tramp-compat-temporary-file-directory): In XEmacs, there is no
8546 standard-value for `temporary-file-directory'.
8547
8548 * net/tramp-sh.el (tramp-do-directory-files-and-attributes-with-stat):
8549 Redirect stderr to /dev/null.
8550 (tramp-sh-handle-write-region): uid and gid can be floats.
8551 Reported by Russell Sim <russell.sim@gmail.com>.
8552 (tramp-sh-handle-vc-registered): Hide errors.
8553 (tramp-vc-file-name-handler): Use dummy results for `process-file'
8554 and `start-file-process'.
8555 (tramp-maybe-open-connection): Check also whether `non-essential'
8556 is bound.
8557
85582012-07-04 Chong Yidong <cyd@gnu.org>
8559
8560 * xml.el (xml--parse-buffer): Use xml-syntax-table.
8561 (xml-parse-tag): Likewise, and avoid changing entity tables.
8562 (xml-syntax-table): Define from scratch, making sure not to give
8563 x2000 and other Unicode spaces whitespace syntax, since those are
8564 not spaces in XML.
8565 (xml-parse-fragment): Delete unused function.
8566 (xml-name-start-char-re, xml-name-char-re, xml-name-re)
8567 (xml-names-re, xml-nmtoken-re, xml-nmtokens-re, xml-char-ref-re)
8568 (xml-entity-ref, xml-pe-reference-re)
8569 (xml-reference-re,xml-att-value-re, xml-tokenized-type-re)
8570 (xml-notation-type-re, xml-enumeration-re, xml-enumerated-type-re)
8571 (xml-att-type-re, xml-default-decl-re, xml-att-def-re)
8572 (xml-entity-value-re): Use syntax references in regexps where
8573 possible; no need to define inside a let-binding.
8574 (xml-parse-dtd): Use xml-pe-reference-re.
8575 (xml-entity-or-char-ref-re): New defconst.
8576 (xml-parse-string, xml-substitute-special): Use it.
8577
85782012-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
8579
8580 * files.el (locate-dominating-file): Allow `name' to be a predicate.
8581 (find-file--read-only): New function.
8582 (find-file-read-only, find-file-read-only-other-window)
8583 (find-file-read-only-other-frame): Use it.
8584 (insert-file-contents-literally): Don't `fset'.
8585 (get-free-disk-space): Use locate-dominating-file.
8586
8587 * emacs-lisp/bytecomp.el (byte-compile): Don't signal an error if the
8588 function is already compiled.
8589
8590 * xml.el (xml-name-regexp): Remove, redundant. Use xml-name-re.
8591
85922012-07-03 Michael Albinus <michael.albinus@gmx.de>
8593
8594 * vc/ediff-diff.el (ediff-same-file-contents): Fix it for remote
8595 files on the same host.
8596
85972012-07-03 Andreas Schwab <schwab@linux-m68k.org>
8598
8599 * help-fns.el (describe-function-1): Only call
8600 help-fns--autoloaded-p when we have a file name. (Bug#11848)
8601
86022012-07-03 Chong Yidong <cyd@gnu.org>
8603
8604 * xml.el: Protect parser against XML bombs.
8605 (xml-entity-expansion-limit): New variable.
8606 (xml-parse-string, xml-substitute-special): Use it.
8607 (xml-parse-dtd): Avoid infloop if the DTD is not terminated.
8608
86092012-07-03 Glenn Morris <rgm@gnu.org>
8610
8611 * progmodes/bug-reference.el (bug-reference-bug-regexp):
8612 Allow linking to specific messages in debbugs reports (eg 123#5).
8613
86142012-07-02 Chong Yidong <cyd@gnu.org>
8615
8616 * xml.el: Fix entity and character reference expansion, allowing
8617 them to expand into markup as per XML spec.
8618 (xml-default-ns): New variable.
8619 (xml-entity-alist): Use XML spec definitions for lt and amp.
8620 (xml-parse-region): Make first two arguments optional.
8621 Discard text properties.
8622 (xml-parse-tag-1): New function, spun off from xml-parse-tag.
8623 All callers changed.
8624 (xml-parse-tag): Call xml-parse-tag-1. For backward
8625 compatibility, this function should not modify buffer contents.
8626 (xml-parse-tag-1): Fix opening-tag regexp.
8627 (xml-parse-string): Rewrite, handling entity and character
8628 references properly.
8629 (xml--entity-replacement-text): Signal an error if a parameter
8630 entity is undefined.
8631
86322012-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
8633
8634 * comint.el (comint-output-filter): Filter out repeated prompts.
8635
8636 * net/ange-ftp.el (ange-ftp-expand-file-name): Use ange-ftp-ftp-name
8637 and file-name-absolute-p.
8638 (ange-ftp-file-exists-p): Use ange-ftp-file-exists-p for
8639 internal calls.
8640
86412012-07-02 Paul Eggert <eggert@cs.ucla.edu>
8642
8643 Spelling fixes.
8644 * emacs-lisp/bytecomp.el (byte-compile--reify-function):
8645 Rename from byte-compile--refiy-function. All uses changed.
8646
86472012-07-01 Chong Yidong <cyd@gnu.org>
8648
8649 * xml.el (xml--parse-buffer): New function. Move most of
8650 xml-parse-region here.
8651 (xml-parse-region): Copy region into a temporary buffer, since
8652 parameter entity substitution requires changing buffer contents.
8653 Use xml--parse-buffer.
8654 (xml-parse-file): Use xml--parse-buffer.
8655 (xml-parse-dtd): Make parameter entity substitution work right.
8656 Use proper regexps for ELEMENT declarations (Bug#7172).
8657
86582012-06-30 Glenn Morris <rgm@gnu.org>
8659
8660 * comint.el (follow-comint-scroll-to-bottom): Fix declaration.
8661
8662 * net/secrets.el, net/tramp-gvfs.el, net/xesam.el, net/zeroconf.el:
8663 Remove outdated and unnecessary dbus declarations.
8664
86652012-06-30 Eli Zaretskii <eliz@gnu.org>
8666
8667 * emacs-lisp/timer.el (timer-until): Subtract results of
8668 float-time, instead of taking float-time of the result of
8669 time-subtract, since float-time signals an error for negative time
8670 arguments.
8671
86722012-06-30 Chong Yidong <cyd@gnu.org>
8673
8674 * xml.el (xml-*-re): Convert defvars into defconsts, and
8675 eval-and-compile them so eval-and-compile works on derivatives.
8676 (xml--entity-replacement-text): Use eval-and-comple.
8677
86782012-06-30 Michael Albinus <michael.albinus@gmx.de>
8679
8680 * vc/vc-git.el (vc-git-registered): Use cache property
8681 `git-registered'.
8682 (vc-git-mode-line-string): Call `vc-working-revision' instead of
8683 `vc-git-working-revision' in order to benefit from the cache.
8684 (vc-git-root): Use cache property `git-root'. (Bug#11757)
8685
86862012-06-30 Dmitry Gutov <dgutov@yandex.ru>
8687
8688 * vc/vc-hooks.el (vc-before-save): Clear cache if file has been
8689 removed (likely outside Emacs). (Bug#11757)
8690
86912012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
8692
8693 * emacs-lisp/cl-lib.el: Require macroexp.
8694
86952012-06-30 Chong Yidong <cyd@gnu.org>
8696
8697 * xml.el: Implement XML parameter entities.
8698 (xml-parameter-entity-alist): New variable.
8699 (xml-parse-region, xml-parse-fragment): Preserve previous values
8700 of xml-entity-alist and xml-parameter-entity-alist, so that
8701 repeated calls on different documents do not change them.
8702 (xml-parse-tag): Fix doctype regexp.
8703 (xml--entity-replacement-text): New function.
8704 (xml-parse-dtd): Use it. Don't handle system entities; doing that
8705 properly requires url retrieval which is unimplemented.
8706 (xml-escape-string): Doc fix.
8707
87082012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
8709
8710 * emacs-lisp/cl-lib.el (cl-pushnew): Use macroexp-let2.
8711
87122012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
8713
8714 * fringe.el (fringe-mode): Doc fix.
8715
87162012-06-29 Michael Albinus <michael.albinus@gmx.de>
8717
8718 * net/ange-ftp.el (ange-ftp-get-passwd): Throw if `non-essential'
8719 is non-nil.
8720 (ange-ftp-ignore-errors-if-non-essential): New defmacro.
8721 (ange-ftp-file-name-all-completions): Use it. (Bug#11808)
8722
87232012-06-29 Andreas Schwab <schwab@linux-m68k.org>
8724
8725 * calendar/cal-dst.el (calendar-current-time-zone):
8726 Return calendar-current-time-zone-cache if non-nil.
8727
87282012-06-29 Masatake YAMATO <yamato@redhat.com>
8729
8730 * progmodes/which-func.el (which-func-format):
8731 Add mouse-face. (Bug#11698)
8732
87332012-06-29 Leo Liu <sdl.web@gmail.com>
8734
8735 * textmodes/enriched.el (enriched-next-annotation): Use eq (Bug#11528).
8736
87372012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
8738
8739 * minibuffer.el (minibuffer-confirm-exit-commands):
8740 Add completion-at-point (bug#11725).
8741
87422012-06-29 Glenn Morris <rgm@gnu.org>
8743
8744 * progmodes/f90.el (f90-font-lock-keywords-2):
8745 Add some preprocessor elements. (Bug#10499)
8746
87472012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
8748
8749 * progmodes/cperl-mode.el (cperl-update-syntaxification):
8750 Use syntax-propertize (bug#11739).
8751
87522012-06-28 Juanma Barranquero <lekktu@gmail.com>
8753
8754 * emacs-lisp/cl-lib.el (cl-pushnew): Don't capture X (bug#11811).
8755
87562012-06-28 Julien Danjou <julien@danjou.info>
8757
8758 * term.el (term-handle-colors-array): Use a set of new faces to
8759 color the terminal. Also uses :inverse-video property.
8760 (term-default-fg-color): Set to nil by default, deprecate in favor
8761 of `term-face'.
8762 (term-default-bg-color): Set to nil by default, deprecate in favor
8763 of `term-face'.
8764 (term-current-face): Use `term-face' by default.
8765 (term-bold-attribute): Variable deleted.
8766
87672012-06-28 Glenn Morris <rgm@gnu.org>
8768
8769 * simple.el (completion-list-mode-finish):
8770 Don't use toggle-read-only. (Since completion-list-mode has
8771 a special mode-class, it wasn't doing anything extra anyway.)
8772
87732012-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
8774
8775 Make inlining of other-mode interpreted functions work (bug#11799).
8776 * emacs-lisp/bytecomp.el (byte-compile--refiy-function): New fun.
8777 (byte-compile): Use it to fix compilation of lexical-binding closures.
8778 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Compile the
8779 function, if needed.
8780
87812012-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
8782
8783 * help-mode.el (help-make-xrefs): Don't just withstand
8784 cyclic-variable-indirection but any error in documentation-property.
8785
8786 * loadup.el (purify-flag): Pre-grow the hash-table to reduce the
8787 memory use.
8788 * bindings.el (bindings--define-key): New function.
8789 * vc/vc-hooks.el, replace.el, menu-bar.el, international/mule-cmds.el:
8790 * emacs-lisp/lisp-mode.el, buff-menu.el, bookmark.el:
8791 * bindings.el: Use it to purecopy define-key bindings.
8792
8793 * textmodes/rst.el (rst-adornment-faces-alist): Avoid copy-list.
8794
8795 * emacs-lisp/cl.el (flet): Mark obsolete.
8796 * emacs-lisp/cl-macs.el (cl-flet*): New macro.
8797 * vc/vc-rcs.el (vc-rcs-annotate-command, vc-rcs-parse):
8798 * progmodes/js.el (js-c-fill-paragraph):
8799 * progmodes/ebrowse.el (ebrowse-switch-member-buffer-to-sibling-class)
8800 (ebrowse-switch-member-buffer-to-derived-class):
8801 * play/5x5.el (5x5-solver): Use cl-flet.
8802
8803 * emacs-lisp/cl.el: Use lexical-binding. Fix flet (bug#11780).
8804 (cl--symbol-function): New macro.
8805 (cl--letf, cl--letf*): Use it.
8806
8807 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
8808 Strip "toggle-" if any.
8809
88102012-06-27 Glenn Morris <rgm@gnu.org>
8811
8812 * info.el (Info-default-directory-list): Move here from paths.el.
8813 * paths.el: Remove file, which is now empty.
8814 * loadup.el: No longer load "paths".
8815
8816 * custom.el (custom-initialize-delay): Doc fix.
8817
8818 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
8819 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el:
8820 * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el:
8821 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el:
8822 * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el:
8823 * eshell/em-xtra.el: Replace eshell-defgroup with "(progn (defgroup".
8824 * eshell/eshell.el (eshell-defgroup): Remove alias.
8825
88262012-06-27 Chong Yidong <cyd@gnu.org>
8827
8828 * help.el (help-enable-auto-load): New variable.
8829
8830 * help-fns.el (help-fns--autoloaded-p): New function.
8831 (describe-function-1): Refer to a function as "autoloaded" if it
8832 was autoloaded at any time in the past. Perform autoloading if
8833 help-enable-auto-load is non-nil.
8834
88352012-06-26 Eli Zaretskii <eliz@gnu.org>
8836
8837 * makefile.w32-in (compile, compile-always): Depend on
8838 update-subdirs, not on subdirs.el. Otherwise, several different
8839 sub-targets of 'bootstrap' running in parallel could
8840 simultaneously write to subdirs.el, producing a garbled file.
8841
88422012-06-26 Sam Steingold <sds@gnu.org>
8843
8844 * files.el (file-name-base): New convenience function.
8845 * autoinsert.el, cus-dep.el, doc-view.el, image-dired.el:
8846 * woman.el, eshell/esh-cmd.el, progmodes/ada-xref.el:
8847 * progmodes/cc-defs.el, progmodes/cperl-mode.el:
8848 * progmodes/flymake.el, progmodes/gud.el, progmodes/idlwave.el:
8849 * textmodes/ispell.el, textmodes/reftex-ref.el:
8850 * textmodes/tex-mode.el: Use it.
8851 Did not touch cedet and org because they are maintained elsewhere.
8852
88532012-06-26 Martin Rudalics <rudalics@gmx.at>
8854
8855 * calendar/calendar.el (calendar-exit): Don't try to delete or
8856 iconify last frame. See:
8857 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00372.html
8858
88592012-06-25 Jim Diamond <Jim.Diamond@AcadiaU.ca> (tiny change)
8860
8861 * server.el (server-process-filter): Remember dir in the
8862 process's `server-client-directory' properties.
8863
88642012-06-24 Chong Yidong <cyd@gnu.org>
8865
8866 * xml.el (xml-parse-tag): Correctly handle comment embedded in
8867 non-tag text.
8868
88692012-06-23 Juanma Barranquero <lekktu@gmail.com>
8870
8871 * makefile.w32-in (COMPILE_FIRST): Synch with changes in 2012-06-22T21:24:54Z!monnier@iro.umontreal.ca.
8872
88732012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
8874
8875 * help-fns.el (describe-variable): Don't croak when doc is not found.
8876 * vc/pcvs.el (cvs-retrieve-revision): Avoid toggle-read-only.
8877 * menu-bar.el (menu-bar-line-wrapping-menu): Purecopy a tiny bit more.
8878 * emacs-lisp/syntax.el (syntax-ppss): Simplify with new `if' place.
8879 * emacs-lisp/smie.el (smie-next-sexp): CSE.
8880 * emacs-lisp/macroexp.el (macroexp-let2): Fix edebug spec and avoid
8881 ((lambda ..) ..).
8882 * emacs-lisp/eieio.el (eieio-oref, slot-value): Use simpler defsetf.
8883
88842012-06-23 Chong Yidong <cyd@gnu.org>
8885
8886 * info.el (Info-mouse-follow-link): Accept symbol values of
8887 link-args. Select window; suggested by Gerhard Kahl (Bug#11672).
8888 (Info-fontify-node): Use Info-link-keymap for all navigation
8889 buttons, with link-args property to perform the desired action.
8890 (Info-link-keymap): Doc fix.
8891 (Info-next-link-keymap, Info-prev-link-keymap)
8892 (Info-up-link-keymap): Delete now-unused keymaps.
8893
88942012-06-23 Chong Yidong <cyd@gnu.org>
8895
8896 * mouse.el (mouse-drag-track): Deactivate the mark before popping.
8897
8898 * progmodes/python.el (python-skeleton-define): Mark abbrevs as
8899 system abbrevs.
8900
8901 * ansi-color.el (ansi-color-apply-on-region): Doc fix.
8902
89032012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
8904
8905 * emacs-lisp/cl-macs.el (cl--make-usage-args): Handle improper lists
8906 (bug#11719).
8907
8908 * minibuffer.el (completion--twq-try): Try to fail more gracefully when
8909 the requote function doesn't work properly (bug#11714).
8910
89112012-06-23 Glenn Morris <rgm@gnu.org>
8912
8913 * pcmpl-rpm.el (pcmpl-rpm-packages): Give status messages.
8914
89152012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
8916
8917 Further GV/CL cleanups.
8918 * emacs-lisp/gv.el (gv-get): Autoload functions to find their
8919 gv-expander.
8920 (gv--defun-declaration): New function.
8921 (defun-declarations-alist): Use it.
8922 (gv-define-modify-macro, gv-pushnew!, gv-inc!, gv-dec!): Remove.
8923 (gv-place): Autoload.
8924 * emacs-lisp/cl.el (cl--dotimes, cl--dolist): Remember subr.el's
8925 original definition of dotimes and dolist.
8926 * emacs-lisp/cl-macs.el (cl-expr-access-order): Remove unused.
8927 (cl-dolist, cl-dotimes): Use `dolist' and `dotimes'.
8928 * emacs-lisp/cl-lib.el: Move gv handlers from cl-macs to here.
8929 (cl-fifth, cl-sixth, cl-seventh, cl-eighth)
8930 (cl-ninth, cl-tenth): Move gv handler to the function's definition.
8931 * emacs-lisp/cl-extra.el (cl-subseq, cl-get, cl-getf): Move gv handler
8932 to the function's definition.
8933 * Makefile.in (COMPILE_FIRST): Re-order to speed it up by about 50%.
8934 * window.el:
8935 * files.el:
8936 * faces.el:
8937 * env.el: Don't use CL.
8938
89392012-06-22 Paul Eggert <eggert@cs.ucla.edu>
8940
8941 Support higher-resolution time stamps (Bug#9000).
8942
8943 * calendar/time-date.el (with-decoded-time-value): New arg
8944 PICO-SYMBOL in VARLIST. It's optional, for backward compatibility.
8945 (encode-time-value): New optional arg PICO. New type 3.
8946 (time-to-seconds) [!float-time]: Support the new picoseconds
8947 component if it's used.
8948 (seconds-to-time, time-subtract, time-add):
8949 Support ps-resolution time stamps as well.
8950
8951 * emacs-lisp/timer.el (timer): New component psecs. All uses changed.
8952 (timerp): Timer vectors now have length 9, not 8.
8953 (timer--time): Support new-style (4-part) time stamps.
8954 (timer-next-integral-multiple-of-time): Time stamps now have
8955 picosecond resolution, so take a bit more care about rounding.
8956 (timer-relative-time, timer-inc-time): New optional arg psecs.
8957 (timer-set-time-with-usecs): Set psecs to 0.
8958 (timer--activate): Check psecs component, too.
8959
8960 * proced.el (proced-time-lessp): Support ps-resolution stamps.
8961
89622012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
8963
8964 * icomplete.el (icomplete-minibuffer-setup, icomplete-completions):
8965 Move the non-essential binding to the post/pre-command-hook where it is
8966 more obviously correct.
8967
8968 * subr.el (read-passwd): Don't use a history at all.
8969 * savehist.el (savehist-save): Remove password saved accidentally
8970 because of the above bug.
8971
89722012-06-22 Bastien Guerry <bzg@gnu.org>
8973
8974 * files.el (toggle-read-only): Display a message telling whether
8975 the buffer is read-only or not (bug#11726).
8976
89772012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
8978
8979 * emacs-lisp/gv.el: New file.
8980 * subr.el (push, pop): Extend to generalized variables.
8981 * loadup.el (macroexp): Unload if preloaded and uncompiled (bug#11657).
8982 * emacs-lisp/cl-lib.el (cl-pop, cl-push, cl--set-nthcdr): Remove.
8983 * emacs-lisp/cl-macs.el: Require gv. Use gv-define-setter,
8984 gv-define-simple-setter, and gv-define-expander.
8985 Remove setf-methods defined in gv. Rename cl-setf -> setf.
8986 (cl-setf, cl-do-pop, cl-get-setf-method): Remove.
8987 (cl-letf, cl-letf*, cl-define-modify-macro, cl-defsetf)
8988 (cl-define-setf-expander, cl-struct-setf-expander): Move to cl.el.
8989 (cl-remf, cl-shiftf, cl-rotatef, cl-callf, cl-callf2): Rewrite with
8990 gv-letplace.
8991 (cl-defstruct): Don't define setf-method any more.
8992 * emacs-lisp/cl.el (flet): Don't autoload.
8993 (cl--letf, letf, cl--letf*, letf*, cl--gv-adapt)
8994 (define-setf-expander, defsetf, define-modify-macro)
8995 (cl-struct-setf-expander): Move from cl-lib.el.
8996 * emacs-lisp/syntax.el:
8997 * emacs-lisp/ewoc.el:
8998 * emacs-lisp/smie.el:
8999 * emacs-lisp/cconv.el:
9000 * emacs-lisp/timer.el: Rename cl-setf -> setf, cl-push -> push.
9001 (timer--time): Use gv-define-simple-setter.
9002 * emacs-lisp/macroexp.el (macroexp-let2): Rename from macroexp-let²
9003 to avoid coding-system problems in subr.el. Adjust all users.
9004 (macroexp--maxsize, macroexp-small-p): New functions.
9005 * emacs-lisp/bytecomp.el (byte-compile-file): Don't use cl-letf.
9006 * scroll-bar.el (scroll-bar-mode):
9007 * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
9008 (normal-erase-is-backspace-mode): Don't use the `eq' place.
9009 * winner.el (winner-configuration, winner-make-point-alist)
9010 (winner-set-conf, winner-get-point, winner-set): Don't abuse letf.
9011 * files.el (locate-file-completion-table): Avoid list*.
9012
90132012-06-22 Chong Yidong <cyd@gnu.org>
9014
9015 * dired-aux.el (dired-do-create-files): Doc fix (Bug#11327).
9016 (dired-create-files): Doc fix (Bug#11329).
9017 (dired-do-copy): Doc fix (Bug#11334).
9018 (dired-mark-read-string): Doc fix (Bug#11553).
9019
9020 * dired.el (dired-recursive-copies, dired-recursive-deletes):
9021 Doc fix (Bug#11326).
9022 (dired-make-relative): Doc fix (Bug#11332). Remove unused arg.
9023 (dired-dwim-target): Doc fix.
9024
9025 * wdired.el (wdired-mode): Doc fix.
9026
90272012-06-22 Glenn Morris <rgm@gnu.org>
9028
9029 * pcmpl-rpm.el (pcmpl-rpm-cache): New option.
9030 (pcmpl-rpm-cache-stamp-file): New constant.
9031 (pcmpl-rpm-cache-time, pcmpl-rpm-packages): New variables.
9032 (pcmpl-rpm-packages): Optionally cache list of packages.
9033
9034 * pcmpl-rpm.el (pcmpl-rpm): New group.
9035 (pcmpl-rpm-query-options): New option.
9036 (pcmpl-rpm-packages): No need to inline it.
9037 Use pcmpl-rpm-query-options.
9038
9039 * calendar/calendar.el (calendar-in-read-only-buffer):
9040 Avoid some needless mode changes.
9041
90422012-06-21 Chong Yidong <cyd@gnu.org>
9043
9044 * desktop.el (desktop-read): Don't prompt if daemon (Bug#11674).
9045 (desktop-path): Remove . from the default value (Bug#10977).
9046 (desktop-read): Use user-emacs-directory if desktop-path is nil.
9047
90482012-06-20 Chong Yidong <cyd@gnu.org>
9049
9050 * term.el (term-send-raw-meta): Make C-M-<char> keys work (Bug#8172).
9051
90522012-06-20 David Röthlisberger <david@rothlis.net> (tiny change)
9053
9054 * ido.el (ido-switch-buffer, ido-find-file): Fix up doc of C-j
9055 (bug#11201).
9056
90572012-06-20 Chong Yidong <cyd@gnu.org>
9058
9059 * term.el (term-window-width): Handle the case of a missing right
9060 fringe (Bug#8837).
9061 (term-check-size): Use window-text-height (Bug#5445).
9062 (term-mode): Use define-derived-mode. Minor cleanups.
9063 Set font-lock-defaults (Bug#7692).
9064 (term-move-columns, term-insert-char, term-emulate-terminal)
9065 (term-erase-in-line, term-insert-spaces): Use font-lock-face.
9066
90672012-06-20 Michael Albinus <michael.albinus@gmx.de>
9068
9069 * net/ange-ftp.el (ange-ftp-get-passwd):
9070 Bind `enable-recursive-minibuffers'.
9071 (ange-ftp-get-process): Throw if `non-essential' is non-nil.
9072
90732012-06-19 David Röthlisberger <david@rothlis.net> (tiny change)
9074
9075 * ido.el (ido-find-file): Mention C-d binding in docstring (bug#11244).
9076
90772012-06-19 Glenn Morris <rgm@gnu.org>
9078
9079 * progmodes/python.el (python-mode): Derive from prog-mode.
9080
90812012-06-19 Kevin Gallagher <Kevin.Gallagher@boeing.com>
9082
9083 * emulation/edt.el (edt-default-menu-bar-update-buffers)
9084 (edt-user-menu-bar-update-buffers): New functions.
9085 (edt-default-emulation-setup, edt-user-emulation-setup): Use them.
9086
90872012-06-19 Chong Yidong <cyd@gnu.org>
9088
9089 * subr.el (with-selected-window): Preserve the selected window's
9090 terminal's top-frame (Bug#4702).
9091
9092 * window.el (save-selected-window): Likewise.
9093
90942012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
9095
9096 * progmodes/python.el (python-rx-constituents): Move backquote.
9097 (python-skeleton-define, python-define-auxiliary-skeleton):
9098 Use `declare'.
9099
91002012-06-18 Michael Albinus <michael.albinus@gmx.de>
9101
9102 * minibuffer.el (read-file-name-default): Revert the patch from
9103 2012-06-17.
9104
91052012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
9106
9107 * emacs-lisp/pcase.el (pcase--expand): Warn for unused pattern.
9108 (pcase--u1, pcase--q1): Don't use apply-partially.
9109
91102012-06-18 Glenn Morris <rgm@gnu.org>
9111
9112 * progmodes/python.el (python-proc, python-buffer)
9113 (python-send-receive, python-send-string): Fix obsolete versions.
9114
91152012-06-18 Martin Rudalics <rudalics@gmx.at>
9116
9117 * window.el (special-display-p): Completely remove stringp
9118 check. Suggested by Andreas Schwab <schwab@linux-m68k.org>.
9119
91202012-06-17 Michael Albinus <michael.albinus@gmx.de>
9121
9122 * minibuffer.el (read-file-name-default): Bind `non-essential' to `t'.
9123
9124 * net/tramp.el (tramp-file-name-handler): Catch 'non-essential.
9125
9126 * net/ange-ftp.el (ange-ftp-gwp-start, ange-ftp-start-process):
9127 * net/tramp-sh.el (tramp-maybe-open-connection):
9128 Throw if `non-essential' is non-nil.
9129
91302012-06-17 Martin Rudalics <rudalics@gmx.at>
9131
9132 * window.el (special-display-p): Signal an error if BUFFER-NAME
9133 is not a string (Bug#11713).
9134
91352012-06-17 Paul Eggert <eggert@cs.ucla.edu>
9136
9137 * progmodes/python.el (python-info-beginning-of-backslash):
9138 Rename from python-info-beginning-of-backlash, as a spelling fix.
9139
91402012-06-17 Chong Yidong <cyd@gnu.org>
9141
9142 * term.el (term-emulate-terminal): If term-check-size is called,
9143 move point to the process mark without resetting point (Bug#4635).
9144
91452012-06-17 Glenn Morris <rgm@gnu.org>
9146
9147 * international/mule-cmds.el (mule-menu-keymap)
9148 (set-language-environment, set-locale-environment): Doc tweaks.
9149
91502012-06-16 Aurelien Aptel <aurelien.aptel@gmail.com>
9151
9152 * cus-face.el (custom-face-attributes): Add wave-style underline
9153 attribute.
9154 * faces.el (set-face-attribute): Update docstring to describe
9155 wave-style underline attribute.
9156
91572012-06-16 Chong Yidong <cyd@gnu.org>
9158
9159 * term/xterm.el (terminal-init-xterm): Discard input before
9160 querying background mode (Bug#10959).
9161
91622012-06-16 Stefan Merten <smerten@oekonux.de>
9163
9164 * textmodes/rst.el: Added and corrected some comments.
9165 (rst-re-alist-def): Improve symbol syntax.
9166 (rst-mode-syntax-table): Correct syntax entries.
9167 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
9168 (rst-official-version, rst-official-cvs-rev): Update version
9169 information.
9170
91712012-06-15 Juanma Barranquero <lekktu@gmail.com>
9172
9173 * makefile.w32-in (COMPILE_FIRST): Synch with makefile.in changes
9174 in 2008-06-22T13:57:28Z!monnier@iro.umontreal.ca.
9175
91762012-06-15 Fabián Ezequiel Gallina <fgallina@cuca>
9177
9178 * progmodes/python.el: New python.el merge.
9179 (python-guess-indent): Obsolete var.
9180 (python-indent-guess-indent-offset): New defcustom.
9181 (python-indent): Obsolete var.
9182 (python-indent-offset): New defcustom.
9183 (python-python-command, python-jython-command): Delete var.
9184 (python-shell-interpreter): New defcustom.
9185 (python-pdbtrack-do-tracking-p): Delete var.
9186 (python-pdbtrack-activate): New defcustom.
9187 (python-use-skeletons): Obsolete var.
9188 (python-skeleton-autoinsert): New defcustom.
9189 (inferior-python-filter-regexp, python-continuation-offset)
9190 (python-honour-comment-indentation, python-indent-string-contents)
9191 (python-jython-packages, python-mode-hook)
9192 (python-pdbtrack-minor-mode-string, python-remove-cwd-from-path)
9193 (python-shell-prompt-alist)
9194 (python-source-modes): Delete defcustoms.
9195 (python-check-buffer-name, python-eldoc-setup-code)
9196 (python-eldoc-string-code, python-ffap-setup-code)
9197 (python-ffap-string-code, python-fill-comment-function)
9198 (python-fill-decorator-function, python-fill-paren-function)
9199 (python-fill-string-function, python-imenu-include-defun-type)
9200 (python-imenu-make-tree, python-imenu-subtree-root-label)
9201 (python-pdbtrack-stacktrace-info-regexp, python-shell-buffer-name)
9202 (python-shell-compilation-regexp-alist)
9203 (python-shell-completion-module-string-code)
9204 (python-shell-completion-pdb-string-code)
9205 (python-shell-completion-setup-code)
9206 (python-shell-completion-string-code)
9207 (python-shell-enable-font-lock, python-shell-exec-path)
9208 (python-shell-extra-pythonpaths)
9209 (python-shell-internal-buffer-name, python-shell-interpreter-args)
9210 (python-shell-process-environment)
9211 (python-shell-prompt-block-regexp)
9212 (python-shell-prompt-output-regexp)
9213 (python-shell-prompt-pdb-regexp, python-shell-prompt-regexp)
9214 (python-shell-send-setup-max-wait, python-shell-setup-codes)
9215 (python-shell-virtualenv-path): New defcustoms.
9216 (brm-menu, eldoc-documentation-function, inferior-python-mode-map)
9217 (inferior-python-mode-syntax-table, python--prompt-regexp)
9218 (python-buffer, python-command python-python-command)
9219 (python-default-template, python-imports, python-indent-index)
9220 (python-indent-list, python-indent-list-length)
9221 (python-mode-running, python-pdbtrack-is-tracking-p)
9222 (python-preoutput-continuation, python-preoutput-leftover)
9223 (python-preoutput-result, python-preoutput-skip-next-prompt)
9224 (python-prev-dir/file, python-recursing)
9225 (python-saved-check-command, python-version-checked)
9226 (python-which-func-length-limit)
9227 (view-return-to-alist): Delete vars.
9228 (python-check-custom-command, python-dotty-syntax-table)
9229 (python-imenu-index-alist, python-indent-current-level)
9230 (python-indent-dedenters, python-indent-levels)
9231 (python-nav-beginning-of-defun-regexp)
9232 (python-nav-list-defun-positions-cache)
9233 (python-pdbtrack-buffers-to-kill, python-pdbtrack-tracked-buffer)
9234 (python-shell-internal-buffer)
9235 (python-skeleton-available): New vars.
9236 (def-python-skeleton): Delete macro.
9237 (python-skeleton-define): New macro.
9238 (python-define-auxiliary-skeleton, python-rx): New macros.
9239 (python-insert-class): Delete command.
9240 (python-skeleton-class): New command.
9241 (python-insert-def): Delete command.
9242 (python-skeleton-def): New command.
9243 (python-insert-for): Delete command.
9244 (python-skeleton-for): New command.
9245 (python-insert-if): Delete command.
9246 (python-skeleton-if): New command.
9247 (python-insert-try/except, python-insert-try/finally): Delete commands.
9248 (python-skeleton-try): New command.
9249 (python-insert-while): Delete command.
9250 (python-skeleton-while): New command.
9251 (python-backspace): Delete command.
9252 (python-indent-dedent-line-backspace): New command.
9253 (python-electric-colon): Delete command.
9254 (python-indent-electric-colon): New command.
9255 (python-guess-indent): Delete command.
9256 (python-indent-guess-indent-offset): New command.
9257 (python-shift-left): Delete command.
9258 (python-indent-shift-left): New command.
9259 (python-shift-right): Delete command.
9260 (python-indent-shift-right): New command.
9261 (python-find-function): Delete command.
9262 (python-nav-jump-to-defun): New command.
9263 (python-next-statement): Delete command.
9264 (python-nav-forward-sentence): New command.
9265 (python-previous-statement): Delete command.
9266 (python-nav-backward-sentence): New command.
9267 (python-fill-paragraph): Delete command.
9268 (python-fill-paragraph-function): New command.
9269 (python-send-buffer): Delete command.
9270 (python-shell-send-buffer): New command.
9271 (python-send-defun): Delete command.
9272 (python-shell-send-defun): New command.
9273 (python-send-region, python-send-region-and-go): Delete commands.
9274 (python-shell-send-region)
9275 (python-shell-switch-to-shell): New commands.
9276 (python-send-string): Delete command.
9277 (python-shell-send-string): New command.
9278 (python-switch-to-python): Delete command.
9279 (python-shell-switch-to-shell): New command.
9280 (python-describe-symbol): Delete command.
9281 (python-eldoc-at-point): New command.
9282 (python--set-prompt-regexp, python-args-to-list)
9283 (python-after-info-look, python-check-version)
9284 (python-check-comint-prompt, python-find-imports)
9285 (python-execute-file, turn-off-pdbtrack, turn-on-pdbtrack)
9286 (python-unload-function, python-expand-template)
9287 (python-maybe-jython, python-preoutput-filter)
9288 (python-pdbtrack-get-source-buffer)
9289 (python-pdbtrack-grub-for-buffer, python-pdbtrack-overlay-arrow)
9290 (python-pdbtrack-toggle-stack-tracking)
9291 (python-pdbtrack-track-stack-file, python-initial-text)
9292 (python-first-word, python-comment-line-p, python-send-command)
9293 (python-setup-brm, python-sentinel, python-set-proc)
9294 (python-skip-out, python-input-filter, python-outdent-p)
9295 (python-outline-level, python-backslash-continuation-line-p)
9296 (python-end-of-block, python-end-of-statement, python-mark-block)
9297 (python-beginning-of-block, python-beginning-of-statement)
9298 (python-blank-line-p, python-beginning-of-string)
9299 (python-open-block-statement-p): Delete functions.
9300 (python-indent-line, python-indent-line-1): Delete functions.
9301 (python-indent-line): New function.
9302 (python-indentation-levels): Delete function.
9303 (python-indent-calculate-levels): New function.
9304 (python-proc): Delete function.
9305 (python-shell-get-process): New function.
9306 (python-send-receive): Delete function.
9307 (python-shell-send-string-no-output): New function.
9308 (python-module-path): Delete function.
9309 (python-ffap-module-path): New function.
9310 (python-completion-at-point)
9311 (python-symbol-completions): Delete functions.
9312 (python-completion-complete-at-point): New function.
9313 (python-load-file): Delete function.
9314 (python-shell-send-file): New function.
9315 (python-calculate-indentation): Delete function.
9316 (python-indent-calculate-indentation): New function.
9317 (python-skip-comments/blanks): Delete function.
9318 (python-util-forward-comment): New function.
9319 (python-continuation-line-p): Delete function.
9320 (python-info-continuation-line-p): New function.
9321 (python-which-func, python-current-defun): Delete function.
9322 (python-info-current-defun): New function.
9323 (python-beginning-of-defun): Delete function.
9324 (python-nav-beginning-of-defun): New function.
9325 (python-close-block-statement-p)
9326 (python-block-end-p): Delete function.
9327 (python-info-closing-block): New function.
9328 (python-comint-output-filter-function)
9329 (python-eldoc--get-doc-at-point, python-end-of-defun-function)
9330 (python-fill-comment, python-fill-decorator, python-fill-paren)
9331 (python-fill-string, python-imenu-make-element-tree)
9332 (python-imenu-make-tree, python-imenu-tree-assoc)
9333 (python-indent-context, python-indent-dedent-line)
9334 (python-indent-line-function)
9335 (python-indent-post-self-insert-function)
9336 (python-indent-toggle-levels)
9337 (python-info-assignment-continuation-line-p)
9338 (python-info-beginning-of-backlash)
9339 (python-info-block-continuation-line-p)
9340 (python-info-closing-block-message)
9341 (python-info-line-ends-backslash-p)
9342 (python-info-looking-at-beginning-of-defun)
9343 (python-info-ppss-context, python-info-ppss-context-type)
9344 (python-nav-list-defun-positions, python-nav-read-defun)
9345 (python-nav-sentence-end, python-nav-sentence-start)
9346 (python-pdbtrack-comint-output-filter-function)
9347 (python-pdbtrack-set-tracked-buffer)
9348 (python-shell-calculate-exec-path)
9349 (python-shell-calculate-process-environment)
9350 (python-shell-completion--do-completion-at-point)
9351 (python-shell-completion--get-completions)
9352 (python-shell-completion-complete-at-point)
9353 (python-shell-completion-complete-or-indent)
9354 (python-shell-get-or-create-process)
9355 (python-shell-get-process-name)
9356 (python-shell-internal-get-or-create-process)
9357 (python-shell-internal-get-process-name)
9358 (python-shell-internal-send-string, python-shell-make-comint)
9359 (python-shell-parse-command, python-shell-send-setup-code)
9360 (python-skeleton-add-menu-items)
9361 (python-util-clone-local-variables, python-util-position)
9362 (run-python-internal, python-indentation-levels)
9363 (python-nav-beginning-of-defun)
9364 (python-completion-complete-at-point): New functions.
9365 (run-python): Change arguments. New API requirements.
9366
93672012-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
9368
9369 * emacs-lisp/cl-lib.el (cl--defsubst-expand): Autoload inliner
9370 (bug#11649).
9371
9372 * emacs-lisp/macroexp.el (macroexp--compiler-macro): New function.
9373 (macroexp--expand-all): Use it.
9374
9375 * emacs-lisp/cl-macs.el (cl--transform-function-property): Remove.
9376 (cl-define-setf-expander, cl-deftype, cl-define-compiler-macro):
9377 Use `cl-function' instead.
9378
93792012-06-14 Juanma Barranquero <lekktu@gmail.com>
9380
9381 * makefile.w32-in (COMPILE_FIRST): Remove subr.el.
9382 Suggested by Stefan Monnier while discussing bug#11657.
9383
93842012-06-14 Sam Steingold <sds@gnu.org>
9385
9386 * files.el (abort-if-file-too-large): Use `file-size-human-readable'.
9387
93882012-06-14 Andreas Schwab <schwab@linux-m68k.org>
9389
9390 * play/doctor.el (doctor-doc): Remove parameter and use
9391 doctor-sent instead of sent.
9392 (doctor-read-print): Use doctor-sent instead of sent. (Bug#11708)
9393
93942012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
9395
9396 * files.el: Require cl-lib.
9397 (file-name-non-special): Replace case -> cl-case.
9398
9399 * emacs-lisp/cl-macs.el (cl-defstruct): Don't add print-func.
9400
9401 * emacs-lisp/edebug.el (edebug-read-function): Remove old incorrect
9402 mapping from #' to function*.
9403
94042012-06-13 Chong Yidong <cyd@gnu.org>
9405
9406 * mouse.el (mouse-drag-track): Do not set the mark if the user
9407 releases the mouse without selecting anything (Bug#11588).
9408
94092012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
9410
9411 * textmodes/tex-mode.el (latex-indent): Recognize tex-verbatim at EOB
9412 as well (bug#11646).
9413
9414 * loadup.el: Count byte-code functions as well.
9415
9416 * emacs-lisp/byte-opt.el (featurep): Move compiler-macro...
9417 * emacs-lisp/bytecomp.el (featurep): ...here (bug#11692).
9418
9419 * emacs-lisp/autoload.el (make-autoload): Accept nil doc-string-elt
9420 (bug#11649). Add cl-defun and cl-defmacro.
9421
94222012-06-13 Drew Adams <drew.adams@oracle.com>
9423
9424 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
9425 Fix last change.
9426
94272012-06-13 Michael Albinus <michael.albinus@gmx.de>
9428
9429 * net/dbus.el (dbus-call-method): Use timeout for `read-event'.
9430 Otherwise, it blocks in batch mode.
9431
94322012-06-13 Juanma Barranquero <lekktu@gmail.com>
9433
9434 * help-mode.el (bookmark-make-record-default): Declare.
9435
94362012-06-13 Chong Yidong <cyd@gnu.org>
9437
9438 * emacs-lisp/package.el (list-packages): Compute a list of
9439 packages that are newly-available since the last list-packages
9440 invocation.
9441 (package-menu--new-package-list): New var.
9442 (package-menu--generate, package-menu--print-info)
9443 (package-menu--status-predicate, package-menu-mark-install):
9444 Handle new status label "new".
9445
94462012-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
9447
9448 * emacs-lisp/cl-macs.el (cl-remf): Fix error in recent
9449 conversion to backquotes.
9450
94512012-06-12 Chong Yidong <cyd@gnu.org>
9452
9453 * emacs-lisp/edebug.el (edebug-inhibit-emacs-lisp-mode-bindings):
9454 Rename from gud-inhibit-global-bindings.
9455
9456 * emacs-lisp/eieio.el (eieio-pre-method-execution-hooks): Doc fix.
9457
9458 * nxml/nxml-glyph.el (nxml-glyph-set-functions): Rename abnormal
9459 hook from nxml-glyph-set-hook.
9460
9461 * progmodes/cwarn.el (cwarn-mode): Remove redundant variable
9462 declaration.
9463
9464 * progmodes/pascal.el (pascal-toggle-completions): Doc fix.
9465
9466 * textmodes/bibtex.el (bibtex-string-file-path, bibtex-file-path):
9467 Convert to defcustom.
9468
94692012-06-12 Drew Adams <drew.adams@oracle.com>
9470
9471 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
9472 New functions.
9473 (help-mode): Use them.
9474
94752012-06-11 Glenn Morris <rgm@gnu.org>
9476
9477 * progmodes/fortran.el (fortran-font-lock-keywords-3):
9478 Use preprocessor face for directives.
9479 (fortran-directive-re): Doc fix.
9480
94812012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
9482
9483 * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Fix error in recent
9484 conversion to backquotes (bug#11652).
9485
9486 Fix compiler-expansion of CL's cXXr functions (bug#11673).
9487 * emacs-lisp/cl-lib.el (cl--defalias): New function.
9488 (cl-values, cl-values-list, cl-copy-seq, cl-svref, cl-first)
9489 (cl-second, cl-rest, cl-endp, cl-third, cl-fourth): Use it.
9490 (cl-plusp, cl-minusp, cl-fifth, cl-sixth, cl-seventh, cl-eighth)
9491 (cl-ninth, cl-tenth): Mark them as inlinable.
9492 (cl-caaar, cl-caadr, cl-cadar, cl-caddr, cl-cdaar, cl-cdadr)
9493 (cl-cddar, cl-cdddr, cl-caaaar, cl-caaadr, cl-caadar, cl-caaddr)
9494 (cl-cadaar, cl-cadadr, cl-caddar, cl-cadddr, cl-cdaaar, cl-cdaadr)
9495 (cl-cdadar, cl-cdaddr, cl-cddaar, cl-cddadr, cl-cdddar, cl-cddddr):
9496 Add a compiler-macro declaration to use cl--compiler-macro-cXXr.
9497 (cl-list*, cl-adjoin): Don't put an autoload manually.
9498 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin)
9499 (cl--compiler-macro-list*): Add autoload cookie.
9500 (cl--compiler-macro-cXXr): New function.
9501
9502 * help-fns.el (help-fns--compiler-macro): New function extracted from
9503 describe-function-1; follow aliases and use `compiler-macro' property.
9504 (describe-function-1): Use it.
9505
95062012-06-11 Chong Yidong <cyd@gnu.org>
9507
9508 * startup.el (fancy-splash-head): Use splash.svg even if librsvg
9509 is uninstalled, if imagemagick is installed.
9510
95112012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
9512
9513 * emacs-lisp/cl-lib.el: Use lexical-binding.
9514 (cl-map-extents, cl-maclisp-member): Remove.
9515 (cl--set-elt, cl--set-nthcdr, cl--set-buffer-substring)
9516 (cl--set-substring, cl--block-wrapper, cl--block-throw)
9517 (cl--compiling-file, cl--mapcar-many, cl--do-subst): Use "cl--" prefix.
9518 * emacs-lisp/cl-extra.el: Use lexical-binding.
9519 (cl--mapcar-many, cl--map-keymap-recursively, cl--map-intervals)
9520 (cl--map-overlays, cl--set-frame-visible-p, cl--progv-save)
9521 (cl--progv-before, cl--progv-after, cl--finite-do, cl--set-getf)
9522 (cl--do-remf, cl--do-prettyprint): Use "cl--" prefix.
9523 * emacs-lisp/cl-seq.el: Use lexical-binding.
9524 (cl--parsing-keywords, cl--check-key, cl--check-test-nokey)
9525 (cl--check-test, cl--check-match): Use "cl--" prefix and backquotes.
9526 (cl--alist, cl--sublis-rec, cl--nsublis-rec, cl--tree-equal-rec):
9527 * emacs-lisp/cl-macs.el (cl--lambda-list-keywords): Use "cl--" prefix.
9528 * edmacro.el (edmacro-mismatch): Simplify to remove dependence on
9529 CL's internals.
9530
95312012-06-11 Michael Albinus <michael.albinus@gmx.de>
9532
9533 Sync with Tramp 2.2.6-pre.
9534
9535 * net/tramp-cache.el (tramp-dump-connection-properties): Let-bind
9536 `print-length' and `print-level' to nil, in order to avoid
9537 truncation. Reported by Christopher Schmidt
9538 <christopher@ristopher.com>.
9539
9540 * net/tramp-cmds.el (tramp-cleanup-connection): Delete also process.
9541
9542 * net/tramp-compat.el (tramp-compat-condition-case-unless-debug):
9543 New defmacro.
9544 (tramp-compat-copy-directory): Add optional argument
9545 COPY-CONTENTS. It is not handled yet.
9546
9547 * net/tramp-ftp.el (tramp-disable-ange-ftp): Fix docstring.
9548 (tramp-ftp-file-name-p): Simplify.
9549
9550 * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name):
9551 * net/tramp-gw.el (tramp-gw-open-connection): Add hop to
9552 connection vector.
9553
9554 * net/tramp-sh.el (tramp-copy-size-limit): Fix docstring.
9555 (tramp-methods): Do not use `tramp-password-end-of-line'.
9556 (tramp-completion-function-alist-putty): Handle UNIX case.
9557 (tramp-remote-path): Add "/opt/bin", "/opt/sbin" and "/opt/local/bin".
9558 (tramp-do-file-attributes-with-stat)
9559 (tramp-do-directory-files-and-attributes-with-stat) Return uid and
9560 gid as real numbers. They could run out of integer range on cygwin.
9561 (tramp-do-copy-or-rename-file-out-of-band): Better trace format.
9562 (tramp-sh-handle-expand-file-name): Handle hops.
9563 (tramp-open-connection-setup-interactive-shell):
9564 Use `tramp-cleanup'. Move check for busyboxes ...
9565 (tramp-find-shell): ... here. Simplify implementation.
9566 Set "remote-shell" property also for alternative shells.
9567 (tramp-remote-coding-commands): Check "test -c /dev/stdout".
9568 If failing, a regular file would be written otherwise.
9569 Reported by Dmitry Kurochkin <dmitry.kurochkin@gmail.com>.
9570 (tramp-find-inline-encoding): Cache the coding commands in the
9571 process cache. Apply test command on the remote side, if defined.
9572 (tramp-find-inline-compress): Cache the compress commands in the
9573 process cache.
9574 (tramp-compute-multi-hops): Save `tramp-default-proxies-alist'
9575 when requested. Handle hops.
9576 (tramp-current-connection): New defvar.
9577 (tramp-maybe-open-connection): Use `tramp-cleanup'.
9578 Throw `suppress', if there was a failed connection shortly before.
9579 Handle user interrupt. (Bug#10187)
9580 (tramp-get-inline-compress, tramp-get-inline-coding):
9581 Read connection properties from the process cache.
9582
9583 * net/tramp-smb.el (tramp-smb-server-version)
9584 (tramp-smb-wrong-passwd-regexp, tramp-smb-actions-with-tar):
9585 New defconsts.
9586 (tramp-smb-prompt): Extend for powershell prompt.
9587 (tramp-smb-file-name-handler-alist): Add handlers for
9588 `process-file', `shell-command' and `start-file-process'.
9589 (tramp-smb-winexe-program, tramp-smb-winexe-shell-command)
9590 (tramp-smb-winexe-shell-command-switch): New defcustoms.
9591 (tramp-smb-file-name-p): Simplify.
9592 (tramp-smb-action-with-tar, tramp-smb-handle-process-file)
9593 (tramp-smb-kill-winexe-function, tramp-smb-call-winexe)
9594 (tramp-smb-shell-quote-argument): New defuns.
9595 (tramp-smb-handle-copy-directory): Add COPY-CONTENTS argument.
9596 Implement using "tar". By this, time-stamps are preserved.
9597 (tramp-smb-handle-copy-file): Handle also the case of directories.
9598 (tramp-smb-do-file-attributes-with-stat)
9599 (tramp-smb-get-file-entries, tramp-smb-get-cifs-capabilities):
9600 Use `tramp-get-connection-buffer').
9601 (tramp-smb-handle-rename-file): Use "rename", when source and
9602 target are on the same share.
9603 (tramp-smb-maybe-open-connection): Handle wrong passwords.
9604 Use `tramp-smb-server-version'.
9605 (tramp-smb-wait-for-output): Remove prompt.
9606
9607 * net/tramp.el (top): Require 'cl.
9608 (tramp-methods, tramp-rsh-end-of-line):
9609 Remove `tramp-password-end-of-line' from docstring.
9610 (tramp-save-ad-hoc-proxies): New defcustom.
9611 (tramp-completion-function-alist): Adapt docstring.
9612 (tramp-default-password-end-of-line): Remove defcustom.
9613 (tramp-shell-prompt-pattern): Allow "[]" style prompts. (Bug#11065)
9614 (tramp-user-regexp, tramp-file-name-regexp-unified)
9615 (tramp-file-name-regexp-url): Extend regexp by hop separator.
9616 (tramp-postfix-hop-format, tramp-postfix-hop-regexp)
9617 (tramp-remote-file-name-spec-regexp): New defconst.
9618 (tramp-file-name-structure): Extend structure for hops.
9619 (tramp-get-method-parameter): Move up.
9620 (tramp-file-name-p, tramp-dissect-file-name)
9621 (with-parsed-tramp-file-name): Handle hops.
9622 (tramp-file-name-hop): New defun.
9623 (tramp-make-tramp-file-name): New optional arg HOP.
9624 (tramp-message-show-progress-reporter-message): New defvar.
9625 (tramp-with-progress-reporter): Use it. We cannot use
9626 `tramp-message-show-message' here, because this suppresses also
9627 error buffers.
9628 (tramp-error-with-buffer): Suppress buffer view, if
9629 `tramp-message-show-message' is nil.
9630 Use `tramp-get-connection-buffer'.
9631 (tramp-cleanup): New defun.
9632 (tramp-rfn-eshadow-update-overlay): Let-bind `non-essential' to `t'.
9633 (tramp-file-name-handler): If `debug-on-error' is set, propagate
9634 an error unchanged.
9635 (tramp-completion-handle-file-name-all-completions): Handle hops.
9636 Fix an error when called from ido.
9637 (tramp-completion-dissect-file-name): Use better local variable
9638 name. Add hop to the vector.
9639 (tramp-handle-insert-file-contents): Use progress-reporter for the
9640 whole scenario.
9641 (tramp-action-password): Let-bind `enable-recursive-minibuffers'
9642 to `t'.
9643 (tramp-check-for-regexp): Simplify search.
9644 (tramp-enter-password): Remove it. Move implementation ...
9645 (tramp-action-password): ... here.
9646 (tramp-mode-string-to-int, tramp-local-host-p)
9647 (tramp-make-tramp-temp-file, tramp-read-passwd)
9648 (tramp-clear-passwd, tramp-time-less-p, tramp-time-diff):
9649 Set tramp-autoload cookie.
9650
9651 * net/trampver.el: Update release number.
9652
96532012-06-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9654 Michael Albinus <michael.albinus@gmx.de>
9655
9656 * net/tramp.el (tramp-set-completion-function): Fix docstring.
9657 (tramp-parse-group, tramp-parse-file)
9658 (tramp-parse-shostkeys-sknownhosts): New defuns.
9659 (tramp-parse-rhosts, tramp-parse-rhosts-group, tramp-parse-shosts)
9660 (tramp-parse-shosts-group, tramp-parse-sconfig)
9661 (tramp-parse-sconfig-group, tramp-parse-shostkeys)
9662 (tramp-parse-sknownhosts, tramp-parse-hosts)
9663 (tramp-parse-hosts-group, tramp-parse-passwd, tramp-parse-netrc):
9664 Use them.
9665 (tramp-parse-passwd-group, tramp-parse-netrc-group)
9666 (tramp-parse-putty-group): Don't narrow.
9667 (tramp-parse-putty): Make a loop.
9668 (tramp-file-name-handler): Catch the `suppress' signal.
9669
96702012-06-11 Chong Yidong <cyd@gnu.org>
9671
9672 * image.el (imagemagick-register-types): Put the ImageMagick entry
9673 at the end of image-type-file-name-regexps.
9674
96752012-06-11 Johan Bockgård <bojohan@gnu.org>
9676
9677 * emacs-lisp/pcase.el (pcase-UPAT, pcase-QPAT): New edebug specs.
9678 (pcase, pcase-let*, pcase-dolist): Use them.
9679
96802012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
9681
9682 * emacs-lisp/pcase.el (pcase--let*): New function.
9683 (pcase-let*): Use it. Use pcase--memoize to avoid repeated expansions.
9684 (pcase--expand): Use macroexp-let².
9685
96862012-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
9687
9688 * emacs-lisp/timer.el, emacs-lisp/syntax.el, emacs-lisp/smie.el:
9689 * emacs-lisp/ewoc.el, emacs-lisp/cconv.el, emacs-lisp/bytecomp.el:
9690 * emacs-lisp/byte-opt.el, emacs-lisp/autoload.el: Convert to cl-lib.
9691 * emacs-lisp/easymenu.el, emacs-lisp/easy-mmode.el:
9692 * emacs-lisp/derived.el: Use pcase instead of `cl'.
9693 * emacs-lisp/cl-lib.el: Get rid of special cl-macs auto load.
9694
96952012-06-10 Glenn Morris <rgm@gnu.org>
9696
9697 * mail/rmail.el (rmail-yank-current-message): Leave point at
9698 correct position. (Bug#11660)
9699
97002012-06-10 Chong Yidong <cyd@gnu.org>
9701
9702 * allout-widgets.el: Fix code header.
9703
97042012-06-10 Chong Yidong <cyd@gnu.org>
9705
9706 * cus-edit.el (customize-changed-options-previous-release):
9707 Bump to 24.1.
9708
97092012-06-09 Andreas Schwab <schwab@linux-m68k.org>
9710
9711 * Makefile.in (BIG_STACK_DEPTH): Enlarge to 2200.
9712
97132012-06-09 Chong Yidong <cyd@gnu.org>
9714
9715 * ebuff-menu.el (electric-buffer-list): Preserve header line.
9716
97172012-06-09 Martin Rudalics <rudalics@gmx.at>
9718
9719 * window.el (special-display-popup-frame): Don't use
9720 window--display-buffer (Bug#11651).
9721
97222012-06-09 Eli Zaretskii <eliz@gnu.org>
9723
9724 Fix parallel builds: make sure loaddefs.el is not being written
9725 while Lisp files are compiled.
9726 (compile): Don't depend on 'mh-autoloads'.
9727 (compile-CMD, compile-SH): Depend on 'autoloads'.
9728 (bootstrap): Don't depend on 'autoloads' and 'mh-autoloads'.
9729
9730 * makefile.w32-in (BIG_STACK_DEPTH): Enlarge to 2200. (Bug#11649)
9731
97322012-06-09 Chong Yidong <cyd@gnu.org>
9733
9734 * face-remap.el (face-remap-add-relative, face-remap-set-base)
9735 (buffer-face-set, buffer-face-toggle, buffer-face-mode-invoke):
9736 Doc fixes (Bug#11225).
9737
97382012-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
9739
9740 * emacs-lisp/macroexp.el (macroexp--expand-all): Only autoload
9741 a function if there's a clear indication that it has a compiler-macro.
9742 * emacs-lisp/byte-run.el (defun-declarations-alist, defmacro, defun)
9743 (macro-declarations-alist): Add arglist to declaration functions.
9744 (defun-declarations-alist): Add `obsolete' and `compiler-macro'.
9745 * emacs-lisp/cl-seq.el (cl-member, cl-assoc):
9746 * emacs-lisp/cl-lib.el (cl-list*, cl-adjoin):
9747 * emacs-lisp/cl-extra.el (cl-get): Use the new `declare' statement.
9748 Also add autoload to find the compiler macro.
9749 * emacs-lisp/cl-macs.el (eql) [compiler-macro]: Remove.
9750 (cl--compiler-macro-member, cl--compiler-macro-assoc)
9751 (cl--compiler-macro-adjoin, cl--compiler-macro-list*)
9752 (cl--compiler-macro-get): New functions, replacing calls to
9753 cl-define-compiler-macro.
9754 (cl-typep) [compiler-macro]: Use macroexp-let².
9755
97562012-06-08 Nick Dokos <nicholas.dokos@hp.com> (tiny change)
9757
9758 * calendar/icalendar.el (icalendar--parse-vtimezone): Import TZID
9759 string properly, fixes Bug#11473.
9760
97612012-06-08 Chong Yidong <cyd@gnu.org>
9762
9763 * faces.el (set-face-attribute): Doc fix.
9764 (modify-face): Don't use :bold and :italic.
9765 (error, warning, success): Tweak definitions.
9766
9767 * cus-edit.el (custom-modified, custom-invalid, custom-rogue)
9768 (custom-modified, custom-set, custom-changed, custom-themed)
9769 (custom-saved, custom-button, custom-button-mouse)
9770 (custom-button-pressed, custom-state, custom-comment-tag)
9771 (custom-variable-tag, custom-group-tag-1, custom-group-tag)
9772 (custom-group-subtitle): Use new-style face specs.
9773 (custom-invalid-face, custom-rogue-face, custom-modified-face)
9774 (custom-set-face, custom-changed-face, custom-saved-face)
9775 (custom-button-face, custom-button-pressed-face)
9776 (custom-documentation-face, custom-state-face)
9777 (custom-comment-face, custom-comment-tag-face)
9778 (custom-variable-tag-face, custom-variable-button-face)
9779 (custom-face-tag-face, custom-group-tag-face-1)
9780 (custom-group-tag-face): Remove obsolete face alias.
9781
9782 * epa.el (epa-validity-high, epa-validity-medium)
9783 (epa-validity-low, epa-mark, epa-field-name, epa-string)
9784 (epa-field-name, epa-field-body):
9785 * font-lock.el (font-lock-comment-face, font-lock-string-face)
9786 (font-lock-keyword-face, font-lock-builtin-face)
9787 (font-lock-function-name-face, font-lock-variable-name-face)
9788 (font-lock-type-face, font-lock-constant-face):
9789 * ido.el (ido-first-match, ido-only-match, ido-subdir)
9790 (ido-virtual, ido-indicator, ido-incomplete-regexp):
9791 * speedbar.el (speedbar-button-face, speedbar-file-face)
9792 (speedbar-directory-face, speedbar-tag-face)
9793 (speedbar-selected-face, speedbar-highlight-face)
9794 (speedbar-separator-face):
9795 * whitespace.el (whitespace-newline, whitespace-space)
9796 (whitespace-hspace, whitespace-tab, whitespace-trailing)
9797 (whitespace-line, whitespace-space-before-tab)
9798 (whitespace-space-after-tab, whitespace-indentation)
9799 (whitespace-empty):
9800 * emulation/cua-base.el (cua-global-mark):
9801 * eshell/em-prompt.el (eshell-prompt):
9802 * net/newst-plainview.el (newsticker-new-item-face)
9803 (newsticker-old-item-face, newsticker-immortal-item-face)
9804 (newsticker-obsolete-item-face, newsticker-date-face)
9805 (newsticker-statistics-face, newsticker-default-face):
9806 * net/newst-reader.el (newsticker-feed-face)
9807 (newsticker-extra-face, newsticker-enclosure-face):
9808 * net/newst-treeview.el (newsticker-treeview-face)
9809 (newsticker-treeview-new-face, newsticker-treeview-old-face)
9810 (newsticker-treeview-immortal-face)
9811 (newsticker-treeview-obsolete-face)
9812 (newsticker-treeview-selection-face):
9813 * net/rcirc.el (rcirc-my-nick, rcirc-other-nick)
9814 (rcirc-bright-nick, rcirc-server, rcirc-timestamp)
9815 (rcirc-nick-in-message, rcirc-nick-in-message-full-line)
9816 (rcirc-prompt, rcirc-track-keyword, rcirc-url, rcirc-keyword):
9817 * nxml/nxml-outln.el (nxml-heading, nxml-outline-indicator)
9818 (nxml-outline-active-indicator, nxml-outline-ellipsis):
9819 * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
9820 (mpuz-text):
9821 * progmodes/vera-mode.el (vera-font-lock-number)
9822 (vera-font-lock-function, vera-font-lock-interface):
9823 * textmodes/table.el (table-cell): Use new-style face specs, and
9824 don't use the old :bold and :italic attributes.
9825
9826 * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
9827 (ebrowse-member-attribute, ebrowse-default, ebrowse-file-name)
9828 (ebrowse-member-class, ebrowse-progress): Likewise.
9829 (ebrowse-tree-mark-face, ebrowse-root-class-face)
9830 (ebrowse-file-name-face, ebrowse-default-face)
9831 (ebrowse-member-attribute-face, ebrowse-member-class-face)
9832 (ebrowse-progress-face): Remove obsolete faces.
9833
9834 * progmodes/flymake.el (flymake-errline, flymake-warnline):
9835 Inherit from error and warning faces respectively.
9836
9837 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
9838 Likewise.
9839 (flyspell-incorrect-face, flyspell-duplicate-face):
9840 Remove obsolete aliases.
9841
98422012-06-08 Michael Albinus <michael.albinus@gmx.de>
9843
9844 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
9845 Avoid infloop.
9846
98472012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
9848
9849 * startup.el (argv, argi): Make lexically scoped.
9850 * emacs-lisp/float-sup.el (pi): Use internal-make-var-non-special.
9851 * emacs-lisp/cl-macs.el: Use lexical-binding.
9852 Rename cl-bind-* to cl--bind-*.
9853 * files.el: Don't require `cl' since it doesn't use it.
9854 * emacs-lisp/pcase.el, emacs-lisp/macroexp.el: Add coding cookie.
9855
98562012-06-08 Juanma Barranquero <lekktu@gmail.com>
9857
9858 * textmodes/texinfmt.el: Fix bug#11640 (reverts part of 2008-07-31T05:33:56Z!dann@ics.uci.edu).
9859 (texinfo-format-printindex): Use `texinfo-sort-region' in all platforms,
9860 instead of calling external sort utility.
9861 (texinfo-sort-region, texinfo-sort-startkeyfun): Restore functions.
9862
98632012-06-08 Eli Zaretskii <eliz@gnu.org>
9864
9865 * descr-text.el (describe-char): Mention how to insert the
9866 character, if the current input method doesn't support it.
9867 See the discussion in this thread for the details:
9868 http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00533.html.
9869
98702012-06-08 Sam Steingold <sds@gnu.org>
9871
9872 * bindings.el (global-map): Bind XF86Forward to next-buffer and
9873 XF86Back to previous-buffer.
9874 (minibuffer-local-map): Bind them to next-history-element and
9875 previous-history-element respectively.
9876 * help-mode.el (help-mode-map): Bind them to help-go-forward and
9877 help-go-back respectively.
9878 * info.el (Info-mode-map): Bind them to Info-history-forward and
9879 Info-history-back respectively.
9880 These are the keys next to Up on the ThinkPad keyboard.
9881
98822012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
9883
9884 Get rid of cl-lexical-let, keeping only lexical-let for compatibility.
9885 * emacs-lisp/cl-macs.el: Provide itself.
9886 (cl--labels-convert-cache): New var.
9887 (cl--labels-convert): New function.
9888 (cl-flet, cl-labels): New implementation with new semantics, relying on
9889 lexical-binding.
9890 * emacs-lisp/cl.el: Mark compatibility aliases as obsolete.
9891 (cl-closure-vars, cl--function-convert-cache)
9892 (cl--function-convert): Move from cl-macs.el.
9893 (lexical-let, lexical-let*, flet, labels): Move from cl-macs.el and
9894 rename by removing the "cl-" prefix.
9895 * emacs-lisp/macroexp.el (macroexp-unprogn): New function.
9896
98972012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
9898
9899 * emacs-lisp/cl.el (cl-macroexpand, cl-macro-environment)
9900 (cl-macroexpand-all, cl-not-hash-table, cl-builtin-gethash)
9901 (cl-builtin-remhash, cl-builtin-clrhash, cl-builtin-maphash)
9902 (cl-map-keymap, cl-copy-tree, cl-gethash, cl-puthash, cl-remhash)
9903 (cl-clrhash, cl-maphash, cl-make-hash-table, cl-hash-table-p)
9904 (cl-hash-table-count): Add old compatibility aliases.
9905
9906 * emacs-lisp/cl-macs.el (cl-macro-environment): Remove var.
9907 Use macroexpand-all-environment instead.
9908 (cl--old-macroexpand): New var.
9909 (cl--sm-macroexpand): New function.
9910 (cl-symbol-macrolet): Use it during macro expansion.
9911 (cl--function-convert-cache): New var.
9912 (cl--function-convert): New function, extracted from
9913 cl-macroexpand-all.
9914 (cl-lexical-let): Use it.
9915
9916 * emacs-lisp/cl-lib.el (cl-macro-environment): Remove decl.
9917 (cl-macroexpand): Move to cl-macs.el and rename to cl--sm-macroexpand.
9918 (cl-member): Remove old alias.
9919
9920 * emacs-lisp/cl-extra.el (cl-map-keymap, cl-copy-tree)
9921 (cl-not-hash-table, cl-builtin-gethash, cl-builtin-remhash)
9922 (cl-builtin-clrhash, cl-builtin-maphash, cl-gethash, cl-puthash)
9923 (cl-remhash, cl-clrhash, cl-maphash, cl-make-hash-table)
9924 (cl-hash-table-p, cl-hash-table-count): Move to cl.el.
9925 (cl-macroexpand-cmacs): Remove var.
9926 (cl-macroexpand-all, cl-macroexpand-body): Remove funs.
9927 Use macroexpand-all instead.
9928
99292012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
9930
9931 * emacs-lisp/macroexp.el (macroexp-progn, macroexp-let*, macroexp-if)
9932 (macroexp-let², macroexp--const-symbol-p, macroexp-const-p)
9933 (macroexp-copyable-p): New functions and macros.
9934 * emacs-lisp/edebug.el (edebug-unwrap):
9935 * emacs-lisp/disass.el (disassemble-internal): Use macroexp-progn.
9936 * emacs-lisp/pcase.el: Use macroexp-let*, macroexp-if, ...
9937 (pcase--let*): Remove.
9938 * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p)
9939 (byte-compile-constp): Remove. Use macroexp--const-symbol-p and
9940 macroexp-const-p instead.
9941 * emacs-lisp/byte-opt.el: Use macroexp-const-p and macroexp-progn.
9942
9943 * emacs-lisp/cl-macs.el: Clean up the name space by using "cl--"
9944 instead of "cl-" for internal definitions. Use macroexp-const-p.
9945 (cl-old-bc-file-form): Remove var.
9946 (cl-const-exprs-p): Remove fun.
9947 (cl-labels, cl-macrolet): Use backquote.
9948 (cl-lexical-let): Use cl-symbol-macrolet. Don't use cl-defun-expander.
9949 (cl-defun-expander, cl-byte-compile-compiler-macro): Remove fun.
9950 (cl-define-setf-expander): Rename from cl-define-setf-method.
9951 * emacs-lisp/cl.el: Adjust alias for define-setf-method.
9952
9953 * international/mule-cmds.el: Don't require CL.
9954 (view-hello-file): Don't use `letf'.
9955
99562012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
9957
9958 * tmm.el (tmm-prompt): Use string-prefix-p.
9959 (tmm-completion-delete-prompt): Don't affect current-buffer outside.
9960 (tmm-add-prompt): Use minibuffer-completion-help.
9961 (tmm-delete-map): Remove.
9962
9963 * subr.el (kbd): Make it its own function.
9964
99652012-06-07 Stefan Merten <smerten@oekonux.de>
9966
9967 * textmodes/rst.el: Use `eval-when-compile' for requiring `cl.el'.
9968 Silence compiler warnings. Fix versions.
9969 (rst-position-if, rst-position, rst-some, rst-signum): New functions.
9970 (rst-shift-region, rst-adornment-level, rst-compute-tabs)
9971 (rst-indent-line, rst-shift-region, rst-forward-line): Use them.
9972 (rst-package-emacs-version-alist): Correct Emacs version to
9973 represent major merge with upstream.
9974 (rst-transition, rst-adornment, rst-compile-toolsets): Fix versions.
9975
99762012-06-06 Glenn Morris <rgm@gnu.org>
9977
9978 * mail/emacsbug.el (report-emacs-bug): Add relevant EMACS env-vars.
9979 Only print environment variables if set.
9980
99812012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
9982
9983 * emacs-lisp/macroexp.el: Don't require CL since we don't use it.
9984 (macroexp--cons): Rename from maybe-cons.
9985 (macroexp--accumulate): Rename from macroexp-accumulate.
9986 (macroexp--all-forms): Rename from macroexpand-all-forms.
9987 (macroexp--all-clauses): Rename from macroexpand-all-clauses.
9988 (macroexp--expand-all): Rename from macroexpand-all-1.
9989
99902012-06-06 Sam Steingold <sds@gnu.org>
9991
9992 * calendar/calendar.el (calendar-in-read-only-buffer):
9993 Call `special-mode' to enable the standard read-only keybindings.
9994
99952012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
9996
9997 * emacs-lisp/macroexp.el (macroexpand-all-1): Don't spam the output
9998 with "loading" messages (bug#11635).
9999
100002012-06-06 Michael Albinus <michael.albinus@gmx.de>
10001
10002 * files.el (enable-remote-dir-locals): New option.
10003 (hack-dir-local-variables): Use it. (Bug#1933, Bug#6731)
10004
10005 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
10006 Ensure, that the temp directory is local.
10007
10008 * net/tramp-sh.el (tramp-sh-handle-write-region): Let-bind
10009 `temporary-file-directory'.
10010
10011 * progmodes/python.el (python-send-region): Ensure, that the
10012 temporary file is created also in the remote case.
10013
100142012-06-06 Glenn Morris <rgm@gnu.org>
10015
10016 * vc/vc-rcs.el (vc-rcs-rcs2log-program): New.
10017 (vc-rcs-update-changelog): Use it.
10018
10019 * emacs-lisp/authors.el (authors-fixed-entries): Remove vcdiff.
10020
10021 * vc/vc-sccs.el (vc-sccs-write-revision): New function.
10022 (vc-sccs-workfile-unchanged-p): Use vc-sccs-write-revision.
10023 (vc-sccs-diff): Replace use of the external vcdiff script.
10024
100252012-06-05 Glenn Morris <rgm@gnu.org>
10026
10027 * ledit.el: Move to obsolete/.
10028
100292012-06-05 Sam Steingold <sds@gnu.org>
10030
10031 * calendar/calendar.el (calendar-exit): Reinstate the 2012-03-28
10032 patch (Bug#11140).
10033
100342012-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
10035
10036 * emacs-lisp/cust-print.el: Move to obsolete.
10037
10038 * emacs-lisp/macroexp.el (macroexpand-all-1): Tolerate errors during
10039 compiler-macro expansion.
10040
10041 Add native compiler-macro support.
10042 * emacs-lisp/macroexp.el (macroexpand-all-1):
10043 Support compiler-macros directly. Properly follow aliases and apply
10044 the compiler macros more thoroughly.
10045 * emacs-lisp/cl.el: Don't copy compiler-macro properties any more since
10046 macroexpand now properly follows aliases.
10047 * emacs-lisp/cl-macs.el (toplevel, cl-define-compiler-macro)
10048 (cl-compiler-macroexpand): Use new prop.
10049 * emacs-lisp/byte-opt.el (featurep): Optimize earlier.
10050
10051 * emacs-lisp/cl-lib.el (custom-print-functions): Add alias.
10052
100532012-06-05 Martin Rudalics <rudalics@gmx.at>
10054
10055 * window.el (get-lru-window, get-mru-window, get-largest-window):
10056 New argument NOT-SELECTED to avoid picking the selected window.
10057 (window--display-buffer-1, window--display-buffer-2): Replace by
10058 new function window--display-buffer
10059 (display-buffer-same-window, display-buffer-reuse-window)
10060 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
10061 Use window--display-buffer.
10062 (display-buffer-use-some-window): Remove temporary dedication
10063 hack by calling get-lru-window and get-largest-window with
10064 NOT-SELECTED argument non-nil. Call window--display-buffer.
10065
100662012-06-05 Glenn Morris <rgm@gnu.org>
10067
10068 * vc/vc-sccs.el (vc-sccs-workfile-unchanged-p):
10069 Replace external vcdiff script.
10070
100712012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
10072
10073 * emacs-lisp/cl-lib.el (cl-values, cl-values-list): Fix up last change.
10074
100752012-06-04 Chong Yidong <cyd@gnu.org>
10076
10077 * image.el (imagemagick-types-inhibit): Revert last change.
10078 Add INFO and M.
10079 (imagemagick-enabled-types): Remove CIN and EPS*.
10080
100812012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
10082
10083 * emacs-lisp/cl-lib.el: Rename from cl.el.
10084 * emacs-lisp/cl.el: New compatibility file.
10085 * emacs-lisp/cl-lib.el, emacs-lisp/cl-seq.el, emacs-lisp/cl-macs.el:
10086 * emacs-lisp/cl-extra.el: Rename all top-level functions and variables
10087 to obey the "cl-" prefix.
10088 * emacs-lisp/macroexp.el (macroexpand-all-1): Adjust to new name.
10089
100902012-06-03 Glenn Morris <rgm@gnu.org>
10091
10092 * emacs-lisp/authors.el (authors-aliases): Addition.
10093
10094 * cus-start.el (tool-bar-style, tool-bar-max-label-size):
10095 Fix :version.
10096
100972012-06-03 Stefan Merten <smerten@oekonux.de>
10098
10099 * textmodes/rst.el: Add comments.
10100 (rst-transition, rst-adornment): New faces.
10101 (rst-adornment-faces-alist): Make default safe to reevaluate.
10102 Fixes
10103 http://sourceforge.net/tracker/?func=detail&atid=422030&aid=3479603&group_id=38414.
10104 Improve customization tags.
10105 (rst-define-level-faces): Clarify meaning.
10106
101072012-06-03 Chong Yidong <cyd@gnu.org>
10108
10109 * progmodes/compile.el (compilation-mode-line-fail)
10110 (compilation-mode-line-run, compilation-mode-line-exit):
10111 New faces.
10112 (compilation-start, compilation-handle-exit): Use them (Bug#11032).
10113
101142012-06-03 Jack Duthen <duthen.mac.01@gmail.com> (tiny change)
10115
10116 * progmodes/which-func.el (which-func-update-ediff-windows):
10117 New function. Use it in ediff-select-hook (Bug#11478).
10118
101192012-06-03 Chong Yidong <cyd@gnu.org>
10120
10121 * bindings.el: Remove explicit help text from format-mode-line.
10122 It is now supplied by mode-line-default-help-echo.
10123 (mode-line-front-space, mode-line-end-spaces)
10124 (mode-line-misc-info): New variables.
10125 (mode-line-modes, mode-line-position): Move the default value to
10126 the variable definition.
10127 (mode-line-default-help-echo): New defcustom.
10128 (mode-line-mule-info-help-echo, mode-line-read-only-help-echo)
10129 (mode-line-modified-help-echo): New functions.
10130 (mode-line-mule-info, mode-line-modified): Use them.
10131 (mode-line-eol-desc, propertized-buffer-identification):
10132 Consistency fixes for help text.
10133 (mode-line-coding-system-map): Allow using mouse-3 to invoke
10134 set-buffer-file-coding-system (Bug#289).
10135 (mode-line-mule-info-help-echo): Update help text.
10136
101372012-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
10138
10139 * simple.el (execute-extended-command): Set real-this-command
10140 (bug#11506).
10141
101422012-06-02 Chong Yidong <cyd@gnu.org>
10143
10144 Remove incorrect uses of "modeline" in comments, docstrings, and
10145 function/variable names (Bug#10329).
10146
10147 * cus-edit.el (mode-line):
10148 * dframe.el (dframe-mouse-hscroll):
10149 * emacs-lisp/re-builder.el:
10150 * emacs-lisp/easy-mmode.el (define-minor-mode):
10151 * frame.el (set-frame-name):
10152 * help.el (lookup-minor-mode-from-indicator):
10153 * net/rcirc.el (rcirc-activity-string, rcirc-short-buffer-name):
10154 * progmodes/cc-cmds.el (c-toggle-auto-newline)
10155 (c-toggle-hungry-state):
10156 * progmodes/antlr-mode.el (antlr-language-alist):
10157 * progmodes/idlw-shell.el (idlwave-shell-electric-stop-line-face):
10158 * progmodes/vhdl-mode.el (vhdl-mode):
10159 * progmodes/which-func.el (which-func, which-func-cleanup-function):
10160 * term/ns-win.el (ns-face-at-pos):
10161 * term/sup-mouse.el (sup-mouse-report):
10162 * textmodes/flyspell.el (flyspell-mode-line-string):
10163 * textmodes/ispell.el (ispell-highlight-face):
10164 * textmodes/reftex-global.el:
10165 * vc/vc-arch.el (vc-arch-mode-line-string):
10166 * vc/vc-cvs.el (vc-cvs-mode-line-string):
10167 * vc/vc-git.el (vc-git-mode-line-string):
10168 * vc/vc-hooks.el (vc-display-status)
10169 (vc-default-mode-line-string):
10170 * vc/vc-mtn.el (vc-mtn-mode-line-string): Doc fixes.
10171
10172 * ansi-color.el (ansi-color-faces-vector): Change default faces.
10173
10174 * dired.el (dired-sort-set-mode-line): Rename from
10175 dired-sort-set-modeline. All callers changed.
10176
10177 * eshell/esh-mode.el (eshell-status-in-mode-line): Rename from
10178 eshell-status-in-modeline.
10179
10180 * foldout.el (foldout-mode-line-string): Rename from
10181 foldout-modeline-string. All callers changed.
10182 (foldout-update-mode-line): Rename from foldout-update-modeline.
10183
10184 * subr.el (redraw-modeline): Make into obsolete alias.
10185
10186 * calendar/timeclock.el (timeclock-mode-line-display): Rename from
10187 timeclock-modeline-display. Make old name an alias.
10188 (timeclock-update-mode-line): Likewise. All callers changed.
10189 (timeclock-mode-line-display): No need to check before using
10190 add-hook.
10191 (timeclock-relative, timeclock-day-over-hook)
10192 (timeclock-use-elapsed, timeclock-mode-string)
10193 (timeclock-mode-line-display): Doc fix, "modeline" -> "mode line".
10194
10195 * emulation/crisp.el (crisp-mode-mode-line-string): Rename from
10196 crisp-mode-modeline-string.
10197
10198 * play/solitaire.el (solitaire-build-mode-line): Rename from
10199 solitaire-build-modeline. All callers changed.
10200
10201 * play/zone.el (zone-hiding-mode-line): Rename from
10202 zone-hiding-modeline. All callers changed.
10203 (zone): Remove unusued `modeline-hidden-level' property.
10204
10205 * progmodes/xscheme.el (xscheme-mode-line-initialize): Rename from
10206 xscheme-modeline-initialize. All callers changed.
10207
10208 * strokes.el (strokes-lighter): Rename from
10209 strokes-modeline-string.
10210
10211 * textmodes/sgml-mode.el (html-face-tag-alist)
10212 (html-tag-face-alist): Use mode-line face instead of obsolete
10213 alias modeline.
10214
102152012-06-02 Stefan Merten <smerten@oekonux.de>
10216
10217 * textmodes/rst.el: Always require `cl'.
10218 (rst-mode-map): Fix meaning of C-M-a / C-M-e.
10219
102202012-06-02 Chong Yidong <cyd@gnu.org>
10221
10222 * image.el (imagemagick-enabled-types): Rename from
10223 imagemagick-types-enable. Add many more types.
10224 (imagemagick-types-inhibit): Change default to nil.
10225 (imagemagick-filter-types): Caller changed.
10226
102272012-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
10228
10229 * emacs-lisp/cl-macs.el: Use backquotes.
10230 (cl-transform-function-property): Use eval-and-compile rather than
10231 abusing `require'.
10232 (defstruct): Use declare-function instead of with-no-warnings.
10233
10234 * emacs-lisp/bytecomp.el: Fix last change (bug#11594).
10235 (byte-compile-output-docform): Re-add the print-circle bindings.
10236 (byte-compile-fix-header): Use #$ just because it's shorter.
10237 (byte-compile-output-file-form): Remove defun/defmacro.
10238
102392012-06-01 Martin Rudalics <rudalics@gmx.at>
10240
10241 * simple.el (choose-completion): Remove now obsolete binding for
10242 owindow.
10243
102442012-06-01 Michael Albinus <michael.albinus@gmx.de>
10245
10246 * net/tramp.el (tramp-check-for-regexp): Search from buffer end,
10247 in order to avoid "Stack overflow in regexp matcher".
10248
102492012-05-31 Glenn Morris <rgm@gnu.org>
10250
10251 * image.el: For clarity, call imagemagick-register-types at
10252 top-level, rather than relying on a custom :initialize.
10253 (imagemagick-types-enable): New option. (Bug#11557)
10254 (imagemagick-filter-types): New function. (Bug#7406)
10255 (imagemagick-register-types): Use imagemagick-filter-types.
10256 If disabling support, remove elements altogether rather
10257 than using an impossible regexp.
10258 (imagemagick-types-inhibit): Give it the default init function.
10259
102602012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
10261
10262 * emacs-lisp/bytecomp.el (byte-compile-fix-header):
10263 Handle arbitrary file name lengths (Bug#11585).
10264
102652012-05-31 Martin Rudalics <rudalics@gmx.at>
10266
10267 * desktop.el (desktop-read): Clear previous and next buffers for
10268 all windows and bury *Messages* buffer (bug#11556).
10269
102702012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
10271
10272 Add `declare' for `defun'. Align `defmacro's with it.
10273 * emacs-lisp/easy-mmode.el (define-minor-mode)
10274 (define-globalized-minor-mode): Don't autoload the var definitions.
10275 * emacs-lisp/byte-run.el: Use lexical-binding.
10276 (defun-declarations-alist, macro-declarations-alist): New vars.
10277 (defmacro, defun): Use them.
10278 (make-obsolete, define-obsolete-function-alias)
10279 (make-obsolete-variable, define-obsolete-variable-alias):
10280 Use `declare'.
10281 (macro-declaration-function): Mark obsolete.
10282 * emacs-lisp/autoload.el: Use lexical-binding.
10283 (make-autoload): Add `expansion' arg. Rely more on macro expansion.
10284
102852012-05-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
10286
10287 * textmodes/ispell.el (ispell-with-no-warnings):
10288 Define as a macro.
10289 (ispell-kill-ispell, ispell-change-dictionary):
10290 Use `called-interactively-p' for Emacs instead of obsolete
10291 `interactive-p'.
10292
102932012-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
10294
10295 * emacs-lisp/byte-run.el (defmacro, defun): Move from C.
10296 (macro-declaration-function): Move var from C code.
10297 (macro-declaration-function): Define function with defalias.
10298 * emacs-lisp/macroexp.el (macroexpand-all-1):
10299 * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form):
10300 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Don't handle
10301 defun/defmacro any more.
10302 * emacs-lisp/bytecomp.el (byte-compile-arglist-signature):
10303 Provide fallback for unknown arglist.
10304 (byte-compile-arglist-warn): Change calling convention.
10305 (byte-compile-output-file-form): Move print-vars binding.
10306 (byte-compile-output-docform): Simplify accordingly.
10307 (byte-compile-file-form-defun, byte-compile-file-form-defmacro)
10308 (byte-compile-defmacro-declaration): Remove.
10309 (byte-compile-file-form-defmumble): Generalize to defalias.
10310 (byte-compile-output-as-comment): Return byte-positions.
10311 Simplify callers accordingly.
10312 (byte-compile-lambda): Use `assert'.
10313 (byte-compile-defun, byte-compile-defmacro): Remove.
10314 (byte-compile-file-form-defalias):
10315 Use byte-compile-file-form-defmumble.
10316 (byte-compile-defalias-warn): Remove.
10317
103182012-05-29 Stefan Merten <smerten@oekonux.de>
10319
10320 * textmodes/rst.el: Silence `checkdoc-ispell' errors where
10321 possible. Fix authors. Improve comments. Improve loading of `cl'.
10322
10323 (rst-mode-abbrev-table): Merge definition.
10324 (rst-mode): Make sure `font-lock-defaults' is buffer local.
10325 (rst-define-key, rst-deprecated-keys, rst-call-deprecated): Refactor.
10326
103272012-05-29 Ulf Jasper <ulf.jasper@web.de>
10328
10329 * calendar/icalendar.el
10330 (icalendar-export-region): Export UID properly.
10331
103322012-05-29 Leo Liu <sdl.web@gmail.com>
10333 * calendar/icalendar.el (icalendar-import-format):
10334 Add `icalendar-import-format-uid' (Bug#11525).
10335 (icalendar-import-format-uid): New.
10336 (icalendar--parse-summary-and-rest, icalendar--format-ical-event):
10337 Export UID.
10338
103392012-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
10340
10341 * emacs-lisp/pcase.el (pcase--expand): Accept different sets of vars in
10342 different alternative patterns.
10343 (pcase-codegen): Be more careful to preserve identity.
10344 (pcase--u1): Don't forget to mark vars as used.
10345
10346 * emacs-lisp/bytecomp.el (byte-compile-constp): Treat #'v as a constant.
10347 (byte-compile-close-variables): Bind byte-compile--outbuffer here...
10348 (byte-compile-from-buffer): ...rather than here.
10349
10350 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Don't re-preprocess
10351 functions from byte-compile-function-environment.
10352
103532012-05-29 Troels Nielsen <bn.troels@gmail.com>
10354
10355 * window.el (window-deletable-p): Avoid deleting the root window
10356 of a frame with an active minibuffer.
10357
103582012-05-29 Martin Rudalics <rudalics@gmx.at>
10359
10360 * simple.el (choose-completion): Use quit-window (Bug#11567).
10361
103622012-05-29 Chong Yidong <cyd@gnu.org>
10363
10364 * whitespace.el (whitespace-cleanup): Fix usage of
10365 whitespace-empty-at-bob-regexp (Bug#11492).
10366
103672012-05-29 Aaron S. Hawley <aaron.s.hawley@gmail.com>
10368
10369 * vc/vc.el (vc-revert, vc-rollback): Dont kill vc-diff buffer on
10370 revert (Bug#11488).
10371
103722012-05-29 Juri Linkov <juri@jurta.org>
10373
10374 * isearch.el (isearch-mode-map): Bind `M-s _' to
10375 `isearch-toggle-symbol'. Bind `M-s c' to
10376 `isearch-toggle-case-fold'.
10377 (search-map): Bind `M-s _' to `isearch-forward-symbol'.
10378 (isearch-forward): Add `M-s _' to the docstring.
10379 (isearch-forward-symbol, isearch-toggle-case-fold)
10380 (isearch-symbol-regexp): New functions. (Bug#11381)
10381
103822012-05-29 Juri Linkov <juri@jurta.org>
10383
10384 * isearch.el (isearch-word): Add docstring. (Bug#11381)
10385 (isearch-occur, isearch-search-and-update): If `isearch-word' is
10386 a function, call it to get the regexp.
10387 (isearch-message-prefix): If `isearch-word' holds a symbol, use its
10388 property `isearch-message-prefix' instead of the string "word ".
10389 (isearch-search-fun-default): For the case of `isearch-word',
10390 return a lambda that calls re-search-forward/re-search-backward
10391 with a regexp returned by `word-search-regexp' or by the function
10392 in `isearch-word'.
10393
103942012-05-29 Juri Linkov <juri@jurta.org>
10395
10396 * isearch.el (isearch-search-fun-default): New function.
10397 (isearch-search-fun): Move default part to the new function
10398 `isearch-search-fun-default'.
10399 (isearch-search-fun-function): Set the default value to
10400 `isearch-search-fun-default'. (Bug#11381)
10401
10402 * comint.el (comint-history-isearch-end):
10403 Use `isearch-search-fun-default'.
10404 (comint-history-isearch-search): Use `isearch-search-fun-default'
10405 and remove spacial case for `isearch-word'.
10406 (comint-history-isearch-wrap): Remove spacial case for
10407 `isearch-word'.
10408
10409 * hexl.el (hexl-isearch-search-function):
10410 Use `isearch-search-fun-default'.
10411
10412 * info.el (Info-isearch-search): Use `isearch-search-fun-default'.
10413 Use `word-search-regexp' for `isearch-word'.
10414
10415 * misearch.el (multi-isearch-search-fun):
10416 Use `isearch-search-fun-default'.
10417
10418 * simple.el (minibuffer-history-isearch-search):
10419 Use `isearch-search-fun-default' and remove spacial case for
10420 `isearch-word'.
10421 (minibuffer-history-isearch-wrap): Remove spacial case for
10422 `isearch-word'.
10423
10424 * textmodes/reftex-global.el (reftex-isearch-wrap-function):
10425 Remove spacial case for `isearch-word'.
10426 (reftex-isearch-isearch-search): Use `isearch-search-fun-default'.
10427
104282012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
10429
10430 Decrease XEmacs incompatibilities.
10431 * textmodes/flyspell.el (flyspell-check-pre-word-p):
10432 Use `string-match'.
10433 (flyspell-delete-region-overlays): Use alternative definition for
10434 XEmacs.
10435 (flyspell-delete-all-overlays): Use `flyspell-delete-region-overlays'.
10436 (flyspell-word): Use `process-kill-without-query' if XEmacs.
10437 (flyspell-mode-on): Use `interactive-p' if XEmacs.
10438 (flyspell-incorrect-face, flyspell-duplicate-face): Do not use
10439 `define-obsolete-face-alias' under XEmacs, but old method.
10440
10441 * textmodes/ispell.el (ispell-with-no-warnings): XEmacs alternative
10442 `with-no-warnings' definition or Emacs alias.
10443 (ispell-command-loop, ispell-message): Use `ispell-with-no-warnings'.
10444 (ispell-word): Do not use `region-p' if XEmacs.
10445
104462012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
10447
10448 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
10449 Check for `ispell-dictionary-base-alist' instead of full
10450 `ispell-dictionary-alist'.
10451 (ispell-init-process): Show spellchecker when starting new Ispell
10452 process.
10453
104542012-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
10455
10456 * progmodes/vhdl-mode.el: Sync with upstream 3.33.28.
10457 http://www.iis.ee.ethz.ch/~zimmi/emacs/vhdl-mode.html#release-notes-3.33
10458
104592012-05-27 Juanma Barranquero <lekktu@gmail.com>
10460
10461 * version.el (motif-version-string, gtk-version-string)
10462 (ns-version-string): Declare.
10463
104642012-05-27 Juri Linkov <juri@jurta.org>
10465
10466 * emacs-lisp/lisp-mode.el (eval-defun-2): Use `eval-sexp-add-defvars'
10467 after the `eval-defun-1' specialcaseing
10468 like in `edebug-eval-defun' (bug#10181).
10469
10470 * emacs-lisp/edebug.el (edebug-eval-defun): Set `face-documentation'
10471 like in `eval-defun-1'.
10472
104732012-05-27 Eli Zaretskii <eliz@gnu.org>
10474
10475 * mail/sendmail.el (mail-yank-region):
10476 Recognize rmail-yank-current-message in addition to insert-buffer.
10477 Fixes mail-mode's "C-c C-r" that otherwise does nothing when invoked in
10478 a *mail* buffer created through rmail-start-mail with sendmail as
10479 mail-user-agent.
10480
104812012-05-27 Chong Yidong <cyd@gnu.org>
10482
10483 * net/gnutls.el (gnutls-min-prime-bits): Improve docstring.
10484 Default to 256 (Bug#11267).
10485
10486 * help.el (describe-mode): Doc fix.
10487
104882012-05-26 Glenn Morris <rgm@gnu.org>
10489
10490 * w32-fns.el (w32-init-info): Remove.
10491 * paths.el (Info-default-directory-list): Add w32-init-info equivalent.
10492
10493 * info.el (info-initialize): For self-contained NS builds, put the
10494 included info/ directory at the front. (Bug#2791)
10495
10496 * paths.el (Info-default-directory-list): Make it a defcustom,
10497 mainly so that we can use custom-initialize-delay.
10498
104992012-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
10500
10501 * subr.el (buffer-has-markers-at): Mark obsolete.
10502
10503 * subr.el (lambda): Use declare.
10504
10505 * emacs-lisp/lisp-mode.el (lambda):
10506 * emacs-lisp/edebug.el (lambda): Move properties to its definition.
10507
105082012-05-26 Aaron S. Hawley <aaron.s.hawley@gmail.com>
10509
10510 * thingatpt.el (forward-same-syntax): Handle no ARG case. (Bug#11560)
10511
105122012-05-26 Glenn Morris <rgm@gnu.org>
10513
10514 * progmodes/cc-mode.el (auto-mode-alist): Fix typo.
10515
105162012-05-25 Glenn Morris <rgm@gnu.org>
10517
10518 * paths.el: Remove no-byte-compile.
10519 * loadup.el: No need to load paths.el uncompiled.
10520
10521 * image.el (imagemagick-types-inhibit): Doc fix.
10522
10523 * version.el: Remove no-byte-compile and associated formatting.
10524 * loadup.el: No need to load version.el uncompiled. AFAICS, this
10525 is ancient code from when there was an "inc-vers.el".
10526
105272012-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
10528
10529 * progmodes/gdb-mi.el: Minor style changes.
10530 (gdb-enable-debug, gdb-speedbar-auto-raise, gdb-many-windows):
10531 Turn into minor modes.
10532 (gdb--if-arrow): Rename from gdb-if-arrow, make it hygienic.
10533 (gdb-mouse-until, gdb-mouse-jump): Adjust uses accordingly.
10534 (gdb-shell): Remove unneeded let-binding.
10535 (gdb-get-many-fields): Eliminate O(n²) behavior.
10536
105372012-05-25 Eli Zaretskii <eliz@gnu.org>
10538
10539 * cus-start.el <vertical-centering-font-regexp>: Avoid warning on
10540 platforms that don't link in fontset.c.
10541
105422012-05-25 Juri Linkov <juri@jurta.org>
10543
10544 Use the same diff color scheme as in modern VCSes (bug#10181).
10545
10546 * vc/diff-mode.el (diff-header, diff-file-header): Remove "green"
10547 to avoid confusion with `diff-added' that now uses green colors.
10548 (diff-removed): Use shades of red.
10549 (diff-added): Use shades of green.
10550 (diff-changed): Leave just the yellow color.
10551 (diff-use-changed-face): New variable.
10552 (diff-font-lock-keywords): Use `diff-use-changed-face' to decide
10553 how to highlight context diff changes.
10554 (diff-refine-change): Use shades of yellow.
10555 (diff-refine-removed): New face that uses shades of red.
10556 (diff-refine-added): New face that uses shades of green.
10557 (diff-refine-hunk): Use `diff-refine-change', `diff-refine-added',
10558 `diff-refine-removed' in the call to `smerge-refine-subst'
10559 depending on the value of `diff-use-changed-face'.
10560
10561 * vc/smerge-mode.el (smerge-mine): Use shades of red.
10562 (smerge-other): Use shades of green.
10563 (smerge-base): Use shades of yellow.
10564 (smerge-refined-change): Empty face.
10565 (smerge-refined-removed): New face that uses shades of red.
10566 (smerge-refined-added): New face that uses shades of green.
10567 (smerge-refine-subst): Rename arg `props' to `props-c'. Add new
10568 args `props-r' and `props-a', and use them. Doc fix.
10569 (smerge-refine): Evaluate `smerge-use-changed-face' and depending
10570 on its value use different faces `smerge-refined-change',
10571 `smerge-refined-removed', `smerge-refined-added' in the call to
10572 `smerge-refine-subst'.
10573
10574 * vc/ediff-init.el (ediff-current-diff-A, ediff-fine-diff-A):
10575 Add face condition `min-colors 88' with shades of red.
10576 (ediff-current-diff-B, ediff-fine-diff-B): Add face condition
10577 `min-colors 88' with shades of green.
10578 (ediff-current-diff-C, ediff-fine-diff-C): Add face condition
10579 `min-colors 88' with shades of yellow.
10580
105812012-05-24 Glenn Morris <rgm@gnu.org>
10582
10583 * paths.el (prune-directory-list, remote-shell-program): Move to...
10584 * files.el (prune-directory-list, remote-shell-program): ...here.
10585 For the latter, delay initialization, prefer ssh, just search PATH.
10586
10587 * paths.el (term-file-prefix): Move to faces.el (the only user).
10588 * faces.el (term-file-prefix): Move here, make it a defcustom.
10589
10590 * paths.el (news-directory, news-path, news-inews-program):
10591 Move to gnus/nnspool.el.
10592
10593 * paths.el (gnus-default-nntp-server): Remove (gnus.el defines it).
10594
10595 * paths.el (rmail-file-name, rmail-spool-directory): Move from here...
10596 * mail/rmail.el (rmail-file-name, rmail-spool-directory): ... to here.
10597 Make the latter a defcustom, with a delayed initialization.
10598
10599 * paths.el (gnus-nntp-service, gnus-local-organization): Remove.
10600 These were deleted from Gnus itself late 2010.
10601
106022012-05-22 Juanma Barranquero <lekktu@gmail.com>
10603
10604 * progmodes/which-func.el (which-func-ff-hook):
10605 Check against user-error, not error.
10606
10607 * emacs-lisp/edebug.el (top): Do not load or set up loading of
10608 cl-specs.el, which no longer exists.
10609
106102012-05-22 Glenn Morris <rgm@gnu.org>
10611
10612 * info.el (info-emacs-bug): New command.
10613 * menu-bar.el (menu-bar-help-menu): Add "How to Report a Bug" to Help.
10614 * mail/emacsbug.el (report-emacs-bug): Replace with info-emacs-bug.
10615
106162012-05-21 Glenn Morris <rgm@gnu.org>
10617
10618 * makefile.w32-in (update-subdirs-SH):
10619 * Makefile.in (update-subdirs): Update for moved update-subdirs.
10620
106212012-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
10622
10623 * hi-lock.el (hi-lock-face-defaults): Move obsolete before definition.
10624
10625 * progmodes/compile.el (compilation-error-regexp-alist-alist):
10626 Simplify Maven regexp, and make sure the file can't start with a space
10627 (bug#11517).
10628
106292012-05-21 Glenn Morris <rgm@gnu.org>
10630
10631 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
10632 Scrap superfluous subshells.
10633
106342012-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
10635
10636 * emacs-lisp/bytecomp.el (byte-compile-root-dir): New var.
10637 (byte-compile-warning-prefix, batch-byte-compile-file): Use it.
10638
106392012-05-19 Jay Belanger <jay.p.belanger@gmail.com>
10640
10641 * calc/calc.el (calc-ensure-consistent-units): New variable.
10642
10643 * calc/calc-units.el (math-consistent-units-p)
10644 (math-check-unit-consistency): New functions.
10645 (calc-quick-units, calc-convert-units):
10646 Use `math-check-unit-consistency' when `calc-ensure-consistent-units'
10647 is non-nil.
10648 (calc-extract-units): Fix typo.
10649
106502012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
10651
10652 * vc/vc-bzr.el (vc-bzr-state-heuristic): Save match-data around sha1.
10653
10654 * textmodes/flyspell.el: Commenting style, plus code simplifications.
10655 (flyspell-default-deplacement-commands): Don't spell check after
10656 repeated window/frame switches (e.g. triggered by mouse-movement).
10657 (flyspell-delay-commands, flyspell-deplacement-commands): Use mapc.
10658 (flyspell-debug-signal-word-checked): Simplify and fit in 80 cols.
10659 (flyspell-casechars-cache, flyspell-ispell-casechars-cache)
10660 (flyspell-not-casechars-cache, flyspell-ispell-not-casechars-cache):
10661 Remove unused vars.
10662 (flyspell-get-casechars, flyspell-get-not-casechars):
10663 Simplify; Don't bother removing a ] just to add it back.
10664 * textmodes/ispell.el (ispell-program-name): Use executable-find.
10665
106662012-05-18 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
10667
10668 * calc/calc-lang.el (math-C-parse-bess, math-C-parse-fma):
10669 New functions.
10670 (math-function-table): Add support for more C functions.
10671
106722012-05-18 Agustín Martín Domingo <agustin.martin@hispalinux.es>
10673
10674 * textmodes/flyspell.el (flyspell-check-pre-word-p)
10675 (flyspell-check-word-p, flyspell-debug-signal-word-checked):
10676 Protect delay handling for otherchars against empty otherchars.
10677
106782012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
10679
10680 * emacs-lisp/lisp-mode.el (doc-string-elt): Move those properties to
10681 their respective macro declarations.
10682 * skeleton.el (define-skeleton):
10683 * progmodes/compile.el (define-compilation-mode):
10684 * ibuf-macs.el (define-ibuffer-sorter, define-ibuffer-op)
10685 (define-ibuffer-filter):
10686 * emacs-lisp/generic.el (define-generic-mode):
10687 * emacs-lisp/easy-mmode.el (define-minor-mode)
10688 (define-globalized-minor-mode):
10689 * emacs-lisp/cl-macs.el (defun*, defmacro*, defstruct, deftype):
10690 * emacs-lisp/byte-run.el (defsubst):
10691 * custom.el (deftheme): Add doc-string metadata.
10692
106932012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
10694
10695 * emacs-lisp/cl-macs.el, emacs-lisp/cl.el: Move indent info.
10696
106972012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
10698
10699 * emacs-lisp/pcase.el (pcase--u1): Avoid ((lambda ...) ...).
10700
10701 * emacs-lisp/cl.el: Add edebug specs from cl-specs.el.
10702 * emacs-lisp/cl-macs.el: Idem.
10703 * emacs-lisp/cl-specs.el: Remove.
10704
107052012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
10706
10707 Minor renaming of internal CL functions and variables.
10708 * emacs-lisp/cl-seq.el (cl--adjoin): Rename from cl-adjoin.
10709 (cl--position): Rename from cl-position.
10710 (cl--delete-duplicates): Rename from cl-delete-duplicates.
10711 * emacs-lisp/cl.el (cl--gensym-counter): Rename from *gensym-counter*.
10712 (cl--random-state): Rename from *random-state*.
10713
107142012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
10715
10716 * emacs-lisp/cl-macs.el (cl-transform-lambda): Don't add spurious
10717 parens around the arg list (bug#11499).
10718
107192012-05-17 Juri Linkov <juri@jurta.org>
10720
10721 * isearch.el (word-search-regexp, word-search-backward)
10722 (word-search-forward, word-search-backward-lax)
10723 (word-search-forward-lax): Move functions from search.c
10724 (bug#10145, bug#11381).
10725
107262012-05-16 Agustín Martín Domingo <agustin.martin@hispalinux.es>
10727
10728 * textmodes/flyspell.el (flyspell-check-pre-word-p)
10729 (flyspell-check-word-p, flyspell-debug-signal-word-checked):
10730 Delay for otherchars as for normal word components.
10731
107322012-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
10733
10734 * minibuffer.el (completion--sifn-requote): Fix last change.
10735 (minibuffer-local-must-match-filename-map):
10736 Move define-obsolete-variable-alias before its var.
10737
107382012-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
10739
10740 * emacs-lisp/pcase.el (pcase-let*, pcase-let): Fix edebug spec.
10741
10742 * minibuffer.el (completion--sifn-requote): Handle sifn's truncation
10743 behavior.
10744 (completion--string-equal-p): New function.
10745 (completion--twq-all): Use it to get better assertion failure data.
10746
10747 Only handle ".." and '..' quoting in shell-mode (bug#11466).
10748 * shell.el (shell--unquote&requote-argument, shell--unquote-argument)
10749 (shell--requote-argument): New functions.
10750 (shell-completion-vars): Use them.
10751 (shell--parse-pcomplete-arguments): Rename from
10752 shell-parse-pcomplete-arguments.
10753 * comint.el (comint-word): Obey comint-file-name-quote-list. Simplify.
10754 (comint--unquote&requote-argument): Don't handle ".." and '..' quoting.
10755 Obey comint-file-name-quote-list.
10756
10757 * emacs-lisp/smie.el (smie-indent--bolp-1): New function.
10758 (smie-indent-keyword): Use it.
10759
107602012-05-14 Stefan Merten <smerten@oekonux.de>
10761
10762 * textmodes/rst.el (rst-re-alist): Fix loading (bug#11462).
10763
107642012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
10765
10766 * net/rlogin.el (rlogin-mode-map): Fix last change.
10767
107682012-05-14 Jason L. Wright <jason.wright@inl.gov> (tiny change)
10769
10770 * mail/smtpmail.el (smtpmail-send-command): Send the command and
10771 the following \r\n using a single `process-send-string', since the
10772 Lotus SMTP server refuses to accept any commands if they are sent
10773 with two `process-send-string's (Bug#11444).
10774
107752012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
10776
10777 * shell.el (shell-parse-pcomplete-arguments):
10778 Obey pcomplete-arg-quote-list inside double-quoted args (Bug#11348).
10779
107802012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
10781
10782 * image-mode.el: Fit to width/height for rotated images (Bug#11431).
10783 (image-transform-scale, image-transform-right-angle-fudge): New vars.
10784 (image-transform-width, image-transform-fit-width): New functions.
10785 (image-transform-properties): Use them.
10786 (image-transform-check-size): New function.
10787 (image-toggle-display-image): Use it (for testing).
10788 (image-transform-set-rotation): Reduce angle mod 360.
10789 Delete obsolete comment.
10790
107912012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
10792
10793 * image-mode.el: Fix scaling (bug#11399).
10794 (image-transform-resize): Doc fix.
10795 (image-transform-properties): Default scale is 1 and height should
10796 be an integer.
10797
107982012-05-13 Johan Bockgård <bojohan@gnu.org>
10799
10800 * emacs-lisp/smie.el (smie-next-sexp): Use accessor `op-forw' rather
10801 than hard-coding `car', to fix misbehavior when moving forward.
10802
108032012-05-13 Chong Yidong <cyd@gnu.org>
10804
10805 * emacs-lisp/tabulated-list.el (tabulated-list-format)
10806 (tabulated-list-entries, tabulated-list-padding)
10807 (tabulated-list-sort-key): Make permanent-local.
10808
10809 * ebuff-menu.el: Adapt to Buffer Menu changes (Bug#11455).
10810 (electric-buffer-list): Put electric buffer menu
10811 command descriptions in this docstring, instead of the docstring
10812 of electric-buffer-menu-mode. Code cleanups.
10813 (electric-buffer-menu-mode): Use define-derived-mode. Rename from
10814 Electric-buffer-menu-mode.
10815 (electric-buffer-update-highlight): Minor code cleanup.
10816
108172012-05-13 Michael Albinus <michael.albinus@gmx.de>
10818
10819 * net/dbus.el (dbus-call-method): Restore events not from D-Bus.
10820 (Bug#11447)
10821
108222012-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
10823
10824 Move define-obsolete-variable-alias before the var's definition.
10825 * vc/log-edit.el (vc-comment-ring, vc-comment-ring-index):
10826 * tooltip.el (tooltip-hook):
10827 * textmodes/reftex-toc.el (reftex-toc-map):
10828 * textmodes/reftex-sel.el (reftex-select-label-map)
10829 (reftex-select-bib-map):
10830 * textmodes/reftex-index.el (reftex-index-map)
10831 (reftex-index-phrases-map):
10832 * speedbar.el (speedbar-syntax-table, speedbar-key-map):
10833 * progmodes/meta-mode.el (meta-mode-map):
10834 * novice.el (disabled-command-hook):
10835 * loadhist.el (unload-hook-features-list):
10836 * frame.el (blink-cursor):
10837 * files.el (find-file-not-found-hooks, write-file-hooks)
10838 (write-contents-hooks):
10839 * emulation/tpu-edt.el (GOLD-map):
10840 * emacs-lock.el (emacs-lock-from-exiting):
10841 * emacs-lisp/generic.el (generic-font-lock-defaults):
10842 * emacs-lisp/chart.el (chart-map):
10843 * dos-fns.el (register-name-alist):
10844 * dired-x.el (dired-omit-files-p):
10845 * desktop.el (desktop-enable):
10846 * cus-edit.el (custom-mode-hook):
10847 * buff-menu.el (buffer-menu-mode-hook):
10848 * bookmark.el (bookmark-read-annotation-text-func)
10849 (bookmark-exit-hooks):
10850 * allout.el (allout-mode-deactivate-hook)
10851 (allout-exposure-change-hook, allout-structure-added-hook)
10852 (allout-structure-deleted-hook, allout-structure-shifted-hook):
10853 * dirtrack.el (dirtrack-toggle, dirtrackp, dirtrack-debug-toggle)
10854 (dirtrack-debug): Move call to define-obsolete-variable-alias so it
10855 comes before the corresponding variable's definition.
10856
108572012-05-12 Chong Yidong <cyd@gnu.org>
10858
10859 * buff-menu.el (Buffer-menu-buffer+size-width): Doc fix (Bug#11454).
10860 (Buffer-menu-mouse-select): Restore function (Bug#11459).
10861 (Buffer-menu-mode-map): Bind it.
10862 (Buffer-menu--pretty-name): Add a mouse-face property.
10863
108642012-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
10865
10866 * progmodes/prolog.el: Use SMIE. Cleanup regexp setup.
10867 (prolog-upper-case-string, prolog-lower-case-string)
10868 (prolog-atom-char-regexp, prolog-atom-regexp): Initialize in defconst.
10869 (prolog-use-smie, prolog-smie-grammar): New vars.
10870 (prolog-smie-forward-token, prolog-smie-backward-token)
10871 (prolog-smie-rules): New funs.
10872 (prolog-comment-indent): Remove.
10873 (prolog-mode-variables): Use default comment indentation instead.
10874 Setup SMIE.
10875 (prolog-build-case-strings, prolog-set-atom-regexps): Remove.
10876 (prolog-mode): Don't call them any more.
10877 (prolog-electric-colon, prolog-electric-dash)
10878 (prolog-edit-menu-insert-move): Use indent-according-to-mode.
10879
10880 * dabbrev.el (dabbrev-expand): Make "no expansion found" a user-error.
10881
10882 * minibuffer.el (completion--twq-all): Again, allow case differences.
10883
10884 * term.el: Move keymap initialization code to be more idiomatic.
10885 (term-signals-menu, term-mode-map, term-raw-map, term-raw-escape-map)
10886 (term-terminal-menu): Move initialization into declaration.
10887 (term-escape-char): Let the user set it in her .emacs.
10888
10889 * progmodes/sh-script.el: Use post-self-insert-hook&electric-pair-mode.
10890 Provide SMIE-based indentation (not enabled by default yet).
10891 (sh-mode-map): Don't bind electric keys.
10892 Use electric-pair-mode instead of skeleton-pair.
10893 (sh-assignment-regexp): Fit within 80 columns.
10894 (sh-indent-supported): Specify actual shell name instead of boolean.
10895 (sh--maybe-here-document): New fun, from sh-maybe-here-document.
10896 (sh-maybe-here-document): Use it. Make obsolete.
10897 (sh-electric-here-document-mode) New minor mode.
10898 (sh-mode): Use it. Don't set sh-indent-supported-here here.
10899 (sh-smie-sh-grammar, sh-smie--sh-operators, sh-smie--sh-operators-re)
10900 (sh-smie--sh-operators-back-re, sh-indent-after-continuation)
10901 (sh-smie-rc-grammar, sh-use-smie): New vars.
10902 (sh-smie--keyword-p, sh-smie--newline-semi-p, sh-smie--sh-keyword-p)
10903 (sh-smie-sh-forward-token, sh-smie--looking-back-at-continuation-p)
10904 (sh-smie-sh-backward-token, sh-smie--continuation-start-indent)
10905 (sh-smie-sh-rules, sh-smie-rc-rules, sh-smie--sh-keyword-in-p)
10906 (sh-smie--rc-after-special-arg-p, sh-smie-rc-backward-token)
10907 (sh-smie-sh-rules, sh-smie--rc-newline-semi-p): New functions.
10908 (sh-set-shell): Use smie-setup if requested.
10909
10910 * term.el (term-set-escape-char): Properly set term-escape-char.
10911 See http://stackoverflow.com/questions/10524656.
10912
109132012-05-10 Chong Yidong <cyd@gnu.org>
10914
10915 * ffap.el (ffap-url-unwrap-local): Make it work right (Bug#9131).
10916 Use url-generic-parse-url, and handle host names and Windows
10917 filenames properly.
10918 (ffap-url-unwrap-remote): Use url-generic-parse-url.
10919 (ffap-url-unwrap-remote): Accept list values, specifying a list of
10920 URL schemes to work on.
10921 (ffap--toggle-read-only): New function.
10922 (ffap-read-only, ffap-read-only-other-window)
10923 (ffap-read-only-other-frame): Use it.
10924 (ffap-fixup-url): Don't check ffap-ftp-regexp, since it is not
10925 necessary for ffap-url-unwrap-remote.
10926
109272012-05-10 Dave Abrahams <dave@boostpro.com>
10928
10929 * cus-start.el (create-lockfiles): Add it.
10930
109312012-05-09 Chong Yidong <cyd@gnu.org>
10932
10933 * net/browse-url.el (browse-url-url-encode-chars): Use upper-case.
10934 (browse-url-encode-url): Encode spaces and quotes (Bug#6300).
10935
109362012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
10937
10938 * shell.el (shell-completion-vars): Fix last change (bug#11348).
10939
109402012-05-09 Chong Yidong <cyd@gnu.org>
10941
10942 * ansi-color.el (ansi-color-process-output): Check for validity of
10943 comint-last-output-start before using it. This avoids a bad
10944 interaction with gdb-mi's input/output buffer.
10945
109462012-05-09 Glenn Morris <rgm@gnu.org>
10947
10948 * files.el (dir-locals-read-from-file):
10949 Mention dir-locals in any error message.
10950
109512012-05-09 Chong Yidong <cyd@gnu.org>
10952
10953 * emacs-lisp/package.el (package-built-in-p): Handle the `emacs'
10954 package (Bug#11410).
10955
10956 * emacs-lisp/package.el (package-buffer-info): Avoid putting local
10957 variables into description.
10958
109592012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
10960
10961 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list like
10962 shell-delimiter-argument-list (bug#11348).
10963 (shell-parse-pcomplete-arguments): Obey pcomplete-arg-quote-list.
10964
109652012-05-09 Juanma Barranquero <lekktu@gmail.com>
10966
10967 * textmodes/rst.el: Silence byte-compiler warnings.
10968 (rst-re-alist, rst-reset-section-caches): Move around.
10969 (rst-re): Use `characterp', not `char-valid-p'.
10970 (font-lock-beg, font-lock-end): Declare.
10971
10972 * progmodes/idlw-shell.el (specs): Remove reference to deleted
10973 variable `idlwave-shell-activate-alt-keybindings' and simplify.
10974
10975 * eshell/esh-cmd.el (eshell-debug-command): Fix typo in previous change.
10976
109772012-05-08 Glenn Morris <rgm@gnu.org>
10978
10979 * files.el (auto-mode-alist): Treat ".make" like ".mk".
10980
109812012-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
10982
10983 * vc/log-edit.el: Add GNU coding standards highlighting.
10984 (log-edit-font-lock-gnu-style)
10985 (log-edit-font-lock-gnu-keywords): New vars.
10986 (log-edit-font-lock-keywords): New fun.
10987 (log-edit-mode): Don't fold case in font-lock.
10988 (log-edit-font-lock-keywords): Do not assume case-folding.
10989
10990 * imenu.el: Misc cleanup. Make docstrings out of comments.
10991 Use lexical-binding.
10992 (imenu--index-alist, imenu--last-menubar-index-alist)
10993 (imenu-menubar-modified-tick): Use defvar-local.
10994 (imenu--split-menu): Remove unused var.
10995 (imenu--cleanup-seen): Declare as global.
10996 (imenu--cleanup): Use dolist.
10997
10998 * subr.el (defvar-local): Add debug spec and doc-string position.
10999
110002012-05-08 Glenn Morris <rgm@gnu.org>
11001
11002 * language/burmese.el, language/cham.el, language/czech.el:
11003 * language/english.el, language/georgian.el, language/greek.el:
11004 * language/japanese.el, language/khmer.el, language/korean.el:
11005 * language/lao.el, language/misc-lang.el, language/romanian.el:
11006 * language/sinhala.el, language/slovak.el, language/tai-viet.el:
11007 * language/thai.el, language/utf-8-lang.el:
11008 Remove no-byte-compile setting.
11009
11010 * play/zone.el (zone-pgm-stress): Don't pollute kill-ring. (Bug#11388)
11011
110122012-05-08 Aaron S. Hawley <aaron.s.hawley@gmail.com>
11013
11014 * progmodes/make-mode.el (makefile-browse):
11015 Remove unnecessary interactive. (Bug#11324)
11016
110172012-05-07 Glenn Morris <rgm@gnu.org>
11018
11019 * forms-d2.el, forms-pass.el: Move to ../etc/forms directory.
11020
11021 * international/mule.el (find-auto-coding): Make "unibyte: t" obsolete.
11022
110232012-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
11024
11025 * loadup.el: Preload newcomment.el.
11026 * newcomment.el: Move autoload-only code to toplevel.
11027
11028 * buff-menu.el (list-buffers--refresh): Mark `size' as right-align.
11029 * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
11030 Handle new :right-align column property.
11031 (tabulated-list-print-col): Idem, plus use `display' text-property to
11032 try and preserve alignment for variable pitch fonts.
11033
110342012-05-07 Chong Yidong <cyd@gnu.org>
11035
11036 * emacs-lisp/tabulated-list.el: Add no-header-line alternative.
11037 (tabulated-list-use-header-line): New var.
11038 (tabulated-list-init-header): Use it.
11039 (tabulated-list-print-fake-header): New function.
11040 (tabulated-list-print): Use it.
11041 (tabulated-list-sort-button-map): Add non-header-line commands.
11042 (tabulated-list-init-header): Add column name property to basic
11043 labels as well.
11044 (tabulated-list-col-sort): Handle non-header-line button case.
11045 (tabulated-list--sort-by-column-name): Fix a corner case.
11046
11047 * buff-menu.el (list-buffers--refresh):
11048 Handle Buffer-menu-use-header-line.
11049
110502012-05-06 Chong Yidong <cyd@gnu.org>
11051
11052 * buff-menu.el: Convert to Tabulated List mode.
11053 (Buffer-menu-buffer+size-width): Make obsolete.
11054 (Buffer-menu-name-width, Buffer-menu-size-width): New variables.
11055 (Buffer-menu-mode-map): Inherit from tabulated-list-mode-map.
11056 (Buffer-menu-mode): Derive from tabulated-list-mode. Move command
11057 documentation into docstring of buffer-menu.
11058 (Buffer-menu-toggle-files-only): Add an informative message.
11059 (Buffer-menu-sort): Convert to alias for tabulated-list-sort.
11060 (Buffer-menu-buffer, Buffer-menu-beginning, Buffer-menu-mark)
11061 (Buffer-menu-unmark, Buffer-menu-backup-unmark)
11062 (Buffer-menu-delete, Buffer-menu-save, Buffer-menu-not-modified)
11063 (Buffer-menu-execute, Buffer-menu-select)
11064 (Buffer-menu-marked-buffers, Buffer-menu-toggle-read-only)
11065 (Buffer-menu-bury): Use Tabulated List machinery.
11066 (Buffer-menu-mouse-select, Buffer-menu-sort-by-column)
11067 (Buffer-menu-sort-button-map, Buffer-menu-make-sort-button):
11068 Delete.
11069 (list-buffers--refresh): New function.
11070 (list-buffers-noselect): Use it.
11071 (tabulated-list-entry-size->, Buffer-menu--pretty-name)
11072 (Buffer-menu--pretty-file-name): New helper functions.
11073
11074 * loadup.el: Preload tabulated-list.
11075
11076 * emacs-lisp/tabulated-list.el (tabulated-list-sort): Rename from
11077 tabulated-list-sort-column.
11078 (tabulated-list-init-header): Add the initial aligning space even
11079 if tabulated-list-padding is zero.
11080
110812012-05-06 Christopher Schmidt <christopher@ch.ristopher.com>
11082
11083 * emacs-lisp/cl-macs.el (cl-expr-contains): Handle cons cells
11084 whose cdr is not a cons cell correctly (bug#11038).
11085
110862012-05-06 Chong Yidong <cyd@gnu.org>
11087
11088 * emacs-lisp/tabulated-list.el (tabulated-list-format):
11089 Accept additional plist in column descriptors.
11090 (tabulated-list-init-header): Obey it.
11091 (tabulated-list-get-entry): New function.
11092 (tabulated-list-put-tag): Use it. Use string-width instead of
11093 length.
11094 (tabulated-list--column-number): New function.
11095 (tabulated-list-print): Use it.
11096 (tabulated-list-print-col): New function.
11097 Set `tabulated-list-column-name' property on each column's text.
11098 (tabulated-list-print-entry): Use it.
11099 (tabulated-list-delete-entry, tabulated-list-set-col):
11100 New functions.
11101 (tabulated-list-sort-column): New command (Bug#11337).
11102
11103 * buff-menu.el (list-buffers): Move C-x C-b binding from
11104 buff-menu.el to bindings.el.
11105
11106 * ebuff-menu.el (Electric-buffer-menu-undefined): Use the
11107 :advertised-binding feature.
11108
111092012-05-06 Troels Nielsen <bn.troels@gmail.com> (tiny change)
11110
11111 * progmodes/compile.el (compilation-internal-error-properties):
11112 Calculate start position correctly when end-col is set but
11113 end-line is not (Bug#11382).
11114
111152012-05-06 Wolfgang Jenkner <wjenkner@inode.at>
11116
11117 * man.el (Man-unindent): Use text-property-default-nonsticky to
11118 prevent untabify from inheriting face properties (Bug#11408).
11119
111202012-05-05 Stefan Merten <smerten@oekonux.de>
11121
11122 * textmodes/rst.el: Major merge with upstream development up to
11123 Docutils SVN r7399 / rst.el V1.2.1.
11124
11125 Clarify maintainership and authors.
11126
11127 (rst-extract-version, rst-cvs-header, rst-cvs-rev)
11128 (rst-cvs-timestamp, rst-svn-rev, rst-svn-timestamp)
11129 (rst-official-version, rst-official-cvs-rev, rst-version)
11130 (rst-package-emacs-version-alist): New functions and variables
11131 for version information.
11132
11133 (rst-bullets, rst-uri-schemes, rst-adornment-chars)
11134 (rst-max-inline-length, rst-re-alist-def, rst-re-alist)
11135 (rst-mode-syntax-table, rst-mode): New and corrected functions
11136 and variables representing reStructuredText features.
11137
11138 (rst-re): New function for reStructuredText regexes. Use in
11139 many places.
11140
11141 (rst-deprecated-keys, rst-call-deprecated, rst-define-key)
11142 (rst-mode-map): Rebind keys.
11143
11144 (rst-mode-lazy, rst-font-lock-keywords)
11145 (rst-font-lock-extend-region)
11146 (rst-font-lock-extend-region-internal)
11147 (rst-font-lock-extend-region-extend)
11148 (rst-font-lock-find-unindented-line-limit)
11149 (rst-font-lock-find-unindented-line-match)
11150 (rst-adornment-level, rst-font-lock-adornment-level)
11151 (rst-font-lock-adornment-match)
11152 (rst-font-lock-handle-adornment-pre-match-form)
11153 (rst-font-lock-handle-adornment-matcher): Major revision of
11154 font-locking. Integrate with other code. Use `jit-lock-mode'.
11155
11156 (rst-preferred-adornments, rst-adjust-hook)
11157 (rst-new-adornment-down, rst-preferred-bullets)
11158 (rst-preferred-bullets, rst-indent, rst-indent-width)
11159 (rst-indent-field, rst-indent-literal-normal)
11160 (rst-indent-literal-minimized, rst-indent-comment): Change,
11161 extend and improve customization.
11162
11163 (rst-line-homogeneous-p, rst-line-homogeneous-nodent-p)
11164 (rst-normalize-cursor-position, rst-get-decoration)
11165 (rst-straighten-deco-spacing, rst-re-bullets, rst-re-items)
11166 (rst-rstrip, rst-toc-insert-find-delete-contents)
11167 (rst-shift-fill-region, rst-compute-bullet-tabs)
11168 (rst-debug-print-tabs, rst-debug-mark-found)
11169 (rst-shift-region-guts, rst-shift-region-right)
11170 (rst-shift-region-left, rst-use-char-classes)
11171 (rst-font-lock-keywords-function)
11172 (rst-font-lock-indentation-point)
11173 (rst-font-lock-find-unindented-line-begin)
11174 (rst-font-lock-find-unindented-line-end)
11175 (rst-font-lock-find-unindented-line)
11176 (rst-font-lock-adornment-point, rst-font-lock-level)
11177 (rst-adornment-level-alist): Remove functions and variables.
11178
11179 (rst-compare-adornments, rst-get-adornment-match)
11180 (rst-suggest-new-adornment, rst-get-adornments-around)
11181 (rst-adornment-complete-p, rst-get-next-adornment)
11182 (rst-adjust-adornment, rst-display-adornments-hierarchy)
11183 (rst-straighten-adornments): Standardize function names to
11184 use "adornment" instead of "decoration". Correct callers.
11185 Similar standardizing in many places.
11186
11187 (rst-update-section, rst-adjust, rst-promote-region)
11188 (rst-enumerate-region, rst-bullet-list-region)
11189 (rst-repeat-last-character): Correct use of `interactive'.
11190
11191 (rst-classify-adornment, rst-find-all-adornments)
11192 (rst-get-hierarchy, rst-adjust-adornment, rst-toc-update)
11193 (rst-find-leftmost-column, rst-repeat-last-character):
11194 Refactor functions.
11195
11196 (rst-find-title-line, rst-reset-section-caches)
11197 (rst-get-adornments-around, rst-adjust-adornment-work)
11198 (rst-arabic-to-roman, rst-roman-to-arabic)
11199 (rst-insert-list-pos, rst-insert-list-new-item)
11200 (rst-insert-list-continue, rst-insert-list, rst-forward-line):
11201 New functions.
11202
11203 (rst-all-sections, rst-section-hierarchy)
11204 (rst-arabic-to-roman, rst-initial-enums, rst-initial-items):
11205 New variables.
11206
11207 (rst-toc-return-wincfg, rst-toc-quit-window): Use window
11208 configuration instead of only buffer. Change where necessary.
11209
11210 (rst-line-tabs, rst-compute-tabs, rst-indent-line)
11211 (rst-shift-region, rst-adaptive-fill): New functions for
11212 indentation and filling.
11213
11214 (rst-comment-line-break, rst-comment-indent)
11215 (rst-comment-insert-comment, rst-comment-region)
11216 (rst-uncomment-region): New functions for handling comments.
11217
11218 (rst-compile): Quote shell arguments.
11219
11220 (rst-compile-pdf-preview, rst-compile-slides-preview):
11221 Delete temporary files after use.
11222
112232012-05-05 Glenn Morris <rgm@gnu.org>
11224
11225 * calendar/cal-html.el: Optionally include holidays in the output.
11226 Suggested by Ed Reingold <reingold@emr.cs.iit.edu>.
11227 (cal-html-holidays): New option.
11228 (cal-html-css-default): Add holiday entry.
11229 (holiday-in-range): Autoload it.
11230 (cal-html-htmlify-entry): Add optional class argument.
11231 (cal-html-htmlify-list): Add optional holidays argument.
11232 (cal-html-insert-agenda-days): Include holidays in the output.
11233 (cal-html-one-month): Maybe include holidays.
11234
11235 * calendar/holidays.el (holiday-in-range):
11236 Move here from cal-tex-list-holidays.
11237 * calendar/cal-tex.el (cal-tex-list-holidays):
11238 Make it an obsolete alias for holiday-in-range. Update all callers.
11239
112402012-05-05 Chong Yidong <cyd@gnu.org>
11241
11242 * select.el (xselect--encode-string): Always use utf-8 for TEXT on
11243 Nextstep.
11244
112452012-05-05 Ransom Williams <auvergnerw@gmail.com> (tiny change)
11246
11247 * files.el (file-auto-mode-skip): New var.
11248 (set-auto-mode-1): Use it.
11249
112502012-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
11251
11252 * repeat.el: Use lexical-binding.
11253 (repeat-last-self-insert, repeat-num-input-keys-at-self-insert)
11254 (repeat-undo-count): Remove.
11255 (repeat):
11256 * progmodes/octave-mod.el (octave-abbrev-start):
11257 * progmodes/f90.el (f90-abbrev-start):
11258 * face-remap.el (text-scale-adjust):
11259 * kmacro.el (kmacro-call-macro): Use set-temporary-overlay-map.
11260
11261 * emacs-lisp/pcase.el (pcase--let*): New function.
11262 (pcase--expand, pcase-codegen, pcase--q1): Use it to reduce nesting
11263 a bit more.
11264 (pcase--split-pred): Be more clever about ruling out overlap between
11265 a predicate and some constant pattern.
11266 (pcase--q1): Use `null' instead of (eq foo nil).
11267
11268 * subr.el (setq-local, defvar-local): New macros.
11269 (kbd): Redefine as an alias.
11270 (with-selected-window): Leave unrelated frames alone.
11271 (set-temporary-overlay-map): New function.
11272
112732012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
11274
11275 * subr.el (user-error): New function.
11276 * window.el (switch-to-buffer):
11277 * vc/smerge-mode.el (smerge-resolve-function, smerge-resolve)
11278 (smerge-match-conflict):
11279 * simple.el (previous-matching-history-element)
11280 (next-matching-history-element, goto-history-element, undo-more)
11281 (undo-start):
11282 * progmodes/etags.el (visit-tags-table-buffer, find-tag-tag)
11283 (find-tag-noselect, find-tag-in-order, etags-goto-tag-location)
11284 (next-file, tags-loop-scan, list-tags, complete-tag):
11285 * progmodes/compile.el (compilation-loop):
11286 * mouse.el (mouse-minibuffer-check):
11287 * man.el (Man-bgproc-sentinel, Man-goto-page):
11288 * info.el (Info-find-node-2, Info-extract-pointer, Info-history-back)
11289 (Info-history-forward, Info-follow-reference, Info-menu)
11290 (Info-extract-menu-item, Info-extract-menu-counting)
11291 (Info-forward-node, Info-backward-node, Info-next-menu-item)
11292 (Info-last-menu-item, Info-next-preorder, Info-last-preorder)
11293 (Info-next-reference, Info-prev-reference, Info-index)
11294 (Info-index-next, Info-follow-nearest-node)
11295 (Info-copy-current-node-name):
11296 * imenu.el (imenu--make-index-alist)
11297 (imenu-default-create-index-function, imenu-add-to-menubar):
11298 * files.el (basic-save-buffer, recover-file):
11299 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
11300 * emacs-lisp/checkdoc.el (checkdoc-continue, checkdoc-comments)
11301 (checkdoc-message-text, checkdoc-defun):
11302 * dabbrev.el (dabbrev-completion, dabbrev--abbrev-at-point):
11303 * cus-edit.el (customize-changed-options, customize-rogue)
11304 (customize-saved, custom-variable-set, custom-variable-mark-to-save)
11305 (custom-variable-mark-to-reset-standard)
11306 (custom-variable-reset-backup, custom-face-mark-to-reset-standard)
11307 (custom-file):
11308 * completion.el (check-completion-length):
11309 * comint.el (comint-search-arg)
11310 (comint-previous-matching-input-string-position)
11311 (comint-previous-matching-input)
11312 (comint-replace-by-expanded-history-before-point, comint-send-input)
11313 (comint-copy-old-input, comint-backward-matching-input)
11314 (comint-goto-process-mark, comint-set-process-mark):
11315 * calendar/calendar.el (calendar-cursor-to-date): Use it.
11316 * bindings.el (debug-ignored-errors): Remove regexps, add `user-error'.
11317
113182012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
11319
11320 * dabbrev.el (dabbrev--ignore-case-p): New function.
11321 (dabbrev-completion, dabbrev-expand, dabbrev--substitute-expansion):
11322 Use it.
11323
11324 * files.el (automount-dir-prefix): Mark as obsolete.
11325
113262012-05-04 Glenn Morris <rgm@gnu.org>
11327
11328 * patcomp.el, play/bruce.el: Move to obsolete/.
11329
113302012-05-04 Paul Eggert <eggert@cs.ucla.edu>
11331
11332 Fix minor Y10k bugs.
11333 * arc-mode.el (archive-unixdate):
11334 * autoinsert.el (auto-insert-alist):
11335 * calc/calc-forms.el (math-this-year):
11336 * emacs-lisp/copyright.el (copyright-current-year)
11337 (copyright-update-year, copyright):
11338 * tar-mode.el (tar-clip-time-string):
11339 * time.el (display-time-update):
11340 Don't assume years have 4 digits.
11341
113422012-05-04 Chong Yidong <cyd@gnu.org>
11343
11344 * dos-w32.el (file-name-buffer-file-type-alist)
11345 (direct-print-region-use-command-dot-com):
11346 * ffap.el (ffap-menu-regexp):
11347 * find-file.el (ff-special-constructs):
11348 * follow.el (follow-debug):
11349 * forms.el (forms--debug):
11350 * iswitchb.el (iswitchb-all-frames):
11351 * ido.el (ido-all-frames):
11352 * emacs-lisp/timer.el (timer-max-repeats):
11353 * mail/feedmail.el (feedmail-mail-send-hook)
11354 (feedmail-mail-send-hook-queued):
11355 * mail/footnote.el (footnote-signature-separator):
11356 * mail/mailabbrev.el (mail-alias-separator-string)
11357 (mail-abbrev-mode-regexp):
11358 * mail/rmail.el (rmail-speedbar-match-folder-regexp):
11359 * progmodes/idlwave.el (idlwave-libinfo-file)
11360 (idlwave-default-completion-case-is-down)
11361 (idlwave-library-routines): Convert defvars to defcustoms.
11362
11363 * mail/rmail.el (rmail-decode-mime-charset):
11364 * progmodes/idlw-shell.el (idlwave-shell-print-expression-function)
11365 (idlwave-shell-fix-inserted-breaks)
11366 (idlwave-shell-activate-alt-keybindings)
11367 (idlwave-shell-use-breakpoint-glyph):
11368 * facemenu.el (facemenu-unlisted-faces): Delete obsolete vars.
11369
113702012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
11371
11372 * minibuffer.el (completion--twq-all): Beware completion-ignore-case.
11373
113742012-05-03 Wilson Snyder <wsnyder@wsnyder.org>
11375
11376 * progmodes/verilog-mode.el (font-lock-keywords):
11377 Fix mis-highligting auto. Reported by Craig Barner.
11378 (verilog-auto, verilog-auto-undef): Add AUTOUNDEF to remove
11379 defines from global name space. Reported by Dan Dever.
11380 (verilog-auto-reset, verilog-auto-reset-widths)
11381 (verilog-auto-tieoff): Support using unbased numbers for
11382 AUTORESET and AUTOTIEOFF.
11383 (verilog-submit-bug-report): Update variable list.
11384 (verilog-read-auto-params): Fix AUTOINPUT regexps containing
11385 parenthesis from not matching. Reported by Michael Rytting.
11386 (verilog-auto-template-lint): Fix hash error when linting modules
11387 with no used templates.
11388 (verilog-warn, verilog-warn-error)
11389 (verilog-warn-fatal): When non-interactive report multiple
11390 warnings before exiting. Suggested by Brad Dobbie.
11391 (verilog-auto-template-lint, verilog-auto-template-warn-unused)
11392 (verilog-read-auto-template): Add `verilog-auto-template-warn-unused'
11393 to report unused template errors. Reported by Brad Dobbie.
11394 (verilog-read-decls): Fix AUTOWIRE etc on supply0, supply1 type
11395 nets, bug438. Reported by Vns Blore.
11396 (verilog-auto-inout-module, verilog-auto-reg)
11397 (verilog-read-decls, verilog-read-sub-decls-sig)
11398 (verilog-signals-edit-wire-reg, verilog-signals-with):
11399 Fix passing of Verilog data types in ANSI input/output ports
11400 such as "output logic" into the AUTOs. Special case "wire" and
11401 "reg" for backwards compatibility presuming Verilog 2001.
11402 (verilog-auto-ascii-enum): Add "auto enum" as alias.
11403 (verilog-preprocess): Fix replication of preprocess output.
11404 Reported by Brad Dobbie.
11405 (verilog-auto-inst-interfaced-ports):
11406 Create verilog-auto-inst-interfaced-ports, bug429.
11407 Reported by Julian Gorfajn.
11408 (verilog-after-save-font-hook)
11409 (verilog-before-save-font-hook): New variable.
11410 (verilog-modi-cache-results, verilog-save-font-mod-hooked)
11411 (verilog-save-font-mods): Wrap disabling fontification, reported
11412 by David Rogoff.
11413 (verilog-do-indent, verilog-pretty-declarations-auto)
11414 (verilog-sk-def-reg): Fix obeying `verilog-auto-lineup', bug305.
11415 Reported by Pierre-David Pfister.
11416 (verilog-set-auto-endcomments): Fix endtask auto comments outside
11417 of class declarations, bug292. Reported by Kevin Heilman.
11418 (verilog-read-decls): Fix 'parameter type' not appearing in
11419 AUTOINSTPARAM, bug340. Reported by Jonathan Greenlaw.
11420 (verilog-auto-logic): Fix when AUTOLOGIC present to properly do
11421 AUTOINPUTs, bug411. Reported by Jonathan Greenlaw.
11422 (verilog-read-auto-lisp): Avoid syntax-ppss warning on AUTOLISP.
11423 Reported by David Kravitz.
11424
114252012-05-03 Michael McNamara <mac@mail.brushroad.com>
11426
11427 * progmodes/verilog-mode.el (verilog-pretty-expr): Don't line up
11428 assignment with tests in ifs and for loops.
11429 (verilog-extended-complete-re, verilog-complete-reg): Change so
11430 that DPI inport functions don't look like fuction declarations.
11431 (verilog-pretty-expr): Don't line up assignment
11432 operations to the test and increment in if and for loops
11433 (verilog-extended-complete-re, verilog-complete-reg): Change so
11434 that DPI inport functions don't look like fuction declarations.
11435
114362012-05-03 Kenichi Handa <handa@m17n.org>
11437
11438 * mail/rmailmm.el (rmail-show-mime): Catch an error caused by text
11439 decoding, and show a warning message without signaling an error
11440 (Bug#11282).
11441
114422012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
11443
11444 * emacs-lisp/bytecomp.el
11445 (byte-compile-file-form-custom-declare-variable): Compile all elements,
11446 since cconv.el might have introduced :fun-body, internal-make-closure,
11447 and friends for bytecomp to handle (bug#11391).
11448 * custom.el (defcustom): Avoid ((λ ..) ..).
11449
114502012-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
11451
11452 * subr.el (read-passwd): Better clean after ourselves (bug#11392).
11453
114542012-05-02 Juanma Barranquero <lekktu@gmail.com>
11455
11456 * notifications.el (dbus-debug):
11457 * term/linux.el (gpm-mouse-enable):
11458 * term/screen.el (xterm-register-default-colors): Declare.
11459
114602012-05-02 Chong Yidong <cyd@gnu.org>
11461
11462 * cus-start.el (gc-cons-percentage, exec-suffixes)
11463 (dos-display-scancodes, dos-hyper-key, dos-super-key)
11464 (dos-keypad-mode, debug-on-signal, vertical-centering-font-regexp)
11465 (make-cursor-line-fully-visible, void-text-area-pointer)
11466 (font-list-limit): Add customization data.
11467
11468 * allout.el (allout-exposure-change-functions)
11469 (allout-structure-added-functions)
11470 (allout-structure-deleted-functions)
11471 (allout-structure-shifted-functions): Rename abnormal hooks from
11472 *-hook, and convert to defcustoms.
11473 (allout-after-copy-or-kill-hook, allout-post-undo-hook):
11474 Convert to defcustoms.
11475 (allout-mode-hook, allout-mode-deactivate-hook): Doc fix.
11476
11477 * allout-widgets.el: Hook callers changed.
11478
114792012-05-02 Eli Zaretskii <eliz@gnu.org>
11480
11481 * mail/rmail.el (rmail-yank-current-message): Use the encoding of
11482 the yanked message in preference to the default value of
11483 buffer-file-coding-system.
11484
114852012-05-02 Martin Rudalics <rudalics@gmx.at>
11486
11487 * window.el (display-buffer--action-function-custom-type):
11488 Fix entry.
11489
114902012-05-02 Alan Mackenzie <acm@muc.de>
11491
11492 * progmodes/cc-defs.el (c-version): Update to 5.32.3.
11493
114942012-05-01 Glenn Morris <rgm@gnu.org>
11495
11496 * cus-start.el (suggest-key-bindings): Remove, now it is in Lisp.
11497
11498 * eshell/esh-cmd.el (eshell-debug-command): Doc fix. Add :set.
11499
11500 * cus-edit.el (custom-variable-documentation): Simplify with format.
11501
115022012-05-01 Aaron S. Hawley <aaron.s.hawley@gmail.com>
11503 Stefan Monnier <monnier@iro.umontreal.ca>
11504
11505 * simple.el (suggest-key-bindings, execute-extended-command):
11506 Move from keyboard.c.
11507
115082012-05-01 Chong Yidong <cyd@gnu.org>
11509
11510 * follow.el: Eliminate advice.
11511 (set-process-filter, process-filter, sit-for): Advice deleted.
11512 (follow-mode-off-hook): Obsolete hook removed.
11513 (follow-avoid-tail-recenter-p, follow-process-filter-alist):
11514 Vars deleted.
11515 (follow-auto): Use a :set function.
11516 (follow-mode): Rewritten. Don't advise process filters.
11517 (follow-switch-to-current-buffer-all, follow-scroll-up)
11518 (follow-scroll-down): Assume follow-mode is bound.
11519 (follow-comint-scroll-to-bottom)
11520 (follow-align-compilation-windows): New functions.
11521 (follow--window-sorter): New function.
11522 (follow-all-followers): Use it to explicitly sort windows by their
11523 positions; don't make assumptions about next-window order.
11524 (follow-windows-start-end, follow-delete-other-windows-and-split)
11525 (follow-calc-win-start): Doc fix.
11526 (follow-windows-aligned-p, follow-select-if-visible): Don't call
11527 vertical-motion unnecessarily.
11528 (follow-adjust-window): New function.
11529 (follow-post-command-hook): Use it.
11530 (follow-call-set-process-filter, follow-call-process-filter)
11531 (follow-intercept-process-output, follow-tidy-process-filter-alist)
11532 (follow-stop-intercept-process-output, follow-generic-filter):
11533 Functions deleted.
11534 (follow-scroll-bar-toolkit-scroll, follow-scroll-bar-drag)
11535 (follow-scroll-bar-scroll-up, follow-scroll-bar-scroll-down):
11536 New functions, replacing advice on scroll-bar-* commands.
11537 (follow-mwheel-scroll): New function (Bug#4112).
11538
11539 * comint.el (comint-adjust-point): New function.
11540 (comint-postoutput-scroll-to-bottom): Use it.
11541 Call follow-comint-scroll-to-bottom for Follow mode buffers.
11542
115432012-05-01 Glenn Morris <rgm@gnu.org>
11544
11545 * term/AT386.el, term/apollo.el, term/bobcat.el, term/cygwin.el:
11546 * term/iris-ansi.el, term/linux.el, term/lk201.el, term/news.el:
11547 * term/screen.el, term/vt102.el, term/vt125.el, term/vt200.el:
11548 * term/vt201.el, term/vt220.el, term/vt240.el, term/vt300.el:
11549 * term/vt320.el, term/vt400.el, term/vt420.el, term/wyse50.el:
11550 Remove no-byte-compile setting.
11551
115522012-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
11553
11554 * minibuffer.el (completion-table-with-quoting): Fix compatibility
11555 all-completions code to not return a number in the last cdr.
11556
115572012-04-30 Leo Liu <sdl.web@gmail.com>
11558
11559 * ibuf-ext.el (ibuffer-diff-buffer-with-file-1): Avoid buffer
11560 read-only error.
11561
115622012-04-29 Chong Yidong <cyd@gnu.org>
11563
11564 * follow.el (follow-calc-win-end): Rewrite to handle partial
11565 screen lines correctly (Bug#8390).
11566 (follow-avoid-tail-recenter): Minor cleanup.
11567
115682012-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
11569
11570 Avoid the obsolete `assoc' package.
11571 * speedbar.el (speedbar-refresh): Avoid adelete.
11572 (speedbar-file-lists): Simplify and avoid aput.
11573 * man.el (Man--sections, Man--refpages): New vars, replacing
11574 Man-sections-alist and Man-refpages-alist.
11575 (Man-build-section-alist, Man-build-references-alist):
11576 Use them; avoid aput.
11577 (Man--last-section, Man--last-refpage): New vars.
11578 (Man-follow-manual-reference): Use them.
11579 Use the `default' arg of completing-read.
11580 (Man-goto-section): Idem. Move prompt to the `interactive' spec.
11581
115822012-04-27 Chong Yidong <cyd@gnu.org>
11583
11584 * vc/diff.el (diff-sentinel): Go to bob (Bug#10259).
11585
11586 * startup.el (x-apply-session-resources): New function.
11587
11588 * term/ns-win.el (ns-initialize-window-system):
11589 * term/w32-win.el (w32-initialize-window-system):
11590 * term/x-win.el (x-initialize-window-system): Use it to properly
11591 set menu-bar-mode and other vars from X resources, even if the
11592 initial frame is not a window-system frame (Bug#2299).
11593
11594 * subr.el (read-key): Avoid running filter function when setting
11595 up temporary tool bar entries (Bug#9922).
11596
115972012-04-27 Andreas Schwab <schwab@linux-m68k.org>
11598
11599 * vc/vc-git.el (vc-git-state): Fix regexp matching diff output.
11600 (Bug#11344)
11601
116022012-04-27 Chong Yidong <cyd@gnu.org>
11603
11604 * select.el (xselect--encode-string): New function, split from
11605 xselect-convert-to-string.
11606 (xselect-convert-to-string): Use it.
11607 (xselect-convert-to-filename, xselect-convert-to-os)
11608 (xselect-convert-to-host, xselect-convert-to-user): Ensure that
11609 returned strings are properly encoded (Bug#11315).
11610
116112012-04-27 Chong Yidong <cyd@gnu.org>
11612
11613 * simple.el (delete-active-region): Move to killing custom group.
11614
116152012-04-27 Andreas Schwab <schwab@linux-m68k.org>
11616
11617 * progmodes/which-func.el (which-func-current): Quote %
11618 characters for mode-line processing.
11619
116202012-04-27 Chong Yidong <cyd@gnu.org>
11621
11622 * xml.el (xml-parse-region, xml-parse-tag): Avoid errors due to
11623 reaching eob (Bug#11286).
11624
116252012-04-27 Eli Zaretskii <eliz@gnu.org>
11626
11627 * progmodes/gdb-mi.el (gdb-control-level): New variable.
11628 (gdb): Make it buffer-local and init to zero.
11629 (gdb-control-commands-regexp): New variable.
11630 (gdb-send): Don't wrap in "-interpreter-exec console" if
11631 gdb-control-level is positive. Increment gdb-control-level
11632 whenever the command matches gdb-control-commands-regexp, and
11633 decrement it each time the command is "end". (Bug#11279)
11634
116352012-04-27 Martin Rudalics <rudalics@gmx.at>
11636
11637 * window.el (adjust-window-trailing-edge, enlarge-window)
11638 (shrink-window, window-resize):
11639 * mouse.el (mouse-drag-line): Fix resizing of minibuffer
11640 windows (Bug#11276).
11641
116422012-04-27 Chong Yidong <cyd@gnu.org>
11643
11644 * progmodes/pascal.el (pascal--extra-indent): Rename from ind, to
11645 fix "missing prefix" warning. All callers changed.
11646
116472012-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
11648
11649 * emacs-lisp/assoc.el: Move to obsolete/.
11650
116512012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
11652
11653 * emacs-lisp/assoc.el (aget): Fix dynamic-scoping issue (bug#11352).
11654
11655 * term/ns-win.el (ns-define-service):
11656 * progmodes/pascal.el (pascal-goto-defun):
11657 * progmodes/js.el (js--read-tab):
11658 * progmodes/etags.el (tags-lazy-completion-table):
11659 * emacs-lisp/syntax.el (syntax-propertize-via-font-lock):
11660 * emacs-lisp/ewoc.el (ewoc--wrap):
11661 * emacs-lisp/assoc.el (aput, adelete, amake):
11662 * doc-view.el (doc-view-convert-current-doc):
11663 * vc/diff.el (diff-no-select): Replace lexical-let by lexical-binding.
11664
116652012-04-26 Chong Yidong <cyd@gnu.org>
11666
11667 * image.el (image-type-from-buffer): Only return supported image
11668 type (Bug#9045).
11669
11670 * vc/diff-mode.el (diff-beginning-of-hunk): Return a meaningful
11671 value, for symmetry with diff-end-of-hunk.
11672 (diff-split-hunk, diff-find-source-location)
11673 (diff-ignore-whitespace-hunk, diff-refine-hunk): Use it.
11674 (diff-bounds-of-hunk, diff-bounds-of-file): New functions.
11675 (diff-restrict-view, diff-hunk-kill, diff-file-kill): Use them to
11676 compute the relevant hunk or file properly (Bug#6005).
11677 (diff-file-junk-re): Add bzr's "modified file" tag (Bug#6041).
11678
116792012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
11680
11681 * vc/vc-mtn.el:
11682 * vc/vc-hg.el:
11683 * vc/vc-git.el:
11684 * vc/vc-dir.el:
11685 * vc/vc-cvs.el:
11686 * vc/vc-bzr.el:
11687 * vc/vc-arch.el:
11688 * vc/vc.el: Replace lexical-let by lexical-binding.
11689 * minibuffer.el (lazy-completion-table): Avoid ((λ ...) ...).
11690 * emacs-lisp/cl-macs.el (lexical-let): Fix use in lexical-binding.
11691 * emacs-lisp/cconv.el (cconv-analyse-form): Warn use of ((λ ...) ...).
11692
116932012-04-26 Chong Yidong <cyd@gnu.org>
11694
11695 * vc/diff-mode.el (diff-undo): New command (Bug#5302).
11696 (diff-mode-shared-map): Bind it to / and [remap undo].
11697
11698 * vc/ediff-wind.el (ediff-setup-windows-default): New function.
11699 (ediff-window-setup-function): Use it as the default, to set up
11700 windows based on whether the current frame is graphical (Bug#2138).
11701 (ediff-choose-window-setup-function-automatically): Make obsolete.
11702
11703 * vc/ediff-init.el: Always define ediff-pixel-width/height.
11704
117052012-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
11706
11707 * ffap.el: Remove old code for obsolete package.
11708 (ffap-complete-as-file-p): Remove.
11709
11710 Use completion-table-with-quoting for comint and pcomplete.
11711 * comint.el (comint--unquote&requote-argument)
11712 (comint--unquote-argument, comint--requote-argument): New functions.
11713 (comint--unquote&expand-filename, comint-unquote-filename): Obsolete.
11714 (comint-quote-filename): Use regexp-opt-charset.
11715 (comint--common-suffix, comint--common-quoted-suffix)
11716 (comint--table-subvert): Remove.
11717 (comint-unquote-function, comint-requote-function): New vars.
11718 (comint--complete-file-name-data): Use them with
11719 completion-table-with-quoting.
11720 * pcmpl-unix.el (pcomplete/scp): Use completion-table-subvert.
11721 * pcomplete.el (pcomplete-arg-quote-list)
11722 (pcomplete-quote-arg-hook, pcomplete-quote-argument): Obsolete.
11723 (pcomplete-unquote-argument-function): Default to non-nil.
11724 (pcomplete-unquote-argument): Simplify.
11725 (pcomplete--common-quoted-suffix): Remove.
11726 (pcomplete-requote-argument-function): New var.
11727 (pcomplete--common-suffix): New function.
11728 (pcomplete-completions-at-point): Use completion-table-with-quoting
11729 and completion-table-subvert.
11730
11731 * minibuffer.el: Use completion-table-with-quoting for read-file-name.
11732 (minibuffer--double-dollars): Preserve properties.
11733 (completion--sifn-requote): New function.
11734 (completion--file-name-table): Rewrite using it and c-t-with-quoting.
11735
11736 * minibuffer.el: Add support for completion of quoted/escaped data.
11737 (completion-table-with-quoting, completion-table-subvert): New funs.
11738 (completion--twq-try, completion--twq-all): New functions.
11739 (completion--nth-completion): New function.
11740 (completion-try-completion, completion-all-completions): Use it.
11741
117422012-04-25 Leo Liu <sdl.web@gmail.com>
11743
11744 * progmodes/python.el (python-pdbtrack-get-source-buffer):
11745 Use compilation-message if available to find real filename.
11746
117472012-04-25 Chong Yidong <cyd@gnu.org>
11748
11749 * vc/diff-mode.el (diff-setup-whitespace): New function.
11750 (diff-mode): Use it.
11751
11752 * vc/diff.el (diff-sentinel):
11753 * vc/vc.el (vc-diff-finish): Call diff-setup-whitespace to assign
11754 Whitespace mode variables based on diff style (Bug#8612).
11755
117562012-04-25 Leo Liu <sdl.web@gmail.com>
11757
11758 * progmodes/python.el (python-send-region): Add suffix .py to the
11759 temp file.
11760
11761 * files.el (auto-mode-alist): Use javascript-mode instead.
11762
117632012-04-25 Alex Harsanyi <AlexHarsanyi@gmail.com>
11764
11765 Sync with soap-client repository. Support SOAP simpleType (Bug#10331).
11766
11767 * net/soap-client.el (soap-resolve-references-for-sequence-type)
11768 (soap-resolve-references-for-array-type): Hack to prevent self
11769 references, see Bug#9.
11770 (soap-parse-envelope): Report the contents of the 'detail' node
11771 when receiving a fault reply.
11772 (soap-parse-envelope): Report the contents of the entire 'detail' node.
11773
11774 * net/soap-inspect.el (soap-sample-value-for-simple-type)
11775 (soap-inspect-simple-type): New function.
11776
11777 * net/soap-client.el (soap-simple-type): New struct.
11778 (soap-default-xsd-types, soap-default-soapenc-types)
11779 (soap-decode-basic-type, soap-encode-basic-type):
11780 support unsignedInt and double basic types.
11781 (soap-resolve-references-for-simple-type)
11782 (soap-parse-simple-type, soap-encode-simple-type): New function.
11783 (soap-parse-schema): Parse xsd:simpleType declarations.
11784
11785 * net/soap-client.el (soap-default-xsd-types)
11786 (soap-default-soapenc-types): Add integer, byte and anyURI types.
11787 (soap-parse-complex-type-complex-content): Use `soap-wk2l' to find
11788 the local name of "soapenc:Array".
11789 (soap-decode-basic-type, soap-encode-basic-type): Support encoding
11790 decoding integer, byte and anyURI xsd types.
11791
117922012-04-25 Chong Yidong <cyd@gnu.org>
11793
11794 * cus-edit.el (custom-buffer-create-internal): Update header text.
11795
117962012-04-25 Eli Zaretskii <eliz@gnu.org>
11797
11798 * progmodes/gdb-mi.el (gdb-init-1): Condition Windows-specific
11799 settings on 'system-type', not on 'window-system'. On MS-Windows,
11800 set interactive-mode on in GDB.
11801
118022012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
11803
11804 * progmodes/ruby-mode.el: Simplify last change, and cleanup code.
11805 (ruby-syntax-propertize-regexp): Remove.
11806 (ruby-syntax-propertize-function): Split regexp into chunks.
11807 Match following code directly.
11808
118092012-04-24 Dmitry Gutov <dgutov@yandex.ru>
11810
11811 * progmodes/ruby-mode.el: Handle Cucumber defs (bug#6286).
11812 (ruby-syntax-propertize-regexp): New function.
11813 (ruby-syntax-propertize-function): Use it to handle regexp not preceded
11814 by a special keyword.
11815
11816 * progmodes/ruby-mode.el: Handle general delimited literals (bug#6286).
11817 (ruby-syntax-general-delimiters-goto-beg)
11818 (ruby-syntax-propertize-general-delimiters): New functions.
11819 (ruby-syntax-propertize-function): Use them to handle GDL.
11820 (ruby-font-lock-keywords): Move old handling of GDL...
11821 (ruby-font-lock-syntactic-keywords): .. to here.
11822 (ruby-calculate-indent): Adjust indentation for GDL.
11823
118242012-04-24 Michael Albinus <michael.albinus@gmx.de>
11825
11826 * notifications.el (top): Remove unneeded declarations.
11827 (notifications-specification-version): Change to "1.2".
11828 (notifications-interface, notifications-notify-method)
11829 (notifications-close-notification-method): Fix docstring.
11830 (notifications-get-capabilities-method): New defconst.
11831 (notifications-notify): Add :action-items, :resident and
11832 :transient hints. Change "image_data" to "image-data" and
11833 "image_path" to "image-path".
11834 (notifications-get-capabilities): New defun.
11835
118362012-04-24 Leo Liu <sdl.web@gmail.com>
11837
11838 * progmodes/python.el: Move hideshow setup to the end.
11839
118402012-04-24 Martin Rudalics <rudalics@gmx.at>
11841
11842 * window.el (handle-select-window): Clear echo area since this is
11843 no more done by read_char (Bug#11304).
11844
118452012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
11846
11847 * ibuffer.el (ibuffer-mode-map): Bind `/ m' to filter-used-mode
11848 and `/ M' to filter-derived-mode.
11849 * ibuf-ext.el (ibuffer-list-buffer-modes): Simplify; avoid add-to-list.
11850 (ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
11851 (ibuffer-mark-by-mode): Use default rather than initial-input.
11852 (ibuffer-filter-by-derived-mode): Autoload and require-match.
11853
118542012-04-24 Ivan Andrus <darthandrus@gmail.com> (tiny change)
11855
11856 * ibuf-ext.el (ibuffer-list-buffer-modes): Add `include-parents' arg.
11857 (ibuffer-filter-by-derived-mode): New filter.
11858 * ibuffer.el (ibuffer-mode-map): Bind to `/ w'.
11859
118602012-04-23 Andreas Politz <politza@fh-trier.de>
11861
11862 * subr.el (accept-change-group): Fix arg usage (Bug#6095).
11863
118642012-04-23 Chong Yidong <cyd@gnu.org>
11865
11866 * cus-edit.el (customize-apropos, customize-apropos-options):
11867 Disable matching of non-option variables (Bug#11176).
11868 (customize-option, customize-option-other-window)
11869 (customize-changed-options): Doc fix.
11870 (customize-apropos-options, customize-apropos-faces)
11871 (customize-apropos-groups): Use apropos-read-pattern (Bug#11124).
11872
11873 * apropos.el (apropos-read-pattern): Make prompt less cryptic.
11874 Fix word list splitting (Bug#11132).
11875 (apropos-symbol, apropos-keybinding, apropos-label)
11876 (apropos-property, apropos-function-button)
11877 (apropos-variable-button, apropos-misc-button): New faces.
11878 (apropos-symbol-face, apropos-keybinding-face)
11879 (apropos-label-face, apropos-property-face, apropos-match-face):
11880 Variables removed (Bug#8396).
11881 (apropos-library-button, apropos-format-plist, apropos-print)
11882 (apropos-print-doc, apropos-describe-plist): Callers changed.
11883
118842012-04-23 Michael Albinus <michael.albinus@gmx.de>
11885
11886 * net/xesam.el (xesam-mode-map): Use let-bound map in
11887 initialization. (Bug#11292)
11888
118892012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
11890
11891 Preserve ispell session localwords when switching back to
11892 original buffer.
11893
11894 * textmodes/ispell.el (ispell-buffer-session-localwords):
11895 New buffer-local variable to hold buffer session localwords.
11896 (ispell-kill-ispell): Add option 'clear to delete session
11897 localwords.
11898 (ispell-command-loop, ispell-change-dictionary)
11899 (ispell-buffer-local-words): Preserve session localwords when
11900 needed.
11901
11902 * textmodes/flyspell.el (flyspell-process-localwords)
11903 (flyspell-do-correct): Preserve session localwords when needed.
11904
119052012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
11906
11907 * textmodes/ispell.el (ispell-insert-word) Remove unneeded function
11908 using obsolete `translation-table-for-input'.
11909 (ispell-word, ispell-process-line, ispell-complete-word):
11910 Use plain `insert' instead of removed `ispell-insert-word'.
11911
119122012-04-22 Chong Yidong <cyd@gnu.org>
11913
11914 * cus-edit.el (custom-variable-menu)
11915 (custom-variable-reset-saved, custom-face-menu)
11916 (custom-face-reset-saved): If there is no saved value, make the
11917 "reset-saved" operation bring back the default (Bug#9509).
11918 (custom-face-state): Properly detect themed faces.
11919
11920 * faces.el (face-spec-set): Stop supporting deprecated form of
11921 third arg.
11922
119232012-04-22 Michael Albinus <michael.albinus@gmx.de>
11924
11925 Move functions from C to Lisp. Make non-blocking method calls
11926 the default. Implement further D-Bus standard interfaces.
11927
11928 * net/dbus.el (dbus-message-internal): Declare function.
11929 Remove unneeded function declarations.
11930 (defvar dbus-message-type-invalid, dbus-message-type-method-call)
11931 (dbus-message-type-method-return, dbus-message-type-error)
11932 (dbus-message-type-signal): Declare variables. Remove local
11933 definitions.
11934 (dbus-interface-dbus, dbus-interface-peer)
11935 (dbus-interface-introspectable, dbus-interface-properties)
11936 (dbus-path-emacs, dbus-interface-emacs, dbus-return-values-table):
11937 Adapt docstring.
11938 (dbus-interface-objectmanager): New defconst.
11939 (dbus-call-method, dbus-call-method-asynchronously)
11940 (dbus-send-signal, dbus-method-return-internal)
11941 (dbus-method-error-internal, dbus-register-service)
11942 (dbus-register-signal, dbus-register-method): New defuns, moved
11943 from dbusbind.c
11944 (dbus-call-method-handler, dbus-setenv)
11945 (dbus-get-all-managed-objects, dbus-managed-objects-handler):
11946 New defuns.
11947 (dbus-call-method-non-blocking): Make it an obsolete function.
11948 (dbus-unregister-object, dbus-unregister-service)
11949 (dbus-handle-event, dbus-register-property)
11950 (dbus-property-handler): Obey the new structure of
11951 `bus-registered-objects'.
11952 (dbus-introspect): Use `dbus-call-method'. Use a timeout.
11953 (dbus-get-property, dbus-set-property, dbus-get-all-properties):
11954 Use `dbus-call-method'.
11955
119562012-04-22 Chong Yidong <cyd@gnu.org>
11957
11958 * cus-edit.el (custom-commands, custom-reset-menu)
11959 (Custom-reset-standard): Tweak labels.
11960 (custom-reset-button-menu): Change default to t.
11961 (custom-buffer-create-internal): For the custom-reset-button-menu
11962 case, put the revert button first.
11963 (custom-group-subtitle): New face.
11964 (custom-group-value-create): Align docstring to a specific column.
11965
11966 * wid-edit.el (widget-documentation-link-add): Don't handle
11967 indentation in this function.
11968 (widget-documentation-string-indent-to): New function.
11969 (widget-documentation-string-value-create): Use it.
11970
11971 * autorevert.el (auto-revert):
11972 * epg-config.el (epg):
11973 * ibuffer.el (ibuffer):
11974 * mpc.el (mpc):
11975 * ses.el (ses):
11976 * eshell/eshell.el (eshell):
11977 * net/ange-ftp.el (ange-ftp):
11978 * progmodes/ebnf2ps.el (postscript):
11979 * progmodes/flymake.el (flymake):
11980 * progmodes/prolog.el (prolog):
11981 * progmodes/verilog-mode.el (verilog-mode):
11982 * progmodes/which-func.el (which-func):
11983 * term/xterm.el (xterm):
11984 * textmodes/picture.el (picture):
11985 * textmodes/tildify.el (tildify):
11986 * vc/ediff.el (ediff): Tweak defgroups to improve presentation in
11987 customization buffers.
11988
119892012-04-22 Alan Mackenzie <acm@muc.de>
11990
11991 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
11992 Adding a ) can hide the resulting (..) from searches. Fix it.
11993 Bound the backward search to the position of the existing (.
11994
119952012-04-21 Juanma Barranquero <lekktu@gmail.com>
11996
11997 * progmodes/verilog-mode.el (verilog-mode): Check whether
11998 which-func-modes is t before adding verilog-mode.
11999 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
12000
120012012-04-21 Leo Liu <sdl.web@gmail.com>
12002
12003 * net/rcirc.el (rcirc): Avoid error when process-contact returns t.
12004
120052012-04-21 Michael Vehrs <Michael.Burschik@gmx.de>
12006
12007 * woman.el: Add support for "T{ T}" tbl syntax, and fix the
12008 filling of the last column of a table (Bug#5635).
12009 (woman-find-next-control-line): New arg, specifying an additional
12010 regexp component for the control line.
12011 (woman2-roff-buffer): Use it.
12012 (woman-break-table): New function.
12013 (woman2-TS): Use it.
12014
120152012-04-21 Chong Yidong <cyd@gnu.org>
12016
12017 * woman.el (woman-set-buffer-display-table, woman-decode-region)
12018 (woman-horizontal-escapes, woman-negative-vertical-space)
12019 (woman-tab-to-tab-stop, woman2-fc, woman2-TS)
12020 (WoMan-warn-ignored): Use ?\s instead of ?\ .
12021
120222012-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
12023
12024 * minibuffer.el (completion-file-name-table): Complete user names.
12025
120262012-04-20 Leo Liu <sdl.web@gmail.com>
12027
12028 * font-lock.el (lisp-font-lock-keywords-2): Add pcase, pcase-let
12029 and pcase-let*.
12030
120312012-04-20 Chong Yidong <cyd@gnu.org>
12032
12033 * server.el (server-execute): Respect initial-buffer-choice if it
12034 is a string and there are no files to open (Bug#2825).
12035 (server-create-window-system-frame, server-create-tty-frame):
12036 Don't switch buffers here.
12037 (server-process-filter): Only try to open a window system frame if
12038 compiled with graphical support (Bug#8314).
12039
120402012-04-20 Dan Nicolaescu <dann@gnu.org>
12041
12042 * battery.el (battery-echo-area-format): Display remaining time
12043 for sysfs backend too (Bug#11269).
12044 (battery-linux-sysfs): Fix conditional for the charge.
12045
120462012-04-20 Chong Yidong <cyd@gnu.org>
12047
12048 * progmodes/gdb-mi.el (gdb): Revert previous change.
12049 (gdb-inferior-io--init-proc): New function.
12050 (gdb-init-1): Use it.
12051 (gdb-inferior-io-sentinel): New sentinel for the gdb-inferior pty,
12052 responsible for allocating a new pty and hooking it to gdb when
12053 the old pty gets an EIO due to process exit.
12054 (gdb-delchar-or-quit): New command. Bind it in gdb-mi buffers.
12055 (gdb-tooltip-print): Don't use obsolete tooltip-use-echo-area.
12056 (gdb-inferior-io--maybe-delete-pty): Move into gdb-reset.
12057
120582012-04-20 Eli Zaretskii <eliz@gnu.org>
12059
12060 * window.el (window-min-size, window-sizable, window-min-delta)
12061 (window-max-delta, window--resizable, window-resizable)
12062 (window-total-size, window-full-height-p, window-full-width-p)
12063 (window-in-direction, window--resize-mini-window, window-resize)
12064 (window--resize-child-windows-normal)
12065 (window--resize-child-windows, window--resize-siblings)
12066 (window--resize-this-window, adjust-window-trailing-edge)
12067 (enlarge-window, shrink-window): Doc fixes.
12068
120692012-04-20 Chong Yidong <cyd@gnu.org>
12070
12071 * progmodes/gdb-mi.el (gdb-inferior-io--maybe-delete-pty):
12072 New function to call delete-process on the gdb-inferior buffer's pty.
12073 (gdb-reset): Use it, instead of relying on kill-buffer to kill the
12074 pty process (Bug#11273).
12075 (gdb-update): New arg to suppress talking to the gdb process.
12076 (gdb-done-or-error): Use it.
12077 (gdb-stopped-functions): Rename from gdb-stopped-hooks.
12078 (gdb): Call gdb-inferior-io--maybe-delete-pty as a workaround for
12079 sentinel not being called.
12080
12081 * comint.el (make-comint-in-buffer, comint-exec): Doc fix.
12082
12083 * progmodes/grep.el (grep, rgrep): Doc fix (Bug#11268).
12084
120852012-04-20 Glenn Morris <rgm@gnu.org>
12086
12087 * net/network-stream.el (open-network-stream): Doc fix.
12088
120892012-04-20 Chong Yidong <cyd@gnu.org>
12090
12091 * emacs-lisp/tabulated-list.el (tabulated-list-print): Fix typos.
12092
120932012-04-20 Alan Mackenzie <acm@muc.de>
12094
12095 Ensure searching for keywords is case sensitive.
12096
12097 * progmodes/cc-cmds.el (c-electric-brace, c-electric-lt-gt)
12098 (c-electric-paren, c-beginning-of-defun, c-end-of-defun)
12099 (c-defun-name, c-mark-function, c-cpp-define-name)
12100 (c-comment-indent, c-scan-conditionals, c-indent-defun)
12101 (c-context-line-break): Bind case-fold-search to nil.
12102
12103 * progmodes/cc-mode.el (c-font-lock-fontify-region):
12104 Bind case-fold-search to nil.
12105
121062012-04-20 Chong Yidong <cyd@gnu.org>
12107
12108 * mail/sendmail.el (mail-bury): Call return action with the right
12109 Rmail buffer (Bug#11242).
12110
12111 * server.el (server-process-filter): Handle corner case where both
12112 tty and nowait options are present (Bug#11102).
12113
121142012-04-20 Eli Zaretskii <eliz@gnu.org>
12115
12116 * version.el (emacs-bzr-version, emacs-bzr-get-version): Doc fixes.
12117 (top level): Put into the executable the ident-style '$Id:' tag on
12118 windows-nt as well.
12119
121202012-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
12121
12122 * electric.el (electric-indent-post-self-insert-function): Check that
12123 electric-indent-mode is enabled in current buffer.
12124
121252012-04-19 Juanma Barranquero <lekktu@gmail.com>
12126
12127 * imenu.el (imenu-progress-message): Restore; it is "used" in
12128 erc/erc-imenu.el and net/snmp-mode.el.
12129
121302012-04-19 Juanma Barranquero <lekktu@gmail.com>
12131
12132 * avoid.el (mouse-avoidance-mode): Mark unused arg.
12133 (mouse-avoidance-nudge-mouse): Remove unused binding.
12134
12135 * bs.el (bs-toggle-readonly): Call `toggle-read-only' interactively.
12136
12137 * descr-text.el (describe-char):
12138 * progmodes/python.el (python-describe-symbol):
12139 Don't call `toggle-read-only', set `buffer-read-only'.
12140
12141 * imenu.el (imenu-default-goto-function): Mark unused args.
12142 (imenu-progress-message): Remove obsolete macro; all callers changed.
12143
12144 * subr.el (keymap-canonicalize): Remove unused binding.
12145 (read-passwd): Mark unused arg.
12146
12147 * tutorial.el (tutorial--display-changes): Remove unused binding.
12148 (tutorial--save-tutorial-to): Remove unused variable.
12149
12150 * emacs-lisp/package.el (define-package, package-menu-mark-delete)
12151 (package-menu-mark-install, package-menu-mark-unmark): Mark unused args.
12152 (package-generate-autoloads, package-menu--generate)
12153 (package-menu--find-upgrades): Remove unused bindings.
12154
12155 * emulation/cua-rect.el (cua-restrict-regexp-rectangle)
12156 (cua-restrict-prefix-rectangle): Doc fixes. Remove unused bindings.
12157 (cua--mouse-ignore, cua--delete-rectangle, cua--extract-rectangle)
12158 (cua--indent-rectangle, cua-open-rectangle, cua-close-rectangle)
12159 (cua-blank-rectangle, cua-string-rectangle, cua-replace-in-rectangle)
12160 (cua-incr-rectangle, cua-sequence-rectangle, cua--convert-rectangle-as)
12161 (cua--rectangle-aux-replace, cua--left-fill-rectangle)
12162 (cua-scroll-rectangle-up, cua-scroll-rectangle-down)
12163 (cua-delete-char-rectangle): Mark unused args.
12164 (cua-align-rectangle): Remove unused binding.
12165
12166 * mail/rmail.el (compilation--message->loc)
12167 (epa--find-coding-system-for-mime-charset): Declare.
12168
12169 * net/dbus.el (dbus-register-service): Declare.
12170 (dbus-name-owner-changed-handler): Remove unused binding.
12171
12172 * nxml/nxml-mode.el (nxml-electric-slash, nxml-in-mixed-content-p)
12173 (nxml-compute-indent-from-matching-start-tag): Remove unused variables.
12174 (nxml-scan-backward-within): Mark unused arg.
12175 (nxml-dynamic-markup-word): Remove unused binding.
12176
12177 * mouse.el (mouse-menu-major-mode-map):
12178 * emacs-lisp/authors.el (authors-scan-change-log)
12179 (authors-add-to-author-list):
12180 * emacs-lisp/avl-tree.el (avl-tree--enter-balance):
12181 * emacs-lisp/smie.el (smie-auto-fill):
12182 * mail/sendmail.el (mail-bury):
12183 * mail/unrmail.el (unrmail):
12184 * net/tls.el (open-tls-stream):
12185 * textmodes/picture.el (picture-mouse-set-point):
12186 Remove unused bindings.
12187
121882012-04-19 Michael Albinus <michael.albinus@gmx.de>
12189
12190 * net/tramp.el (tramp-action-password): Let-bind
12191 `enable-recursive-minibuffers' to t.
12192
121932012-04-18 Sam Steingold <sds@gnu.org>
12194
12195 * progmodes/gud.el (gud-key-prefix): Use :type 'key-sequence
12196 instead of 'string to accommodate values like [f11].
12197 Always use `vconcat' instead of `concat' on it, like in `gud-def'.
12198 * progmodes/gdb-mi.el: Likewise.
12199
122002012-04-18 Leo Liu <sdl.web@gmail.com>
12201
12202 * abbrev.el (edit-abbrevs): Move point to the abbrev table of
12203 current buffer.
12204 (prepare-abbrev-list-buffer): Enter edit-abbrevs-mode only if
12205 LOCAL is nil.
12206
122072012-04-18 Chong Yidong <cyd@gnu.org>
12208
12209 * simple.el (line-move): Use forward-line if in batch mode
12210 (Bug#11053).
12211
122122012-04-18 Christopher Schmidt <christopher@ch.ristopher.com>
12213
12214 * files.el (after-find-file): Do not try to add a final newline if
12215 the buffer is read-only (Bug#11156).
12216
122172012-04-17 Richard Stallman <rms@gnu.org>
12218
12219 * mail/rmail.el (rmail-start-mail):
12220 Pass (rmail-mail-return...) for the return-action.
12221 Pass (rmail-yank-current-message...) for the yank-action.
12222 (rmail-yank-current-message): New function.
12223 (rmail-mail): Pass the Rmail buffer, not view buffer, for replybuffer.
12224 (rmail-reply): Likewise.
12225 (rmail-forward): Pass the Rmail buffer, not nil, for replybuffer.
12226
12227 * mail/sendmail.el (mail-bury): Choose the first rmail-mode
12228 buffer, not the last. Reject temp buffers. Use the rmail-mode
12229 buffer, not newbuf.
12230
122312012-04-17 Juanma Barranquero <lekktu@gmail.com>
12232
12233 * server.el (server-ensure-safe-dir): Simplify.
12234
122352012-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
12236
12237 * emacs-lisp/smie.el: Provide smarter auto-filling.
12238 (smie-auto-fill): New function.
12239 (smie-setup): Use it.
12240
12241 * newcomment.el (comment-choose-indent): Obey comment-inline-offset.
12242
122432012-04-17 Philipp Haselwarter <philipp.haselwarter@gmx.de> (tiny change)
12244
12245 * newcomment.el (comment-inline-offset): New custom var (bug#11090).
12246 (comment-indent): Use it.
12247
122482012-04-17 Vincent Belaïche <vincentb1@users.sourceforge.net>
12249
12250 * ses.el: The overall change is to add cell renaming, that is
12251 setting fancy names for cell symbols other than name matching
12252 "\\`[A-Z]+[0-9]+\\'" regexp .
12253 (ses-localvars): Add ses--renamed-cell-symb-list.
12254 (ses-create-cell-variable): New defun.
12255 (ses-destroy-cell-variable-range): Respect ses--numrows, ses--numcols.
12256 (ses-relocate-formula): Relocate formulas only for cells the
12257 symbols of which are not renamed, i.e. symbols whose names do not
12258 match regexp "\\`[A-Z]+[0-9]+\\'".
12259 (ses-relocate-all): Relocate values only for cells the symbols of
12260 which are not renamed.
12261 (ses-load): Create cells variables as the (ses-cell ...) are read,
12262 in order to check row col consistency with cell symbol name only
12263 for cells that are not renamed.
12264 (ses-replace-name-in-formula): New defun.
12265 (ses-rename-cell): New defun.
12266
122672012-04-17 Peter Oliver <bzr@mavit.org.uk> (tiny change)
12268
12269 * progmodes/perl-mode.el (perl-indent-parens-as-block):
12270 New option (bug#11118).
12271 (perl-calculate-indent): Respect it.
12272
122732012-04-17 Glenn Morris <rgm@gnu.org>
12274
12275 * dired-aux.el (dired-mark-read-string): Doc fix.
12276
122772012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
12278
12279 * dired-aux.el (dired-mark-read-string): Offer optional completion.
12280 (dired-do-chxxx): Complete chown, chgrp over users, groups. (Bug#7900)
12281
122822012-04-17 Glenn Morris <rgm@gnu.org>
12283
12284 * mouse.el (mouse-drag-track):
12285 * speedbar.el (speedbar-frame-mode):
12286 Use auto-hscroll-mode rather than the alias automatic-hscrolling.
12287
122882012-04-16 Leo Liu <sdl.web@gmail.com>
12289
12290 * progmodes/python.el: Trivial cleanup.
12291
122922012-04-16 Glenn Morris <rgm@gnu.org>
12293
12294 * vc/vc.el (vc-string-prefix-p):
12295 * vc/pcvs-util.el (cvs-string-prefix-p):
12296 * textmodes/tex-mode.el (latex-string-prefix-p, tex-string-prefix-p):
12297 * mpc.el (mpc-string-prefix-p):
12298 Make all of these into obsolete aliases for string-prefix-p.
12299 Update callers.
12300 * vc/pcvs.el, vc/vc-dispatcher.el, vc/vc-dir.el: Update callers.
12301
12302 * textmodes/two-column.el: Move custom options to the start.
12303 (frame-width): Remove compat definition.
12304 (2C-associate-buffer, 2C-dissociate):
12305 Use with-current-buffer rather than save-excursion.
12306 (2C-dissociate): Force a mode-line update.
12307 (2C-autoscroll): Use ignore-errors.
12308
12309 * emacs-lisp/eieio-opt.el (describe-class, describe-generic):
12310 Autoload trivia.
12311
12312 * emacs-lisp/cl-extra.el (*random-state*):
12313 Remove unnecessary declaration.
12314
12315 * calendar/cal-tex.el (cal-tex-end-document): Trivial clarification.
12316
12317 * play/cookie1.el (cookie-snarf):
12318 Give an explicit error if input file cannot be read.
12319
12320 * play/yow.el (yow-file): Use expand-file-name rather than concat.
12321
12322 * progmodes/perl-mode.el (c-macro-expand):
12323 Remove unnecessary autoload (it is in loaddefs.el).
12324
12325 * textmodes/picture.el (picture-desired-column)
12326 (picture-update-desired-column): Convert comments to doc-strings.
12327 (picture-substitute): Remove function.
12328 (picture-mode-map): Initialize in the defvar.
12329
12330 * woman.el: Remove eval-after-load for tar-mode.
12331 * tar-mode.el (tar-mode-map): Add woman binding and menu entry.
12332 (woman-tar-extract-file): Autoload it.
12333
12334 * frame.el (automatic-hscrolling): Make this alias obsolete.
12335
123362012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
12337
12338 * textmodes/ispell.el (ispell-set-spellchecker-params): Post-process
12339 `ispell-dictionary-alist' to use [:alpha:] and utf-8 if possible.
12340 (ispell-dictionary-base-alist): Revert to original XEmacs
12341 friendly version for default. [:alpha:] will be added in
12342 `ispell-set-spellchecker-params' if needed.
12343
123442012-04-16 Chong Yidong <cyd@gnu.org>
12345
12346 * image.el (imagemagick--file-regexp): New variable.
12347 (imagemagick-register-types): Use it.
12348 (imagemagick-types-inhibit): Add :set function. Allow new value
12349 of t to inhibit all types.
12350
12351 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Avoid cl macros,
12352 so we can preload it.
12353
12354 * loadup.el (fboundp): Preload regexp-opt, needed by
12355 imagemagick-register-types.
12356
123572012-04-15 Chong Yidong <cyd@gnu.org>
12358
12359 * frame.el (scrolling): Remove nearly unused customization group.
12360
12361 * scroll-all.el (scroll-all-mode): Move to windows group.
12362
123632012-04-15 Chong Yidong <cyd@gnu.org>
12364
12365 * bindings.el (goto-map): Bind goto-char to M-g c (Bug#11240).
12366
123672012-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
12368
12369 Avoid the use of ((lambda ...) ...) in lexical-binding code.
12370 * emacs-lisp/easy-mmode.el (define-minor-mode): Use funcall (bug#11241).
12371
123722012-04-15 Glenn Morris <rgm@gnu.org>
12373
12374 * simple.el (process-file-side-effects): Doc fix.
12375
123762012-04-15 Glenn Morris <rgm@gnu.org>
12377
12378 * international/mule-cmds.el (set-language-environment): Doc fix.
12379
123802012-04-14 Juanma Barranquero <lekktu@gmail.com>
12381
12382 * server.el (server-auth-key, server-generate-key): Doc fixes.
12383 (server-get-auth-key): Doc fix. Use `string-match-p'.
12384 (server-start): Reflow docstring.
12385
123862012-04-14 Lars Ingebrigtsen <larsi@gnus.org>
12387
12388 * server.el (server-generate-key): `called-interactively-p'
12389 requires a parameter.
12390
123912012-04-14 Michal Nazarewicz <mina86@mina86.com>
12392
12393 * server.el (server-auth-key): New variable.
12394 (server-generate-key, server-get-auth-key): New function.
12395 (server-start): Use the new variable and functions to allow
12396 setting a permanent server key (bug#9423).
12397
123982012-04-14 Leo Liu <sdl.web@gmail.com>
12399
12400 * vc/diff-mode.el (diff-file-prev/next): Fix typo.
12401
124022012-04-14 Paul Eggert <eggert@cs.ucla.edu>
12403
12404 Spelling fixes.
12405 * hexl.el (hexl-rulerize): Rename from hexl-rulerise, since
12406 Emacs uses American spelling.
12407
124082012-04-14 Juanma Barranquero <lekktu@gmail.com>
12409
12410 * emacs-lock.el (emacs-lock-locked-buffer-functions): New hook.
12411 (emacs-lock--exit-locked-buffer): Return the locked buffer. Doc fix.
12412 (emacs-lock--kill-emacs-hook, emacs-lock--kill-emacs-query-functions)
12413 (emacs-lock--kill-buffer-query-functions): Run new hook. (Bug#11017)
12414
124152012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
12416
12417 * progmodes/which-func.el (which-func-modes): Change default.
12418
124192012-04-14 Kim F. Storm <storm@cua.dk>
12420
12421 * emulation/cua-base.el (cua-exchange-point-and-mark): Just call
12422 exchange-point-and-mark if cua-enable-cua-keys is nil (Bug#11191).
12423
124242012-04-14 Chong Yidong <cyd@gnu.org>
12425
12426 * custom.el (custom-theme-set-variables): Doc fix.
12427
124282012-04-14 Glenn Morris <rgm@gnu.org>
12429
12430 * international/mule.el (set-auto-coding-for-load): Doc fix.
12431
124322012-04-14 Alan Mackenzie <acm@muc.de>
12433
12434 * progmodes/cc-menus.el (cc-imenu-objc-generic-expression): Make
12435 imenu work again for Objective C Mode. Correct the *-index values,
12436 these having been disturbed by a previous change in 2011-08.
12437
12438 * progmodes/cc-engine.el (c-before-change-check-<>-operators):
12439 Correct two search limits.
12440
124412012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
12442
12443 * startup.el (command-line-1): Inhibit splash from daemon (bug#10996).
12444
124452012-04-14 Andreas Schwab <schwab@linux-m68k.org>
12446
12447 * international/characters.el: Fix sorting.
12448
124492012-04-14 Eli Zaretskii <eliz@gnu.org>
12450
12451 * international/characters.el: Add more missing Latin case pairs.
12452
124532012-04-14 Glenn Morris <rgm@gnu.org>
12454
12455 * files.el (dir-locals-set-class-variables): Doc fix.
12456
124572012-04-14 Eli Zaretskii <eliz@gnu.org>
12458
12459 * international/characters.el: Add set-case-syntax-pair call for
12460 LATIN CAPITAL LETTER Y WITH DIAERESIS RET and its lower-case
12461 counterpart. (Bug#11209)
12462
12463 * simple.el (shell-command-on-region): Doc fix. (Bug#11208)
12464
124652012-04-14 Glenn Morris <rgm@gnu.org>
12466
12467 * calendar/holidays.el (calendar-check-holidays): Doc fix.
12468
124692012-04-14 Eli Zaretskii <eliz@gnu.org>
12470
12471 * textmodes/ispell.el (ispell-dictionary-base-alist):
12472 Add data for Hebrew.
12473
124742012-04-14 Chong Yidong <cyd@gnu.org>
12475
12476 * net/rcirc.el (rcirc-cmd-quit):
12477 Revert 2012-03-18 change (Bug#11192).
12478
124792012-04-14 Glenn Morris <rgm@gnu.org>
12480
12481 * pcmpl-rpm.el (pcomplete/rpm): Handle -qf.
12482
124832012-04-14 Eli Zaretskii <eliz@gnu.org>
12484
12485 * minibuffer.el (completion-in-region-mode-map):
12486 Bind completion-help-at-point to M-? rather than ?. (Bug#11182)
12487
124882012-04-13 Vivek Dasmohapatra <vivek@etla.org>
12489
12490 * hexl.el (hexl-insert-char): Make display sizes other than 16 work.
12491
124922012-04-13 Masatake YAMATO <yamato@redhat.com>
12493
12494 * minibuffer.el (minibuffer-local-filename-syntax): New variable
12495 to allow `C-M-f' and `C-M-b' to move to the nearest path
12496 separator (bug#9511).
12497
124982012-04-13 Lars Ingebrigtsen <larsi@gnus.org>
12499
12500 * avoid.el: Require cl when compiling. And also move the
12501 `provide' to the end.
12502
125032012-04-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
12504
12505 * avoid.el (mouse-avoidance-banish-position): New variable.
12506 (mouse-avoidance-banish-destination): Use it (bug#10165).
12507
125082012-04-13 Leo Liu <sdl.web@gmail.com>
12509
12510 * progmodes/which-func.el (which-func-modes): Add objc-mode.
12511
125122012-04-13 Ken Brown <kbrown@cornell.edu>
12513
12514 * net/browse-url.el (browse-url-file-url): Remove Cygwin hack;
12515 this is no longer needed now that cygstart understands file:// URLs.
12516 (browse-url-filename-alist): For the same reason, don't modify
12517 file:// URLs on Cygwin.
12518
125192012-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
12520
12521 * emulation/cua-base.el (cua--pre-command-handler-1): Don't activate
12522 the region on shift if the binding is already shifted (bug#11221).
12523
125242012-04-12 Glenn Morris <rgm@gnu.org>
12525
12526 * mail/mailpost.el: Move to obsolete/.
12527
125282012-04-12 Drew Adams <drew.adams@oracle.com>
12529
12530 * imenu.el (imenu--generic-function): Ignore invisible definitions
12531 (bug#10123).
12532
125332012-04-12 Vivek Dasmohapatra <vivek@etla.org>
12534
12535 * hexl.el (hexl-bits): New variable.
12536 (hexl-options): Mention the variable in the doc string.
12537 (hexl-rulerise, hexl-line-displen): New functions.
12538 (hexl-mode): Mention the new variable.
12539 (hexl-mode, hexl-current-address, hexl-current-address):
12540 Use the displen.
12541 (hexl-ascii-start-column): New function.
12542 (hexl-address-to-marker, hexl-beginning-of-line, hexl-options)
12543 (hexl-insert-char, hexl-mode-ruler): Use the displen (bug#4941).
12544
125452012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
12546
12547 * textmodes/flyspell.el (flyspell-large-region): For hunspell, use
12548 '("-i" ENCODING), in 2 separate command-line arguments, to specify
12549 the encoding, as expected by hunspell.
12550
125512012-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
12552
12553 * battery.el (battery--linux-sysfs-regexp): New const.
12554 (battery-status-function): Use it. Remove yeeloong special case.
12555 (battery-yeeloong-sysfs): Remove.
12556 (battery-echo-area-format): Remove yeeloong special case.
12557
125582012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
12559
12560 * imenu.el (imenu-add-to-menubar): `current-local-map' can be nil.
12561 Reported by Noah Friedman.
12562
12563 * subr.el (read-passwd): Use read-string.
12564
125652012-04-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
12566
12567 * vcursor.el (vcursor-move): Increase the priority of the overlay
12568 (bug#9663).
12569
125702012-04-11 Deniz Dogan <deniz.a.m.dogan@gmail.com>
12571
12572 * net/rcirc.el (rcirc-kill-channel-buffers): New variable.
12573 (rcirc-kill-buffer-hook): Use it to kill channel buffers (bug#5128).
12574
125752012-04-11 William Stevenson <yhvh2000@gmail.com>
12576
12577 * textmodes/artist.el (artist-mode): Convert artist-mode to use
12578 define-minor-mode (bug#10760).
12579
125802012-04-11 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
12581
12582 * progmodes/grep.el (rgrep): Tweak the find command line so
12583 that directories matching `grep-find-ignored-files' won't be
12584 pruned (bug#10351).
12585
125862012-04-11 Chong Yidong <cyd@gnu.org>
12587
12588 * startup.el (command-line): Remove support for long-obsolete
12589 variable font-lock-face-attributes.
12590
125912012-04-11 Glenn Morris <rgm@gnu.org>
12592
12593 * vc/vc-bzr.el (vc-bzr-status): Avoid condition-case-unless-debug.
12594
125952012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
12596
12597 * window.el (window--state-get-1): Obey window-point-insertion-type.
12598
125992012-04-11 Lennart Borgman <lennart.borgman@gmail.com>
12600
12601 * emacs-lisp/lisp.el (narrow-to-defun): `beginning-of-defun' goes
12602 to previous function when point is on the first character of a
12603 function. Take care of that in `narrow-to-defun' (bug#6157).
12604
126052012-04-11 Glenn Morris <rgm@gnu.org>
12606
12607 * vc/vc-bzr.el (vc-bzr-status): Handle all errors,
12608 not just file-errors.
12609
12610 * vc/vc-bzr.el (vc-bzr-sha1-program, sha1-program): Remove.
12611 (vc-bzr-sha1): Use internal sha1.
12612
126132012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
12614
12615 * progmodes/flymake.el (flymake-mode): Beware read-only dirs (bug#8954).
12616
126172012-04-10 Sébastien Gross <seb@chezwam.org> (tiny change)
12618
12619 * progmodes/hideshow.el (hs-hide-all): Don't infloop on comments
12620 that start in the middle of the line (bug#10496).
12621
126222012-04-10 Dan Nicolaescu <dann@gnu.org>
12623
12624 * battery.el (battery-linux-proc-acpi): Only one battery is
12625 discharged at a time, but that seems to confuse battery.el when
12626 computing `rate-type' for the battery not being discharged
12627 (bug#10332).
12628
126292012-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
12630
12631 * emacs-lisp/autoload.el (autoload-make-program): Remove, unused.
12632
12633 * international/quail.el: Use dolist and simplify.
12634 (quail-define-package, quail-update-keyboard-layout)
12635 (quail-define-rules): Use dolist.
12636 (quail-insert-kbd-layout, quail-get-translation): CSE.
12637
12638 * tmm.el: Use dolist, remove left over hook.
12639 (tmm-prompt, tmm-define-keys, tmm-shortcut, tmm-get-keybind):
12640 Use dolist.
12641 (calendar-load-hook): Don't mess with it.
12642
12643 * vc/vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
12644 Use derived-mode-p. Run the diff asynchronously.
12645
126462012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
12647
12648 * obsolete/mouse-sel.el: Add an Obsolete-since header.
12649
126502012-04-10 Juanma Barranquero <lekktu@gmail.com>
12651
12652 * misc.el: Display absolute path of loaded DLLs (bug#10424).
12653 (list-dynamic-libraries--loaded): New function.
12654 (list-dynamic-libraries--refresh): Use it.
12655
126562012-04-10 Nathan Weizenbaum <nweiz@google.com>
12657
12658 * progmodes/python.el (python-fill-paragraph):
12659 Make python-fill-region in a multiline string work when font-lock is
12660 disabled (bug#7018).
12661
126622012-04-10 Laimonas Vėbra <laimonas.vebra@gmail.com> (tiny change)
12663
12664 * language/european.el (cp775): Add oem/legacy (en)coding on
12665 DOS/MS Windows for the Baltic languages. There are still plenty
12666 of texts written in this encoding/codepage (bug#6519).
12667
126682012-04-10 Glenn Morris <rgm@gnu.org>
12669
12670 * cus-start.el (eol-mnemonic-unix, eol-mnemonic-dos, eol-mnemonic-mac):
12671 Add :standard values, reducing "rogue" customs in emacs -Q a bit more.
12672
126732012-04-10 Florian Adamsky <florian@adamsky.it> (tiny change)
12674
12675 * recentf.el (recentf-dialog-mode-map): Add two keybindings for
12676 next-line "n" and previous-line "p" in order to make recentf more
12677 consistent with ibuffer, dired or org-mode (bug#9387).
12678
126792012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
12680
12681 * image.el (put-image): Return the overlay created instead of the
12682 optional input string (bug#7834). Note that this may break code
12683 that is (for some reason or other) depending on `put-image'
12684 returning the string.
12685
12686 * mouse-sel.el (mouse-sel-mode): Mark as obsolete (bug#6174).
12687
12688 * simple.el (zap-to-char): Allow zapping using input methods
12689 (bug#1580).
12690
12691 * textmodes/fill.el (fill-region): Leave point and mark where they
12692 were before filling (bug#5399).
12693
126942012-04-09 Glenn Morris <rgm@gnu.org>
12695
12696 * version.el (emacs-bzr-get-version):
12697 Handle lightweight checkouts of local branches.
12698
126992012-04-09 Andreas Schwab <schwab@linux-m68k.org>
12700
12701 * international/characters.el: Recover lost case pairs. (Bug#11209)
12702
127032012-04-09 Chong Yidong <cyd@gnu.org>
12704
12705 * custom.el (custom-variable-p): Return nil for non-symbol
12706 arguments instead of signaling an error.
12707 (user-variable-p): Obsolete alias for custom-variable-p.
12708
12709 * apropos.el (apropos-variable):
12710 * files-x.el (read-file-local-variable):
12711 * simple.el (set-variable):
12712 * woman.el (woman-mini-help):
12713 * emacs-lisp/byte-opt.el (side-effect-free-fns): Callers changed.
12714
127152012-04-09 Glenn Morris <rgm@gnu.org>
12716
12717 * startup.el (normal-top-level): Don't look for leim-list.el
12718 in places where it will not be found. (Bug#910)
12719
12720 * international/mule-cmds.el (set-default-coding-systems):
12721 * files.el (normal-mode):
12722 Remove guarded calls to ucs-set-table-for-input. (Bug#9821)
12723 This function was removed with ucs-tables.el in 2008.
12724
127252012-04-08 Eli Zaretskii <eliz@gnu.org>
12726
12727 * textmodes/ispell.el (ispell-check-version): For hunspell, set
12728 ispell-encoding8-command to "-i", without a trailing space.
12729 (ispell-start-process): For hunspell, use '("-i" ENCODING), in 2
12730 separate command-line arguments, to specify the encoding, since
12731 that's how hunspell expects it.
12732
127332012-04-08 Glenn Morris <rgm@gnu.org>
12734
12735 * loadup.el: Load bindings before cus-start.
12736 This reduces somewhat the number of "rogue" settings in emacs -Q.
12737
127382012-04-07 Glenn Morris <rgm@gnu.org>
12739
12740 * version.el (emacs-bzr-get-version): New function.
12741 (emacs-bzr-version): New variable.
12742 * loadup.el (emacs-bzr-version): Set it. (Bug#8054)
12743 * mail/emacsbug.el (report-emacs-bug): Include bzr version.
12744
127452012-04-07 Eli Zaretskii <eliz@gnu.org>
12746
12747 * international/uni-bidi.el, international/uni-category.el:
12748 * international/uni-combining.el, international/uni-decimal.el:
12749 * international/uni-decomposition.el, international/uni-digit.el:
12750 * international/uni-lowercase.el, international/uni-mirrored.el:
12751 * international/uni-name.el, international/uni-numeric.el:
12752 * international/uni-titlecase.el, international/uni-uppercase.el:
12753 Update for Unicode 6.1.
12754
127552012-04-07 Eli Zaretskii <eliz@gnu.org>
12756
12757 * term/w32-win.el (dynamic-library-alist): Add libxml2 DLLs.
12758
127592012-04-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
12760
12761 * window.el (shrink-window): Mention the `window-min-height'
12762 variable in the doc string.
12763
127642012-04-05 Bastien Guerry <bzg@altern.org>
12765
12766 * color.el (color-lighten-name): Fix typo.
12767
127682012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
12769
12770 * server.el (server--on-display-p): New function.
12771 (server--on-display-p): Use it.
12772
127732012-04-04 Gábor Vida <vidagabor@gmail.com> (tiny change)
12774
12775 * ido.el (ido-wide-find-dirs-or-files): Use file-name-absolute-p
12776 (bug#11145).
12777
127782012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
12779
12780 * comint.el (comint--common-quoted-suffix): Check string boundary
12781 before comparing (bug#11158).
12782 * pcomplete.el (pcomplete--common-quoted-suffix): Idem.
12783
127842012-04-04 Chong Yidong <cyd@gnu.org>
12785
12786 * minibuffer.el (completion-extra-properties): Doc fix.
12787
12788 * subr.el (delayed-warnings-hook): Doc fix.
12789
127902012-04-04 Daiki Ueno <ueno@unixuser.org>
12791
12792 * epa.el (epa--select-keys): Bind C-c C-c to finish the key
12793 selection (Bug#11159).
12794 (epa-insert-keys): Inform that the default public key will be
12795 exported if no key is selected.
12796
127972012-04-04 Richard Stallman <rms@gnu.org>
12798
12799 * mail/emacsbug.el (report-emacs-bug): Bind inhibit-read-only.
12800
128012012-04-03 Chong Yidong <cyd@gnu.org>
12802
12803 * mail/sendmail.el (mail-mode-map): Bind C-c C-i to
12804 mail-insert-file, not its obsolete alias mail-attach-file.
12805
128062012-04-03 Michael Albinus <michael.albinus@gmx.de>
12807
12808 * notifications.el (notifications-notify): Fix docstring.
12809
128102012-04-02 Glenn Morris <rgm@gnu.org>
12811
12812 * emacs-lisp/authors.el (authors-aliases): Another addition.
12813
128142012-04-02 Michael Albinus <michael.albinus@gmx.de>
12815
12816 * net/tramp-gvfs.el (tramp-gvfs-send-command): Apply
12817 `tramp-compat-call-process' instead of `tramp-local-call-process'.
12818 Reported by Magnus Henoch <magnus.henoch@gmail.com>.
12819
128202012-04-01 Chong Yidong <cyd@gnu.org>
12821
12822 * files.el (file-in-directory-p): Rename from file-subdir-of-p.
12823 Handle root directory properly.
12824 (copy-directory): Caller changed.
12825
12826 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
12827 * net/tramp.el (tramp-file-name-for-operation): Callers changed.
12828
128292012-03-31 Glenn Morris <rgm@gnu.org>
12830
12831 * term/xterm.el (xterm-extra-capabilities): Doc fix.
12832
12833 * language/indian.el ("Devanagari"): Fix typo. (Bug#11103)
12834
12835 * calendar/calendar.el (calendar-window-list)
12836 (calendar-hide-window): Restore. (Bug#11140)
12837 (calendar-exit): Use calendar-window-list, calendar-hide-window again.
12838
12839 * emacs-lisp/edebug.el (edebug-unwrap-results): Doc fix.
12840
128412012-03-30 Thierry Volpiatto <thierry.volpiatto@gmail.com>
12842
12843 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
12844 Check if file is a symlink (Bug#10489).
12845
12846 * files.el (copy-directory): Likewise.
12847
128482012-03-30 Chong Yidong <cyd@gnu.org>
12849
12850 * image.el (imagemagick-types-inhibit)
12851 (imagemagick-register-types): Doc fix.
12852
128532012-03-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
12854
12855 * textmodes/ispell.el (ispell-get-extended-character-mode):
12856 Disable extended-char-mode for hunspell. hunspell does not support it
12857 and treats ~word as ordinary words in pipe mode.
12858
128592012-03-30 Glenn Morris <rgm@gnu.org>
12860
12861 * tutorial.el (help-with-tutorial): Ensure local variables don't
12862 happen to make the buffer read-only. (Bug#11127)
12863
128642012-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
12865
12866 * progmodes/perl-mode.el (perl-indent-line): Use `noindent' in strings.
12867 (perl-calculate-indent): Return `noindent' in strings.
12868
128692012-03-28 Sam Steingold <sds@gnu.org>
12870
12871 * calendar/calendar.el (calendar-exit): Use `quit-windows-on'
12872 instead of the broken adhockery which does not prevent calendar
12873 buffers from being displayed at random after exit.
12874 (calendar-window-list, calendar-hide-window): Remove the broken
12875 adhockery.
12876
128772012-03-28 Glenn Morris <rgm@gnu.org>
12878
12879 * replace.el (query-replace-map): Doc fix.
12880
128812012-03-28 Andreas Schwab <schwab@linux-m68k.org>
12882
12883 * vc/vc-git.el (vc-git-state): Don't try to match all of the diff
12884 contents. (Bug#11109)
12885
128862012-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
12887
12888 * emacs-lisp/avl-tree.el (avl-tree--enter-balance): Fix paren typo
12889 (bug#11077).
12890 (avl-tree--check, avl-tree--check-node): New funs.
12891
128922012-03-27 Martin Rudalics <rudalics@gmx.at>
12893
12894 * window.el (switch-to-visible-buffer): New option.
12895 (switch-to-prev-buffer, switch-to-next-buffer):
12896 Observe switch-to-visible-buffer. Make sure that checking for a window
12897 showing a buffer already is done on the same frame.
12898
128992012-03-27 Glenn Morris <rgm@gnu.org>
12900
12901 * startup.el (mail-host-address): Doc fix.
12902
129032012-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
12904
12905 * emacs-lisp/bytecomp.el (byte-compile-constants-vector): Allow more
12906 than 197 variables.
12907
129082012-03-26 Ami Fischman <ami@fischman.org>
12909
12910 * vc/vc-git.el (vc-git-state): Avoid unnecessarily locking.
12911
129122012-03-26 Glenn Morris <rgm@gnu.org>
12913
12914 * files.el (save-buffers-kill-emacs): Doc fix.
12915
12916 * startup.el (normal-top-level, command-line, command-line-1):
12917 Give them doc strings.
12918
129192012-03-25 Eli Zaretskii <eliz@gnu.org>
12920
12921 * makefile.w32-in (install): Use $(DIRNAME)_same-dir.tst instead
12922 of same-dir.tst, to avoid stepping on other (parallel) Make job's toes.
12923
129242012-03-25 Chong Yidong <cyd@gnu.org>
12925
12926 * custom.el (load-theme): Even if NO-ENABLE arg is t, reenable the
12927 theme if it was previously enabled before (Bug#11031).
12928
12929 * cus-theme.el (custom-theme-write-faces): Retrieve current face
12930 spec with custom-face-get-current-spec if its :shown-value is not
12931 determined yet (Bug#9337).
12932 (customize-create-theme, custom-theme-revert): Doc fixes.
12933
12934 * button.el (button-at): Minor addition to docstring.
12935
129362012-03-24 Simon Leinen <simon.leinen@gmail.com>
12937
12938 * vc/vc.el (vc-merge): Fix a prompt.
12939
129402012-03-24 Chong Yidong <cyd@gnu.org>
12941
12942 * mwheel.el (mwheel-scroll): Call deactivate-mark at the right
12943 point (Bug#9623).
12944
12945 * button.el (button-at): Minor addition to docstring.
12946
129472012-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
12948
12949 * newcomment.el (comment-choose-indent): No space after BOL.
12950
129512012-03-22 Sam Steingold <sds@gnu.org>
12952
12953 * window.el (switch-to-prev-buffer): Revert last patch because the
12954 bug turned out to be an advertised feature (Elisp manual 28.14).
12955
129562012-03-22 Glenn Morris <rgm@gnu.org>
12957
12958 * vc/vc-bzr.el (vc-bzr-status-switches): New option. (Bug#6724)
12959 (vc-bzr-command): If running "status", pass vc-bzr-status-switches.
12960
129612012-03-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
12962
12963 * net/network-stream.el (network-stream-open-starttls): Make error
12964 message under Windows be less misleading.
12965
129662012-03-22 Liang Wang <netcasper@gmail.com> (tiny change)
12967
12968 * progmodes/etags.el (etags-list-tags): Only use tags which goto-func
12969 understands (bug#9942).
12970
129712012-03-22 Chong Yidong <cyd@gnu.org>
12972
12973 * simple.el (end-of-visible-line): Handle return value of
12974 next-single-property-change properly (Bug#9371).
12975
129762012-03-22 Kenichi Handa <handa@m17n.org>
12977
12978 * international/quail.el (quail-insert-kbd-layout): Fix previous
12979 change. To avoid unwanted bidi reordering, use
12980 bidi-string-mark-left-to-right instead of inserting LRO and PDF.
12981
129822012-03-21 Dmitry Gutov <dgutov@yandex.ru>
12983
12984 * progmodes/ruby-mode.el: Don't confuse "end:" for "end" (bug#10786).
12985 (ruby-block-end-re, ruby-delimiter, ruby-parse-partial)
12986 (ruby-beginning-of-indent): Be more careful with the difference
12987 between word-boundary and symbol boundary.
12988 (ruby-mode-syntax-table): Make : a symbol constituent.
12989
129902012-03-21 Andreas Politz <politza@fh-trier.de>
12991
12992 * outline.el (outline-flag-region): Evaporate overlays (bug#10789).
12993
129942012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
12995
12996 * progmodes/etags.el (tags-completion-at-point-function):
12997 Improve last fix.
12998
12999 * files.el (move-file-to-trash): Files aren't regexps (bug#11055).
13000
130012012-03-21 Sam Steingold <sds@gnu.org>
13002
13003 * progmodes/etags.el (tags-completion-at-point-function):
13004 Avoid the error when point is inside the pattern.
13005
130062012-03-21 John Yates <john@yates-sheets.org> (tiny change)
13007
13008 * progmodes/hideshow.el (hs-inside-comment-p): Fix hiding of first
13009 line (Bug#10855).
13010
130112012-03-21 Drew Adams <drew.adams@oracle.com>
13012
13013 * info.el (Info-menu): Handle string value of FORK arg (Bug#10858).
13014
130152012-03-21 Anmol Khirbat <anmol@khirbat.net> (tiny change)
13016
13017 * ido.el (ido-set-current-directory, ido-read-internal)
13018 (ido-choose-completion-string, ido-completion-help): Handle nil
13019 value of ido-completion-buffer (Bug#11008).
13020
130212012-03-21 Sam Steingold <sds@gnu.org>
13022
13023 * window.el (switch-to-prev-buffer): Do not switch to a visible
13024 window previous buffer, just like with the frame previous buffers.
13025
130262012-03-21 Chong Yidong <cyd@gnu.org>
13027
13028 * faces.el (make-face, make-empty-face, copy-face):
13029 * face-remap.el (face-remap-add-relative, face-remap-set-base):
13030 Doc fixes.
13031
130322012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
13033
13034 * wid-edit.el (widget-complete-field): Remove (bug#11051).
13035 (widget-complete): Remove broken use of it.
13036
130372012-03-20 Chong Yidong <cyd@gnu.org>
13038
13039 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
13040 Use string-width and truncate-string-width to handle arbitrary
13041 characters.
13042
130432012-03-20 Tassilo Horn <tassilo@member.fsf.org>
13044
13045 * textmodes/artist.el (artist-menu-map): Bind Rectangle menu item
13046 to draw rectangles, not squares. (Regression introduced by revno
13047 2011-03-02T03:48:01Z!cyd@stupidchicken.com)
13048
130492012-03-18 Chong Yidong <cyd@gnu.org>
13050
13051 * faces.el (face-spec-reset-face): Don't call display-graphic-p if
13052 it is not yet defined (for temacs).
13053
130542012-03-18 Leo Liu <sdl.web@gmail.com>
13055
13056 * net/rcirc.el (rcirc-cmd-quit): Allow quitting all servers with
13057 prefix.
13058
130592012-03-17 Eli Zaretskii <eliz@gnu.org>
13060
13061 * textmodes/ispell.el (ispell-skip-tib, ispell-keep-choices-win)
13062 (ispell-choices-win-default-height, ispell-silently-savep)
13063 (ispell-dictionary-alist, ispell-encoding8-command)
13064 (ispell-check-version, ispell-aspell-find-dictionary)
13065 (ispell-valid-dictionary-list, ispell-words-keyword)
13066 (ispell-get-word, ispell-internal-change-dictionary)
13067 (ispell-region, ispell-skip-region-list)
13068 (ispell-begin-skip-region-regexp, ispell-ignore-fcc)
13069 (ispell-process-line, ispell-minor-mode, ispell-minor-check)
13070 (ispell-message-text-end, ispell-message)
13071 (ispell-buffer-local-parsing): Doc fix.
13072
130732012-03-13 Jambunathan K <kjambunathan@gmail.com>
13074
13075 * htmlfontify.el: Add support for code block fontification for ODT
13076 export (Bug #9914).
13077 (hfy-optimisations): Define new option
13078 `body-text-only'
13079 (hfy-fontify-buffer): Honor above setting.
13080 (hfy-begin-span, hfy-end-span): New routines factored out form
13081 `hfy-fontify-buffer'.
13082 (hfy-begin-span-handler, hfy-end-span-handler): New variables
13083 that permit insertion of custom tags.
13084 (hfy-fontify-buffer): Use above handlers.
13085 (hfy-face-to-css-default): Same as the earlier `hfy-face-to-css'.
13086 (hfy-face-to-css): Re-defined to be a variable.
13087 (hfy-compile-stylesheet): Modify. Allow stylesheet to be built
13088 over multiple runs. This is made possible by having the caller let
13089 bind a special variable `hfy-user-sheet-assoc'.
13090 (htmlfontify-string): New defun.
13091 (hfy-compile-face-map): Make sure that the last char in the
13092 buffer is correctly fontified.
13093 (hfy-face-resolve-face): Whitespace only change.
13094
130952012-03-17 Eli Zaretskii <eliz@gnu.org>
13096
13097 * textmodes/ispell.el (ispell-get-decoded-string): Make the error
13098 message more clear.
13099
131002012-03-16 Leo Liu <sdl.web@gmail.com>
13101
13102 * emacs-lisp/copyright.el (copyright-year-ranges): Fix typo.
13103
131042012-03-16 Alan Mackenzie <acm@muc.de>
13105
13106 Further optimize the handling of large macros.
13107
13108 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Use a
13109 limit to a call of `c-literal-limits'.
13110 (c-determine-+ve-limit): New function.
13111 (c-at-macro-vsemi-p): Move `c-in-literal' to the bottom of an `and'.
13112 (c-guess-basic-syntax): In macros, restrict a search limit to 2000.
13113 In CASE 5B, restrict a search limit to 500.
13114 (c-just-after-func-arglist-p): Obviouly wrong `or' -> `and'.
13115
13116 * progmodes/cc-mode.el (c-neutralize-syntax-in-and-mark-CPP):
13117 Restrict macro bounds to +-500 from after-change's BEG END.
13118
131192012-03-16 Leo Liu <sdl.web@gmail.com>
13120
13121 * font-lock.el (lisp-font-lock-keywords-2): Add letrec.
13122
131232012-03-16 Aaron S. Hawley <Aaron.S.Hawley@gmail.com>
13124
13125 * tar-mode.el (tar-mode): Fix saving by conditionally undoing
13126 `special-mode' setting of `buffer-read-only'. (Bug#11010)
13127
131282012-03-16 Glenn Morris <rgm@gnu.org>
13129
13130 * view.el (view-buffer, view-buffer-other-window)
13131 (view-buffer-other-frame): Doc fixes re special mode-class.
13132
13133 * subr.el (eval-after-load): If named feature is provided not from
13134 a file, run after-load forms. (Bug#10946)
13135
13136 * calendar/calendar.el (calendar-insert-at-column):
13137 Handle non-unit-width characters a bit better. (Bug#10978)
13138
131392012-03-15 Chong Yidong <cyd@gnu.org>
13140
13141 * emacs-lisp/ring.el (ring-extend): New function.
13142 (ring-insert+extend): Extend the ring correctly (Bug#11019).
13143
13144 * comint.el (comint-read-input-ring)
13145 (comint-add-to-input-history): Grow comint-input-ring lazily.
13146
131472012-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
13148
13149 * progmodes/perl-mode.el (perl-syntax-propertize-special-constructs):
13150 Fix up parsing of multiline twoarg non-paired elements (bug#11014).
13151
13152 * imenu.el: Fix multiple inheritance breakage (bug#9199).
13153 (imenu-add-to-menubar): Don't add a redundant index.
13154 (imenu-update-menubar): Handle a dynamically composed keymap.
13155
131562012-03-13 Katsumi Yamaoka <yamaoka@jpl.org>
13157
13158 * mail/sendmail.el (mail-encode-header):
13159 Bind rfc2047-encode-encoded-words to nil.
13160
131612012-03-13 Glenn Morris <rgm@gnu.org>
13162
13163 * calendar/calendar.el (calendar-string-spread):
13164 Handle non-unit-width characters a bit better. (Bug#10978)
13165
131662012-03-13 Leo Liu <sdl.web@gmail.com>
13167
13168 * vc/vc-hg.el (vc-hg-working-revision): Rework to work with both
13169 directory and file as argument (Bug#10822).
13170
131712012-03-13 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
13172
13173 * progmodes/gdb-mi.el (gdb-invalidate-disassembly):
13174 For dynamically generated code, follow $PC.
13175 (gdb-disassembly-handler-custom): Handle no function name case.
13176
131772012-03-13 Tim Landscheidt <tim@tim-landscheidt.de> (tiny change)
13178
13179 * calendar/icalendar.el (icalendar-export-file, icalendar-import-file):
13180 * emulation/ws-mode.el (ws-query-replace):
13181 * sort.el (sort-regexp-fields):
13182 Fix missing trailing whitespace in interactive prompts. (Bug#11002)
13183
131842012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
13185
13186 * dabbrev.el: Fix cycle completion order (bug#10963).
13187 (dabbrev--last-obarray, dabbrev--last-completion-buffer): Remove.
13188 (dabbrev-completion): Don't use an obarray; provide
13189 a cycle-sort-function.
13190
131912012-03-12 Leo Liu <sdl.web@gmail.com>
13192
13193 * simple.el (kill-new): Use equal-including-properties for comparison.
13194 (kill-do-not-save-duplicates): Doc fix.
13195
131962012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
13197
13198 * dabbrev.el: Fix cycle completion (bug#10963).
13199 Use lexical binding and wrap to 80 columns.
13200 (dabbrev-completion): Delay computing the list of completions.
13201
132022012-03-12 Kenichi Handa <handa@m17n.org>
13203
13204 * international/quail.el (quail-insert-kbd-layout): Surround each
13205 row by LRO and PDF instead of inserting many LRMs. Pad the left
13206 and right of each non-spacing marks. Insert invisible space
13207 between lower and upper characters to prevent composition.
13208
132092012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
13210
13211 * minibuffer.el (minibuffer-complete): Don't get confused when the
13212 function is run twice via different commands (bug#10958).
13213 (complete-with-action): Fix docstring.
13214
132152012-03-12 Chong Yidong <cyd@gnu.org>
13216
13217 * nxml/nxml-mode.el (nxml-mode-map): Do not bind C-RET (Bug#6776).
13218 (nxml-completion-at-point-function): New function.
13219 (nxml-mode): Use it.
13220 (nxml-bind-meta-tab-to-complete-flag): Default to t.
13221
13222 * emacs-lisp/package.el (package-unpack, package-unpack-single):
13223 Load generated autoloads file before byte compiling (Bug#10970).
13224 (package--make-autoloads-and-compile): New helper fun.
13225
132262012-03-12 Christopher Schmidt <christopher@ch.ristopher.com>
13227
13228 * ibuffer.el (ibuffer-redisplay): Remove another gratuitous error.
13229
132302012-03-11 Michael Albinus <michael.albinus@gmx.de>
13231
13232 * autorevert.el (auto-revert-handler): Ensure, that
13233 file-readable-p is applied only for local files or in
13234 auto-revert-tail-mode.
13235
132362012-03-11 Andreas Schwab <schwab@linux-m68k.org>
13237
13238 * server.el (server-eval-at): Handle non-tcp connections.
13239 Decode result string.
13240
13241 * server.el (server-msg-size): New constant.
13242 (server-reply-print): New function.
13243 (server-eval-and-print): Use it.
13244 (server-eval-at): Use server-quote-arg and server-unquote-arg.
13245 Handle -print-nonl.
13246
132472012-03-11 Christopher Schmidt <christopher@ch.ristopher.com>
13248
13249 * ibuffer.el (ibuffer-redisplay): Remove gratuitous error
13250 (Bug#10987).
13251
132522012-03-11 Chong Yidong <cyd@gnu.org>
13253
13254 * simple.el (goto-line): Doc fix (Bug#9938).
13255
13256 * subr.el (save-window-excursion): Doc fix (Bug#9979).
13257
13258 * dabbrev.el (dabbrev--find-expansion): Update progress reporter
13259 when finished (Bug#10963).
13260
132612012-03-11 Martin Rudalics <rudalics@gmx.at>
13262
13263 * window.el (split-window-below): Fix bug in case where
13264 split-window-keep-point is nil (Bug#10971).
13265
132662012-03-11 Juri Linkov <juri@jurta.org>
13267
13268 * replace.el (replace-highlight): Set isearch-word to nil
13269 unconditionally. (Bug#10887)
13270
132712012-03-10 Eli Zaretskii <eliz@gnu.org>
13272
13273 * net/mairix.el (mairix-replace-invalid-chars): Rename from
13274 mairix-replace-illegal-chars; all callers changed. Don't remove
13275 ^, ~, and = characters: they are meaningful in mairix search specs.
13276 (mairix-widget-create-query): Add usage information about mairix
13277 search forms: negating words, searching for substrings, etc.
13278
132792012-03-10 Jae-hyeon Park <jae-hyeon.park@desy.de> (tiny change)
13280
13281 * international/fontset.el (font-encoding-alist): Add an entry for
13282 ksx1001 (Bug#5667).
13283
132842012-03-10 Richard Stallman <rms@gnu.org>
13285
13286 * mail/sendmail.el (mail-encode-header):
13287 Set rfc2047-encode-encoded-words.
13288
13289 * mail/mail-utils.el (mail-quote-printable): Quote multibyte chars.
13290
13291 * mail/rmail.el (rmail-buffers-swapped-p): Don't assume dead
13292 view buffer means not swapped.
13293 (rmail-view-buffer-kill-buffer-hook): Give buf name in error msg.
13294 (rmail-write-region-annotate): Error if real text has disappeared.
13295
13296 * epa-mail.el (epa-mail-encrypt): Bind inhibit-read-only.
13297
132982012-03-10 Chong Yidong <cyd@gnu.org>
13299
13300 * emulation/cua-rect.el (cua--init-rectangles):
13301 * emulation/cua-base.el (cua--init-keymaps):
13302 Add delete-forward-char to remappings (Bug#9666).
13303
133042012-03-10 Martin Rudalics <rudalics@gmx.at>
13305
13306 * speedbar.el (speedbar-unhighlight-one-tag-line):
13307 Avoid unhighlighting due to frame switching (Bug#10275).
13308
133092012-03-10 Chong Yidong <cyd@gnu.org>
13310
13311 * minibuffer.el (completion-in-region, completion-help-at-point):
13312 Give the completion field overlay a high priority (Bug#6830).
13313
13314 * dired.el (dired-goto-file): Recognize absolute file name
13315 listings (Bug#7126).
13316 (dired-goto-file-1): New helper function.
13317 (dired-toggle-read-only): Inhibit warnings.
13318
133192012-03-09 Michael Albinus <michael.albinus@gmx.de>
13320
13321 * net/dbus.el (dbus-property-handler): Return empty array if
13322 there are no properties.
13323
133242012-03-09 Leo Liu <sdl.web@gmail.com>
13325
13326 * savehist.el (savehist-printable): Stricter check for string
13327 value (Bug#10937).
13328
133292012-03-09 Eli Zaretskii <eliz@gnu.org>
13330
13331 * mail/smtpmail.el (smtpmail-send-it):
13332 Bind coding-system-for-write to *-unix, so that FCC files are kept in
13333 valid mbox format.
13334
133352012-03-09 Glenn Morris <rgm@gnu.org>
13336
13337 * files.el (dir-locals-find-file):
13338 Don't check result is regular, readable.
13339 (dir-locals-read-from-file): Demote errors.
13340
133412012-03-08 Eli Zaretskii <eliz@gnu.org>
13342
13343 * international/quail.el (quail-insert-kbd-layout):
13344 Insert invisible LRM characters before each character in a keyboard
13345 layout cell, to prevent their reordering by bidi display engine.
13346 For details, see the discussion in
13347 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00085.html.
13348
133492012-03-08 Alan Mackenzie <acm@muc.de>
13350
13351 * progmodes/cc-cmds.el (c-mark-function): Make it leave a mark at
13352 the starting position; make it extend the marked region when
13353 invoked repeatedly - all under appropriate circumstances.
13354 Fixes bugs #5525, #10906.
13355
133562012-03-08 Glenn Morris <rgm@gnu.org>
13357
13358 * files.el (locate-dominating-file, dir-locals-find-file):
13359 Undo 2012-03-06 change.
13360
133612012-03-07 Eli Zaretskii <eliz@gnu.org>
13362
13363 * international/quail.el (quail-help):
13364 Force bidi-paragraph-direction be left-to-right. See discussion in
13365 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00062.html
13366 for the reason.
13367
133682012-03-07 Michael Albinus <michael.albinus@gmx.de>
13369
13370 Avoid superfluous registering of signals. (Bug#10807)
13371
13372 * notifications.el (notifications-on-action-object)
13373 (notifications-on-close-object): New defvars.
13374 (notifications-on-action-signal, notifications-on-closed-signal):
13375 Unregister the signal if not needed any longer.
13376 (notifications-notify): Register `notifications-action-signal' or
13377 `notifications-closed-signal', if :on-action or :on-close has been
13378 passed as argument.
13379
133802012-03-07 Chong Yidong <cyd@gnu.org>
13381
13382 * cus-start.el: Avoid x-select-enable-clipboard-manager warning on
13383 non-X platforms.
13384
133852012-03-06 Glenn Morris <rgm@gnu.org>
13386
13387 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
13388 (x-disown-selection-internal, x-get-selection-internal):
13389 Doc fix (add arglist signatures). (Bug#10783)
13390
133912012-03-06 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
13392
13393 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
13394 Handle breakpoints with no "type".
13395
133962012-03-06 Glenn Morris <rgm@gnu.org>
13397
13398 * files.el (locate-dominating-file): Add optional predicate argument.
13399 (dir-locals-find-file): Make use of above change.
13400
134012012-03-06 Thien-Thi Nguyen <ttn@gnuvola.org>
13402
13403 * info.el (Info-insert-dir): Also try "dir.gz".
13404
134052012-03-06 Glenn Morris <rgm@gnu.org>
13406
13407 * files.el (dir-locals-find-file):
13408 Ignore non-readable or non-regular files. (Bug#10928)
13409
13410 * files.el (locate-dominating-file): Doc fix.
13411
134122012-03-06 Adam Spiers <emacs@adamspiers.org> (tiny change)
13413
13414 * calendar/calendar.el (calendar-set-mode-line):
13415 `getenv' returns a string. (Bug#10951)
13416
134172012-03-05 Leo Liu <sdl.web@gmail.com>
13418
13419 * simple.el (backward-delete-char-untabify): Constrain point to
13420 field (Bug#10939).
13421
13422 * eshell/em-cmpl.el (eshell-cmpl-initialize): Fix shift-tab key.
13423
134242012-03-05 Chong Yidong <cyd@gnu.org>
13425
13426 * simple.el (count-words): If called from Lisp, return the word
13427 count, for symmetry with `count-lines'. Arglist changed.
13428 (count-words--message): Args changed. Consolidate counting code
13429 from count-words and count-words-region.
13430 (count-words-region): Caller changed.
13431 (count-lines-region): Make it an obsolete alias.
13432
134332012-03-04 Tassilo Horn <tassilo@member.fsf.org>
13434
13435 * saveplace.el (save-place-to-alist)
13436 (save-place-ignore-files-regexp): Allow value nil to disable this
13437 feature.
13438
134392012-03-04 Chong Yidong <cyd@gnu.org>
13440
13441 * faces.el (face-spec-reset-face): For the default face, reset the
13442 attributes to default values (Bug#10748).
13443
134442012-03-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
13445
13446 * mail/emacsbug.el (report-emacs-bug-hook): Fix up thinko in
13447 previous patch: Check `message-send-mail-function', and not the
13448 default function (bug#10897).
13449
134502012-03-04 Michael Albinus <michael.albinus@gmx.de>
13451
13452 * notifications.el (notifications-on-action-signal)
13453 (notifications-on-closed-signal): Check for unique service name of
13454 incoming event. Fix error in removing entry.
13455 (top): Register for signals with wildcard service name.
13456 (notifications-notify): Use daemon unique service name for map entries.
13457
134582012-03-04 Chong Yidong <cyd@gnu.org>
13459
13460 * cus-start.el: Make x-select-enable-clipboard-manager customizable.
13461
134622012-03-04 Glenn Morris <rgm@gnu.org>
13463
13464 * abbrev.el (copy-abbrev-table, abbrev-table-p)
13465 (abbrev-minor-mode-table-alist, define-abbrev, abbrev-insert)
13466 (expand-abbrev, define-abbrev-table): Doc fixes.
13467
134682012-03-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
13469
13470 * mail/emacsbug.el (report-emacs-bug-hook): Look at the value of
13471 `message-default-send-mail-function' and not `send-mail-function'
13472 when doing the prompting for `sendmail-query-once' before sending
13473 in Message buffers (bug#10897).
13474
13475 * net/tls.el (open-tls-stream): Don't set the dont-query-on-exit flag.
13476 This is inconsistent with all the other stream functions, which leave
13477 the setting up to the higher levels (if so wanted) (bug#10931).
13478
134792012-03-02 Alan Mackenzie <acm@muc.de>
13480
13481 Depessimize the handling of very large macros.
13482
13483 * progmodes/cc-engine.el (c-macro-cache, c-macro-cache-start-pos):
13484 (c-macro-cache-syntactic): New variables to implement a one
13485 element macro cache.
13486 (c-invalidate-macro-cache): New function.
13487 (c-beginning-of-macro, c-end-of-macro, c-syntactic-end-of-macro):
13488 Adapt to use the new cache.
13489 (c-state-safe-place): Use better the cache of safe positions.
13490 (c-state-semi-nonlit-pos-cache)
13491 (c-state-semi-nonlit-pos-cache-limit):
13492 New variables for...
13493 (c-state-semi-safe-place): New function. Here, in a macro is "safe".
13494 (c-invalidate-state-cache-1): New stuff for c-state-semi-safe-place.
13495 (c-in-literal, c-literal-limits, c-determine-limit-get-base):
13496 Use c-state-semi-safe-place.
13497
13498 * progmodes/cc-langs.el (c-get-state-before-change-functions):
13499 Add c-invalidate-macro-cache to the C, C++, Obj entries.
13500
135012012-03-02 Michael Albinus <michael.albinus@gmx.de>
13502
13503 * jka-compr.el (jka-compr-call-process):
13504 Apply `file-accessible-directory-p' only when the default directory is
13505 not remote.
13506
135072012-03-01 Michael Albinus <michael.albinus@gmx.de>
13508
13509 * files.el (file-equal-p): Fix docstring. Avoid unnecessary
13510 access of FILE2, if FILE1 does not exist.
13511
13512 * net/tramp-sh.el (tramp-remote-process-environment): Add "PAGER=\"\"".
13513 Reported by Robert Lupton the Good <rhl@astro.princeton.edu>.
13514
13515 * vc/vc-git.el (vc-git--call): Enable `inhibit-null-byte-detection'.
13516 Add "PAGER=" to `process-environment'.
13517
135182012-03-01 Michael R. Mauger <mmaug@yahoo.com>
13519
13520 * progmodes/sql.el: Bug fix
13521 (sql-get-login-ext): Save login values in globals.
13522 (sql-get-login): Use new version of `sql-get-login-ext'.
13523 (sql-interactive-mode): Set global `sql-connection' to nil.
13524 (sql-connect): Set global values for connection.
13525 (sql-product-interactive): Save global values as buffer local.
13526
135272012-02-29 Leo Liu <sdl.web@gmail.com>
13528
13529 * abbrev.el (define-abbrevs): Reset sys to nil.
13530
135312012-02-28 Thierry Volpiatto <thierry.volpiatto@gmail.com>
13532
13533 * files.el (file-equal-p): Rename from `files-equal-p'.
13534 Return nil when one or both files don't exist.
13535 (file-subdir-of-p): Now only top directory must exists,
13536 return nil if it doesn't.
13537 (copy-directory): No need to test with `file-subdir-of-p' after
13538 creating dir.
13539 * net/tramp.el (tramp-file-name-for-operation): Rename `files-equal-p'
13540 to `file-equal-p'.
13541
135422012-02-28 Glenn Morris <rgm@gnu.org>
13543
13544 * shell.el (shell-mode):
13545 * progmodes/vhdl-mode.el (wildcard-to-regexp, file-expand-wildcards):
13546 * play/landmark.el (landmark-font-lock-face-O):
13547 * play/handwrite.el (handwrite):
13548 * play/gomoku.el (gomoku-O):
13549 * net/browse-url.el (browse-url-browser-display):
13550 * international/mule.el (define-charset):
13551 * htmlfontify.el (hfy-etags-cmd, hfy-face-attr-for-class):
13552 * filesets.el (filesets-find-file-delay):
13553 * eshell/em-xtra.el (eshell-xtra):
13554 * eshell/em-unix.el (eshell-grep):
13555 * emulation/viper.el (viper-mode):
13556 * emacs-lisp/regexp-opt.el (regexp-opt-group):
13557 * emacs-lisp/easymenu.el (easy-menu-define):
13558 * calendar/timeclock.el (timeclock-use-display-time):
13559 * bs.el (bs-mode):
13560 * bookmark.el (bookmark-save-flag):
13561 Doc fix (standardize possessive apostrophe usage).
13562
135632012-02-27 Chong Yidong <cyd@gnu.org>
13564
13565 * emulation/viper-cmd.el (viper-intercept-ESC-key):
13566 Fix key-binding lookup for ESC key (Bug#9146).
13567
13568 * font-lock.el (font-lock-specified-p): Rename from
13569 font-lock-spec-present. Callers changed.
13570
135712012-02-27 Daniel Hackney <dan@haxney.org>
13572
13573 * emacs-lisp/package.el (package-compute-transaction):
13574 Handle holding a package version to t in package-load-list.
13575
135762012-02-26 Michael Albinus <michael.albinus@gmx.de>
13577
13578 * net/tramp.el (tramp-inodes, tramp-devices): Initialize with 0.
13579 (tramp-get-inode, tramp-get-device): Use cached values.
13580
135812012-02-26 Alan Mackenzie <acm@muc.de>
13582
13583 Check there is a font-lock specification before doing initial
13584 fontification.
13585
13586 * font-core.el (font-lock-mode): Move the conditional from
13587 :after-hook to font-lock-initial-fontify.
13588 (font-lock-default-function): Move the check for a specification
13589 to font-lock-spec-present.
13590
13591 * font-lock.el (font-lock-initial-fontify): Call ...
13592 (font-lock-spec-present): New function.
13593
135942012-02-26 Jim Blandy <jimb@red-bean.com>
13595
13596 * progmodes/gdb-mi.el (gdb-mi-quote): New function.
13597 (gdb-send): Apply it to the operand of the '-interpreter-exec
13598 console' command, so that we can pass arguments with (say) quotes
13599 in them. Store exact string sent in gdb-debug-log (Bug#10765).
13600
136012012-02-26 Chong Yidong <cyd@gnu.org>
13602
13603 * help-fns.el (describe-function-1): Clarify description of
13604 remapping (Bug#10844).
13605
13606 * files.el (files-equal-p): Doc fix.
13607 (file-subdir-of-p): Doc fix. Convert loop macro to plain Lisp,
13608 and quit the loop once a mismatch is found.
13609
136102012-02-25 Juanma Barranquero <lekktu@gmail.com>
13611
13612 * bs.el (bs--show-with-configuration): Don't throw an error
13613 if the window cannot be split; otherwise, subsequent calls to
13614 bs-show fail, restoring a stale window config. (Bug#10882)
13615
136162012-02-25 Jan Djärv <jan.h.d@swipnet.se>
13617
13618 * term/ns-win.el (global-map): Bind ns-drag-file to
13619 ns-find-file (Bug#5855, Bug#10050).
13620
136212012-02-25 Andreas Schwab <schwab@linux-m68k.org>
13622
13623 * calendar/parse-time.el (parse-time-string): Allow extractor to
13624 return nil.
13625
136262012-02-25 Michael Albinus <michael.albinus@gmx.de>
13627
13628 * net/tramp.el (tramp-file-name-for-operation):
13629 Add `files-equal-p' and `file-subdir-of-p'.
13630
13631 * net/tramp-sh.el (tramp-sh-handle-copy-directory):
13632 * net/tramp-smb.el (tramp-smb-handle-copy-directory):
13633 Add COPY-CONTENTS argument.
13634
136352012-02-25 Chong Yidong <cyd@gnu.org>
13636
13637 Add custom groups for VC backends, for consistency with vc-bzr.
13638
13639 * vc/vc-arch.el (vc-arch):
13640 * vc/vc-cvs.el (vc-cvs):
13641 * vc/vc-git.el (vc-git):
13642 * vc/vc-hg.el (vc-hg):
13643 * vc/vc-mtn.el (vc-mtn):
13644 * vc/vc-rcs.el (vc-rcs):
13645 * vc/vc-sccs.el (vc-sccs):
13646 * vc/vc-svn.el (vc-svn): New customization group (Bug#10871).
13647 All relevant defcustoms reassigned.
13648
136492012-02-25 Chong Yidong <cyd@gnu.org>
13650
13651 * newcomment.el (comment-styles): Add autoload (Bug#10868).
13652
13653 * term/x-win.el (x-initialize-window-system): Reduce default for
13654 x-selection-timeout to 5 seconds (Bug#8869).
13655
136562012-02-24 Thierry Volpiatto <thierry.volpiatto@gmail.com>
13657
13658 * files.el (files-equal-p, file-subdir-of-p): New functions.
13659 (copy-directory): Error when trying to copy a directory on itself.
13660 Add missing copy-contents arg to tramp handler.
13661 * dired-aux.el (dired-copy-file-recursive): Same.
13662 (dired-create-files): Modify destination when source is equal to
13663 dest when copying files.
13664 Return also when dest is a subdir of source. (Bug#10489)
13665
136662012-02-24 Michael Albinus <michael.albinus@gmx.de>
13667
13668 * net/ange-ftp.el (ange-ftp-parse-netrc): Suppress comment lines.
13669 (Bug#10874)
13670
136712012-02-23 Alan Mackenzie <acm@muc.de>
13672
13673 * emacs-lisp/easy-mmode.el (define-minor-mode): Add extra
13674 parameter "after-hook:" to allow the expansion to run code after
13675 the execution of the mode hooks.
13676
13677 * font-lock.el (font-lock-initial-fontify): New function extracted
13678 from font-lock-mode-internal.
13679
13680 * font-core.el (font-lock-mode): Call font-lock-initial-fontify in
13681 :after-hook.
13682
136832012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
13684
13685 * minibuffer.el: Make sure cycling is reset upon edit with icomplete.el.
13686 (completion--cache-all-sorted-completions): New function.
13687 (completion-all-sorted-completions): Use it.
13688 (completion--do-completion, minibuffer-force-complete):
13689 Use it to re-instate the flush hook.
13690
13691 * icomplete.el (icomplete-completions): Replace last fix with a better
13692 one (bug#10850).
13693
136942012-02-23 Dmitry Gutov <dgutov@yandex.ru>
13695
13696 * emacs-lisp/lisp.el (beginning-of-defun-raw): Don't call end-of-defun
13697 when it might call us back infinitely (bug#10797).
13698
136992012-02-23 Glenn Morris <rgm@gnu.org>
13700
13701 * minibuffer.el (completion-category-overrides): Doc fix.
13702
137032012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
13704
13705 * minibuffer.el (completion-table-with-context): Fix inf-loop.
13706 Reported by Aaron S. Hawley <aaron.s.hawley@gmail.com>.
13707
137082012-02-23 Glenn Morris <rgm@gnu.org>
13709
13710 * emacs-lisp/authors.el (authors-aliases, authors-fixed-case)
13711 (authors-obsolete-files-regexps, authors-ignored-files)
13712 (authors-ambiguous-files, authors-renamed-files-alist):
13713 Add more entries.
13714
137152012-02-23 Juri Linkov <juri@jurta.org>
13716
13717 * isearch.el (isearch-occur): Sync interactive spec with occur's
13718 new feature in `occur-read-primary-args'. Doc fix. (Bug#10705)
13719
13720 * replace.el (occur-menu-map): Add menu item for `occur-edit-mode'.
13721
137222012-02-22 Juri Linkov <juri@jurta.org>
13723
13724 * international/mule-cmds.el (read-char-by-name): Use \` and \'.
13725 (ucs-insert): Doc fix. Check for hex digits in the string.
13726 Don't display `nil' in the error message. (Bug#10857)
13727
137282012-02-22 Alan Mackenzie <acm@muc.de>
13729
13730 * progmodes/cc-mode.el: Revert change #2012-02-06T22:08:41Z!larsi@gnus.org from 2012-02-06.
13731
137322012-02-22 Glenn Morris <rgm@gnu.org>
13733
13734 * ffap.el (ffap-c-path):
13735 * man.el (Man-header-file-path): Handle multiarch. (Bug#10702)
13736
137372012-02-22 Chong Yidong <cyd@gnu.org>
13738
13739 * custom.el (load-theme): Doc fix.
13740
137412012-02-22 Glenn Morris <rgm@gnu.org>
13742
13743 * dired-x.el (dired-guess-shell-alist-default):
13744 Remove escape sequences from nroff output. (Bug#172)
13745
137462012-02-21 Glenn Morris <rgm@gnu.org>
13747
13748 * vc/emerge.el (emerge-defvar-local):
13749 Set `permanent-local' property rather than unused `preserved'.
13750
13751 * textmodes/picture.el (picture-delete-char): New alias.
13752 (picture-mode-map): Use it. (Bug#10860)
13753 (picture-mode): Doc fix.
13754
137552012-02-21 Juanma Barranquero <lekktu@gmail.com>
13756
13757 * newcomment.el (uncomment-region-default): Remove unused binding.
13758
137592012-02-21 Glenn Morris <rgm@gnu.org>
13760
13761 * textmodes/picture.el (picture-motion, picture-motion-reverse)
13762 (picture-self-insert, picture-tab-chars): Doc fix.
13763 (picture-mode-map): Fix C-a, C-e.
13764
137652012-02-20 Glenn Morris <rgm@gnu.org>
13766
13767 * emacs-lisp/authors.el (authors-aliases): Add another entry.
13768
137692012-02-20 Leo Liu <sdl.web@gmail.com>
13770
13771 * icomplete.el (icomplete-completions): Check FROM arg before
13772 passing to substring (Bug#10850).
13773
137742012-02-19 Chong Yidong <cyd@gnu.org>
13775
13776 * comint.el: Require ansi-color.
13777 (comint-output-filter-functions): Add ansi-color-process-output.
13778
13779 * ansi-color.el: Don't set comint-output-filter-functions; it is
13780 now in the initial value defined in comint.el.
13781 (ansi-color-apply-face-function): New variable.
13782 (ansi-color-apply-on-region): Use it.
13783 (ansi-color-apply-overlay-face): New function.
13784
13785 * shell.el (shell): No need to require ansi-color.
13786 (shell-mode): Use ansi-color-apply-face-function to highlight
13787 color escapes using font-lock-face property (Bug#10835).
13788
137892012-02-19 Chong Yidong <cyd@gnu.org>
13790
13791 * vc/ediff-init.el (ediff-strip-mode-line-format): Handle non-list
13792 mode-line formats (Bug#10839).
13793
137942012-02-18 Glenn Morris <rgm@gnu.org>
13795
13796 * mail/rmail.el (rmail-dont-reply-to-names): Mark as obsolete.
13797
13798 * mail/undigest.el (unforward-rmail-message): Doc fix.
13799
13800 * saveplace.el (save-place-ignore-files-regexp): Add :version.
13801
138022012-02-18 Eli Zaretskii <eliz@gnu.org>
13803
13804 * international/characters.el (script-list): Sync with the latest
13805 Unicode Character Database.
13806
138072012-02-18 Andreas Schwab <schwab@linux-m68k.org>
13808
13809 * international/titdic-cnv.el: Remove duplicate coding tag.
13810 * language/cham.el: Likewise.
13811 * language/tai-viet.el: Likewise.
13812
138132012-02-18 Glenn Morris <rgm@gnu.org>
13814
13815 * calendar/cal-menu.el (cal-menu-diary-menu, cal-menu-goto-menu):
13816 * calendar/calendar.el (diary-file, diary-bahai-entry-symbol)
13817 (calendar-bahai-all-holidays-flag, calendar-other-dates):
13818 * calendar/diary-lib.el (diary-abbreviated-year-flag):
13819 * calendar/holidays.el (holiday-bahai-holidays)
13820 (calendar-holidays, list-holidays):
13821 Use utf-8 Bahá'í in doc-strings, menus, etc.
13822
138232012-02-17 Tassilo Horn <tassilo@member.fsf.org>
13824
13825 * saveplace.el (save-place-ignore-files-regexp): New variable
13826 allowing for excluding files from saving their location of point.
13827 The default value matches the temporary commit message editing
13828 files from Git, SVN, Bazaar, and Mercurial.
13829 (save-place-to-alist): Use it.
13830
138312012-02-17 Lawrence Mitchell <wence@gmx.li>
13832 Stefan Monnier <monnier@iro.umontreal.ca>
13833
13834 * newcomment.el (uncomment-region-default): Don't leave extra space
13835 when an arg is provided (bug#8150).
13836
138372012-02-17 Teodor Zlatanov <tzz@lifelogs.com>
13838
13839 * net/gnutls.el (gnutls-trustfiles): Fix Cygwin bundle location.
13840
138412012-02-17 Glenn Morris <rgm@gnu.org>
13842
13843 * net/socks.el: Require network-stream. (Bug#10599)
13844
138452012-02-17 Kenichi Handa <handa@m17n.org>
13846
13847 * international/charprop.el:
13848 * international/uni-name.el:
13849 * international/uni-old-name.el:
13850 * international/uni-comment.el: Regenerate.
13851
138522012-02-16 Glenn Morris <rgm@gnu.org>
13853
13854 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits):
13855 Interactively in calendar buffer, give an error if not on a date.
13856
138572012-02-15 Glenn Morris <rgm@gnu.org>
13858
13859 * shell.el (shell-delimiter-argument-list):
13860 Revert 2011-02-17 change. (Bug#8027)
13861
138622012-02-15 Chong Yidong <cyd@gnu.org>
13863
13864 * minibuffer.el (completion-at-point-functions): Doc fix.
13865
13866 * custom.el (defcustom): Doc fix; note use of defvar.
13867
138682012-02-15 Glenn Morris <rgm@gnu.org>
13869
13870 * mail/smtpmail.el (smtpmail-smtp-user, smtpmail-stream-type):
13871 Doc fixes.
13872
138732012-02-14 Glenn Morris <rgm@gnu.org>
13874
13875 * mail/smtpmail.el (smtpmail-query-smtp-server): Give it a doc.
13876
138772012-02-14 Lars Ingebrigtsen <larsi@gnus.org>
13878
13879 * mail/smtpmail.el (smtpmail-query-smtp-server): Fix typo in the
13880 way the ports list is computed.
13881 (smtpmail-query-smtp-server): Prompt the user for a port number if
13882 we can't connect to any of the standard ports (bug#10810).
13883
138842012-02-14 Teodor Zlatanov <tzz@lifelogs.com>
13885
13886 * net/gnutls.el (gnutls-trustfiles): Add Cygwin location.
13887
138882012-02-13 Glenn Morris <rgm@gnu.org>
13889
13890 * minibuffer.el (read-file-name): Doc fix. (Bug#10798)
13891
138922012-02-13 Teodor Zlatanov <tzz@lifelogs.com>
13893
13894 * net/gnutls.el (gnutls-trustfiles): New variable.
13895 (gnutls-negotiate): Use it.
13896
138972012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
13898
13899 * simple.el (mail-user-agent): Mention that `gnus-user-agent' only
13900 does its stuff if Gnus is running.
13901
139022012-02-13 Alan Mackenzie <acm@muc.de>
13903
13904 Fix a loop in c-set-fl-decl-start.
13905
13906 * progmodes/cc-engine.el (c-set-fl-decl-start): Add a check that
13907 c-backward-syntactic-ws actually moves backwards.
13908
139092012-02-13 Leo Liu <sdl.web@gmail.com>
13910
13911 * net/rcirc.el (rcirc-markup-attributes): Move point to the
13912 beginning so that all \C-o chars are removed.
13913
139142012-02-12 Teodor Zlatanov <tzz@lifelogs.com>
13915
13916 * net/gnutls.el (gnutls-algorithm-priority): Add missing :group tag.
13917
139182012-02-12 Alan Mackenzie <acm@muc.de>
13919
13920 Fix infinite loop with long macros.
13921 * progmodes/cc-engine.el (c-state-safe-place): Handle macros properly.
13922
139232012-02-12 Chong Yidong <cyd@gnu.org>
13924
13925 * window.el (display-buffer): Doc fix (Bug#10785).
13926
139272012-02-12 Glenn Morris <rgm@gnu.org>
13928
13929 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
13930 (x-disown-selection-internal, x-get-selection-internal):
13931 Sync docs with the xselect.c versions.
13932
13933 * allout-widgets.el: Add missing license notice.
13934
139352012-02-11 Glenn Morris <rgm@gnu.org>
13936
13937 * select.el (x-get-selection-internal, x-own-selection-internal)
13938 (x-disown-selection-internal):
13939 * x-dnd.el (x-get-selection-internal): Update declarations.
13940
13941 * vc/log-view.el (vc-diff-internal): Remove unneeded declaration.
13942
13943 * window.el (window-sides-slots):
13944 * tool-bar.el (tool-bar-position):
13945 * term/xterm.el (xterm-extra-capabilities):
13946 * ses.el (ses-self-reference-early-detection):
13947 * progmodes/verilog-mode.el (verilog-auto-declare-nettype)
13948 (verilog-auto-wire-type)
13949 (verilog-auto-delete-trailing-whitespace)
13950 (verilog-auto-reset-blocking-in-non, verilog-auto-inst-sort)
13951 (verilog-auto-tieoff-declaration):
13952 * progmodes/sql.el (sql-login-hook, sql-ansi-statement-starters)
13953 (sql-oracle-statement-starters, sql-oracle-scan-on):
13954 * progmodes/prolog.el (prolog-align-comments-flag)
13955 (prolog-indent-mline-comments-flag, prolog-object-end-to-0-flag)
13956 (prolog-left-indent-regexp, prolog-paren-indent-p)
13957 (prolog-paren-indent, prolog-parse-mode, prolog-keywords)
13958 (prolog-types, prolog-mode-specificators)
13959 (prolog-determinism-specificators, prolog-directives)
13960 (prolog-electric-newline-flag, prolog-hungry-delete-key-flag)
13961 (prolog-electric-dot-flag)
13962 (prolog-electric-dot-full-predicate-template)
13963 (prolog-electric-underscore-flag, prolog-electric-tab-flag)
13964 (prolog-electric-if-then-else-flag, prolog-electric-colon-flag)
13965 (prolog-electric-dash-flag, prolog-old-sicstus-keys-flag)
13966 (prolog-program-switches, prolog-prompt-regexp)
13967 (prolog-debug-on-string, prolog-debug-off-string)
13968 (prolog-trace-on-string, prolog-trace-off-string)
13969 (prolog-zip-on-string, prolog-zip-off-string)
13970 (prolog-use-standard-consult-compile-method-flag)
13971 (prolog-use-prolog-tokenizer-flag, prolog-imenu-flag)
13972 (prolog-imenu-max-lines, prolog-info-predicate-index)
13973 (prolog-underscore-wordchar-flag, prolog-use-sicstus-sd)
13974 (prolog-char-quote-workaround):
13975 * progmodes/cc-vars.el (c-defun-tactic):
13976 * net/tramp.el (tramp-encoding-command-interactive)
13977 (tramp-local-end-of-line):
13978 * net/soap-client.el (soap-client):
13979 * net/netrc.el (netrc-file):
13980 * net/gnutls.el (gnutls):
13981 * minibuffer.el (completion-category-overrides)
13982 (completion-cycle-threshold)
13983 (completion-pcm-complete-word-inserts-delimiters):
13984 * man.el (Man-name-local-regexp):
13985 * mail/feedmail.el (feedmail-display-full-frame):
13986 * international/characters.el (glyphless-char-display-control):
13987 * eshell/em-ls.el (eshell-ls-date-format):
13988 * emacs-lisp/cl-indent.el (lisp-lambda-list-keyword-alignment)
13989 (lisp-lambda-list-keyword-parameter-indentation)
13990 (lisp-lambda-list-keyword-parameter-alignment):
13991 * doc-view.el (doc-view-image-width, doc-view-unoconv-program):
13992 * dired-x.el (dired-omit-verbose):
13993 * cus-theme.el (custom-theme-allow-multiple-selections):
13994 * calc/calc.el (calc-highlight-selections-with-faces)
13995 (calc-lu-field-reference, calc-lu-power-reference)
13996 (calc-note-threshold):
13997 * battery.el (battery-mode-line-limit):
13998 * arc-mode.el (archive-7z-extract, archive-7z-expunge)
13999 (archive-7z-update):
14000 * allout.el (allout-prefixed-keybindings)
14001 (allout-unprefixed-keybindings)
14002 (allout-inhibit-auto-fill-on-headline)
14003 (allout-flattened-numbering-abbreviation):
14004 * allout-widgets.el (allout-widgets-auto-activation)
14005 (allout-widgets-icons-dark-subdir)
14006 (allout-widgets-icons-light-subdir, allout-widgets-icon-types)
14007 (allout-widgets-theme-dark-background)
14008 (allout-widgets-theme-light-background)
14009 (allout-widgets-item-image-properties-emacs)
14010 (allout-widgets-item-image-properties-xemacs)
14011 (allout-widgets-run-unit-tests-on-load)
14012 (allout-widgets-time-decoration-activity)
14013 (allout-widgets-hook-error-post-time)
14014 (allout-widgets-track-decoration):
14015 Add missing :version tags to new defcustoms and defgroups.
14016
14017 * progmodes/sql.el (sql-ansi-statement-starters)
14018 (sql-oracle-statement-starters): Add custom type.
14019
14020 * progmodes/prolog.el: Remove leading '*' from defcustom docs.
14021 (prolog-system-version): Give it a type.
14022
140232012-02-11 Eli Zaretskii <eliz@gnu.org>
14024
14025 * term/pc-win.el (x-select-text, x-selection-owner-p)
14026 (x-own-selection-internal, x-disown-selection-internal)
14027 (x-get-selection-internal): Sync doc strings and argument lists
14028 with xselect.c, common-win.el and x-win.el. (Bug#10783)
14029
140302012-02-11 Leo Liu <sdl.web@gmail.com>
14031
14032 * progmodes/python.el (python-end-of-statement): Fix infinite
14033 loop. (Bug#10788)
14034
140352012-02-10 Glenn Morris <rgm@gnu.org>
14036
14037 * international/mule-cmds.el (unify-8859-on-encoding-mode)
14038 (unify-8859-on-decoding-mode): Properly mark as obsolete.
14039
140402012-02-10 Lars Ingebrigtsen <larsi@gnus.org>
14041
14042 * mail/emacsbug.el (report-emacs-bug-hook): Query the user first
14043 about SMTP before checking the From header.
14044
14045 * mail/sendmail.el (sendmail-query-user-about-smtp): Refactor out
14046 into own function for reuse by emacsbug.el.
14047
140482012-02-10 Leo Liu <sdl.web@gmail.com>
14049
14050 * subr.el (condition-case-unless-debug): Rename from
14051 condition-case-no-debug. All callers changed.
14052 (with-demoted-errors): Fix caller.
14053
14054 * vc/diff-mode.el (diff-auto-refine-mode, diff-hunk):
14055 * nxml/rng-valid.el (rng-do-some-validation):
14056 * emacs-lisp/package.el (package-refresh-contents)
14057 (package-menu-execute):
14058 * desktop.el (desktop-create-buffer):
14059 * font-lock.el (lisp-font-lock-keywords-2): Caller changed.
14060
140612012-02-10 Glenn Morris <rgm@gnu.org>
14062
14063 * textmodes/bibtex.el:
14064 Add missing :version tags for new/changed defcustoms.
14065
14066 * files.el (remote-file-name-inhibit-cache): Doc fixes.
14067
140682012-02-09 Lars Ingebrigtsen <larsi@rusty>
14069
14070 * mail/smtpmail.el (smtpmail-user-mail-address): New function.
14071 (smtpmail-via-smtp): Use it, or fall back on the From address.
14072 (smtpmail-send-it): Ditto.
14073
140742012-02-09 Stefan Monnier <monnier@iro.umontreal.ca>
14075
14076 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
14077 Don't fallback on byte-compile-defvar. Optimize (defvar foo) away.
14078 (byte-compile-tmp-var): New const.
14079 (byte-compile-defvar): Use it to minimize .elc size.
14080 Just use `defvar' rather than simulate it (bug#10761).
14081
140822012-02-09 Glenn Morris <rgm@gnu.org>
14083
14084 * files.el (rename-uniquely): Doc fix. (Bug#3806)
14085
14086 * progmodes/cc-guess.el (c-guess-offset-threshold, c-guess-region-max):
14087 Add :version tags.
14088
14089 * progmodes/compile.el (compilation-error-screen-columns)
14090 (compilation-first-column, compilation-filter-start): Doc fixes.
14091
14092 * vc/log-view.el (log-view-toggle-entry-display):
14093 * vc/vc.el (vc-merge, vc-pull): Doc fixes.
14094
14095 * mail/emacsbug.el (report-emacs-bug-can-use-osx-open)
14096 (report-emacs-bug-can-use-xdg-email):
14097 (report-emacs-bug-insert-to-mailer): Doc fixes.
14098 (report-emacs-bug): Message fix.
14099
14100 * net/browse-url.el (browse-url-can-use-xdg-open)
14101 (browse-url-xdg-open): Doc fixes.
14102
14103 * electric.el (electric-indent-mode, electric-pair-mode)
14104 (electric-layout-rules, electric-layout-mode): Doc fixes.
14105 (electric-pair-pairs, electric-pair-skip-self): Add :version tags.
14106
141072012-02-08 Martin Rudalics <rudalics@gmx.at>
14108
14109 * server.el (server-unselect-display): Don't inadvertently kill
14110 the current buffer. (Bug#10729)
14111
141122012-02-08 Glenn Morris <rgm@gnu.org>
14113
14114 * progmodes/sql.el (sql-port, sql-connection-alist, sql-list-all)
14115 (sql-list-table): Doc fixes.
14116
14117 * image-mode.el (image-transform-minor-mode-map, image-transform-mode):
14118 Comment out (does nothing).
14119
14120 * completion.el (dynamic-completion-mode):
14121 * dirtrack.el (dirtrack-debug-mode):
14122 * electric.el (electric-layout-mode):
14123 * epa-mail.el (epa-mail-mode, epa-global-mail-mode):
14124 * face-remap.el (text-scale-mode, buffer-face-mode):
14125 * iimage.el (iimage-mode):
14126 * image-mode.el (image-transform-mode):
14127 * minibuffer.el (completion-in-region-mode):
14128 * scroll-lock.el (scroll-lock-mode):
14129 * simple.el (next-error-follow-minor-mode):
14130 * tar-mode.el (tar-subfile-mode):
14131 * tooltip.el (tooltip-mode):
14132 * vcursor.el (vcursor-use-vcursor-map):
14133 * wid-browse.el (widget-minor-mode):
14134 * emulation/tpu-edt.el (tpu-edt-mode):
14135 * emulation/tpu-extras.el (tpu-cursor-free-mode):
14136 * international/iso-ascii.el (iso-ascii-mode):
14137 * language/thai-util.el (thai-word-mode):
14138 * mail/supercite.el (sc-minor-mode):
14139 * net/goto-addr.el (goto-address-mode):
14140 * net/rcirc.el (rcirc-multiline-minor-mode, rcirc-track-minor-mode):
14141 * progmodes/cwarn.el (cwarn-mode):
14142 * progmodes/flymake.el (flymake-mode):
14143 * progmodes/glasses.el (glasses-mode):
14144 * progmodes/hideshow.el (hs-minor-mode):
14145 * progmodes/pascal.el (pascal-outline-mode):
14146 * textmodes/enriched.el (enriched-mode):
14147 * vc/smerge-mode.el (smerge-mode):
14148 Doc fixes (minor mode argument).
14149
141502012-02-07 Eli Zaretskii <eliz@gnu.org>
14151
14152 * ls-lisp.el (ls-lisp-sanitize): New function.
14153 (ls-lisp-insert-directory): Use it to fix or remove any elements
14154 in file-alist with missing attributes. (Bug#4673)
14155
141562012-02-07 Alan Mackenzie <acm@muc.de>
14157
14158 Fix spurious recognition of c-in-knr-argdecl.
14159
14160 * progmodes/cc-engine.el (c-in-knr-argdecl): Check for '=' in a
14161 putative K&R region.
14162
141632012-02-07 Alan Mackenzie <acm@muc.de>
14164
14165 * progmodes/cc-engine.el (c-forward-objc-directive):
14166 Prevent looping in "#pragma mark @implementation".
14167
141682012-02-07 Michael Albinus <michael.albinus@gmx.de>
14169
14170 * notifications.el (notifications-on-closed-signal): Make `reason'
14171 optional. (Bug#10744)
14172
141732012-02-07 Glenn Morris <rgm@gnu.org>
14174
14175 * emacs-lisp/easy-mmode.el (define-minor-mode):
14176 Doc fixes for the macro and the mode it defines.
14177
14178 * image.el (imagemagick-types-inhibit): Doc fix.
14179
14180 * cus-start.el (imagemagick-render-type): Add it.
14181
141822012-02-06 Lars Ingebrigtsen <larsi@gnus.org>
14183
14184 * progmodes/cc-mode.el (c-standard-font-lock-fontify-region-function):
14185 Set the default at load time, too, so that `font-lock-fontify-buffer'
14186 can be called without setting up the entire mode first. This fixes
14187 a bug in `mm-inline-text' with C MIME parts.
14188
141892012-02-06 Chong Yidong <cyd@gnu.org>
14190
14191 * simple.el (list-processes--refresh): Delete exited processes
14192 (Bug#8094).
14193
14194 * comint.el (comint-next-prompt): next-single-char-property-change
14195 and prev-single-char-property-change never return nil (Bug#8657).
14196
14197 * custom.el (defcustom): Doc fix (Bug#9711).
14198
141992012-02-05 Chong Yidong <cyd@gnu.org>
14200
14201 * cus-edit.el (custom-variable-reset-backup): Quote the value
14202 before storing it in the customized-value property (Bug#6712).
14203 (custom-display): Add a customization type tag.
14204 (custom-buffer-create-internal): Improve tooltip message.
14205
14206 * wid-edit.el (widget-field-value-get): New optional arg to
14207 suppress trailing whitespace truncation.
14208 (character): Use it (Bug#2689).
14209
142102012-02-05 Andreas Schwab <schwab@linux-m68k.org>
14211
14212 * progmodes/gud.el (gud-pv): Use pv instead of pv1.
14213 * progmodes/gdb-mi.el (gud-pp): Use pp instead of pp1.
14214
142152012-02-05 Chong Yidong <cyd@gnu.org>
14216
14217 * cus-edit.el (custom-variable-value-create): For mismatched
14218 types, show the current value (Bug#7600).
14219
14220 * custom.el (defcustom): Doc fix.
14221
142222012-02-05 Glenn Morris <rgm@gnu.org>
14223
14224 * font-lock.el (lisp-font-lock-keywords-2): Add with-wrapper-hook.
14225
142262012-02-05 Juanma Barranquero <lekktu@gmail.com>
14227
14228 * emacs-lisp/pp.el (pp-to-string): Use `with-temp-buffer'.
14229 (pp-buffer): Use `ignore-errors', `looking-at-p'.
14230 (pp-last-sexp): Use `looking-at-p'.
14231
142322012-02-04 Glenn Morris <rgm@gnu.org>
14233
14234 * files.el (revert-buffer):
14235 Doc fix (mention revert-buffer-in-progress-p).
14236
14237 * emacs-lisp/ert-x.el (ert-simulate-command):
14238 Check deferred-action-list (which is obsolete) is bound.
14239
14240 * subr.el (with-wrapper-hook): Doc fixes.
14241
14242 * simple.el (filter-buffer-substring-functions)
14243 (buffer-substring-filters, filter-buffer-substring): Doc fixes.
14244
142452012-02-04 Lars Ljung <lars@matholka.se> (tiny change)
14246
14247 * eshell/esh-ext.el (eshell-windows-shell-file): Match "cmdproxy"
14248 anywhere in shell-file-name, not just at the beginning. (Bug#10523)
14249
142502012-02-04 Leo Liu <sdl.web@gmail.com>
14251
14252 * emacs-lisp/smie.el: Fix dead link (Bug#10711).
14253
142542012-02-04 Glenn Morris <rgm@gnu.org>
14255
14256 * image.el (image-extension-data): Add obsolete alias.
14257
14258 * isearch.el (isearch-update): Doc fix.
14259
14260 * facemenu.el (list-colors-display): Doc fix (minor rephrasing).
14261
14262 * ido.el (ido-find-file): Doc fix (ido-toggle-vc not on any key).
14263
142642012-02-03 Glenn Morris <rgm@gnu.org>
14265
14266 * image.el (image-animated-p): Doc fix. Use image-animated-types.
14267 (image-animate-timeout): Doc fix.
14268
14269 * image-mode.el (image-animate-loop, image-toggle-animation): Doc fixes.
14270
142712012-02-02 Glenn Morris <rgm@gnu.org>
14272
14273 * server.el (server-auth-dir): Doc fix.
14274 (server-eval-at): Doc fix. Give an explicit error if !server-use-tcp.
14275
14276 * subr.el (run-mode-hooks): Doc fix.
14277
142782012-02-02 Juri Linkov <juri@jurta.org>
14279
14280 * image-mode.el (image-toggle-display-image): Remove tautological
14281 `major-mode' from the `derived-mode-p' test.
14282
142832012-02-02 Kenichi Handa <handa@m17n.org>
14284
14285 * composite.el (compose-region): Cancel previous change.
14286
142872012-02-02 Kenichi Handa <handa@m17n.org>
14288
14289 * composite.el (compose-region, compose-string): Signal error for
14290 a null string component (Bug#6988).
14291
142922012-02-01 Chong Yidong <cyd@gnu.org>
14293
14294 * view.el (view-buffer-other-window, view-buffer-other-frame):
14295 Handle special modes like view-buffer (Bug#10650).
14296 (view-buffer): Simplify.
14297
14298 * frame.el (set-frame-font): Tweak meaning of third argument.
14299
14300 * dynamic-setting.el (font-setting-change-default-font):
14301 Use set-frame-font (Bug#9982).
14302
143032012-02-01 Glenn Morris <rgm@gnu.org>
14304
14305 * progmodes/compile.el (compilation-internal-error-properties):
14306 Respect compilation-first-column in the "*compilation*" buffer.
14307
14308 * emacs-lisp/easy-mmode.el (define-minor-mode):
14309 Relax :variable's test for a named function.
14310
143112012-01-31 Alan Mackenzie <acm@muc.de>
14312
14313 * progmodes/cc-engine.el (c-guess-basic-syntax): CASE 5B.1: Fix an
14314 off by one error.
14315
143162012-01-31 Chong Yidong <cyd@gnu.org>
14317
14318 * frame.el (set-frame-font): New arg ALL-FRAMES.
14319
14320 * menu-bar.el (menu-set-font): Use set-frame-font.
14321
14322 * faces.el (face-spec-reset-face): Don't apply unspecified
14323 attribute values to the default face.
14324
143252012-01-31 Juanma Barranquero <lekktu@gmail.com>
14326
14327 * progmodes/cwarn.el (cwarn): Remove dead link.
14328 (cwarn-configuration, cwarn-verbose, cwarn-mode-text, cwarn-load-hook):
14329 Remove * from defcustom docstrings.
14330 (turn-on-cwarn-mode): Make obsolete.
14331 (c-at-toplevel-p): Remove compatibility code for Emacs 20.3 and older.
14332 (turn-on-cwarn-mode-if-enabled): Call `cwarn-mode'.
14333
143342012-01-31 Glenn Morris <rgm@gnu.org>
14335
14336 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
14337 Fix :variable handling of mode a symbol not equal to modefun.
14338 Allow named functions to be used as the cdr of :variable.
14339
143402012-01-30 Glenn Morris <rgm@gnu.org>
14341
14342 * emacs-lisp/authors.el (authors-fixed-entries):
14343 Remove reference to deleted file rnewspost.el.
14344
143452012-01-29 Juanma Barranquero <lekktu@gmail.com>
14346
14347 * window.el (window-with-parameter): Remove unused variable `windows'.
14348 (window--side-check): Remove unused variable `code'.
14349 (window--resize-siblings): Remove unused variable `first'.
14350 (adjust-window-trailing-edge): Remove unused variable `failed'.
14351 (window-deletable-p, window--delete): Remove unused variable `buffer'.
14352 Use `let', not `let*'.
14353 (balance-windows-2): Remove unused variable `found'.
14354 (window--state-put-2): Remove unused variable `splits'.
14355 (window-state-put): Remove unused variable `selected'.
14356 (same-window-p): Use `string-match-p'.
14357 (display-buffer-assq-regexp): Remove unused variable `value'.
14358 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
14359 Mark argument ALIST as ignored.
14360 (pop-to-buffer): Remove unused variable `old-window'.
14361
143622012-01-29 Eli Zaretskii <eliz@gnu.org>
14363
14364 * jka-cmpr-hook.el (jka-compr-compression-info-list): Support .lz
14365 and .lzma compressed files.
14366
143672012-01-29 Chong Yidong <cyd@gnu.org>
14368
14369 * frame.el (window-system-default-frame-alist): Doc fix.
14370
14371 * dynamic-setting.el (font-setting-change-default-font): Don't
14372 change the default face if SET-FONT argument is non-nil (Bug#9982).
14373
143742012-01-29 Samuel Bronson <naesten@gmail.com>
14375
14376 * custom.el (defcustom): Add doc link to Lisp manual (Bug#10635).
14377
143782012-01-29 Syver Enstad <syver.enstad@cisco.com> (tiny change)
14379
14380 * progmodes/gud.el (pdb): Give pdb full paths, to allow setting
14381 breakpoints in files outside current directory (Bug#6098).
14382
143832012-01-29 Chong Yidong <cyd@gnu.org>
14384
14385 * progmodes/python.el: Require ansi-color at top-level.
14386
14387 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-abbrev-table):
14388 Define and use in Emacs Lisp mode (Bug#9360).
14389 (lisp-mode-abbrev-table): Add doc.
14390 (lisp-mode-variables): Don't set local-abbrev-table.
14391 (lisp-interaction-mode): Use emacs-lisp-mode-abbrev-table.
14392
143932012-01-28 Roland Winkler <winkler@gnu.org>
14394
14395 * textmodes/bibtex.el (bibtex-vec-incr): Fix docstring.
14396
143972012-01-28 Roland Winkler <winkler@gnu.org>
14398
14399 * textmodes/bibtex.el (bibtex-entry-alist): New function.
14400 (bibtex-set-dialect): Use it. Either set global values of
14401 dialect-dependent variables or bind these variables buffer-locally
14402 (Bug#10254).
14403 (bibtex-mode): Call bibtex-set-dialect via
14404 hack-local-variables-hook.
14405 (bibtex-dialect): Update docstring.
14406 Add safe-local-variable predicate.
14407 (bibtex-entry-alist, bibtex-field-alist): Initialize via
14408 bibtex-set-dialect.
14409 (bibtex-mode-map): Define menu for each dialect.
14410 (bibtex-entry): Fix docstring.
14411
144122012-01-28 Chong Yidong <cyd@gnu.org>
14413
14414 * eshell/esh-arg.el (eshell-quote-argument): New function.
14415
14416 * eshell/esh-ext.el (eshell-invoke-batch-file):
14417 * eshell/em-unix.el (eshell/cat, eshell/du): Use it to quote the
14418 first arg to eshell-parse-command (Bug#10523).
14419
144202012-01-28 Drew Adams <drew.adams@oracle.com>
14421
14422 * net/ange-ftp.el (ange-ftp-canonize-filename): Check, that
14423 `default-directory' is non-nil.
14424
144252012-01-28 Eli Zaretskii <eliz@gnu.org>
14426
14427 * mail/emacsbug.el (report-emacs-bug): Fill the potentially long
14428 line that displays system-configuration-options. (Bug#9924)
14429
144302012-01-28 Drew Adams <drew.adams@oracle.com>
14431
14432 * descr-text.el (describe-char): Show information about POS, in
14433 addition to information about the character at POS. Improve and
14434 update the doc string. Change "code point" to "code point in
14435 charset", to avoid confusion with the character's Unicode code
14436 point shown above that. (Bug#10129)
14437
144382012-01-28 Eli Zaretskii <eliz@gnu.org>
14439
14440 * descr-text.el (describe-char): Show the raw character, not only
14441 its display form at POS. Suggested by Kenichi Handa <handa@m17n.org>.
14442 See http://lists.gnu.org/archive/html/emacs-devel/2012-01/msg00760.html
14443 for the reasons.
14444
144452012-01-28 Phil Hagelberg <phil@hagelb.org>
14446
14447 * emacs-lisp/package.el (package-install):
14448 Run package-refresh-contents if there is no archive yet (Bug#9798).
14449
144502012-01-28 Chong Yidong <cyd@gnu.org>
14451
14452 * emacs-lisp/package.el (package-maybe-load-descriptor):
14453 New function, split from package-maybe-load-descriptor.
14454 (package-maybe-load-descriptor): Use it.
14455 (package-download-transaction): Fully load required packages
14456 inside the loop, so that `require' calls work (Bug#10593).
14457 (package-install): No need to call package-initialize now.
14458
144592012-01-28 Chong Yidong <cyd@gnu.org>
14460
14461 * simple.el (deactivate-mark): Doc fix (Bug#8614).
14462
14463 * tooltip.el (tooltip-mode): Doc fix.
14464 (tooltip-use-echo-area): Mark as obsolete (Bug#6595).
14465
14466 * frame.el (set-cursor-color): Doc fix (Bug#352).
14467
14468 * mail/rmail.el (rmail-start-mail): Add send-action again (Bug#10625).
14469 (rmail-mail-return): Switch to NEWBUF only if it is non-nil.
14470
14471 * cus-edit.el (custom-buffer-create-internal): Fix search button
14472 action (Bug#10542).
14473 (customize-unsaved, customize-saved): Doc fix (Bug#10541).
14474
144752012-01-27 Eduard Wiebe <usenet@pusto.de>
14476
14477 * dired.el (dired-mark-files-regexp):
14478 Include any subdirectory components. (Bug#10445)
14479
144802012-01-27 Mike Lamb <mrlamb@gmail.com> (tiny change)
14481
14482 * pcmpl-unix.el (pcmpl-ssh-known-hosts):
14483 Handle [host]:port syntax. (Bug#10533)
14484
144852012-01-27 Alex Harsanyi <harsanyi@mac.com>
14486
14487 * xml.el (xml-parse-tag): Fix parsing of comments (Bug#10405).
14488
144892012-01-26 Glenn Morris <rgm@gnu.org>
14490
14491 * dired-x.el (dired-bind-jump): Use ctl-x-map and ctl-x-4-map.
14492 * term.el (term-raw-escape-map): Use Control-X-prefix.
14493 * vc/vc-hooks.el (vc-prefix-map): Use ctl-x-map. (Bug#10566)
14494
144952012-01-25 Martin Rudalics <rudalics@gmx.at>
14496
14497 * window.el (window-state-get, window--state-get-1): Don't deal
14498 with fixed-sizeness of windows. Simplify code.
14499
145002012-01-25 Jérémy Compostella <jeremy.compostella@gmail.com>
14501
14502 * window.el (window--state-get-1, window--state-put-2):
14503 Don't save and restore the mark.
14504
145052012-01-25 Chong Yidong <cyd@gnu.org>
14506
14507 * custom.el (custom-variable-p): Doc fix.
14508
145092012-01-25 Glenn Morris <rgm@gnu.org>
14510
14511 * dired.el (dired-goto-file): Handle some of the more common
14512 characters that `ls -b' escapes. (Bug#10596)
14513
14514 * progmodes/compile.el (compilation-next-error-function):
14515 Respect compilation-first-column in the "*compilation*" buffer.
14516 * progmodes/grep.el (grep-first-column): New variable. (Bug#10594)
14517
14518 * vc/vc.el (vc-modify-change-comment): Scoping fix. (Bug#10513)
14519
145202012-01-24 Glenn Morris <rgm@gnu.org>
14521
14522 * pcmpl-gnu.el (pcomplete/tar): Handle " - ". (Bug#10457)
14523
145242012-01-24 Julien Danjou <julien@danjou.info>
14525
14526 * color.el (color-rgb-to-hsl): Fix value computing.
14527 (color-hue-to-rgb): New function.
14528 (color-hsl-to-rgb): New function.
14529 (color-clamp, color-saturate-hsl, color-saturate-name)
14530 (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
14531 (color-lighten-name, color-darken-hsl, color-darken-name): New function.
14532
145332012-01-24 Glenn Morris <rgm@gnu.org>
14534
14535 * vc/vc-rcs.el (vc-rcs-create-tag):
14536 * vc/vc-sccs.el (vc-sccs-create-tag):
14537 Fix argument spec to be what vc-create-tag expects. (Bug#10515)
14538
145392012-01-23 Mike Lamb <mrlamb@gmail.com> (tiny change)
14540
14541 * eshell/esh-util.el (eshell-read-hosts-file):
14542 Skip comment lines. (Bug#10549)
14543
14544 * eshell/em-unix.el (pcomplete/ssh): Remove. (Bug#10548)
14545
145462012-01-23 Juanma Barranquero <lekktu@gmail.com>
14547
14548 * subr.el (display-delayed-warnings): Doc fix.
14549 (collapse-delayed-warnings): New function to collapse identical
14550 adjacent warnings.
14551 (delayed-warnings-hook): Add it.
14552
145532012-01-22 Michael Albinus <michael.albinus@gmx.de>
14554
14555 * net/tramp.el (tramp-action-login): Set connection property "login-as".
14556
14557 * net/tramp-sh.el (tramp-methods): Add user spec to "pscp" and "psftp".
14558 (tramp-default-user-alist): Don't add "pscp".
14559 (tramp-do-copy-or-rename-file-out-of-band): Use connection
14560 property "login-as", if set. (Bug#10530)
14561
145622012-01-21 Michael Albinus <michael.albinus@gmx.de>
14563
14564 * net/tramp-sh.el (tramp-default-user-alist): Don't add "plink",
14565 "plink1" and "psftp". (Bug#10530)
14566
145672012-01-21 Kenichi Handa <handa@m17n.org>
14568
14569 * international/mule-cmds.el (prefer-coding-system): Show a
14570 warning message if the default value of file-name-coding-system
14571 was not changed.
14572
145732012-01-21 Jérémy Compostella <jeremy.compostella@gmail.com>
14574
14575 * windmove.el (windmove-reference-loc):
14576 Fix windmove-reference-loc miscalculation.
14577
145782012-01-21 Jay Belanger <jay.p.belanger@gmail.com>
14579
14580 * calc/calc-units.el (math-put-default-units): Don't use "1" as a
14581 default unit.
14582
145832012-01-21 Glenn Morris <rgm@gnu.org>
14584
14585 * international/mule.el (auto-coding-alist): Add .tbz.
14586
14587 * files.el (local-enable-local-variables): Doc fix.
14588 (inhibit-local-variables-regexps): Rename from
14589 inhibit-first-line-modes-regexps. Keep old name as obsolete alias.
14590 Doc fix. Add some extensions from auto-coding-alist.
14591 (inhibit-local-variables-suffixes):
14592 Rename from inhibit-first-line-modes-suffixes. Doc fix.
14593 (inhibit-local-variables-p):
14594 New function, extracted from set-auto-mode-1.
14595 (set-auto-mode): Doc fix. Respect inhibit-local-variables-regexps.
14596 (set-auto-mode-1): Doc fix. Use inhibit-local-variables-p.
14597 (hack-local-variables): Doc fix. Make the mode-only case
14598 respect enable-local-variables and friends.
14599 Respect inhibit-local-variables-regexps for file-locals, but
14600 not for directory-locals.
14601 (set-visited-file-name):
14602 Take account of inhibit-local-variables-regexps.
14603 Whether it applies may change as the file name is changed.
14604 * jka-cmpr-hook.el (jka-compr-install):
14605 * jka-compr.el (jka-compr-uninstall):
14606 Update for inhibit-first-line-modes-suffixes name change.
14607
146082012-01-20 Martin Rudalics <rudalics@gmx.at>
14609
14610 * help-macro.el (make-help-screen): Temporarily restore original
14611 binding for minor-mode-map-alist (Bug#10454).
14612
146132012-01-19 Julien Danjou <julien@danjou.info>
14614
14615 * color.el (color-name-to-rgb): Use the white color to find the max
14616 color component value and return correctly computed values.
14617 (color-name-to-rgb): Add missing float conversion for max value.
14618
146192012-01-19 Martin Rudalics <rudalics@gmx.at>
14620
14621 * window.el (window--state-get-1, window-state-get): Do not use
14622 special state value for window-persistent-parameters.
14623 Rename argument IGNORE to WRITABLE. Rewrite doc-string.
14624 (window--state-put-2): Reset all window parameters to nil before
14625 assigning values of persistent parameters.
14626
146272012-01-18 Alan Mackenzie <acm@muc.de>
14628
14629 Eliminate sluggishness and hangs in fontification of "semicolon
14630 deserts".
14631
14632 * progmodes/cc-engine.el (c-state-nonlit-pos-interval):
14633 Change value 10000 -> 3000.
14634 (c-state-safe-place): Reformulate so it doesn't stack up an
14635 infinite number of wrong entries in c-state-nonlit-pos-cache.
14636 (c-determine-limit-get-base, c-determine-limit): New functions to
14637 determine backward search limits disregarding literals.
14638 (c-find-decl-spots): Amend commenting.
14639 (c-cheap-inside-bracelist-p): New function which detects "={".
14640
14641 * progmodes/cc-fonts.el
14642 (c-make-font-lock-BO-decl-search-function): Give a limit to a
14643 backward search.
14644 (c-font-lock-declarations): Fix an occurrence of point being
14645 undefined. Check additionally for point being in a bracelist or
14646 near a macro invocation without a semicolon so as to avoid a
14647 fruitless time consuming search for a declarator. Give a more
14648 precise search limit for declarators using the new
14649 c-determine-limit.
14650
146512012-01-18 Glenn Morris <rgm@gnu.org>
14652
14653 * files.el (auto-mode-alist, inhibit-first-line-modes-regexps)
14654 (set-auto-mode): Doc fixes.
14655
146562012-01-17 Glenn Morris <rgm@gnu.org>
14657
14658 * isearch.el (search-nonincremental-instead): Fix doc typo.
14659
14660 * dired.el (dired-insert-directory): Handle newlines in directory name.
14661 (dired-build-subdir-alist): Unescape newlines in directory name.
14662
146632012-01-17 Michael Albinus <michael.albinus@gmx.de>
14664
14665 * net/tramp.el (tramp-local-end-of-line): New defcustom.
14666 (tramp-action-login, tramp-action-yesno, tramp-action-yn)
14667 (tramp-action-terminal): Use it. (Bug#10530)
14668
146692012-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
14670
14671 * minibuffer.el (completion--replace): Strip properties (bug#10062).
14672
146732012-01-16 Martin Rudalics <rudalics@gmx.at>
14674
14675 * window.el (window-state-ignored-parameters): Remove variable.
14676 (window--state-get-1): Rename argument MARKERS to IGNORE.
14677 Handle persistent window parameters. Make copy of clone-of
14678 parameter only if requested. (Bug#10348)
14679 (window--state-put-2): Install a window parameter only if it has
14680 a non-nil value or an existing parameter shall be overwritten.
14681
146822012-01-15 Michael Albinus <michael.albinus@gmx.de>
14683
14684 * net/tramp-sh.el (tramp-remote-path): Set tramp-autoload cookie.
14685
146862012-01-14 Eli Zaretskii <eliz@gnu.org>
14687
14688 * info.el (Info-toc-build): If the Info file has no "Up" pointer,
14689 don't pass the (nil) value of `upnode' to string-match.
14690
146912012-01-14 Chong Yidong <cyd@gnu.org>
14692
14693 * startup.el (command-line): Fix X resource class for cursorColor.
14694 Fix values recognized by the cursorBlink resource.
14695
146962012-01-14 Paul Eggert <eggert@cs.ucla.edu>
14697
14698 * epg.el (epg--make-temp-file): Avoid permission race condition
14699 when running on old Emacs versions (bug#10403).
14700
147012012-01-14 Glenn Morris <rgm@gnu.org>
14702
14703 * dired.el (dired-get-filename): Fix 'verbatim case of previous change.
14704
147052012-01-13 Alan Mackenzie <acm@muc.de>
14706
14707 Fix filling for when filladapt mode is enabled.
14708
14709 * progmodes/cc-cmds.el (c-fill-paragraph): In the invocation of
14710 c-mask-paragraph, pass in `fill-paragraph' rather than
14711 `fill-region-as-paragraph'. (This is a reversion of a previous
14712 change.)
14713 * progmodes/cc-mode.el (c-basic-common-init):
14714 Make fill-paragraph-handle-comment buffer local and set it to nil.
14715
147162012-01-13 Glenn Morris <rgm@gnu.org>
14717
14718 * dired.el (dired-switches-escape-p): New function.
14719 (dired-insert-directory): Use dired-switches-escape-p.
14720 (dired-get-filename): Undo "\ " quoting if needed. (Bug#10469)
14721
14722 * find-dired.el (find-ls-option): Doc fix. (Bug#10262)
14723
147242012-01-12 Glenn Morris <rgm@gnu.org>
14725
14726 * mail/sendmail.el (mail-mode): Update paragraph-separate for
14727 changes in adaptive-fill-regexp. (Bug#10276)
14728
147292012-01-11 Alan Mackenzie <acm@muc.de>
14730
14731 Fix Emacs bug #10463 - put `widen's around the critical spots.
14732
14733 * progmodes/cc-engine.el (c-in-literal, c-literal-limits): Put a
14734 widen around each invocation of c-state-pp-to-literal. Remove an
14735 unused let variable.
14736
147372012-01-11 Glenn Morris <rgm@gnu.org>
14738
14739 * dired-aux.el (dired-do-shell-command): Fix */? logic. (Bug#6561)
14740 Doc fix.
14741
147422012-01-10 Chong Yidong <cyd@gnu.org>
14743
14744 * net/network-stream.el (network-stream-open-starttls):
14745 Avoid emitting a confusing error message when the server gives a bad
14746 response to the capability command.
14747
147482012-01-10 Glenn Morris <rgm@gnu.org>
14749
14750 * mail/unrmail.el (unrmail): Tweak previous change.
14751
147522012-01-09 Chong Yidong <cyd@gnu.org>
14753
14754 * custom.el (custom-safe-themes): Use SHA-256 for hashing.
14755
147562012-01-08 Alan Mackenzie <acm@muc.de>
14757
14758 Optimize font locking in long enum definitions.
14759
14760 * progmodes/cc-fonts.el (c-font-lock-declarations): Add an extra
14761 arm to a cond form to handle enums.
14762 * progmodes/cc-langs.el (c-enums-contain-decls): New lang variable.
14763 * progmodes/cc-mode.el (c-font-lock-fontify-region): Correct a typo.
14764
147652012-01-07 Paul Eggert <eggert@cs.ucla.edu>
14766
14767 * files.el (move-file-to-trash): Preserve default file modes on error.
14768 (Bug#10401)
14769
147702012-01-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
14771
14772 * faces.el (set-face-attribute): Clarify the meaning of the nil
14773 frame (bug#10294).
14774
14775 * subr.el (with-selected-frame): Mention that the selected frame
14776 is restored (bug#9980).
14777
14778 * ibuffer.el (ibuffer-mode): List the bindings in the corrent map
14779 (bug#9759).
14780
14781 * mail/smtpmail.el (password-cache-add): Remove unused declaration.
14782 (password-read): Don't autoload unused function.
14783
147842012-01-07 Juanma Barranquero <lekktu@gmail.com>
14785
14786 * progmodes/which-func.el (which-func-mode): Turn into a
14787 non-interactive function and mark as obsolete (bug#10428).
14788
147892012-01-06 Chong Yidong <cyd@gnu.org>
14790
14791 * files.el (hack-dir-local-variables-non-file-buffer): Add doc.
14792 (hack-one-local-variable-eval-safep): Allow 0 arg for minor mode
14793 functions, along with 1 and -1.
14794
147952012-01-06 Eli Zaretskii <eliz@gnu.org>
14796
14797 * time.el (display-time-load-average)
14798 (display-time-default-load-average): Doc fixes. See the thread
14799 starting at
14800 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-01/msg00059.html
14801 for the details.
14802
148032012-01-06 Glenn Morris <rgm@gnu.org>
14804
14805 * mail/unrmail.el (unrmail): Give an explicit error if the input file
14806 has no messages. (Bug#10377)
14807
14808 * info.el (Info-mode-map): Bind e to end-of-buffer, rather
14809 than Info-edit. (Bug#10385)
14810
14811 * time.el (display-time-load-average, display-time-next-load-average):
14812 Doc fixes.
14813
14814 * emacs-lisp/bytecomp.el (byte-compile-file): Do not propagate a file
14815 local setting of buffer-read-only to the input buffer. (Bug#10419)
14816
14817 * calendar/calendar.el (calendar-mode):
14818 Locally set scroll-margin to 0. (Bug#10379)
14819
148202012-01-06 Ulrich Mueller <ulm@gentoo.org>
14821
14822 * play/doctor.el (doctor-death): Escape "," characters. (Bug#10370)
14823
148242012-01-05 Glenn Morris <rgm@gnu.org>
14825
14826 * eshell/em-unix.el (diff-no-select): Autoload it.
14827 (eshell/diff): Use diff-no-select. (Bug#10420)
14828
148292012-01-05 Chong Yidong <cyd@gnu.org>
14830
14831 * shell.el (shell-dynamic-complete-functions): Revert last change.
14832 (shell-command-completion-function): New function.
14833 (shell-completion-vars): Use it to implement
14834 shell-completion-execonly (Bug#10417).
14835
14836 * custom.el (enable-theme): Don't set custom-safe-themes.
14837
14838 * cus-theme.el (custom-theme-merge-theme):
14839 Ignore custom-enabled-themes and custom-safe-themes.
14840
148412012-01-05 Michael R. Mauger <mmaug@yahoo.com>
14842
14843 * progmodes/sql.el (sql-login-hook): Add hook to respond to the
14844 first prompt in `sql-interacive-mode'.
14845 (sql-mode-oracle-font-lock-keywords): Add CONNECT_BY_* builtin
14846 keywords.
14847 (sql-mode-mysql-font-lock-keywords): Add ELSEIF keyword.
14848 (sql-product-interactive): Bug fix: Set `sql-buffer' in
14849 context of original buffer. Invoke `sql-login-hook'.
14850
148512012-01-04 Eli Zaretskii <eliz@gnu.org>
14852
14853 * mail/rmail.el (rmail-font-lock-keywords): Accept non-ASCII
14854 letters in cite-prefix.
14855
148562012-01-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
14857
14858 * mail/smtpmail.el (smtpmail-stream-type): Mention the `ssl' value.
14859
148602012-01-03 Chong Yidong <cyd@gnu.org>
14861
14862 * shell.el (shell-dynamic-complete-functions):
14863 Put pcomplete-completions-at-point, so as to try
14864 comint-filename-completion first (Bug#10417).
14865
148662012-01-02 Richard Stallman <rms@gnu.org>
14867
14868 * battery.el (battery-status-function):
14869 Detect when to use battery-yeeloong-sysfs.
14870 (battery-echo-area-format): Add string for Yeeloong.
14871 (battery-linux-proc-apm, battery-linux-proc-acpi): Doc fixes.
14872 (battery-yeeloong-sysfs): New function.
14873
148742012-01-02 Chong Yidong <cyd@gnu.org>
14875
14876 * dirtrack.el (dirtrack-list): Eliminate unused third element.
14877 (dirtrack): Merge code for handling relative filenames in prompt
14878 from shell-dir-cookie-watcher.
14879 (dirtrack-debug-message): New arg to avoid excess format calls.
14880
14881 * shell.el (shell-dir-cookie-re): Variable deleted.
14882 (shell-dir-cookie-watcher): Function deleted.
14883 (shell-mode): Don't use shell-dir-cookie-re, since it is redundant
14884 with dirtrack-mode.
14885
148862012-01-01 Eli Zaretskii <eliz@gnu.org>
14887
14888 * term/w32-win.el (dynamic-library-alist) <gnutls>:
14889 Load libgnutls-28.dll, from GnuTLS version 3.x, in preference to
14890 libgnutls-26.dll.
14891
148922011-12-31 Andreas Schwab <schwab@linux-m68k.org>
14893
14894 * emacs-lisp/bytecomp.el (byte-compile-file): Fix indentation.
14895
148962011-12-31 Eli Zaretskii <eliz@gnu.org>
14897
14898 * mail/rmail.el (rmail-show-message-1): Decode any RFC2047 encoded
14899 headers of non-MIME messages, when rmail-enable-mime is non-nil.
14900
149012011-12-29 Michael Albinus <michael.albinus@gmx.de>
14902
14903 * net/tramp-sh.el (tramp-find-shell): Set "remote-shell" property
14904 also for alternative shells.
14905 (tramp-open-connection-setup-interactive-shell): Check, whether
14906 the shell is a busybox.
14907 (tramp-send-command): Don't suppress multiple prompts for
14908 busyboxes, it hurts.
14909
149102011-12-28 Chong Yidong <cyd@gnu.org>
14911
14912 * progmodes/gdb-mi.el (gdb-get-source-file-list)
14913 (gdb-get-source-file): Move mode line update to
14914 gdb-get-source-file (Bug#10087).
14915
149162011-12-25 Chong Yidong <cyd@gnu.org>
14917
14918 * progmodes/gud.el (gud-gdb-fetch-lines-filter): Just use
14919 gud-gdb-marker-filter without taking it as an argument.
14920 (gud-gdb-run-command-fetch-lines): Caller changed.
14921 (gud-gdb-completion-function): New variable.
14922 (gud-gdb-completion-at-point): Use it.
14923 (gud-gdb-completions-1): Split from gud-gdb-completions.
14924
14925 * progmodes/gdb-mi.el (gdb-input): Accept command and handler
14926 function as separate arguments.
14927 (gdb-init-1, gdb-non-stop-handler, gdb-check-target-async)
14928 (gdb-tooltip-print-1, gud-watch, gdb-speedbar-update)
14929 (gdb-var-list-children, gdb-var-set-format, gdb-var-delete-1)
14930 (gdb-var-delete-children, gdb-edit-value, gdb-var-update)
14931 (gdb-stopped, def-gdb-auto-update-trigger)
14932 (gdb-place-breakpoints, gdb-select-thread, gdb-select-frame)
14933 (gdb-get-changed-registers, gdb-get-main-selected-frame):
14934 Callers changed.
14935 (gud-gdbmi-completions): New function.
14936 (gdb): Use it for generating the completion table.
14937
149382011-12-24 Alan Mackenzie <acm@muc.de>
14939
14940 Introduce a mechanism to widen the region used in context font
14941 locking. Use this to protect declarations from losing their contexts.
14942
14943 * progmodes/cc-langs.el (c-before-font-lock-functions):
14944 Replace c-set-fl-decl-start with c-change-set-fl-decl-start (Renaming).
14945 (c-before-context-fontification-functions): New defvar, a list of
14946 functions to be run just before context (etc.) font locking.
14947
14948 * progmodes/cc-mode.el (c-extend-font-lock-region-for-macros):
14949 New, functionality extracted from
14950 c-neutralize-syntax-in-and-mark-CPP.
14951 (c-in-after-change-fontification): New variable.
14952 (c-after-change): Set c-in-after-change-fontification.
14953 (c-set-fl-decl-start): Rejig its interface, so it can be called
14954 from both after-change and context fontifying.
14955 (c-change-set-fl-decl-start, c-context-set-fl-decl-start):
14956 New functions.
14957 (c-standard-font-lock-fontify-region-function): New variable.
14958 (c-font-lock-fontify-region): New function.
14959
149602011-12-24 Juri Linkov <juri@jurta.org>
14961
14962 * window.el (window--state-get-1): Set `FORCE' arg of `mark' to t.
14963 (Bug#10348)
14964
149652011-12-23 Michael Albinus <michael.albinus@gmx.de>
14966
14967 * net/ange-ftp.el (ange-ftp-copy-file-internal): Check for
14968 existence of source file. (Bug#10325)
14969
149702011-12-23 Alan Mackenzie <acm@muc.de>
14971
14972 Fix unstable fontification inside templates.
14973
14974 * progmodes/cc-langs.el (c-before-font-lock-functions):
14975 Newly created from the singular version. The (c c++ objc) entry now
14976 additionally has c-set-fl-decl-start. The other languages (apart
14977 from AWK) have that as a single entry.
14978
14979 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
14980 The functionality for "local" declarations has been extracted to
14981 c-set-fl-decl-start.
14982
14983 * progmodes/cc-mode.el (c-common-init, c-after-change):
14984 Changes due to pluralisation of c-before-font-lock-functions.
14985 (c-set-fl-decl-start): New function, extracted from
14986 c-font-lock-enclosing-decls and enhanced.
14987
149882011-12-23 Juanma Barranquero <lekktu@gmail.com>
14989
14990 * desktop.el (desktop-internal-v2s): Fix typos in docstring (bug#10353).
14991
149922011-12-22 Juri Linkov <juri@jurta.org>
14993
14994 * progmodes/grep.el (rgrep): Fix docstring. (Bug#10185)
14995
149962011-12-22 Chong Yidong <cyd@gnu.org>
14997
14998 * vc/vc-hooks.el (vc-keep-workfiles): Doc fix.
14999
150002011-12-21 Drew Adams <drew.adams@oracle.com>
15001
15002 * files.el (file-remote-p): Fix docstring. (Bug#10319)
15003
150042011-12-21 Jérémy Compostella <jeremy.compostella@gmail.com>
15005
15006 * battery.el (battery-linux-sysfs): Add missing parameters from acpi.
15007
150082011-12-21 Teodor Zlatanov <tzz@lifelogs.com>
15009
15010 * progmodes/cfengine.el: Add Version. Improve CFEngine 3.x syntax
15011 highlighting and support. Fix up comments for capitalization.
15012 (cfengine-mode-debug): New var.
15013 (cfengine3-mode): Change the modeline indicator to "CFE3".
15014 (cfengine3-font-lock-keywords): Improve defun highlighting.
15015 (cfengine2-actions): Rename from `cfengine-actions'.
15016 (cfengine2-font-lock-keywords): Rename from
15017 `cfengine-font-lock-keywords'.
15018 (cfengine2-imenu-expression): Rename from
15019 `cfengine-imenu-expression'.
15020 (cfengine2-outline-level): Rename from `cfengine-outline-level'.
15021 (cfengine2-beginning-of-defun): Rename from
15022 `cfengine-beginning-of-defun'.
15023 (cfengine2-end-of-defun): Rename from `cfengine-end-of-defun'.
15024 (cfengine2-indent-line): Rename from `cfengine-indent-line'.
15025 (cfengine2-mode): Rename from `cfengine-mode'. Change the
15026 modeline indicator to "CFE2".
15027 (cfengine-mode): Defalias to `cfengine-auto-mode'.
15028 (cfengine-mode-abbrevs): Mark obsolete.
15029
150302011-12-21 Chong Yidong <cyd@gnu.org>
15031
15032 * vc/vc-bzr.el (vc-bzr-rename-file): Don't pass ~ to Bzr in
15033 filename argument.
15034
150352011-12-20 Martin Rudalics <rudalics@gmx.at>
15036
15037 * window.el (window-normalize-buffer-to-display): Remove.
15038 (display-buffer): Handle buffer-or-name argument as in Emacs 23.
15039
150402011-12-19 Chong Yidong <cyd@gnu.org>
15041
15042 * vc/vc-dir.el (vc-dir-parent-marked-p, vc-dir-children-marked-p):
15043 Don't signal an error in a predicate function; return non-nil.
15044 (vc-dir-mark-file): Move the error here.
15045 (vc-dir-mark-unmark): If acting on the region, keep going if one
15046 of the entries cannot be marked/unmarked.
15047 (vc-dir-mark-all-files): If current entry is a directory, mark
15048 only child files, as documented.
15049
150502011-12-19 Vincent Belaïche <vincentb1@users.sourceforge.net>
15051
15052 * ses.el: Ooops... undo changes of 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net, as trunk
15053 branch is feature frozen, and 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net was a feature
15054 addition.
15055
150562011-12-18 Jan Djärv <jan.h.d@swipnet.se>
15057
15058 * term/ns-win.el (ns-get-selection-internal)
15059 (ns-store-selection-internal): Declare.
15060 (ns-store-cut-buffer-internal, ns-get-cut-buffer-internal):
15061 Declare as obsolete.
15062 (ns-get-pasteboard, ns-paste-secondary):
15063 Use ns-get-selection-internal.
15064 (ns-set-pasteboard, ns-copy-including-secondary):
15065 Use ns-store-selection-internal.
15066
150672011-12-17 Chong Yidong <cyd@gnu.org>
15068
15069 * vc/vc.el (vc-next-action): Doc fix; remove CVS-isms.
15070 (vc-deduce-fileset): Doc fix.
15071
150722011-12-16 Andreas Schwab <schwab@linux-m68k.org>
15073
15074 * calc/calc-misc.el (calc-help): Avoid wrapping help message.
15075
150762011-12-13 Sam Steingold <sds@gnu.org>
15077
15078 * man.el (Man-getpage-in-background): When running under a
15079 window-system, ignore $MANWIDTH and $COLUMNS.
15080
150812011-12-15 Kenichi Handa <handa@m17n.org>
15082
15083 * language/ethio-util.el: Change coding tag to utf-8-emacs.
15084 (setup-ethiopic-environment-internal): Comment out key-binding for
15085 ethio-toggle-punctuation.
15086
150872011-12-13 Alan Mackenzie <acm@muc.de>
15088
15089 Add the switch statement to AWK Mode.
15090
15091 * progmodes/cc-awk.el (awk-font-lock-keywords): Add "switch", "case",
15092 "default" to the keywords regexp.
15093
15094 * progmodes/cc-langs.el (c-label-kwds): Let AWK take the same
15095 expression as the rest.
15096 (c-nonlabel-token-key): Allow string literals for AWK.
15097 Refactor for the other modes.
15098
15099 Large brace-block initialisation makes CC Mode slow: Fix.
15100 Tidy up and accelerate c-in-literal, etc. by using the c-parse-state
15101 routines. Limit backward searching in c-font-lock-enclosing.decl.
15102
15103 * progmodes/cc-engine.el (c-state-pp-to-literal): Return the
15104 pp-state and literal type in addition to the limits.
15105 (c-state-safe-place): New defun, extracted from c-state-literal-at.
15106 (c-state-literal-at): Use the above new defun.
15107 (c-slow-in-literal, c-fast-in-literal): Remove.
15108 (c-in-literal, c-literal-limits): Amend to use c-state-pp-to-literal.
15109
15110 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Check for
15111 being in a literal. Add a limit for backward searching.
15112
15113 * progmodes/cc-mode.el (awk-mode): Don't alias c-in-literal to
15114 c-slow-in-literal.
15115
151162011-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
15117
15118 * progmodes/pascal.el: Declare `ind' as dyn-bound (bug#10264).
15119
151202011-12-13 Martin Rudalics <rudalics@gmx.at>
15121
15122 * window.el (delete-other-windows): Use correct frame in call to
15123 window-with-parameter.
15124
151252011-12-12 Daniel Pfeiffer <occitan@t-online.de>
15126
15127 * progmodes/make-mode.el: Bring it up to date with makepp V2.0.
15128 (makefile-make-font-lock-keywords): Extend meaning of `keywords'.
15129 (makefile-gmake-statements, makefile-makepp-statements):
15130 Use it and add new makepp keywords.
15131 (makefile-makepp-font-lock-keywords): Add new patterns.
15132 (makefile-match-function-end): Match new [...] and [[...]].
15133
151342011-12-11 Juanma Barranquero <lekktu@gmail.com>
15135
15136 * ses.el (ses-call-printer-return, ses-cell-property-get)
15137 (ses-sym-rowcol, ses-printer-validate, ses-formula-record)
15138 (ses-create-cell-variable, ses-reset-header-string)
15139 (ses-cell-set-formula, ses-repair-cell-reference-all)
15140 (ses-self-reference-early-detection, ses-in-print-area, ses-set-curcell)
15141 (ses-check-curcell, ses-call-printer, ses-adjust-print-width)
15142 (ses-print-cell-new-width, ses-formula-references, ses-relocate-formula)
15143 (ses-aset-with-undo, ses-load, ses-truncate-cell)
15144 (ses-read-column-printer, ses-read-default-printer, ses-insert-row)
15145 (ses-delete-row, ses-delete-column, ses-append-row-jump-first-column)
15146 (ses-kill-override, ses-yank-pop, ses-yank-cells, ses-yank-tsf)
15147 (ses-yank-resize, ses-export-tab, ses-mark-row, ses-mark-column)
15148 (ses-renarrow-buffer, ses-insert-range, ses-insert-ses-range)
15149 (ses-safe-printer, ses-safe-formula, ses-warn-unsafe, ses--clean-!)
15150 (ses--clean-_, ses-range, ses-select, ses-center, ses-center-span)
15151 (ses-dashfill, ses-unsafe): Fix typos and reflow docstrings.
15152
151532011-12-11 Vincent Belaïche <vincentb1@users.sourceforge.net>
15154
15155 * ses.el: The overall change is to add cell renaming, that is
15156 setting fancy names for cell symbols other than name matching
15157 "\\`[A-Z]+[0-9]+\\'" regexp .
15158 (ses-create-cell-variable): New defun.
15159 (ses-relocate-formula): Relocate formulas only for cells the
15160 symbols of which are not renamed, i.e. symbols whose names do not
15161 match regexp "\\`[A-Z]+[0-9]+\\'".
15162 (ses-relocate-all): Relocate values only for cells the symbols of
15163 which are not renamed.
15164 (ses-load): Create cells variables as the (ses-cell ...) are read,
15165 in order to check row col consistency with cell symbol name only
15166 for cells that are not renamed.
15167 (ses-replace-name-in-formula): New defun.
15168 (ses-rename-cell): New defun.
15169
151702011-12-11 Chong Yidong <cyd@gnu.org>
15171
15172 * progmodes/gdb-mi.el (gdb): Set comint-prompt-regexp, required
15173 for completion via gud-gdb-fetch-lines-filter (Bug#10274).
15174
151752011-12-11 Eric Hanchrow <eric.hanchrow@gmail.com>
15176
15177 * window.el (other-window): Fix docstring.
15178
151792011-12-10 Eli Zaretskii <eliz@gnu.org>
15180
15181 * mail/rmailsum.el (rmail-header-summary): RFC2047 decode the
15182 `from' or `to' address before taking its substring.
15183 Fixes incorrect display in Rmail summary buffer whereby an RFC2047
15184 encoded name is chopped in the middle of the encoded string, and
15185 thus displayed encoded.
15186
151872011-12-10 Juanma Barranquero <lekktu@gmail.com>
15188
15189 * makefile.w32-in (update-subdirs-CMD): Use a Local Variables section.
15190
151912011-12-10 Eli Zaretskii <eliz@gnu.org>
15192
15193 * textmodes/texnfo-upd.el: Update commentary. Add a warning not
15194 to use texinfo-update-node and commands that call it if the
15195 Texinfo file uses @node lines without next/prev/up pointers.
15196 Correct outdated description about texinfo-master-menu.
15197 (texinfo-all-menus-update, texinfo-master-menu)
15198 (texinfo-update-node, texinfo-every-node-update)
15199 (texinfo-multiple-files-update): Doc fix. Warn against updating
15200 all the @node lines.
15201 (texinfo-master-menu): Only call texinfo-update-node if the prefix
15202 argument is numeric. Explain better in the doc string what the
15203 function really does.
15204 (texinfo-insert-master-menu-list): Improve the error message
15205 displayed if there's no menu in the Top node.
15206 (Bug#2975) See also this thread:
15207 http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00156.html.
15208
152092011-12-09 Manuel Gómez <mgrojo@gmail.com> (tiny change)
15210
15211 * speedbar.el (speedbar-supported-extension-expressions):
15212 Add .adb and .ads, commonly used for Ada source code (bug#10256).
15213
152142011-12-09 Juanma Barranquero <lekktu@gmail.com>
15215
15216 * printing.el (pr-mode-alist):
15217 * simple.el (filter-buffer-substring-functions)
15218 (completion-list-insert-choice-function):
15219 * window.el (window-with-parameter, window-atom-root)
15220 (window-sides-slots, window-size-fixed, window-min-delta)
15221 (window-max-delta, window--resize-mini-window)
15222 (window--resize-child-windows-normal, window-tree)
15223 (delete-other-windows, quit-window, split-window)
15224 (display-buffer-record-window, special-display-buffer-names)
15225 (special-display-regexps, special-display-popup-frame)
15226 (same-window-p, split-window-sensibly)
15227 (display-buffer-overriding-action, display-buffer-alist)
15228 (display-buffer-base-action, display-buffer, switch-to-buffer)
15229 (switch-to-buffer-other-window, switch-to-buffer-other-frame)
15230 (fit-window-to-buffer, recenter-positions)
15231 (mouse-autoselect-window-state, mouse-autoselect-window-select):
15232 * emacs-lisp/syntax.el (syntax-propertize-function): Fix typos
15233 and remove unneeded backslashes in docstrings.
15234
152352011-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
15236
15237 * emacs-lisp/lisp-mode.el (defmethod): Add doc-string-elt (bug#10244).
15238
15239 * pcmpl-gnu.el: Don't fail when there is no Makefile nor -f arg.
15240 (pcmpl-gnu-makefile-regexps): Accept "makefile" as well as files that
15241 end in ".mk".
15242 (pcmpl-gnu-make-rule-names): Check "makefile" and ignore errors
15243 when reading the makefile (bug#10116).
15244
152452011-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
15246
15247 * pcmpl-gnu.el (pcomplete/make): Also allow filename arguments
15248 (bug#10116).
15249
152502011-12-06 Glenn Morris <rgm@gnu.org>
15251
15252 * emacs-lisp/package.el (package-archives): Doc fix re riskiness.
15253
152542011-12-06 Chong Yidong <cyd@gnu.org>
15255
15256 * progmodes/cc-fonts.el (c-annotation-face): Use defface.
15257
152582011-12-06 Juanma Barranquero <lekktu@gmail.com>
15259
15260 * textmodes/table.el (table-shorten-cell): Fix typo.
15261
152622011-12-05 Christopher Genovese <genovese.cr@gmail.com> (tiny change)
15263
15264 * emacs-lisp/assoc.el (aput): Fix return value (bug#10146)
15265
152662011-12-05 Eli Zaretskii <eliz@gnu.org>
15267
15268 * descr-text.el (describe-char): Fix display of strong
15269 right-to-left characters and directional embeddings and overrides.
15270
15271 * simple.el (what-cursor-position): Fix display of codepoints of
15272 strong right-to-left characters.
15273
152742011-12-05 Chong Yidong <cyd@gnu.org>
15275
15276 * faces.el (read-color): Doc fix.
15277
152782011-12-05 Glenn Morris <rgm@gnu.org>
15279
15280 * align.el (align--set-marker): Add doc-string.
15281 Don't try to move something that is not a marker. (Bug#10216)
15282
152832011-12-04 Glenn Morris <rgm@gnu.org>
15284
15285 * calendar/appt.el (appt-add): Rewrite the interactive-spec to avoid
15286 overly zealous deletion of trailing whitespace.
15287
152882011-12-04 Juanma Barranquero <lekktu@gmail.com>
15289
15290 * server.el (server-delete-client): On Windows, do not try to delete
15291 the only terminal.
15292 (server-process-filter): On Windows, treat requests for a tty frame as
15293 if they were for a GUI frame if the running server is in GUI mode.
15294
152952011-12-03 Glenn Morris <rgm@gnu.org>
15296
15297 * textmodes/texinfmt.el (batch-texinfo-format): Doc fix. (Bug#10207)
15298
152992011-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
15300
15301 * electric.el: Streamline electric-indent's hook.
15302 (electric-indent-chars): Revert to simple list.
15303 (electric-indent-functions): New var.
15304 (electric-indent-post-self-insert-function): Use it.
15305
15306 * progmodes/prolog.el (prolog-find-value-by-system): Avoid error when
15307 there's no inferior buffer (bug#10196).
15308 (prolog-consult-compile): Don't use toggle-read-only.
15309
153102011-12-02 Michael Albinus <michael.albinus@gmx.de>
15311
15312 * net/tramp-sh.el (tramp-maybe-open-connection): Handle user
15313 interrupt. (Bug#10187)
15314
153152011-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
15316
15317 * pcmpl-gnu.el (pcomplete/tar): large-file-warn-threshold can be nil
15318 (bug#9160).
15319
15320 * dired-aux.el (dired-query): Don't assume help-char is modifier-free
15321 (bug#10191).
15322
153232011-12-02 Juri Linkov <juri@jurta.org>
15324
15325 * info.el (Info-search): Display "end of manual" when Isearch
15326 reaches the end of single-file Info manual. (Bug#9918)
15327
153282011-12-02 Eli Zaretskii <eliz@gnu.org>
15329
15330 * isearch.el (isearch-message-prefix): Run the input method part
15331 of the prompt through bidi-string-mark-left-to-right. (Bug#10183)
15332
153332011-12-02 Juri Linkov <juri@jurta.org>
15334
15335 * isearch.el (isearch-occur): Use `word-search-regexp' for
15336 `isearch-word'.
15337 (isearch-search-and-update): Add condition for `isearch-word' and
15338 call `word-search-regexp'. (Bug#10145)
15339
153402011-12-01 Glenn Morris <rgm@gnu.org>
15341
15342 * eshell/em-hist.el (eshell-hist-initialize):
15343 Handle eshell-history-size nil and HISTSIZE set or unset.
15344 (eshell-history-file-name, eshell-history-size): Fix custom type.
15345
153462011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
15347
15348 * man.el (Man-completion-table): Fix the lambda case (bug#10168).
15349
153502011-12-01 Michael McNamara <mac@mail.brushroad.com>
15351
15352 * progmodes/verilog-mode.el (verilog-pretty-expr):
15353 Rework verilog-pretty-expr to handle new assignment operators in system
15354 verilog, such as += *= and the like.
15355 (verilog-assignment-operator-re): Regular expression to find the
15356 assigment operator in a verilog assignment.
15357 (verilog-assignment-operation-re): Regular expression to find an
15358 assignment statement for pretty-expr.
15359 (verilog-in-attribute-p): Query returns true if point is in an
15360 attribute context; used to skip these for expression line up from
15361 pretty-expr.
15362 (verilog-in-parameter-p): Query returns true if point is in an
15363 parameter definition context; used to skip these for expression
15364 line up from pretty-expr.
15365 (verilog-in-parenthesis-p): Query returns true if point is in a
15366 parenthetical expression, specifically ( ) but not [ ] or { };
15367 used by pretty-expr.
15368 (verilog-just-one-space): If there is no space, don't add one.
15369 (verilog-get-lineup-indent-2): Specifically skip just attribute
15370 contexts for expression lineup, rather than skipping all
15371 parenthetical expressions.
15372 (verilog-calculate-indent): Fix comment, and fix indent.
15373 (verilog-do-indent): Indent declarations in lists (suggested by
15374 Joachim Lechner).
15375 (verilog-mode-abbrev-table): Populate abbrev mode with the various
15376 skeleton items.
15377 (verilog-sk-ovm-class): Add skeleton for OVM classes (reported
15378 by Alain Mellan).
15379
153802011-12-01 Wilson Snyder <wsnyder@wsnyder.org>
15381
15382 * progmodes/verilog-mode.el (verilog-read-defines): Fix reading
15383 parameters with embedded comments. Reported by Ray Stevens.
15384 (verilog-calc-1, verilog-fork-wait-re) (verilog-forward-sexp,
15385 verilog-wait-fork-re): Fix indentation of "wait fork", bug407.
15386 Reported by Tim Holt.
15387 (verilog-auto): Fix AUTOing a upper module then AUTOing module
15388 instantiated by upper module causing wrong expansion until AUTOed a
15389 second time. Reported by K C Buckenmaier.
15390 (verilog-diff-auto): Fix showing .* as a difference when
15391 `verilog-auto-star-save' off. Reported by Dan Dever.
15392 (verilog-auto-reset, verilog-read-always-signals)
15393 (verilog-auto-reset-blocking-in-non): Fix AUTORESET including
15394 temporary signals in reset list if
15395 verilog-auto-reset-blocking-in-non is nil, and match assignment
15396 style to each signal's assignment type, bug381.
15397 Reported by Thomas Esposito.
15398 (verilog-sk-uvm-class, verilog-uvm-begin-re, verilog-uvm-end-re)
15399 (verilog-uvm-statement-re): Support UVM indentation and
15400 highlighting, with old OVM keywords only.
15401 (verilog-auto-tieoff, verilog-auto-tieoff-declaration):
15402 Support AUTOTIEOFF creating non-wire data types.
15403 Suggested by Jonathan Greenlaw.
15404 (verilog-auto-insert-lisp, verilog-delete-to-paren)
15405 (verilog-forward-sexp-cmt, verilog-forward-sexp-ign-cmt)
15406 (verilog-inject-sense, verilog-read-inst-pins)
15407 (verilog-read-sub-decls, verilog-read-sub-decls-line):
15408 Fix mismatching parenthesis inside commented out code when deleting
15409 AUTOINST, bug383. Reported by Jonathan Greenlaw.
15410 (verilog-auto-ascii-enum): Fix AUTOASCIIENUM one-hot with
15411 non-numeric vector width. Reported by Alex Reed.
15412 (verilog-auto-ascii-enum): Add "onehot" option to work around not
15413 detecting signals with parameter widths. Reported by Alex Reed.
15414 (verilog-auto-delete-trailing-whitespace):
15415 With `verilog-auto-delete-trailing-whitespace' remove trailing
15416 whitespace in auto expansion, bug371. Reported by Brad Dobbie.
15417 (verilog-run-hooks, verilog-scan-cache-flush, verilog-syntax-ppss):
15418 Fix verilog-scan-cache corruption when running user AUTO expansion
15419 hooks that call indentation routines.
15420 (verilog-simplify-range-expression): Fix typo ignoring lower case
15421 identifiers.
15422 (verilog-delete-auto): Fix delete-autos to also remove user created
15423 automatics, as long as they start with AUTO.
15424 (verilog-batch-diff-auto, verilog-diff-auto)
15425 (verilog-diff-function): Add `verilog-diff-auto' and bind to
15426 "C-c?" to report differences in AUTO expansion, ignoring spaces.
15427 (verilog-backward-syntactic-ws-quick, verilog-beg-of-defun-quick)
15428 (verilog-in-paren-quick, verilog-re-search-backward-quick)
15429 (verilog-re-search-forward-quick, verilog-syntax-ppss):
15430 Fix calling `syntax-ppss' when inside auto expansions as the ppss hook
15431 is disabled and its cache will get corrupt, causing AUTOS not to
15432 expand. Instead use only -quick functions.
15433 (verilog-scan-region): Fix scanning over escaped quotes.
15434 (verilog-inside-comment-or-string-p, verilog-inside-comment-p)
15435 (verilog-re-search-backward-quick)
15436 (verilog-re-search-forward-quick, verilog-scan): verilog-scan and
15437 related functions now ignore strings, to fix misparsing of strings
15438 with magic comments embedded in them.
15439 (verilog-read-auto-template):
15440 Fix 'verilog-auto-inst-template-numbers' with extra newline before (.
15441 Reported by Brad Dobbie.
15442 (verilog-read-auto-template):
15443 Fix 'verilog-auto-inst-template-numbers' with comments.
15444 Reported by Brad Dobbie.
15445 (verilog-auto-inst, verilog-auto-inst-param)
15446 (verilog-auto-inst-sort): Add 'verilog-auto-inst-sort' to reduce
15447 merge conflicts with AUTOINST, bug358. Reported by Brad Dobbie.
15448 (verilog-auto-inst-template-numbers): Add 'lhs' policy for
15449 debugging templates without merge conflicts, bug357.
15450 Reported by Brad Dobbie.
15451 (verilog-read-auto-template):
15452 Fix verilog-auto-inst-template-numbers with multiple templates.
15453 Reported by Brad Dobbie.
15454 (verilog-define-abbrev): Fix verilog-mode abbrevs to be system
15455 abbrevs so user won't be asked to save.
15456 (verilog-read-auto-lisp-present): Fix to start at beginning of
15457 buffer in case called outside of verilog-auto.
15458 (verilog-simplify-range-expression): Fix AUTOWIRE expanding "X-1+1"
15459 to "X-2". Reported by Matthew Myers.
15460 (verilog-auto, verilog-auto-inout-in): Add AUTOINOUTIN for creating
15461 all inputs from module templates. Reported by Leith Johnson.
15462 (verilog-module-inside-filename-p): Fix locating programs as with
15463 modules.
15464 (verilog-auto-inst-port): Fix vl-width expressions when using
15465 verilog-auto-inst-param-value, bug331. Reported by Julian Gorfajn.
15466 (verilog-decls-get-regs, verilog-decls-get-signals,
15467 verilog-decls-get-vars, verilog-decls-get-wires, verilog-decls-new,
15468 verilog-modi-cache-add-vars, verilog-modi-cache-add-wires,
15469 verilog-read-decls): Combine reg and wire structures into one var
15470 structure to represent SystemVerilog concepts.
15471 (verilog-auto-ascii-enum, verilog-auto-logic, verilog-auto-reg)
15472 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-wire)
15473 (verilog-auto-wire-type, verilog-insert-definition):
15474 Add verilog-auto-wire-type and AUTOLOGIC to support using
15475 SystemVerilog "logic" keyword instead of "wire"/"reg".
15476 (verilog-auto-reg-input, verilog-decls-get-signals): Fix AUTOWIRE
15477 to declares outputs that also have assignments (presumably in an
15478 ifdef or generate if so there's not a driver conflict).
15479 Reported by Matthew Myers.
15480 (verilog-auto-declare-nettype, verilog-insert-definition):
15481 Add verilog-auto-declare-nettype to fix declarations using
15482 `default_nettype none. Reported by Julian Gorfajn.
15483 (verilog-read-always-signals-recurse, verilog-read-decls)
15484 (verilog-read-sub-decls-gate): Fix infinite loop with (*) and
15485 malformed end statement, bug325. Reported by Joshua Wise and
15486 Andrew Drake.
15487 (verilog-auto-star-safe, verilog-delete-auto-star-implicit)
15488 (verilog-inst-comment-re): Fix not deleting Interfaced comment
15489 when expanding .* in interfaces, bug320.
15490 Reported by Pierre-David Pfister.
15491 (verilog-read-module-name): Fix import statements between module
15492 name and open parenthesis, bug317.
15493 Reported by Pierre-David Pfister.
15494 (verilog-simplify-range-expression): Fix simplification of
15495 multiplications inside AUTOWIRE connections, bug303.
15496 (verilog-auto-inst-port): Support parameter expansion in
15497 multidimensional arrays.
15498 (verilog-read-decls): Fix AUTOREG etc looking for "endproperty"
15499 after "assert property". Reported by Julian Gorfajn.
15500 (verilog-simplify-range-expression): Fix "couldn't merge" errors
15501 with multiplication, bug303.
15502 (verilog-read-decls): Fix parsing of unsigned data types, bug302.
15503 Reported by Jan Frode Lonnum.
15504
155052011-11-30 Juanma Barranquero <lekktu@gmail.com>
15506
15507 * htmlfontify.el (hfy-page-header, hfy-post-html-hooks)
15508 (hfy-shell-file-name, hfy-shell):
15509 * international/fontset.el (x-decompose-font-name): Fix typos.
15510
155112011-11-29 Ken Brown <kbrown@cornell.edu>
15512
15513 * progmodes/gdb-mi.el: Fix bug#9853, bug#9858, and bug#9878.
15514 (gdb-version): Remove defvar.
15515 (gdb-supports-non-stop): New defvar, replacing `gdb-version'.
15516 (gdb-gud-context-command, gdb-non-stop-handler)
15517 (gdb-current-context-command, gdb-stopped): Use it.
15518 (gdb-init-1): Enable pretty printing here.
15519 (gdb-non-stop-handler): Don't enable pretty-printing here.
15520 Check to see if the target supports non-stop mode; if not, turn off
15521 non-stop mode. Use the following.
15522 (gdb-check-target-async): New defun.
15523 (gud-watch, gdb-stopped): Fix whitespace.
15524 (gdb-get-source-file): Don't try to display the source file if
15525 `gdb-main-file' is nil.
15526
155272011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
15528
15529 * align.el: Try to generate fewer markers (bug#10047).
15530 (align--set-marker): New macro.
15531 (align-region): Use it.
15532
155332011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
15534
15535 * isearch.el (isearch-yank-x-selection): Deactivate mark (bug#10022).
15536
155372011-11-29 Chong Yidong <cyd@gnu.org>
15538
15539 * indent.el (indent-for-tab-command, indent-according-to-mode):
15540 Doc fix.
15541 (indent-region): Doc fix. Switch nested ifs to equivalent cond.
15542
155432011-11-29 Michael Albinus <michael.albinus@gmx.de>
15544
15545 * vc/diff-mode.el (diff-find-file-name): Make `read-file-name'
15546 aware of remote file names. (Bug#10124)
15547
155482011-11-29 Chong Yidong <cyd@gnu.org>
15549
15550 * frame.el (auto-raise-mode, auto-lower-mode): Doc fix.
15551
155522011-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
15553
15554 * files.el (find-file): Don't use force-same-window (bug#10144).
15555 * window.el (switch-to-buffer): Better match Emacs-23 behavior and only
15556 use pop-to-buffer if the selected window can't be used.
15557 (pop-to-buffer-same-window): Use display-buffer--same-window-action.
15558
155592011-11-28 Eli Zaretskii <eliz@gnu.org>
15560
15561 * vc/diff-mode.el (diff-mode-map): Don't inherit 'z' => 'M-z' from
15562 special-mode-map.
15563
155642011-11-28 Chong Yidong <cyd@gnu.org>
15565
15566 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix default doc.
15567
155682011-11-27 Nick Roberts <nickrob@snap.net.nz>
15569
15570 * progmodes/gdb-mi.el (gdb-init-1): Condition execution of
15571 gdb-get-source-file-list on gdb-create-source-file-list.
15572
155732011-11-26 Eli Zaretskii <eliz@gnu.org>
15574
15575 * whitespace.el (whitespace-newline): Use a different foreground
15576 color for 16-color light-background displays.
15577
155782011-11-24 Chong Yidong <cyd@gnu.org>
15579
15580 * window.el (display-buffer--special-action): Doc fix.
15581
155822011-11-25 Juanma Barranquero <lekktu@gmail.com>
15583
15584 * emacs-lisp/avl-tree.el (avl-tree--do-copy, avl-tree-create)
15585 (avl-tree-compare-function, avl-tree-empty, avl-tree-enter)
15586 (avl-tree-delete, avl-tree-member, avl-tree-member-p, avl-tree-map)
15587 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar, avl-tree-copy)
15588 (avl-tree-clear, avl-tree-stack, avl-tree-stack-pop)
15589 (avl-tree-stack-first):
15590 * emacs-lisp/cconv.el (cconv--analyse-use):
15591 * net/gnutls.el (gnutls-negotiate): Fix typos.
15592
155932011-11-24 Glenn Morris <rgm@gnu.org>
15594
15595 * lpr.el (lpr-windows-system, lpr-lp-system):
15596 * mail/binhex.el (binhex-begin-line):
15597 * progmodes/grep.el (grep-history, grep-find-history):
15598 * textmodes/flyspell.el:
15599 * vc/pcvs-defs.el (cvs-global-menu):
15600 * vc/vc-bzr.el (vc-bzr-admin-checkout-format-file):
15601 * vc/vc-mtn.el (vc-mtn-admin-dir, vc-mtn-admin-format):
15602 * vc/vc-cvs.el (vc-cvs-registered): Give them basic doc-strings.
15603
15604 * net/tls.el: Fix case of "GnuTLS".
15605
15606 * paths.el (rmail-file-name): Format doc-string for make-docfile.
15607
15608 * version.el (emacs-build-system): Give it a doc-string.
15609
156102011-11-24 Juri Linkov <juri@jurta.org>
15611
15612 * view.el (view-buffer): Revert 2011-07-19T15:01:49Z!larsi@gnus.org from 2011-07-19 (bug#8615).
15613
156142011-11-24 Glenn Morris <rgm@gnu.org>
15615
15616 * mail/rmailmm.el (rmail-mime): When rmail-enable-mime is non-nil,
15617 if called on a non-mime message just toggle the headers. (Bug#8006)
15618
156192011-11-24 Juanma Barranquero <lekktu@gmail.com>
15620
15621 * allout.el (allout-setup, allout-auto-save-temporarily-disabled)
15622 (allout-lead-with-comment-string, allout-structure-deleted-hook)
15623 (allout-mode, allout-chart-subtree, allout-hotspot-key-handler)
15624 (allout-rebullet-heading, allout-open-sibtopic)
15625 (allout-toggle-current-subtree-encryption)
15626 (allout-toggle-subtree-encryption, allout-encrypt-string)
15627 (allout-next-topic-pending-encryption, allout-adjust-file-variable)
15628 (allout-distinctive-bullets-string, allout-auto-activation):
15629 * window.el (window-normalize-buffer-to-display):
15630 * progmodes/verilog-mode.el (verilog-batch-indent):
15631 * textmodes/bibtex.el (bibtex-field-braces-opt)
15632 (bibtex-field-strings-opt):
15633 * vc/cvs-status.el (cvs-tree-merge):
15634 Fix typos.
15635
156362011-11-23 Michael Albinus <michael.albinus@gmx.de>
15637
15638 * rfn-eshadow.el (rfn-eshadow-update-overlay): Let-bind
15639 `non-essential' to t, in order to avoid remote connections.
15640
156412011-11-23 Eli Zaretskii <eliz@gnu.org>
15642
15643 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
15644 On MS-DOS and MS-Windows, compare with loaddefs.el
15645 case-insensitively.
15646
156472011-11-23 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
15648
15649 * mail/unrmail.el (unrmail): Always add blank line. (Bug#7743)
15650
156512011-11-23 Glenn Morris <rgm@gnu.org>
15652
15653 * paths.el (rmail-file-name): Reformat the doc-string so that it
15654 is picked up.
15655
15656 * mail/rmail.el (rmail-message-filter, rmail-auto-file): Doc fixes.
15657 (rmail-auto-file): Ignore case in the "special" field names,
15658 as mail-fetch-field does for all others.
15659
15660 * mail/rmail.el (rmail-forward):
15661 * mail/rmailkwd.el (rmail-set-label):
15662 * mail/rmailout.el (rmail-output, rmail-output-as-seen)
15663 (rmail-output-body-to-file): Give error if no message. (Bug#10082)
15664
15665 * mail/rmail.el (rmail-current-message): Doc fix.
15666
15667 * mail/rmail.el (rmail-message-filter): Mark as obsolete. (Bug#2624)
15668
156692011-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
15670
15671 * server.el (server-eval-and-print): Allow C-g (bug#6585).
15672
156732011-11-22 Glenn Morris <rgm@gnu.org>
15674
15675 * mail/rmailmm.el (test-rmail-mime-handler)
15676 (test-rmail-mime-bulk-handler)
15677 (test-rmail-mime-multipart-handler): Move tests to test/ directory.
15678
156792011-11-21 Juri Linkov <juri@jurta.org>
15680
15681 * calc/calc.el (calc-read-key-sequence):
15682 Let-bind `input-method-function' to nil. (Bug#10018)
15683
156842011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
15685
15686 * emacs-lisp/cl-indent.el (common-lisp-loop-part-indentation):
15687 Tell the caller that the next line needs recomputation, even
15688 though it doesn't start a sexp (bug#10094).
15689
156902011-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
15691
15692 * emacs-lisp/autoload.el (autoload-generate-file-autoloads): Simplify.
15693
156942011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
15695
15696 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
15697 Use force-same-window.
15698
156992011-11-20 Juanma Barranquero <lekktu@gmail.com>
15700
15701 * descr-text.el (describe-char-unicode-data):
15702 * json.el (json-string-escape):
15703 * mail/footnote.el (footnote-unicode-string, footnote-unicode-regexp)
15704 (Footnote-unicode, Footnote-style-p):
15705 * net/ntlm.el (ntlm-get-password-hashes): Fix typos.
15706
157072011-11-20 Chong Yidong <cyd@gnu.org>
15708
15709 * window.el (replace-buffer-in-windows): Restore interactive spec.
15710
157112011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
15712
15713 * electric.el (electric-indent-mode): Fix last change (too optimistic).
15714
15715 * emacs-lisp/bytecomp.el: Silence obsolete warnings more reliably.
15716 (byte-compile-global-not-obsolete-vars): New var.
15717 (byte-compile-check-variable, byte-compile-make-obsolete-variable):
15718 Use it.
15719 (byte-compile-warn-obsolete): Align text with the one in *Help*.
15720
157212011-11-20 Juanma Barranquero <lekktu@gmail.com>
15722
15723 * progmodes/cwarn.el (cwarn-is-enabled, cwarn-font-lock-keywords):
15724 * progmodes/pascal.el (electric-pascal-equal):
15725 * textmodes/reftex-dcr.el (reftex-view-crossref-from-bibtex):
15726 * xml.el (xml-substitute-special): Fix typos.
15727
157282011-11-20 Glenn Morris <rgm@gnu.org>
15729
15730 * mail/rmail.el (rmail-enable-mime-composing): Make it a defcustom.
15731 (rmail-insert-mime-forwarded-message-function, rmail-mime-feature):
15732 Doc fixes.
15733 (rmail-decode-mime-charset): Mark as obsolete.
15734
15735 * mail/rmailsum.el (rmail-message-regexp-p-1):
15736 * mail/rmail.el (rmail-search-message, rmail-forward, rmail-resend):
15737 Before using mime functions, check they are set. (Bug#10077)
15738
157392011-11-19 Juri Linkov <juri@jurta.org>
15740
15741 * info.el (Info-finder-find-node): Use `package--builtins' instead
15742 of `package-alist'. Use node names formed by the pattern "Keyword "
15743 and the keyword name.
15744
157452011-11-19 Andreas Schwab <schwab@linux-m68k.org>
15746
15747 * progmodes/sh-script.el (sh-assignment-regexp): Add entry for bash.
15748
157492011-11-19 Juri Linkov <juri@jurta.org>
15750
15751 * info.el (Info-hide-note-references): Add `:set' tag to `defcustom'
15752 that calls `revert-buffer' on all Info buffers. (Bug#9915)
15753 (Info-revert-find-node): Remove let-bindings `old-buffer-name',
15754 `old-history', `old-history-forward'. Add let-binding
15755 `window-selected'. Remove calls to `kill-buffer',
15756 `switch-to-buffer' and `Info-mode'. Set `Info-current-file' to nil
15757 before calling `Info-find-node', so `Info-find-node-2' will reread
15758 the Info file. Restore window positions only when `window-selected'
15759 is non-nil.
15760
157612011-11-19 Juri Linkov <juri@jurta.org>
15762
15763 * isearch.el (isearch-lazy-highlight-new-loop):
15764 Remove condition `(not isearch-error)'. (Bug#9918)
15765
15766 * misearch.el (multi-isearch-search-fun): Add condition
15767 `(not bound)' to ignore lazy-highlighting search.
15768 Add the search-failed message "end of multi" when the end of
15769 multi-sequence is reached. Uncapitalize the search-failed
15770 message "Repeat for next buffer".
15771
15772 * info.el (Info-search): Add the search-failed message
15773 "end of the manual" when the end of the manual is reached
15774 in Isearch mode.
15775
157762011-11-19 Juri Linkov <juri@jurta.org>
15777
15778 * info.el (Info-find-node-2, Info-select-node, Info-history-find-node):
15779 Use non-destructive `remove' instead of `delete' because
15780 `Info-history-list' stored to `Info-isearch-initial-history-list' in
15781 `Info-isearch-start' might need to be restored in `Info-isearch-end'.
15782
157832011-11-19 Juri Linkov <juri@jurta.org>
15784
15785 * isearch.el (isearch-edit-string): Let-bind `history-add-new-input'
15786 to nil instead of binding `search-ring' and `regexp-search-ring'.
15787 (Bug#9185)
15788
157892011-11-19 Eli Zaretskii <eliz@gnu.org>
15790
15791 * simple.el (line-move): Force movement by logical lines for any
15792 hscrolled window, not only when auto-hscroll-mode is on.
15793 (line-move-visual): Update doc string to that effect. (Bug#10076)
15794
157952011-11-19 Andreas Schwab <schwab@linux-m68k.org>
15796
15797 * language/european.el (macintosh): Define as alias for mac-roman.
15798
157992011-11-19 Eli Zaretskii <eliz@gnu.org>
15800
15801 * mail/rmailmm.el (rmail-mime-display-header)
15802 (rmail-mime-display-tagline, rmail-mime-display-body): New defsubsts.
15803 (rmail-mime-entity-segment, rmail-mime-toggle-raw)
15804 (rmail-mime-toggle-hidden, rmail-mime-insert-text)
15805 (rmail-mime-insert-bulk, rmail-mime-insert-multipart)
15806 (rmail-mime-insert, rmail-mime-insert-tagline): Use them instead
15807 of a raw aref.
15808 (rmail-mime-entity-segment): To get past the tagline, move forward
15809 2 more lines, to account for the 2 empty lines that precede and
15810 follow the line with the buttons.
15811 (rmail-mime-update-tagline): Move one more line, to get past the
15812 empty line that follows the buttons in the tagline. (Bug#9520)
15813
158142011-11-19 Martin Rudalics <rudalics@gmx.at>
15815
15816 * window.el (window-max-delta-1, window-min-delta-1)
15817 (window-min-size-1, window-state-get-1, window-state-put-1)
15818 (window-state-put-2): Use "window--" prefix.
15819
158202011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
15821
15822 * emacs-lisp/smie.el: Improve warnings and conflict detection.
15823 (smie-warning-count): New var.
15824 (smie-set-prec2tab): Use it.
15825 (smie-bnf->prec2): Improve warnings. Add docstring.
15826 (smie-bnf--closer-alist): Rename from smie-bnf-closer-alist.
15827 (smie-bnf--set-class): New function.
15828 (smie-bnf--classify): Rename from smie-bnf-classify. Rewrite to fix
15829 corner case.
15830
15831 * progmodes/compile.el: Obey compilation-first-column in dest buffer.
15832 (compilation-error-properties, compilation-move-to-column):
15833 Handle compilation-first-column while in the target buffer.
15834
15835 * progmodes/cc-engine.el (c-remove-stale-state-cache-backwards):
15836 Don't hardcode point-min==1.
15837
15838 * eshell/esh-cmd.el (eshell-do-eval): Handle `setq' (bug#9907).
15839 (eshell-rewrite-for-command): Remove workaround.
15840 (eshell-do-pipelines, eshell-do-pipelines-synchronously)
15841 (eshell-do-eval, eshell-exec-lisp): Avoid gratuitous setq.
15842 * eshell/esh-util.el (eshell-condition-case, eshell-for): Use declare.
15843
15844 * files-x.el (modify-file-local-variable): Obey commenting conventions.
15845
158462011-11-17 Glenn Morris <rgm@gnu.org>
15847
15848 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
15849 Ignore buffer-local generated-autoload-file if it is the same
15850 as the global value. (Bug#10049)
15851
158522011-11-17 Juanma Barranquero <lekktu@gmail.com>
15853
15854 * textmodes/reftex-toc.el (reftex-toc-return-marker, reftex-toc-help)
15855 (reftex-toc, reftex-toc, reftex-toc-dframe-p, reftex-toc-next-heading)
15856 (reftex-toc-previous-heading, reftex-toc-max-level)
15857 (reftex-toc-goto-line-and-hide, reftex-toc-show-calling-point)
15858 (reftex-toc-quit, reftex-toc-revert, reftex-toc-jump)
15859 (reftex-toc-do-promote, reftex-toc-promote-prepare)
15860 (reftex-toc-promote-action, reftex-toc-extract-section-number)
15861 (reftex-toc-load-all-files-for-promotion, reftex-toc-rename-label)
15862 (reftex-toc-rename-label, reftex-toc-visit-location)
15863 (reftex-toc-visit-location, reftex-toggle-auto-toc-recenter)
15864 (reftex-toggle-auto-toc-recenter, reftex-toggle-auto-toc-recenter)
15865 (reftex-make-separate-toc-frame): Fix typos, and use TOC consistently,
15866 leaving "*toc*" only for references to the buffer.
15867
158682011-11-17 Martin Rudalics <rudalics@gmx.at>
15869
15870 * window.el (window-resize, delete-window, split-window):
15871 Replace window-splits by window-combination-resize.
15872 * cus-start.el (window-splits): Replace by window-combination-resize.
15873
158742011-11-17 Glenn Morris <rgm@gnu.org>
15875
15876 * progmodes/sh-script.el (sh-font-lock-keywords-var):
15877 Make bash entry derive from sh entry, not shell entry.
15878
158792011-11-16 Michael Albinus <michael.albinus@gmx.de>
15880
15881 * net/tramp-sh.el (tramp-sh-handle-file-truename): Cache only the
15882 local file name.
15883
158842011-11-16 Juanma Barranquero <lekktu@gmail.com>
15885
15886 * menu-bar.el (menu-bar-file-menu):
15887 * printing.el (pr-ps-utility):
15888 * calendar/icalendar.el (icalendar, icalendar--convert-tz-offset)
15889 (icalendar--convert-to-ical, icalendar--convert-ordinary-to-ical)
15890 (icalendar--convert-weekly-to-ical, icalendar--convert-yearly-to-ical)
15891 (icalendar--convert-sexp-to-ical, icalendar--convert-block-to-ical)
15892 (icalendar--convert-float-to-ical, icalendar--convert-date-to-ical)
15893 (icalendar--convert-cyclic-to-ical)
15894 (icalendar--convert-anniversary-to-ical, icalendar-import-buffer)
15895 (icalendar--convert-ical-to-diary)
15896 (icalendar--convert-recurring-to-diary)
15897 (icalendar--convert-non-recurring-all-day-to-diary)
15898 (icalendar-import-format-sample):
15899 * progmodes/idlw-shell.el (idlwave-shell-mode):
15900 * progmodes/vhdl-mode.el (vhdl-mode, vhdl-print-two-column)
15901 (vhdl-print-customize-faces, vhdl-mode, vhdl-ps-print-settings)
15902 (vhdl-ps-print-init): Fix typos.
15903
159042011-11-16 Ken Manheimer <ken.manheimer@gmail.com>
15905
15906 * allout.el, allout-widgets.el (file metadata): Attribute copyright to
15907 FSF and collapse date sequence, obscure author/maintainer email address
15908 better, remove extra version line, track relocation of author's webpage.
15909
15910 * progmodes/python.el (python-pdbtrack-input-prompt)
15911 (python-pdbtrack-track-stack-file): Adjust to recognize ipdb as well as
15912 regular python pdb prompts. Adjustments shamelessly taken exactly as
15913 suggested in EmacsWiki page (tiny change):
15914 http://www.emacswiki.org/PythonProgrammingInEmacs#toc14
15915
159162011-11-16 Juanma Barranquero <lekktu@gmail.com>
15917
15918 * expand.el (expand-pos, expand-index, expand-point):
15919 Remove redundant info from docstring.
15920 (expand-add-abbrevs): Doc fix.
15921 (expand-c-sample-expand-list, expand-sample-lisp-mode-expand-list)
15922 (expand-sample-perl-mode-expand-list): Fix typos.
15923
15924 * net/dbus.el (dbus-event-member-name):
15925 * play/5x5.el (5x5-solve-rotate-left, 5x5-solver-output):
15926 * term/pc-win.el (msdos-create-frame-with-faces):
15927 * textmodes/texinfmt.el (texinfo-format-image): Fix typos.
15928
159292011-11-16 Martin Rudalics <rudalics@gmx.at>
15930
15931 * window.el (split-window, window-state-get-1)
15932 (window-state-put-1, window-state-put-2): Rename occurrences of
15933 window-nest to window-combination-limit.
15934 * cus-start.el (window-nest): Rename to window-combination-limit.
15935
159362011-11-16 Chong Yidong <cyd@gnu.org>
15937
15938 * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip
15939 regexp (Bug#10033).
15940
159412011-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
15942
15943 * tmm.el (tmm-prompt): Use minibuffer-with-setup-hook (bug#10053).
15944 `completing-read' will remove *Completions* and will preserve
15945 current-buffer for us.
15946 (tmm-add-prompt): Users of *Completions* will always (re)set its
15947 major mode.
15948 (tmm-old-comp-map): Remove.
15949
159502011-11-16 Glenn Morris <rgm@gnu.org>
15951
15952 * mail/rmailedit.el: Require rmailmm when compiling.
15953 (rmail-old-mime-state): New declaration.
15954 (rmail-edit-current-message): If editing a mime message,
15955 edit the "raw" message from the mbox buffer.
15956 (rmail-cease-edit): Handle mime messages. (Bug#9840)
15957
159582011-11-15 Glenn Morris <rgm@gnu.org>
15959
15960 * mail/rmailmm.el (rmail-mime-toggle-raw): Remove entity arg,
15961 which wasn't being used. Add optional arg to force given state.
15962 (rmail-mime): Add optional arg to force given state.
15963
159642011-11-15 Juanma Barranquero <lekktu@gmail.com>
15965
15966 * allout.el (allout-encryption-plaintext-sanitization-regexps):
15967 * frame.el (display-mm-dimensions-alist):
15968 * outline.el (outline-mode-menu-bar-map, outline-move-subtree-up)
15969 (outline-move-subtree-down):
15970 * net/newst-treeview.el (newsticker--treeview-do-get-node-of-feed)
15971 (newsticker--treeview-do-get-node):
15972 * net/quickurl.el (quickurl-list-buffer-name):
15973 * progmodes/dcl-mode.el (dcl-mode):
15974 * progmodes/gdb-mi.el (gdb-mapcar*):
15975 * progmodes/sql.el (sql-mode-oracle-font-lock-keywords): Fix typos.
15976
159772011-11-15 Glenn Morris <rgm@gnu.org>
15978
15979 * mail/rmail.el (rmail-file-coding-system): It's only ever used
15980 in a boolean sense, so just make it a boolean, and fix the doc.
15981 (rmail-show-mime-function, rmail-mime-feature)
15982 (rmail-require-mime-maybe): Doc fixes.
15983 (rmail-show-message-1): Check rmail-show-mime-function is non-nil.
15984
15985 * mail/rmailmm.el (rmail-show-mime): Doc fix.
15986
159872011-11-15 Juanma Barranquero <lekktu@gmail.com>
15988
15989 * epg.el (epg-start-decrypt, epg-start-verify, epg-start-sign)
15990 (epg-start-encrypt, epg-start-export-keys, epg-start-import-keys)
15991 (epg-start-receive-keys, epg-start-delete-keys, epg-start-sign-keys)
15992 (epg-start-generate-key, epg-context-set-progress-callback): Fix typos.
15993
159942011-11-15 Glenn Morris <rgm@gnu.org>
15995
15996 * mail/rmailmm.el (rmail-mime-entity, rmail-mime-entity-segment)
15997 (rmail-mime-shown-mode, rmail-mime-hidden-mode, rmail-mime-raw-mode)
15998 (rmail-mime-toggle-hidden, rmail-mime-insert-tagline)
15999 (rmail-mime-insert-header, rmail-mime-handle, rmail-mime-parse)
16000 (rmail-mime, rmail-show-mime): Doc fixes.
16001
16002 * term/ns-win.el (mode-line-frame-identification):
16003 Leave it alone. (Bug#10051)
16004
16005 * simple.el (mark-whole-buffer): Doc fix. (Bug#10023)
16006
16007 * mail/rmailout.el (rmail-output-to-rmail-buffer):
16008 Handle empty buffers. (Bug#9978)
16009
160102011-11-14 Juanma Barranquero <lekktu@gmail.com>
16011
16012 * international/mule.el (define-charset):
16013 * mail/rmailmm.el (rmail-mime-find-header-encoding):
16014 * progmodes/prolog.el (prolog-mode-hook, prolog-inferior-mode-hook):
16015 * progmodes/verilog-mode.el (verilog-backward-token):
16016 * textmodes/ispell.el (lookup-words):
16017 * textmodes/sgml-mode.el (sgml-guess-indent): Fix typos.
16018
160192011-11-14 Glenn Morris <rgm@gnu.org>
16020
16021 * progmodes/executable.el
16022 (executable-make-buffer-file-executable-if-script-p):
16023 Handle file-modes returning nil.
16024
16025 * mail/rmailsum.el (rmail-summary): Remove movement to beginning of
16026 message - not necessary, and causes problems. (Bug#9831)
16027
16028 * mail/rmailsum.el (rmail-new-summary): Preserve message number.
16029
16030 * mail/rmail.el (rmail-no-mail-p): Remove mode-line N/M indicator.
16031
16032 * mail/rmailsum.el (rmail-summary, rmail-new-summary)
16033 (rmail-new-summary-1): Allow empty summaries. (Bug#9964)
16034 (rmail-new-summary): Remember that rmail-summary-buffer is buffer-local.
16035
160362011-11-12 Martin Rudalics <rudalics@gmx.at>
16037
16038 * window.el (window-resize, delete-window): Use window-splits
16039 variable instead of function.
16040 (window-state-get-1, window-state-put-2, window-state-put):
16041 Don't deal with windows' splits status.
16042
160432011-11-12 Glenn Morris <rgm@gnu.org>
16044
16045 * apropos.el (apropos-do-all, apropos-library, apropos-value)
16046 (apropos-documentation): Doc fixes.
16047
160482011-11-11 Juanma Barranquero <lekktu@gmail.com>
16049
16050 * progmodes/idlw-shell.el (idlwave-shell-make-new-bp-overlay):
16051 * textmodes/sgml-mode.el (html-tag-help): Fix typos.
16052
160532011-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
16054
16055 * electric.el (electric-indent-post-self-insert-function): Make it
16056 possible for a char to only indent in some circumstances.
16057 (electric-indent-mode): Simplify.
16058
160592011-11-11 Martin Rudalics <rudalics@gmx.at>
16060
16061 * window.el (windows-with-parameter): Remove unused function.
16062 (windows-at-side): Rename to window-at-side-list.
16063 (window-check, window-atom-check, window-atom-check-1)
16064 (window-side-check, window-size-ignore, window-size-fixed-1)
16065 (window-in-direction-2): Prefix with "window--".
16066 (window-tree-1): Rename to window--subtree, fix doc-string.
16067
160682011-11-11 Glenn Morris <rgm@gnu.org>
16069
16070 * subr.el (eval-after-load): If FILE is already loaded,
16071 evaluate FORM before it gets wrapped in more stuff. (Bug#10009)
16072
160732011-11-10 Glenn Morris <rgm@gnu.org>
16074
16075 * vc/vc-svn.el (vc-svn-create-repo, vc-svn-modify-change-comment):
16076 Call svn via vc-svn-command rather than vc-do-command.
16077 (vc-svn-command): Add --non-interactive. (Bug#9993)
16078 (vc-svn-update, vc-svn-merge-news): No need for --non-interactive.
16079
16080 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
16081 Add toggle-read-only. (Bug#7292)
16082 * files.el (toggle-read-only): Mention that it should only
16083 be used interactively. (Bug#10006)
16084
160852011-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
16086
16087 * progmodes/compile.el (compilation-error-regexp-alist-alist):
16088 Adjust regexp for OCaml warnings.
16089
16090 * electric.el (electric-pair-post-self-insert-function): Let user
16091 turn it off buffer-locally (bug#9932).
16092
16093 * progmodes/python.el (python-beginning-of-statement):
16094 Rewrite (bug#2703).
16095
16096 * progmodes/compile.el: Better handle TABs (bug#9749).
16097 (compilation-internal-error-properties)
16098 (compilation-next-error-function): Obey the target buffer's
16099 compilation-error-screen-columns.
16100
161012011-11-09 Juanma Barranquero <lekktu@gmail.com>
16102
16103 * progmodes/meta-mode.el: Remove obsolete comments.
16104 (meta-right-comment-regexp, meta-ignore-comment-regexp):
16105 Fix typos in docstrings.
16106
161072011-11-09 Martin Rudalics <rudalics@gmx.at>
16108
16109 * window.el (window-size-fixed-p): Rewrite doc-string.
16110 (window-resizable-p): Rename to window--resizable-p. Update callers.
16111 (window--resizable): New function. Make all callers of
16112 window-resizable call window--resizable instead.
16113 (window-resizable): Rewrite in terms of window--resizable.
16114
161152011-11-08 Glenn Morris <rgm@gnu.org>
16116
16117 * progmodes/delphi.el (delphi-mode-syntax-table):
16118 Let define-derived-mode define a proper syntax table. (Bug#9994)
16119
161202011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
16121
16122 * window.el: Stay away from defsubst.
16123 (window-list-no-nils): Remove.
16124 (window-state-get-1, window-state-get): Use backquote instead.
16125
161262011-11-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
16127
16128 * emacs-lisp/find-func.el (find-function-read):
16129 Fix incorrect use of default argument in `completing-read'.
16130
161312011-11-08 Martin Rudalics <rudalics@gmx.at>
16132
16133 * window.el (display-buffer-function, special-display-function):
16134 Mention display-buffer-record-window but do not mention
16135 help-setup parameter in doc-strings.
16136 (window-min-delta): Fix doc-string typo.
16137
161382011-11-08 Chong Yidong <cyd@gnu.org>
16139
16140 * window.el (window-total-height, window-total-width): Doc fix.
16141 (window-body-size): Move from C.
16142 (window-body-height, window-body-width): Move to C.
16143
161442011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
16145
16146 * window.el: Make special-display like display-buffer-alist (bug#9532).
16147 (display-buffer--special-action): New function, morphed
16148 from display-buffer--special.
16149 (display-buffer): Use it to handle special-display-buffers at higher
16150 priority (just after display-buffer-alist).
16151 (display-buffer-fallback-action, display-buffer--other-frame-action)
16152 (pop-to-buffer-same-window): Remove display-buffer--special.
16153
161542011-11-07 Glenn Morris <rgm@gnu.org>
16155
16156 * calendar/cal-menu.el (cal-menu-set-date-title):
16157 Do nothing if not in a calendar. (Bug#9976)
16158
161592011-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
16160
16161 * files.el (find-file): Always use selected-window.
16162
161632011-11-07 Martin Rudalics <rudalics@gmx.at>
16164
16165 * window.el (window-combinations): Make WINDOW argument
16166 mandatory. Rewrite doc-string.
16167 (walk-window-subtree, window-atom-check, window-min-delta)
16168 (window-max-delta, window--resize-this-window)
16169 (window--resize-root-window-vertically, window-tree)
16170 (balance-windows, window-state-put): Rewrite doc-strings as to
16171 not mention the term "subwindow".
16172 (window--resize-subwindows-skip-p): Rename to
16173 window--resize-child-windows-skip-p.
16174 (window--resize-subwindows-normal): Rename to
16175 window--resize-child-windows-normal.
16176 (window--resize-subwindows): Rename to
16177 window--resize-child-windows.
16178 (window-or-subwindow-p): Rename to window--in-subtree-p.
16179
161802011-11-07 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
16181
16182 * mail/rmail.el (rmail-get-new-mail, rmail-insert-inbox-text):
16183 Ensure that mbox format messages end in two newlines (Bug#9974).
16184
161852011-11-06 Chong Yidong <cyd@gnu.org>
16186
16187 * window.el (window-combination-p): Function deleted; its
16188 side-effect is not used in any existing code.
16189 (window-combinations, window-combined-p): Call window-*-child
16190 directly.
16191
161922011-11-05 Chong Yidong <cyd@gnu.org>
16193
16194 * window.el (window-valid-p): Rename from window-any-p.
16195 (window-size-ignore, window-state-get): Callers changed.
16196 (window-normalize-window): Rename from window-normalize-any-window.
16197 New arg LIVE-ONLY, replacing window-normalize-live-window.
16198 (window-normalize-live-window): Delete.
16199 (window-combination-p, window-combined-p, window-combinations)
16200 (walk-window-subtree, window-atom-root, window-min-size)
16201 (window-sizable, window-sizable-p, window-size-fixed-p)
16202 (window-min-delta, window-max-delta, window-resizable)
16203 (window-resizable-p, window-full-height-p, window-full-width-p)
16204 (window-current-scroll-bars, window-point-1, set-window-point-1)
16205 (window-at-side-p, window-in-direction, window-resize)
16206 (adjust-window-trailing-edge, maximize-window, minimize-window)
16207 (window-deletable-p, delete-window, delete-other-windows)
16208 (record-window-buffer, unrecord-window-buffer)
16209 (switch-to-prev-buffer, switch-to-next-buffer, window--delete)
16210 (quit-window, split-window, window-state-put)
16211 (set-window-text-height, fit-window-to-buffer)
16212 (shrink-window-if-larger-than-buffer): Callers changed.
16213
162142011-11-04 Eli Zaretskii <eliz@gnu.org>
16215
16216 * mail/rmail.el (rmail-simplified-subject): Decode subject with
16217 rfc2047-decode-string.
16218 (rmail-mime-toggle-hidden): Declare to avoid byte-compilation
16219 warnings.
16220
16221 * window.el (window-body-height, window-body-width): Mention in
16222 the doc string that the return values are in frame's canonical
16223 units. (Bug#9949)
16224
162252011-11-03 Alan Mackenzie <acm@muc.de>
16226
16227 * progmodes/cc-langs.el (c-nonlabel-token-2-key): New variable for
16228 change in cc-engine.el.
16229
162302011-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
16231
16232 * window.el (switch-to-buffer): Use `force-same-window' interactively.
16233
162342011-11-02 Martin Rudalics <rudalics@gmx.at>
16235
16236 * window.el (quit-window): Call unrecord-window-buffer after
16237 showing another buffer in the window. (Bug#9937)
16238 (bury-buffer): Call switch-to-prev-buffer with second argument `bury'.
16239
162402011-11-02 Juanma Barranquero <lekktu@gmail.com>
16241
16242 * vc/vc-bzr.el (vc-bzr-state, vc-bzr-after-dir-status):
16243 Accept status with more than 9 shelves. (Bug#9935)
16244 Reported by Colin D Bennett <colin@gibibit.com>.
16245
162462011-11-01 Martin Rudalics <rudalics@gmx.at>
16247
16248 * help.el (with-help-window): Don't reference
16249 temp-buffer-show-specifiers in doc-string.
16250
162512011-10-31 Andreas Schwab <schwab@linux-m68k.org>
16252
16253 * subr.el (keymap--menu-item-with-binding): Ignore item if not a
16254 menu-item.
16255
162562011-10-30 Vinicius Jose Latorre <viniciusjl@ig.com.br>
16257
16258 * whitespace.el: New version 13.2.2.
16259 (whitespace-newline-mode): Disable properly. Reported by Sarah
16260 <EmacsWiki>.
16261
162622011-10-30 Ulf Jasper <ulf.jasper@web.de>
16263
16264 * net/newst-treeview.el: Remove "Time-stamp".
16265 (newsticker--group-manage-orphan-feeds): Do not call
16266 newsticker--treeview-tree-update.
16267 (newsticker-treeview-update, newsticker-treeview):
16268 Call newsticker--treeview-tree-update if necessary.
16269
162702011-10-30 Martin Rudalics <rudalics@gmx.at>
16271
16272 * window.el (window-iso-combination-p, window-iso-combined-p)
16273 (window-iso-combinations): Remove "iso-" infix.
16274 Suggested by Chong Yidong.
16275 (window-min-size-1, window-size-fixed-1, window-min-delta-1)
16276 (window-max-delta-1, window-resize, window--resize-siblings)
16277 (window--resize-this-window, adjust-window-trailing-edge)
16278 (split-window, balance-windows-1)
16279 (shrink-window-if-larger-than-buffer):
16280 * calendar/calendar.el (calendar-generate-window):
16281 * help.el (resize-temp-buffer-window): Adjust callers accordingly.
16282
162832011-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
16284
16285 * eshell/esh-cmd.el (eshell-rewrite-for-command): Don't modify the list
16286 in place (bug#9907).
16287 (eshell-subcommand-arg-values, eshell-rewrite-named-command)
16288 (eshell-rewrite-if-command, eshell-rewrite-for-command)
16289 (eshell-structure-basic-command, eshell-rewrite-while-command)
16290 (eshell-invokify-arg, eshell-parse-pipeline, eshell-parse-command)
16291 (eshell-parse-subcommand-argument, eshell-parse-lisp-argument)
16292 (eshell-trap-errors, eshell-do-pipelines, eshell-do-eval)
16293 (eshell-do-pipelines-synchronously, eshell-eval-command):
16294 Use backquotes and prefer setq to set.
16295 (eshell-lookup-function, function-p-func, eshell-functionp): Remove.
16296 (eshell-macrop): Use functionp.
16297 (eshell-do-eval): Handle multiple expressions in `while' body.
16298
162992011-10-30 Chong Yidong <cyd@gnu.org>
16300
16301 * emulation/viper-cmd.el (viper-exec-change): Use push-mark
16302 instead of set-mark (Bug#9810).
16303
163042011-10-30 Chong Yidong <cyd@gnu.org>
16305
16306 * window.el (split-window-below, split-window-right): Rename from
16307 split-window-above-each-other and split-window-side-by-side
16308 respectively. All callers changed.
16309 (split-window-sensibly, split-window-sensibly): Use them.
16310 (split-window-keep-point): Doc fix.
16311
16312 * isearch.el: Add isearch-scroll property to split-window-below
16313 and split-window-right.
16314
16315 * follow.el (follow-mode):
16316 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
16317 * progmodes/ada-xref.el (ada-gdb-application):
16318 * emulation/vip.el (vip-buffer-in-two-windows):
16319 * image-dired.el (image-dired-dired-with-window-configuration):
16320 * dired-x.el (dired-do-find-marked-files):
16321 * dired.el (dired-pop-to-buffer):
16322 * bs.el (bs--show-with-configuration):
16323 * vc/emerge.el (emerge-setup-windows):
16324 * textmodes/two-column.el (2C-two-columns):
16325 * textmodes/reftex-toc.el (reftex-toc):
16326 * progmodes/gdb-mi.el (gdb-setup-windows):
16327 * progmodes/fortran.el (fortran-window-create):
16328 * net/newst-treeview.el (newsticker--treeview-window-init):
16329 * emulation/ws-mode.el (wordstar-C-o-map, wordstar-mode):
16330 * emulation/tpu-edt.el (tpu-gold-map):
16331 * emulation/crisp.el (crisp-mode-map):
16332 * calendar/calendar.el (calendar-basic-setup): Callers changed.
16333
163342011-10-29 Chong Yidong <cyd@gnu.org>
16335
16336 * subr.el (y-or-n-p): Add code for batch mode (Bug#9818).
16337
16338 * mouse.el (mouse-yank-primary): Push the mark (Bug#9894).
16339
16340 * textmodes/flyspell.el (flyspell-word): Fix char offset for
16341 forged Ispell output (Bug#7904).
16342
16343 * emacs-lisp/package.el (package-refresh-contents): Add autoload.
16344
163452011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
16346
16347 * doc-view.el: Avoid ugly errors about not finding nil.
16348 (doc-view-ghostscript-program, doc-view-dvipdfm-program)
16349 (doc-view-dvipdf-program, doc-view-unoconv-program)
16350 (doc-view-ps2pdf-program, doc-view-pdftotext-program):
16351 Avoid nil or absolute file name as default value.
16352 (doc-view-pdf->txt, doc-view-ps->pdf): Use executable-find here.
16353
163542011-10-28 Alan Mackenzie <acm@muc.de>
16355
16356 * progmodes/cc-defs.el (c-version): -> 5.32.2.
16357
163582011-10-28 Alan Mackenzie <acm@muc.de>
16359
16360 Amend the handling of c-beginning/end-of-defun in nested declaration
16361 scopes.
16362
16363 * progmodes/cc-vars.el (c-defun-tactic): Move here from
16364 cc-langs.el. Change it to a defcustom.
16365
16366 * progmodes/cc-langs.el (c-defun-tactic): Move this variable to
16367 cc-vars.el.
16368
16369 * progmodes/cc-engine.el (c-beginning-of-statement-1):
16370 Prevent "class foo : bar" being spuriously recognized as a label.
16371
16372 * progmodes/cc-cmds.el (c-narrow-to-most-enclosing-decl-block):
16373 Add parameter `inclusive' (to include enclosing braces in the region).
16374 (c-widen-to-enclosing-decl-scope): New function.
16375 (c-while-widening-to-decl-block): New macro.
16376 (c-beginning-of-defun, c-end-of-defun): Change algorithm to keep going
16377 outward for defun boundaries, and correspondingly change symbol
16378 `respect-enclosure' to `go-outward'.
16379 (c-declaration-limits): Change algorithm to report only the "innermost"
16380 defun's boundaries.
16381
163822011-10-28 Deniz Dogan <deniz@dogan.se>
16383
16384 * net/rcirc.el (rcirc-mode): Use hard newlines.
16385
163862011-10-28 Alan Mackenzie <acm@muc.de>
16387
16388 Amend to indent and fontify macros "which include their own semicolon"
16389 correctly, using the "virtual semicolon" mechanism.
16390
16391 * progmodes/cc-defs.el: Update "virtual semicolon" comments.
16392
16393 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
16394 Recode to scan one line at a time rather than having \n and \r
16395 explicitly in c-stmt-delim-chars (for some modes, e.g. AWK).
16396 (c-forward-label): Amend for virtual semicolons.
16397 (c-at-macro-vsemi-p, c-macro-vsemi-status-unknown-p): New functions.
16398
16399 * progmodes/cc-fonts.el (c-font-lock-declarations): Take account
16400 of the new C macros.
16401
16402 * progmodes/cc-langs.el (c-at-vsemi-p-fn):
16403 (c-vsemi-status-unknown-p-fn): Move to earlier in the file.
16404 (c-opt-cpp-symbol, c-line-comment-start-regexp): New language vars.
16405 (c-opt-cpp-macro-define): Make into a full language variable.
16406 (c-stmt-delim-chars, c-stmt-delim-chars-with-comma): Special value for
16407 AWK Mode (including \n, \r) removed, no longer needed.
16408
16409 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode):
16410 Invoke c-make-macro-with-semi-re.
16411
16412 * progmodes/cc-vars.el (c-macro-with-semi-re):
16413 (c-macro-names-with-semicolon): New variables.
16414 (c-make-macro-with-semi-re): New function.
16415
164162011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
16417
16418 * vc/log-edit.el: Fill empty field rather than adding new one.
16419 (log-edit-add-field): New function.
16420 (log-edit-insert-changelog): Use it.
16421
164222011-10-28 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
16423
16424 * mail/rmail.el (rmail-mode-map): Add M-C-f as in rmailsum (bug#9802).
16425
164262011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
16427
16428 * progmodes/gdb-mi.el: Warn the user when -i=mi is missing.
16429 (gdb--check-interpreter): New function.
16430 (gdb): Use it.
16431
164322011-10-27 Glenn Morris <rgm@gnu.org>
16433
16434 * emacs-lisp/cl-extra.el (most-positive-float, most-negative-float)
16435 (least-positive-float, least-negative-float)
16436 (least-positive-normalized-float, least-negative-normalized-float)
16437 (float-epsilon, float-negative-epsilon):
16438 Remove unnecessary declarations.
16439
16440 * emacs-lisp/cl-extra.el (cl-float-limits): Add doc string.
16441 * emacs-lisp/cl.el (most-positive-float, most-negative-float)
16442 (least-positive-float, least-negative-float)
16443 (least-positive-normalized-float, least-negative-normalized-float)
16444 (float-epsilon, float-negative-epsilon): Add doc-strings,
16445 based on those in cl.texi.
16446
16447 * files.el (set-visited-file-name): If the major-mode changed,
16448 reload the local variables. (Bug#9796)
16449
164502011-10-27 Chong Yidong <cyd@gnu.org>
16451
16452 * subr.el (change-major-mode-after-body-hook): New hook.
16453 (run-mode-hooks): Run it.
16454
16455 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
16456 Use change-major-mode-before-body-hook.
16457
16458 * simple.el (fundamental-mode):
16459 * emacs-lisp/derived.el (define-derived-mode): Revert 2010-04-28
16460 change introducing fundamental-mode-hook.
16461
164622011-10-26 Juanma Barranquero <lekktu@gmail.com>
16463
16464 * term/w32-win.el (w32-default-color-map): Declare obsolete (Bug#9785).
16465
164662011-10-26 Michael Albinus <michael.albinus@gmx.de>
16467
16468 * ido.el (ido-file-name-all-completions-1): Do not require
16469 tramp.el explicitly. (Bug#7583)
16470
164712011-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
16472
16473 * progmodes/octave-mod.el:
16474 * progmodes/octave-inf.el: Update maintainer.
16475
164762011-10-26 Chong Yidong <cyd@gnu.org>
16477
16478 * subr.el (with-wrapper-hook): Rewrite doc.
16479
164802011-10-25 Michael Albinus <michael.albinus@gmx.de>
16481
16482 * net/tramp-sh.el (tramp-sh-handle-file-directory-p): Return t for
16483 filenames "/method:foo:". (Bug#9793)
16484
164852011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
16486
16487 * comint.el (comint-get-old-input-default): Fix use-prompt-regexp case
16488 (bug#9865).
16489
164902011-10-24 Glenn Morris <rgm@gnu.org>
16491
16492 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix. (Bug#9819)
16493
164942011-10-24 Michael Albinus <michael.albinus@gmx.de>
16495
16496 * notifications.el: Add the requirement of a running D-Bus session
16497 bus to the Commentary.
16498
164992011-10-24 Juri Linkov <juri@jurta.org>
16500
16501 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
16502 `search-whitespace-regexp' only when `isearch-regexp' is non-nil.
16503 (Bug#9364)
16504
165052011-10-24 Juri Linkov <juri@jurta.org>
16506
16507 * info.el (Info-following-node-name-re): Add newline to the list
16508 of allowed characters for leading space. (Bug#9824)
16509
165102011-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
16511
16512 * progmodes/octave-inf.el (inferior-octave-mode-map):
16513 Fix C-c C-h binding.
16514 * progmodes/octave-mod.el (octave-help): Remove.
16515
165162011-10-23 Michael Albinus <michael.albinus@gmx.de>
16517
16518 Sync with Tramp 2.2.3.
16519
16520 * net/tramp-cache.el (top): Pacify byte-compiler using
16521 `init-file-user' and `site-run-file'.
16522
16523 * net/trampver.el: Update release number.
16524
165252011-10-23 Chong Yidong <cyd@gnu.org>
16526
16527 * files.el (toggle-read-only): Remove obsolete comment about
16528 version control.
16529
16530 * vc/vc-hooks.el (vc-toggle-read-only): Make it an obsolete alias
16531 for toggle-read-only. Note that this hasn't called vc-next-action
16532 since 2008-05-02, though it wasn't documented at the time.
16533
16534 * vc/ediff-init.el (ediff-toggle-read-only-function):
16535 Use toggle-read-only.
16536
165372011-10-22 Alan Mackenzie <bug-cc-mode@gnu.org>
16538
16539 Fix bug #9560, sporadic wrong indentation; improve instrumentation
16540 of c-parse-state.
16541
16542 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
16543 correct faulty logical expression.
16544 (c-parse-state-state, c-record-parse-state-state):
16545 (c-replay-parse-state-state): New defvar/defuns.
16546 (c-debug-parse-state): Use new functions.
16547
165482011-10-22 Martin Rudalics <rudalics@gmx.at>
16549
16550 * mouse.el (mouse-drag-line): Fix minibuffer resizing broken by
16551 last fix. Use window-in-direction correctly.
16552
165532011-10-21 Chong Yidong <cyd@gnu.org>
16554
16555 * progmodes/idlwave.el (idlwave-mode):
16556 * progmodes/vera-mode.el (vera-mode): No need to set
16557 require-final-newline; that's done in prog-mode.
16558 Suggested by Stefan Monnier.
16559
165602011-10-21 Martin Rudalics <rudalics@gmx.at>
16561
16562 * mouse.el (mouse-drag-window-above)
16563 (mouse-drag-move-window-bottom, mouse-drag-move-window-top)
16564 (mouse-drag-mode-line-1, mouse-drag-header-line)
16565 (mouse-drag-vertical-line-rightward-window): Remove.
16566 (mouse-drag-line): New function.
16567 (mouse-drag-mode-line, mouse-drag-header-line)
16568 (mouse-drag-vertical-line): Call mouse-drag-line.
16569 * window.el (window-at-side-p, windows-at-side): New functions.
16570
165712011-10-21 Ulrich Mueller <ulm@gentoo.org>
16572
16573 * tar-mode.el (tar-grind-file-mode):
16574 Fix handling of setuid/setgid, handle sticky bit. (Bug#9817)
16575
165762011-10-21 Chong Yidong <cyd@gnu.org>
16577
16578 * progmodes/idlwave.el (idlwave-mode):
16579 * progmodes/vera-mode.el (vera-mode):
16580 Use mode-require-final-newline.
16581
165822011-10-20 Glenn Morris <rgm@gnu.org>
16583
16584 * vc/vc.el (vc-next-action): Handle removed directories. (Bug#9781)
16585
165862011-10-20 Christoph Scholtes <cschol2112@googlemail.com>
16587
16588 * emulation/cua-base.el (cua-set-mark): Fix case of string.
16589
165902011-10-20 Chong Yidong <cyd@gnu.org>
16591
16592 * emulation/cua-base.el (cua-mode):
16593 * mail/footnote.el (footnote-mode):
16594 * mail/mailabbrev.el (mail-abbrevs-mode):
16595 * net/xesam.el (xesam-minor-mode):
16596 * progmodes/bug-reference.el (bug-reference-mode):
16597 * progmodes/cap-words.el (capitalized-words-mode):
16598 * progmodes/compile.el (compilation-minor-mode)
16599 (compilation-shell-minor-mode):
16600 * progmodes/gud.el (gud-tooltip-mode):
16601 * progmodes/hideif.el (hide-ifdef-mode):
16602 * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
16603 * progmodes/subword.el (subword-mode):
16604 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
16605 * progmodes/which-func.el (which-function-mode):
16606 * term/tvi970.el (tvi970-set-keypad-mode):
16607 * term/vt100.el (vt100-wide-mode):
16608 * textmodes/flyspell.el (flyspell-mode):
16609 * textmodes/ispell.el (ispell-minor-mode):
16610 * textmodes/nroff-mode.el (nroff-electric-mode):
16611 * textmodes/paragraphs.el (use-hard-newlines):
16612 * textmodes/refill.el (refill-mode):
16613 * textmodes/reftex.el (reftex-mode):
16614 * textmodes/rst.el (rst-minor-mode):
16615 * textmodes/sgml-mode.el (html-autoview-mode)
16616 (sgml-electric-tag-pair-mode):
16617 * textmodes/tex-mode.el (latex-electric-env-pair-mode):
16618 * vc/diff-mode.el (diff-auto-refine-mode, diff-minor-mode):
16619 * emulation/crisp.el (crisp-mode):
16620 * emacs-lisp/eldoc.el (eldoc-mode):
16621 * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fixes for new
16622 minor mode behavior.
16623
166242011-10-19 Juri Linkov <juri@jurta.org>
16625
16626 * descr-text.el (describe-char): Add #x2010 and #x2011 to
16627 the list of hard-coded chars with escape-glyph face.
16628
166292011-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
16630
16631 * vc/log-edit.el (log-edit-empty-buffer-p): Ignore empty headers.
16632
166332011-10-19 Michael Albinus <michael.albinus@gmx.de>
16634
16635 * net/tramp.el (tramp-connectable-p): Make a stronger check on a
16636 running process.
16637
166382011-10-19 Glenn Morris <rgm@gnu.org>
16639
16640 * vc/vc-bzr.el (vc-bzr-after-dir-status):
16641 Ignore ignored files. (Bug#9726)
16642
166432011-10-19 Chong Yidong <cyd@gnu.org>
16644
16645 Doc fix for minor modes, stating that an omitted argument enables
16646 the mode unconditionally when called from Lisp.
16647
16648 * abbrev.el (abbrev-mode):
16649 * allout.el (allout-mode):
16650 * autoinsert.el (auto-insert-mode):
16651 * autoarg.el (autoarg-mode, autoarg-kp-mode):
16652 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
16653 (global-auto-revert-mode):
16654 * battery.el (display-battery-mode):
16655 * composite.el (global-auto-composition-mode)
16656 (auto-composition-mode):
16657 * delsel.el (delete-selection-mode):
16658 * desktop.el (desktop-save-mode):
16659 * dired-x.el (dired-omit-mode):
16660 * dirtrack.el (dirtrack-mode):
16661 * doc-view.el (doc-view-minor-mode):
16662 * double.el (double-mode):
16663 * electric.el (electric-indent-mode, electric-pair-mode):
16664 * emacs-lock.el (emacs-lock-mode):
16665 * epa-hook.el (auto-encryption-mode):
16666 * follow.el (follow-mode):
16667 * font-core.el (font-lock-mode):
16668 * frame.el (auto-raise-mode, auto-lower-mode, blink-cursor-mode):
16669 * help.el (temp-buffer-resize-mode):
16670 * hilit-chg.el (highlight-changes-mode)
16671 (highlight-changes-visible-mode):
16672 * hi-lock.el (hi-lock-mode):
16673 * hl-line.el (hl-line-mode, global-hl-line-mode):
16674 * icomplete.el (icomplete-mode):
16675 * ido.el (ido-everywhere):
16676 * image-file.el (auto-image-file-mode):
16677 * image-mode.el (image-minor-mode):
16678 * iswitchb.el (iswitchb-mode):
16679 * jka-cmpr-hook.el (auto-compression-mode):
16680 * linum.el (linum-mode):
16681 * longlines.el (longlines-mode):
16682 * master.el (master-mode):
16683 * mb-depth.el (minibuffer-depth-indicate-mode):
16684 * menu-bar.el (menu-bar-mode):
16685 * minibuf-eldef.el (minibuffer-electric-default-mode):
16686 * mouse-sel.el (mouse-sel-mode):
16687 * msb.el (msb-mode):
16688 * mwheel.el (mouse-wheel-mode):
16689 * outline.el (outline-minor-mode):
16690 * paren.el (show-paren-mode):
16691 * recentf.el (recentf-mode):
16692 * reveal.el (reveal-mode, global-reveal-mode):
16693 * rfn-eshadow.el (file-name-shadow-mode):
16694 * ruler-mode.el (ruler-mode):
16695 * savehist.el (savehist-mode):
16696 * scroll-all.el (scroll-all-mode):
16697 * scroll-bar.el (scroll-bar-mode):
16698 * server.el (server-mode):
16699 * shell.el (shell-dirtrack-mode):
16700 * simple.el (auto-fill-mode, transient-mark-mode)
16701 (visual-line-mode, overwrite-mode, binary-overwrite-mode)
16702 (line-number-mode, column-number-mode, size-indication-mode)
16703 (auto-save-mode, normal-erase-is-backspace-mode, visible-mode):
16704 * strokes.el (strokes-mode):
16705 * time.el (display-time-mode):
16706 * t-mouse.el (gpm-mouse-mode):
16707 * tool-bar.el (tool-bar-mode):
16708 * tooltip.el (tooltip-mode):
16709 * type-break.el (type-break-mode-line-message-mode)
16710 (type-break-query-mode):
16711 * view.el (view-mode):
16712 * whitespace.el (whitespace-mode, whitespace-newline-mode)
16713 (global-whitespace-mode, global-whitespace-newline-mode):
16714 * xt-mouse.el (xterm-mouse-mode): Doc fix.
16715
16716 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
16717 Fix autogenerated docstring.
16718
167192011-10-19 Juri Linkov <juri@jurta.org>
16720
16721 * net/browse-url.el (browse-url-can-use-xdg-open): Support LXDE
16722 by checking environment variables "DESKTOP_SESSION" and
16723 "XDG_CURRENT_DESKTOP". (Bug#9779)
16724
167252011-10-19 Juri Linkov <juri@jurta.org>
16726
16727 * net/browse-url.el (browse-url-browser-function): Add "Chromium".
16728 (browse-url-chromium-program, browse-url-chromium-arguments):
16729 New defcustoms.
16730 (browse-url-default-browser): Check for `browse-url-chromium' and
16731 call `browse-url-chromium-program'.
16732 (browse-url-chromium): New command. (Bug#9779)
16733
167342011-10-18 Juanma Barranquero <lekktu@gmail.com>
16735
16736 * facemenu.el (list-colors-duplicates): On Windows, detect more
16737 duplicates by assuming that only colors matching "^System" are
16738 special "system colors". (Bug#9722)
16739
167402011-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
16741
16742 * vc/log-edit.el (log-edit): Add "Author:" header to encourage people
16743 to distinguish the author from the committer.
16744
167452011-10-18 Michael Albinus <michael.albinus@gmx.de>
16746
16747 * net/tramp.el (tramp-file-name-handler): Load Tramp packages silently.
16748
167492011-10-18 Jirka Kosek <jirka@kosek.cz> (tiny change)
16750
16751 * international/mule.el (sgml-html-meta-auto-coding-function):
16752 Add support for detecting encoding in HTML5 specified only as
16753 <meta charset="UTF-8">. Implementation just makes http-equiv and
16754 content-type parts from HTML4 encoding string optional. (Bug#9716)
16755
167562011-10-18 Glenn Morris <rgm@gnu.org>
16757
16758 * vc/vc.el (vc-initial-comment): Mark as obsolete. (Bug#9745)
16759
167602011-10-18 Chong Yidong <cyd@gnu.org>
16761
16762 * faces.el (cursor): Doc fix.
16763
167642011-10-17 Chong Yidong <cyd@gnu.org>
16765
16766 * font-lock.el (font-lock-maximum-size): Mark as obsolete.
16767
167682011-10-17 Ryan Barrett <emacs@ryanb.org> (tiny change)
16769
16770 * dirtrack.el (dirtrack): Support shell buffers with path
16771 prefixes, e.g. tramp-based remote shells. (Bug#9647)
16772
167732011-10-17 Teodor Zlatanov <tzz@lifelogs.com>
16774
16775 * json.el: Bump version to 1.3 and note change in History.
16776 (json-alist-p, json-plist-p): Rewrite to avoid recursion.
16777
167782011-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
16779
16780 * comint.el (comint-insert-input, comint-send-input)
16781 (comint-get-old-input-default, comint-backward-matching-input)
16782 (comint-next-prompt): Use nil instead of `input' for field property of
16783 past user input (bug#114).
16784
16785 * minibuffer.el (completion--replace): Inherit surrounding properties
16786 (bug#114).
16787 (minibuffer-complete-and-exit): Use it.
16788
16789 * comint.el (comint--table-subvert): Quote the all-completions output
16790 (bug#9160).
16791
167922011-10-17 Martin Rudalics <rudalics@gmx.at>
16793
16794 * ido.el (ido-default-buffer-method): Remove redundant :type entry.
16795
16796 * menu-bar.el (menu-bar-file-menu): Add entry for making new
16797 window on right of selected. (Bug#9350) Reword other window
16798 entries and separate them from frame entries.
16799
168002011-10-15 Glenn Morris <rgm@gnu.org>
16801
16802 * emacs-lisp/ert.el (ert--explain-equal-rec, ert-select-tests):
16803 Doc fixes.
16804
168052011-10-15 Chong Yidong <cyd@stupidchicken.com>
16806
16807 * net/network-stream.el (network-stream-open-starttls):
16808 Improve detection of failure due to lack of TLS support.
16809
16810 * mail/sendmail.el (sendmail-query-once): Tweak prompt message,
16811 putting the input text in front and in bold.
16812
168132011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
16814
16815 * pcmpl-unix.el (pcomplete/ssh): SSH does allow ganging.
16816
16817 * mpc.el (mpc-songs-jump-to): Don't burp if the user clicks in an
16818 empty buffer.
16819
16820 * mouse.el (mouse-drag-mode-line-1): Modify the end-event we pushed on
16821 unread-command-events rather than pushing yet-another event.
16822
168232011-10-14 Eli Zaretskii <eliz@gnu.org>
16824
16825 * mail/sendmail.el (sendmail-query-once): Improve the wording of
16826 the explanation of the possible choices. Make the options passed
16827 to completing-read shorter.
16828
168292011-10-13 Agustín Martín Domingo <agustin.martin@hispalinux.es>
16830
16831 * textmodes/flyspell.el (flyspell-large-region): Make sure
16832 extended character mode is used if defined (Bug#1339).
16833
168342011-10-13 Eli Zaretskii <eliz@gnu.org>
16835
16836 * simple.el (what-cursor-position): Fix the display of the
16837 character info for LRE, LRO, RLE, and RLO characters by appending
16838 an invisible PDF.
16839
168402011-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
16841
16842 * emacs-lisp/timer.el (with-timeout): Make sure we cancel the timer
16843 even in case of error; add debug spec; simplify data flow.
16844 (with-timeout-handler): Remove.
16845
168462011-10-12 Michael Albinus <michael.albinus@gmx.de>
16847
16848 Fix Bug#6019, Bug#9315.
16849
16850 * files.el (set-auto-mode): Call `file-name-sans-versions' for the
16851 complete `buffer-file-name', the local file name part could look
16852 remotely (for example on VMS).
16853
16854 * net/ange-ftp.el (ange-ftp-run-real-handler): Make it an alias of
16855 `tramp-run-real-handler'.
16856 (ange-ftp-fix-name-for-vms): Handle the case, where `name' is
16857 already quoted by '"'.
16858
16859 * net/tramp.el (tramp-rfn-eshadow-update-overlay): Ignore errors.
16860 Let `file-name-handler-alist' be nil, the local file name part
16861 could look remotely (for example on VMS).
16862
168632011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
16864
16865 * textmodes/flyspell.el (flyspell-word): Move with-local-quit
16866 from here...
16867 (flyspell-post-command-hook): ...to here.
16868
168692011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
16870
16871 * mail/sendmail.el (send-mail-function): Don't use sendmail-query-once
16872 if not needed.
16873 (sendmail-query-once): Remove OS dependencies. Make it a 3-way choice
16874 using completion. Protect against "slow" callers.
16875 Remove the "message hack".
16876
168772011-10-11 Juri Linkov <juri@jurta.org>
16878
16879 * isearch.el (isearch-lazy-highlight-word): New variable.
16880 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
16881 Use it. (Bug#9727)
16882
168832011-10-11 Glenn Morris <rgm@gnu.org>
16884
16885 * progmodes/f90.el (f90-next-statement): Ignore preprocessor lines,
16886 like f90-previous-statement does.
16887
168882011-10-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
16889
16890 * eshell/eshell.el (eshell-command): History should be saved
16891 only in interactive use, to avoid error.
16892
168932011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
16894
16895 * minibuffer.el (completion-file-name-table): Fix last change,
16896 i.e. ignore normal errors but not the other ones.
16897
168982011-10-10 Martin Rudalics <rudalics@gmx.at>
16899
16900 * window.el (special-display-buffer-names)
16901 (special-display-regexps): Remove some remnants of earlier
16902 changes from doc-strings.
16903 (quit-windows-on): New function.
16904
16905 * vc/vc.el (vc-revert, vc-rollback):
16906 * vc/vc-dispatcher.el (vc-finish-logentry): Call quit-windows-on
16907 instead of deleting windows. (Bug#4557) (Bug#5310) (Bug#5556)
16908 (Bug#6183) (Bug#7074) (Bug#7447)
16909
169102011-10-09 Martin Rudalics <rudalics@gmx.at>
16911
16912 * window.el (frame-auto-hide-function): Add version tag.
16913 (Bug#9699)
16914
169152011-10-09 Michael Albinus <michael.albinus@gmx.de>
16916
16917 * net/tramp.el (tramp-file-name-handler): Add 'debug to the error
16918 condition.
16919
169202011-10-09 Leo Liu <sdl.web@gmail.com>
16921
16922 * mail/smtpmail.el (smtpmail-send-data): Add a missing space.
16923 (Bug#9701)
16924
169252011-10-08 Glenn Morris <rgm@gnu.org>
16926
16927 * progmodes/f90.el (f90-calculate-indent): Give preprocessor lines
16928 before the first code statement zero indent. (Bug#9690)
16929
169302011-10-08 Chong Yidong <cyd@stupidchicken.com>
16931
16932 * simple.el (count-words-region): Always count in the region.
16933 Report the number of lines and characters too.
16934 (count-words): New command, which counts in the buffer if the
16935 region is inactive, as count-words-region used to.
16936 (count-words--message): New function. Handle plurals.
16937 (count-lines-region): Make it an alias for count-words-region.
16938
16939 * bindings.el (esc-map): Replace count-lines-region with
16940 count-words-region.
16941
169422011-10-08 Martin Rudalics <rudalics@gmx.at>
16943
16944 * window.el (window--delete): Delete dedicated frame
16945 unconditionally when argument KILL is non-nil. (Bug#9699)
16946 (switch-to-buffer): Fix doc-string typo.
16947
169482011-10-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
16949
16950 * eshell/eshell.el (eshell-command): Avoid using hooks.
16951
169522011-10-07 Chong Yidong <cyd@stupidchicken.com>
16953
16954 * bindings.el ([M-left],[M-right]): Bind to left-word and
16955 right-word respectively.
16956
169572011-10-07 Glenn Morris <rgm@gnu.org>
16958
16959 * cus-start.el (debug-on-quit): Fix custom type.
16960
169612011-10-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
16962
16963 * subr.el (define-key-after): Clarify that the function is not
16964 useful for non-menu keymaps.
16965
16966 * progmodes/gdb-mi.el (gdb): Fix typo in doc string.
16967
169682011-10-06 Thierry Volpiatto <thierry.volpiatto@gmail.com>
16969
16970 * eshell/eshell.el (eshell-command): Enable `eshell-mode' only
16971 in current minibuffer (Fix bug with recursive minibuffers).
16972
169732011-10-06 Chong Yidong <cyd@stupidchicken.com>
16974
16975 * progmodes/gdb-mi.el (gdb): Doc fix.
16976
169772011-10-05 Martin Rudalics <rudalics@gmx.at>
16978
16979 * window.el (frame-auto-hide-function): New option replacing
16980 frame-auto-delete. Suggested by Stefan Monnier.
16981 (window--delete): Call frame-auto-hide-function instead of
16982 investigating frame-auto-delete.
16983 (window-point-1, set-window-point-1): New functions.
16984 (window-in-direction, record-window-buffer, window-state-get-1)
16985 (display-buffer-record-window): Use window-point-1 instead of
16986 window-point.
16987 (set-window-buffer-start-and-point): Use set-window-point-1.
16988
169892011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
16990
16991 * emacs-lisp/edebug.el: Heed checkdoc recommendations.
16992
169932011-10-05 Glenn Morris <rgm@gnu.org>
16994
16995 * progmodes/perl-mode.el (perl-electric-terminator): Doc fix.
16996 (perl-calculate-indent): Suppress scan errors. (Bug#2205)
16997
169982011-10-05 Leo Liu <sdl.web@gmail.com>
16999
17000 * subr.el (read-char-choice): Fix argument to buffer-live-p which
17001 works with buffer object.
17002
170032011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
17004
17005 * mpc.el (mpc-tool-bar-map): Add labels.
17006
170072011-10-04 Glenn Morris <rgm@gnu.org>
17008
17009 * calendar/holidays.el (calendar-check-holidays): Doc fix.
17010
170112011-10-04 Martin Rudalics <rudalics@gmx.at>
17012
17013 * window.el (window--delete): New function.
17014 (frame-auto-delete): Resuscitate option.
17015 (bury-buffer, replace-buffer-in-windows)
17016 (quit-window): Rewrite using window--delete.
17017 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
17018 Pass display-buffer-mark-dedicated to window--display-buffer-2
17019 (Bug#9639).
17020
170212011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
17022
17023 * pcmpl-unix.el (pcomplete/scp): Don't assume pcomplete-all-entries
17024 returns a list (bug#9554). Add remote file name completion.
17025 * comint.el (comint--table-subvert): Curry and get quote&unquote
17026 functions as arguments.
17027 (comint--complete-file-name-data): Adjust call accordingly.
17028 * pcomplete.el (pcomplete--table-subvert): Remove.
17029 (pcomplete-completions-at-point): Use comint--table-subvert instead.
17030
17031 * minibuffer.el (completion-table-case-fold): Use currying.
17032 (completion--styles-type, completion--cycling-threshold-type):
17033 New constants.
17034 (completion-styles, completion-category-overrides)
17035 (completion-cycle-threshold): Use them.
17036 * pcomplete.el (pcomplete-completions-at-point): Adjust call to
17037 completion-table-case-fold.
17038
170392011-10-03 Stephen Berman <stephen.berman@gmx.net>
17040
17041 * minibuffer.el (completion-category-overrides): Fix type of styles
17042 and add more user friendly tags (bug#9660).
17043
170442011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
17045
17046 * international/mule-cmds.el: Fix abuses of apply-partially (bug#9661).
17047 (mule-input-method-string): New widget.
17048 (default-input-method, language-info-custom-alist): Use it.
17049
170502011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
17051
17052 * pcomplete.el: Require comint.
17053 (pcomplete--common-suffix): Remove.
17054 (pcomplete--common-quoted-suffix): Use comint--common-suffix instead.
17055 (pcomplete--table-subvert): Sync with comint--table-subvert.
17056 (pcomplete--entries): Use comint-completion-file-name-table.
17057 * comint.el (comint-unquote-filename): Simplify.
17058 (comint-completion-file-name-table): New function (bug#9616).
17059 (comint--complete-file-name-data): Use it.
17060
17061 * pcmpl-gnu.el (pcmpl-gnu-with-file-buffer): New macro (bug#9643).
17062 (pcmpl-gnu-tar-buffer): Remove.
17063 (pcmpl-gnu-with-file-buffer): Use it to avoid leaving the tar's buffer
17064 around. Make sure pcomplete-suffix-list is only changed temporarily.
17065 Don't look inside the tar's file if it's too large.
17066
170672011-10-01 Chong Yidong <cyd@stupidchicken.com>
17068
17069 * cus-edit.el (custom-mode-map):
17070 * epa.el (epa-key-list-mode-map):
17071 * man.el (Man-mode-map):
17072 * startup.el (splash-screen-keymap):
17073 * simple.el (special-mode-map): Use scroll-up-command and
17074 scroll-down-command.
17075
17076 * progmodes/idlw-help.el (idlwave-help-mode-map):
17077 * progmodes/ebrowse.el (ebrowse-electric-position-mode-map):
17078 * net/newst-plainview.el (newsticker-mode-map):
17079 * emulation/ws-mode.el (wordstar-mode-map):
17080 * emulation/vi.el (vi-com-map):
17081 * calc/calc-graph.el (calc-graph-show-dumb):
17082 * term/sun.el (terminal-init-sun):
17083 * term/ns-win.el (global-map):
17084 * progmodes/grep.el (grep-mode-map):
17085 * progmodes/ebrowse.el (ebrowse-electric-list-mode-map):
17086 * mail/rmail.el (rmail-mode-map):
17087 * progmodes/cpp.el (cpp-edit-mode-map): Likewise.
17088
17089 * custom.el (custom-safe-themes, load-theme): Treat value of t for
17090 custom-safe-themes as special.
17091
170922011-10-01 Julien Danjou <julien@danjou.info>
17093
17094 * notifications.el (notifications-notify): Fix docstring.
17095
170962011-10-01 Per Starbäck <per@starback.se>
17097
17098 * pcmpl-gnu.el (pcomplete/tar): Fix tar-header-name call. (Bug#9643)
17099
171002011-09-30 Martin Rudalics <rudalics@gmx.at>
17101
17102 * startup.el (command-line-1): Fix last fix by inserting
17103 initial-scratch-message into *scratch* before displaying it.
17104 (Bug#9605) and (Bug#9636)
17105
171062011-09-29 Eli Zaretskii <eliz@gnu.org>
17107
17108 * simple.el (line-move): If auto-hscroll-mode is disabled and the
17109 window is hscrolled, move by logical lines. (Bug#9607)
17110 (line-move-visual): Update the doc string to the above effect.
17111
171122011-09-29 Martin Rudalics <rudalics@gmx.at>
17113
17114 * window.el (display-buffer-record-window): When WINDOW is the
17115 selected window use `point' instead of `window-point'. (Bug#9626)
17116
17117 * startup.el (command-line-1): Use insert-before-markers when
17118 inserting initial-scratch-message. (Bug#9605)
17119
17120 * help.el (help-window): Remove variable.
17121
171222011-09-29 Glenn Morris <rgm@gnu.org>
17123
17124 * pcmpl-cvs.el (pcomplete/cvs): Add "status" handler.
17125
171262011-09-29 Juanma Barranquero <lekktu@gmail.com>
17127
17128 * descr-text.el (describe-char-categories): Accept category
17129 descriptions more than one line long.
17130
171312011-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
17132
17133 * simple.el (delete-trailing-whitespace): Fix last change.
17134
17135 * progmodes/perl-mode.el (perl-syntax-propertize-function):
17136 Don't confuse "y => 3" as the beginning of a `y' operation.
17137
17138 * emacs-lisp/debug.el (debug-convert-byte-code): Don't assume the
17139 object has more than 4 slots (bug#9613).
17140
171412011-09-28 Juanma Barranquero <lekktu@gmail.com>
17142
17143 * subr.el (with-output-to-temp-buffer):
17144 * net/quickurl.el (quickurl, quickurl-browse-url):
17145 Fix typos in docstrings.
17146
171472011-09-27 Eli Zaretskii <eliz@gnu.org>
17148
17149 * minibuffer.el (completion-styles)
17150 (completion-category-overrides): Cross reference each other in doc
17151 strings.
17152
171532011-09-27 Glenn Morris <rgm@gnu.org>
17154
17155 * pcmpl-cvs.el (pcmpl-cvs-entries): Update for Emacs 22.1 changes
17156 to split-string. (Bug#9606)
17157
171582011-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
17159
17160 * mail/smtpmail.el (smtpmail-via-smtp): Fix STARTTLS detection
17161 (bug#9615).
17162
171632011-09-27 Chong Yidong <cyd@stupidchicken.com>
17164
17165 * emacs-lisp/package.el (list-packages): Fix echo area message.
17166
171672011-09-27 Leo Liu <sdl.web@gmail.com>
17168
17169 * ido.el (ido-read-internal): Accept cons cell HIST arg.
17170
171712011-09-25 Michael Albinus <michael.albinus@gmx.de>
17172
17173 * net/dbus.el (dbus-unregister-object): Don't release services for
17174 registered signals. (Bug#9581)
17175
171762011-09-25 Teodor Zlatanov <tzz@lifelogs.com>
17177
17178 * progmodes/cfengine.el (cfengine-auto-mode): Add convenience
17179 function that picks between cfengine 2 and 3 support
17180 automatically. Update docs accordingly.
17181
171822011-09-22 Kenichi Handa <handa@m17n.org>
17183
17184 * language/ind-util.el (indian-tml-base-table): Add TAMIL DIGIT
17185 ZERO.
17186 (indian-itrans-v5-table-for-tamil): New variable.
17187 (indian-tml-itrans-v5-hash): Use the above variable (Bug#9336).
17188
171892011-09-22 Ken Manheimer <ken.manheimer@gmail.com>
17190
17191 * allout.el (allout-this-command-hid-stuff): Buffer-local variable
17192 that's true if the current command involved collapsing of text.
17193 It's reset to false at the beginning of the next command.
17194 (allout-post-command-business): Move the cursor to the beginning
17195 of entry if the cursor is hidden and collapsing activity just
17196 happened.
17197
171982011-09-24 Chong Yidong <cyd@stupidchicken.com>
17199
17200 * mouse.el (mouse-drag-track): Set scroll-margin to 0 while
17201 tracking (Bug#9541).
17202
172032011-09-24 Ulf Jasper <ulf.jasper@web.de>
17204
17205 * net/newst-reader.el (newsticker-html-renderer)
17206 (newsticker-show-news): Automatically load html rendering package
17207 if newsticker-html-renderer is set. Fixes "Warning: defvar ignored
17208 because w3m-fill-column is let-bound" and the error "Symbol's value
17209 as variable is void: w3m-fill-column".
17210
172112011-09-24 Michael Albinus <michael.albinus@gmx.de>
17212
17213 * net/dbus.el (dbus-unregister-object): Remove match rule of signals.
17214 Release services only if they are defined. (Bug#9581)
17215
172162011-09-23 Richard Stallman <rms@gnu.org>
17217
17218 * textmodes/paragraphs.el (forward-sentence): For backwards case,
17219 distinguish start of paragraph from start of its text.
17220
17221 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs): Autoload.
17222
17223 * mail/rmail.el (rmail-view-buffer-kill-buffer-hook): New function.
17224 (rmail-generate-viewer-buffer): Put that hook on view buffer.
17225 (rmail-mode-kill-buffer-hook): Override that hook, to kill view buffer.
17226
172272011-09-23 Andreas Schwab <schwab@linux-m68k.org>
17228
17229 * international/mule-diag.el (mule-diag): Insert a newline after
17230 each fontset description.
17231
172322011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
17233
17234 * simple.el (delete-trailing-whitespace):
17235 Document last change; simplify.
17236
172372011-09-23 Peter J. Weisberg <pj@irregularexpressions.net>
17238
17239 * simple.el (delete-trailing-whitespace): Also delete
17240 extra newlines at the end of the buffer.
17241
17242 * textmodes/picture.el: Make motion commands obey shift-select-mode.
17243 (picture-newline): Use forward-line so as to ignore fields.
17244
172452011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
17246
17247 * subr.el (with-wrapper-hook): Fix edebug spec.
17248
172492011-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
17250
17251 * simple.el (kill-line): Note effect of `show-trailing-whitespace'
17252 (bug#4538).
17253
172542011-09-23 Michael Albinus <michael.albinus@gmx.de>
17255
17256 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
17257 Fix nasty bug using wrong cached values.
17258
172592011-09-23 Alan Mackenzie <acm@muc.de>
17260
17261 * progmodes/cc-defs.el (c-version): Increase to 5.31.9.
17262
172632011-09-23 Chong Yidong <cyd@stupidchicken.com>
17264
17265 * window.el (pop-to-buffer): Ensure right window is selected if we
17266 chose another frame.
17267
172682011-09-22 Eli Zaretskii <eliz@gnu.org>
17269
17270 * simple.el (what-cursor-position): Use get-char-property-change
17271 and next-single-char-property-change, to be able to show display
17272 properties that come from overlays as well as text properties.
17273
172742011-09-22 Chong Yidong <cyd@stupidchicken.com>
17275
17276 * window.el (pop-to-buffer-same-window): New (reinstated) fun.
17277
17278 * cmuscheme.el (run-scheme, switch-to-scheme):
17279 * cus-edit.el (customize-group, custom-buffer-create)
17280 (customize-browse):
17281 * info.el (info):
17282 * shell.el (shell):
17283 * mail/sendmail.el (mail):
17284 * progmodes/inf-lisp.el (inferior-lisp): Use it (Bug#9532).
17285
172862011-09-22 Richard Stallman <rms@gnu.org>
17287
17288 * textmodes/paragraphs.el (forward-sentence): When setting PAR-BEG,
17289 move back only to line beg, don't move back over blank lines.
17290
172912011-09-22 Michael Albinus <michael.albinus@gmx.de>
17292
17293 * files.el (copy-directory): Set directory attributes only in case
17294 they could be retrieved from the source directory. (Bug#9565)
17295
172962011-09-22 Dima Kogan <dkogan@secretsauce.net> (tiny change)
17297
17298 * progmodes/hideshow.el (hs-looking-at-block-start-p)
17299 (hs-find-block-beginning, hs-hide-level-recursive):
17300 Ignore strings as well as comments. (Bug#9502)
17301
173022011-09-22 Andrew Schein <andrew@andrewschein.com> (tiny change)
17303
17304 * progmodes/sql.el (sql-comint-postgres):
17305 Convert port number to a string. (Bug#9566)
17306
173072011-09-22 Martin Rudalics <rudalics@gmx.at>
17308
17309 * window.el (quit-window): Undedicate window when switching to
17310 previous buffer. Reported by Thierry Volpiatto
17311 <thierry.volpiatto@gmail.com>.
17312 (special-display-popup-frame): When popping up a new frame reset
17313 its previous buffers to nil. Simplify code.
17314
173152011-09-21 Michael Albinus <michael.albinus@gmx.de>
17316
17317 * net/tramp.el (tramp-handle-shell-command): Set process sentinel
17318 and process filter, as done also in `shell-command'.
17319
173202011-09-21 Martin Rudalics <rudalics@gmx.at>
17321
17322 * window.el (set-window-buffer-start-and-point):
17323 Call set-window-start with NOFORCE argument t.
17324 Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
17325 (quit-window): Reword doc-string. Handle new format of
17326 quit-restore parameter. Don't delete window if it has a
17327 previous buffer we can show instead of the present one.
17328 (display-buffer-record-window): Rewrite using a new format for
17329 the quit-restore window parameter
17330 (special-display-popup-frame, display-buffer-same-window)
17331 (display-buffer-reuse-window, display-buffer-pop-up-frame)
17332 (display-buffer-pop-up-window, display-buffer-use-some-window):
17333 Adapt symbol passed to display-buffer-record-window.
17334 * help.el (help-window-setup): Handle new format of quit-restore
17335 parameter.
17336
173372011-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
17338
17339 * faces.el (face-list): Fix docstring (bug#9564).
17340
17341 * window.el (display-buffer--action-function-custom-type):
17342 Don't include internal functions in the Custom interface.
17343
173442011-09-20 Juri Linkov <juri@jurta.org>
17345
17346 * info.el (Info-history-skip-intermediate-nodes): New defcustom.
17347 (Info-forward-node, Info-backward-node, Info-next-preorder)
17348 (Info-last-preorder): Use it. (Bug#9528)
17349
173502011-09-20 Juri Linkov <juri@jurta.org>
17351
17352 * info.el (Info-last-preorder): Visit last menu item only when
17353 `Info-scroll-prefer-subnodes' is non-nil (third test-case of bug#9528).
17354
173552011-09-20 Julien Danjou <julien@danjou.info>
17356
17357 * password-cache.el (password-cache-remove): Remove entries even if the
17358 value is nil, so that password with a nil value (negative caching) is
17359 possible to invalidate.
17360
173612011-09-20 Lawrence Mitchell <wence@gmx.li>
17362
17363 * progmodes/f90.el (f90-break-line): If breaking inside comment delete
17364 all whitespace around breakpoint. (Bug#9553)
17365 (f90-find-breakpoint): Only break at whitespace inside a comment.
17366
173672011-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
17368
17369 * minibuffer.el (completion-file-name-table): Keep track of errors.
17370 (completion-table-with-predicate): Handle the case where pred1 is nil.
17371 * pcomplete.el (pcomplete-completions-at-point): Simplify.
17372
173732011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
17374
17375 * emacs-lisp/debug.el (debugger-args): Give it a docstring.
17376 (debugger-return-value): Signal an error if the debugging context does
17377 not await any return value.
17378
17379 * ps-mule.el (ps-mule-plot-string): Don't inf-loop (bug#5108).
17380 * image-mode.el (image-toggle-display-text)
17381 (image-toggle-display-image): Stay away from evil `intangible'.
17382
173832011-09-19 Leo Liu <sdl.web@gmail.com>
17384
17385 * replace.el (occur-revert-arguments): Make it permanent-local.
17386 (occur-mode): Don't call font-lock-defontify.
17387
173882011-09-19 Chong Yidong <cyd@stupidchicken.com>
17389
17390 * net/ldap.el (ldap-search-internal): Don't push empty search
17391 result (Bug#9508).
17392
173932011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
17394
17395 * whitespace.el (whitespace-newline-mode): Disable it right (bug#9550).
17396
173972011-09-19 Michael Albinus <michael.albinus@gmx.de>
17398
17399 * net/tramp-sh.el (tramp-inline-compress-commands): Add "xz".
17400 Suggested by Liam Stitt <stittl@cuug.ab.ca>.
17401
174022011-09-18 Juri Linkov <juri@jurta.org>
17403
17404 * buff-menu.el (Buffer-menu-mode-map):
17405 * dired.el (dired-mode-map):
17406 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map)
17407 (lisp-interaction-mode-map):
17408 * emacs-lisp/package.el (package-menu-mode-map):
17409 * epa.el (epa-key-list-mode-map):
17410 * menu-bar.el (menu-bar-showhide-tool-bar-menu)
17411 (menu-bar-options-menu):
17412 * outline.el (outline-mode-menu-bar-map):
17413 * vc/vc-bzr.el (vc-bzr-shelve-menu-map, vc-bzr-extra-menu-map):
17414 * vc/vc-dir.el (vc-dir-menu-map):
17415 * vc/vc-git.el (vc-git-stash-menu-map, vc-git-extra-menu-map):
17416 Capitalize non-function content words in menu item strings.
17417
17418 * dired.el (dired-mode-map): Add menu item for
17419 `image-dired-dired-toggle-marked-thumbs'.
17420
174212011-09-18 Juri Linkov <juri@jurta.org>
17422
17423 * isearch.el (isearch-edit-string): Bind `isearch-new-case-fold'
17424 to `isearch-case-fold-search' and restore its original value
17425 after the `isearch-mode' call.
17426
174272011-09-18 Juri Linkov <juri@jurta.org>
17428
17429 * progmodes/grep.el (grep-process-setup): Don't check code for 1
17430 because `zgrep' returns 1 for successful matches (bug#9226).
17431
174322011-09-18 Juri Linkov <juri@jurta.org>
17433
17434 * info.el (Info-extract-menu-node-name): Check the second match
17435 for empty string (second test-case of bug#9528).
17436 (Info-last-preorder): Let-bind `Info-history' to nil to not add
17437 intermediate nodes to the history (first test-case of bug#9528).
17438
174392011-09-18 Juri Linkov <juri@jurta.org>
17440
17441 * info.el (Info-mode-syntax-table): New variable.
17442 (Info-mode): Set `:syntax-table' to `Info-mode-syntax-table' (bug#3312).
17443
174442011-09-18 Juri Linkov <juri@jurta.org>
17445
17446 * info.el (Info-file-supports-index-cookies):
17447 Increment line-beginning-position's arg from 3 to 4 because makeinfo
17448 outputs one more line for long file names (bug#4142).
17449
174502011-09-18 Chong Yidong <cyd@stupidchicken.com>
17451
17452 * newcomment.el (comment-normalize-vars): If prompting for
17453 comment-start, set comment-start-skip too (Bug#8424).
17454
174552011-09-18 Johan Bockgård <bojohan@gnu.org>
17456
17457 * icomplete.el: Fix previous fix of Bug#5849.
17458 (icomplete-mode): Don't set completion-show-inline-help.
17459 (icomplete-minibuffer-setup): Set completion-show-inline-help
17460 locally during icompletion.
17461
174622011-09-18 Chong Yidong <cyd@stupidchicken.com>
17463
17464 * woman.el (woman2-process-escapes): Don't delete unrecognized
17465 escapes (Bug#7843).
17466
17467 * files.el (inhibit-first-line-modes-regexps): Add image files.
17468 (hack-local-variables-prop-line): Return nil for malformed
17469 prop-lines (Bug#9044).
17470
174712011-09-18 Michael Albinus <michael.albinus@gmx.de>
17472
17473 * net/tramp.el (top): Don't require 'shell.
17474 (tramp-methods): Fix docstring.
17475 (tramp-get-remote-tmpdir): New defun, moved from tramp-sh.el.
17476 Return complete remote file name. Handle "smb" case.
17477 Use `tramp-tmpdir', if defined for the respective method.
17478 (tramp-make-tramp-temp-file): Adapt call of `tramp-get-remote-tmpdir'.
17479
17480 * net/tramp-compat.el (top): Require 'shell.
17481
17482 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
17483 (tramp-maybe-open-connection): Use `tramp-file-name-real-host' for
17484 `tramp-current-host'.
17485 (tramp-get-remote-tmpdir): Remove.
17486
17487 * net/tramp-smb.el (tramp-methods): Add `tramp-remote-shell' and
17488 `tramp-tmpdir' entries.
17489 (tramp-smb-errors): Add "NT_STATUS_IMAGE_ALREADY_LOADED".
17490 (tramp-smb-handle-file-attributes): Ignore errors.
17491 (tramp-smb-wait-for-output): Check also for process end.
17492
174932011-09-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
17494
17495 * mail/smtpmail.el (smtpmail-via-smtp): Ignore errors that arise
17496 when sending QUIT (bug#9312).
17497
174982011-09-17 Chong Yidong <cyd@stupidchicken.com>
17499
17500 * replace.el (occur-mode-map): Rebind occur-edit-mode to "e" (Bug#8463).
17501 (occur-edit-mode-map): Bind C-c C-c to occur-cease-edit and C-o to
17502 occur-mode-display-occurrence.
17503 (occur-edit-mode): Add usage message.
17504 (occur-cease-edit): New command.
17505 (occur-after-change-function): Use text properties to find the
17506 position of the prefix text.
17507 (occur-engine): Set stickiness of prefix text properties.
17508
175092011-09-17 Glenn Morris <rgm@gnu.org>
17510
17511 * progmodes/etags.el (complete-tag):
17512 Fix call to completion-in-region. (Bug#9526)
17513
175142011-09-17 Juri Linkov <juri@jurta.org>
17515
17516 * textmodes/ispell.el (ispell-word): Add to the error message
17517 the word, ispell program name and current dictionary (bug#9121).
17518 (ispell-tex-arg-end): Capitalize "error" in the error message.
17519
175202011-09-17 Andreas Schwab <schwab@linux-m68k.org>
17521
17522 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix overflow
17523 check. (Bug#4251)
17524
175252011-09-17 Juri Linkov <juri@jurta.org>
17526
17527 * window.el (window-safe-min-height, window-safe-min-width):
17528 Fix typos (followup to bug#9522).
17529
175302011-09-17 Sven Joachim <svenjoac@gmx.de>
17531
17532 * window.el (window-min-width, window-state-put): Fix typos (bug#9522).
17533
175342011-09-16 Eli Zaretskii <eliz@gnu.org>
17535
17536 * simple.el (line-move): If goal-column is set, move by logical
17537 lines, not by display lines. (Bug#971)
17538 (next-line, previous-line, goal-column, line-move-visual): Doc fix
17539 to reflect the above change.
17540
175412011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
17542
17543 * image.el (imagemagick-register-types): Use regexp-opt.
17544
175452011-09-15 Chong Yidong <cyd@stupidchicken.com>
17546
17547 * window.el (display-buffer-base-action): Rename from
17548 display-buffer-default-action. Make default value empty.
17549 (display-buffer-overriding-action): Convert to defvar.
17550 (display-buffer-fallback-action): New var.
17551
175522011-09-15 Chong Yidong <cyd@stupidchicken.com>
17553
17554 * emacs-lisp/package.el (package-alist): Fix risky-local-variable
17555 declaration.
17556 (package--add-to-archive-contents): If there is a duplicate entry
17557 with an older version, remove it.
17558 (package-menu-mark-delete, package-menu-mark-install)
17559 (package-menu-mark-unmark): Make unused args optional.
17560 (package-menu-mark-obsolete-for-deletion):
17561 Use package-menu-get-status instead of a regexp search.
17562 (package-menu-get-status): Use tabulated-list-entry.
17563 (package-menu-mark-upgrades): New command.
17564 (package-menu-mode-map): Bind it to U. Add it to menu bar.
17565 (package-menu-execute): Do installation before deletion.
17566 (package-menu-refresh, package-menu-execute): Use derived-mode-p
17567 instead of checking major-mode.
17568 (package-menu--find-upgrades): New function.
17569
175702011-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
17571
17572 * mail/smtpmail.el (smtpmail-send-command): Don't include AUTH
17573 passwords in the log buffer.
17574 (smtpmail-process-filter): Update the process marker so that the
17575 "broken by peer" status message is inserted in the right place.
17576
175772011-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
17578
17579 * textmodes/bibtex.el (bibtex-complete-string-cleanup)
17580 (bibtex-complete-crossref-cleanup): Adjust to accommodate needs of
17581 bibtex-completion-at-point-function.
17582 (bibtex-completion-at-point-function): Use them.
17583
17584 * newcomment.el (comment-add, comment-valid-prefix-p): Docfix.
17585
17586 * mpc.el (mpc-constraints-tag-lookup): New function.
17587 (mpc-constraints-restore): Use it to make jumping to "album=Foo" apply
17588 also to browser "album|playlist".
17589
175902011-09-14 Juri Linkov <juri@jurta.org>
17591
17592 * isearch.el (isearch-fail-pos): Add new arg `msg'. Doc fix.
17593 (isearch-edit-string): Use length of `isearch-string' when
17594 `isearch-fail-pos' returns nil.
17595 (isearch-message): Remove duplicate code and call
17596 `isearch-fail-pos' with arg `t'.
17597
175982011-09-14 Chong Yidong <cyd@stupidchicken.com>
17599
17600 * replace.el (occur-mode-goto-occurrence): Don't force using other
17601 window (Bug#9499).
17602
17603 * dired-aux.el (dired-do-chmod): Don't provide initial input.
17604
176052011-09-14 Martin Rudalics <rudalics@gmx.at>
17606
17607 * window.el (display-buffer-window): Remove.
17608 (display-buffer-record-window): Use help-setup window parameter
17609 instead of variable display-buffer-window.
17610 (display-buffer-function, special-display-buffer-names)
17611 (special-display-function): Mention help-setup parameter instead
17612 of display-buffer-window in doc-string.
17613 * help.el (help-window-setup): New argument help-window.
17614 Use help-window-setup parameter instead of display-buffer-window.
17615 Reword some messages.
17616 (with-help-window): Pass window used for displaying the buffer
17617 to help-window-setup. Don't set display-buffer-window.
17618
176192011-09-13 Glenn Morris <rgm@gnu.org>
17620
17621 * emacs-lisp/debug.el (debugger-make-xrefs):
17622 Preserve point. (Bug#9462)
17623
176242011-09-13 Chong Yidong <cyd@stupidchicken.com>
17625
17626 * window.el (window-deletable-p): Use next-frame.
17627
176282011-09-13 Martin Rudalics <rudalics@gmx.at>
17629
17630 * window.el (window-auto-delete): Remove.
17631 (window-deletable-p): Remove argument FORCE. Don't deal with
17632 dedication and previous buffers.
17633 (switch-to-prev-buffer): Don't delete window.
17634 (delete-windows-on): Delete a window's frame if and only if the
17635 window is dedicated.
17636 (replace-buffer-in-windows): Delete buffer's window or frame if
17637 and only if window is dedicated.
17638 (quit-window): Handle quit-restore as before last change.
17639 (bury-buffer): Delete window only if window-deletable-p returns t.
17640
176412011-09-13 Chong Yidong <cyd@stupidchicken.com>
17642
17643 * window.el (window-deletable-p): Never delete the last frame on a
17644 given terminal.
17645
176462011-09-13 Glenn Morris <rgm@gnu.org>
17647
17648 * help.el (describe-key-briefly): Copy previous standard-output change.
17649
176502011-09-13 PJ Weisberg <pj@irregularexpressions.net>
17651
17652 * help.el (where-is): Respect non-standard standard-output. (Bug#9030)
17653
176542011-09-13 Glenn Morris <rgm@gnu.org>
17655
17656 * emacs-lisp/lisp-mode.el (lisp-indent-function):
17657 * progmodes/scheme.el (scheme-indent-function): Doc fixes.
17658
176592011-09-12 Chong Yidong <cyd@stupidchicken.com>
17660
17661 * dired-aux.el (dired-mark-read-string): Don't return default
17662 value on empty input (Bug#9361).
17663 (dired-do-chxxx): Treat empty input for "touch" as no -t option.
17664 Omit initial minibuffer contents.
17665 (dired-do-chmod): Signal an error on empty input.
17666 (dired-mark-read-string): Don't return default on empty input.
17667
17668 * files.el (file-modes-symbolic-to-number): Doc fix.
17669
176702011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
17671
17672 * international/mule-cmds.el (ucs-completions): Remove.
17673 (read-char-by-name): Use complete-with-action instead; add metadata.
17674
176752011-09-11 Chong Yidong <cyd@stupidchicken.com>
17676
17677 * window.el (display-buffer--action-function-custom-type)
17678 (display-buffer--action-custom-type): New vars.
17679 (display-buffer-alist, display-buffer-default-action)
17680 (display-buffer-overriding-action): Add defcustom types.
17681
17682 * frame.el (delete-other-frames): Doc fix (Bug#276).
17683
176842011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
17685
17686 * play/doctor.el (make-doctor-variables): Define `doctor-sent'.
17687
176882011-09-11 Chong Yidong <cyd@stupidchicken.com>
17689
17690 Change modes that used same-window-* vars to use switch-to-buffer.
17691
17692 * progmodes/gdb-mi.el (gdb-restore-windows, gdb-setup-windows):
17693 Use switch-to-buffer.
17694
17695 * cus-edit.el (customize-group, custom-buffer-create)
17696 (customize-browse, custom-buffer-create-other-window):
17697 Use switch-to-buffer or switch-to-buffer-other-window.
17698
17699 * info.el (info, Info-find-node, Info-revert-find-node, Info-next)
17700 (Info-prev, Info-up, Info-speedbar-goto-node)
17701 (info-display-manual): Use switch-to-buffer.
17702 (Info-speedbar-goto-node): Use switch-to-buffer-other-frame.
17703
17704 * mail/sendmail.el (mail): Use switch-to-buffer.
17705 (mail-recover): Use switch-to-buffer-other-window.
17706
17707 * cmuscheme.el (run-scheme, switch-to-scheme):
17708 * ielm.el (ielm):
17709 * shell.el (shell):
17710 * net/rlogin.el (rlogin):
17711 * net/telnet.el (telnet, rsh):
17712 * progmodes/inf-lisp.el (inferior-lisp): Use switch-to-buffer.
17713
177142011-09-11 Andreas Schwab <schwab@linux-m68k.org>
17715
17716 * dired.el (dired-sort-toggle-or-edit): Revert last changes.
17717
177182011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
17719
17720 * dired.el (dired-sort-toggle-or-edit): -o doesn't exist on *BSD,
17721 so don't mention it (bug#9301).
17722 (dired-sort-toggle-or-edit): Clarify string further.
17723
17724 * faces.el (face-spec-set-match-display): Make `(type graphic)'
17725 match `x', `w32' and `ns', like the manual says (bug#9029).
17726
17727 * subr.el (eval-after-load): Doc string clarification (bug#9125).
17728 (process-kill-buffer-query-function): Mention the buffer name in
17729 the query.
17730
17731 * image-mode.el (image-next-line): The line parameter is mandatory
17732 (bug#9258).
17733
17734 * dired.el (dired-sort-toggle-or-edit): Mention -o and -g, too,
17735 which can be useful (bug#9301).
17736
17737 * textmodes/flyspell.el: Remove obsolete comment (bug#9368).
17738
17739 * subr.el (match-string): Mention that the current buffer should
17740 be the same as the search was done in (bug#9282).
17741
17742 * facemenu.el: Disable the remove-* commands if the mark isn't
17743 active (bug#9162).
17744
177452011-09-10 Chong Yidong <cyd@stupidchicken.com>
17746
17747 * buff-menu.el (Buffer-menu-switch-other-window): Use second arg
17748 of display-buffer.
17749 (Buffer-menu-2-window): Use switch-to-buffer-other-window.
17750
17751 * replace.el (occur-mode-goto-occurrence)
17752 (occur-mode-display-occurrence) Use second arg of pop-to-buffer
17753 and display-buffer.
17754
17755 * mail/reporter.el (reporter-submit-bug-report): Use second arg of
17756 display-buffer.
17757
17758 * mail/sendmail.el (sendmail-user-agent-compose): Don't bind the
17759 special-display and same-window variables.
17760 (mail-other-window): Use switch-to-buffer-other-window.
17761 (mail-other-frame): USe switch-to-buffer-other-frame.
17762
17763 * progmodes/gdb-mi.el (gdb-frame-gdb-buffer):
17764 Use display-buffer-other-frame.
17765 (gdb-display-gdb-buffer): Use pop-to-buffer.
17766
17767 * progmodes/gud.el (gud-goto-info): Use info-other-window.
17768
17769 * progmodes/python.el: Don't set same-window-buffer-names.
17770
17771 * textmodes/bibtex.el (bibtex-search-entry): Use switch-to-buffer.
17772
17773 * window.el (display-buffer-alist): Add *Python*.
17774
177752011-09-10 Chong Yidong <cyd@stupidchicken.com>
17776
17777 * window.el (display-buffer-alist): Add entry for buffers
17778 previously handled same-window-*.
17779 (display-buffer-alist, display-buffer-default-action)
17780 (display-buffer-overriding-action): Mark as risky.
17781 (display-buffer-alist): Document action function changes.
17782 (display-buffer--same-window-action)
17783 (display-buffer--other-frame-action): New variables.
17784 (switch-to-buffer, display-buffer-other-frame): Use them.
17785 (display-buffer): Rename reuse-frame entry to reusable-frames.
17786 (display-buffer-reuse-selected-window): Function deleted.
17787 (display-buffer-reuse-window): Handle reusable-frames alist entry.
17788 If it's omitted, check pop-up-frames/display-buffer-reuse-frames.
17789 (display-buffer-special): New function.
17790 (display-buffer--maybe-pop-up-frame-or-window): Rename from
17791 display-buffer-reuse-or-pop-window. Split off special-display
17792 part into display-buffer-special.
17793 (display-buffer-use-some-window): Don't perform any special
17794 pop-up-frames handling.
17795 (pop-to-buffer): Use window-normalize-buffer-to-switch-to.
17796 (display-buffer--maybe-same-window): Rename from
17797 display-buffer-maybe-same-window.
17798
17799 * info.el: Don't set same-window-regexps.
17800 (info-setup): New function.
17801 (info-other-window, info): Call it.
17802
17803 * cus-edit.el: Don't set same-window-regexps.
17804 (customize-group): New argument.
17805 (customize-group-other-window): Use it.
17806 (customize-face, customize-face-other-window): Likewise.
17807 (custom-buffer-create-other-window): Use pop-to-buffer directly.
17808
17809 * net/rlogin.el:
17810 * net/telnet.el:
17811 * progmodes/gud.el: Don't set same-window-regexps.
17812
17813 * cmuscheme.el:
17814 * ielm.el:
17815 * shell.el:
17816 * mail/sendmail.el:
17817 * progmodes/inf-lisp.el: Don't set same-window-buffer-names.
17818
178192011-09-10 Juri Linkov <juri@jurta.org>
17820
17821 * isearch.el (isearch-edit-string): Remove obsolete mention of
17822 `C-w' (`isearch-yank-word-or-char') from docstring.
17823 (isearch-query-replace): Fix typo in docstring (bug#9466).
17824
178252011-09-10 Juri Linkov <juri@jurta.org>
17826
17827 * paren.el (show-paren-function): Don't show escaped parens.
17828 Let-bind `unescaped' to `t' when paren is not escaped. (Bug#9461)
17829
178302011-09-10 Eli Zaretskii <eliz@gnu.org>
17831
17832 * mail/sendmail.el (mml-to-mime, mml-attach-file)
17833 (mm-default-file-encoding): Remove autoload forms, they are
17834 replaced with autoload cookies in mml.el and mm-encode.el.
17835 (mail-add-attachment): New command.
17836 (mail-mode-map): Add a menu-bar item for mail-add-attachment.
17837 (mail-mode): Mention mail-insert-file and mail-add-attachment in
17838 the doc string.
17839 (mml-to-mime, mml-attach-file, mm-default-file-encoding): Declare.
17840
178412011-09-10 Reuben Thomas <rrt@sc3d.org>
17842
17843 * simple.el (count-words-region): Use buffer if there's no region
17844 (bug#9429).
17845
178462011-09-09 Juri Linkov <juri@jurta.org>
17847
17848 * wdired.el (wdired-change-to-wdired-mode): Set buffer-local
17849 `isearch-filter-predicate' to `wdired-isearch-filter-read-only'.
17850 (wdired-isearch-filter-read-only): New function. (Bug#6362)
17851
178522011-09-09 Alan Mackenzie <acm@muc.de>
17853
17854 * progmodes/cc-mode.el (awk-mode): Prevent `define-derived-mode'
17855 spuriously generating `awk-mode-syntax-table'. (Bug #9448).
17856
178572011-09-09 Eli Zaretskii <eliz@gnu.org>
17858
17859 Fix for Savannah bug#9392.
17860 * simple.el (mail-encode-mml): New defvar.
17861
17862 * mail/rmail.el (mail-encode-mml): Add a defvar.
17863 (rmail-enable-mime-composing): Default to t.
17864 (rmail-forward): Use MIME method of forwarding only if both
17865 rmail-enable-mime-composing and rmail-enable-mime are non-nil.
17866 Set mail-encode-mml non-nil if the MIME method was used.
17867
17868 * mail/sendmail.el (mml-to-mime): Add autoload form.
17869 (mail-encode-mml): Add a defvar.
17870 (mail-mode): Make mail-encode-mml buffer-local and initialize it
17871 to nil.
17872 (mail-send): If mail-encode-mml is non-nil, run the outgoing
17873 message through mml-to-mime, and reset mail-encode-mml to nil.
17874
178752011-09-09 Glenn Morris <rgm@gnu.org>
17876
17877 * woman.el (woman-if-body): When processing an .el block,
17878 do not delete the next .el block as well. (Bug#9447)
17879 (woman-special-characters): Add oq, cq, and hy characters.
17880
178812011-09-08 Martin Rudalics <rudalics@gmx.at>
17882
17883 * window.el (window-deletable-p): Make sure window is live before
17884 invoking window-prev-buffers.
17885
178862011-09-08 Leo Liu <sdl.web@gmail.com>
17887
17888 * net/rcirc.el (rcirc-cmd-invite): New rcirc command. (Bug#9453)
17889
178902011-09-08 Juri Linkov <juri@jurta.org>
17891
17892 * progmodes/compile.el (compilation-environment): Make it
17893 a defcustom (bug#8340).
17894
178952011-09-08 Martin Rudalics <rudalics@gmx.at>
17896
17897 * window.el (frame-auto-delete): Rename to window-auto-delete.
17898 Make it control auto-deletion of windows and/or frames.
17899 (window-deletable-p): New argument FORCE. Rewrite conditions
17900 for deleting window/frame. (Bug#9419)
17901 (switch-to-prev-buffer, replace-buffer-in-windows, quit-window):
17902 Rewrite handling of case when window/frame can be deleted.
17903 (delete-windows-on): Call window-deletable-p with new FORCE
17904 argument t. (Bug#9456)
17905
179062011-09-07 Chong Yidong <cyd@stupidchicken.com>
17907
17908 * help-mode.el (help-mode): Restore autoload.
17909
179102011-09-07 Juri Linkov <juri@jurta.org>
17911
17912 * progmodes/compile.el (compilation-start): Let-bind `thisenv' to
17913 `compilation-environment'. Set buffer-local
17914 `compilation-environment' to `thisenv' later after (funcall mode).
17915 (Bug#8340)
17916
17917 * vc/vc-git.el (vc-git-grep): Remove --no-color. (Bug#9408)
17918 (vc-git-grep): Prepend "PAGER=" to `compilation-environment'
17919 instead of replacing its value. (Bug#8340)
17920
179212011-09-07 Juri Linkov <juri@jurta.org>
17922
17923 * progmodes/grep.el (grep-regexp-alist): Calculate column positions
17924 based on text properties put by `grep-filter' instead of matching
17925 escape sequences.
17926 (grep-mode): Set buffer-local `compilation-error-screen-columns'
17927 to the value of `grep-error-screen-columns' (bug#9438).
17928
179292011-09-07 Juri Linkov <juri@jurta.org>
17930
17931 * simple.el (next-error-highlight, next-error-highlight-no-select):
17932 Doc fix (bug#9432).
17933
179342011-09-07 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
17935
17936 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
17937 Check for null c-opt-block-decls-with-vars-key. (Bug#9443)
17938
179392011-09-07 Leo Liu <sdl.web@gmail.com>
17940
17941 * net/rcirc.el (rcirc-mode): Conditionally initialize
17942 rcirc-input-ring.
17943
179442011-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
17945
17946 * emacs-lisp/find-func.el (find-function-C-source): Only set
17947 find-function-C-source-directory after checking that we found a source
17948 file there (bug#9440).
17949
179502011-09-06 Alan Mackenzie <acm@muc.de>
17951
17952 * isearch.el (isearch-other-meta-char): Wherever a key list is
17953 unread, "unread" the prefix arg, too. This fixes bug #8901.
17954
179552011-09-05 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
17956
17957 * progmodes/grep.el (rgrep): Add "-type d" (bug#9414).
17958
179592011-09-05 Juri Linkov <juri@jurta.org>
17960
17961 * progmodes/grep.el (grep-process-setup): Fix comments (bug#8084).
17962
179632011-09-05 Juri Linkov <juri@jurta.org>
17964
17965 * progmodes/grep.el (grep-filter): Avoid incomplete processing by
17966 keeping point where processing of grep matches begins, and
17967 continue to delete remaining escape sequences from the same point.
17968 (grep-filter): Make leading zero optional in "0?1;31m" because
17969 git-grep emits "\033[1;31m" escape sequences unlike expected
17970 "\033[01;31m" as GNU Grep does (bug#9408).
17971 (grep-process-setup): Replace obsolete "ml=" with newer "sl=".
17972
179732011-09-05 Juri Linkov <juri@jurta.org>
17974
17975 * subr.el (y-or-n-p): Capitalize "yes".
17976
179772011-09-04 Michael Albinus <michael.albinus@gmx.de>
17978
17979 * net/tramp.el (top): Require 'shell. Use `tramp-unload-hook' but
17980 `tramp-cache-unload-hook' where appropriate.
17981 (tramp-methods): Rename `tramp-remote-sh' to
17982 `tramp-remote-shell'. Add `tramp-remote-shell-args'.
17983 (tramp-handle-shell-command): New defun, moved from tramp-sh.el.
17984
17985 * net/tramp-sh.el (top): Don't require 'shell.
17986 (tramp-methods): Add `tramp-remote-shell' and
17987 `tramp-remote-shell-args' entries.
17988 (tramp-sh-file-name-handler-alist): Use `tramp-handle-shell-command'.
17989 (tramp-sh-handle-shell-command): Remove.
17990 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
17991 Use `tramp-remote-shell'.
17992
179932011-09-03 Chong Yidong <cyd@stupidchicken.com>
17994
17995 * mail/sendmail.el (sendmail-query-once-function): Delete.
17996 (sendmail-query-once): Save directly to send-mail-function.
17997 Update message-send-mail-function too.
17998
17999 * mail/smtpmail.el (smtpmail-try-auth-methods): Clarify prompt.
18000
180012011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
18002
18003 * progmodes/python.el (python-mode-map): Use correct function to
18004 start python interpreter from menu-bar (as reported by Geert
18005 Kloosterman).
18006 (inferior-python-mode-map): Fix typo.
18007 (python-shell-map): Remove.
18008
180092011-09-03 Deniz Dogan <deniz@dogan.se>
18010
18011 * net/rcirc.el (rcirc-print): Simplify code for
18012 rcirc-scroll-show-maximum-output. There is no need to walk
18013 through all windows to find the right one.
18014
180152011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
18016
18017 * help.el (help-return-method): Doc fix.
18018
180192011-09-03 Martin Rudalics <rudalics@gmx.at>
18020
18021 * window.el (window-deletable-p): Don't return a non-nil value
18022 when there's a buffer that was shown in the window before.
18023 (Bug#9419)
18024 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
18025 Set window's previous buffers to nil.
18026
180272011-09-03 Eli Zaretskii <eliz@gnu.org>
18028
18029 * mail/rmailmm.el (rmail-mime-insert-tagline): Insert an extra
18030 newline before and after the tag line, so it doesn't interfere
18031 with determining the paragraph direction of bidirectional text.
18032
180332011-09-03 Leo Liu <sdl.web@gmail.com>
18034
18035 * files.el (find-file-not-true-dirname-list): Remove. (Bug#9422)
18036
180372011-09-02 Chong Yidong <cyd@stupidchicken.com>
18038
18039 * window.el (pop-to-buffer-1, pop-to-buffer-same-window): Delete.
18040 (pop-to-buffer): Change interactive spec. Pass second argument
18041 directly to display-buffer.
18042 (display-buffer): Fix interactive spec. Use functionp to
18043 distinguish between a function and a list of functions.
18044
18045 * abbrev.el (edit-abbrevs):
18046 * arc-mode.el (archive-extract):
18047 * autoinsert.el (auto-insert):
18048 * bookmark.el (bookmark-bmenu-list):
18049 * files.el (find-file):
18050 * view.el (view-buffer):
18051 * progmodes/compile.el (compilation-goto-locus):
18052 * textmodes/bibtex.el (bibtex-initialize): Use switch-to-buffer.
18053
180542011-09-02 Chong Yidong <cyd@stupidchicken.com>
18055
18056 * window.el (display-buffer-alist): Doc fix.
18057 (display-buffer): Add docstring. Don't treat
18058 display-buffer-default specially.
18059 (display-buffer-reuse-selected-window)
18060 (display-buffer-same-window, display-buffer-maybe-same-window)
18061 (display-buffer-reuse-window, display-buffer-pop-up-frame)
18062 (display-buffer-pop-up-window)
18063 (display-buffer-reuse-or-pop-window)
18064 (display-buffer-use-some-window): New functions.
18065 (display-buffer-default-action): Use them.
18066 (display-buffer-default): Delete.
18067 (pop-to-buffer-1): Fix choice of actions.
18068
180692011-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
18070
18071 * minibuffer.el (completion--insert-strings): Don't get confused by
18072 completion entries that end with an LF char.
18073
180742011-09-01 Eli Zaretskii <eliz@gnu.org>
18075
18076 * window.el (frame-auto-delete, window-deletable-p): Doc fix.
18077
180782011-09-01 Chong Yidong <cyd@stupidchicken.com>
18079
18080 * window.el (display-buffer): Restore interactive spec.
18081 (display-buffer-same-window, display-buffer-other-window):
18082 New functions.
18083 (pop-to-buffer-1): New function. Use the above.
18084 (pop-to-buffer, pop-to-buffer-same-window): Use it.
18085 (pop-to-buffer-other-window, pop-to-buffer-other-frame): Delete.
18086
18087 * view.el (view-buffer-other-window, view-buffer-other-frame):
18088 Just use pop-to-buffer.
18089
180902011-09-01 Thierry Volpiatto <thierry.volpiatto@gmail.com>
18091
18092 * vc/vc-rcs.el (vc-rcs-responsible-p): Handle directories. (Bug#9391)
18093
180942011-09-01 Wilfred Hughes <wilfred@potatolondon.com> (tiny change)
18095
18096 * vc/vc-git.el (vc-git-grep): Use --no-color. (Bug#9408)
18097
180982011-08-31 Richard Stallman <rms@gnu.org>
18099
18100 * mail/rmail.el (rmail-epa-decrypt): Rewrite to take account
18101 of the separation of rmail-view-buffer from rmail-buffer.
18102 If you say no to "replace original", the decrypt is in the
18103 view buffer. If you say yes, the decrypt goes into the
18104 rmail buffer also.
18105
181062011-08-31 Martin Rudalics <rudalics@gmx.at>
18107
18108 * window.el (display-buffer-window): Rewrite doc-string.
18109 (display-buffer-record-window): New function.
18110 (display-buffer-macro-specifiers)
18111 (display-buffer-even-window-sizes, display-buffer-set-height)
18112 (display-buffer-set-width, display-buffer-in-window)
18113 (display-buffer-reuse-window, display-buffer-split-specifiers)
18114 (display-buffer-side-specifiers, display-buffer-split-window-1)
18115 (display-buffer-split-window, display-buffer-split-atom-window)
18116 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
18117 (display-buffer-pop-up-side-window, display-buffer-in-side-window)
18118 (display-buffer-other-window-means-other-frame)
18119 (display-buffer-normalize-special)
18120 (display-buffer-normalize-default)
18121 (display-buffer-normalize-argument)
18122 (display-buffer-normalize-alist-1, display-buffer-normalize-alist)
18123 (display-buffer-normalize-specifiers, display-buffer-frame)
18124 (display-buffer-same-window, display-buffer-same-frame)
18125 (display-buffer-other-window)
18126 (display-buffer-same-frame-other-window)
18127 (display-buffer-other-frame, pop-to-buffer-same-window)
18128 (pop-to-buffer-same-frame, pop-to-buffer-other-window)
18129 (pop-to-buffer-same-frame-other-window, pop-to-buffer-other-frame)
18130 (switch-to-buffer-same-frame)
18131 (switch-to-buffer-other-window-same-frame)
18132 (display-buffer-alist-of-strings-p, display-buffer-alist-add)
18133 (display-buffer-alist-set-1, display-buffer-alist-set-2)
18134 (display-buffer-alist-set): Remove.
18135 (display-buffer-function, special-display-buffer-names)
18136 (special-display-regexps, special-display-function):
18137 In doc-string refer to display-buffer-window and quit-restore
18138 parameter.
18139 (pop-up-frame-alist, pop-up-frame-function, special-display-p)
18140 (special-display-frame-alist, special-display-popup-frame)
18141 (same-window-buffer-names, same-window-regexps, same-window-p)
18142 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
18143 (split-window-preferred-function, split-height-threshold)
18144 (split-width-threshold, window-splittable-p)
18145 (split-window-sensibly, window--try-to-split-window)
18146 (window--frame-usable-p, even-window-heights)
18147 (window--even-window-heights, window--display-buffer-1)
18148 (window--display-buffer-2, display-buffer-other-frame):
18149 Restore old Emacs 23 code, order and doc-strings where applicable.
18150 (display-buffer-default, display-buffer-assq-regexp): New functions.
18151 (display-buffer-alist): Rewrite doc-string.
18152 (display-buffer-default-action)
18153 (display-buffer-overriding-action): New variables.
18154 (display-buffer, switch-to-buffer): Rewrite.
18155 (pop-to-buffer): Restore Emacs 23 behavior but use
18156 window-normalize-buffer-to-display.
18157 (switch-to-buffer-other-window, switch-to-buffer-other-frame):
18158 Restore Emacs 23 behavior but use
18159 window-normalize-buffer-to-switch-to.
18160 (pop-to-buffer-same-window): Rewrite.
18161 (pop-to-buffer-other-window, pop-to-buffer-other-frame):
18162 Rewrite using Emacs 23 options.
18163
181642011-08-31 Michael Albinus <michael.albinus@gmx.de>
18165
18166 * net/tramp.el (tramp-root-regexp): Remove.
18167 (tramp-completion-file-name-regexp-unified)
18168 (tramp-completion-file-name-regexp-separate)
18169 (tramp-completion-file-name-regexp-url): Don't use leading volume
18170 letter on w32 systems. (Bug#5303, Bug#9311)
18171 (tramp-drop-volume-letter): Simplify definition.
18172 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
18173
181742011-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
18175
18176 * subr.el (event-modifiers): Fix "missing modifier" part of docstring
18177 (bug#9356).
18178
181792011-08-30 Reuben Thomas <rrt@sc3d.org> (tiny change)
18180
18181 * vc/pcvs-defs.el (cvs-find-file-and-jump): Docstring typo (bug#9369).
18182
181832011-08-29 Juri Linkov <juri@jurta.org>
18184
18185 * isearch.el (isearch-done): Don't display message "Mark saved"
18186 when arg `edit' is non-nil to prevent its flicker in the echo area.
18187
181882011-08-28 Chong Yidong <cyd@stupidchicken.com>
18189
18190 * emacs-lisp/package.el (package-menu-mark-delete): Allow marking
18191 obsolete packages for deletion.
18192
181932011-08-28 Christoph Scholtes <cschol2112@googlemail.com>
18194
18195 * help-mode.el (help-mode-map): Add special-mode-map to parent.
18196 (help-mode): Derive help-mode from special-mode. Don't invoke
18197 view-mode from help-mode.
18198 (help-xref-override-view-map): Remove.
18199 (help-make-xrefs): Remove minor-mode-overriding-map-alist since
18200 view-mode is not used anymore.
18201
182022011-08-28 Chong Yidong <cyd@stupidchicken.com>
18203
18204 * server.el (server-port): Doc fix.
18205
18206 * cus-theme.el (custom-theme-choose-mode): Inherit from
18207 special-mode (Bug#9124).
18208 (custom-theme-choose-mode-map): Add special-mode to parent.
18209
182102011-08-28 Alan Mackenzie <acm@muc.de>
18211
18212 * progmodes/cc-fonts.el
18213 (c-make-font-lock-BO-decl-search-function): New function.
18214 (c-basic-matchers-after - "Fontify the clauses after various
18215 keywords"): Extract the three keyword lists for the 3 erroneous
18216 constructs from the list of four, and use the new function above
18217 in place of an old one.
18218
182192011-08-28 Deniz Dogan <deniz@dogan.se>
18220
18221 * net/rcirc.el (rcirc-insert-prev-input)
18222 (rcirc-insert-next-input): Remove unused argument.
18223
182242011-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
18225
18226 * shell.el (shell-parse-pcomplete-arguments): Unquote args (bug#9160).
18227
182282011-08-27 Alan Mackenzie <acm@muc.de>
18229
18230 * progmodes/cc-menus.el (cc-imenu-c++-generic-expression): Make it
18231 handle function pointer parameters properly.
18232
182332011-08-27 Martin Rudalics <rudalics@gmx.at>
18234
18235 * window.el (display-buffer-reuse-window): Fix case where
18236 selected window was reused with non-nil OTHER-WINDOW argument.
18237 (Bug#9381)
18238
182392011-08-27 Deniz Dogan <deniz@dogan.se>
18240
18241 * net/rcirc.el (rcirc-check-auth-status): Adding support for
18242 oftc's NickServ messages.
18243
182442011-08-27 Glenn Morris <rgm@gnu.org>
18245
18246 * saveplace.el (save-place-limit): Make it finite. (Bug#9352)
18247
182482011-08-26 Chong Yidong <cyd@stupidchicken.com>
18249
18250 * emacs-lisp/package.el (package-install): Call package-initialize
18251 if called interactively.
18252
182532011-08-26 Leo Liu <sdl.web@gmail.com>
18254
18255 * emacs-lisp/cl-macs.el (defstruct): Fix format. (Bug#9357)
18256
182572011-08-25 Juri Linkov <juri@jurta.org>
18258
18259 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
18260 `search-whitespace-regexp' (bug#9364).
18261
182622011-08-25 Juri Linkov <juri@jurta.org>
18263
18264 * isearch.el (isearch-edit-string): Let-bind `search-ring' and
18265 `regexp-search-ring' to their global values to protect from
18266 updating by `read-from-minibuffer' (bug#9185).
18267
182682011-08-25 Juri Linkov <juri@jurta.org>
18269
18270 * textmodes/ispell.el (ispell-command-loop): Add newline
18271 at the end of the "Use option `i'..." line.
18272
182732011-08-25 Juri Linkov <juri@jurta.org>
18274
18275 * battery.el (display-battery-mode): If `battery-status-function'
18276 or `battery-mode-line-format' is nil, display the message and set
18277 `display-battery-mode' to nil (bug#9363).
18278
182792011-08-25 Eli Zaretskii <eliz@gnu.org>
18280
18281 * buff-menu.el (Buffer-menu-buffer+size): Remove calls to
18282 bidi-string-mark-left-to-right; they are unnecessary now.
18283
182842011-08-25 Deniz Dogan <deniz@dogan.se>
18285
18286 * net/quickurl.el: Documentation typo fixes.
18287
182882011-08-25 Chong Yidong <cyd@stupidchicken.com>
18289
18290 * window.el (bury-buffer, quit-window): Use bury-buffer-internal.
18291
182922011-08-25 Glenn Morris <rgm@gnu.org>
18293
18294 * emacs-lisp/derived.el (define-derived-mode): Doc fix.
18295
18296 * mail/smtpmail.el (smtpmail-smtp-user): Add version: tag.
18297 (smtpmail-via-smtp): Handle nil response from smtp.
18298
182992011-08-24 Juri Linkov <juri@jurta.org>
18300
18301 * proced.el (proced-marked): Inherit from `error' instead of
18302 `font-lock-warning-face'.
18303
18304 * ibuffer.el (ibuffer-marked-face): Change default face from
18305 `font-lock-warning-face' to `warning'.
18306 (ibuffer-deletion-face): Change default face from
18307 `font-lock-type-face' to `error'.
18308
18309 * battery.el (battery-update): Use the face `error' instead of
18310 `font-lock-warning-face' (bug#6117).
18311
183122011-08-24 Juri Linkov <juri@jurta.org>
18313
18314 * faces.el (success): Change face color from "Green3" to
18315 "ForestGreen" on light background (bug#9353).
18316
183172011-08-24 Chong Yidong <cyd@stupidchicken.com>
18318
18319 * window.el (quit-window): Rename from quit-restore-window.
18320 Use same arglist as old quit-window.
18321 (frame-auto-delete): Doc fix.
18322
18323 * view.el (view-mode-exit): Use quit-window.
18324
183252011-08-24 Juri Linkov <juri@jurta.org>
18326
18327 * isearch.el (isearch-ring-adjust1): Start visiting previous
18328 search strings from the index 0 (-1 + 1) instead of 1 (0 + 1).
18329 (isearch-repeat, isearch-edit-string): Call `isearch-ring-adjust1'
18330 for empty search string (when the last search string is reused
18331 automatically) to adjust the isearch ring to the last element and
18332 prepare the correct index for further M-p commands (bug#9185).
18333
183342011-08-24 Kenichi Handa <handa@m17n.org>
18335
18336 * international/ucs-normalize.el: If decomposition property of
18337 CHAR is the default one (i.e. a list of CHAR itself), treat it as
18338 nil.
18339 (nfd, nfkd): Likewise.
18340
183412011-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
18342
18343 * mpc.el (mpc--proc-filter): Don't signal mpc-proc-error since signals
18344 from process filters aren't reliably transmitted to the surrounding
18345 accept-process-output.
18346 (mpc-proc-check): New function.
18347 (mpc-proc-sync): Use it (bug#8293)
18348
183492011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
18350
18351 * emacs-lisp/eieio.el (eieio-defmethod, eieio-defgeneric):
18352 Add compatibility functions (bug#9313).
18353
183542011-08-23 Eli Zaretskii <eliz@gnu.org>
18355
18356 * cus-start.el (all): Add entry for bidi-paragraph-direction.
18357
18358 * international/uni-bidi.el: Regenerate.
18359
183602011-08-23 Kenichi Handa <handa@m17n.org>
18361
18362 * international/charprop.el:
18363 * international/uni-bidi.el:
18364 * international/uni-category.el:
18365 * international/uni-combining.el:
18366 * international/uni-comment.el:
18367 * international/uni-decimal.el:
18368 * international/uni-decomposition.el:
18369 * international/uni-digit.el:
18370 * international/uni-lowercase.el:
18371 * international/uni-mirrored.el:
18372 * international/uni-name.el:
18373 * international/uni-numeric.el:
18374 * international/uni-old-name.el:
18375 * international/uni-titlecase.el:
18376 * international/uni-uppercase.el: Regenerate.
18377
183782011-08-23 Martin Rudalics <rudalics@gmx.at>
18379
18380 * help.el (help-window-setup): Fix message displayed when other
18381 window is reused. (Bug#9341)
18382
183832011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
18384
18385 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list.
18386 * pcomplete.el (pcomplete-quote-argument): Fix thinko (bug#9161).
18387
18388 * pcomplete.el (pcomplete-parse-comint-arguments): Fix inf-loop.
18389 Mark obsolete.
18390 * shell.el (shell-parse-pcomplete-arguments): New function.
18391 (shell-completion-vars): Use it instead (bug#9160).
18392
183932011-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
18394
18395 * progmodes/sh-script.el (sh-maybe-here-document): Disable magic in
18396 strings and comments (bug#9333).
18397
18398 * emacs-lisp/debug.el (debug-arglist): New function.
18399 (debug-convert-byte-code): Use it. Handle lexical byte-codes.
18400 (debug-on-entry-1): Handle interpreted closures (bug#9120).
18401
184022011-08-22 Juri Linkov <juri@jurta.org>
18403
18404 * progmodes/compile.el (compilation-mode-font-lock-keywords):
18405 Revert regexp that highlights output switches to its old
18406 pre-2010-10-28 value and remove one `?' from it (bug#9319).
18407
18408 * progmodes/grep.el (grep-process-setup): Use `buffer-modified-p'
18409 to check for empty output (bug#9226).
18410
184112011-08-22 Chong Yidong <cyd@stupidchicken.com>
18412
18413 * progmodes/scheme.el (scheme-mode-syntax-table): Don't use
18414 symbol-constituent as the default, as that stops font-lock from
18415 working properly (Bug#8843).
18416
184172011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
18418
18419 * mail/smtpmail.el (smtpmail-via-smtp): Only bind
18420 `coding-system-for-*' around the process open call to avoid
18421 auth-source side effects.
18422 (smtpmail-try-auth-methods): Expand the secret password.
18423 (smtpmail-query-smtp-server): Allow `quit'-ing out in case the
18424 probe hangs.
18425
184262011-08-21 Chong Yidong <cyd@stupidchicken.com>
18427
18428 * term.el (term-mouse-paste): Yank primary selection (Bug#6845).
18429
18430 * emacs-lisp/find-func.el (find-function-noselect): New arg
18431 lisp-only.
18432
18433 * emacs-lisp/edebug.el (edebug-instrument-function): Use it to
18434 signal an error for built-in functions (Bug#6664).
18435
184362011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
18437
18438 * mail/smtpmail.el (smtpmail-smtp-user): New variable.
18439 (smtpmail-try-auth-methods): Use it.
18440
184412011-08-21 Chong Yidong <cyd@stupidchicken.com>
18442
18443 * font-lock.el (font-lock-fontify-region)
18444 (font-lock-unfontify-region, font-lock-default-fontify-buffer)
18445 (font-lock-default-unfontify-buffer)
18446 (font-lock-default-fontify-region)
18447 (font-lock-default-unfontify-region): Add docstrings (Bug#8624).
18448
18449 * progmodes/compile.el (compilation-error-properties):
18450 Fix confusion between file struct and message struct (Bug#9319).
18451 (compilation-error-regexp-alist-alist): Fix 2011-05-09 change to
18452 `ant' regexp.
18453
18454 * net/browse-url.el (browse-url-firefox): Don't call
18455 browse-url-firefox-sentinel unless using -remote (Bug#9328).
18456
184572011-08-20 Glenn Morris <rgm@gnu.org>
18458
18459 * tutorial.el (help-with-tutorial): Avoid an error on short screens.
18460
18461 * tutorial.el (tutorial--default-keys): Update some default bindings.
18462
18463 * files.el (hack-local-variables): Fully ignore case for "mode:".
18464
184652011-08-20 Alan Mackenzie <acm@muc.de>
18466
18467 Resolve invalid use of a regexp in regexp-opt.
18468
18469 * progmodes/cc-fonts.el (c-complex-decl-matchers): Add in special
18470 detection for a java annotation.
18471
18472 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Add in special
18473 detection for a java annotation.
18474
18475 * progmodes/cc-langs.el (c-prefix-spec-kwds-re): Remove the special
18476 handling for java.
18477 (c-modifier-kwds): Remove the regexp "@[A-za-z0-9]+".
18478
184792011-08-20 Chong Yidong <cyd@stupidchicken.com>
18480
18481 * startup.el (normal-top-level-add-subdirs-to-load-path): Doc fix
18482 (Bug#9274).
18483
184842011-08-20 Alan Mackenzie <acm@muc.de>
18485
18486 Fontify CPP expressions correctly when starting in the middle of
18487 such a construct. Mainly for when jit-lock etc. starts a chunk
18488 here.
18489
18490 * progmodes/cc-fonts.el (c-font-lock-context): New buffer local
18491 variable.
18492 (c-make-font-lock-search-form): New function, extracted from
18493 c-make-font-lock-search-function.
18494 (c-make-font-lock-search-function): Use the above function.
18495 (c-make-font-lock-context-search-function): New function.
18496 (c-cpp-matchers): Enhance the preprocessor expression case with
18497 the above function
18498 (c-font-lock-complex-decl-prepare): Test for being in a CPP form
18499 which takes an expression.
18500
18501 * progmodes/cc-langs.el (c-cpp-expr-intro-re): New lang-variable.
18502
185032011-08-20 Martin Rudalics <rudalics@gmx.at>
18504
18505 * window.el (display-buffer-reuse-window)
18506 (display-buffer-pop-up-window): Don't reuse or split a side
18507 window.
18508
185092011-08-19 Glenn Morris <rgm@gnu.org>
18510
18511 * files.el (hack-local-variables-prop-line, hack-local-variables):
18512 Downcase "Mode:". (Bug#9331)
18513
185142011-08-18 Chong Yidong <cyd@stupidchicken.com>
18515
18516 * international/characters.el: Add L and R categories.
18517
18518 * subr.el (bidi-string-mark-left-to-right): Rename from
18519 string-mark-left-to-right. Use category search.
18520
18521 * buff-menu.el (Buffer-menu-buffer+size): Callers changed.
18522
185232011-08-18 Juri Linkov <juri@jurta.org>
18524
18525 * faces.el (error, warning, success): New faces with definitions
18526 copied from old default values of `font-lock-warning-face',
18527 `compilation-warning', `compilation-info' (bug#6117).
18528
18529 * font-lock.el (font-lock-warning-face): Inherit from `error'.
18530
18531 * progmodes/compile.el (compilation-error): Inherit from `error'.
18532 (compilation-warning): Inherit from `warning'.
18533 (compilation-info): Inherit from `success'.
18534
18535 * dired.el (dired-marked): Inherit from `warning'.
18536 (dired-flagged): Inherit from `error'.
18537
185382011-08-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
18539
18540 * mail/smtpmail.el (auth-source): Require to avoid problems with
18541 binding variables (bug#9298). Also clean up some unused
18542 autoloads.
18543
18544 * net/network-stream.el (network-stream-open-starttls):
18545 Support using starttls.el without using gnutls-cli.
18546
185472011-08-17 Juri Linkov <juri@jurta.org>
18548
18549 * progmodes/grep.el (rgrep): Handle the case when
18550 `grep-find-command' is a cons cell (bug#9278).
18551
185522011-08-17 Martin Rudalics <rudalics@gmx.at>
18553
18554 * window.el (display-buffer-pop-up-frame): Run frame creation
18555 function with BUFFER current (as special-display-popup-frame
18556 does). Reported by Drew Adams.
18557
185582011-08-17 Daiki Ueno <ueno@unixuser.org>
18559
18560 * epa-mail.el: Simplify GnuPG group expansion using
18561 epg-expand-group.
18562 (epa-mail-group-alist, epa-mail-group-modtime)
18563 (epa-mail-gnupg-conf-file, epa-mail-parse-groups)
18564 (epa-mail-sync-groups, epa-mail-expand-recipient-1)
18565 (epa-mail-expand-recipients-2, epa-mail-expand-recipients):
18566 Remove.
18567
185682011-08-16 Feng Li <fengli@gmail.com> (tiny change)
18569
18570 * calc/calc-ext.el (math-defintegral-2): Remove nested backquote.
18571
185722011-08-16 Alan Mackenzie <acm@muc.de>
18573
18574 * progmodes/cc-engine.el (c-state-cache-non-literal-place):
18575 Correct, to avoid the inside of macros.
18576
185772011-08-16 Richard Stallman <rms@gnu.org>
18578
18579 * epa-mail.el: Handle GnuPG group definitions.
18580 (epa-mail-group-alist, epa-mail-group-modtime)
18581 (epa-mail-gnupg-conf-file): New variables.
18582 (epa-mail-parse-groups, epa-mail-sync-groups)
18583 (epa-mail-expand-recipient-1, epa-mail-expand-recipients-2)
18584 (epa-mail-expand-recipients): New functions.
18585 (epa-mail-encrypt): Call epa-mail-expand-recipients.
18586
18587 * mail/rmail.el (rmail-epa-decrypt): New command.
18588
18589 * epa.el (epa-decrypt-region): New arg MAKE-BUFFER-FUNCTION.
18590 Don't bind buffer-read-only, just inhibit-read-only.
18591 (epa--find-coding-system-for-mime-charset): Fix the non-xemacs case.
18592 (epa-decrypt-armor-in-region): Make error message clearer.
18593
185942011-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
18595
18596 * minibuffer.el (completion-pcm--merge-completions): Don't merge "a1b"
18597 and "a2b" to "ab" for `prefix'.
18598
185992011-08-14 Chong Yidong <cyd@stupidchicken.com>
18600
18601 * ibuf-ext.el (ibuffer-filter-disable): New arg for deleting
18602 filter groups.
18603 (ibuffer-included-in-filter-p-1): Use it. Suggested by Rafaël
18604 Fourquet (Bug#8804).
18605
186062011-08-12 Juanma Barranquero <lekktu@gmail.com>
18607
18608 * startup.el (argi): Declare as global variable (bug#9275).
18609
186102011-08-12 Chong Yidong <cyd@stupidchicken.com>
18611
18612 * subr.el (string-mark-left-to-right): Search the entire string
18613 for RTL script, not just the terminating character. Doc fix.
18614
186152011-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
18616
18617 * progmodes/js.el (js-syntax-propertize, js-syntax-propertize-regexp):
18618 New function.
18619 (js--regexp-literal, js-syntax-propertize-function): Remove.
18620 (js-mode): Use js-syntax-propertize to handle multilines (bug#9183).
18621 (js-mode-map): Don't rebind electric keys.
18622 (js-insert-and-indent): Remove.
18623 (js-mode): Setup electric-layout and electric-indent instead.
18624
18625 * epa-file.el (epa-file-select-keys): Revert to nil default (bug#9280).
18626
186272011-08-12 Daiki Ueno <ueno@unixuser.org>
18628
18629 * epa.el (epa-progress-callback-function): Fix the logic of
18630 displaying progress.
18631 * epa-file.el (epa-file-insert-file-contents): Make progress
18632 display more user-friendly.
18633 (epa-file-write-region): Ditto.
18634
186352011-08-10 Chong Yidong <cyd@stupidchicken.com>
18636
18637 * subr.el (string-mark-left-to-right): New function.
18638
18639 * buff-menu.el (Buffer-menu-buffer+size): Remove LRM argument.
18640 Use string-mark-left-to-right.
18641 (list-buffers-noselect): Caller changed.
18642
18643 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
18644 Use string-mark-left-to-right.
18645 (tabulated-list-print): Recenter after moving point.
18646
186472011-08-10 Juri Linkov <juri@jurta.org>
18648
18649 * progmodes/grep.el (rgrep): Don't bind `process-connection-type'.
18650 This finishes incomplete reversion of 2011-06-30T01:09:13Z!larsi@gnus.org
18651 intended by 2011-07-06T15:49:19Z!larsi@gnus.org.
18652
186532011-08-09 Chong Yidong <cyd@stupidchicken.com>
18654
18655 * hi-lock.el (hi-lock-unface-buffer): Fix interactive spec
18656 (Bug#7554).
18657
186582011-08-09 Andreas Schwab <schwab@linux-m68k.org>
18659
18660 * xt-mouse.el (xterm-mouse-event-read): Try to recover the raw
18661 character. (Bug#6594)
18662
186632011-08-08 Chong Yidong <cyd@stupidchicken.com>
18664
18665 * image-dired.el: Don't use find-file for temporary work (Bug#7895).
18666 (image-dired--with-db-file): New macro.
18667 (image-dired-write-tags, image-dired-remove-tag)
18668 (image-dired-create-gallery-lists, image-dired-write-comments)
18669 (image-dired-get-comment, image-dired-mark-tagged-files)
18670 (image-dired-list-tags, image-dired-gallery-generate): Use it.
18671 (image-dired-gallery-generate): Use insert-file-contents.
18672
18673 * time.el (display-time-world-list, display-time-world-display):
18674 * time-stamp.el (time-stamp-string):
18675 * vc/add-log.el (add-change-log-entry): Use setenv instead of
18676 set-time-zone-rule (Bug#7337).
18677
186782011-08-08 Daiki Ueno <ueno@unixuser.org>
18679
18680 * epg.el (epg--status-KEYEXPIRED, epg--status-KEYREVOKED): Fix typo.
18681 (epg-error-to-string, epg-errors-to-string): New function.
18682 (epg-wait-for-completion): Reverse errors list.
18683 (epg--check-error-for-decrypt, epg-sign-file, epg-sign-string)
18684 (epg-encrypt-file, epg-encrypt-string, epg-export-keys-to-file)
18685 (epg--import-keys-1, epg-receive-keys, epg-delete-keys)
18686 (epg-sign-keys, epg-generate-key-from-file)
18687 (epg-generate-key-from-string): Format errors by using
18688 epg-errors-to-string (bug#9255).
18689 (epg--status-INV_SGNR, epg--status-NO_SGNR): New status handler.
18690
186912011-08-07 Juri Linkov <juri@jurta.org>
18692
18693 * faces.el (list-faces-display): Remove extra angle bracket
18694 from `help-mode-map'.
18695
18696 * info.el (Info-history-toc-nodes): Doc fix.
18697
18698 * longlines.el (longlines-mode): Doc fix.
18699
187002011-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
18701
18702 * progmodes/js.el (js--regexp-literal): Accept regexps at the beginning
18703 of statements and in a few more cases (bug#9183).
18704
18705 * emacs-lisp/cl-macs.el (cl--make-usage-var, cl--make-usage-args):
18706 New functions.
18707 (cl-transform-lambda): Use them (bug#9239).
18708
187092011-08-05 Martin Rudalics <rudalics@gmx.at>
18710
18711 * window.el (display-buffer-same-window)
18712 (display-buffer-same-frame, display-buffer-other-window)
18713 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
18714 (pop-to-buffer-other-window)
18715 (pop-to-buffer-same-frame-other-window)
18716 (pop-to-buffer-other-frame): Make them defuns.
18717 (switch-to-buffer): Don't set LABEL argument of pop-to-buffer.
18718
187192011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
18720
18721 * subr.el (make-composed-keymap): Move from C. Change calling
18722 convention, and improve docstring to bring attention to a subtle point.
18723 * minibuffer.el (completing-read-default): Adjust accordingly.
18724
187252011-08-03 Michael Albinus <michael.albinus@gmx.de>
18726
18727 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
18728 (tramp-open-shell): Use `tramp-shell-quote-argument'.
18729
18730 * net/trampver.el: Update release number.
18731
187322011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
18733
18734 * progmodes/sh-script.el (sh-font-lock-paren): Don't mistake "main" for
18735 "in" (bug#9190).
18736
187372011-08-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
18738
18739 * mail/sendmail.el (sendmail-query-once): Restore the current
18740 buffer after querying (bug#9074).
18741
18742 * dired.el (dired-flagged): Use different faces for marked and
18743 flagged files (bug#6117).
18744
18745 * emacs-lisp/cl-macs.el (dolist): Mention that there's a nil block
18746 (bug#4433).
18747
18748 * ido.el (ido-mode): Switch off the message if called
18749 non-interactively.
18750
18751 * mail/smtpmail.el (smtpmail-query-smtp-server): Try port 25
18752 before 587, since it appears that that's more likely to work for
18753 more people.
18754
18755 * cus-edit.el (custom-file): When running under emacs -q, always
18756 refuse to save the customizations, even if the .emacs file doesn't
18757 exist.
18758
18759 * info.el: Remove the `Info-beginning-of-buffer' function
18760 (bug#8325).
18761
18762 * net/network-stream.el (network-stream-open-starttls):
18763 Use `starttls-available-p' to see whether starttls.el can be used.
18764
187652011-08-01 Martin Rudalics <rudalics@gmx.at>
18766
18767 * window.el (display-buffer-in-window): Don't set dedicated status
18768 of window here (Bug#9215).
18769 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
18770 (display-buffer-pop-up-side-window)
18771 (display-buffer-in-side-window): Set dedicated status of window here.
18772
187732011-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
18774
18775 * emacs-lisp/package.el (package-generate-autoloads): Load autoloads
18776 before binding generated-autoload-file.
18777
187782011-08-01 Deniz Dogan <deniz@dogan.se>
18779
18780 * net/rcirc.el (rcirc-handler-333): Clarify docstring.
18781
187822011-07-30 Michael Albinus <michael.albinus@gmx.de>
18783
18784 Sync with Tramp 2.2.2.
18785
18786 * net/trampver.el: Update release number.
18787
187882011-07-30 Juri Linkov <juri@jurta.org>
18789
18790 * dired-aux.el (dired-touch-initial): Remove function.
18791 (dired-do-chxxx): For op-symbol `touch', set `initial' to the
18792 current time, and `default' to the last modification time of the
18793 current marked file (bug#6887).
18794
187952011-07-28 Jose E. Marchesi <jemarch@gnu.org>
18796
18797 * simple.el (goto-line): Use string-to-number to provide a
18798 numeric argument to read-number (bug#9163).
18799
188002011-07-27 Michael Albinus <michael.albinus@gmx.de>
18801
18802 * net/tramp-sh.el (tramp-maybe-send-script): Don't let-bind the
18803 connection process, it could be nil.
18804
188052011-07-27 Leo Liu <sdl.web@gmail.com>
18806
18807 Simplify url handling in rcirc-mode.
18808
18809 * net/rcirc.el (rcirc-browse-url-map, rcirc-browse-url-at-point)
18810 (rcirc-browse-url-at-mouse): Remove.
18811 * net/rcirc.el (rcirc-markup-urls): Use `make-button'.
18812
188132011-07-26 Alan Mackenzie <acm@muc.de>
18814
18815 Fontify bitfield declarations properly.
18816
18817 * progmodes/cc-langs.el (c-has-bitfields): New lang variable.
18818 (c-symbol-chars): Now exported as a lang variable.
18819 (c-not-primitive-type-keywords): New lang variable.
18820
18821 * progmodes/cc-fonts.el (c-font-lock-declarations): Jump over the
18822 QT keyword "more" to prevent "more slots: ...." being spuriously
18823 parsed as a bitfield declaration.
18824
18825 * progmodes/cc-engine.el (c-beginning-of-statement-1):
18826 Refactor and enhance to handle bitfield declarations.
18827 (c-punctuation-in): New function.
18828 (c-forward-decl-or-cast-1): Enhance CASE 3 to handle bitfield
18829 declarations properly.
18830
188312011-07-26 Ulf Jasper <ulf.jasper@web.de>
18832
18833 * calendar/icalendar.el (icalendar--all-events): Take care of
18834 multiple vcalendars in a single file.
18835 (icalendar--convert-float-to-ical): Checkdoc fixes.
18836
188372011-07-25 Deniz Dogan <deniz@dogan.se>
18838
18839 * image.el (insert-image): Clarifying docstring.
18840
188412011-07-24 Michael Albinus <michael.albinus@gmx.de>
18842
18843 * net/tramp-sh.el (tramp-barf-unless-okay): Return the value of
18844 `tramp-send-command-and-check' if there is no error.
18845 (tramp-send-command-and-read): Suppress *all* errors if NOERROR.
18846
188472011-07-22 Alan Mackenzie <acm@muc.de>
18848
18849 Prevent cc-langs.elc being loaded at run time.
18850
18851 * progmodes/cc-mode.el: Remove two autoload forms which loaded
18852 cc-langs.
18853
18854 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Don't emit
18855 "(require 'cc-langs)". Quote a form so it will evaluate at
18856 (cc-mode's) compilation time.
18857
188582011-07-22 Michael Albinus <michael.albinus@gmx.de>
18859
18860 * net/tramp.el (tramp-file-name-handler): Avoid recursive
18861 loading. (Bug#9114)
18862
188632011-07-21 Martin Rudalics <rudalics@gmx.at>
18864
18865 * window.el (display-buffer-pop-up-window)
18866 (display-buffer-pop-up-side-window)
18867 (display-buffer-in-side-window): Call display-buffer-set-height
18868 and display-buffer-set-width after setting the new window's
18869 buffer so `fit-window-to-buffer' and friends work on the right buffer.
18870
188712011-07-20 Sam Steingold <sds@gnu.org>
18872
18873 * progmodes/etags.el (etags-file-of-tag, etags-tags-table-files)
18874 (etags-tags-included-tables): Call `convert-standard-filename' on
18875 the file names contained in TAGS so that windows Emacs can handle
18876 TAGS files created by cygwin ctags.
18877
188782011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
18879
18880 * proced.el (proced-update): Revert yesterday's bug#1779 patch,
18881 which apparently didn't work.
18882
188832011-07-19 Roland Winkler <winkler@gnu.org>
18884
18885 * proced.el (proced-send-signal): For *Marked Processes* buffer
18886 put point at beginning of buffer.
18887
188882011-07-19 Stephen Berman <stephen.berman@gmx.net>
18889
18890 * proced.el (proced-format): Make header lines align with the text
18891 (bug#1779).
18892
188932011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
18894
18895 * view.el (view-buffer): Allow running in `special' modes if we're
18896 visiting a file (bug#8615).
18897
188982011-07-19 Martin Rudalics <rudalics@gmx.at>
18899
18900 * window.el (display-buffer-alist-of-strings-p)
18901 (display-buffer-alist-set-1, display-buffer-alist-set-2):
18902 New functions.
18903 (display-buffer-alist-set): Rewrite to handle Emacs 23 options
18904 more accurately.
18905
189062011-07-18 Alan Mackenzie <acm@muc.de>
18907
18908 Fontify declarators properly when, e.g., a jit-lock chunk begins
18909 inside a declaration.
18910
18911 * progmodes/cc-langs.el (c-symbol-chars): Correct a typo.
18912
18913 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
18914 New function.
18915 (c-complex-decl-matchers): Insert reference to
18916 c-font-lock-enclosing-decls.
18917
18918 * progmodes/cc-engine.el (c-backward-single-comment):
18919 (c-backward-comments): Bind open-paren-in-column-0-is-defun-start
18920 to nil around calls to (forward-comment -1).
18921
189222011-07-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
18923
18924 * image.el (put-image): Doc typo fix.
18925
18926 * progmodes/etags.el (tags-search): Doc typo fix.
18927
18928 * mail/smtpmail.el (smtpmail-via-smtp): Query the user for
18929 password if we get errors 550 to 554.
18930
189312011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
18932
18933 * net/gnutls.el (gnutls-log-level): Remove.
18934
18935 * textmodes/fill.el (adaptive-fill-regexp): Include EN DASH as an
18936 indentation character (bug#6380).
18937
18938 * files.el (buffer-offer-save): Made permanently local (bug#6241).
18939
18940 * doc-view.el (doc-view-make-safe-dir): Rewrite the error message
18941 to clarify what the problem is (bug#4291).
18942
18943 * simple.el (current-kill): Clarify what
18944 `interprogram-paste-function' does (bug#7500).
18945 (auto-fill-mode): Document `auto-fill-function' in relation to
18946 `auto-fill-mode' (bug#2470).
18947
189482011-07-16 Lawrence Mitchell <wence@gmx.li>
18949
18950 * emacs-lisp/cl-macs.el (defstruct): Ignore argument to setf
18951 method if slot is read-only (bug#9035).
18952
189532011-07-16 Martin Rudalics <rudalics@gmx.at>
18954
18955 * frame.el (select-frame-set-input-focus): New argument NORECORD.
18956 * window.el (pop-to-buffer): Select window used even if it was
18957 selected before, see discussion of (Bug#8615), (Bug#6954).
18958 Pass argument NORECORD on to select-frame-set-input-focus.
18959
189602011-07-15 Glenn Morris <rgm@gnu.org>
18961
18962 * subr.el (read-char-choice): Allow quitting. (Bug#9001)
18963 Respect help-form.
18964
189652011-07-09 Lawrence Mitchell <wence@gmx.li>
18966
18967 * net/gnutls.el (gnutls-min-prime-bits): New variable.
18968 (gnutls-negotiate): Use it.
18969
189702011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
18971
18972 * net/gnutls.el (gnutls-negotiate):
18973 Upcase `gnutls-algorithm-priority'.
18974
189752011-07-15 Glenn Morris <rgm@gnu.org>
18976
18977 * jka-compr.el (jka-compr-verbose): Move from here...
18978 * jka-cmpr-hook.el (jka-compr-verbose): ... to here. (Bug#9090)
18979 Add missing :version tag.
18980 * info.el: No need to require jka-compr when compiling.
18981
189822011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
18983
18984 * net/gnutls.el (gnutls-algorithm-priority): New variable.
18985 (gnutls-negotiate): Use it.
18986
18987 * emacs-lisp/cl-macs.el (declare): Link to the "Declarations" node.
18988
18989 * info.el (Info-beginning-of-buffer): New command.
18990 (Info-mode-map): Use it instead of `beginning-of-buffer' to allow
18991 announcing `b' as the key (bug#8325).
18992 (Info-mode-menu): Use `Info-beginning-of-buffer' for consistency.
18993
18994 * emacs-lisp/cl-macs.el (declare): Doc string fix-up.
18995
18996 * international/mule-cmds.el
18997 (describe-specified-language-support): Make the error message
18998 clearer (bug#8905).
18999
19000 * emacs-lisp/cl-macs.el (declare): Add a doc string (bug#8690).
19001
19002 * isearch.el (isearch-barrier): Add a doc string, since it's
19003 mentioned in a function doc string (bug#8678).
19004
190052011-07-15 Martin Rudalics <rudalics@gmx.at>
19006
19007 * window.el (switch-to-buffer): Call pop-to-buffer with normalized
19008 buffer argument (Bug#9083) and self-identifying label argument.
19009
190102011-07-15 Glenn Morris <rgm@gnu.org>
19011
19012 * emacs-lisp/debug.el (debug): Doc fix. (Bug#8273)
19013
190142011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
19015
19016 * man.el (Man-fontify-manpage): Fix message when formatting the
19017 man page (bug#7929).
19018
190192011-07-14 Eli Zaretskii <eliz@gnu.org>
19020
19021 * buff-menu.el (Buffer-menu-buffer+size): Accept an additional
19022 argument LRM; if non-nil, append an invisible LRM character to the
19023 buffer name.
19024 (list-buffers-noselect): Call Buffer-menu-buffer+size with the
19025 last argument non-nil, when formatting buffer names.
19026 (Buffer-menu-mode, list-buffers-noselect): Force left-to-right
19027 paragraph direction.
19028
190292011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
19030
19031 * man.el (Man-bgproc-sentinel): Skip any arguments and only output
19032 the man page name (bug#7929).
19033
19034 * image.el (put-image): Mention the `put-image' overlay property
19035 (bug#7834).
19036
19037 * scroll-bar.el (set-scroll-bar-mode): Mention that
19038 `scroll-bar-mode' lists the values (bug#7772).
19039
19040 * image-mode.el (image-mode-fit-frame): Mention that it's a toggle
19041 command (bug#7729).
19042
19043 * rect.el (apply-on-rectangle): Return the point after the last
19044 operation.
19045 (string-rectangle): Go to the point after the last operation
19046 (bug#7522).
19047
19048 * printing.el (pr-toggle-region): Clarify the documentation
19049 slightly (bug#7493).
19050
19051 * time.el (display-time-update):
19052 Allow `display-time-mail-function' to return nil (bug#7158).
19053 Fix suggested by Detlev Zundel.
19054
19055 * vc/diff.el (diff): Clarify the order the file names are read
19056 (bug#7111).
19057
19058 * mouse.el (mouse-set-region): Link to `mouse-drag-copy-region' in
19059 the doc string (bug#7015).
19060
19061 * font-lock.el (font-lock-maximum-decoration): Mention what
19062 numeric levels mean (bug#6935).
19063
19064 * startup.el (initial-buffer-choice): Don't mention the `none'
19065 selection, which is against policy.
19066
190672011-07-14 Martin Rudalics <rudalics@gmx.at>
19068
19069 * window.el (display-buffer-normalize-special):
19070 Replace `dedicated' by `dedicate' to dedicate window (Bug#9072).
19071
190722011-07-14 Eli Zaretskii <eliz@gnu.org>
19073
19074 * subr.el (version<, version<=, version=): Mention "-CVS" and
19075 "-12345" alpha version numbers.
19076
190772011-07-14 Chong Yidong <cyd@stupidchicken.com>
19078
19079 * bindings.el: Add advertised binding for set-mark-command
19080 (Bug#5772).
19081
190822011-07-14 Chong Yidong <cyd@stupidchicken.com>
19083
19084 * bindings.el (mode-line-other-buffer):
19085 * bookmark.el (bookmark-bmenu-2-window):
19086 * bs.el (bs-cycle-next, bs-cycle-previous):
19087 * net/tramp-cmds.el (tramp-append-tramp-buffers): Revert to using
19088 switch-to-buffer.
19089
19090 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
19091 Delete.
19092
190932011-07-14 Juanma Barranquero <lekktu@gmail.com>
19094
19095 * follow.el (follow-debug-message, follow-redisplay):
19096 * jka-cmpr-hook.el (with-auto-compression-mode):
19097 Fix typos in docstrings.
19098
190992011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
19100
19101 * subr.el (with-silent-modifications): Clarify somewhat what the
19102 macro inhibits (bug#6525).
19103
19104 * simple.el (eval-expression): Note what it does if called
19105 interactively (bug#6495).
19106
191072011-07-13 Chong Yidong <cyd@stupidchicken.com>
19108
19109 * window.el (switch-to-buffer): New arg FORCE-SAME-WINDOW.
19110 Use pop-to-buffer buffer-or-name if it is nil.
19111
19112 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
19113 Remove switch-to-buffer.
19114
191152011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
19116
19117 * files.el (make-directory): Clarify that an error will be raised
19118 if there's an error (bug#6397).
19119
19120 * startup.el (initial-buffer-choice): Add `none' as a choice
19121 (bug#6234).
19122
19123 * subr.el (add-hook): Clarify section about buffer-local hooks
19124 (bug#6218).
19125
19126 * dired.el (dired-flagged): Clarify doc string (bug#6117).
19127
191282011-07-13 Juanma Barranquero <lekktu@gmail.com>
19129
19130 * tabify.el (untabify): Preserve the current column so that point
19131 doesn't move (bug#6032).
19132
191332011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
19134
19135 * progmodes/cperl-mode.el (cperl-syntaxify-by-font-lock):
19136 Rewrite to avoid awkward possessive "s" (bug#5986).
19137
191382011-07-13 Glenn Morris <rgm@gnu.org>
19139
19140 * dired.el (dired-use-ls-dired): Doc fix. (Bug#9039).
19141 (dired-insert-directory): Give a message the first time
19142 if ls is found not to support --dired.
19143
191442011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
19145
19146 * simple.el (toggle-truncate-lines): Clarify what is toggled
19147 (bug#5580). Text by Drew Adams.
19148
191492011-07-13 Chong Yidong <cyd@stupidchicken.com>
19150
19151 * simple.el (blink-matching-open): Make the error message from the
19152 last change less verbose.
19153
191542011-07-13 Dan Nicolaescu <dann@ics.uci.edu>
19155
19156 * font-lock.el (font-lock-comment-face): Use the high contrast
19157 "yellow" color for font-lock-comment-face on low color terminals
19158 using a dark background color (bug#4221).
19159
191602011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
19161
19162 * dired.el (dired-insert-set-properties): Make the doc string
19163 reflect what it does now (bug#5325).
19164
19165 * simple.el (blink-matching-open): Say that we were unable to find
19166 the match within the limit, if we're limited (bug#5122).
19167
19168 * international/mule-cmds.el (prefer-coding-system): Add an
19169 example (bug#4869).
19170
19171 * progmodes/etags.el (tags-search): Document `file-list-form'
19172 (bug#4731).
19173
191742011-07-13 Lawrence Mitchell <wence@gmx.li>
19175
19176 * net/browse-url.el (browse-url-default-browser)
19177 (browse-url-browser-function): Make the default browser choice a
19178 bit more logical (bug#4300). Also clean up the doc string.
19179
191802011-07-13 Juanma Barranquero <lekktu@gmail.com>
19181
19182 * bindings.el (completion-ignored-extensions): Add OpenMCL/Clozure
19183 binary endings (bug#4440).
19184
191852011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
19186
19187 * info.el (info-insert-file-contents): Inhibit jka-compr messages,
19188 which can be pretty annoying (bug#8971).
19189
19190 * jka-compr.el (jka-compr-verbose): New variable, and use
19191 throughout (bug#8971).
19192
19193 * info.el (Info-find-file): Fall back on the installation
19194 directory if we can't find the info node anywhere else.
19195
191962011-07-13 Sergei Organov <osv@javad.com> (tiny change)
19197
19198 * vc/vc.el (vc-revert-file):
19199 Don't set file time-stamp in the past. (Bug#5181)
19200
192012011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
19202
19203 * files.el (after-find-file): Give a better error message when
19204 trying to find a symlink that points to a file that doesn't exist
19205 (bug#4398).
19206
19207 * progmodes/cc-vars.el: Remove (probably) misleading comment
19208 (bug#4396).
19209
192102011-07-12 Johan Bockgård <bojohan@gnu.org>
19211
19212 * mouse-sel.el (mouse-sel-primary-overlay): Use the `region' face.
19213
192142011-07-12 Chong Yidong <cyd@stupidchicken.com>
19215
19216 * mouse-sel.el: Hack restoring functionality, while keeping
19217 compatibility with 2010-07-03 changes to mouse selection.
19218 (mouse-sel-primary-overlay): New var.
19219 (mouse-sel-selection-alist): Use it.
19220 (mouse-sel-mode): Doc fix; remove points that are default features
19221 of mouse.el.
19222
192232011-07-12 Johan Bockgård <bojohan@gnu.org>
19224
19225 * progmodes/compile.el (compilation-error-regexp-alist-alist):
19226 Fix previous fix (bug#2490).
19227
192282011-07-12 Roland Winkler <winkler@gnu.org>
19229
19230 * textmodes/bibtex.el (bibtex-initialize):
19231 Use pop-to-buffer-same-window.
19232 (bibtex-search-entries): Fix interactive call.
19233
192342011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
19235
19236 * progmodes/compile.el (compilation-error-regexp-alist-alist):
19237 Fontise bytecomp Error lines more correctly (bug#2490).
19238 Fix suggested by Johan Bockgård.
19239
19240 * subr.el (remove-duplicates): Remove; `delete-dups' is sufficient.
19241
19242 * dired-x.el (dired-guess-default): Use `delete-dups'.
19243
192442011-07-12 Chong Yidong <cyd@stupidchicken.com>
19245
19246 * dired.el (dired-mark-prompt):
19247 * dired-aux.el (dired-read-shell-command): Doc fix.
19248
192492011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
19250
19251 * mail/sendmail.el (sendmail-query-once):
19252 Use `customize-save-variable' unconditionally, now that it works under
19253 emacs -Q.
19254
19255 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
19256
19257 * cus-edit.el (custom-file): Take an optional no-error variable.
19258 (customize-save-variable): Set the variable, and give a warning if
19259 running under "emacs -q".
19260
192612011-07-11 Juanma Barranquero <lekktu@gmail.com>
19262
19263 * loadhist.el (unload-feature-special-hooks):
19264 Add `auto-coding-functions', `fill-nobreak-predicate' and
19265 `find-directory-functions' (bug#5327).
19266
192672011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
19268
19269 * vc/ediff.el (ediff-patch-file): Clarify doc string (bug#3138).
19270
19271 * cus-edit.el (custom-guess-name-alist): -alist variables should
19272 use the `alist' type (bug#3120). Suggested by Drew Adams.
19273
19274 * printing.el: Add documentation to all the `pr-toggle-' commands.
19275
192762011-07-11 Leo Liu <sdl.web@gmail.com>
19277
19278 * files.el (toggle-read-only): Only do the `C-x C-q' warning on VC
19279 backends where it makes sense (bug#2623).
19280
192812011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
19282
19283 * dired-x.el (dired-guess-default): Remove duplicate shell command
19284 entries (bug#2028).
19285 (dired-guess-default): Fix grammar in doc string (bug#2028).
19286 (dired-guess-shell-alist-user): Clarify the example a bit (bug#2030).
19287
19288 * subr.el (remove-duplicates): New conveniency function.
19289
192902011-07-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
19291
19292 * tool-bar.el (tool-bar-mode): Clarify positive/negative arguments
19293 (bug#1526).
19294
192952011-07-10 Martin Rudalics <rudalics@gmx.at>
19296
19297 * window.el (display-buffer-normalize-default): Don't invert
19298 meaning of even-window-heights. Reported by Eli Zaretskii
19299 <eliz@gnu.org>.
19300
193012011-07-10 Bob Rogers <rogers@rgrjr.dyndns.org>
19302
19303 * vc/vc.el (vc-diff-internal): Fix race condition (Bug#1256).
19304
193052011-07-10 Chong Yidong <cyd@stupidchicken.com>
19306
19307 * window.el (display-buffer): Fix arguments to
19308 display-buffer-reuse-window in last change.
19309
19310 * faces.el (link): Use a less saturated blue on light backgrounds.
19311
19312 * startup.el (fancy-startup-text, fancy-about-text)
19313 (fancy-startup-tail): Use font-lock faces, for background safety.
19314
193152011-07-09 Bob Nnamtrop <bobnnamtrop@gmail.com> (tiny change)
19316
19317 * emulation/viper-cmd.el (viper-change-state-to-vi):
19318 Limit triggering of abbrev expansion (Bug#9038).
19319
193202011-07-09 Martin Rudalics <rudalics@gmx.at>
19321
19322 * window.el (display-buffer-default-specifiers): Remove.
19323 (display-buffer-macro-specifiers): Remove default specifiers.
19324 (display-buffer-alist): Default to nil.
19325 (display-buffer-reuse-window): New optional argument other-window.
19326 (display-buffer-pop-up-window): Allow splitting internal
19327 windows. Check whether a live window was created.
19328 (display-buffer-other-window-means-other-frame)
19329 (display-buffer-normalize-arguments): Rename to
19330 display-buffer-normalize-argument and rewrite. Set the
19331 other-window specifier.
19332 (display-buffer-normalize-special): New function.
19333 (display-buffer-normalize-options): Rename to
19334 display-buffer-normalize-default and rewrite.
19335 (display-buffer-normalize-options-inhibit): Remove.
19336 (display-buffer-normalize-specifiers): Rewrite.
19337 (display-buffer): Process other-window specifier and call
19338 display-buffer-reuse-window with it. Emulate Emacs 23 behavior
19339 more faithfully.
19340 (pop-up-windows, even-window-heights): Restore Emacs 23 default values.
19341 (display-buffer-alist-set): Don't handle 'unset default values.
19342 (display-buffer-in-window, display-buffer-alist-set):
19343 Replace symbol "dedicated" by "dedicate". Reported by Tassilo Horn
19344 <tassilo@member.fsf.org>.
19345
193462011-07-09 Leo Liu <sdl.web@gmail.com>
19347
19348 * register.el (insert-register): Restore accidental change on
19349 2011-06-26. (Bug#9028)
19350
193512011-07-09 Glenn Morris <rgm@gnu.org>
19352
19353 * subr.el (remq): Handle the empty list. (Bug#9024)
19354
193552011-07-08 Andreas Schwab <schwab@linux-m68k.org>
19356
19357 * mail/sendmail.el (send-mail-function): No longer delay custom
19358 initialization.
19359 * custom.el (custom-initialize-delay): Doc fix.
19360
193612011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
19362
19363 * abbrev.el (expand-abbrev): Try to preserve point (bug#5805).
19364
193652011-07-08 Michael Albinus <michael.albinus@gmx.de>
19366
19367 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use a
19368 human-friendly prompt.
19369
193702011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
19371
19372 * vc/vc-bzr.el (vc-bzr-revision-keywords): Remove svn, it's only
19373 provided by a particular plugin.
19374
193752011-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
19376
19377 * mail/sendmail.el (sendmail-query-once): If we aren't allowed to
19378 save customizations (with "emacs -Q"), just set the variable
19379 instead of erroring out.
19380
19381 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
19382
193832011-07-08 Juri Linkov <juri@jurta.org>
19384
19385 * arc-mode.el (archive-zip-expunge, archive-zip-update)
19386 (archive-zip-update-case): Use 7z if found by `executable-find'.
19387 The order of searching the available programs is the same as in
19388 `archive-zip-extract' (bug#8968).
19389
193902011-07-07 Chong Yidong <cyd@stupidchicken.com>
19391
19392 * menu-bar.el (menu-bar-line-wrapping-menu): Revert last change.
19393 (menu-bar-options-menu): Tweak descriptions.
19394
193952011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
19396
19397 * menu-bar.el (menu-bar-line-wrapping-menu): Make all the Options
19398 menu items into verb phrases (bug#1421). Also refill to fit under
19399 80 columns.
19400
194012011-07-07 Chong Yidong <cyd@stupidchicken.com>
19402
19403 * info.el (info, Info-read-node-name-2, Info-read-node-name-1)
19404 (Info-read-node-name): Doc fix (Bug#1084).
19405
19406 * thingatpt.el (forward-thing, bounds-of-thing-at-point)
19407 (thing-at-point, beginning-of-thing, end-of-thing, in-string-p)
19408 (end-of-sexp, beginning-of-sexp)
19409 (thing-at-point-bounds-of-list-at-point, forward-whitespace)
19410 (forward-symbol, forward-same-syntax, word-at-point)
19411 (sentence-at-point): Doc fix (Bug#1144).
19412
194132011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
19414
19415 * info.el (Info-mode-map): Remove S-TAB binding, since [backtab]
19416 should cover it (bug#1281).
19417
19418 * cus-edit.el (custom-show): Mark as obsolete.
19419
19420 * net/network-stream.el (network-stream-open-starttls): If GnuTLS
19421 negotiation fails, then possibly try again with a non-encrypted
19422 connection (bug#9017).
19423
19424 * mail/smtpmail.el (smtpmail-stream-type): Note that `plain' can
19425 be used.
19426
194272011-07-07 Richard Stallman <rms@gnu.org>
19428
19429 * mail/rmail.el (rmail-next-error-move): Use `compilation-message'
19430 property, and handle its changed format.
19431 Look for the correct line number.
19432 Use file's line contents (but not past first =) to find
19433 correct line in message.
19434
194352011-07-07 Kenichi Handa <handa@m17n.org>
19436
19437 * international/characters.el (build-unicode-category-table):
19438 Delete it.
19439 (unicode-category-table): Set it by unicode-property-table-internal.
19440
19441 * international/mule-cmds.el (char-code-property-alist): Move to
19442 to src/chartab.c.
19443 (get-char-code-property): Call unicode-property-table-internal to
19444 load a file. Call get-unicode-property-internal where necessary.
19445 (put-char-code-property): Call unicode-property-table-internal to
19446 load a file. Call put-unicode-property-internal where necessary.
19447 put-unicode-property-internal where necessary.
19448 (char-code-property-description):
19449 Call unicode-property-table-internal to load a file.
19450
19451 * international/charprop.el:
19452 * international/uni-bidi.el:
19453 * international/uni-category.el:
19454 * international/uni-combining.el:
19455 * international/uni-comment.el:
19456 * international/uni-decimal.el:
19457 * international/uni-decomposition.el:
19458 * international/uni-digit.el:
19459 * international/uni-lowercase.el:
19460 * international/uni-mirrored.el:
19461 * international/uni-name.el:
19462 * international/uni-numeric.el:
19463 * international/uni-old-name.el:
19464 * international/uni-titlecase.el:
19465 * international/uni-uppercase.el: Regenerate.
19466
19467 * loadup.el: Load international/charprop.el before
19468 international/characters.
19469
194702011-07-07 Chong Yidong <cyd@stupidchicken.com>
19471
19472 * window.el (next-buffer, previous-buffer): Signal an error if
19473 called from a minibuffer window.
19474
19475 * bindings.el: Revert 2011-07-04 change.
19476
194772011-07-06 Richard Stallman <rms@gnu.org>
19478
19479 * mail/rmailmm.el (rmail-mime-process): Use markers for buf positions.
19480 (rmail-mime-insert-bulk, rmail-mime-insert-text):
19481 Treat markers like ints.
19482 (rmail-mime-entity): Doc fix.
19483
194842011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
19485
19486 * mail/smtpmail.el (smtpmail-default-smtp-server): Made into a
19487 defcustom again for backwards compatibility.
19488
19489 * simple.el (shell-command-on-region): Fill.
19490
19491 * dired-aux.el (dired-kill-line): Add a doc string.
19492
19493 * dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults
19494 to "\\sw\\|\\s_" (bug#358).
19495
19496 * dired.el (dired-mode): Clarify "unmark or unflag" (bug#8770).
19497 (dired-unmark-backward): Ditto.
19498 (dired-flag-backup-files): Ditto.
19499
19500 * dired-x.el (dired-mark-sexp): Ditto.
19501
195022011-07-06 Richard Stallman <rms@gnu.org>
19503
19504 * mail/rmailmm.el: Give entity a new slot, TRUNCATED.
19505 (rmail-mime-entity): New arg TRUNCATED.
19506 (rmail-mime-entity-truncated, rmail-mime-entity-set-truncated):
19507 New functions.
19508 (rmail-mime-save): Warn if entity is truncated.
19509 (rmail-mime-toggle-hidden): Likewise, for showing.
19510 (rmail-mime-process-multipart): Record when an entity is truncated.
19511
19512 * mail/rmailmm.el (rmail-search-mime-message): Don't get confused
19513 if ENTITY is a string.
19514
195152011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
19516
19517 * emacs-lisp/lisp-mode.el (eval-defun-1): Update the documentation
19518 of faces when `M-C-x'-ing their definitions (bug#8378).
19519 Also clean up the code slightly.
19520
19521 * progmodes/grep.el (rgrep): Don't bind `process-connection-type',
19522 because that makes the colors go away.
19523
19524 * mail/sendmail.el (send-mail-function): Change the default to
19525 `sendmail-query-once'.
19526 (sendmail-query-once): Add an autoload cookie.
19527
19528 * net/network-stream.el (network-stream-open-starttls): Try using
19529 a plain connection even if the server offered STARTTLS, and we
19530 kinda wanted to use it, if Emacs doesn't have any STARTTLS
19531 capability. This should make smtpmail.el work in slightly more
19532 configurations.
19533
195342011-07-06 Michael Albinus <michael.albinus@gmx.de>
19535
19536 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
19537 New defun.
19538 * net/tramp-cmds.el (tramp-append-tramp-buffers): Use it.
19539
195402011-07-06 Michael R. Mauger <mmaug@yahoo.com>
19541
19542 * progmodes/sql.el: Version 3.0
19543 (sql-product-alist): Add product :completion-object,
19544 :completion-column, and :statement attributes.
19545 (sql-mode-menu, sql-interactive-mode-map): Fix List entries.
19546 (sql-mode-syntax-table): Mark all punctuation.
19547 (sql-font-lock-keywords-builder): Temporarily remove fallback on
19548 ansi keywords.
19549 (sql-regexp-abbrev, sql-regexp-abbrev-list): New functions.
19550 (sql-mode-oracle-font-lock-keywords): Improve.
19551 (sql-oracle-show-reserved-words): New function for development.
19552 (sql-product-font-lock): Simplify for source code buffers.
19553 (sql-product-syntax-table, sql-product-font-lock-syntax-alist):
19554 New functions.
19555 (sql-highlight-product): Set product specific syntax table.
19556 (sql-mode-map): Add statement movement functions.
19557 (sql-ansi-statement-starters, sql-oracle-statement-starters):
19558 New variable.
19559 (sql-statement-regexp, sql-beginning-of-statement)
19560 (sql-end-of-statement, sql-signum): New functions.
19561 (sql-buffer-live-p, sql=find-sqli-buffer): Add CONNECTION parameter.
19562 (sql-show-sqli-buffer): Bug fix.
19563 (sql-interactive-mode): Store connection data as buffer local.
19564 (sql-connect): Add NEW-NAME parameter. Redesign interaction
19565 with sql-interactive-mode.
19566 (sql-save-connection): Save buffer local settings.
19567 (sql-connection-menu-filter): Change menu entry name.
19568 (sql-product-interactive): Bug fix.
19569 (sql-preoutput-hold): New variable.
19570 (sql-interactive-remove-continuation-prompt): Bug fixes.
19571 (sql-debug-redirect): New variable.
19572 (sql-str-literal): New function.
19573 (sql-redirect, sql-redirect-one, sql-redirect-value, sql-execute):
19574 Redesign.
19575 (sql-oracle-save-settings, sql-oracle-restore-settings)
19576 (sql-oracle-list-all, sql-oracle-list-table): New functions.
19577 (sql-completion-object, sql-completion-column)
19578 (sql-completion-sqlbuf): New variables.
19579 (sql-build-completions-1, sql-build-completions)
19580 (sql-try-completion): New functions.
19581 (sql-read-table-name): Use them.
19582 (sql-contains-names): New buffer local variable.
19583 (sql-list-all, sql-list-table): Use it.
19584 (sql-oracle-completion-types): New variable.
19585 (sql-oracle-completion-object, sql-sqlite-completion-object)
19586 (sql-postgres-completion-object): New functions.
19587
195882011-07-06 Glenn Morris <rgm@gnu.org>
19589
19590 * window.el (pop-to-buffer): Doc fix.
19591
195922011-07-06 Markus Heiser <markus.heiser@darmarit.de> (tiny change)
19593
19594 * progmodes/gud.el (gud-pdb-marker-regexp): Accept \r char (Bug#5653).
19595
195962011-07-06 Chong Yidong <cyd@stupidchicken.com>
19597
19598 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
19599
19600 * info.el (Info-directory-toc-nodes): Minor doc fix (Bug#8833).
19601
196022011-07-05 Chong Yidong <cyd@stupidchicken.com>
19603
19604 * button.el (button): Inherit from link face. Suggested by Dan
19605 Nicolaescu.
19606
196072011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
19608
19609 * progmodes/gdb-mi.el: Fit in 80 columns.
19610 (gdb-setup-windows, gdb-restore-windows): Avoid other-window and
19611 switch-to-buffer.
19612
19613 * progmodes/which-func.el (which-func-ff-hook): Don't output a message
19614 if imenu is simply not configured (bug#8941).
19615
196162011-07-05 Ken Manheimer <ken.manheimer@gmail.com>
19617
19618 * allout.el (allout-post-undo-hook): New allout outline-change
19619 event hook to signal undo activity.
19620 (allout-post-command-business): Run allout-post-undo-hook if an
19621 undo just occurred.
19622 (allout-after-copy-or-kill-hook, allout-mode): Minor docstring changes.
19623 * allout-widgets.el (allout-widgets-after-undo-function):
19624 Ensure the integrity of the current item's decoration after it has been
19625 in the vicinity of an undo.
19626 (allout-widgets-mode): Include allout-widgets-after-undo-function
19627 on the new allout-post-undo-hook.
19628
196292011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
19630
19631 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-abbrev-table):
19632 Let define-derived-mode define it.
19633 * emacs-lisp/derived.el (define-derived-mode): Try to avoid creating
19634 cycles of abbrev-table inheritance (bug#8998).
19635
196362011-07-05 Roland Winkler <winkler@gnu.org>
19637
19638 * textmodes/bibtex.el: Add support for biblatex.
19639 (bibtex-BibTeX-entry-alist, bibtex-biblatex-entry-alist)
19640 (bibtex-BibTeX-field-alist, bibtex-biblatex-field-alist)
19641 (bibtex-dialect-list, bibtex-dialect, bibtex-no-opt-remove-re)
19642 (bibtex-entry-alist, bibtex-field-alist): New variables.
19643 (bibtex-entry-field-alist): Obsolete alias for
19644 bibtex-BibTeX-entry-alist.
19645 (bibtex-entry-alist, bibtex-field-alist): New widgets.
19646 (bibtex-set-dialect): New command.
19647 (bibtex-entry-type, bibtex-entry-head)
19648 (bibtex-entry-maybe-empty-head, bibtex-any-valid-entry-type):
19649 Bind via bibtex-set-dialect.
19650 (bibtex-Article, bibtex-Book, bibtex-Booklet, bibtex-InBook)
19651 (bibtex-InCollection, bibtex-InProceedings, bibtex-Manual)
19652 (bibtex-MastersThesis, bibtex-Misc, bibtex-PhdThesis)
19653 (bibtex-Proceedings, bibtex-TechReport, bibtex-Unpublished):
19654 Define via bibtex-set-dialect.
19655 (bibtex-name-in-field, bibtex-remove-OPT-or-ALT):
19656 Obey bibtex-no-opt-remove-re.
19657 (bibtex-vec-push, bibtex-vec-incr): New functions.
19658 (bibtex-format-entry, bibtex-field-list)
19659 (bibtex-print-help-message, bibtex-validate)
19660 (bibtex-search-entries): Use new format of bibtex-entry-alist.
19661
196622011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
19663
19664 * progmodes/compile.el (compilation-goto-locus):
19665 * net/tramp-cmds.el (tramp-append-tramp-buffers):
19666 * bs.el (bs-cycle-next, bs-cycle-previous):
19667 * bookmark.el (bookmark-bmenu-list, bookmark-bmenu-2-window):
19668 * bindings.el (mode-line-other-buffer):
19669 * autoinsert.el (auto-insert):
19670 * arc-mode.el (archive-extract):
19671 * abbrev.el (edit-abbrevs): Fix some uses of switch-to-buffer.
19672
196732011-07-05 Juanma Barranquero <lekktu@gmail.com>
19674
19675 * emacs-lock.el (emacs-lock-mode): Fix typo in variable name.
19676 Fix check of `emacs-lock-unlockable-modes'.
19677 Coerce true values of `emacs-lock--try-unlocking' to t.
19678
196792011-07-05 Juanma Barranquero <lekktu@gmail.com>
19680
19681 * obsolete/old-emacs-lock.el: Rename from emacs-lock.el.
19682 * emacs-lock.el: New file.
19683
196842011-07-05 Julien Danjou <julien@danjou.info>
19685
19686 * textmodes/rst.el (rst-define-level-faces): Use `facep' rather
19687 than `boundp' to check if face is set.
19688
196892011-07-05 Juanma Barranquero <lekktu@gmail.com>
19690
19691 * register.el (registerv-make):
19692 * window.el (window-min-height): Fix typos in docstrings.
19693
196942011-07-05 Jan Djärv <jan.h.d@swipnet.se>
19695
19696 * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
19697 Update doc string.
19698
196992011-07-04 Juanma Barranquero <lekktu@gmail.com>
19700
19701 * server.el (server-execute): Catch quit and call
19702 `server-return-error' to pass the error back to emacsclient and
19703 close the connection (bug#8942).
19704
197052011-07-04 Ken Manheimer <ken.manheimer@gmail.com>
19706
19707 * allout.el (allout-encrypt-unencrypted-on-saves): Do not provide
19708 insecure exception for current topic. Also note that auto-saves
19709 are handled differently.
19710
19711 (allout-auto-save-temporarily-disabled, allout-just-did-undo):
19712 State variables for tracking auto-save inhibition situation.
19713
19714 (allout-write-contents-hook-handler): Rename from
19715 'allout-write-file-hook-handler', and describe how it depends on
19716 write-contents-functions sensitivity to non-nil value to prevent
19717 file write.
19718
19719 (allout-auto-save-hook-handler): Remove. auto-save does not check
19720 this in individual buffers, only in the starting buffer, so this
19721 is not the right way for us to inhibit auto-save in a buffer
19722 according to its condition.
19723
19724 (allout-mode): Use new allout-write-contents-hook-handler, and
19725 only with write-contents-functions. Remove auto-save provisions -
19726 they're implemented elsewhere.
19727
19728 (allout-before-change-handler): If undo is in progress, note that
19729 for attention of allout-post-command-business.
19730
19731 (allout-post-command-business): If the command we're following was
19732 an undo, check for change in the status of encrypted items and
19733 adjust auto-save inhibitions accordingly.
19734
19735 (allout-toggle-subtree-encryption): Adjust auto-save inhibition
19736 according to whether there are or aren't any plain-text topics
19737 pending encryption.
19738
19739 (allout-inhibit-auto-save-info-for-decryption):
19740 Adjust buffer-saved-size and some allout state to inhibit auto-saves
19741 if there are plain-text topics pending encryption.
19742
19743 (allout-maybe-resume-auto-save-info-after-encryption): Adjust
19744 buffer-saved-size and some allout state to not inhibit auto-saves
19745 if there are no longer any plain-text topics pending encryption.
19746
19747 (allout-next-topic-pending-encryption, allout-encrypt-decrypted):
19748 No longer provide for exemption of the current topic.
19749
197502011-07-04 Juri Linkov <juri@jurta.org>
19751
19752 Add 7z operations to delete and save changed members (bug#8968).
19753 * arc-mode.el (archive-7z-expunge, archive-7z-update):
19754 New defcustoms.
19755 (archive-7z-write-file-member): New function.
19756 (archive-7z-summarize): Fix the number of dashes in the
19757 listing output.
19758
197592011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
19760
19761 * pcmpl-linux.el (pcomplete-pare-list): Re-add, from pcomplete.el
19762 (bug#8958).
19763
197642011-07-04 Chong Yidong <cyd@stupidchicken.com>
19765
19766 * bindings.el: Ignore next-buffer and previous-buffer in
19767 minibuffer-local-map.
19768
19769 * font-lock.el (font-lock-builtin-face): Change light background
19770 color to dark slate blue (Bug#6693).
19771
197722011-07-04 Wang Diancheng <dcwang@kingbase.com.cn> (tiny change)
19773
19774 * progmodes/gdb-mi.el (gdb): Use completion-at-point.
19775
197762011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
19777
19778 * files.el (find-file): Use pop-to-buffer-same-window (bug#8911).
19779 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
19780 Add switch-to-buffer.
19781
197822011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
19783
19784 * isearch.el (isearch-search-fun-function): Clarify further the
19785 meaning of the function returned.
19786
197872011-07-04 Michael Albinus <michael.albinus@gmx.de>
19788
19789 * net/tramp-cmds.el (tramp-cleanup-this-connection): New command.
19790
19791 * net/tramp-sh.el (tramp-color-escape-sequence-regexp): New defconst.
19792 (tramp-sh-handle-insert-directory, tramp-convert-file-attributes):
19793 Use it.
19794 (tramp-remote-path): Add "/bin" and "/usr/bin". On busyboxes,
19795 `tramp-default-remote-path' does not exist.
19796 (tramp-send-command-and-read): New optional argument NOERROR.
19797 (tramp-open-connection-setup-interactive-shell)
19798 (tramp-get-remote-path, tramp-get-remote-stat): Use it.
19799 (tramp-get-remote-readlink): Do not mask with `ignore-errors'.
19800 (tramp-process-sentinel): Flush also process' connection property.
19801 (tramp-sh-handle-start-file-process): Do not set process
19802 sentinel. It is done now ...
19803 (tramp-maybe-open-connection): ... here. (Bug#8929)
19804
198052011-07-04 MON KEY <monkey@sandpframing.com>
19806
19807 * play/animate.el (animate-string): Doc fixes and allow changing
19808 the buffer name (bug#5417).
19809
198102011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
19811
19812 * play/animate.el (animation-buffer-name): Rename from *animate*.
19813
198142011-07-04 Paul Eggert <eggert@cs.ucla.edu>
19815
19816 * emacs-lisp/timer.el: Use time-date fns rather than rolling our own.
19817 This is simpler and helps future-proof the code.
19818 (timer-until): Use time-subtract and float-time.
19819 (timer--time-less-p): Use time-less-p.
19820
198212011-07-04 Juanma Barranquero <lekktu@gmail.com>
19822
19823 * type-break.el (timep): Use the value of `float-time' to avoid a
19824 byte-compiler warning.
19825
19826 * server.el (server-eval-and-print): Return any result, even nil.
19827
198282011-07-03 Paul Eggert <eggert@cs.ucla.edu>
19829
19830 * type-break.el: Accept time formats that the builtins accept.
19831 (timep, type-break-time-difference): Accept any format that
19832 float-time accepts, rather than insisting on (HIGH LOW USECS) format.
19833 This is simpler and helps future-proof the code.
19834 (type-break-time-difference): Round rather than ignoring
19835 subseconds components.
19836
198372011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
19838
19839 * info.el (Info-apropos-matches): Make non-interactive, since it
19840 doesn't seem to do anything useful as a command (bug#8829).
19841
198422011-07-03 Chong Yidong <cyd@stupidchicken.com>
19843
19844 * frame.el (frame-background-mode, frame-set-background-mode):
19845 Move from faces.el.
19846 (frame-default-terminal-background): New function.
19847
19848 * custom.el (custom-push-theme): Don't record faces in `changed'
19849 theme; this doesn't work correctly for per-frame face settings.
19850 (disable-theme): Use face-set-after-frame-default to reset faces.
19851 (custom--frame-color-default): New function.
19852
198532011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
19854
19855 * dired.el (dired-flagging-regexp): Remove unused variable
19856 (bug#8769).
19857
198582011-03-29 Kevin Ryde <user42@zip.com.au>
19859
19860 * progmodes/compile.el (compilation-error-regexp-alist-alist):
19861 `perl-Test2' extend to match possible "fail #N" rep count
19862 (bug#8377).
19863
198642011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
19865
19866 * mail/feedmail.el (feedmail-buffer-to-smtpmail):
19867 `smtpmail-via-smtp' now returns the error instead of nil.
19868
19869 * isearch.el (isearch-search-fun-function): Clarify the doc string
19870 (bug#8101).
19871
198722011-07-03 Richard Kim <emacs18@gmail.com> (tiny change)
19873
19874 * textmodes/texnfo-upd.el (texinfo-insert-menu): Don't insert
19875 unnecessary spaces (bug#8987).
19876
198772011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
19878
19879 * net/network-stream.el (open-network-stream): Use the
19880 :end-of-capability command thoughout.
19881
198822011-07-03 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
19883
19884 * net/network-stream.el (open-network-stream): Add the
19885 :end-of-capability command parameter, used by pop3.el.
19886
198872011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
19888
19889 * dired.el (dired-map-over-marks): Refill the doc string (bug#6814).
19890
19891 * fringe.el (fringe-query-style): Remove redundant text " (type ?
19892 for list)" (bug#6475).
19893
19894 * files.el (file-expand-wildcards): Ignore non-readable
19895 sub-directories while trying to find matches instead of signaling
19896 an error (bug#6297).
19897
19898 * man.el (Man-reference-regexp): Allow matching possible
19899 word-wrapped references (bug#6289).
19900
19901 * vc/vc.el (vc-modify-change-comment): Change *VC-log* to *vc-log*
19902 for consistency with the other vc buffers (bug#6197).
19903 (vc-checkin): Ditto.
19904
19905 * vc/vc-arch.el: Fix comments to match the *VC-log* name change.
19906
19907 * longlines.el (longlines-mode): Document what ARG does (bug#6150).
19908
199092011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
19910
19911 * custom.el (defcustom): Clarify that :set is only used in the
19912 Customize user interface (bug#6089).
19913
19914 * progmodes/flymake.el (flymake-mode): If the buffer isn't
19915 associated with a file, refuse to run instead of erroring out
19916 (bug#6084).
19917
19918 * textmodes/fill.el (fill-region): Remove the "Ordinarily" from
19919 the doc string, since it appears that using `fill-column' always
19920 controls the width (bug#7845).
19921
19922 * simple.el (shell-command-on-region): Say where the error output
19923 went if `shell-command-default-error-buffer' is set (bug#6857).
19924
199252011-07-02 Ken Manheimer <ken.manheimer@gmail.com>
19926
19927 * allout.el (allout-yank-processing): Adjust cursor position for
19928 backwards-deleted space.
19929
19930 (allout-rebullet-heading): Register changes with
19931 allout-exposure-changed-hook, so the modified topic is properly
19932 decorated.
19933
199342011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
19935
19936 * minibuffer.el (completion-in-region): Document PREDICATE
19937 (bug#7136).
19938
19939 * info-look.el (info-lookup-add-help): Clarify that ARGS is a list
19940 of keyword/argument pairs (bug#6904).
19941
19942 * replace.el (multi-occur):
19943 Mention `multi-occur-in-matching-buffers' in the doc string (bug#7566).
19944
199452011-07-02 Drew Adams <drew.adams@oracle.com>
19946
19947 * dired.el (dired-mark-if): Make the message about whether it's
19948 marking or unmarking clearer (bug#8523).
19949
199502011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
19951
19952 * disp-table.el (display-table-print-array): New function.
19953 (describe-display-table): Use it to print the vectors more pretty
19954 (Bug#8859).
19955
199562011-07-02 Martin Rudalics <rudalics@gmx.at>
19957
19958 * window.el (window-state-get-1): Don't assign clone numbers.
19959 Add clone-of item to list of window parameters.
19960 (window-state-put-2): Don't process clone numbers.
19961 (display-buffer-alist): Fix doc-string.
19962
199632011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
19964
19965 * subr.el (remq): Don't allocate if it's not needed.
19966 (keymap--menu-item-binding, keymap--menu-item-with-binding)
19967 (keymap--merge-bindings): New functions.
19968 (keymap-canonicalize): Use them to refine the canonicalization.
19969 * minibuffer.el (minibuffer-local-completion-map)
19970 (minibuffer-local-must-match-map): Move initialization from C.
19971 (minibuffer-local-filename-completion-map): Move initialization from C;
19972 don't inherit from anything here.
19973 (minibuffer-local-filename-must-match-map): Make obsolete.
19974 (completing-read-default): Use make-composed-keymap to combine
19975 minibuffer-local-filename-completion-map with either
19976 minibuffer-local-must-match-map or
19977 minibuffer-local-filename-completion-map.
19978
199792011-07-01 Glenn Morris <rgm@gnu.org>
19980
19981 * type-break.el (type-break-time-sum): Use dolist.
19982
19983 * textmodes/flyspell.el (flyspell-word-search-backward):
19984 Replace CL function.
19985
199862011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
19987
19988 * mouse.el (mouse--strip-first-event): New function.
19989 (function-key-map): Use it to map fringe clicks to normal clicks
19990 by default.
19991
19992 * vc/vc-bzr.el (vc-bzr-revision-keywords): Update.
19993 (vc-bzr-revision-completion-table): Add support for annotate and date.
19994
19995 * emacs-lisp/derived.el (define-derived-mode): Make abbrev-table
19996 inherit from parent.
19997
199982011-07-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
19999
20000 * dired-aux.el (dired-diff): Doc fixup (bug#8816).
20001 (dired-show-file-type): Doc fixup (bug#8818).
20002
20003 * dired.el (dired-mode): Fix up the doc string as suggested by
20004 Drew Adams (bug#8817).
20005
20006 * progmodes/flymake.el (flymake-find-file-hook): Add an `autoload'
20007 cookie, since the manual says that it should be possible to add
20008 this function to `find-file-hook' (bug#8709).
20009
200102011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
20011
20012 * progmodes/cfengine.el: Moved all cfengine3.el functionality
20013 here. Noted Ted Zlatanov as the maintainer.
20014 (cfengine-common-settings, cfengine-common-syntax): New functions
20015 to set up common things between `cfengine-mode' and
20016 `cfengine3-mode'.
20017 (cfengine3-mode): New mode.
20018 (cfengine3-defuns cfengine3-defuns-regex
20019 (cfengine3-class-selector-regex cfengine3-category-regex)
20020 (cfengine3-vartypes cfengine3-font-lock-keywords)
20021 (cfengine3-beginning-of-defun, cfengine3-end-of-defun)
20022 (cfengine3-indent-line): Add from cfengine3.el.
20023
200242011-07-01 Michael Albinus <michael.albinus@gmx.de>
20025
20026 * net/tramp.el (tramp-encoding-command-interactive): New defcustom.
20027
20028 * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
20029
200302011-07-01 Martin Rudalics <rudalics@gmx.at>
20031
20032 * window.el (same-window-buffer-names, same-window-regexps)
20033 (same-window-p, special-display-frame-alist)
20034 (special-display-popup-frame, special-display-function)
20035 (special-display-buffer-names, special-display-regexps)
20036 (special-display-p, pop-up-frame-alist, pop-up-frame-function)
20037 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
20038 (split-window-preferred-function, split-height-threshold)
20039 (split-width-threshold, even-window-heights)
20040 (display-buffer-mark-dedicated, window-splittable-p)
20041 (split-window-sensibly, window-safely-shrinkable-p):
20042 Un-obsolete.
20043 (display-buffer): Don't spread args with function specifier
20044 because special-display-popup-frame won't like it.
20045
200462011-07-01 Paul Eggert <eggert@cs.ucla.edu>
20047
20048 Time-stamp simplifications and fixes.
20049 These improve accuracy slightly, and future-proof the code
20050 against some potential changes to current-time format.
20051
20052 * woman.el (woman-decode-buffer, WoMan-log-end): Log fractional secs
20053 by using time-since and float-time.
20054
20055 * vc/ediff-util.el (ediff-calc-command-time): Use time-since
20056 and float-time. Say "NNN.NNN seconds" rather than "NNN seconds
20057 + NNN microseconds".
20058
20059 * type-break.el (type-break-time-sum): Rewrite using time-add.
20060
20061 * play/hanoi.el (hanoi-current-time-float): Remove.
20062 All uses replaced by float-time.
20063
20064 * nxml/rng-maint.el (rng-time-function): Rewrite using time-subtract.
20065 This yields a more-accurate answer.
20066 (rng-time-to-float): Remove; no longer needed.
20067
20068 * emacs-lisp/timer.el (timer-relative-time): Use time-add.
20069
20070 * calendar/timeclock.el (timeclock-seconds-to-time):
20071 Defalias to seconds-to-time, since they're the same thing.
20072
20073 * emacs-lisp/elp.el (elp-elapsed-time):
20074 * emacs-lisp/benchmark.el (benchmark-elapse):
20075 * allout-widgets.el (allout-elapsed-time-seconds): Use float-time.
20076
200772011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
20078
20079 * window.el (bury-buffer): Don't iconify the only frame.
20080 (switch-to-buffer): Revert to Emacs<23 behavior, i.e. do not fallback
20081 to pop-to-buffer. Use pop-to-buffer-same-frame if you don't like that.
20082
200832011-07-01 Chong Yidong <cyd@stupidchicken.com>
20084
20085 * eshell/em-smart.el (eshell-smart-display-navigate-list):
20086 Add mouse-yank-primary.
20087
200882011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
20089
20090 * progmodes/cfengine3.el: New file to support CFEngine 3.x.
20091
200922011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
20093
20094 * emacs-lisp/find-func.el (find-library--load-name): New fun.
20095 (find-library-name): Use it to find relative load names when provided
20096 absolute file name (bug#8803).
20097
200982011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
20099
20100 * textmodes/flyspell.el (flyspell-word): Consider words that
20101 differ only in case as potential doublons (bug#5687).
20102
20103 * net/soap-client.el (soap-invoke, soap-wsdl-resolve-references):
20104 Remove two rather uninteresting debugging-like messages to make
20105 debbugs.el more silent.
20106
20107 * comint.el (comint-password-prompt-regexp): Accept "Response" as
20108 a password-like phrase.
20109
201102011-06-30 Masatake YAMATO <yamato@redhat.com>
20111
20112 * progmodes/cc-guess.el: New file.
20113
20114 * progmodes/cc-langs.el (c-mode-menu): Add "Style..." submenu.
20115
20116 * progmodes/cc-styles.el (cc-choose-style-for-mode): New function
20117 derived from `c-basic-common-init'.
20118
20119 * progmodes/cc-mode.el (top-level): Require cc-guess.
20120 (c-basic-common-init): Use `cc-choose-style-for-mode'.
20121
201222011-06-30 Lawrence Mitchell <wence@gmx.li>
20123
20124 * progmodes/js.el (js-mode): Don't stomp on global settings (bug#8933).
20125
201262011-06-30 Alan Mackenzie <acm@muc.de>
20127
20128 * progmodes/cc-engine.el (c-guess-continued-construct):
20129 Correct the handling of template-args-cont, particularly for when font
20130 lock is disabled. Name this case as "CASE G".
20131
201322011-06-30 Ken Manheimer <ken.manheimer@gmail.com>
20133
20134 * allout.el (allout-yank-processing): Fix injection of extra space
20135 between bullet and non-whitespace character in first topic when
20136 pasting, ensuring that the actual spacing in the pasted topic
20137 following the bullet char is preserved. This extra space was
20138 causing pasted encrypted topics to get a decrypted status even
20139 when the content was actually still encrypted. Now the decryption
20140 status from before the paste is preserved.
20141
20142 (allout-flag-region): Set all allout overlays so they evaporate
20143 when reduced to zero length (evanescent), to prevent overlay
20144 leakage.
20145
201462011-06-30 Glenn Morris <rgm@gnu.org>
20147
20148 * w32-fns.el (w32-charset-info-alist): Declare.
20149
20150 * find-dired.el (find-grep-options): Simplify.
20151
20152 * term/ns-win.el (ns-set-resource): Declare.
20153
20154 * ses.el (row, col): Declare dynamic variables honestly.
20155
20156 * textmodes/reftex-parse.el (index-tags): Declare.
20157
201582011-06-30 Chong Yidong <cyd@stupidchicken.com>
20159
20160 * cus-edit.el (customize-push-and-save): New function.
20161
20162 * files.el (hack-local-variables-confirm): Use it.
20163
20164 * custom.el (load-theme): New arg NO-CONFIRM.
20165 Use customize-push-and-save (Bug#8720).
20166 (custom-enabled-themes): Doc fix.
20167
20168 * cus-theme.el (customize-create-theme)
20169 (custom-theme-merge-theme): Callers to load-theme changed.
20170
201712011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
20172
20173 * thingatpt.el (thing-at-point-short-url-regexp): Require that
20174 short URLs have at least one dot in them (bug #7614).
20175
20176 * progmodes/grep.el (rgrep): Bind `process-connection-type' to
20177 nil, because using a pty is apparently too slow (bug #895).
20178
201792011-06-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
20180
20181 * mail/sendmail.el (sendmail-query-once): New function.
20182 (sendmail-query-once-function): New variable.
20183
201842011-06-29 Glenn Morris <rgm@gnu.org>
20185
20186 * files.el (auto-mode-alist): Add .f03, .f08 for f90-mode.
20187
20188 * ses.el (top-level): Require cl when compiling.
20189 (ses-set-localvars): Fix error statement.
20190 Call it at compile time to silence a storm of warnings.
20191
201922011-06-29 Martin Rudalics <rudalics@gmx.at>
20193
20194 * window.el (normalize-live-buffer): Rename to
20195 window-normalize-buffer.
20196 (normalize-live-frame): Rename to window-normalize-frame.
20197 (normalize-any-window): Rename to window-normalize-any-window.
20198 (normalize-live-window): Rename to window-normalize-live-window.
20199 (make-window-atom): Rename to window-make-atom.
20200 (window-resize-reset): Rename to window--resize-reset.
20201 (window-resize-reset-1): Rename to window--resize-reset-1.
20202 (resize-mini-window): Rename to window--resize-mini-window.
20203 (resize-subwindows-skip-p): Rename to
20204 window--resize-subwindows-skip-p.
20205 (resize-subwindows-normal): Rename to
20206 window--resize-subwindows-normal.
20207 (resize-subwindows): Rename to window--resize-subwindows.
20208 (resize-other-windows): Rename to window--resize-siblings.
20209 (resize-this-window): Rename to window--resize-this-window.
20210 (resize-root-window): Rename to window--resize-root-window.
20211 (resize-root-window-vertically): Rename to
20212 window--resize-root-window-vertically.
20213 (normalize-buffer-to-display): Rename to
20214 window-normalize-buffer-to-display.
20215 (normalize-buffer-to-switch-to): Rename to
20216 window-normalize-buffer-to-switch-to.
20217 Correspondingly update all callers of the functions listed
20218 above.
20219 (display-buffer-alist, display-buffer-normalize-arguments)
20220 (display-buffer-normalize-options, display-buffer)
20221 (display-buffer-alist-set): Use "function" instead of
20222 "fun-with-args".
20223
202242011-06-28 Chong Yidong <cyd@stupidchicken.com>
20225
20226 * mail/emacsbug.el (report-emacs-bug): Handle non-gnu bug
20227 addresses more clearly. Add hyperlinks for bug-gnu-emacs and
20228 debbugs.gnu.org. Mention acknowledgment email.
20229
202302011-06-28 Lars Magne Ingebrigtsen <larsi@gnus.org>
20231
20232 * mail/smtpmail.el (smtpmail-send-it): Leave off changing the
20233 buffer multibyteness, since it shouldn't matter.
20234
202352011-06-28 Martin Rudalics <rudalics@gmx.at>
20236
20237 * window.el (display-buffer-in-side-window): Handle dedicated
20238 windows as in display-buffer-reuse-window.
20239 (display-buffer-normalize-alist): Use value of override
20240 specifier.
20241 (display-buffer-normalize-specifiers): Use value of
20242 other-window-means-other-frame specifier.
20243 (display-buffer-alist): Rewrite some texts in widgets.
20244 (display-buffer): Spread arguments when calling function
20245 specified by fun-with-args.
20246
202472011-06-28 Deniz Dogan <deniz@dogan.se>
20248
20249 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
20250 Unnest `let'.
20251
20252 * textmodes/css-mode.el (css-font-lock-keywords): Fix grouped
20253 selectors (Bug#5732).
20254 (css-proprietary-nmstart-re): Use `regexp-opt'.
20255
202562011-06-27 Jari Aalto <jari.aalto@cante.net>
20257
20258 * eshell/em-ls.el: Display `ls -l' dates in ISO format (Bug#8440).
20259 (eshell-ls-date-format): New defcustom.
20260 (eshell-ls-file): Use it.
20261
202622011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
20263
20264 * help-fns.el (describe-variable): Fix message for terminal-local vars.
20265
202662011-06-27 Katsumi Yamaoka <yamaoka@jpl.org>
20267
20268 * net/ange-ftp.el: Allow loading .gz files (Bug#6923).
20269 (ange-ftp-make-tmp-name): New arg.
20270 (ange-ftp-file-local-copy): Use it.
20271
202722011-06-27 Jambunathan K <kjambunathan@gmail.com>
20273
20274 * tar-mode.el (tar-untar-buffer): Set coding-system-for-write to
20275 no-conversion (Bug#8870).
20276
202772011-06-27 Martin Rudalics <rudalics@gmx.at>
20278
20279 * window.el (window-right, window-left, window-child)
20280 (window-child-count, window-last-child)
20281 (window-iso-combination-p, walk-window-tree-1)
20282 (window-atom-check-1, window-tree-1, delete-window)
20283 (window-state-get-1, display-buffer-even-window-sizes): Adapt to
20284 new naming conventions - window-vchild, window-hchild,
20285 window-next and window-prev are now called window-top-child,
20286 window-left-child, window-next-sibling and window-prev-sibling
20287 respectively.
20288 (resize-window-reset): Rename to window-resize-reset.
20289 (resize-window-reset-1): Rename to window-resize-reset-1.
20290 (resize-window): Rename to window-resize.
20291 (window-min-height, window-min-width)
20292 (resize-mini-window, resize-this-window, resize-root-window)
20293 (resize-root-window-vertically, adjust-window-trailing-edge)
20294 (enlarge-window, shrink-window, maximize-window)
20295 (minimize-window, delete-window, quit-restore-window)
20296 (split-window, balance-windows, balance-windows-area-adjust)
20297 (balance-windows-area, window-state-put-2)
20298 (display-buffer-even-window-sizes, display-buffer-set-height)
20299 (display-buffer-set-width, set-window-text-height)
20300 (fit-window-to-buffer): Rename all "resize-window" prefixed
20301 calls to use the "window-resize" prefix convention.
20302 (display-buffer-alist): Fix symbol for label specifier.
20303 (display-buffer-reuse-window): Set reuse-dedicated to cdr of
20304 corresponding specifier.
20305 Reported by Juanma Barranquero <lekktu@gmail.com>.
20306
203072011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
20308
20309 * ses.el (ses-destroy-cell-variable-range): Fix heading comment
20310 convention.
20311 (ses-call-printer): Does not pass an empty string to formatter when the
20312 cell is empty to keep from barking printer Calc math-format-value.
20313
203142011-06-27 Richard Stallman <rms@gnu.org>
20315
20316 * battery.el (battery-mode-line-limit): New variable.
20317 (battery-update): Handle it.
20318
20319 * mail/rmailmm.el (rmail-mime-process-multipart):
20320 Handle truncated messages.
20321
203222011-06-27 Glenn Morris <rgm@gnu.org>
20323
20324 * progmodes/flymake.el (flymake-err-line-patterns):
20325 Allow for column numbers in the ant/javac pattern. (Bug#8866)
20326
203272011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
20328
20329 * ses.el (ses-relocate-range): Keep rest of arguments for ses-range.
20330 (ses--clean-!, ses--clean-_): New functions.
20331 (ses-range): Add configurability of readout order, and conversion
20332 to Calc vector.
20333
20334 * ses.el (ses-repair-cell-reference-all): New function.
20335 (ses-cell-symbol): Set macro as safe, so that it can be used in
20336 formulas.
20337
20338 * ses.el: Update cycle detection algorithm.
20339 (ses-localvars): Add ses--Dijkstra-attempt-nb and
20340 ses--Dijkstra-weight-bound, and initial values thereof when applicable.
20341 (ses-set-localvars): New function.
20342 (ses-make-cell): Add property-list as a cell element.
20343 (ses-cell-property-get-fun, ses-cell-property-get)
20344 (ses-cell-property-delq-fun, ses-cell-property-set-fun)
20345 (ses-cell-property-pop-fun, ses-cell-property-get-handle-fun):
20346 New functions.
20347 (ses-cell-property-set, ses-cell-property-pop)
20348 (ses-cell-property-get-handle): New macro.
20349 (ses-cell-property-handle-car, ses-cell-property-handle-setcar):
20350 New aliases, used for code readability.
20351 (ses-calculate-cell, ses-update-cells): Use Dijkstra algorithm for
20352 cycle detection.
20353 (ses-self-reference-early-detection): New defcustom.
20354 (ses-formula-references): Robustify against self-referring cells.
20355 (ses-mode): Use ses-set-localvars.
20356 (ses-command-hook): Add call to ses-initialize-Dijkstra-attempt
20357 before lauching the update processing.
20358 (ses-initialize-Dijkstra-attempt): New function.
20359 (ses-recalculate-cell): Update for cycle detection based on
20360 Dijkstra algorithm.
20361
20362 * ses.el: Fix commenting and indenting convention.
20363
203642011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
20365
20366 * bs.el (bs-cycle-next): Complete last change.
20367
203682011-06-27 Drew Adams <drew.adams@oracle.com>
20369
20370 * faces.el (list-faces-display): Add help-mode-map to output (bug#8939).
20371
203722011-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
20373
20374 * net/network-stream.el (network-stream-open-starttls):
20375 Don't re-get capabilities unless we've reestablished connection.
20376 (network-stream-open-starttls): Fix stupid typo with gnutls-clii.
20377
20378 * mail/smtpmail.el (smtpmail-via-smtp): Bind coding-system-for-*
20379 to binary to possibly avoid line encoding issues on Windows (among
20380 other things).
20381
203822011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
20383
20384 * net/network-stream.el (open-network-stream): Return an :error
20385 saying what the problem was, if possible.
20386
20387 * mail/smtpmail.el (smtpmail-via-smtp): Report the error from the
20388 server.
20389
20390 * net/network-stream.el (network-stream-open-starttls): If we
20391 wanted to use STARTTLS, and the server offered it, but we weren't
20392 able to because we had no STARTTLS support, then close the connection.
20393 (open-network-stream): Return an :error element, if present.
20394
203952011-06-26 Chong Yidong <cyd@stupidchicken.com>
20396
20397 * hl-line.el (hl-line-sticky-flag): Doc fix.
20398 (global-hl-line-sticky-flag): New option (Bug#8323).
20399 (global-hl-line-highlight): Obey it.
20400
20401 * vc/vc.el (vc-revert-show-diff): Default to t.
20402
204032011-06-26 Ken Manheimer <ken.manheimer@gmail.com>
20404
20405 * allout-widgets.el (allout-widgets-post-command-business):
20406 Stop decorating intermediate isearch matches. They're not being
20407 undecorated when an isearch is continued past, and isearch
20408 automatically collapses them. This leads to "widget leaks", where
20409 decorated items accumulate in collapsed areas. Lines with lots of
20410 hidden widgets can slow down cursor travel, substantially.
20411 Too much complicated machinery would be needed to ensure undecoration,
20412 so we're doing without this nicety.
20413
20414 (allout-widgets-tally-string): Don't try to do a hash-table-count
20415 of allout-widgets-tally when it's nil. This eliminates spurious "Error
20416 during redisplay: (wrong-type-argument hash-table-p nil)" warnings in
20417 *Messages* when allout-widgets-maintain-tally is t.
20418
204192011-06-26 Martin Rudalics <rudalics@gmx.at>
20420
20421 * window.el (display-buffer-normalize-argument): Rename to
20422 display-buffer-normalize-arguments. Handle special meaning of
20423 LABEL argument. Respect special-display-function when popping up
20424 a new frame. Fix code searching for a window showing the buffer
20425 on another frame.
20426 (display-buffer-normalize-specifiers):
20427 Call display-buffer-normalize-arguments.
20428 (display-buffer-in-window): Don't undedicate the window if its
20429 buffer remains the same.
20430 Reported by Drew Adams <drew.adams@oracle.com>.
20431 (display-buffer-alist): Add choice for same-window macro
20432 specfier.
20433 (display-buffer): Mention special meaning of LABEL argument in
20434 doc-string. Fix quoting. Don't pop up a new frame even as
20435 fallback.
20436
204372011-06-26 Juanma Barranquero <lekktu@gmail.com>
20438
20439 * bs.el (bs-cycle-next): Pass current buffer to `bury-buffer' to
20440 avoid deleting the current window in some cases (bug#8911).
20441
204422011-06-26 Andreas Schwab <schwab@linux-m68k.org>
20443
20444 * emacs-lisp/smie.el (smie-bnf->prec2): Fix last change.
20445 (Bug#8934)
20446
204472011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
20448
20449 * net/network-stream.el (network-stream-open-starttls):
20450 Use built-in TLS support if `gnutls-available-p' is true.
20451 (network-stream-open-tls): Ditto.
20452
204532011-06-26 Leo Liu <sdl.web@gmail.com>
20454
20455 * register.el (registerv): New struct.
20456 (registerv-make): New function.
20457 (jump-to-register, describe-register-1, insert-register):
20458 Support the jump-func, print-func and insert-func slot of a registerv
20459 struct. (Bug#8415)
20460
204612011-06-26 Chong Yidong <cyd@stupidchicken.com>
20462
20463 * vc/vc.el (vc-revert-show-diff): New defcustom.
20464 (vc-diff-internal): New arg specifying diff buffer.
20465 (vc-revert): Obey vc-revert-show-diff. If we show a diff, don't
20466 reuse an existing *vc-diff* buffer (Bug#8927).
20467
20468 * progmodes/cperl-mode.el (cperl-mode): Derive from prog-mode.
20469
204702011-06-26 Glenn Morris <rgm@gnu.org>
20471
20472 * progmodes/f90.el (f90-critical-indent): New option.
20473 (f90-font-lock-keywords-2, f90-blocks-re, f90-end-block-re)
20474 (f90-start-block-re, f90-mode-abbrev-table): Add block, critical.
20475 (f90-mode): Doc fix.
20476 (f90-looking-at-critical, f90-looking-at-end-critical): New funcs.
20477 (f90-no-block-limit, f90-calculate-indent, f90-end-of-block)
20478 (f90-beginning-of-block, f90-next-block, f90-indent-region)
20479 (f90-match-end): Handle block, critical.
20480
204812011-06-25 Glenn Morris <rgm@gnu.org>
20482
20483 * calendar/diary-lib.el (diary-included-files): Doc fix.
20484 (diary-include-files): New function, extracted from
20485 diary-include-other-diary-files and diary-mark-included-diary-files.
20486 (diary-include-other-diary-files, diary-mark-included-diary-files):
20487 Just call diary-include-files.
20488 (diary-mark-entries): Reset diary-included-files on first call.
20489
20490 * calendar/diary-lib.el (diary-mark-entries)
20491 (diary-mark-included-diary-files):
20492 Visit included diary-files in temp buffers.
20493
20494 * progmodes/f90.el (f90-keywords-re, f90-font-lock-keywords-1)
20495 (f90-blocks-re, f90-program-block-re, f90-end-block-re)
20496 (f90-start-block-re, f90-imenu-generic-expression)
20497 (f90-looking-at-program-block-start, f90-no-block-limit):
20498 Add support for submodules.
20499
20500 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
20501 (f90-procedures-re, f90-constants-re): Add some F2008 stuff.
20502
205032011-06-25 Eli Zaretskii <eliz@gnu.org>
20504
20505 * net/ange-ftp.el (ange-ftp-insert-file-contents): Let-bind
20506 buffer-file-type before setting its value, to avoid disastrous
20507 global effects on decoding files for DOS/Windows systems. (Bug#8780)
20508
205092011-06-25 Juanma Barranquero <lekktu@gmail.com>
20510
20511 * allout.el (allout-unload-function): Pass -1 to `allout-mode'.
20512
20513 * ses.el (ses-unload-function):
20514 * emacs-lisp/re-builder.el (re-builder-unload-function): Simplify.
20515
20516 * proced.el (proced-unload-function):
20517 * progmodes/cperl-mode.el (cperl-mode-unload-function): Remove.
20518
205192011-06-25 Andreas Rottmann <a.rottmann@gmx.at>
20520
20521 * server.el (server-create-window-system-frame): Add parameters arg.
20522 (server-process-filter): Doc fix. Handle frame-parameters.
20523
205242011-06-25 Juanma Barranquero <lekktu@gmail.com>
20525
20526 Fix bug#8730, bug#8781.
20527
20528 * loadhist.el (unload--set-major-mode): New function.
20529 (unload-feature): Use it.
20530
20531 * progmodes/python.el (python-after-info-look): Add autoload cookie.
20532 (python-unload-function): New function.
20533
205342011-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
20535
20536 * mail/rmail.el (rmail-show-message-1): Use restore-buffer-modified-p.
20537
205382011-06-25 Giuseppe Scrivano <gscrivano@gnu.org>
20539
20540 * net/browse-url.el (browse-url-firefox-program): Add icecat to
20541 the candidates list.
20542
205432011-06-24 Juanma Barranquero <lekktu@gmail.com>
20544
20545 * progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
20546
205472011-06-23 Richard Stallman <rms@gnu.org>
20548
20549 * mail/rmail.el: Going to grep hit in Rmail buffer finds the message.
20550 (rmail-variables): Set next-error-move-function.
20551 (rmail-what-message): Take argument POS.
20552 (rmail-next-error-move): New function.
20553
205542011-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
20555
20556 * emacs-lisp/smie.el (smie-bnf->prec2): Give more understandable error
20557 messages for adjacent non-terminals.
20558
205592011-06-23 Richard Stallman <rms@gnu.org>
20560
20561 * mail/rmail.el (rmail-retry-ignored-headers): Add message-id.
20562 (rmail-show-message-1): Preserve buffer modified flag.
20563 (rmail-start-mail): Don't specify use of rmail-mail-return;
20564 that's done by mail-bury now.
20565 (rmail-mail-return): Handle arg NEWBUF.
20566
205672011-06-23 Michael Albinus <michael.albinus@gmx.de>
20568
20569 * net/tramp-sh.el (tramp-method-out-of-band-p): Check, whether
20570 SIZE is a number.
20571
205722011-06-23 Martin Rudalics <rudalics@gmx.at>
20573
20574 * window.el (get-lru-window, get-mru-window)
20575 (get-largest-window): Never return a minibuffer window.
20576 (display-buffer-pop-up-window): Fix a bug that could lead to
20577 reusing the minibuffer window.
20578 (display-buffer): Pass original specifier argument to
20579 display-buffer-function instead of the normalized one.
20580 Reported by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
20581
205822011-06-22 Leo Liu <sdl.web@gmail.com>
20583
20584 * minibuffer.el (completing-read-function)
20585 (completing-read-default): Move from minibuf.c.
20586
205872011-06-22 Richard Stallman <rms@gnu.org>
20588
20589 * mail/sendmail.el (mail-bury): If Rmail is in use, return nicely
20590 to Rmail even if not started by a special Rmail command.
20591
20592 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
20593 Copy the buffer currently showing just one message.
20594
205952011-06-22 Roland Winkler <winkler@gnu.org>
20596
20597 * textmodes/bibtex.el (bibtex-entry-update): Use mapc.
20598 (bibtex-clean-entry): First delete the old key so that a
20599 customized algorithm for generating the new key does not get
20600 confused by the old key.
20601 (bibtex-url): Obey regexp of first step.
20602 (bibtex-search-entries): Do not use add-to-list with local
20603 list-var.
20604
206052011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
20606
20607 * mail/smtpmail.el (smtpmail-try-auth-methods): If the user has
20608 stored a user name, then query for the password first, instead of
20609 waiting for SMTP to give an error message and the trying again.
20610
206112011-06-22 Lawrence Mitchell <wence@gmx.li>
20612
20613 * net/browse-url.el (browse-url-xdg-open): Use 0, rather than nil
20614 BUFFER in call-process.
20615
206162011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
20617
20618 * mail/smtpmail.el (smtpmail-via-smtp): Make sure we don't send
20619 QUIT twice.
20620 (smtpmail-try-auth-methods): Require user name and password from
20621 auth-source.
20622
206232011-06-22 Martin Rudalics <rudalics@gmx.at>
20624
20625 * window.el (display-buffer-default-specifiers)
20626 (display-buffer-alist): Remove entries for pop-up-frame-alist.
20627 Suggested by Katsumi Yamaoka <yamaoka@jpl.org>.
20628 (split-window): Normalize SIDE argument (Bug#8916).
20629
20630 * frame.el (pop-up-frame-alist, pop-up-frame-function)
20631 (special-display-frame-alist, special-display-popup-frame):
20632 Remove duplicate declarations. These are now in window.el.
20633
206342011-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
20635
20636 * mail/smtpmail.el (smtpmail-via-smtp):
20637 Set :use-starttls-if-possible so that we always use STARTTLS if the
20638 server supports it. SMTP servers that support STARTTLS commonly
20639 require it.
20640
20641 * net/network-stream.el (network-stream-open-starttls): Support
20642 upgrading to STARTTLS always, even if we don't have built-in support.
20643 (open-network-stream): Add the :always-query-capabilities keyword.
20644
20645 * mail/smtpmail.el: Rewritten to do opportunistic STARTTLS
20646 upgrades with `open-network-stream', and rely solely on
20647 auth-source for all credentials. Big changes throughout the file,
20648 but in particular:
20649 (smtpmail-auth-credentials): Remove.
20650 (smtpmail-starttls-credentials): Remove.
20651 (smtpmail-via-smtp): Check for servers saying they want AUTH after
20652 MAIL FROM, too.
20653
20654 * net/network-stream.el (network-stream-open-starttls):
20655 Provide support for client certificates both for external and built-in
20656 STARTTLS.
20657 (auth-source): Require.
20658 (open-network-stream): Document the :client-certificate keyword.
20659 (network-stream-certificate): Change cert-cert to cert and
20660 cert-key to key.
20661
206622011-06-21 Michael Albinus <michael.albinus@gmx.de>
20663
20664 * net/tramp-cache.el (top): Don't load the persistency file when
20665 "emacs -Q" has been called.
20666
206672011-06-21 Tim Harper <timcharper@gmail.com>
20668
20669 * term/ns-win.el (ns-initialize-window-system):
20670 Set application-specific `ApplePressAndHoldEnabled' system
20671 resource to NO as it is not yet supported by the NS port.
20672
206732011-06-21 Juanma Barranquero <lekktu@gmail.com>
20674
20675 * misc.el (list-dynamic-libraries--refresh): Compute header here...
20676 (list-dynamic-libraries): ...not here.
20677
206782011-06-21 Leo Liu <sdl.web@gmail.com>
20679
20680 * subr.el (sha1): Implement sha1 using secure-hash.
20681
206822011-06-21 Martin Rudalics <rudalics@gmx.at>
20683
20684 * window.el (display-buffer-alist): In default value do not
20685 enforce searching a window on any but the selected frame.
20686 Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
20687 (display-buffer-select-window): Remove function.
20688 (display-buffer-in-window): When a window on another frame gets
20689 reused, do not select it any more but just raise its frame if
20690 necessary (Bug#8851) and (Bug#8856).
20691 (display-buffer-normalize-options): Handle pop-up-frames related
20692 options more faithfully.
20693 (pop-to-buffer): Don't rely on `display-buffer' selecting the
20694 window if it is on another frame.
20695 (display-buffer-alist, display-buffer-default-specifiers):
20696 Don't make new frame unsplittable by default.
20697 (display-buffer-normalize-argument): Fix doc-string typo and use
20698 'same-frame-other-window instead of 'other-window when associating
20699 with display-buffer-macro-specifiers.
20700
207012011-06-21 Vincent Belaïche <vincent.b.1@hotmail.fr>
20702
20703 * play/5x5.el (5x5-solve-rotate-left, 5x5-solve-rotate-right):
20704 New functions.
20705 (5x5-mode-map, 5x5-mode-menu): Bind them.
20706 (5x5-draw-grid): Tweak the solver's rendering.
20707
207082011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
20709
20710 * progmodes/compile.el (compilation-error-regexp-alist-alist): Rename
20711 `caml' to `python-tracebacks-and-caml'; allow leading tabs (bug#8585).
20712
207132011-06-21 Drew Adams <drew.adams@oracle.com>
20714
20715 * menu-bar.el: Use function variable instead of switch-to-buffer.
20716 (menu-bar-select-buffer-function): New variable.
20717 (menu-bar-update-buffers): Use it (bug#8876).
20718
207192011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
20720
20721 * emacs-lisp/bytecomp.el (add-to-list): Add handler to check the
20722 variable's status.
20723
207242011-06-20 Jan Djärv <jan.h.d@swipnet.se>
20725
20726 * x-dnd.el (x-dnd-version-from-flags)
20727 (x-dnd-more-than-3-from-flags): New functions that handle long-as-cons
20728 and long as number (Bug#8899).
20729 (x-dnd-handle-xdnd): Call functions above (Bug#8899).
20730
207312011-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
20732
20733 * minibuffer.el (completion-metadata): Add `metadata' to the alist.
20734 (completion-try-completion, completion-all-completions): Compute the
20735 metadata argument if it's missing; make it optional (bug#8795).
20736
20737 * wid-edit.el: Use lex-bind and move towards completion-at-point.
20738 (widget-complete): Use new :completion-function property.
20739 (widget-completions-at-point): New function.
20740 (default): Use :completion-function instead of :complete.
20741 (widget-default-completions): Rename from widget-default-complete;
20742 Rewrite.
20743 (widget-string-complete, widget-file-complete, widget-color-complete):
20744 Remove functions.
20745 (file, symbol, function, variable, coding-system, color):
20746 * international/mule-cmds.el (default-input-method, charset)
20747 (language-info-custom-alist):
20748 * cus-edit.el (face): Use new property :completions.
20749
20750 * progmodes/pascal.el (pascal-completions-at-point): New function.
20751 (pascal-mode): Use it.
20752 (pascal-mode-map): Use completion-at-point.
20753 (pascal-toggle-completions): Make obsolete.
20754 (pascal-complete-word, pascal-show-completions):
20755 * progmodes/octave-mod.el (octave-complete-symbol):
20756 Redefine as obsolete alias.
20757 * progmodes/octave-inf.el (inferior-octave-completion-at-point):
20758 Signal absence of completion info for old Octave,
20759 (inferior-octave-complete): Redefine as obsolete alias.
20760 * progmodes/meta-mode.el: Use lexical-binding and completion-at-point.
20761 (meta-completions-at-point): Rename from meta-complete-symbol and
20762 adapt it for use on completion-at-point-functions.
20763 (meta-common-mode): Use it.
20764 (meta-looking-at-backward, meta-match-buffer): Remove.
20765 (meta-complete-symbol): Redefine as obsolete alias.
20766 (meta-common-mode-map): Use completion-at-point.
20767 * progmodes/make-mode.el: Use lexical-binding and completion-at-point.
20768 (makefile-mode-map): Use completion-at-point.
20769 (makefile-completions-at-point): Rename from makefile-complete and
20770 adapt it for use on completion-at-point-functions.
20771 (makefile-mode): Use it.
20772 (makefile-complete): Redefine as obsolete alias.
20773
207742011-06-20 Deniz Dogan <deniz@dogan.se>
20775
20776 * net/rcirc.el: Delete trailing whitespaces once and for all.
20777
207782011-06-20 Daniel Colascione <dan.colascione@gmail.com>
20779
20780 * emacs-lisp/syntax.el (syntax-ppss): Further improve docstring.
20781
207822011-06-19 Chong Yidong <cyd@stupidchicken.com>
20783
20784 * files.el (auto-mode-alist): Entry for m2-mode (Bug#8852).
20785
20786 * info.el (Info-apropos-toc-nodes): Minor doc fix (Bug#8833).
20787
207882011-06-19 Martin Rudalics <rudalics@gmx.at>
20789
20790 * window.el (display-buffer-other-window-means-other-frame):
20791 Call display-buffer-normalize-alist.
20792 (display-buffer-normalize-specifiers-1): Rename to
20793 display-buffer-normalize-argument. New argument other-frame.
20794 Rewrite.
20795 (display-buffer-normalize-specifiers-2): Rename to
20796 display-buffer-normalize-options.
20797 (display-buffer-normalize-alist-1): New function.
20798 (display-buffer-normalize-specifiers-3): Rename to
20799 display-buffer-normalize-alist.
20800 Call display-buffer-normalize-alist-1.
20801 (display-buffer-normalize-options-inhibit): New variable.
20802 (display-buffer-normalize-specifiers): Rewrite calling
20803 display-buffer-normalize-alist,
20804 display-buffer-normalize-argument, and
20805 display-buffer-normalize-options. Don't call the latter if
20806 display-buffer-normalize-options-inhibit is non-nil.
20807 (frame-auto-delete): New option.
20808 (window-deletable-p): Use frame-auto-delete.
20809 (window-list-no-nils, window-state-ignored-parameters)
20810 (window-state-get-1, window-state-get, window-state-put-list)
20811 (window-state-put-1, window-state-put-2, window-state-put):
20812 New functions.
20813 (display-buffer-normalize-options): Move special-display-p group
20814 after pop-up-frame group (Bug#8851) and (Bug#8856).
20815
208162011-06-18 Chong Yidong <cyd@stupidchicken.com>
20817
20818 * emacs-lisp/rx.el (rx-constituents): Add support for numbered
20819 groups (Bug#8776).
20820 (rx-submatch-n): New function.
20821 (rx): Document it.
20822
20823 * dired-x.el (dired-mark-unmarked-files): Fix interactive spec
20824 (Bug#8768).
20825
20826 * replace.el (occur-mode-map): Set occur-edit-mode binding to "e".
20827
20828 * textmodes/fill.el (default-justification): Add :safe (Bug#8879).
20829
20830 * cus-face.el (custom-declare-face): Call custom-theme-recalc face
20831 anytime existing face settings are present (Bug#8889).
20832
20833 * progmodes/delphi.el (delphi-mode-syntax-table): Use defvar.
20834 (delphi-mode): Use define-derived-mode to inherit from prog-mode.
20835 Remove unused argument.
20836
208372011-06-18 Martin Rudalics <rudalics@gmx.at>
20838
20839 * window.el (display-buffer-default-specifiers):
20840 Remove pop-up-frame. Add pop-up-window-min-height,
20841 pop-up-window-min-width, and another reuse-window specifier
20842 (Bug#8882). Reported by Dan Nicolaescu <dann@gnu.org>.
20843 (display-buffer-normalize-specifiers-2):
20844 Handle split-height-threshold and split-width-threshold also when
20845 pop-up-windows is unset. Add a reuse-window specifier for the
20846 case popping up a new window fails.
20847 (special-display-popup-frame): Remove double quoting.
20848 (display-buffer-normalize-specifiers-1): Fix thinko.
20849
208502011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
20851
20852 * shell.el (shell-completion-vars): Set pcomplete-termination-string
20853 according to comint-completion-addsuffix.
20854
20855 * pcomplete.el: Convert to lexical binding and fix bug#8819.
20856 (pcomplete-suffix-list): Mark as obsolete.
20857 (pcomplete-completions-at-point): Capture pcomplete-norm-func and
20858 pcomplete-seen in the closure.
20859 (pcomplete-comint-setup): Setup completion-at-point as well.
20860 (pcomplete--entries): New function.
20861 (pcomplete--env-regexp): New var.
20862 (pcomplete-entries): Rewrite to work with partial-completion and
20863 without relying on pcomplete-suffix-list.
20864 (pcomplete-pare-list): Remove, unused.
20865
208662011-06-17 Martin Rudalics <rudalics@gmx.at>
20867
20868 * window.el (display-buffer-alist): Set pop-up-window-min-height
20869 and pop-up-window-min-width in default value. Reported by
20870 Thierry Volpiatto <thierry.volpiatto@gmail.com>. New specifier
20871 other-window-means-other-frame.
20872 (display-buffer-macro-specifiers): Comment out entry for
20873 other-window specifier.
20874 (display-buffer-other-window-means-other-frame): New function.
20875 (display-buffer-normalize-specifiers-1): New arguments
20876 buffer-name and label. Treat other-window case specially.
20877 (display-buffer-normalize-specifiers-2): Treat other-window case
20878 specially.
20879 (display-buffer-normalize-specifiers-3): New function.
20880 (display-buffer-normalize-specifiers):
20881 Call display-buffer-normalize-specifiers-3.
20882
208832011-06-17 Martin Rudalics <rudalics@gmx.at>
20884
20885 * window.el (same-window-p): Fix two typos introduced when
20886 adding with-no-warnings.
20887 (display-buffer-normalize-specifiers-1): Don't check
20888 pop-up-frames for 'unset initialization.
20889 (display-buffer-normalize-specifiers-2): Major rewrite using
20890 special-display-p and same-window-p (Bug#8851) and (Bug#8856).
20891 (pop-up-frames, display-buffer-reuse-frames)
20892 (display-buffer-mark-dedicated): Don't initialize to 'unset.
20893 Suggested by David Engster <deng@randomsample.de>.
20894 (even-window-heights): Initialize to 'unset.
20895 (display-buffer-alist-set): Handle new 'unset initializations.
20896 (display-buffer-macro-specifiers): Don't pop up a new frame in the
20897 other window case.
20898
208992011-06-16 Martin Rudalics <rudalics@gmx.at>
20900
20901 * window.el (display-buffer-normalize-specifiers-1):
20902 Respect current value of pop-up-frames for most reasonable values of
20903 second argument of display-buffer (Bug#8865).
20904 (switch-to-buffer-same-frame, switch-to-buffer-other-window)
20905 (switch-to-buffer-other-window-same-frame)
20906 (switch-to-buffer-other-frame): Fix doc-strings. Reported by Drew
20907 Adams (Bug#8875).
20908 (display-buffer): Don't check noninteractive when calling
20909 display-buffer-pop-up-frame.
20910 (display-buffer-pop-up-frame): Never pop up a frame in
20911 noninteractive mode (Bug#8857).
20912 (enlarge-window, shrink-window): Don't report an error when the
20913 window can't be resized as requested (Bug#8862).
20914
209152011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
20916
20917 * pcmpl-rpm.el (pcomplete/rpm): Minor simplification.
20918
20919 * emacs-lisp/debug.el (debug): Don't leave the buffer in Debugger.
20920
20921 * abbrev.el (define-abbrev-table): Don't add a table multiple times.
20922
209232011-06-15 Alan Mackenzie <acm@muc.de>
20924
20925 * progmodes/cc-fonts.el (c-font-lock-declarations): 1: Whilst checking
20926 for declarators, disable knr checking to speed up for normal files.
20927 2: Refactor, replacing a sequence of nested if forms by a cond form.
20928
209292011-06-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
20930
20931 * net/network-stream.el (open-network-stream): Add the keyword
20932 :always-query-capabilities for the case where you want to force a
20933 `plain' network connection, but the protocol still requires the
20934 capabilitiy command (i.e., SMTP and EHLO).
20935
20936 * subr.el (process-live-p): Rename from `process-alive-p' for
20937 consistency with other `-live-p' functions.
20938
209392011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
20940
20941 * window.el (same-window-buffer-names, same-window-regexps)
20942 (special-display-frame-alist, special-display-popup-frame)
20943 (special-display-function, special-display-buffer-names)
20944 (special-display-regexps, pop-up-frame-alist)
20945 (pop-up-frame-function, pop-up-frames, display-buffer-reuse-frames)
20946 (pop-up-windows, split-window-preferred-function)
20947 (split-height-threshold, split-width-threshold, even-window-heights)
20948 (display-buffer-mark-dedicated): Don't encourage the use of
20949 display-buffer-alist from Elisp code.
20950
209512011-06-15 Dan Nicolaescu <dann@ics.uci.edu>
20952
20953 * progmodes/python.el (python-mode): Derive from prog-mode.
20954 * progmodes/ps-mode.el (ps-mode):
20955 * progmodes/mixal-mode.el (mixal-mode):
20956 * progmodes/cfengine.el (cfengine-mode):
20957 * progmodes/ld-script.el (ld-script-mode): Likewise.
20958
209592011-06-15 Martin Rudalics <rudalics@gmx.at>
20960
20961 * window.el (display-buffer-alist): Trim default value to avoid
20962 popping up a new frame (Bug#8857) or reusing an arbitrary window
20963 on another frame.
20964 (display-buffer): Do not fall back on popping up a new frame in
20965 batch mode (Bug#8857).
20966
209672011-06-14 Chong Yidong <cyd@stupidchicken.com>
20968
20969 * cus-theme.el (describe-theme-1): Use custom-theme-p.
20970 (custom-theme-summary): New function.
20971 (customize-themes): Use it.
20972
209732011-06-13 Glenn Morris <rgm@gnu.org>
20974
20975 * cus-dep.el (custom-make-dependencies): Use up command-line-args-left.
20976
209772011-06-13 Martin Rudalics <rudalics@gmx.at>
20978
20979 * help.el (help-window): Remove variable.
20980 (help-window-point-marker, temp-buffer-max-height)
20981 (temp-buffer-resize-mode, help-window-select): Rewrite doc-strings.
20982 (help-print-return-message): Don't set help-window.
20983 (resize-temp-buffer-window): Rewrite cod eand doc-string.
20984 (help-window-setup-finish): Remove.
20985 (help-window-display-message, help-window-setup)
20986 (with-help-window): Major rewrite based on new
20987 display-buffer-window variable.
20988
20989 * help-mode.el (help-mode-finish): Remove help-window related
20990 code.
20991
20992 * view.el (view-exits-all-viewing-windows): Remove reference to
20993 view-return-to-alist in doc-string.
20994 (view-return-to-alist): Make obsolete.
20995 (view-buffer): Call pop-to-buffer-same-window and remove
20996 undo-window code.
20997 (view-buffer-other-window): Call pop-to-buffer-other-window and
20998 simplify code. Ignore second argument.
20999 (view-buffer-other-frame): Call pop-to-buffer-other-frame and
21000 simplify code. Ignore second argument.
21001 (view-return-to-alist-update): Make obsolete.
21002 (view-mode-enter): Rename second argument to QUIT-RESTORE.
21003 Rewrite using quit-restore window parameters.
21004 (view-mode-exit): Rename second argument to EXIT-ONLY.
21005 Rewrite using quit-restore-window.
21006 (View-exit, View-exit-and-edit, View-leave, View-quit)
21007 (View-quit-all, View-kill-and-leave): Call view-mode-exit with
21008 appropriate arguments.
21009 (view-end-message): Use quit-restore window parameter.
21010
21011 * window.el (display-buffer-function): Rewrite doc-string.
21012 (display-buffer-window, display-buffer-alist): New variables.
21013 (display-buffer-split-specifiers)
21014 (display-buffer-side-specifiers)
21015 (display-buffer-macro-specifiers): New constants.
21016 (display-buffer-even-window-sizes, display-buffer-set-height)
21017 (display-buffer-set-width, display-buffer-select-window)
21018 (display-buffer-in-window, display-buffer-reuse-window)
21019 (display-buffer-split-window-1, display-buffer-split-window)
21020 (display-buffer-split-atom-window, display-buffer-pop-up-window)
21021 (display-buffer-pop-up-frame, display-buffer-pop-up-side-window)
21022 (display-buffer-in-side-window, normalize-buffer-to-display)
21023 (display-buffer-normalize-specifiers-1)
21024 (display-buffer-normalize-specifiers-2)
21025 (display-buffer-normalize-specifiers, display-buffer-frame):
21026 New functions.
21027 (display-buffer): Major rewrite.
21028 (display-buffer-other-window, display-buffer-other-frame)
21029 (pop-to-buffer, switch-to-buffer-other-window)
21030 (switch-to-buffer-other-frame): Rewrite.
21031 (display-buffer-same-window, display-buffer-same-frame)
21032 (display-buffer-same-frame-other-window)
21033 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
21034 (pop-to-buffer-other-window)
21035 (pop-to-buffer-same-frame-other-window)
21036 (pop-to-buffer-other-frame, switch-to-buffer-same-frame)
21037 (switch-to-buffer-other-window-same-frame): New functions.
21038 (same-window-p, special-display-p): Rewrite disabling warnings.
21039 Make obsolete.
21040 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
21041 (display-buffer-mark-dedicated): Initialize to symbol 'unset.
21042 Make obsolete
21043 (same-window-buffer-names, same-window-regexps)
21044 (special-display-frame-alist, special-display-popup-frame)
21045 (special-display-function, special-display-buffer-names)
21046 (special-display-regexps, pop-up-frame-alist)
21047 (pop-up-frame-function, split-window-preferred-function)
21048 (split-height-threshold, split-width-threshold)
21049 (even-window-heights): Make obsolete.
21050
210512011-06-12 Glenn Morris <rgm@gnu.org>
21052
21053 * term/xterm.el (terminal-init-xterm): `version' may be nil. (Bug#8838)
21054 Misc simplifications.
21055
210562011-06-12 Martin Rudalics <rudalics@gmx.at>
21057
21058 * window.el (window-safely-shrinkable-p): Restore function which
21059 was inadvertently removed in change from 2011-06-11. Declare as
21060 obsolete.
21061
21062 * calendar/calendar.el (calendar-generate-window):
21063 Use window-iso-combined-p instead of combination of one-window-p and
21064 window-safely-shrinkable-p.
21065
210662011-06-12 Glenn Morris <rgm@gnu.org>
21067
21068 * progmodes/fortran.el (fortran-mode-syntax-table):
21069 * progmodes/f90.el (f90-mode-syntax-table):
21070 Set % to punctuation. (Bug#8820)
21071 (f90-find-tag-default): Remove, no longer needed.
21072
210732011-06-12 Daniel Colascione <dan.colascione@gmail.com>
21074
21075 * emacs-lisp/syntax.el (syntax-ppss): Clarify which items are invalid.
21076
210772011-06-11 Chong Yidong <cyd@stupidchicken.com>
21078
21079 * image.el (image-animated-p): Return animation delay in seconds.
21080 Avoid bit manipulation in Lisp; use `delay' entry in the metadata.
21081 (image-animate-timeout): Remove DELAY argument. Don't assume
21082 every subimage has the same delay; get it from image-animated-p.
21083 (image-animate): Caller changed.
21084
210852011-06-11 Michael Albinus <michael.albinus@gmx.de>
21086
21087 * net/tramp.el (tramp-debug-message): Add `tramp-with-progress-reporter'
21088 to ignored backtrace functions.
21089
210902011-06-11 Glenn Morris <rgm@gnu.org>
21091
21092 * calendar/appt.el (appt-disp-window-function): Doc fix.
21093 (appt-check): Handle overlapping appointments. (Bug#8337)
21094
210952011-06-11 Martin Rudalics <rudalics@gmx.at>
21096
21097 * window.el (window-tree-1, window-tree): New functions, moving
21098 the latter to window.el.
21099 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
21100 (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
21101 (bw-refresh-edges): Remove.
21102 (balance-windows-1, balance-windows-2): New functions.
21103 (balance-windows): Rewrite in terms of window tree functions,
21104 balance-windows-1 and balance-windows-2.
21105 (bw-adjust-window): Remove.
21106 (balance-windows-area-adjust): New function with functionality of
21107 bw-adjust-window but using resize-window.
21108 (set-window-text-height): Rewrite doc-string.
21109 Use normalize-live-window and resize-window.
21110 (enlarge-window-horizontally, shrink-window-horizontally):
21111 Rename argument to DELTA.
21112 (window-buffer-height): New function.
21113 (fit-window-to-buffer, shrink-window-if-larger-than-buffer):
21114 Rewrite using new window resize routines.
21115 (kill-buffer-and-window, mouse-autoselect-window-select):
21116 Use ignore-errors instead of condition-case.
21117 (quit-window): Call delete-frame instead of delete-windows-on
21118 for the only buffer on frame.
21119
211202011-06-10 Martin Rudalics <rudalics@gmx.at>
21121
21122 * loadup.el (top-level): Load window before files for the sake
21123 of replace-buffer-in-windows.
21124
21125 * files.el (read-buffer-to-switch)
21126 (switch-to-buffer-other-window)
21127 (switch-to-buffer-other-frame, display-buffer-other-frame):
21128 Move to window.el.
21129
21130 * simple.el (get-next-valid-buffer, last-buffer, next-buffer)
21131 (previous-buffer): Move to window.el.
21132
21133 * bindings.el (unbury-buffer): Move to window.el.
21134
21135 * window.el (delete-other-windows-vertically): Move after
21136 definition of delete-other-windows.
21137 (other-window, delete-windows-on, replace-buffer-in-windows):
21138 Move here from window.c.
21139 (record-window-buffer, unrecord-window-buffer)
21140 (set-window-buffer-start-and-point, switch-to-prev-buffer)
21141 (switch-to-next-buffer): New functions.
21142 (get-next-valid-buffer, last-buffer, next-buffer): Move here
21143 from simple.el. Call switch-to-next-buffer.
21144 (previous-buffer): Move here from simple.el.
21145 Call switch-to-prev-buffer.
21146 (bury-buffer): Move here from buffer.c. Switch to previous
21147 buffer when window cannot be deleted.
21148 (unbury-buffer): Move here from bindings.el.
21149 (ctl-x-map): Move binding for other-window from window.c to
21150 here.
21151 (read-buffer-to-switch, switch-to-buffer-other-window)
21152 (switch-to-buffer-other-frame): Move here from files.el.
21153 (normalize-buffer-to-switch-to): New functions.
21154 (switch-to-buffer): Move here from buffer.c.
21155 Use read-buffer-to-switch and normalize-buffer-to-switch-to.
21156
211572011-06-10 Martin Rudalics <rudalics@gmx.at>
21158
21159 * window.el (window-min-height, window-min-width): Move here
21160 from window.c. Add defcustoms and rewrite doc-strings.
21161 (resize-mini-window, resize-window): New functions.
21162 (adjust-window-trailing-edge, enlarge-window, shrink-window):
21163 Move here from window.c.
21164 (maximize-window, minimize-window): New functions.
21165 (delete-window, delete-other-windows, split-window): Move here
21166 from window.c.
21167 (window-split-min-size): New function.
21168 (split-window-keep-point): Mention split-window-above-each-other
21169 instead of split-window-vertically.
21170 (split-window-above-each-other, split-window-vertically):
21171 Rename split-window-vertically to split-window-above-each-other
21172 and provide defalias for old definition.
21173 (split-window-side-by-side, split-window-horizontally):
21174 Rename split-window-horizontally to split-window-side-by-side
21175 and provide defalias for the old definition.
21176 (ctl-x-map): Move bindings for delete-window,
21177 delete-other-windows and enlarge-window here from window.c.
21178 Replace bindings for split-window-vertically and
21179 split-window-horizontally by bindings for
21180 split-window-above-each-other and split-window-side-by-side.
21181
21182 * cus-start.el (all): Remove entries for window-min-height and
21183 window-min-width. Add entries for window-splits and
21184 window-nest.
21185
211862011-06-09 Glenn Morris <rgm@gnu.org>
21187
21188 * calendar/appt.el (appt-mode-line): New function.
21189 (appt-check, appt-disp-window): Use it.
21190
21191 * files.el (hack-one-local-variable-eval-safep):
21192 Allow minor-modes with explicit +/-1 arguments.
21193
211942011-06-09 Teodor Zlatanov <tzz@lifelogs.com>
21195
21196 * term/xterm.el (xterm): Add defgroup.
21197 (xterm-extra-capabilities): Add defcustom to supply known xterm
21198 capabilities, skip querying them, or query them (default).
21199 (terminal-init-xterm): Use it.
21200 (terminal-init-xterm-modify-other-keys): New function to set up
21201 modifyOtherKeys support to simplify `terminal-init-xterm'.
21202
212032011-06-09 Martin Rudalics <rudalics@gmx.at>
21204
21205 * window.el (resize-window-reset, resize-window-reset-1)
21206 (resize-subwindows-skip-p, resize-subwindows-normal)
21207 (resize-subwindows, resize-other-windows, resize-this-window)
21208 (resize-root-window, resize-root-window-vertically)
21209 (window-deletable-p, window-or-subwindow-p)
21210 (frame-root-window-p): New functions.
21211
212122011-06-09 Glenn Morris <rgm@gnu.org>
21213
21214 * net/ange-ftp.el (ange-ftp-switches-ok): New function.
21215 (ange-ftp-get-files): Use it.
21216
212172011-06-09 Alexander Klimov <alserkli@inbox.ru> (tiny change)
21218
21219 * mail/sendmail.el (mail-recover-1, mail-recover):
21220 * files.el (recover-file, recover-session):
21221 Handle dired-listing-switches not being just a single short option.
21222
212232011-06-09 Glenn Morris <rgm@gnu.org>
21224
21225 * calendar/appt.el (appt-display-message, appt-disp-window):
21226 Handle lists of appointments.
21227
212282011-06-08 Martin Rudalics <rudalics@gmx.at>
21229
21230 * window.el (one-window-p): Move down in code.
21231 Rewrite doc-string.
21232 (window-current-scroll-bars): Rewrite doc-string.
21233 Normalize live window argument.
21234 (walk-windows, get-window-with-predicate, count-windows):
21235 Rewrite doc-string. Use window-list-1.
21236 (window-in-direction-2, window-in-direction, get-mru-window):
21237 New functions.
21238
212392011-06-08 Reuben Thomas <rrt@sc3d.org>
21240
21241 * progmodes/flymake.el (flymake-compilation-prevents-syntax-check):
21242 Doc fix (Bug#8713).
21243
212442011-06-08 Chong Yidong <cyd@stupidchicken.com>
21245
21246 * repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
21247
212482011-06-08 Juanma Barranquero <lekktu@gmail.com>
21249
21250 * loadhist.el (unload-feature-special-hooks):
21251 Add `comint-output-filter-functions'.
21252
212532011-06-08 Ivan Kanis <gnu@kanis.fr>
21254
21255 * calendar/appt.el (appt-check): Move some initializations into the let.
21256
212572011-06-08 Martin Rudalics <rudalics@gmx.at>
21258
21259 * window.el (window-height): Defalias to window-total-height.
21260 (window-width): Defalias to window-body-width.
21261
212622011-06-07 Chong Yidong <cyd@stupidchicken.com>
21263
21264 * image-mode.el (image-toggle-animation): New command.
21265 (image-mode-map): Bind it to RET.
21266 (image-mode): Update message.
21267 (image-toggle-display-image): Avoid a spurious cache flush.
21268 (image-transform-rotation): Doc fix.
21269 (image-transform-properties): Return quickly in the normal case.
21270 (image-animate-loop): Rename from image-animate-max-time.
21271
21272 * image.el (image-animate-max-time): Move to image-mode.el.
21273 (create-animated-image): Remove unnecessary function.
21274 (image-animate): Rename from image-animate-start. New arg.
21275 (image-animate-stop): Remove; just use image-animate-timer.
21276 (image-animate-timer): Use car-safe.
21277 (image-animate-timeout): Rename argument.
21278
212792011-06-07 Martin Rudalics <rudalics@gmx.at>
21280
21281 * window.el (get-lru-window, get-largest-window): Move here from
21282 window.c. Rename first argument to ALL-FRAMES.
21283 Rephrase doc-strings.
21284 (get-buffer-window-list): Rewrite using window-list-1.
21285 Rephrase doc-string.
21286 (window-safe-min-height, window-safe-min-width): New constants.
21287 (window-size-ignore, window-min-size, window-min-size-1)
21288 (window-sizable, window-sizable-p, window-size-fixed-1)
21289 (window-size-fixed-p, window-min-delta-1, window-min-delta)
21290 (window-max-delta-1, window-max-delta, window-resizable)
21291 (window-resizable-p, window-total-height, window-total-width)
21292 (window-body-width): New functions.
21293 (window-full-height-p, window-full-width-p): Rewrite using
21294 window-total-size.
21295 (window-body-height): Rewrite using window-body-size.
21296
212972011-06-06 Martin Rudalics <rudalics@gmx.at>
21298
21299 * window.el (window-right, window-left, window-child)
21300 (window-child-count, window-last-child, window-any-p)
21301 (normalize-live-buffer, normalize-live-frame)
21302 (normalize-any-window, normalize-live-window)
21303 (window-iso-combination-p, window-iso-combined-p)
21304 (window-iso-combinations)
21305 (walk-window-tree-1, walk-window-tree, walk-window-subtree)
21306 (windows-with-parameter, window-with-parameter)
21307 (window-atom-root, make-window-atom, window-atom-check-1)
21308 (window-atom-check, window-side-check, window-check):
21309 New functions.
21310 (ignore-window-parameters, window-sides, window-sides-vertical)
21311 (window-sides-slots): New variables.
21312 (window-size-fixed): Move down in code. Minor doc-string fix.
21313
213142011-06-05 Andreas Schwab <schwab@linux-m68k.org>
21315
21316 * comint.el (comint-dynamic-complete-as-filename)
21317 (comint-dynamic-complete-filename): Correctly call
21318 completion-in-region.
21319
213202011-06-05 Deniz Dogan <deniz@dogan.se>
21321
21322 * net/rcirc.el (rcirc-prompt-for-encryption): Fix bug introduced
21323 in last change.
21324
213252011-06-05 Deniz Dogan <deniz@dogan.se>
21326
21327 * net/rcirc.el (rcirc-prompt-for-encryption): New function.
21328 (rcirc): Use it to prompt for encryption.
21329
213302011-06-05 Roland Winkler <winkler@gnu.org>
21331
21332 * textmodes/bibtex.el (bibtex-search-buffer): New variable.
21333 (bibtex-search-entries): New command bound to C-c C-a.
21334 (bibtex-display-entries): New function.
21335
213362011-06-05 Roland Winkler <winkler@gnu.org>
21337
21338 * textmodes/bibtex.el (bibtex-generate-url-list): Fix docstring.
21339 (bibtex-insert-kill): After yanking insert newline if necessary.
21340 (bibtex-initialize): Call bibtex-string-files-init only once.
21341 (bibtex-mode): Do not call easy-menu-add.
21342 (bibtex-validate-globally): Use save-excursion in bibtex buffers.
21343 (bibtex-yank): Set arg properly if nil.
21344
213452011-06-05 Roland Winkler <winkler@gnu.org>
21346
21347 * textmodes/bibtex.el (bibtex-search-entry-globally):
21348 New variable.
21349 (bibtex-search-entry): Use it.
21350
213512011-06-05 Roland Winkler <winkler@gnu.org>
21352
21353 * textmodes/bibtex.el (bibtex-entry-format): New option
21354 sort-fields.
21355 (bibtex-format-entry, bibtex-reformat): Honor this option.
21356 (bibtex-parse-entry): Return fields in proper order.
21357
213582011-06-05 Juanma Barranquero <lekktu@gmail.com>
21359
21360 * doc-view.el (doc-view-remove-if): Move computation of result out
21361 of `dolist' to silence misleading lexical-binding warning.
21362
213632011-06-04 Chong Yidong <cyd@stupidchicken.com>
21364
21365 * emacs-lisp/timer.el (timer-activate): Remove unused arg.
21366 (timer-activate, timer-activate-when-idle): Doc fix (Bug#8793).
21367
213682011-06-04 Michael Albinus <michael.albinus@gmx.de>
21369
21370 * net/tramp-sh.el (tramp-find-shell): Apply workaround also for
21371 "SunOS 5.10".
21372
213732011-06-04 Michael Albinus <michael.albinus@gmx.de>
21374
21375 * net/tramp.el (tramp-set-completion-function, tramp-parse-rhosts)
21376 (tramp-parse-shosts, tramp-parse-sconfig, tramp-parse-shostkeys)
21377 (tramp-parse-hosts, tramp-parse-passwd, tramp-parse-netrc)
21378 (tramp-parse-putty):
21379 * net/tramp-sh.el (tramp-completion-function-alist-rsh)
21380 (tramp-completion-function-alist-ssh)
21381 (tramp-completion-function-alist-telnet)
21382 (tramp-completion-function-alist-su)
21383 (tramp-completion-function-alist-putty): Set `tramp-autoload'
21384 cookie.
21385
21386 * net/tramp-ftp.el:
21387 * net/tramp-sh.el:
21388 * net/tramp-smb.el: Set `tramp-autoload' cookie, and eval after
21389 load "tramp.el" `tramp-set-completion-function'.
21390
213912011-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
21392
21393 * shell.el: Require and use pcomplete.
21394 (shell-dynamic-complete-functions): Add pcomplete-completions-at-point.
21395 (shell-completion-vars): Set pcomplete-default-completion-function.
21396
213972011-06-04 Deniz Dogan <deniz@dogan.se>
21398
21399 * iswitchb.el (iswitchb-window-buffer-p): Use `member' instead of
21400 `memq' (Bug#8799).
21401
214022011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
21403
21404 * subr.el (make-progress-reporter): Add "..." by default (bug#8785).
21405
214062011-06-02 Juanma Barranquero <lekktu@gmail.com>
21407
21408 * bs.el (bs--mark-unmark, bs--nth-wrapper):
21409 * mpc.el (mpc-select-extend, mpc-songpointer-context):
21410 * vc/log-view.el (log-view-beginning-of-defun):
21411 * vc/smerge-mode.el (smerge-apply-resolution-patch)
21412 (smerge-refine-forward, smerge-refine-chopup-region):
21413 Silence warning for unused `dotimes' counter variables.
21414
214152011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
21416
21417 * net/tramp.el (tramp-with-progress-reporter): Rename from
21418 with-progress-reporter. Use `declare'.
21419 * net/tramp-smb.el:
21420 * net/tramp-sh.el:
21421 * net/tramp-gvfs.el: Update all uses.
21422
214232011-06-02 Jay Belanger <jay.p.belanger@gmail.com>
21424
21425 * calc/calc.el (calc-kill-stack-buffer): Make sure that the trail
21426 buffer isn't killed before making it current.
21427
214282011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
21429
21430 Silence various byte-compiler warnings.
21431 * emacs-lisp/byte-run.el (make-obsolete-variable): New argument
21432 `access-type' and new obsolescence format.
21433 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): Adjust to
21434 new format.
21435 (byte-compile-check-variable): New `access-type' argument.
21436 Only warn if the access-type is obsolete.
21437 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
21438 (byte-compile-variable-set): Adjust callers.
21439 * help-fns.el (describe-variable): Adjust to new obsolescence format.
21440 * mail/sendmail.el (mail-mailer-swallows-blank-line): Only mark
21441 setting it as obsolete.
21442 * simple.el (minibuffer-completing-symbol):
21443 * font-lock.el (font-lock-beginning-of-syntax-function): Only mark read
21444 access as obsolete.
21445 * minibuffer.el (minibuffer-completing-file-name): Don't make it
21446 obsolete yet.
21447 * international/quail.el (quail-mouse-choose-completion): Remove unused
21448 code referring to obsolete var.
21449 (quail-choose-completion-string): Remove.
21450 * server.el (server-clients-with, server-kill-buffer-query-function)
21451 (server-kill-emacs-query-function): Silence "unused `proc'" warnings.
21452 * proced.el (proced-send-signal):
21453 * emacs-lisp/lisp.el (lisp-complete-symbol):
21454 Replace completion-annotate-function with completion-extra-properties.
21455
214562011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
21457
21458 * simple.el (goto-line): Use read-number.
21459 (overriding-map-is-bound): Remove.
21460 (saved-overriding-map): Change default.
21461 (save&set-overriding-map): Rename from ensure-overriding-map-is-bound;
21462 Take the map as argument.
21463 (universal-argument, negative-argument, digit-argument): Use it.
21464 (restore-overriding-map): Adjust.
21465 (do-auto-fill): Use fill-forward-paragraph.
21466 (keyboard-quit): Don't signal an error when debug-on-quit is non-nil.
21467
21468 * minibuffer.el (minibuffer-inactive-mode-map): New var.
21469 (minibuffer-inactive-mode): New major mode.
21470 * mouse.el (mouse-drag-region): Remove the "mouse-1 pops up
21471 the *Messages* buffer" hack.
21472 (mouse-popup-menubar): Don't burp if the event is a normal key.
21473
21474 Miscellaneous tweaks.
21475 * emacs-lisp/cl-macs.el (dolist, dotimes): Use the same strategy for
21476 lexical scoping as in subr.el's dolist and dotimes.
21477 * emacs-lisp/bytecomp.el (byte-compile-unfold-bcf):
21478 Silence compiler warning.
21479 * thingatpt.el (forward-whitespace): Trivial coding style fix.
21480 * subr.el (with-output-to-temp-buffer): Provide an edebug spec.
21481 * international/ccl.el (ccl-compile): Trivial simplification.
21482 * help-fns.el (help-do-arg-highlight): Silence compiler warning.
21483 * emacs-lisp/testcover.el (testcover-end): Remove spurious
21484 `printflag' argument.
21485 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
21486 Purecopy the whole obsolescence data.
21487
214882011-06-01 Leo Liu <sdl.web@gmail.com>
21489
21490 * net/rcirc.el (rcirc-decode-coding-system): Revert last change;
21491 improve doc-string as suggested by Marco Pessotto
21492 <melmothx@gmail.com>.
21493 (rcirc-print): Fix last change.
21494
214952011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
21496
21497 * minibuffer.el (complete-with-action): Return nil for the metadata and
21498 boundaries of non-functional tables.
21499 (completion-table-dynamic): Return nil for the metadata.
21500 (completion-table-with-terminator): Add default case, using
21501 complete-with-action.
21502 (completion--metadata): New function.
21503 (completion-all-sorted-completions, minibuffer-completion-help): Use it
21504 to try and avoid pathological performance problems.
21505 (completion--embedded-envvar-table): Return `category' metadata.
21506
215072011-05-31 Lars Magne Ingebrigtsen <larsi@gnus.org>
21508
21509 * subr.el (process-alive-p): New tiny convenience function.
21510
215112011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
21512
21513 * emacs-lisp/debug.el (debug): Save&restore not just the buffer's
21514 content but also its previous major mode.
21515
215162011-05-31 Helmut Eller <eller.helmut@gmail.com>
21517
21518 * emacs-lisp/debug.el (debug): Restore the previous content of the
21519 *Backtrace* buffer when we exit with C-M-c.
21520
215212011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
21522
21523 * minibuffer.el: Add metadata method to completion tables.
21524 (completion-category-overrides): New defcustom.
21525 (completion-metadata, completion--field-metadata)
21526 (completion-metadata-get, completion--styles)
21527 (completion--cycle-threshold): New functions.
21528 (completion-try-completion, completion-all-completions):
21529 Add `metadata' argument to choose completion-styles.
21530 (completion--do-completion): Use metadata to choose cycling.
21531 (completion-all-sorted-completions): Use metadata for sorting.
21532 Remove :completion-cycle-penalty which is not needed any more.
21533 (completion--try-word-completion): Add `metadata' argument.
21534 (minibuffer-completion-help): Check metadata for annotation function
21535 and sorting.
21536 (completion-file-name-table): Return `category' metadata.
21537 (minibuffer-completing-file-name): Make obsolete.
21538 * simple.el (minibuffer-completing-symbol): Make obsolete.
21539 * icomplete.el (icomplete-completions): Pass new `metadata' param to
21540 completion-try-completion.
21541
215422011-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
21543
21544 * mail/smtpmail.el (smtpmail-send-data): Add progress reporter.
21545
215462011-05-30 Leo Liu <sdl.web@gmail.com>
21547
21548 * net/rcirc.el (rcirc-debug-buffer): Use visible buffer name.
21549 (rcirc-print): Decode all incoming messages (bug#8744).
21550 (rcirc-decode-coding-system): Allow value nil for automatic coding
21551 system detection.
21552
215532011-06-01 Glenn Morris <rgm@gnu.org>
21554
21555 * mail/emacsbug.el (report-emacs-bug-hook): Mailclient ignores From.
21556
215572011-05-29 Chong Yidong <cyd@stupidchicken.com>
21558
21559 * image.el (image-animate-max-time): Allow nil and t values.
21560 Default to nil.
21561 (create-animated-image): Doc fix.
21562 (image-animate-start): Remove second arg; just use
21563 image-animate-max-time.
21564 (image-animate-timeout): Doc fix. Args changed.
21565
21566 * image-mode.el (image-toggle-display-image): Ensure that the
21567 image spec passed to the animate timer is the same object as in
21568 the buffer's display property (Bug#6981).
21569 (image-transform-properties): Doc fix.
21570
21571 * image.el (image-animate-max-time): Default to nil.
21572
215732011-05-29 Martin Rudalics <rudalics@gmx.at>
21574
21575 * menu-bar.el (kill-this-buffer-enabled-p): Avoid looping over
21576 entire buffer list (Bug#8184).
21577
215782011-05-29 Chong Yidong <cyd@stupidchicken.com>
21579
21580 * image.el (imagemagick-types-inhibit)
21581 (imagemagick-register-types): Doc fix.
21582
215832011-05-29 Deniz Dogan <deniz@dogan.se>
21584
21585 * net/rcirc.el (rcirc): Use the user's stored encryption method by
21586 default.
21587
215882011-05-29 Chong Yidong <cyd@stupidchicken.com>
21589
21590 * select.el: Don't perform clipboard-manager saving in hooks;
21591 leave the hooks empty.
21592
215932011-05-28 Leo Liu <sdl.web@gmail.com>
21594
21595 * replace.el (occur-menu-map, occur-edit-mode-map): New vars.
21596 (occur-mode-map): Bind occur-edit-mode. Use occur-menu-map.
21597 (occur-edit-mode): New major mode (Bug#8463).
21598 (occur-after-change-function): New function.
21599 (occur-engine): Give Occur tags a read-only property.
21600
216012011-05-28 Kevin Ryde <user42@zip.com.au>
21602
21603 * subr.el (def-edebug-spec): Doc fix (Bug#8430).
21604
216052011-05-28 Chong Yidong <cyd@stupidchicken.com>
21606
21607 * bindings.el (help-echo): Make the initial non-indicator dash
21608 empty on graphical terminals (Bug#7295).
21609
21610 * files.el (auto-mode-alist): Move config rule after the
21611 in-stripping one (Bug#8547).
21612
21613 * newcomment.el (comment-end-skip): Doc fix (Bug#8659).
21614
21615 * startup.el (normal-splash-screen): Remove gratuitous mode-line
21616 setting (Bug#8740).
21617
216182011-05-28 Alp Aker <aker@pitt.edu> (tiny change)
21619
21620 * buff-menu.el (Buffer-menu-revert-function, Buffer-menu-sort)
21621 (Buffer-menu-buffer+size): Use Buffer-menu-buffer-column
21622 (Bug#8539).
21623
216242011-05-28 Chong Yidong <cyd@stupidchicken.com>
21625
21626 * emacs-lisp/re-builder.el (re-builder): Improve doc (Bug#8286).
21627
216282011-05-28 Dima Kogan <dkogan@cds.caltech.edu> (tiny change)
21629
21630 * progmodes/hideshow.el (hs-looking-at-block-start-p): New fun.
21631 (hs-hide-block-at-point, hs-find-block-beginning)
21632 (hs-already-hidden-p, hs-hide-block, hs-show-block): Use it
21633 (Bug#8279).
21634
216352011-05-28 Glenn Morris <rgm@gnu.org>
21636
21637 * startup.el (fancy-about-screen): Use standard mode line. (Bug#8740)
21638
216392011-05-28 Chong Yidong <cyd@stupidchicken.com>
21640
21641 * help-fns.el (describe-function-1): If the function is a derived
21642 major mode, print the parent mode.
21643
21644 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode, java-mode)
21645 (idl-mode, pike-mode, awk-mode): Inherit from prog-mode.
21646
216472011-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
21648
21649 * minibuffer.el (completion--capf-wrapper): Check applicability before
21650 returning non-nil for non-exclusive completion data.
21651 * progmodes/etags.el (tags-completion-at-point-function):
21652 * info-look.el (info-lookup-completions-at-point): Mark as
21653 non-exclusive.
21654 (info-complete): Adjust accordingly.
21655
21656 * info-look.el: Convert to lexical-binding and completion-at-point.
21657 (info-lookup-completions-at-point): New function.
21658 (info-complete): Use it and completion-in-region.
21659
216602011-05-28 Drew Adams <drew.adams@oracle.com>
21661
21662 * isearch.el: Let M-e start with point at the first mismatched char.
21663 (isearch-fail-pos): New function.
21664 (isearch-edit-string): Use it.
21665
216662011-05-28 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
21667
21668 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
21669
216702011-05-27 Toby Cubitt <toby-predictive@dr-qubit.org>
21671
21672 * emacs-lisp/avl-tree.el: New avl-tree-stack datatype. Add new
21673 traversal functions for avl-trees.
21674 (avl-tree--stack): New struct.
21675 (avl-tree-stack-p, avl-tree--stack-repopulate): New funs.
21676 (avl-tree-enter): Add optional `updatefun' arg.
21677 (avl-tree--do-enter): Add optional `updatefun' arg.
21678 Change return value.
21679 (avl-tree-delete): Add optional `test' and `nilflag' args.
21680 (avl-tree--do-delete): Add `test' and `nilflag' args.
21681 Change return value.
21682 (avl-tree-member): Add optional `nilflag'
21683 (avl-tree-member-p): New function.
21684 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar): New functions.
21685 (avl-tree-stack, avl-tree-stack-pop, avl-tree-stack-first)
21686 (avl-tree-stack-empty-p): New functions.
21687
21688 * emacs-lisp/avl-tree.el (avl-tree--del-balance): Rename from
21689 avl-tree--del-balance1 and make it work both ways.
21690 (avl-tree--del-balance2): Remove.
21691 (avl-tree--enter-balance): Rename from avl-tree--enter-balance1 and
21692 make it work both ways.
21693 (avl-tree--enter-balance2): Remove.
21694 (avl-tree--switch-dir, avl-tree--dir-to-sign, avl-tree--sign-to-dir):
21695 New macros.
21696 (avl-tree--mapc, avl-tree-map): Add direction argument.
21697
216982011-05-27 David Michael <fedora.dm0@gmail.com> (tiny change)
21699
21700 * files.el (interpreter-mode-alist): Add rbash (bug#8745).
21701
217022011-05-27 Chong Yidong <cyd@stupidchicken.com>
21703
21704 * select.el: Support clipboard managers with built-in function
21705 x-clipboard-manager-save, via delete-frame-functions and
21706 kill-emacs-hook.
21707 (xselect-convert-to-targets): Add MULTIPLE target to list.
21708 (xselect-convert-to-save-targets): New function.
21709
217102011-05-27 Kenichi Handa <handa@m17n.org>
21711
21712 * mail/sendmail.el (mail-encode-header): Avoid double encoding by
21713 let-binding rfc2047-encode-encoded-words to nil.
21714
217152011-05-27 Glenn Morris <rgm@gnu.org>
21716
21717 * mail/emacsbug.el: Don't require url-util.
21718
21719 * shell.el (shell-directory-tracker): Case matters. (Bug#8735)
21720
21721 * files.el (set-auto-mode):
21722 Also respect mode: entries at the end of the file. (Bug#8586)
21723
217242011-05-26 Glenn Morris <rgm@gnu.org>
21725
21726 * files.el (hack-local-variables-prop-line, hack-local-variables):
21727 Downcase mode names, as seems to be traditional.
21728 (hack-local-variables, hack-local-variables-apply): Doc fixes.
21729
21730 * mail/emacsbug.el (report-emacs-bug): Mention checking From address.
21731 (report-emacs-bug-hook): Try to validate the From address. (Bug#8038)
21732
217332011-05-25 Julien Danjou <julien@danjou.info>
21734
21735 * textmodes/rst.el (rst-define-level-faces): Do not define face
21736 symbol if it is already defined.
21737
217382011-05-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
21739
21740 * play/5x5.el (5x5-new-game, 5x5-randomize):
21741 Reset 5x5-solver-output to nil when a new grid is cast.
21742 (5x5-log-init, 5x5-log): Use defsubst instead of defmacro to shunt
21743 these debugging traces, as defmacro breaks the compiled code.
21744
217452011-05-24 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
21746
21747 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
21748
217492011-05-24 Leo Liu <sdl.web@gmail.com>
21750
21751 * vc/vc-bzr.el (vc-bzr-sha1-program): Rename from sha1-program.
21752 (vc-bzr-sha1): Adapt.
21753
21754 * sha1.el: Remove. Function `sha1' is now builtin.
21755
21756 * bindings.el: Provide sha1 feature.
21757
217582011-05-24 Kenichi Handa <handa@m17n.org>
21759
21760 * mail/sendmail.el: Require `rfc2047'.
21761 (mail-insert-from-field): Do not perform RFC2047 encoding.
21762 (mail-encode-header): New function.
21763 (sendmail-send-it): Set buffer-file-coding-system of the work
21764 buffer to the return value of select-message-coding-system.
21765 Call mail-encode-header.
21766
21767 * mail/smtpmail.el (smtpmail-send-it): Call mail-encode-header.
21768
217692011-05-24 Sean Neakums <sneakums@zork.net> (tiny change)
21770
21771 * mail/supercite.el (sc-default-cite-frame):
21772 Handle sc-nested-citation-p when sc-cite-blank-lines-p is non-nil.
21773
217742011-05-24 Glenn Morris <rgm@gnu.org>
21775
21776 * progmodes/python.el (brm-menu): Declare.
21777
21778 * emulation/viper.el (viper-set-hooks): Declare.
21779
21780 * play/5x5.el (5x5-log-init, 5x5-log): Evaluate when compiling.
21781 (5x5-log-init, 5x5-log, 5x5-solver): Doc fixes.
21782 (math-map-vec, math-sub, math-mul, math-make-intv, math-reduce-vec)
21783 (math-format-number, math-pow, calcFunc-arrange, calcFunc-cvec)
21784 (calcFunc-diag, calcFunc-trn, calcFunc-inv, calcFunc-mrow)
21785 (calcFunc-mcol, calcFunc-vconcat, calcFunc-index): Declare.
21786
217872011-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
21788
21789 Add an :exit-function for completion-at-point.
21790
21791 * minibuffer.el (completion--done): New fun.
21792 (completion--do-completion): Use it. New arg `expect-exact'.
21793 (minibuffer-complete, minibuffer-complete-word): Don't output message,
21794 since completion--do-completion does it for us now.
21795 (minibuffer-force-complete): Use completion--done and
21796 completion--replace. Handle sole-completion case with more care.
21797 (minibuffer-complete-and-exit): Use new `expect-exact' arg.
21798 (completion-extra-properties): New var.
21799 (completion-annotate-function): Make obsolete.
21800 (minibuffer-completion-help): Adjust accordingly.
21801 Use completion-list-insert-choice-function.
21802 (completion-at-point, completion-help-at-point):
21803 Bind completion-extra-properties.
21804 (completion-pcm-word-delimiters): Add | (for uniquify, for example).
21805 * simple.el (completion-list-insert-choice-function): New var.
21806 (completion-setup-function): Preserve it.
21807 (choose-completion): Pay attention to it, shuffle the code a bit.
21808 (choose-completion-string): New arg `insert-function'.
21809
21810 * textmodes/bibtex.el: Convert to lexical binding.
21811 (bibtex-mode-map): Use completion-at-point.
21812 (bibtex-mode): Use define-derived-mode&completion-at-point-functions.
21813 (bibtex-completion-at-point-function): New fun, from bibtex-complete.
21814 (bibtex-complete): Define as obsolete alias.
21815 (bibtex-complete-internal): Remove.
21816 (bibtex-format-entry): Remove unused sub-group in regexp.
21817 * shell.el (shell--command-completion-data)
21818 (shell-environment-variable-completion):
21819 * pcomplete.el (pcomplete-completions-at-point):
21820 * comint.el (comint--complete-file-name-data): Use :exit-function
21821 instead of completion-table-with-terminator so it also works for
21822 choose-completion.
21823
218242011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
21825
21826 * <lots-of-files>.el: Don't quote lambda expressions with `quote'.
21827
21828 * vc/smerge-mode.el (smerge-refine-subst): Don't deactivate the mark
21829 (bug#8710).
21830
21831 * emacs-lisp/lisp.el (up-list): Fix forward movement (bug#8708).
21832
218332011-05-23 Ken Manheimer <ken.manheimer@gmail.com>
21834
21835 * allout.el (allout-inhibit-auto-fill-on-headline): Create new
21836 customization variable and implement: If non-nil, auto-fill will
21837 be inhibited while on topic's header line.
21838
218392011-05-23 Vincent Belaïche <vincentb1@users.sourceforge.net>
21840
21841 * play/5x5.el: I/ Add an arithmetic solver to suggest positions to
21842 click on. II/ Make 5x5 multisession. III/ Ensure that random grids
21843 always have a solution in grid size = 5 cases.
21844 (5x5-mode-map): Add keybinding to function `5x5-solve-suggest'.
21845 (5x5-solver-output, 5x5-log-buffer): New vars.
21846 (5x5-grid, 5x5-x-pos, 5x5-y-pos, 5x5-moves, 5x5-cracking):
21847 Make these variables buffer local to achieve 5x5 multi-session-ness.
21848 (5x5): Set 5x5-grid-size only if SIZE is non-negative.
21849 (5x5-grid-to-vec, 5x5-vec-to-grid, 5x5-log-init, 5x5-log, 5x5-solver)
21850 (5x5-solve-suggest): New funs.
21851 (5x5-randomize): Use 5x5-make-move instead of 5x5-flip-cell to
21852 randomize a grid so that we ensure that there is always a solution.
21853 (5x5-make-random-grid): Allow other movement than flipping.
21854
218552011-05-23 Kevin Ryde <user42@zip.com.au>
21856
21857 * emacs-lisp/advice.el (ad-read-advised-function):
21858 Use `function-called-at-point' as the default, if it has
21859 advice and passes PREDICATE.
21860
218612011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
21862
21863 * emacs-lisp/bytecomp.el (byte-compile-function-form): Only call
21864 byte-compile-lambda if it's actually a lambda.
21865
21866 * emacs-lisp/eieio.el (eieio-defgeneric-form-primary-only-one):
21867 Fix function quoting. Use backquote better.
21868
218692011-05-22 Yuanle Song <sylecn@gmail.com>
21870
21871 * nxml/rng-xsd.el (rng-xsd-check-pattern): Use case-sensitive
21872 matching (Bug#8516).
21873
218742011-05-22 Jari Aalto <jari.aalto@cante.net>
21875
21876 * vc/vc-dir.el (vc-default-dir-printer): Give edited tag a
21877 different face (Bug#8178).
21878
218792011-05-22 Chong Yidong <cyd@stupidchicken.com>
21880
21881 * vc/diff-mode.el (diff-changed): Don't use terminal specs for
21882 defface (Bug#8144).
21883
218842011-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
21885
21886 * emacs-lisp/macroexp.el (macroexpand-all-1): Convert ' to #' for
21887 funcall as well (bug#8712). Warn when performing those conversions.
21888 * emacs-lisp/bytecomp.el (byte-compile-form): Fix error report.
21889
21890 * progmodes/grep.el (grep-mode): Fix it for good (bug#8684)!
21891
218922011-05-22 Glenn Morris <rgm@gnu.org>
21893
21894 * files.el (hack-local-variables-prop-line): Small simplifications.
21895 (hack-local-variables, hack-local-variables-prop-line):
21896 If MODE-ONLY, return the mode, rather than just `t'.
21897
218982011-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
21899
21900 * progmodes/grep.el (grep-mode): Fix last change (bug#8684).
21901
219022011-05-21 Glenn Morris <rgm@gnu.org>
21903
21904 * files.el (hack-local-variables-prop-line, hack-local-variables):
21905 If only interested in the mode, don't bother doing the other stuff.
21906
21907 * image-mode.el (image-after-revert-hook):
21908 Redraw all frames on which the image is visible. (Bug#8567)
21909
21910 * dired-aux.el (dired-touch-initial): Just use current-time. (Bug#6887)
21911
21912 * wid-edit.el (widget-checklist-match-inline):
21913 Fix 2011-04-19 change. (Bug#8649)
21914
219152011-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
21916
21917 * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
21918 Also allow singlespace after single-letter capitals followed by a dot.
21919
21920 * nxml/nxml-mode.el (nxml-electric-slash): Reindent when completion is
21921 enabled. Suggested by James Ahlborn <jahlborn@gmail.com> (bug#8704).
21922
219232011-05-20 Nix <nix@esperi.org.uk>
21924
21925 * files.el (basic-save-buffer-2):
21926 Fix handling of break-hardlink-on-save with non-existent files.
21927
219282011-05-19 Deniz Dogan <deniz@dogan.se>
21929
21930 * net/rcirc.el (rcirc-mode): Initialize rcirc-urls to nil.
21931 (rcirc-markup-urls): Check if rcirc-url-regexp is nil.
21932
219332011-05-19 Glenn Morris <rgm@gnu.org>
21934
21935 * progmodes/f90.el (f90-type-def-re):
21936 Handle "type, bind(c)". (Bug#8691)
21937
21938 * emacs-lisp/autoload.el (batch-update-autoloads):
21939 Set autoload-excludes by parsing loadup.el rather than Makefiles.
21940
219412011-05-18 Michael Albinus <michael.albinus@gmx.de>
21942
21943 * net/tramp.el (tramp-process-actions): Set "first-password-request"
21944 property for the correct connection in case of multihops.
21945
219462011-05-18 Glenn Morris <rgm@gnu.org>
21947
21948 * emacs-lisp/authors.el (authors-fixed-entries): Remove fakemail.c.
21949 * mail/sendmail.el (sendmail-program): Fall back to just "sendmail".
21950
21951 Rationalize calendar handling of day and month abbrev-arrays.
21952 * calendar/calendar.el (calendar-customized-p): New function.
21953 (calendar-abbrev-construct, calendar-make-alist): Change what it does.
21954 (calendar-day-name-array, calendar-month-name-array): Doc fix.
21955 Add :set function.
21956 (calendar-abbrev-length, calendar-day-abbrev-array)
21957 (calendar-month-abbrev-array): Make defcustoms, with appropriate :set.
21958 (calendar-day-abbrev-array, calendar-month-abbrev-array):
21959 Elements may no longer be nil.
21960 (calendar-day-name, calendar-month-name):
21961 Update for changed nature of abbrev arrays.
21962 * calendar/diary-lib.el (diary-name-pattern):
21963 Update for changed nature of abbrev arrays.
21964 (diary-mark-entries-1): Update calendar-make-alist calls.
21965 (diary-font-lock-date-forms): Doc fix for changed abbrev arrays.
21966 * calendar/cal-html.el (cal-html-day-abbrev-array):
21967 Simply inherit from calendar-day-abbrev-array.
21968
219692011-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
21970
21971 * progmodes/grep.el (grep-mode): Disable default
21972 compilation-directory-matcher setting (bug#8684).
21973
219742011-05-17 Michael Albinus <michael.albinus@gmx.de>
21975
21976 * net/tramp.el (tramp-handle-insert-file-contents): Use "dd"
21977 instead of "head" and "tail". There were problems with SunOS 5.9,
21978 and it performs better.
21979
219802011-05-17 Glenn Morris <rgm@gnu.org>
21981
21982 * mail/mail-utils.el (mail-dont-reply-to): Silence compiler.
21983
21984 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
21985 Replace obsolete function.
21986
21987 * shell.el (pcomplete-parse-arguments-function): Declare.
21988
21989 * calendar/appt.el (appt-message-warning-time, appt-display-mode-line)
21990 (appt-display-diary, appt-display-interval, appt-prev-comp-time)
21991 (appt-check): Doc fixes.
21992 (appt-disp-window-function, appt-delete-window-function):
21993 Remove needless special case in custom :type.
21994 (appt-display-count): Default to 0, not nil.
21995 (appt-check): Reset appt-display-count to 0, not nil.
21996
219972011-05-17 Juanma Barranquero <lekktu@gmail.com>
21998
21999 * progmodes/python.el (python-font-lock-keywords):
22000 Add the Python 3.X keyword "nonlocal" (bug#8639).
22001
220022011-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
22003
22004 * emacs-lisp/eieio.el (defmethod): Fix quoting of code (bug#8677).
22005
220062011-05-16 Kevin Ryde <user42@zip.com.au>
22007
22008 * info-look.el (makefile-automake-mode): New setups, looking in
22009 automake manual, then makefile-mode.
22010 (makefile-mode): Remove automake manual, have it just in
22011 makefile-automake-mode since there's various things different or
22012 not relevant to plain make.
22013 (makefile-mode): Remove "other-modes" non-existent automake-mode,
22014 believe a hypothetical automake-mode would go to makefile-mode,
22015 not the other way around.
22016
220172011-05-15 Chong Yidong <cyd@stupidchicken.com>
22018
22019 * vc/diff-mode.el (diff-fixup-modifs): Locate correct position for
22020 hunk-end tags (Bug#8672).
22021
22022 * vc/vc-annotate.el (vc-annotate-mode-map): Bind = to
22023 vc-annotate-show-diff-revision-at-line (Bug#8671).
22024
220252011-05-14 Glenn Morris <rgm@gnu.org>
22026
22027 * vc/add-log.el (add-change-log-entry): Don't start adding a new entry
22028 in the middle of an existing one with multiple authors. (Bug#8645)
22029 (change-log-font-lock-keywords): Also handle multiple author lines
22030 with leading tabs. (Bug#8644)
22031
22032 * calendar/appt.el (appt-check): Rename some local variables.
22033 Some simplification/reordering.
22034
22035 * mail/feedmail.el (feedmail-confirm-outgoing-timeout)
22036 (feedmail-sendmail-f-doesnt-sell-me-out)
22037 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
22038 (feedmail-debug-sit-for, feedmail-queue-express-hook)
22039 (feedmail-queue-runner-message-sender): Set :version.
22040 (bbdb-search, bbdb-records, smtp-via-smtp, smtp-server)
22041 (bbdb-dwim-net-address, vm-mail): Declare.
22042 (feedmail-binmail-gnulinuxish-template):
22043 Rename from feedmail-binmail-linuxish-template.
22044 (feedmail-buffer-to-smtp, feedmail-vm-mail-mode):
22045 Use insert-buffer-substring.
22046
220472011-05-14 Bill Carpenter <bill@carpenter.org>
22048
22049 * mail/feedmail.el (feedmail-patch-level): Increase.
22050 (feedmail-debug): New custom group.
22051 (feedmail-confirm-outgoing-timeout)
22052 (feedmail-sendmail-f-doesnt-sell-me-out)
22053 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
22054 (feedmail-debug-sit-for, feedmail-queue-express-hook): New options.
22055 (feedmail-sender-line, feedmail-from-line)
22056 (feedmail-fiddle-headers-upwardly, feedmail-enable-spray)
22057 (feedmail-spray-this-address)
22058 (feedmail-spray-address-fiddle-plex-list)
22059 (feedmail-queue-use-send-time-for-date)
22060 (feedmail-queue-use-send-time-for-message-id)
22061 (feedmail-last-chance-hook, feedmail-queue-runner-mode-setter)
22062 (feedmail-buffer-eating-function):
22063 Doc fixes.
22064 (feedmail-spray-via-bbdb, feedmail-buffer-to-smtp)
22065 (feedmail-vm-mail-mode, feedmail-message-action-scroll-up)
22066 (feedmail-message-action-scroll-down): New functions.
22067 (feedmail-queue-directory, feedmail-queue-draft-directory):
22068 Use expand-file-name.
22069 (feedmail-prompt-before-queue-standard-alist): Add scroll entries.
22070 Remove C-v help entry.
22071 (feedmail-queue-buffer-file-name): New variable.
22072 (feedmail-mail-send-hook-splitter, feedmail-buffer-to-binmail)
22073 (feedmail-buffer-to-smtpmail, feedmail-queue-express-to-draft)
22074 (feedmail-message-action-send-strong, feedmail-message-action-edit)
22075 (feedmail-message-action-draft, feedmail-message-action-draft-strong)
22076 (feedmail-message-action-queue, feedmail-message-action-queue-strong)
22077 (feedmail-message-action-toggle-spray)
22078 (feedmail-run-the-queue-no-prompts)
22079 (feedmail-run-the-queue-global-prompt, feedmail-queue-reminder)
22080 (feedmail-look-at-queue-directory, feedmail-queue-subject-slug-maker)
22081 (feedmail-create-queue-filename, feedmail-rfc822-time-zone):
22082 (feedmail-fiddle-header, feedmail-give-it-to-buffer-eater)
22083 (feedmail-envelope-deducer, feedmail-fiddle-from)
22084 (feedmail-fiddle-sender, feedmail-default-date-generator)
22085 (feedmail-fiddle-date, feedmail-fiddle-message-id)
22086 (feedmail-fiddle-spray-address)
22087 (feedmail-fiddle-list-of-spray-fiddle-plexes)
22088 (feedmail-fiddle-list-of-fiddle-plexes)
22089 (feedmail-fill-to-cc-function, feedmail-fill-this-one)
22090 (feedmail-one-last-look, feedmail-fqm-p): Add debug calls.
22091 (feedmail-queue-runner-message-sender, feedmail-binmail-template):
22092 Change default. Doc fix.
22093 (feedmail-queue-runner-cleaner-upper): Use feedmail-say-chatter.
22094 (feedmail-binmail-linuxish-template): New constant.
22095 (feedmail-buffer-to-sendmail): Doc fix. Add debug call.
22096 Respect feedmail-sendmail-f-doesnt-sell-me-out.
22097 (feedmail-send-it): Add debug call.
22098 Use feedmail-queue-buffer-file-name, and
22099 feedmail-send-it-immediately-wrapper.
22100 (feedmail-message-action-send): Add debug call.
22101 Use feedmail-send-it-immediately-wrapper.
22102 (feedmail-queue-express-to-queue): Add debug call.
22103 Run feedmail-queue-express-hook.
22104 (feedmail-message-action-help): Add debug call. Use feedmail-p-h-b-n.
22105 (feedmail-message-action-help-blat):
22106 Rename from feedmail-queue-send-edit-prompt-help-first.
22107 (feedmail-run-the-queue): Add debug call. Set buffer-file-type.
22108 Check line-endings. Handle errors better.
22109 (feedmail-queue-reminder-brief, feedmail-queue-reminder-medium):
22110 Doc fix. Add debug call.
22111 (feedmail-queue-send-edit-prompt): Doc fix. Add debug call.
22112 Use feedmail-queue-send-edit-prompt-inner.
22113 (feedmail-queue-runner-prompt, feedmail-scroll-buffer): New functions.
22114 (feedmail-queue-send-edit-prompt-inner): New function, extracted
22115 from feedmail-queue-send-edit-prompt.
22116 (feedmail-queue-send-edit-prompt-help)
22117 (feedmail-queue-send-edit-prompt-help-later): Remove functions.
22118 (feedmail-tidy-up-slug): Add debug call.
22119 Respect feedmail-queue-slug-suspect-regexp.
22120 (feedmail-queue-subject-slug-maker): Use buffer-substring-no-properties.
22121 (feedmail-dump-message-to-queue): Add debug call.
22122 Expand queue-directory.
22123 (feedmail-dump-message-to-queue): Change message slightly.
22124 Use feedmail-say-chatter.
22125 (feedmail-rfc822-date): Add debug call. Bind system-time-locale.
22126 (feedmail-send-it-immediately-wrapper): New function.
22127 (feedmail-send-it-immediately): Add debug calls. Use let not let*.
22128 Insert empty string rather than newline. Handle full-frame case.
22129 Use catch/throw. Use feedmail-say-chatter.
22130 (feedmail-fiddle-from): Try mail-host-address.
22131 (feedmail-default-message-id-generator): Doc fix.
22132 Bind system-time-locale. Handle missing end.
22133 (feedmail-fiddle-x-mailer): Add debug call.
22134 Handle feedmail-x-mailer-line being nil.
22135 (feedmail-accume-n-nuke-header, feedmail-deduce-address-list):
22136 Add debug call. Use buffer-substring-no-properties.
22137 (feedmail-say-debug, feedmail-say-chatter): New functions.
22138 (feedmail-find-eoh): Give an explicit error.
22139
221402011-05-13 Ulf Jasper <ulf.jasper@web.de>
22141
22142 * net/newst-treeview.el (newsticker-treeview-face): Change default
22143 family from helvetica to sans.
22144 (newsticker-treeview-tool-bar-map): Move tool-bar icons to
22145 etc/images/newsticker.
22146
22147 * net/newst-reader.el (newsticker-feed-face): Change default
22148 family from helvetica to sans.
22149
22150 * net/newst-plainview.el (newsticker-new-item-face)
22151 (newsticker-old-item-face, newsticker-immortal-item-face)
22152 (newsticker-obsolete-item-face, newsticker-date-face)
22153 (newsticker-statistics-face): Change default family from
22154 helvetica to sans.
22155 (newsticker--plainview-tool-bar-map): Move tool-bar icons to
22156 etc/images/newsticker.
22157
22158 * net/newst-backend.el (newsticker--do-run-auto-mark-filter)
22159 (newsticker--process-auto-mark-filter-match): Tell user about
22160 auto-marking.
22161
221622011-05-13 Didier Verna <didier@xemacs.org>
22163
22164 Common Lisp indentation improvements on defmethod and lambda-lists.
22165 * emacs-lisp/cl-indent.el: Advertise the changes and remove obsolete
22166 TODO entries.
22167 (lisp-lambda-list-keyword-parameter-indentation)
22168 (lisp-lambda-list-keyword-parameter-alignment)
22169 (lisp-lambda-list-keyword-alignment): New customizable user options.
22170 (lisp-indent-defun-method): Improve docstring.
22171 (extended-loop-p): Fix comment.
22172 (lisp-indent-lambda-list-keywords-regexp): New variable.
22173 (lisp-indent-lambda-list): New function.
22174 (lisp-indent-259): Use it.
22175 (lisp-indent-defmethod): Support for more than one
22176 method qualifier and properly indent methods lambda-lists.
22177 (defgeneric): Provide a missing common-lisp-indent-function property.
22178
221792011-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
22180
22181 * thingatpt.el (bounds-of-thing-at-point): Return nil rather than
22182 bounds for the empty string (bug#8667).
22183
221842011-05-13 Glenn Morris <rgm@gnu.org>
22185
22186 * mail/feedmail.el (feedmail-buffer-to-sendmail): Require sendmail.
22187
22188 * mail/sendmail.el (sendmail-program): Try executable-find first.
22189 (sendmail-send-it): `sendmail-program' cannot be unbound.
22190
22191 * calendar/appt.el (appt-make-list): Simplify.
22192 (appt-time-msg-list): Doc fix.
22193 (appt-check): Change mode-line message at the time of the appointment.
22194
221952011-05-12 Andreas Schwab <schwab@linux-m68k.org>
22196
22197 * progmodes/ld-script.el (ld-script-keywords)
22198 (ld-script-builtins): Update keywords list.
22199
222002011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
22201
22202 * progmodes/grep.el (grep-filter): Don't trip on partial lines.
22203
22204 * shell.el (shell-completion-vars): New function.
22205 (shell-mode):
22206 * simple.el (read-shell-command): Use it.
22207 (blink-matching-open): No need for " [...]" in minibuffer-message.
22208
222092011-05-12 Glenn Morris <rgm@gnu.org>
22210
22211 * calendar/appt.el (appt-now-displayed): Remove pointless variable.
22212 (appt-check): Simplify.
22213
222142011-05-12 Eli Zaretskii <eliz@gnu.org>
22215
22216 * vc/smerge-mode.el (smerge-resolve): Use null-device rather than a
22217 literal "/dev/null".
22218
222192011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
22220
22221 * emacs-lisp/lisp.el (lisp-complete-symbol, lisp-completion-at-point):
22222 Fix typo.
22223
222242011-05-12 Ralph Schleicher <rs@ralph-schleicher.de>
22225
22226 * progmodes/which-func.el (which-function):
22227 Use add-log-current-defun instead of add-log-current-defun-function,
22228 which might not be defined (Bug#8260).
22229
222302011-05-12 Glenn Morris <rgm@gnu.org>
22231
22232 * emacs-lisp/bytecomp.el (byte-compile-file-form-defmumble):
22233 Let byte-compile-initial-macro-environment always take precedence.
22234
222352011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
22236
22237 * net/rcirc.el: Add support for SSL/TLS connections.
22238 (rcirc-server-alist): New field `encryption'.
22239 (rcirc): Check `encryption' settings.
22240 (rcirc-connect): New arg `encryption'. Use open-network-stream.
22241 Merge make-local-variable into `set'.
22242 (rcirc--connection-open-p): New function.
22243 (rcirc-send-string, rcirc-clean-up-buffer): Use it to handle case where
22244 the process is not a network process (e.g. running gnutls-cli).
22245 (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
22246 Make rcirc-(en|de)code-coding-system local here.
22247 (rcirc-mode): Merge make-local-variable into `set'.
22248 (rcirc-parent-buffer): Make permanent buffer-local.
22249 (rcirc-multiline-minor-mode): Don't do it here.
22250 (rcirc-switch-to-server-buffer): Don't switch to a random buffer if
22251 there's no server buffer.
22252
222532011-05-11 Glenn Morris <rgm@gnu.org>
22254
22255 * newcomment.el (comment-kill): Prefix "unused" local.
22256
22257 * term/w32console.el (get-screen-color): Declare.
22258
22259 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
22260 Handle symbol elements of byte-compile-initial-macro-environment.
22261
222622011-05-10 Leo Liu <sdl.web@gmail.com>
22263
22264 * bookmark.el (bookmark-bmenu-mode-map):
22265 Bind bookmark-bmenu-search to `/'.
22266
22267 * mail/footnote.el: Convert to utf-8 encoding.
22268 (footnote-unicode-string, footnote-unicode-regexp): New variable.
22269 (Footnote-unicode): New function.
22270 (footnote-style-alist): Add unicode style to the list.
22271 (footnote-style): Doc fix.
22272
222732011-05-10 Jim Meyering <meyering@redhat.com>
22274
22275 Fix doubled-word typos.
22276 * international/quail.el (quail-insert-kbd-layout): and and -> and
22277 * kermit.el: and and -> and
22278 * net/ldap.el (ldap-search-internal): to to -> to
22279 * progmodes/vhdl-mode.el (vhdl-offsets-alist): Likewise.
22280 * progmodes/js.el (js-mode): and and -> and
22281 * textmodes/artist.el (artist-move-to-xy): at at -> at
22282 (artist-draw-region-trim-line-endings): if if -> if
22283 And Safetyc -> Safety.
22284 * textmodes/reftex-dcr.el (reftex-view-crossref): at at -> at a
22285
222862011-05-10 Glenn Morris <rgm@gnu.org>
22287 Stefan Monnier <monnier@iro.umontreal.ca>
22288
22289 * files.el (hack-one-local-variable-eval-safep):
22290 Consider "eval: (foo-mode)" to be safe. (Bug#8613)
22291
222922011-05-10 Glenn Morris <rgm@gnu.org>
22293
22294 * calendar/diary-lib.el (diary-list-entries-hook)
22295 (diary-mark-entries-hook, diary-nongregorian-listing-hook)
22296 (diary-nongregorian-marking-hook, diary-list-entries)
22297 (diary-include-other-diary-files, diary-mark-entries)
22298 (diary-mark-included-diary-files): Doc fixes.
22299
223002011-05-09 Juanma Barranquero <lekktu@gmail.com>
22301
22302 * misc.el: Require tabulated-list.el during compilation.
22303
223042011-05-09 Chong Yidong <cyd@stupidchicken.com>
22305
22306 * progmodes/compile.el (compilation-start):
22307 Run compilation-filter-hook for the async case too.
22308 (compilation-filter-hook): Doc fix.
22309
223102011-05-09 Deniz Dogan <deniz@dogan.se>
22311
22312 * wdired.el: Remove outdated installation comment. Fix usage
22313 comment.
22314
223152011-05-09 Juanma Barranquero <lekktu@gmail.com>
22316
22317 * misc.el: Implement new command `list-dynamic-libraries'.
22318 (list-dynamic-libraries--loaded-only-p): New variable.
22319 (list-dynamic-libraries--refresh): New function.
22320 (list-dynamic-libraries): New command.
22321
223222011-05-09 Chong Yidong <cyd@stupidchicken.com>
22323
22324 * progmodes/compile.el (compilation-error-regexp-alist-alist):
22325 Fix the ant regexp to handle end-line and end-column info from jikes.
22326 Re-introduce maven regexp. Give the ruby-Test::Unit regexp a
22327 higher priority to avoid clobbering by gnu.
22328
223292011-05-08 Chong Yidong <cyd@stupidchicken.com>
22330
22331 * cus-face.el (custom-declare-face): Call custom-theme-recalc-face
22332 if the face has existing theme settings (Bug#8454).
22333
223342011-05-08 Ralph Schleicher <rs@ralph-schleicher.de>
22335
22336 * progmodes/perl-mode.el (perl-imenu-generic-expression):
22337 Only match variables declared via `my' or `our' (Bug#8261).
22338
22339 * net/browse-url.el (browse-url-of-dired-file): Allow browsing of
22340 special file names `.' and `..' (Bug#8259).
22341
223422011-05-08 Chong Yidong <cyd@stupidchicken.com>
22343
22344 * progmodes/grep.el (grep-mode-font-lock-keywords):
22345 Remove buffer-changing entries.
22346 (grep-filter): New function.
22347 (grep-mode): Add it to compilation-filter-hook.
22348
22349 * progmodes/compile.el (compilation-filter-hook)
22350 (compilation-filter-start): New defvars.
22351 (compilation-filter): Call compilation-filter-hook prior to
22352 updating the process mark.
22353
223542011-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
22355
22356 * emacs-lisp/eieio.el (defmethod): Fix typo in last change.
22357
223582011-05-07 Eli Zaretskii <eliz@gnu.org>
22359
22360 * mail/sendmail.el (send-mail-function): On MS-Windows, default to
22361 mailclient-send-it even if window-system is nil. (Bug#8595)
22362
22363 * term/w32console.el (terminal-init-w32console):
22364 Call get-screen-color and use its output to set the frame
22365 background-mode. (Bug#8597)
22366
223672011-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
22368
22369 Make bytecomp.el understand that defmethod defines funs (bug#8631).
22370 * emacs-lisp/eieio.el (eieio--defalias, eieio--defgeneric-init-form):
22371 New functions.
22372 (defgeneric, eieio--defmethod): Use them.
22373 (eieio-defgeneric): Remove.
22374 (defmethod): Call defgeneric in a way visible to the byte-compiler.
22375
223762011-05-07 Glenn Morris <rgm@gnu.org>
22377
22378 * calendar/timeclock.el (timeclock-log-data): Remove unused local.
22379 Use let rather than let*.
22380 (timeclock-find-discrep): Remove unused local.
22381
22382 * calendar/diary-lib.el (diary-comment-start): Doc fix.
22383
22384 * calendar/appt.el (appt-time-msg-list): Doc fix.
22385
223862011-05-06 Noah Friedman <friedman@splode.com>
22387
22388 * apropos.el (apropos-print-doc): Only use
22389 emacs-lisp-docstring-fill-column when it is bound to an integer,
22390 per that variable's documentation.
22391
223922011-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
22393
22394 * lpr.el (print-region-1): Echo lpr-program's output, so error messages
22395 and warnings are not silently discarded (e.g. use -d instead of -P).
22396
223972011-05-06 Glenn Morris <rgm@gnu.org>
22398
22399 * calendar/appt.el (appt-message-warning-time): Doc fix.
22400 (appt-warning-time-regexp): New option.
22401 (appt-make-list): Respect appt-message-warning-time.
22402
22403 * calendar/diary-lib.el (diary-comment-start, diary-comment-end):
22404 New options.
22405 (diary-add-to-list): Strip comments from the displayed string.
22406 (diary-mode): Set comment-start and comment-end.
22407
22408 * vc/diff-mode.el (smerge-refine-subst): Declare.
22409 (diff-refine-hunk): Don't require smerge-mode when compiling.
22410
224112011-05-06 Juanma Barranquero <lekktu@gmail.com>
22412
22413 * simple.el (list-processes): Return nil as the docstring says.
22414
224152011-05-05 Michael Albinus <michael.albinus@gmx.de>
22416
22417 * net/ange-ftp.el (ange-ftp-binary-file-name-regexp): Set default
22418 to "".
22419 (ange-ftp-write-region, ange-ftp-insert-file-contents)
22420 (ange-ftp-copy-file-internal): Use only `ange-ftp-binary-file' for
22421 determining of binary transfer. (Bug#7383)
22422
224232011-05-05 Michael Albinus <michael.albinus@gmx.de>
22424
22425 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
22426 Fix port computation bug. (Bug#8618)
22427
224282011-05-05 Glenn Morris <rgm@gnu.org>
22429
22430 * allout-widgets.el (allout-widgets-mode-inhibit): Declare before use.
22431
22432 * simple.el (shell-dynamic-complete-functions)
22433 (comint-dynamic-complete-functions): Declare.
22434
22435 * net/network-stream.el (gnutls-negotiate):
22436 * simple.el (tabulated-list-print): Fix declarations.
22437
22438 * progmodes/gud.el (syntax-symbol, syntax-point):
22439 Remove unnecessary and incorrect declarations.
22440
22441 * emacs-lisp/check-declare.el (check-declare-scan):
22442 Handle byte-compile-initial-macro-environment in bytecomp.el.
22443
224442011-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
22445
22446 Fix earlier half-done eieio-defmethod change (bug#8338).
22447 * emacs-lisp/eieio.el (eieio--defmethod): Rename from eieio-defmethod.
22448 Streamline and change calling convention.
22449 (defmethod): Adjust accordingly and simplify.
22450 (eieio-defclass): Fix broken calls to eieio-defmethod and redirect to
22451 new eieio--defmethod.
22452 (slot-boundp): Minor CSE simplification.
22453
224542011-05-05 Milan Zamazal <pdm@zamazal.org>
22455
22456 * progmodes/glasses.el (glasses-separate-capital-groups): New option.
22457 (glasses-make-readable): Use glasses-separate-capital-groups.
22458
224592011-05-05 Juanma Barranquero <lekktu@gmail.com>
22460
22461 * emacs-lisp/warnings.el (warning-level-aliases): Reflow docstring.
22462 (warning-series): Doc fix.
22463 (display-warning): Don't try to create the buffer if we just found it.
22464
224652011-05-04 Chong Yidong <cyd@stupidchicken.com>
22466
22467 * emacs-lisp/autoload.el (generated-autoload-file): Set to nil.
22468 (autoload-find-generated-file): New function.
22469 (generate-file-autoloads): Bind generated-autoload-file to
22470 buffer-file-name.
22471 (update-file-autoloads, update-directory-autoloads):
22472 Use autoload-find-generated-file. If called interactively, prompt for
22473 output file (Bug#7989).
22474 (batch-update-autoloads): Doc fix.
22475
224762011-05-04 Juanma Barranquero <lekktu@gmail.com>
22477
22478 * term/w32-win.el (dynamic-library-alist): Add `gnutls'.
22479
224802011-05-04 Glenn Morris <rgm@gnu.org>
22481
22482 * calendar/diary-lib.el (diary-fancy-date-pattern): Turn it into a
22483 function, so it follows changes in calendar-date-style.
22484 (diary-fancy-date-matcher): New function.
22485 (diary-fancy-font-lock-keywords): Use diary-fancy-date-matcher.
22486 (diary-fancy-font-lock-fontify-region-function):
22487 Use diary-fancy-date-pattern as a function.
22488
22489 * calendar/diary-lib.el (diary-fancy-date-pattern): Do not use
22490 non-numbers for `year' etc pseudo-variables. (Bug#8583)
22491
224922011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
22493
22494 * net/gnutls.el (gnutls-negotiate): Use CL-style keyword arguments
22495 instead of positional arguments. Allow :keylist and :crlfiles
22496 arguments.
22497 (open-gnutls-stream): Call it.
22498
22499 * net/network-stream.el (network-stream-open-starttls): Adjust to
22500 call `gnutls-negotiate' with :process and :hostname arguments.
22501
225022011-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
22503
22504 * minibuffer.el (completion--message): New function.
22505 (completion--do-completion, minibuffer-complete)
22506 (minibuffer-force-complete, minibuffer-complete-word): Use it.
22507 (completion--do-completion): Don't ignore completion-auto-help when in
22508 icomplete-mode.
22509
22510 * whitespace.el (whitespace-trailing-regexp): Don't rely on the
22511 internal encoding (e.g. tibetan zero is not whitespace).
22512 (global-whitespace-mode): Prefer save-current-buffer.
22513 (whitespace-trailing-regexp): Remove useless save-match-data.
22514 (whitespace-empty-at-bob-regexp): Minor simplification.
22515
225162011-05-03 Chong Yidong <cyd@stupidchicken.com>
22517
22518 * emacs-lisp/autoload.el (generated-autoload-file): Doc fix (Bug#7989).
22519
225202011-05-03 Agustín Martín Domingo <agustin.martin@hispalinux.es>
22521
22522 * textmodes/ispell.el (ispell-add-per-file-word-list):
22523 Use `concat' to create string for insertion.
22524
225252011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
22526
22527 * textmodes/bibtex.el (bibtex-fill-field-bounds, bibtex-fill-entry):
22528 Avoid open-line which runs post-self-insert-hook.
22529 (bibtex-fill-entry): Remove unused `end' var.
22530
225312011-05-03 Dirk Ullrich <dirk.ullrich@googlemail.com> (tiny change)
22532
22533 * textmodes/ispell.el (ispell-add-per-file-word-list):
22534 Protect against `nil' value of `comment-start' (Bug#8579).
22535
225362011-05-03 Leo Liu <sdl.web@gmail.com>
22537
22538 * isearch.el (isearch-yank-pop): New command.
22539 (isearch-mode-map): Bind it to `M-y'.
22540 (isearch-forward): Mention it.
22541
225422011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
22543
22544 * simple.el (minibuffer-complete-shell-command): Remove.
22545 (minibuffer-local-shell-command-map): Use completion-at-point.
22546 (read-shell-command): Setup completion vars here instead.
22547 (read-expression-map): Bind TAB to symbol completion.
22548
22549 * textmodes/ispell.el (lookup-words): Use with-temp-buffer; signal
22550 error directly rather via storing it into `results'.
22551
225522011-05-02 Leo Liu <sdl.web@gmail.com>
22553
22554 * vc/diff.el: Fix description.
22555
225562011-05-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
22557
22558 * server.el (server-eval-at): New function.
22559
225602011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
22561
22562 * net/network-stream.el (open-network-stream): Take a :nowait
22563 parameter and pass it on to `make-network-process'.
22564 (network-stream-open-plain): Ditto.
22565
225662011-04-30 Andreas Schwab <schwab@linux-m68k.org>
22567
22568 * faces.el (face-spec-set-match-display): Don't match toolkit
22569 options on terminal frames.
22570
225712011-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
22572
22573 * progmodes/pascal.el: Use lexical binding.
22574 (pascal-mode-map): Remove author preferences.
22575
22576 * pcomplete.el (pcomplete-std-complete): Don't abuse
22577 completion-at-point.
22578
225792011-04-28 Juanma Barranquero <lekktu@gmail.com>
22580
22581 * calc/calccomp.el (math-comp-to-string-flat-term): Simplify by
22582 removing code that has been dead since 1991 or so.
22583
22584 * startup.el (command-line): When warning about "_emacs", use a
22585 delayed warning to allow the user to filter it out.
22586
225872011-04-28 Deniz Dogan <deniz@dogan.se>
22588
22589 * net/rcirc.el (rcirc-handler-353): Fix bug for channels which the
22590 user has not joined.
22591
225922011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
22593
22594 * pcomplete.el (pcomplete-completions-at-point): Return nil if there
22595 aren't any completions at point.
22596
225972011-04-28 Juanma Barranquero <lekktu@gmail.com>
22598
22599 * subr.el (display-delayed-warnings): New function.
22600 (delayed-warnings-hook): New variable.
22601
226022011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
22603
22604 * minibuffer.el (completion-at-point, completion-help-at-point):
22605 Don't presume that a given completion-at-point-function will always
22606 use the same calling convention.
22607
22608 * pcomplete.el (pcomplete-completions-at-point):
22609 Obey pcomplete-ignore-case. Don't call pcomplete-norm-func unless
22610 pcomplete-seen is non-nil.
22611 (pcomplete-comint-setup): Also recognize the new comint/shell
22612 completion functions.
22613 (pcomplete-do-complete): Don't call pcomplete-norm-func unless
22614 pcomplete-seen is non-nil.
22615
226162011-04-27 Niels Giesen <niels.giesen@gmail.com>
22617
22618 * calendar/icalendar.el (diary-lib): Add require statement.
22619 (icalendar--create-uid): Read out a uid from a text-property on
22620 the first character in the entry. This allows for code to add its
22621 own uid to the entry.
22622 (icalendar--convert-float-to-ical): Add export of
22623 `diary-float'-entries save for those with the optional DAY
22624 argument.
22625
226262011-04-27 Daniel Colascione <dan.colascione@gmail.com>
22627
22628 * subr.el (shell-quote-argument): Use alternate escaping strategy
22629 when we spot a variable reference in a string.
22630
226312011-04-26 Daniel Colascione <dan.colascione@gmail.com>
22632
22633 * cus-start.el (all): Define customization for debug-on-event.
22634
226352011-04-26 Daniel Colascione <dan.colascione@gmail.com>
22636
22637 * subr.el (shell-quote-argument): Escape correctly under Windows.
22638
226392011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
22640
22641 * emulation/cua-base.el (cua-selection-mode): Make it toggle again.
22642
226432011-04-25 Michael Albinus <michael.albinus@gmx.de>
22644
22645 * net/tramp.el (tramp-process-actions): Add POS argument.
22646 Delete region between POS and (pos).
22647
22648 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
22649 Use `nil' position in `tramp-process-actions' call.
22650 (tramp-maybe-open-connection): Call `tramp-process-actions' with pos.
22651
22652 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Use `nil'
22653 position in `tramp-process-actions' call.
22654
22655 * net/trampver.el: Update release number.
22656
226572011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
22658
22659 * custom.el (defcustom): Obey lexical-binding.
22660
22661 Fix octave-inf completion problems reported by Alexander Klimov.
22662 * progmodes/octave-inf.el (inferior-octave-mode-syntax-table):
22663 Inherit from octave-mode-syntax-table.
22664 (inferior-octave-mode): Set info-lookup-mode.
22665 (inferior-octave-completion-at-point): New function.
22666 (inferior-octave-complete): Use it and completion-in-region.
22667 (inferior-octave-dynamic-complete-functions): Use it as well, and use
22668 comint-filename-completion.
22669 * progmodes/octave-mod.el (octave-mode-syntax-table): Use _ syntax for
22670 symbol elements which shouldn't be word elements.
22671 (octave-font-lock-keywords, octave-beginning-of-defun)
22672 (octave-function-header-regexp): Adjust regexps accordingly.
22673 (octave-mode-map): Also use info-lookup-symbol for C-c C-h.
22674
226752011-04-25 Juanma Barranquero <lekktu@gmail.com>
22676
22677 * net/gnutls.el (gnutls-errorp): Declare before first use.
22678
226792011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
22680
22681 * net/gnutls.el (gnutls-negotiate): Add hostname, verify-flags,
22682 verify-error, and verify-hostname-error parameters. Check whether
22683 default trustfile exists before going to use it. Add missing
22684 argument to gnutls-message-maybe call. Return value.
22685 Reported by Claudio Bley <claudio.bley@gmail.com>.
22686 (open-gnutls-stream): Add usage example.
22687
22688 * net/network-stream.el (network-stream-open-starttls): Give host
22689 parameter to `gnutls-negotiate'.
22690 (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
22691 * subr.el (shell-quote-argument): Escape correctly under Windows.
22692
226932011-04-24 Daniel Colascione <dan.colascione@gmail.com>
22694
22695 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
22696 Use correct match group (bug#8438).
22697
226982011-04-24 Chong Yidong <cyd@stupidchicken.com>
22699
22700 * emacs-lisp/package.el (package-built-in-p): Fix typo.
22701 (package-menu--generate): New arg specifying packages to show.
22702 (package-menu-refresh, package-menu-execute, list-packages):
22703 Callers changed.
22704 (package-show-package-list): New function, replacing deleted
22705 package--list-packages (renamed because it is non-internal).
22706
22707 * finder.el (finder-list-matches): Use package-show-package-list
22708 instead of deleted package--list-packages.
22709
22710 * vc/vc-annotate.el (vc-annotate-goto-line): New command.
22711 Based on a previous implementation by Juanma Barranquero (Bug#8366).
22712 (vc-annotate-mode-map): Bind it to RET.
22713
227142011-04-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
22715
22716 * progmodes/etags.el (next-file): Don't use set-buffer to change
22717 buffers (Bug#8478).
22718
227192011-04-24 Chong Yidong <cyd@stupidchicken.com>
22720
22721 * files.el (auto-mode-alist): Use js-mode for .json (Bug#8529).
22722
22723 * apropos.el (apropos-label-face): Avoid variable-pitch face.
22724 (apropos-accumulator): Doc fix.
22725 (apropos-function, apropos-macro, apropos-command)
22726 (apropos-variable, apropos-face, apropos-group, apropos-widget)
22727 (apropos-plist): Add face property.
22728 (apropos-symbols-internal): Fix indentation.
22729 (apropos-print): Simplify help, and recognize apropos-multi-type.
22730 (apropos-print-doc): Use button-type-get to extract the button's
22731 face property. Fill docstring (Bug#8352).
22732
227332011-04-23 Juanma Barranquero <lekktu@gmail.com>
22734
22735 * buff-menu.el (Buffer-menu--buffers): Fix typo in docstring (bug#8535).
22736
22737 * play/mpuz.el (mpuz-silent): Doc fix.
22738 (mpuz-mode-map): Use mapc.
22739 (mpuz-put-number-on-board): Rename parameter L to COLUMNS.
22740 (mpuz-letter-to-digit, mpuz-check-all-solved, mpuz-create-buffer):
22741 Fix typos in docstrings.
22742
22743 * play/doctor.el (doc$, doctor-$, doctor-read-print, doctor-read-token)
22744 (doctor-nounp, doctor-pronounp): Fix typos in docstrings.
22745
22746 * mouse-drag.el (mouse-drag-throw): Fix typo in docstring.
22747
227482011-04-23 Chong Yidong <cyd@stupidchicken.com>
22749
22750 * minibuffer.el (completion--do-completion): Avoid the "Next char
22751 not unique" prompt if icomplete-mode is enabled (Bug#5849).
22752
22753 * mouse.el (mouse-drag-mode-line-1): Make sure that if we push
22754 mouse-2 into unread-command-events, it is interpreted correctly.
22755
22756 * image-mode.el (image-type, image-mode-map, image-minor-mode-map)
22757 (image-toggle-display): Doc fix.
22758
227592011-04-23 Stephen Berman <stephen.berman@gmx.net>
22760
22761 * textmodes/page.el (what-page): Use line-number-at-pos to
22762 calculate line number (Bug#6825).
22763
227642011-04-22 Juanma Barranquero <lekktu@gmail.com>
22765
22766 * eshell/esh-mode.el (find-tag-interactive): Declare function.
22767 (eshell-find-tag): Remove `with-no-warnings', unneeded now.
22768 Pass argument NO-DEFAULT to `find-tag-interactive'.
22769
227702011-04-22 Juanma Barranquero <lekktu@gmail.com>
22771
22772 Lexical-binding cleanup.
22773
22774 * progmodes/ada-mode.el (ada-after-change-function, ada-loose-case-word)
22775 (ada-no-auto-case, ada-capitalize-word, ada-untab, ada-narrow-to-defun):
22776 * progmodes/ada-prj.el (ada-prj-initialize-values)
22777 (ada-prj-display-page, ada-prj-field-modified, ada-prj-display-help)
22778 (ada-prj-show-value):
22779 * progmodes/ada-xref.el (ada-find-any-references, ada-gdb-application):
22780 * progmodes/antlr-mode.el (antlr-with-displaying-help-buffer)
22781 (antlr-invalidate-context-cache, antlr-options-menu-filter)
22782 (antlr-language-option-extra, antlr-c++-mode-extra, antlr-run-tool):
22783 * progmodes/bug-reference.el (bug-reference-push-button):
22784 * progmodes/fortran.el (fortran-line-length):
22785 * progmodes/glasses.el (glasses-change):
22786 * progmodes/octave-mod.el (octave-fill-paragraph):
22787 * progmodes/python.el (python-mode, python-pdbtrack-track-stack-file)
22788 (python-pdbtrack-grub-for-buffer, python-sentinel):
22789 * progmodes/sql.el (sql-save-connection):
22790 * progmodes/tcl.el (tcl-indent-command, tcl-popup-menu):
22791 * progmodes/xscheme.el (xscheme-enter-debugger-mode):
22792 Mark unused parameters.
22793
22794 * progmodes/compile.el (compilation--flush-directory-cache)
22795 (compilation--flush-parse, compile-internal): Mark unused parameters.
22796 (compilation-buffer-name): Rename parameter MODE-NAME to NAME-OF-MODE.
22797 (compilation-next-error-function): Remove unused variable `timestamp'.
22798
22799 * progmodes/cpp.el (cpp-parse-close): Remove unused variable `begin'.
22800 (cpp-signal-read-only, cpp-grow-overlay): Mark unused parameters.
22801
22802 * progmodes/dcl-mode.el (dcl-end-of-command):
22803 Remove unused variable `start'.
22804 (dcl-calc-command-indent-multiple, dcl-calc-cont-indent-relative)
22805 (dcl-option-value-basic, dcl-option-value-offset)
22806 (dcl-option-value-margin-offset, dcl-option-value-comment-line):
22807 Mark unused parameters.
22808 (dcl-save-local-variable): Remove unused variable `val'.
22809 (mode): Declare.
22810
22811 * progmodes/delphi.el (delphi-save-state, delphi-after-change):
22812 Mark unused parameters.
22813 (delphi-ignore-changes): Move before first use.
22814 (delphi-charset-token-at): Remove unused variable `start'.
22815 (delphi-else-start): Remove unused variable `if-count'.
22816 (delphi-comment-block-start, delphi-comment-block-end):
22817 Remove unused variable `kind'.
22818 (delphi-indent-line): Remove unused variable `new-point'.
22819
22820 * progmodes/ebrowse.el (ebrowse-files-list)
22821 (ebrowse-list-of-matching-members, ebrowse-tags-list-members-in-file):
22822 Mark unused parameters. Don't quote `lambda'.
22823 (ebrowse-sort-tree-list, ebrowse-same-tree-member-buffer-list):
22824 Don't quote `lambda'.
22825 (ebrowse-revert-tree-buffer-from-file, ebrowse-tags-choose-class)
22826 (ebrowse-goto-visible-member/all-member-lists): Mark unused parameters.
22827 (ebrowse-create-tree-buffer): Rename parameter OBARRAY to CLASSES.
22828 (ebrowse-toggle-mark-at-point): Remove unused variable `pnt'.
22829 Use `ignore-errors'.
22830 (ebrowse-frozen-tree-buffer-name, ebrowse-find-source-file)
22831 (ebrowse-view/find-file-and-search-pattern)
22832 (ebrowse-view/find-member-declaration/definition):
22833 Rename parameter TAGS-FILE-NAME to TAGS-FILE.
22834 (ebrowse-find-class-declaration, ebrowse-view-class-declaration):
22835 Rename parameter PREFIX-ARG to PREFIX.
22836 (ebrowse-tags-read-name): Remove unused variables `start' and
22837 `member-info'.
22838 (ebrowse-display-member-buffer): Rename variable `tags-file-name'
22839 to `tags-file'.
22840
22841 * progmodes/etags.el (local-find-tag-hook): Declare.
22842 (tag-partial-file-name-match-p, tag-any-match-p, list-tags):
22843 Mark unused parameters.
22844
22845 * progmodes/executable.el (compilation-error-regexp-alist): Declare.
22846 (executable-interpret): Mark unused parameter.
22847
22848 * progmodes/flymake.el (flymake-process-sentinel)
22849 (flymake-after-change-function)
22850 (flymake-create-temp-with-folder-structure)
22851 (flymake-get-include-dirs-dot): Mark unused parameters.
22852 (flymake-safe-delete-directory): Remove unused variable `err'.
22853
22854 * progmodes/gdb-mi.el (speedbar-change-initial-expansion-list)
22855 (speedbar-timer-fn, speedbar-line-text)
22856 (speedbar-change-expand-button-char, speedbar-delete-subblock)
22857 (speedbar-center-buffer-smartly): Declare functions.
22858 (gdb-find-watch-expression): Remove unused variable `array'.
22859 (gdb-edit-value, gdb-gdb, gdb-ignored-notification, gdb-thread-created)
22860 (gdb-starting): Mark unused parameters.
22861 (gud-gdbmi-marker-filter): Remove unused variable `output-record'.
22862 (gdb-table-string): Remove unused variable `res'.
22863 (gdb-place-breakpoints): Remove unused variables `flag' and `bptno'.
22864 (gdb-disassembly-handler-custom): Remove unused variable `pos'.
22865 (gdb-display-buffer): Remove unused variable `cur-size'.
22866
22867 * progmodes/gud.el (gud-def): Use `defalias' instead of `defun' to
22868 allow lexical-binding compilation.
22869 (gud-expansion-speedbar-buttons, gud-gdb-goto-stackframe)
22870 (gud-dbx-massage-args, gud-xdb-massage-args, gud-perldb-massage-args)
22871 (gud-jdb-massage-args, gud-jdb-find-source, gud-find-class):
22872 Mark unused parameters.
22873 (gud-gdb-marker-filter): Remove unused variable `match'.
22874 (gud-find-class): Bind `syntax-symbol' and `syntax-point' to suitable
22875 lambda expressions and funcall them, instead of using `fset'.
22876
22877 * progmodes/hideif.el (hif-parse-if-exp): Rename parameter
22878 HIF-TOKEN-LIST to TOKEN-LIST and let-bind `hif-token-list'.
22879
22880 * progmodes/hideshow.el (hs-hide-block-at-point): Remove unused
22881 variable `header-beg'; use `let'.
22882
22883 * progmodes/icon.el (indent-icon-exp): Remove unused variables
22884 `restart', `last-sexp' and `at-do'.
22885
22886 * progmodes/js.el (js--debug): Mark unused parameter.
22887 (js--parse-state-at-point): Remove unused variable `bound'; use `let'.
22888 (js--splice-into-items): Remove unused variable `item'.
22889 (js--read-symbol, js--read-tab): Pass 1/-1 to `ido-mode', not t/nil.
22890
22891 * progmodes/make-mode.el (makefile-make-font-lock-keywords):
22892 Rename parameter FONT-LOCK-KEYWORDS to FL-KEYWORDS.
22893 (makefile-complete): Remove unused variable `try'.
22894 (makefile-fill-paragraph, makefile-match-function-end):
22895 Mark unused parameters.
22896
22897 * progmodes/octave-inf.el (inferior-octave-complete):
22898 Remove unused variable `proc'.
22899 (inferior-octave-output-digest): Mark unused parameter.
22900
22901 * progmodes/perl-mode.el (perl-calculate-indent):
22902 Remove unused variable `err'.
22903
22904 * progmodes/prolog.el (prolog-mode-keybindings-inferior)
22905 (prolog-indent-line): Mark unused parameters.
22906 (prolog-indent-line): Remove unused variable `beg'.
22907
22908 * progmodes/ps-mode.el (reporter-prompt-for-summary-p)
22909 (reporter-dont-compact-list): Declare.
22910
22911 * progmodes/sh-script.el (sh-font-lock-quoted-subshell):
22912 Remove unused variable `char'.
22913 (sh-debug): Mark unused parameter.
22914 (sh-get-indent-info): Remove unused variable `start'.
22915 (sh-calculate-indent): Remove unused variable `var'.
22916
22917 * progmodes/simula.el (simula-popup-menu): Mark unused parameter.
22918 (simula-electric-keyword): Remove unused variable `null'.
22919 (simula-search-backward, simula-search-forward): Remove unused
22920 variables `begin' and `end'.
22921
22922 * progmodes/vera-mode.el (vera-guess-basic-syntax):
22923 Remove unused variable `pos'.
22924 (vera-electric-tab, vera-comment-uncomment-region):
22925 Mark unused parameters.
22926 (vera-electric-tab): Rename parameter PREFIX-ARG to PREFIX.
22927
229282011-04-22 Chong Yidong <cyd@stupidchicken.com>
22929
22930 * emacs-lisp/package.el (package--builtins, package-alist)
22931 (package-load-descriptor, package-built-in-p, package-activate)
22932 (define-package, package-installed-p)
22933 (package-compute-transaction, package-buffer-info)
22934 (package--push): Doc fix. Distinguish more clearly between
22935 version strings and version lists.
22936
229372011-04-21 Juanma Barranquero <lekktu@gmail.com>
22938
22939 Lexical-binding cleanup.
22940
22941 * play/5x5.el (5x5-make-random-solution, 5x5-make-mutate-current)
22942 (5x5-make-mutate-best):
22943 * play/fortune.el (fortune-in-buffer):
22944 * play/gomoku.el (gomoku-init-display):
22945 * play/solitaire.el (solitaire, solitaire-do-check):
22946 * play/tetris.el (tetris-default-update-speed-function):
22947 Mark unused parameters.
22948
22949 * play/bubbles.el (bubbles-mode): Set `show-trailing-whitespace'.
22950 (bubbles--shift): Remove unused variable `char-org'.
22951 (bubbles--set-faces): Remove unused variable `fg-col'. Simplify.
22952 (bubbles--show-images): Remove unused variable `char'.
22953
22954 * play/decipher.el (decipher-keypress, decipher-alphabet-keypress)
22955 (decipher-get-undo, decipher-set-map, decipher-complete-alphabet)
22956 (decipher-resync, decipher-loop-with-breaks, decipher--analyze)
22957 (decipher-analyze-buffer): Use ?\s.
22958 (decipher-make-checkpoint): Remove unused variable `mapping'.
22959
22960 * play/doctor.el (doctor-doc): Rename parameter DOCTOR-SENT to SENT.
22961
22962 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
22963 Remove unused variable `result'; use `let'.
22964
22965 * play/gametree.el (gametree-current-layout, gametree-apply-layout):
22966 Rename parameter TOP-LEVEL to FROM-TOP-LEVEL; use `ignore-errors'.
22967 (gametree-children-shown-p, gametree-compute-reduced-score):
22968 Use `ignore-errors'.
22969
22970 * play/handwrite.el (ps-lpr-switches): Declare.
22971 (handwrite): Remove unused variables `pmin' and `lastp'.
22972
22973 * play/hanoi.el (hanoi-move-ring): Remove unused variable `total-steps'.
22974
22975 * play/landmark.el (landmark-init-display)
22976 (landmark-update-naught-weights): Mark unused parameters.
22977 (landmark-y): Remove unused variable `noise'. Simplify.
22978 (landmark-human-plays): Remove unused variable `score'.
22979
22980 * play/mpuz.el (mpuz-try-letter): Remove unused variable `message'.
22981 (mpuz-try-proposal): Remove unused variable `game'.
22982
22983 * play/zone.el (life-patterns): Declare.
22984
229852011-04-20 Juanma Barranquero <lekktu@gmail.com>
22986
22987 * vc/vc.el (ediff-vc-internal): Declare function.
22988
229892011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
22990
22991 * shell.el: Use lexical-binding and std completion UI.
22992 (shell-filter-ctrl-a-ctrl-b): Work as a preoutput filter.
22993 (shell-mode): Put shell-filter-ctrl-a-ctrl-b on
22994 comint-preoutput-filter-functions rather than on
22995 comint-output-filter-functions.
22996 (shell-command-completion, shell--command-completion-data)
22997 (shell-filename-completion, shell-environment-variable-completion)
22998 (shell-c-a-p-replace-by-expanded-directory): New functions.
22999 (shell-dynamic-complete-functions, shell-dynamic-complete-command)
23000 (shell-dynamic-complete-filename, shell-replace-by-expanded-directory)
23001 (shell-dynamic-complete-environment-variable): Use them.
23002 (shell-dynamic-complete-as-environment-variable)
23003 (shell-dynamic-complete-as-command): Remove.
23004 (shell-match-partial-variable): Match past point.
23005 * comint.el: Clean up use of completion-at-point-functions.
23006 (comint-completion-at-point): New function.
23007 (comint-mode): Use it completion-at-point-functions.
23008 (comint-dynamic-complete): Make it obsolete.
23009 (comint-replace-by-expanded-history-before-point): Add dry-run arg.
23010 (comint-c-a-p-replace-by-expanded-history): New function.
23011 (comint-dynamic-complete-functions)
23012 (comint-replace-by-expanded-history): Use it.
23013 * minibuffer.el (completion-table-with-terminator): Allow dynamic
23014 termination strings. Try harder to avoid second try-completion.
23015 (completion-in-region-mode-map): Disable bindings that don't work yet.
23016
23017 * comint.el: Use lexical-binding. Require CL.
23018 (comint-dynamic-complete-functions): Use comint-filename-completion.
23019 (comint-completion-addsuffix): Tweak custom type.
23020 (comint-filename-completion, comint--common-suffix)
23021 (comint--common-quoted-suffix, comint--table-subvert)
23022 (comint--complete-file-name-data): New functions.
23023 (comint-dynamic-complete-as-filename, comint-dynamic-complete-filename)
23024 (comint-dynamic-list-filename-completions): Use them.
23025 (comint-dynamic-simple-complete): Make obsolete.
23026
23027 * minibuffer.el (completion-in-region-mode):
23028 Keep completion-in-region-mode--predicate global.
23029 (completion-in-region--postch):
23030 Assume completion-in-region-mode--predicate is not null.
23031
23032 * progmodes/flymake.el (flymake-start-syntax-check-process):
23033 Obey `dir'. Simplify.
23034
23035 * vc/vc.el (vc-version-ediff): Call ediff-vc-internal directly, since
23036 we're in VC after all.
23037
230382011-04-20 Christoph Scholtes <cschol2112@googlemail.com>
23039
23040 * vc/vc.el (vc-diff-build-argument-list-internal)
23041 (vc-version-ediff, vc-ediff): New commands.
23042 (vc-version-diff): Use vc-diff-build-argument-list-internal.
23043
230442011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
23045
23046 * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Remove dead code,
23047 add sanity check.
23048
23049 * obsolete/erc-hecomplete.el: Make obsolete.
23050 * obsolete/: Standardize obsolescence info in the header.
23051
230522011-04-20 Glenn Morris <rgm@gnu.org>
23053
23054 * calendar/solar.el (solar-horizontal-coordinates):
23055 Use the longitude argument rather than `calendar-longitude'.
23056 (solar-date-next-longitude): Remove unused locals.
23057
230582011-04-20 Vinicius Jose Latorre <viniciusjl@ig.com.br>
23059
23060 * whitespace.el: New version 13.2.1.
23061
230622011-04-20 felix <EmacsWiki> (tiny change)
23063
23064 * whitespace.el (global-whitespace-mode): Keep highlight when
23065 switching between major modes on a file.
23066
230672011-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
23068
23069 * progmodes/octave-mod.el (octave-in-comment-p, octave-in-string-p)
23070 (octave-not-in-string-or-comment-p): Use syntax-ppss so it works with
23071 multi-line comments as well.
23072
230732011-04-19 Juanma Barranquero <lekktu@gmail.com>
23074
23075 Lexical-binding cleanup.
23076
23077 * arc-mode.el (archive-mode-revert):
23078 * cmuscheme.el (scheme-interactively-start-process):
23079 * custom.el (custom-initialize-delay):
23080 * dnd.el (dnd-open-local-file, dnd-open-remote-url):
23081 * dos-w32.el (direct-print-region-helper, direct-print-region-function):
23082 * emacs-lock.el (emacs-lock-clear-sentinel):
23083 * ezimage.el (defezimage):
23084 * follow.el (follow-avoid-tail-recenter):
23085 * fringe.el (set-fringe-mode-1):
23086 * generic-x.el (bat-generic-mode-compile):
23087 * help-mode.el (help-info-variable, help-do-xref)
23088 (help-mode-revert-buffer):
23089 * help.el (view-emacs-todo):
23090 * iswitchb.el (iswitchb-completion-help):
23091 * jka-compr.el (jka-compr-make-temp-name, jka-compr-load):
23092 * kmacro.el (kmacro-cycle-ring-next, kmacro-cycle-ring-previous)
23093 (kmacro-delete-ring-head, kmacro-bind-to-key, kmacro-view-macro):
23094 * locate.el (locate-update):
23095 * longlines.el (longlines-encode-region)
23096 (longlines-after-change-function):
23097 * outline.el (outline-isearch-open-invisible):
23098 * ps-def.el (declare-function, charset-dimension, char-width)
23099 (encode-char):
23100 * ps-mule.el (ps-mule-plot-string):
23101 * recentf.el (recentf-make-menu-items, recentf-cancel-dialog)
23102 (recentf-edit-list-select, recentf-edit-list-validate)
23103 (recentf-open-files-action):
23104 * rect.el (delete-whitespace-rectangle-line)
23105 (rectangle-number-line-callback):
23106 * register.el (window-configuration-to-register)
23107 (frame-configuration-to-register):
23108 * scroll-bar.el (scroll-bar-mode, toggle-horizontal-scroll-bar):
23109 * select.el (xselect-convert-to-string, xselect-convert-to-length)
23110 (xselect-convert-to-targets, xselect-convert-to-delete)
23111 (xselect-convert-to-filename, xselect-convert-to-charpos)
23112 (xselect-convert-to-lineno, xselect-convert-to-colno)
23113 (xselect-convert-to-os, xselect-convert-to-host)
23114 (xselect-convert-to-user, xselect-convert-to-class)
23115 (xselect-convert-to-name, xselect-convert-to-integer)
23116 (xselect-convert-to-atom, xselect-convert-to-identity):
23117 * subr.el (declare, ignore, process-kill-without-query)
23118 (text-clone-maintain):
23119 * terminal.el (te-get-char, te-tic-sentinel):
23120 * tool-bar.el (tool-bar-make-keymap):
23121 * tooltip.el (tooltip-timeout, tooltip-hide, tooltip-help-tips):
23122 * type-break.el (type-break-mode, type-break-noninteractive-query):
23123 * view.el (View-back-to-mark):
23124 * wid-browse.el (widget-browse-action, widget-browse-widget)
23125 (widget-browse-widgets, widget-browse-sexp):
23126 * widget.el (define-widget-keywords):
23127 * xt-mouse.el (xterm-mouse-translate, turn-off-xterm-mouse-tracking):
23128 Mark unused parameters.
23129
23130 * align.el (align-adjust-col-for-rule): Mark unused parameter.
23131 (align-areas): Remove unused variable `look'.
23132 (align-region): Remove unused variables `real-end' and `pos-list'.
23133
23134 * apropos.el (apropos-score-doc): Remove unused variable `i'.
23135
23136 * bindings.el (mode-line-modified, mode-line-remote):
23137 Mark unused parameters.
23138 (mode-line-mule-info): Mark unused parameter; don't quote `lambda'.
23139
23140 * buff-menu.el (Buffer-menu-revert-function): Mark unused parameters.
23141 (Buffer-menu-mode): Mark unused parameter; don't quote `lambda'.
23142
23143 * comint.el (comint-history-isearch-pop-state)
23144 (comint-postoutput-scroll-to-bottom, comint-truncate-buffer)
23145 (comint-strip-ctrl-m, comint-read-noecho): Mark unused parameters.
23146 (comint-substitute-in-file-name): Doc fix.
23147
23148 * completion.el (cmpl-statistics-block): Mark unused parameter.
23149 (add-completions-from-tags-table, add-completions-from-lisp-buffer)
23150 (save-completions-to-file, load-completions-from-file):
23151 Remove unused local variable `e'.
23152
23153 * composite.el (compose-chars): Remove unused variable `len'.
23154 (lgstring-insert-glyph): Remove unused variable `g'.
23155 (compose-glyph-string): Remove unused variables `ascent',
23156 `descent', `lbearing' and `rbearing'.
23157 (compose-glyph-string-relative): Remove unused variables
23158 `lbearing', `rbearing' and `wadjust'.
23159 (compose-gstring-for-graphic): Remove unused variables `header',
23160 `wadjust', `xoff' and `yoff'. Use `let', not `let*'.
23161 (compose-gstring-for-terminal): Remove unused variables `header'
23162 and `nchars'. Use `let', not `let*'.
23163
23164 * cus-edit.el (Custom-set, Custom-save, custom-reset)
23165 (Custom-reset-current, Custom-reset-saved, Custom-reset-standard)
23166 (Custom-buffer-done, custom-buffer-create-internal)
23167 (custom-browse-visibility-action, custom-browse-group-tag-action)
23168 (custom-browse-variable-tag-action, custom-browse-face-tag-action)
23169 (widget-magic-mouse-down-action, custom-toggle-parent)
23170 (custom-add-parent-links, custom-toggle-hide-variable)
23171 (custom-face-edit-value-visibility-action, custom-face-edit-fix-value)
23172 (custom-toggle-hide-face, face, hook, custom-group-link-action)
23173 (custom-face-menu-create, custom-variable-menu-create, get)
23174 (custom-group-menu-create, Custom-no-edit): Mark unused parameters.
23175 (custom-reset-standard-save-and-update): Remove unused variable `value'.
23176 (customize-apropos): Remove unused variable `tests'.
23177 (custom-group-value-create): Remove unused variable `hidden-p'.
23178 (sort-fold-case): Declare.
23179
23180 * cus-theme.el (custom-reset-standard-faces-list)
23181 (custom-reset-standard-variables-list): Declare.
23182 (customize-create-theme, custom-theme-revert, custom-theme-write)
23183 (custom-theme-choose-mode, customize-themes, custom-theme-save):
23184 Mark unused parameters.
23185
23186 * dabbrev.el (dabbrev-completion): Remove unused variable `init'.
23187
23188 * delim-col.el (delimit-columns-max): Move defvar before first use.
23189
23190 * descr-text.el (describe-char-categories): Don't quote `lambda'.
23191 (describe-char): Don't quote `lambda'. Mark unused parameter.
23192
23193 * desktop.el (desktop-save-buffer-p): Mark unused parameter.
23194 (auto-insert): Declare.
23195 (desktop-restore-file-buffer): Rename desktop-* parameters;
23196 mark unused ones.
23197 (desktop-create-buffer): Rename desktop-* parameters and bind them.
23198 (desktop-buffer): Rename desktop-* parameters.
23199
23200 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
23201 (dframe-reposition-frame-xemacs, dframe-help-echo)
23202 (dframe-hack-buffer-menu, dframe-set-timer, dframe-set-timer-internal):
23203 Mark unused parameters.
23204
23205 * dired-aux.el (backup-extract-version-start, overwrite-query)
23206 (overwrite-backup-query, rename-regexp-query)
23207 (rename-non-directory-query): Declare.
23208 (dired-shell-stuff-it, dired-do-create-files): Mark unused parameters.
23209 (dired-add-entry): Remove unused variable `orig-file-name'.
23210 (dired-copy-file-recursive): Remove unused variable `dirfailed'.
23211 Use parameter PRESERVE-TIME instead of accessing dynamic variable
23212 `dired-copy-preserve-time' directly.
23213 (dired-do-create-files-regexp): Remove unused variable `fn-count'.
23214 (dired-insert-subdir-newpos): Rename unused variable `pos'.
23215
23216 * dired-x.el (dired-omit-size-limit): Move defcustom before first use.
23217 (dired-virtual-revert, dired-make-relative-symlink):
23218 Mark unused parameters.
23219 (manual-program): Declare.
23220 (dired-x-hands-off-my-keys): Rename parameters of lambda expression.
23221 (inode, s, mode, nlink, uid, gid, size, time, name, sym): Declare them,
23222 wrapped in `with-no-warnings' to avoid replacing one warning by another.
23223
23224 * dirtrack.el (dirtrack): Remove unused variable `multi-line'.
23225
23226 * dos-fns.el (dos-8+3-filename): Remove unused variable `i'.
23227
23228 * echistory.el (electric-history-in-progress, Helper-return-blurb):
23229 Declare.
23230
23231 * edmacro.el (edmacro-finish-edit): Remove unused variable `kmacro'.
23232
23233 * electric.el (Electric-command-loop): Rename parameter
23234 INHIBIT-QUIT to INHIBIT-QUITTING and bind `inhibit-quit'.
23235
23236 * expand.el (expand-in-literal): Remove unused variable `here'.
23237
23238 * facemenu.el (facemenu-add-new-color):
23239 Remove unused variable `docstring'.
23240
23241 * faces.el (face-id, make-face-bold, make-face-unbold, make-face-italic)
23242 (make-face-unitalic, make-face-bold-italic): Mark unused parameters.
23243 (face-attr-construct): Mark unused parameter. Doc fix.
23244 (read-color): Remove unused variable `hex-string'.
23245
23246 * files.el (parse-colon-path): Rename argument CD-PATH to SEARCH-PATH.
23247 (locate-dominating-file): Remove unused vars `prev-file' and `user'.
23248 (remote-file-name-inhibit-cache, revert-buffer): Clean up docstrings.
23249 (display-buffer-other-frame): Remove unused variable `old-window'.
23250 (kill-buffer-hook): Declare.
23251 (insert-file-contents-literally, set-auto-mode, risky-local-variable-p):
23252 Mark unused parameters.
23253 (after-find-file): Pass 1 to `auto-save-mode', not t.
23254
23255 * files-x.el (auto-insert): Declare.
23256 (modify-file-local-variable-prop-line): Remove unused variable `val'.
23257
23258 * find-lisp.el (find-lisp-find-dired-internal): Remove unused
23259 variable `buf'. Mark unused parameter.
23260 (find-lisp-insert-directory): Mark unused parameter.
23261
23262 * format.el (format-decode-run-method): Mark unused parameter; doc fix.
23263 (format-encode-region): Remove unused variables `cur-buf' and `result'.
23264 (format-common-tail): Remove, unused.
23265 (format-deannotate-region): Remove unused variable `loc'.
23266 (format-annotate-region): Remove unused variable `p'.
23267 (format-annotate-single-property-change): Remove unused variables
23268 `default' and `tail'.
23269
23270 * forms.el (read-file-filter): Declare.
23271 (forms--iif-hook, forms--revert-buffer): Mark unused parameters.
23272
23273 * frame.el (frame-creation-function-alist): Mark unused parameter.
23274 (frame-geom-spec-cons): Pass FRAME to `frame-geom-value-cons'.
23275
23276 * hilit-chg.el (hilit-chg-cust-fix-changes-face-list, hilit-chg-clear):
23277 Remove unused parameters.
23278 (hilit-chg-set-face-on-change): Remove unused variable `beg-decr'.
23279 (highlight-compare-with-file): Remove unused variable `buf-b-read-only'.
23280
23281 * htmlfontify.el (hfy-default-footer, hfy-decor, hfy-invisible)
23282 (hfy-parse-tags-buffer, hfy-prepare-index-i, hfy-prepare-index)
23283 (hfy-prepare-tag-map): Mark unused parameters.
23284 (htmlfontify-buffer): Use `called-interactively-p'.
23285
23286 * ibuf-ext.el (ibuffer-do-kill-lines, ibuffer-jump-to-buffer)
23287 (ibuffer-copy-filename-as-kill, ibuffer-mark-on-buffer)
23288 (ibuffer-do-occur): Mark unused parameters.
23289 (ibuffer-forward-next-marked): Remove unused variable `curmark'.
23290 (ibuffer-diff-buffer-with-file-1): Remove unused variable `proc'.
23291
23292 * ibuffer.el: Don't quote `lambda'.
23293 (ibuffer-count-marked-lines, ibuffer-count-deletion-lines)
23294 (ibuffer-unmark-all, ibuffer-toggle-marks, ibuffer-redisplay-engine):
23295 Mark unused parameters.
23296
23297 * ido.el (ido-mode, ido-wide-find-dir-or-delete-dir)
23298 (ido-completing-read): Mark unused parameters.
23299 (ido-copy-current-word): Mark unused parameters;
23300 remove unused variable `name'.
23301 (ido-sort-merged-list): Remove unused parameter `dirs'.
23302
23303 * ielm.el (ielm-input-sender): Mark unused parameter.
23304 (ielm-string, ielm-form, ielm-pos, ielm-result, ielm-error-type)
23305 (ielm-output, ielm-wbuf, ielm-pmark): Declare.
23306 (ielm-eval-input): Rename argument IELM-STRING to INPUT-STRING to keep
23307 `ielm-string' as a dynamic variable accessible from the IELM prompt.
23308 Bind `ielm-string' to INPUT-STRING. Remove unused variable `err'.
23309
23310 * image-dired.el (image-dired-display-thumbs): Remove unused
23311 variables `curr-file' and `count'.
23312 (image-dired-remove-tag): Remove unused variable `start'.
23313 (image-dired-tag-files, image-dired-create-thumbs): Remove unused
23314 variable `curr-file'
23315 (image-dired-rotate-original): Remove unused variable `temp-file'.
23316 (image-dired-mouse-select-thumbnail, image-dired-mouse-toggle-mark):
23317 Remove unused variable `file'.
23318 (image-dired-gallery-generate): Remove unused variable `curr'.
23319 (image-dired-dired-edit-comment-and-tags): Mark unused parameters.
23320
23321 * indent.el (tab-to-tab-stop): Remove unused variable `opoint'.
23322
23323 * info-xref.el (info-xref-goto-node-p): Remove unused variable `err'.
23324
23325 * informat.el (texinfo-command-start, texinfo-command-end): Declare.
23326
23327 * isearch.el (minibuffer-history-symbol): Declare.
23328 (isearch-edit-string): Remove unused variable `err'.
23329 (isearch-message-prefix, isearch-message-suffix):
23330 Mark unused parameters.
23331
23332 * ls-lisp.el (ls-lisp-insert-directory): Remove unused variable `fil'.
23333
23334 * macros.el (insert-kbd-macro): Remove unused variable `mods'.
23335
23336 * makesum.el (double-column): Remove unused variable `cnt'.
23337
23338 * misearch.el (multi-isearch-pop-state): Mark unused parameter.
23339 (ido-ignore-item-temp-list): Declare.
23340
23341 * mouse-drag.el (mouse-drag-throw): Remove unused variables
23342 `mouse-delta', `window-last-row', `mouse-col-delta', `window-last-col',
23343 `adjusted-mouse-col-delta' and `adjusted-mouse-delta'.
23344 (mouse-drag-drag): Remove unused variables `mouse-delta' and
23345 `mouse-col-delta'.
23346
23347 * mouse-sel.el (mouse-extend-internal):
23348 Remove unused variable `orig-window-frame'.
23349
23350 * pcomplete.el (pcomplete-args, pcomplete-begins, pcomplete-last)
23351 (pcomplete-index, pcomplete-stub, pcomplete-seen, pcomplete-norm-func):
23352 Move declarations before first use.
23353 (pcomplete-opt): Mark unused parameters; doc fix.
23354
23355 * proced.el (proced-revert): Mark unused parameter.
23356 (proced-send-signal): Remove unused variable `err'.
23357
23358 * ps-print.el (ps-print-preprint-region, ps-print-preprint):
23359 Rename parameter PREFIX-ARG to ARG.
23360 (ps-basic-plot-string, ps-basic-plot-whitespace):
23361 Mark unused parameters.
23362
23363 * replace.el (replace-count): Define.
23364 (occur-revert-function): Mark unused parameters.
23365 (ido-ignore-item-temp-list, isearch-error, isearch-forward)
23366 (isearch-case-fold-search, isearch-string): Declare.
23367 (occur-engine): Rename parameter CASE-FOLD-SEARCH to CASE-FOLD and
23368 bind `case-fold-search'. Remove unused variables `beg' and `end',
23369 and simplify.
23370 (replace-eval-replacement): Rename parameter REPLACE-COUNT to
23371 COUNT and bind `replace-count'.
23372 (replace-loop-through-replacements): Rename parameter REPLACE-COUNT
23373 to COUNT.
23374
23375 * savehist.el (print-readably, print-string-length): Declare.
23376
23377 * shadowfile.el (shadow-expand-cluster-in-file-name):
23378 Remove unused variable `cluster'.
23379 (shadow-copy-file): Remove unused variable `i'.
23380 (shadow-noquery, shadow-clusters, shadow-site-cluster)
23381 (shadow-parse-fullname, shadow-parse-name, shadow-define-cluster)
23382 (shadow-define-literal-group, shadow-define-regexp-group)
23383 (shadow-make-group, shadow-shadows-of): Clean up docstrings.
23384
23385 * shell.el (shell-filter-ctrl-a-ctrl-b): Mark unused parameter.
23386 (shell): Use `called-interactively-p'.
23387 (shell-directory-tracker): Remove unused variable `chdir-failure'.
23388
23389 * simple.el (compilation-context-lines, comint-file-name-quote-list)
23390 (comint-file-name-chars, comint-delimiter-argument-list): Declare.
23391 (delete-backward-char): Remove unused variable `ocol'.
23392 (minibuffer-avoid-prompt, minibuffer-history-isearch-pop-state)
23393 (line-move-1, event-apply-alt-modifier, event-apply-super-modifier)
23394 (event-apply-hyper-modifier, event-apply-shift-modifier)
23395 (event-apply-control-modifier, event-apply-meta-modifier):
23396 Mark unused parameters.
23397 (undo-make-selective-list): Remove duplicate variable `undo-elt'.
23398 (normal-erase-is-backspace-mode): Remove unused variable `old-state'.
23399
23400 * speedbar.el (speedbar-ignored-directory-expressions)
23401 (speedbar-supported-extension-expressions, speedbar-directory-buttons)
23402 (speedbar-find-file, speedbar-dir-follow)
23403 (speedbar-directory-buttons-follow, speedbar-tag-find)
23404 (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
23405 (speedbar-buffers-line-directory, speedbar-buffer-click):
23406 Mark unused parameters.
23407 (speedbar-tag-file): Remove unused variable `mode'.
23408 (speedbar-buffers-tail-notes): Remove unused variable `mod'; simplify.
23409
23410 * strokes.el (strokes-decode-buffer): Remove unused variable `ext'.
23411
23412 * talk.el (talk): Remove unused variable `display'.
23413
23414 * tar-mode.el (tar-subfile-save-buffer): Remove unused variable `name'.
23415 (tar-write-region-annotate): Mark unused parameter.
23416
23417 * time.el (now, time, load, mail, 24-hours, hour, 12-hours, am-pm)
23418 (minutes, seconds, time-zone, day, year, monthname, month, dayname):
23419 Declare them, wrapped in `with-no-warnings' to avoid replacing one
23420 warning by another.
23421
23422 * time-stamp.el (time-stamp-string-preprocess):
23423 Remove unused variable `require-padding'.
23424
23425 * tree-widget.el (widget-glyph-enable): Declare.
23426 (tree-widget-action): Mark unused parameter.
23427
23428 * w32-fns.el (x-get-selection): Mark unused parameter.
23429 (autoload-make-program, generated-autoload-file): Declare.
23430
23431 * wdired.el (wdired-revert): Mark unused parameters.
23432 (wdired-xcase-word): Remove unused variable `err'.
23433
23434 * whitespace.el (whitespace-buffer-changed): Mark unused parameters.
23435 (whitespace-help-scroll): Remove unused variable `data-help'.
23436
23437 * wid-edit.el (widget-mouse-help, widget-overlay-inactive)
23438 (widget-image-insert, widget-after-change, default)
23439 (widget-default-format-handler, widget-default-notify)
23440 (widget-default-prompt-value, widget-info-link-action)
23441 (widget-url-link-action, widget-function-link-action)
23442 (widget-variable-link-action, widget-file-link-action)
23443 (widget-emacs-library-link-action, widget-emacs-commentary-link-action)
23444 (widget-field-prompt-internal, widget-field-action, widget-field-match)
23445 (widget-choice-mouse-down-action, toggle, widget-radio-button-notify)
23446 (widget-insert-button-action, widget-delete-button-action, visibility)
23447 (widget-documentation-link-action, widget-documentation-string-action)
23448 (widget-const-prompt-value, widget-regexp-match, symbol)
23449 (widget-coding-system-prompt-value)
23450 (widget-key-sequence-value-to-external, sexp)
23451 (widget-sexp-value-to-internal, character, vector, cons)
23452 (widget-choice-prompt-value, widget-boolean-prompt-value)
23453 (widget-color--choose-action): Mark unused parameters.
23454 (widget-item-match-inline, widget-choice-match-inline)
23455 (widget-checklist-match, widget-checklist-match-inline)
23456 (widget-group-match): Rename parameter VALUES to VALS.
23457 (widget-field-value-set): Remove unused variable `size'.
23458 (widget-color-action): Remove unused variables `value' and `start'.
23459
23460 * windmove.el (windmove-wrap-loc-for-movement): Remove unused
23461 variable `dir'. Doc fix.
23462 (windmove-find-other-window): Don't pass it.
23463
23464 * window.el (count-windows): Mark unused parameter.
23465 (bw-adjust-window): Remove unused variable `err'.
23466
23467 * woman.el (woman-file-name): Remove unused variable `default'.
23468 (woman-expand-directory-path): Rename parameters WOMAN-MANPATH and
23469 WOMAN-PATH to PATH-DIRS and PATH-REGEXPS, respectively.
23470 (global-font-lock-mode): Declare.
23471 (woman-decode-region): Mark unused parameter.
23472 (woman-get-tab-stop): Rename parameter TAB-STOP-LIST to TAB-STOPS.
23473
23474 * x-dnd.el (x-dnd-default-test-function, x-dnd-handle-old-kde)
23475 (x-dnd-handle-xdnd, x-dnd-handle-motif): Mark unused parameters.
23476 (x-dnd-handle-moz-url): Remove unused variable `title'.
23477 (x-dnd-handle-xdnd): Remove unused variables `x', `y' and `ret-action'.
23478
23479 * xml.el (xml-parse-tag, xml-parse-attlist):
23480 Remove unused variable `pos'.
23481
234822011-04-19 Glenn Morris <rgm@gnu.org>
23483
23484 * calendar/cal-tex.el (cal-tex-list-holidays, cal-tex-cursor-month)
23485 (cal-tex-cursor-week, cal-tex-cursor-week2, cal-tex-cursor-week-iso)
23486 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
23487 (cal-tex-cursor-filofax-daily, cal-tex-mini-calendar)
23488 * calendar/cal-html.el (cal-html-insert-minical):
23489 * calendar/diary-lib.el (diary-list-entries-1, diary-list-entries)
23490 (calendar-mark-date-pattern):
23491 Prefix "unused" locals.
23492
23493 * calendar/cal-dst.el (dst-adjust-time): Remove never-implemented
23494 optional argument `style'.
23495
23496 * calendar/appt.el (appt-make-list):
23497 * calendar/cal-china.el (calendar-chinese-date-string):
23498 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits)
23499 (diary-hebrew-yahrzeit):
23500 * calendar/cal-tex.el (cal-tex-last-blank-p, cal-tex-cursor-week2):
23501 * calendar/calendar.el (calendar-generate-window):
23502 * calendar/time-date.el (time-to-days):
23503 Remove unused local variables.
23504
235052011-04-18 Chong Yidong <cyd@stupidchicken.com>
23506
23507 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Use a custom
23508 glyphless-char-display table.
23509 (tabulated-list-glyphless-char-display): New var.
23510
235112011-04-18 Sam Steingold <sds@gnu.org>
23512
23513 * vc/add-log.el (change-log-font-lock-keywords): Add "Thanks to"
23514 to acknowledgments.
23515
235162011-04-17 Glenn Morris <rgm@gnu.org>
23517
23518 * calendar/diary-lib.el (diary-sexp-entry):
23519 * calendar/holidays.el (holiday-sexp):
23520 Set debug-on-error rather than the removed stack-trace-on-error.
23521
235222011-04-16 Glenn Morris <rgm@gnu.org>
23523
23524 * progmodes/f90.el: Use lexical-binding.
23525 (f90-get-correct-indent): Remove unnecessary local variable `cont'.
23526
235272011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
23528
23529 * mail/sendmail.el (mail-mode-map): Use completion-at-point.
23530 (mail-mode): Setup mailalias completion here instead.
23531 * mail/mailalias.el: Use lexical-binding.
23532 (pattern, mailalias-done): Declare dynamic.
23533 (mail-completion-at-point-function): New function, from mail-complete.
23534 (mail-complete): Use it.
23535 (mail-completion-expand): New function.
23536 (mail-get-names): Use it.
23537 (mail-directory, mail-directory-process, mail-directory-stream):
23538 Don't use `pattern' for lexically bound arg.
23539
23540 * emacs-lisp/lisp-mode.el (eval-defun-2): Use eval-sexp-add-defvars.
23541
23542 * htmlfontify.el (hfy-etags-cmd): Remove inoperant eval-and-compile.
23543 (hfy-e2x-etags-cmd, hfy-etags-cmd-alist-default)
23544 (hfy-etags-cmd-alist): Don't eval-and-compile any more.
23545
23546 * emacs-lisp/bytecomp.el (byte-temp-output-buffer-show)
23547 (byte-save-window-excursion, byte-temp-output-buffer-setup)
23548 (byte-interactive-p): Define them again, for use when inlining
23549 old code.
23550
235512011-04-15 Juanma Barranquero <lekktu@gmail.com>
23552
23553 * loadup.el: Use `string-to-number', not `string-to-int'.
23554
235552011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
23556
23557 * progmodes/gud.el (gud-gdb): Use completion-at-point instead of
23558 gud-gdb-complete-command.
23559 (gud-gdb-completions): New function, from gud-gdb-complete-command.
23560 (gud-gdb-completion-at-point): New function.
23561 (gud-gdb-completions): Remove.
23562
235632011-04-14 Michael Albinus <michael.albinus@gmx.de>
23564
23565 * net/tramp-sh.el (tramp-sh-handle-file-attributes): Handle the case
23566 when the scripts fail. Use `tramp-do-file-attributes-with-ls' then.
23567 (tramp-do-copy-or-rename-file-out-of-band): Do not check any longer
23568 whether `executable-find' is bound.
23569
23570 * net/tramp-smb.el (tramp-smb-handle-copy-file): Fix docstring.
23571
235722011-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
23573
23574 * minibuffer.el (completion-in-region-mode-predicate)
23575 (completion-in-region-mode--predicate): New vars.
23576 (completion-in-region, completion-in-region--postch)
23577 (completion-in-region-mode): Use them.
23578 (completion--capf-wrapper): Also return the hook function.
23579 (completion-at-point, completion-help-at-point):
23580 Adjust and provide a predicate.
23581
23582 Preserve arg names for advice of subr and lexical functions (bug#8457).
23583 * help-fns.el (help-function-arglist): Consolidate the subr and
23584 new-byte-code cases. Add argument `preserve-names' to extract names
23585 from the docstring when needed.
23586 * emacs-lisp/advice.el (ad-define-subr-args, ad-undefine-subr-args)
23587 (ad-subr-args-defined-p, ad-get-subr-args, ad-subr-arglist): Remove.
23588 (ad-arglist): Use help-function-arglist's new arg.
23589 (ad-definition-type): Use cond.
23590
235912011-04-13 Juanma Barranquero <lekktu@gmail.com>
23592
23593 * autorevert.el (auto-revert-handler):
23594 Bind `remote-file-name-inhibit-cache', not `tramp-cache-inhibit-cache',
23595 which was removed in 2010-10-02T13:21:43Z!michael.albinus@gmx.de.
23596 Don't quote lambda.
23597
23598 * image-mode.el (image-transform-set-scale):
23599 Fix change in 2011-04-09T20:28:01Z!cyd@stupidchicken.com.
23600
236012011-04-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
23602
23603 * net/network-stream.el (network-stream-open-starttls): Only do
23604 opportunistic STARTTLS upgrades if we have built-in GnuTLS support.
23605 Upgrades via gnutls-cli are too slow to be done opportunistically.
23606
236072011-04-12 Juanma Barranquero <lekktu@gmail.com>
23608
23609 * dframe.el (dframe-current-frame): Remove spurious quote.
23610
236112011-04-12 Glenn Morris <rgm@gnu.org>
23612
23613 * calendar/cal-tex.el (cal-tex-end-document):
23614 Try to automatically use latin1 input if needed.
23615
23616 * calendar/cal-hebrew.el (diary-hebrew-rosh-hodesh):
23617 Don't try to cons a mark onto an empty element.
23618
236192011-04-11 Leo Liu <sdl.web@gmail.com>
23620
23621 * ido.el (ido-buffer-internal): Allow method 'kill for virtual
23622 buffers.
23623 (ido-kill-buffer-at-head): Support killing virtual buffers.
23624
236252011-04-10 Chong Yidong <cyd@stupidchicken.com>
23626
23627 * minibuffer.el (completion-show-inline-help): New var.
23628 (completion--do-completion, minibuffer-complete)
23629 (minibuffer-force-complete, minibuffer-complete-word):
23630 Inhibit minibuffer messages if completion-show-inline-help is nil.
23631
23632 * icomplete.el (icomplete-mode): Bind completion-show-inline-help
23633 to avoid interference from inline help (Bug#5849).
23634
236352011-04-10 Leo Liu <sdl.web@gmail.com>
23636
23637 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
23638 Fix typo.
23639
236402011-04-09 Chong Yidong <cyd@stupidchicken.com>
23641
23642 * image-mode.el (image-toggle-display-image): Signal an error if
23643 not in Image mode.
23644 (image-transform-mode, image-transform-resize)
23645 (image-transform-set-rotation): Doc fix.
23646 (image-transform-set-resize): Delete.
23647 (image-transform-set-scale, image-transform-fit-to-height)
23648 (image-transform-fit-to-width): Handle image-toggle-display-image
23649 and image-transform-resize directly.
23650
236512011-04-08 Sho Nakatani <lay.sakura@gmail.com>
23652
23653 * doc-view.el (doc-view-fit-width-to-window)
23654 (doc-view-fit-height-to-window, doc-view-fit-page-to-window):
23655 New functions for fitting the shown image to the Emacs window size.
23656 (doc-view-mode-map): Add bindings for the new functions.
23657
236582011-04-08 Juanma Barranquero <lekktu@gmail.com>
23659
23660 * vc/vc-annotate.el (vc-annotate-show-log-revision-at-line):
23661 Fix typo in docstring.
23662
236632011-04-08 Eli Zaretskii <eliz@gnu.org>
23664
23665 * files.el (file-size-human-readable): Produce one digit after
23666 decimal, like "ls -lh" does.
23667
23668 * ls-lisp.el (ls-lisp-format-file-size): Allow for 7 characters in
23669 the file size representation.
23670
23671 * simple.el (list-processes): If async subprocesses are not
23672 available, error out with a clear error message.
23673
236742011-04-08 Chong Yidong <cyd@stupidchicken.com>
23675
23676 * help.el (help-form-show): New function, to be called from C.
23677 Put help-form output in a buffer named differently than *Help*.
23678
236792011-04-08 Eli Zaretskii <eliz@gnu.org>
23680
23681 * files.el (file-size-human-readable): New function.
23682
23683 * ls-lisp.el (ls-lisp-format-file-size): Use it, instead of
23684 computing the representation inline. Don't require `cl'.
23685
236862011-04-08 Glenn Morris <rgm@gnu.org>
23687
23688 * man.el (Man-page-header-regexp): Solaris < 2.6 no longer supported.
23689
23690 * net/browse-url.el (browse-url-firefox):
23691 Test system-type, not system-configuration.
23692
23693 * vc/log-edit.el (log-edit-empty-buffer-p): New function.
23694 (log-edit-insert-cvs-template, log-edit-insert-cvs-rcstemplate):
23695 Use log-edit-empty-buffer-p. (Bug#7598)
23696
23697 * net/rlogin.el (rlogin-process-connection-type): Simplify.
23698 (rlogin-mode-map): Initialize in the defvar.
23699 (rlogin): Use ignore-errors.
23700
23701 * replace.el (occur-mode-map): Some fixes for menu items.
23702
237032011-04-07 Aaron S. Hawley <aaron.s.hawley@gmail.com>
23704
23705 * play/morse.el (denato-region): Handle varying case. (Bug#8386)
23706
237072011-04-06 Chong Yidong <cyd@stupidchicken.com>
23708
23709 * emacs-lisp/cconv.el (cconv--analyse-use): Ignore "ignored" when
23710 issuing unused warnings.
23711
23712 * emacs-lisp/tabulated-list.el (tabulated-list-print): Use lambda
23713 macro directly.
23714
23715 * simple.el: Lisp reimplement of list-processes. Based on an
23716 earlier reimplementation by Leo Liu, but using tabulated-list.el.
23717 (process-menu-mode): New major mode.
23718 (list-processes--refresh, list-processes):
23719 (process-menu-visit-buffer): New functions.
23720
23721 * files.el (save-buffers-kill-emacs): Don't assume any return
23722 value of list-processes, which is undocumented anyway.
23723
237242011-04-06 Chong Yidong <cyd@stupidchicken.com>
23725
23726 * emacs-lisp/tabulated-list.el: New file.
23727
23728 * emacs-lisp/package.el: Use Tabulated List mode.
23729 (package-menu-mode-map): Inherit from tabulated-list-mode-map.
23730 (package-menu-mode): Derive from tabulated-list-mode. Set up the
23731 table format using Tabulated List mode variables.
23732 (package--push): New macro, replacing package-list-maybe-add.
23733 (package-menu--generate): Use package--push. Renamed from
23734 package--generate-package-list.
23735 (package-menu-refresh, list-packages): Use it.
23736 (package-menu--print-info): Rename from package-print-package.
23737 Return insertion data instead of inserting it directly.
23738 (package-menu-describe-package, package-menu-execute):
23739 Use tabulated-list-get-id.
23740 (package-menu-mark-delete, package-menu-mark-install)
23741 (package-menu-mark-unmark, package-menu-backup-unmark)
23742 (package-menu-mark-obsolete-for-deletion):
23743 Use tabulated-list-put-tag.
23744 (package--list-packages, package-menu-revert)
23745 (package-menu-get-package, package-menu-get-version)
23746 (package-menu-sort-by-column): Functions deleted.
23747 (package-menu-package-list, package-menu-sort-key): Vars deleted.
23748 (package-menu--status-predicate, package-menu--version-predicate)
23749 (package-menu--name-predicate)
23750 (package-menu--description-predicate): Handle arguments in the
23751 Tabulated List format.
23752 (package-list-packages-no-fetch): Call list-packages.
23753
237542011-04-06 Juanma Barranquero <lekktu@gmail.com>
23755
23756 * files.el (after-find-file-from-revert-buffer): Remove variable.
23757 (after-find-file): Don't bind it.
23758 (revert-buffer-in-progress-p): New variable.
23759 (revert-buffer): Bind it.
23760 Pass nil for `after-find-file-from-revert-buffer'.
23761
23762 * saveplace.el (save-place-find-file-hook): Use new variable
23763 `rever-buffer-in-progress-p', not `after-find-file-from-revert-buffer'.
23764
237652011-04-06 Glenn Morris <rgm@gnu.org>
23766
23767 * Makefile.in (AUTOGEN_VCS): New variable.
23768 (autoloads): Use $AUTOGEN_VCS.
23769
23770 * calendar/cal-move.el (calendar-scroll-toolkit-scroll): New function.
23771 * calendar/calendar.el (calendar-mode-map):
23772 Check for toolkit scroll bars. (Bug#8305)
23773
237742011-04-05 Chong Yidong <cyd@stupidchicken.com>
23775
23776 * minibuffer.el (completion-in-region--postch)
23777 (completion-in-region-mode): Remove unnecessary messages.
23778
237792011-04-05 Juanma Barranquero <lekktu@gmail.com>
23780
23781 * font-lock.el (font-lock-refresh-defaults):
23782 Don't bind `hi-lock--inhibit-font-lock-hook', removed in
23783 2010-10-09T04:09:19Z!cyd@stupidchicken.com and 2010-10-11T23:57:49Z!lekktu@gmail.com (2010-10-12).
23784
23785 * info.el (Info-directory-list, Info-read-node-name-2)
23786 (Info-split-parameter-string): Doc fixes.
23787 (Info-virtual-nodes): Reflow docstring.
23788 (Info-find-file, Info-directory-toc-nodes, Info-history-toc-nodes)
23789 (Info-apropos-toc-nodes, info-finder, Info-get-token)
23790 (Info-find-emacs-command-nodes, Info-speedbar-key-map):
23791 Fix typos in docstrings.
23792 (Info-revert-buffer-function, Info-search, Info-isearch-pop-state)
23793 (Info-speedbar-hierarchy-buttons, Info-speedbar-goto-node)
23794 (Info-speedbar-buttons, Info-desktop-buffer-misc-data)
23795 (Info-restore-desktop-buffer): Mark unused parameters.
23796 (Info-directory-find-file, Info-directory-find-node)
23797 (Info-history-find-file, Info-history-find-node, Info-toc-find-node)
23798 (Info-virtual-index-find-node, Info-apropos-find-file)
23799 (Info-apropos-find-node, Info-finder-find-file, Info-finder-find-node):
23800 Mark unused parameters; fix typos in docstrings.
23801 (Info-virtual-index): Remove unused local variable `nodename'.
23802
238032011-04-05 Deniz Dogan <deniz@dogan.se>
23804
23805 * net/rcirc.el: Update my e-mail address.
23806 (rcirc-mode-map): Remove M-o binding.
23807
238082011-04-05 Chong Yidong <cyd@stupidchicken.com>
23809
23810 * startup.el (command-line): Save the cursor's theme-face
23811 directly, instead of using face-override-spec.
23812
23813 * custom.el (load-theme): Minor optimization in assigning faces.
23814
238152011-04-04 Juanma Barranquero <lekktu@gmail.com>
23816
23817 * help-fns.el (describe-variable): Complete all variables having
23818 documentation, including keywords.
23819 http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00112.html
23820
238212011-04-04 Juanma Barranquero <lekktu@gmail.com>
23822
23823 Convert to lexical-binding.
23824
23825 * bs.el (bs-refresh, bs-sort-buffer-interns-are-last)
23826 (bs--get-marked-string, bs--get-modified-string)
23827 (bs--get-readonly-string, bs--get-size-string, bs--get-name)
23828 (bs--get-mode-name, bs--get-file-name): Mark unused arguments.
23829 (bs--configuration-name-for-prefix-arg): Rename argument PREFIX-ARG.
23830
23831 * ehelp.el (electric-help-execute-extended)
23832 (electric-help-ctrl-x-prefix):
23833 * hexl.el (hexl-revert-buffer-function):
23834 * linum.el (linum-after-change, linum-after-scroll):
23835 * emacs-lisp/re-builder.el (reb-auto-update): Mark unused arguments.
23836
23837 * help-fns.el (help-describe-category-set): Remove unused ERR variable.
23838
238392011-04-04 Daiki Ueno <ueno@unixuser.org>
23840
23841 * epa-dired.el:
23842 * epa-mail.el:
23843 * epa-hook.el:
23844 * epa-file.el:
23845 * epa.el:
23846 * epg.el: Use lexical binding.
23847
238482011-04-03 Chong Yidong <cyd@stupidchicken.com>
23849
23850 * dired-aux.el (dired-create-files): Add docstring (Bug#7970).
23851
23852 * textmodes/flyspell.el (flyspell-word): Recognize default
23853 dictionary case for flyspell-mark-duplications-exceptions.
23854 Use regexp matching for languages.
23855 (flyspell-mark-duplications-exceptions): Add "that" and "had" for
23856 default dictionary (Bug#7926).
23857
238582011-04-02 Chong Yidong <cyd@stupidchicken.com>
23859
23860 * emacs-lisp/package.el (package--with-work-buffer):
23861 Recognize https URLs.
23862
23863 * net/network-stream.el: Move from gnus/proto-stream.el.
23864 Change prefix to network-stream throughout.
23865 (open-protocol-stream): Merge into open-network-stream, leaving
23866 open-protocol-stream as an alias. Handle nil BUFFER args.
23867
23868 * subr.el (open-network-stream): Move to net/network-stream.el.
23869
238702011-04-02 Glenn Morris <rgm@gnu.org>
23871
23872 * find-dired.el (find-exec-terminator): New option.
23873 (find-ls-option): Test for -ls support.
23874 (find-ls-subdir-switches): Test for -b in find-ls-option.
23875 (find-dired, find-grep-dired): Doc fixes.
23876 (find-dired): Use find-exec-terminator.
23877
23878 * find-dired.el (find-ls-option, find-ls-subdir-switches)
23879 (find-grep-options): Do not autoload these defcustoms, remove purecopy.
23880 (find-name-arg): Remove purecopy.
23881
23882 * progmodes/grep.el (grep-find-use-xargs): Doc fix.
23883 (grep-compute-defaults): Check for `-exec COMMAND +' support.
23884 Set grep-find-use-xargs, grep-find-command, and grep-find-template
23885 accordingly. Don't add the null-device if not needed.
23886
23887 * files.el (save-some-buffers): Doc fix.
23888
238892011-04-02 Eli Zaretskii <eliz@gnu.org>
23890
23891 * makefile.w32-in (EMACS): Default to ../src/$(BLD)/emacs.exe.
23892
238932011-04-01 Juanma Barranquero <lekktu@gmail.com>
23894
23895 * progmodes/idlwave.el (idlwave-one-key-select, idlwave-list-abbrevs):
23896 Use `dolist' rather than `mapcar'.
23897
238982011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
23899
23900 Add lexical binding.
23901
23902 * subr.el (apply-partially): Use new closures rather than CL.
23903 (--dolist-tail--, --dotimes-limit--): Don't declare dynamic.
23904 (dolist, dotimes): Use slightly different expansion for lexical code.
23905 (functionp): Move to C.
23906 (letrec): New macro.
23907 (with-wrapper-hook): Use it and apply-partially instead of CL.
23908 (eval-after-load): Preserve lexical-binding.
23909 (save-window-excursion, with-output-to-temp-buffer): Turn them
23910 into macros.
23911
23912 * simple.el (with-wrapper-hook, apply-partially): Move to subr.el.
23913
23914 * help-fns.el (help-split-fundoc): Return nil if there's nothing else
23915 than the arglist.
23916 (help-add-fundoc-usage): Don't add `Not documented'.
23917 (help-function-arglist): Handle closures, subroutines, and new
23918 byte-code-functions.
23919 (help-make-usage): Remove leading underscores.
23920 (describe-function-1): Handle closures.
23921 (describe-variable): Use special-variable-p for completion.
23922
23923 * files.el (lexical-binding): Declare safe.
23924
23925 * emacs-lisp/pcase.el: Don't use destructuring-bind.
23926 (pcase--memoize): Rename from pcase-memoize. Change weakness.
23927 (pcase): Add `let' pattern.
23928 Change memoization so it actually works.
23929 (pcase-mutually-exclusive-predicates): Add byte-code-function-p.
23930 (pcase--u1) <guard, pred>: Fix possible shadowing problem.
23931 <let>: New case.
23932
23933 * emacs-lisp/macroexp.el: Use lexical binding.
23934 (macroexpand-all-1): Check obsolete macros. Expand compiler-macros.
23935 Don't convert ' to #' without checking that it's indeed quoting
23936 a lambda.
23937
23938 * emacs-lisp/lisp-mode.el (eval-last-sexp-1):
23939 Use eval-sexp-add-defvars.
23940 (eval-sexp-add-defvars): New fun.
23941
23942 * emacs-lisp/float-sup.el (pi): Don't declare as dynamically bound.
23943
23944 * emacs-lisp/eieio.el (byte-compile-file-form-defmethod):
23945 Don't autoload.
23946 (eieio-defgeneric-form-primary-only-one): Use `byte-compile' rather
23947 than the internal `byte-compile-lambda'.
23948 (defmethod): Don't hide code under quotes.
23949 (eieio-defmethod): New `code' argument.
23950
23951 * emacs-lisp/eieio-comp.el: Remove.
23952
23953 * emacs-lisp/edebug.el (edebug-eval-defun)
23954 (edebug-eval-top-level-form): Use eval-sexp-add-defvars.
23955 (edebug-toggle): Avoid `eval'.
23956
23957 * emacs-lisp/disass.el (disassemble-internal): Handle new
23958 `closure' objects.
23959 (disassemble-1): Handle new byte codes.
23960
23961 * emacs-lisp/cl.el (pushnew): Silence warning.
23962
23963 * emacs-lisp/cl-macs.el (cl-byte-compile-block)
23964 (cl-byte-compile-throw): Remove.
23965 (cl-block-wrapper, cl-block-throw): Use compiler-macros instead.
23966
23967 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Properly quote CL
23968 closures.
23969
23970 * emacs-lisp/cconv.el: New file.
23971
23972 * emacs-lisp/bytecomp.el: Use lexical binding instead of
23973 a "bytecomp-" prefix. Macroexpand everything as a separate phase.
23974 (byte-compile-initial-macro-environment):
23975 Handle declare-function here.
23976 (byte-compile--lexical-environment): New var.
23977 (byte-stack-ref, byte-stack-set, byte-discardN)
23978 (byte-discardN-preserve-tos): New lap codes.
23979 (byte-interactive-p): Don't use any more.
23980 (byte-compile-push-bytecodes, byte-compile-push-bytecode-const2):
23981 New macros.
23982 (byte-compile-lapcode): Use them and handle new lap codes.
23983 (byte-compile-obsolete): Remove.
23984 (byte-compile-arglist-signature): Handle new byte-code arg"lists".
23985 (byte-compile-arglist-warn): Check late def of inlinable funs.
23986 (byte-compile-cl-warn): Don't silence warnings for compiler-macros
23987 since they should have been expanded by now.
23988 (byte-compile--outbuffer): Rename from bytecomp-outbuffer.
23989 (byte-compile-from-buffer): Remove unused second arg.
23990 (byte-compile-preprocess): New function.
23991 (byte-compile-toplevel-file-form): New function to distinguish
23992 file-form calls from outside from file-form calls from hunk-handlers.
23993 (byte-compile-file-form): Simplify.
23994 (byte-compile-file-form-defsubst): Remove.
23995 (byte-compile-file-form-defmumble): Simplify now that
23996 byte-compile-lambda always returns a byte-code-function.
23997 (byte-compile): Preprocess.
23998 (byte-compile-byte-code-maker, byte-compile-byte-code-unmake):
23999 Remove, not used any more.
24000 (byte-compile-arglist-vars, byte-compile-make-lambda-lexenv)
24001 (byte-compile-make-args-desc): New funs.
24002 (byte-compile-lambda): Handle lexical functions. Always return
24003 a byte-code-function.
24004 (byte-compile-reserved-constants): New var, to make up room for
24005 closed-over variables.
24006 (byte-compile-constants-vector): Obey it.
24007 (byte-compile-top-level): New args `lexenv' and `reserved-csts'.
24008 (byte-compile-macroexpand-declare-function): New function.
24009 (byte-compile-form): Call byte-compile-unfold-bcf to inline immediate
24010 byte-code-functions.
24011 (byte-compile-form): Check obsolescence here.
24012 (byte-compile-inline-lapcode, byte-compile-unfold-bcf): New functions.
24013 (byte-compile-variable-ref): Remove.
24014 (byte-compile-dynamic-variable-op): New fun.
24015 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
24016 (byte-compile-variable-set): New funs.
24017 (byte-compile-discard): Add 2 args.
24018 (byte-compile-stack-ref, byte-compile-stack-set)
24019 (byte-compile-make-closure, byte-compile-get-closed-var): New funs.
24020 (byte-compile-funarg, byte-compile-funarg-2): Remove, handled in
24021 macroexpand-all instead.
24022 (byte-compile-quote-form): Remove.
24023 (byte-compile-push-binding-init, byte-compile-not-lexical-var-p)
24024 (byte-compile-bind, byte-compile-unbind): New funs.
24025 (byte-compile-let): Handle let* and lexical binding.
24026 (byte-compile-let*): Remove.
24027 (byte-compile-catch, byte-compile-unwind-protect)
24028 (byte-compile-track-mouse, byte-compile-condition-case):
24029 Handle a new :fun-body form, used for lexical scoping.
24030 (byte-compile-save-window-excursion)
24031 (byte-compile-with-output-to-temp-buffer): Remove.
24032 (byte-compile-defun): Simplify.
24033 (byte-compile-stack-adjustment): New fun.
24034 (byte-compile-out): Use it.
24035 (byte-compile-refresh-preloaded): Don't reload byte-compiler files.
24036
24037 * emacs-lisp/byte-run.el (make-obsolete): Don't set the `byte-compile'
24038 handler any more.
24039
24040 * emacs-lisp/byte-opt.el: Use lexical binding.
24041 (byte-inline-lapcode): Remove (to bytecomp).
24042 (byte-compile-inline-expand): Pay attention to inlining to/from
24043 lexically bound code.
24044 (byte-compile-unfold-lambda): Don't handle byte-code-functions
24045 any more.
24046 (byte-optimize-form-code-walker): Don't handle save-window-excursion
24047 any more and don't call compiler-macros.
24048 (byte-compile-splice-in-already-compiled-code): Remove.
24049 (byte-code): Don't inline any more.
24050 (disassemble-offset): Receive `bytes' as argument rather than via
24051 dynamic scoping.
24052 (byte-compile-tag-number): Declare before first use.
24053 (byte-decompile-bytecode-1): Handle new byte-codes, don't change
24054 `return' even if make-spliceable.
24055 (byte-compile-side-effect-and-error-free-ops): Add stack-ref, remove
24056 obsolete interactive-p.
24057 (byte-optimize-lapcode): Optimize new lap-codes.
24058 Don't trip up on new form of `byte-constant' lap code.
24059
24060 * emacs-lisp/autoload.el (make-autoload): Don't burp on trivial macros.
24061
24062 * emacs-lisp/advice.el (ad-arglist): Use help-function-arglist.
24063
24064 * custom.el (custom-initialize-default, custom-declare-variable):
24065 Use `defvar'.
24066
24067 * Makefile.in (BIG_STACK_DEPTH, BIG_STACK_OPTS, BYTE_COMPILE_FLAGS):
24068 New variables.
24069 (compile-onefile, .el.elc, compile-calc, recompile): Use them.
24070 (COMPILE_FIRST): Add macroexp and cconv.
24071 * makefile.w32-in: Mirror changes in Makefile.in.
24072
24073 * vc/cvs-status.el:
24074 * vc/diff-mode.el:
24075 * vc/log-edit.el:
24076 * vc/log-view.el:
24077 * vc/smerge-mode.el:
24078 * textmodes/bibtex-style.el:
24079 * textmodes/css-mode.el:
24080 * startup.el:
24081 * uniquify.el:
24082 * minibuffer.el:
24083 * newcomment.el:
24084 * reveal.el:
24085 * server.el:
24086 * mpc.el:
24087 * emacs-lisp/smie.el:
24088 * doc-view.el:
24089 * dired.el:
24090 * abbrev.el: Use lexical binding.
24091
240922011-04-01 Eli Zaretskii <eliz@gnu.org>
24093
24094 * info.el (info-display-manual): New function.
24095
240962011-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
24097
24098 * loadup.el: Load minibuffer after loaddefs, to use define-minor-mode.
24099
241002011-03-31 Tassilo Horn <tassilo@member.fsf.org>
24101
24102 * net/rcirc.el (rcirc-handler-001): Only authenticate, if there's
24103 an entry for that server in rcirc-authinfo. (Bug#8385)
24104
241052011-03-31 Glenn Morris <rgm@gnu.org>
24106
24107 * progmodes/f90.el (f90-find-tag-default): Handle multiple `%'.
24108
24109 * generic-x.el (etc-fstab-generic-mode): Add ext4, sysfs keywords.
24110
241112011-03-30 Christoph Scholtes <cschol2112@googlemail.com>
24112
24113 * progmodes/python.el (python-default-interpreter)
24114 (python-python-command-args, python-jython-command-args)
24115 (python-which-shell, python-which-args, python-which-bufname)
24116 (python-file-queue, python-comint-output-filter-function)
24117 (python-toggle-shells, python-shell): Remove obsolete defcustoms,
24118 variables and functions.
24119
241202011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
24121
24122 * minibuffer.el (completion-table-dynamic): Optimize `boundaries'.
24123 (completion-in-region-mode): New minor mode.
24124 (completion-in-region): Use it.
24125 (completion-in-region--data, completion-in-region-mode-map): New vars.
24126 (completion-in-region--postch): New function.
24127 (completion--capf-misbehave-funs, completion--capf-safe-funs):
24128 New vars.
24129 (completion--capf-wrapper): New function.
24130 (completion-at-point): Use it to track well-behavedness of
24131 hook functions.
24132 (completion-help-at-point): New command.
24133
241342011-03-30 Jason Merrill <jason@redhat.com> (tiny change)
24135
24136 * vc/add-log.el (add-change-log-entry): Don't use whitespace
24137 syntax class to search for whitespace on a single line
24138 (Message-ID: <4D938140.4030905@redhat.com>).
24139
241402011-03-30 Leo Liu <sdl.web@gmail.com>
24141
24142 * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
24143 New commands.
24144 (edit-abbrevs-map): Bind them here.
24145 (write-abbrev-file): New optinal arg VERBOSE. (Bug#5937)
24146
241472011-03-29 Ken Manheimer <ken.manheimer@gmail.com>
24148
24149 * allout.el (allout-hide-by-annotation, allout-flag-region):
24150 Reduce possibility of overlay leakage by making them volatile.
24151
24152 * allout-widgets.el (allout-widgets-tally): Define as nil so the
24153 hash is not shared between buffers. Mode initialization is
24154 responsible for giving it a useful starting value.
24155 (allout-item-span): Reduce possibility of overlay leakage by
24156 making them volatile.
24157 (allout-widgets-count-buttons-in-region): Add diagnostic function
24158 for tracking down button overlay leaks.
24159
241602011-03-29 Leo Liu <sdl.web@gmail.com>
24161
24162 * ido.el (ido-read-internal): Use the default history var
24163 minibuffer-history if no HISTORY is specified.
24164
241652011-03-28 Brian T. Sniffen <bsniffen@akamai.com> (tiny change)
24166
24167 * net/imap.el (imap-shell-open, imap-process-connection-type):
24168 Use imap-process-connection-type for 'shell' streams as well as
24169 Kerberos, SSL, other subprocesses.
24170
241712011-03-28 Leo Liu <sdl.web@gmail.com>
24172
24173 * abbrev.el (abbrev-table-empty-p): New function.
24174 (prepare-abbrev-list-buffer): Place empty abbrev tables after
24175 nonempty ones. (Bug#5937)
24176
241772011-03-27 Jan Djärv <jan.h.d@swipnet.se>
24178
24179 * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
24180
241812011-03-27 Leo Liu <sdl.web@gmail.com>
24182
24183 * ansi-color.el (ansi-color-names-vector): Allow cons cell value
24184 for foreground and background colors.
24185 (ansi-color-make-color-map): Adapt.
24186
241872011-03-25 Leo Liu <sdl.web@gmail.com>
24188
24189 * midnight.el (midnight-time-float): Remove. Note it calculates
24190 the microsecond component incorrectly and seconds-to-time does the
24191 same job.
24192 Remove redundant (require 'timer).
24193
24194 * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
24195 (ido-completions): Remove unused arguments. (Bug#8329)
24196
241972011-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
24198
24199 * minibuffer.el (completion--flush-all-sorted-completions):
24200 Remove itself from hook.
24201 (completion-at-point): Let the functions perform the completion
24202 immediately and return nil or t.
24203 * comint.el (comint-dynamic-complete-functions): Now identical to
24204 completion-at-point-functions.
24205 (comint-dynamic-list-input-ring): Remove unused var `index'.
24206 (comint--match-partial-filename, comint--unquote&expand-filename):
24207 New funs, split from comint-match-partial-filename.
24208 (comint-dynamic-complete): Use completion-at-point.
24209 (comint-dynamic-complete-filename): Use comint--match-partial-filename.
24210
242112011-03-24 Drew Adams <drew.adams@oracle.com>
24212
24213 * thingatpt.el: Support `defun'.
24214
242152011-03-23 Leo Liu <sdl.web@gmail.com>
24216
24217 * abbrevlist.el: Move to obsolete/abbrevlist.el.
24218
24219 * help-mode.el (help-mode-finish): Tweak regexp.
24220
242212011-03-23 Glenn Morris <rgm@gnu.org>
24222
24223 * eshell/esh-opt.el (eshell-eval-using-options):
24224 Do not bind unused local variable `eshell-option-stub'.
24225
24226 * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
24227
242282011-03-22 Juanma Barranquero <lekktu@gmail.com>
24229
24230 * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
24231 keymap variable in `with-no-warnings' to avoid a warning when the
24232 keymap has been already `defconst'ed.
24233
242342011-03-22 Leo Liu <sdl.web@gmail.com>
24235
24236 * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
24237 encode all chars in abbrevs; otherwise use emacs-mule or
24238 utf-8-emacs. (Bug#8308)
24239
242402011-03-22 Juanma Barranquero <lekktu@gmail.com>
24241
24242 * simple.el (backward-delete-char-untabify):
24243 Avoid warning about using `delete-backward-char'.
24244
24245 * image.el (image-type-file-name-regexps): Make it variable.
24246 `imagemagick-register-types' modifies it, and the user may want
24247 to add new extensions for known image types.
24248 (imagemagick-register-types): Throw error if not using ImageMagick.
24249
242502011-03-22 Leo Liu <sdl.web@gmail.com>
24251
24252 * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
24253 located before rcirc-prompt-end-marker.
24254 (rcirc-complete): Error if point is not after rcirc prompt.
24255 Handle the case when table is nil.
24256 (rcirc-user-authenticated): Define to fix compiler warning.
24257
242582011-03-22 Chong Yidong <cyd@stupidchicken.com>
24259
24260 * custom.el (custom--inhibit-theme-enable): Make it affect only
24261 custom-theme-set-variables and custom-theme-set-faces.
24262 (provide-theme): Ignore custom--inhibit-theme-enable.
24263 (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
24264 (custom-enabling-themes): Delete variable.
24265 (enable-theme): Accept only loaded themes as arguments.
24266 Ignore the special custom-enabled-themes variable.
24267 (custom-enabled-themes): Forbid themes from setting this.
24268 Eliminate use of custom-enabling-themes.
24269 (custom-push-theme): Quote "changed" custom var entry.
24270
242712011-03-21 Leo Liu <sdl.web@gmail.com>
24272
24273 * ido.el (ido-read-internal): Add ido-selected to history instead
24274 of user input.
24275
242762011-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
24277
24278 * subr.el (deferred-action-list, deferred-action-function):
24279 Mark obsolete.
24280
242812011-03-21 Leo Liu <sdl.web@gmail.com>
24282
24283 * vc/log-view.el: Remove (require 'wid-edit), not needed after the
24284 change on 2011-02-13 (bug#8309).
24285
24286 * minibuffer.el (read-file-name-function): Change default value.
24287 (read-file-name--defaults): Rename from read-file-name-defaults.
24288 (read-file-name-default): Rename from read-file-name.
24289 (read-file-name): Call read-file-name-function.
24290
242912011-03-21 Glenn Morris <rgm@gnu.org>
24292
24293 * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
24294 Doc fixes.
24295
242962011-03-21 Chong Yidong <cyd@stupidchicken.com>
24297
24298 * cus-theme.el: Add missing provide statement.
24299 (customize-create-theme): Extract theme value correctly.
24300 (custom-theme-visit-theme): Autoload.
24301 (customize-create-theme): Prompt before inserting default faces.
24302
243032011-03-20 Jay Belanger <jay.p.belanger@gmail.com>
24304
24305 * calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
24306 units and musical notes.
24307
243082011-03-20 Leo Liu <sdl.web@gmail.com>
24309
24310 * ido.el (ido-read-internal): Use completing-read-default.
24311 (ido-completing-read): Fix compatibility with completing-read.
24312
243132011-03-20 Christian Ohler <ohler@gnu.org>
24314
24315 * emacs-lisp/ert.el (ert-run-tests-batch): Remove unused variable.
24316 (ert-delete-all-tests): Use `called-interactively-p' rather than
24317 `interactive-p'.
24318 (ert--make-xrefs-region): Respect END.
24319
243202011-03-19 Chong Yidong <cyd@stupidchicken.com>
24321
24322 * dired-aux.el (dired-create-directory): Signal an error if the
24323 directory already exists (Bug#8246).
24324
24325 * facemenu.el (list-colors-display): Call list-faces-display
24326 inside with-help-window.
24327 (list-colors-print): Use display property to align the final
24328 column, instead of checking window-width.
24329
243302011-03-19 Eli Zaretskii <eliz@gnu.org>
24331
24332 * vc/emerge.el (emerge-metachars): Separate value for ms-dos and
24333 windows-nt systems.
24334 (emerge-protect-metachars): Quote correctly for ms-dos and
24335 windows-nt systems.
24336
243372011-03-19 Ralph Schleicher <rs@ralph-schleicher.de>
24338
24339 * info.el (info-initialize): Replace all uses of `:' with
24340 path-separator for compatibility with non-Unix systems.
24341 Cache quoting of path-separator. (Bug#8258)
24342
243432011-03-19 Juanma Barranquero <lekktu@gmail.com>
24344
24345 * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
24346 (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
24347 (mouse-avoidance-mode): Fix typos in docstrings.
24348
243492011-03-19 Chong Yidong <cyd@stupidchicken.com>
24350
24351 * startup.el (package-subdirectory-regexp): Move from package.el.
24352 Omit \\` and \\', and let callers add them.
24353
24354 * emacs-lisp/package.el (package-strip-version)
24355 (package-load-all-descriptors): Add \\` and \\' to
24356 package-subdirectory-regexp before using it.
24357 (package-untar-buffer): New arg DIR; ensure that file untars only
24358 into this expected directory. Remove superfluous delete-region.
24359 (package-unpack): Caller changed.
24360 (package-tar-file-info): Use package-subdirectory-regexp.
24361
243622011-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
24363
24364 * vc/diff-mode.el (diff-mode-map): Shadow problematic bindings from
24365 diff-mode-shared-map (bug#8284).
24366 (diff-mode-shared-map): Re-introduce some bindings that were problematic.
24367
243682011-03-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
24369
24370 * calendar/time-date.el (format-seconds): Use assoc instead of
24371 assoc-string, since assoc-string doesn't exist in XEmacs.
24372
243732011-03-17 Juanma Barranquero <lekktu@gmail.com>
24374
24375 * custom.el (custom-known-themes): Reflow docstring.
24376 (custom-theme-load-path): Fix typo in docstring.
24377 (load-theme): Fix typo in error message.
24378 (custom-available-themes, custom-variable-theme-value):
24379 Use `let', not `let*'.
24380
243812011-03-17 Jay Belanger <jay.p.belanger@gmail.com>
24382
24383 * calc/README: Mention inclusion of musical notes.
24384
24385 * calc/calc-units.el (calc-lu-quant): Rename from
24386 `calc-logunits-quantity'.
24387 (calcFunc-lupquant): Rename from `calcFunc-powerquant'.
24388 (calcFunc-lufquant): Rename from `calcFunc-fieldquant'.
24389 (calc-db): Rename from `calc-dblevel'.
24390 (calcFunc-dbpower): Rename from `calcFunc-dbpowerlevel'.
24391 (calcFunc-dbfield): Rename from `calcFunc-dbfieldlevel'.
24392 (calc-np): Rename from `calc-nplevel'.
24393 (calcFunc-nppower): Rename from `calcFunc-nppowerlevel'.
24394 (calcFunc-npfield): Rename from `calcFunc-npfieldlevel'.
24395 (calc-lu-plus): Rename from `calc-logunits-add'.
24396 (calcFunc-lupadd): Rename from `calcFunc-lupoweradd'.
24397 (calcFunc-lufadd): Rename from `calcFunc-lufieldadd'.
24398 (calc-lu-minus): Rename from `calc-logunits-sub'.
24399 (calcFunc-lupsub): Rename from `calcFunc-lupowersub'.
24400 (calcFunc-lufsub): Rename from `calcFunc-lufieldsub'.
24401 (calc-lu-times): Rename from `calc-logunits-mul'.
24402 (calcFunc-lupmul): Rename from `calcFunc-lupowermul'.
24403 (calcFunc-lufmul): Rename from `calcFunc-lufieldmul'.
24404 (calc-lu-divide): Rename from `calc-logunits-div'.
24405 (calcFunc-lupdiv): Rename from `calcFunc-lupowerdiv'.
24406 (calcFunc-lufdiv): Rename from `calcFunc-lufielddiv'.
24407
24408 * calc/calc-ext.el (calc-init-extensions): Update the names of the
24409 functions being autoloaded.
24410
24411 * calc/calc.el (calc-lu-power-reference): Rename from
24412 `calc-logunits-power-reference'.
24413 (calc-lu-field-reference): Rename from
24414 `calc-logunits-field-reference'.
24415
24416 * calc/calc-help.el (calc-l-prefix-help):
24417 Mention musical note functions.
24418
244192011-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
24420
24421 * minibuffer.el (completion-all-sorted-completions):
24422 Use :completion-cycle-penalty text property if present.
24423
244242011-03-16 Ken Manheimer <ken.manheimer@gmail.com>
24425
24426 * allout.el (allout-yank-processing): Adjust for new rebulleting
24427 regime so bullet being yanked is used without prompting the user
24428 for a choice.
24429
244302011-03-16 Juanma Barranquero <lekktu@gmail.com>
24431
24432 * startup.el (command-line): Warn the user that _emacs is deprecated.
24433
244342011-03-16 Juanma Barranquero <lekktu@gmail.com>
24435
24436 * progmodes/delphi.el (delphi-search-path, delphi-indent-level)
24437 (delphi-verbose, delphi-comment-face, delphi-string-face)
24438 (delphi-keyword-face, delphi-ignore-changes, delphi-indent-line)
24439 (delphi-mode-abbrev-table, delphi-debug-buffer, delphi-tab)
24440 (delphi-find-unit, delphi-find-current-xdef, delphi-fill-comment)
24441 (delphi-new-comment-line, delphi-font-lock-defaults)
24442 (delphi-debug-mode-map, delphi-mode-syntax-table, delphi-mode):
24443 Fix typos in docstrings.
24444
244452011-03-15 Ken Manheimer <ken.manheimer@gmail.com>
24446
24447 * allout.el (allout-make-topic-prefix, allout-rebullet-heading):
24448 Invert the roles of character and string values for INSTEAD, so a
24449 string is used for the more common case of a defaulting prompt.
24450
244512011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
24452
24453 * progmodes/ruby-mode.el (ruby-backward-sexp):
24454 * progmodes/ebrowse.el (ebrowse-draw-file-member-info):
24455 * play/gamegrid.el (gamegrid-make-face):
24456 * play/bubbles.el (bubbles--grid-width, bubbles--grid-height)
24457 (bubbles--colors, bubbles--shift-mode, bubbles--initialize-images):
24458 * notifications.el (notifications-notify):
24459 * net/xesam.el (xesam-search-engines):
24460 * net/quickurl.el (quickurl-list-insert):
24461 * vc/vc-hg.el (vc-hg-dir-printer): Fix use of case.
24462
244632011-03-15 Chong Yidong <cyd@stupidchicken.com>
24464
24465 * startup.el (command-line): Update package subdirectory regexp.
24466
244672011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
24468
24469 * allout.el (allout-abbreviate-flattened-numbering)
24470 (allout-mode-deactivate-hook): Fix up obsolescence "date".
24471
24472 * subr.el (read-char-choice): Only show the cursor after the prompt,
24473 not after the answer.
24474
244752011-03-15 Kevin Ryde <user42@zip.com.au>
24476
24477 * help-fns.el (variable-at-point): Skip leading quotes, if any
24478 (bug#8253).
24479
244802011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
24481
24482 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
24483 warning message.
24484
244852011-03-14 Michael Albinus <michael.albinus@gmx.de>
24486
24487 * shell.el (shell): When called interactively, offer to change the
24488 shell file name on remote hosts.
24489
244902011-03-13 Teodor Zlatanov <tzz@lifelogs.com>
24491
24492 * net/ldap.el (ldap-search-internal): Add `auth-source-search'
24493 integration for LDAP parameters. The host, base, user or binddn,
24494 and secret tokens can be specified in a netrc file, for instance.
24495 This is optional because an `auth-source' parameter must be
24496 specified in the search attributes.
24497
244982011-03-13 Juanma Barranquero <lekktu@gmail.com>
24499
24500 * help.el (describe-mode): Link to the mode's definition (bug#8185).
24501
245022011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
24503
24504 * ebuff-menu.el (electric-buffer-menu-mode-map): Move initialization
24505 into declaration. Remove redundant and harmful binding.
24506
245072011-03-12 Eli Zaretskii <eliz@gnu.org>
24508
24509 * files.el (file-ownership-preserved-p): Pass `integer' as an
24510 explicit 2nd argument to `file-attributes'. If the file's owner
24511 is the Administrators group on Windows, and the current user is
24512 Administrator, consider that a match.
24513
24514 * server.el (server-ensure-safe-dir): Consider server directory
24515 safe on MS-Windows if its owner is the Administrators group while
24516 the current Emacs user is Administrator. Use `=' to compare
24517 numerical UIDs, since they could be integers or floats.
24518
245192011-03-12 Juanma Barranquero <lekktu@gmail.com>
24520
24521 * vc/vc-bzr.el (vc-bzr-state): Handle bzr 2.3.0 (follow-up to bug#8170).
24522
245232011-03-12 Michael Albinus <michael.albinus@gmx.de>
24524
24525 Sync with Tramp 2.2.1.
24526
24527 * net/tramp-sh.el (tramp-methods): Exchange "%k" marker with options.
24528
24529 * net/trampver.el: Update release number.
24530
245312011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
24532
24533 * progmodes/compile.el (compilation--previous-directory): Fix up
24534 various nil/dead-marker mismatches (bug#8014).
24535 (compilation-directory-properties, compilation-error-properties):
24536 Don't call it at a position past the one we're about to change.
24537
24538 * emacs-lisp/bytecomp.el (byte-compile-make-obsolete-variable):
24539 Disable obsolescence warnings in the file that declares it.
24540
245412011-03-11 Ken Manheimer <ken.manheimer@gmail.com>
24542
24543 * allout-widgets.el (allout-widgets-tally):
24544 Initialize allout-widgets-tally as a hash table rather than nil to
24545 prevent mode-line redisplay warnings. Also, clarify the module
24546 description and fix a comment typo.
24547
245482011-03-11 Juanma Barranquero <lekktu@gmail.com>
24549
24550 * help-fns.el (describe-variable): Don't complete keywords.
24551 Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
24552
245532011-03-10 Chong Yidong <cyd@stupidchicken.com>
24554
24555 * emacs-lisp/package.el (package-version-join): Impose a standard
24556 string representation for pre/alpha/beta version lists.
24557 (package-unpack-single): Standardize the directory name by passing
24558 it through package-version-join.
24559 (package-strip-rcs-id): Accept any version string that does not
24560 signal an error in version-to-list.
24561
245622011-03-10 Michael Albinus <michael.albinus@gmx.de>
24563
24564 * simple.el (delete-trailing-whitespace): Return nil for the
24565 benefit of `write-file-functions'.
24566
245672011-03-10 Glenn Morris <rgm@gnu.org>
24568
24569 * vc/vc-hg.el (vc-hg-pull, vc-hg-merge-branch): Use vc-hg-program.
24570
24571 * vc/vc-git.el (vc-git-program): New option.
24572 (vc-git-branches, vc-git-pull, vc-git-merge-branch, vc-git-command)
24573 (vc-git--call): Use it.
24574
24575 * eshell/esh-util.el (eshell-condition-case): Doc fix.
24576
24577 * cus-edit.el (Custom-newline): If no button at point, look
24578 for a subgroup button at start-of-line. (Bug#2298)
24579
24580 * mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
24581
245822011-03-10 Julien Danjou <julien@danjou.info>
24583
24584 * avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if
24585 `cursor-type' is nil.
24586
245872011-03-09 Jay Belanger <jay.p.belanger@gmail.com>
24588
24589 * calc/calc.el (calc-mode-map): Don't bind "C-_" to `calc-missing-key'.
24590
245912011-03-09 Ken Manheimer <ken.manheimer@gmail.com>
24592
24593 * allout.el: Change so yank of distinctive-bullet items
24594 preserves the existing header prefix, rebulleting it if necessary,
24595 rather than replacing it. This is necessary for proper operation
24596 of cooperative addons like allout-widgets.
24597 (allout-make-topic-prefix, allout-rebullet-heading):
24598 Change SOLICIT arg to INSTEAD, and interpret additionally a string
24599 value as alternate bullet to be used, instead of prompting the user
24600 for a bullet character.
24601
246022011-03-09 Michael Albinus <michael.albinus@gmx.de>
24603
24604 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
24605 Do not use `tramp-file-name-port', because this returns also
24606 `tramp-default-port'.
24607
246082011-03-09 Deniz Dogan <deniz.a.m.dogan@gmail.com>
24609
24610 * net/rcirc.el (rcirc-handler-001): Remove useless
24611 with-rcirc-process-buffer.
24612 (rcirc-check-auth-status): Swap arguments to string-match.
24613
246142011-03-09 Glenn Morris <rgm@gnu.org>
24615
24616 * shell.el (shell-mode):
24617 Set comint-input-ring-size from HISTSIZE. (Bug#7889)
24618
24619 * progmodes/gdb-mi.el (gdb): Improve 2010-12-08 change.
24620 Check for GDBHISTFILE, HISTSIZE, etc. (Bug#7889)
24621
246222011-03-08 Chong Yidong <cyd@stupidchicken.com>
24623
24624 * emacs-lisp/package.el (package-refresh-contents)
24625 (package-menu-execute): Use condition-case-no-debug.
24626
246272011-03-08 Michael Albinus <michael.albinus@gmx.de>
24628
24629 * simple.el (shell-command-to-string): Use `process-file'.
24630
24631 * emacs-lisp/package.el (package-tar-file-info): Handle also
24632 remote files.
24633
24634 * emacs-lisp/package-x.el (package-upload-buffer-internal):
24635 Use `equal' for upload base check.
24636
246372011-03-08 Arni Magnusson <arnima@hafro.is> (tiny change)
24638
24639 * textmodes/texinfo.el (texinfo-environments):
24640 Add deftypecv, deftypeivar, deftypemethod, deftypeop, html. (Bug#2783)
24641
246422011-03-08 Glenn Morris <rgm@gnu.org>
24643
24644 * cus-start.el (cursor-in-non-selected-windows):
24645 Fix :set quoting oddness. (Bug#8192)
24646
24647 * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
24648 in some setf expressions. (Bug#2159)
24649
246502011-03-08 Chong Yidong <cyd@stupidchicken.com>
24651
24652 * custom.el (custom-available-themes): Return themes in
24653 alphabetical order.
24654
24655See ChangeLog.15 for earlier changes.
24656
24657;; Local Variables:
24658;; coding: utf-8
24659;; End:
24660
24661 Copyright (C) 2011-2013 Free Software Foundation, Inc.
24662
24663 This file is part of GNU Emacs.
24664
24665 GNU Emacs is free software: you can redistribute it and/or modify
24666 it under the terms of the GNU General Public License as published by
24667 the Free Software Foundation, either version 3 of the License, or
24668 (at your option) any later version.
24669
24670 GNU Emacs is distributed in the hope that it will be useful,
24671 but WITHOUT ANY WARRANTY; without even the implied warranty of
24672 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24673 GNU General Public License for more details.
24674
24675 You should have received a copy of the GNU General Public License
24676 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.