Warn about read-passwd in batch mode
[bpt/emacs.git] / lisp / ChangeLog
1 2014-06-26 Glenn Morris <rgm@gnu.org>
2
3 * subr.el (read-passwd): Warn about batch mode. (Bug#17839)
4
5 2014-06-26 Daiki Ueno <ueno@gnu.org>
6
7 * emacs-lisp/package.el (package--check-signature):
8 If package-check-signature is allow-unsigned, don't signal error when
9 we can't verify signature because of missing public key
10 (backport for bug#17625).
11
12 2014-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
13
14 * progmodes/hideif.el: Undo last change which should only go to trunk
15 (do not merge).
16
17 2014-06-26 Glenn Morris <rgm@gnu.org>
18
19 * emacs-lisp/cl-macs.el (help-add-fundoc-usage):
20 Remove outdated declaration.
21
22 * emacs-lisp/authors.el (authors-valid-file-names)
23 (authors-renamed-files-alist): Additions.
24
25 2014-06-25 Leo Liu <sdl.web@gmail.com>
26
27 * textmodes/picture.el (picture-set-tab-stops):
28 * ruler-mode.el (ruler-mode-mouse-add-tab-stop)
29 (ruler-mode-ruler): Fix to work with nil tab-stop-list.
30
31 * progmodes/asm-mode.el (asm-calculate-indentation):
32 Use indent-next-tab-stop.
33
34 * indent.el (indent-accumulate-tab-stops): New function.
35
36 2014-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
37
38 * emacs-lisp/package.el (package-list-unsigned): New var (bug#17625).
39 (package-desc-status): Obey it.
40
41 2014-06-25 Stephen Berman <stephen.berman@gmx.net>
42
43 * calendar/todo-mode.el: Fix two bugs.
44 (todo-insert-item--basic): If user cancels item insertion to
45 another category before setting priority, show original category
46 whether it is in the same or a different file.
47 (todo-set-item-priority): After selecting category, instead of
48 moving point to top, which extends an active region, restore it.
49
50 2014-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
51
52 * help-fns.el (describe-function-1): Check file-name is a string before
53 calling help-fns--autoloaded-p (bug#17564).
54
55 2014-06-24 Juri Linkov <juri@jurta.org>
56
57 * desktop.el (desktop-auto-save-enable)
58 (desktop-auto-save-disable): New functions.
59 (desktop-save-mode, desktop-auto-save-timeout): Use them.
60 (desktop-read): Disable the autosave before loading the desktop,
61 and enable afterwards. (Bug#17351)
62
63 2014-06-24 Stefan Monnier <monnier@iro.umontreal.ca>
64
65 Fix some indentation problem with \; and pipes (bug#17842).
66 * progmodes/sh-script.el (sh-mode-syntax-table): Set syntax of ;|&.
67 (sh-smie--default-forward-token, sh-smie--default-backward-token):
68 New functions.
69 (sh-smie-sh-forward-token, sh-smie-sh-backward-token)
70 (sh-smie-rc-forward-token, sh-smie-rc-backward-token): Use them.
71 (sh-smie-sh-rules): Fix indentation of a pipe at BOL.
72
73 2014-06-24 Eli Zaretskii <eliz@gnu.org>
74
75 * international/fontset.el (script-representative-chars):
76 Add representative characters for scripts added in Unicode 7.0.
77 (otf-script-alist): Synchronize with the latest registry of OTF
78 script tags.
79
80 * international/characters.el (char-script-table): Update for
81 scripts added and codepoint ranges changed in Unicode 7.0.
82
83 2014-06-23 Leo Liu <sdl.web@gmail.com>
84
85 * align.el (align-adjust-col-for-rule): Unbreak due to defaulting
86 tab-stop-list to nil. (Bug#16381)
87
88 * indent.el (indent-next-tab-stop): Rename from indent--next-tab-stop.
89 (indent-rigidly-left-to-tab-stop)
90 (indent-rigidly-right-to-tab-stop, tab-to-tab-stop)
91 (move-to-tab-stop): Change callers.
92
93 2014-06-22 Eli Zaretskii <eliz@gnu.org>
94
95 * skeleton.el (skeleton-insert): Yet another fix of the doc string
96 wrt behavior of \n as the first/last element of a skeleton.
97
98 2014-06-22 Michael Albinus <michael.albinus@gmx.de>
99
100 * net/tramp-adb.el (tramp-adb-handle-process-file):
101 * net/tramp-sh.el (tramp-sh-handle-process-file):
102 * net/tramp-smb.el (tramp-smb-handle-process-file): Do not raise
103 the output buffer when DISPLAY is non-nil. (Bug#17815)
104
105 2014-06-21 Glenn Morris <rgm@gnu.org>
106
107 * play/landmark.el (landmark-move-down, landmark-move-up):
108 Fix 2007-10-20 change - preserve horizontal position.
109
110 2014-06-21 Fabián Ezequiel Gallina <fgallina@gnu.org>
111
112 Fix completion retrieval parsing (bug#17209).
113 * progmodes/python.el (python-mode):
114 (python-util-strip-string): New function.
115 (python-shell-completion-get-completions): Use it.
116
117 2014-06-21 Eli Zaretskii <eliz@gnu.org>
118
119 * skeleton.el (skeleton-insert): Fix last change.
120
121 2014-06-21 Fabián Ezequiel Gallina <fgallina@gnu.org>
122
123 Enhancements for outline integration (bug#17796).
124 * progmodes/python.el (python-mode): Properly set
125 outline-heading-end-regexp so that comments after colons for
126 defuns are supported.
127
128 2014-06-21 Eli Zaretskii <eliz@gnu.org>
129
130 * skeleton.el (skeleton-insert): Doc fix.
131
132 2014-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
133
134 * emacs-lisp/smie.el (smie-config--guess): Fix typo.
135 (smie-config-guess): Use smie-config-local so the rules are obeyed
136 (bug#17818).
137
138 * mouse.el (mouse-drag-line): Don't re-add to unread-comment-events,
139 since it's already done inside the loop (bug#17819).
140
141 2014-06-20 Martin Rudalics <rudalics@gmx.at>
142
143 * mouse.el (mouse-drag-line): Re-remove code initially removed
144 on 2013-03-09 and inadvertently reintroduced on 2013-11-30
145 (Bug#17819).
146
147 2014-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
148
149 * progmodes/sh-script.el (sh-smie-sh-rules): For { after &&, don't
150 align with the surrounding parent (bug#17721).
151
152 2014-06-20 Eli Zaretskii <eliz@gnu.org>
153
154 * textmodes/texinfo.el (texinfo-mode): Set skeleton-end-newline
155 locally to nil.
156 (texinfo-insert-block, texinfo-insert-@end)
157 (texinfo-insert-@example, texinfo-insert-@quotation): Adjust to
158 local setting of skeleton-end-newline by adding an explicit \n to
159 the skeletons where appropriate. (Bug#17801)
160
161 2014-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
162
163 * emacs-lisp/smie.el (smie--hanging-eolp-function): New var.
164 (smie-indent--hanging-p): Use it.
165 * progmodes/sh-script.el (sh-set-shell): Set it (bug#17621).
166
167 2014-06-20 Leo Liu <sdl.web@gmail.com>
168
169 * simple.el (read-quoted-char): Don't let help chars pop up help
170 buffer. (Bug#16617)
171
172 2014-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
173
174 * progmodes/sh-script.el (sh-smie-sh-rules): Use same rule for && as
175 for | (bug#17621).
176
177 2014-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
178
179 * xt-mouse.el (xterm-mouse-translate-1): Fix last change (bug#17776).
180 (xterm-mouse--read-event-sequence-1000): Drop unknown events instead of
181 burping.
182
183 2014-06-18 Eli Zaretskii <eliz@gnu.org>
184
185 * term/w32-win.el (dynamic-library-alist): Support giflib 5.1.0
186 and later. (Bug#17790)
187
188 2014-06-18 Juri Linkov <juri@jurta.org>
189
190 * dired.el (dired-mark-pop-up): Let-bind display-buffer-mark-dedicated
191 to `soft'. (Bug#17554)
192
193 2014-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
194
195 * delsel.el (electric-newline-and-maybe-indent): Mark it as well
196 (bug#17737).
197
198 2014-06-16 Dmitry Gutov <dgutov@yandex.ru>
199
200 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Don't fontify
201 `!' in `!~' with `font-lock-negation-char-face'. (Bug#17732)
202
203 2014-06-15 Michael Albinus <michael.albinus@gmx.de>
204
205 * net/dbus.el (dbus-call-method): Push only non D-Bus events into
206 `unread-command-events'.
207
208 2014-06-14 Glenn Morris <rgm@gnu.org>
209
210 * progmodes/cc-langs.el: Require cl-lib. (Bug#17463)
211 Replace delete-duplicates and mapcan by cl- versions throughout.
212 And cl-macroexpand-all by macroexpand-all.
213 (delete-duplicates, mapcan, cl-macroexpand-all): No need to declare.
214
215 2014-06-14 Eli Zaretskii <eliz@gnu.org>
216
217 * subr.el (posn-col-row): Doc fix. (Bug#17768)
218
219 2014-06-14 Juri Linkov <juri@jurta.org>
220
221 * bindings.el: Put `ascii-character' property on keypad keys
222 mapped to characters. (Bug#17759)
223
224 2014-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
225
226 * emacs-lisp/smie.el (smie-next-sexp): Fix up "other-end" info when
227 bumping forward into a closing paren (bug#17761).
228
229 * term/xterm.el (xterm--version-handler): Work around for OSX
230 Terminal.app (bug#17607).
231
232 2014-06-08 Glenn Morris <rgm@gnu.org>
233
234 * startup.el (initial-buffer-choice): Doc fix.
235 Reset :version (adding an option does not merit a :version bump).
236
237 * bookmark.el (bookmark-load):
238 * uniquify.el (uniquify-buffer-name-style): Doc fixes.
239
240 2014-06-06 Juri Linkov <juri@jurta.org>
241
242 * desktop.el: Activate auto-saving on window configuration changes.
243 (desktop-save-mode, desktop-auto-save-timeout): Add/remove
244 `desktop-auto-save-set-timer' to/from `window-configuration-change-hook'.
245 (desktop-auto-save-set-timer): Change REPEAT arg of
246 `run-with-idle-timer' from t to nil.
247 http://lists.gnu.org/archive/html/emacs-devel/2014-06/msg00147.html
248
249 2014-06-06 Santiago Payà i Miralta <santiagopim@gmail.com>
250
251 * vc/vc-hg.el (vc-hg-working-revision): Use "hg parent" and
252 vc-hg-command (bug#17570).
253
254 2014-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
255
256 * international/mule-cmds.el (ucs-names): Add special entry for BEL
257 (bug#17702).
258
259 2014-06-06 Glenn Morris <rgm@gnu.org>
260
261 * startup.el (window-setup-hook): Doc fix.
262
263 2014-06-05 Glenn Morris <rgm@gnu.org>
264
265 * emacs-lisp/package.el (package-check-signature)
266 (package-unsigned-archives): Doc fixes.
267
268 2014-06-03 Martin Rudalics <rudalics@gmx.at>
269
270 * window.el (display-buffer-use-some-window): Don't make window
271 used smaller than it was before (Bug#17671).
272
273 2014-06-03 Eli Zaretskii <eliz@gnu.org>
274
275 * menu-bar.el (menu-bar-open): Fix last change: use the PC
276 'redisplay' instead of '(sit-for 0)'.
277
278 2014-06-03 Michael Albinus <michael.albinus@gmx.de>
279
280 * net/tramp.el (tramp-ssh-controlmaster-options): Improve search
281 regexp. (Bug#17653)
282
283 2014-06-03 Glenn Morris <rgm@gnu.org>
284
285 * emacs-lisp/package.el (package-pinned-packages): Doc fix.
286
287 2014-06-02 Eli Zaretskii <eliz@gnu.org>
288
289 * menu-bar.el (menu-bar-open): Fix invocation via M-x.
290
291 2014-06-01 Eli Zaretskii <eliz@gnu.org>
292
293 * simple.el (keyboard-quit): Force update of mode lines, to remove
294 the "Def" indicator, if we were defining a macro. (Bug#17615)
295
296 2014-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
297
298 * minibuffer.el (minibuffer-force-complete-and-exit):
299 Obey minibuffer-default (bug#17545).
300
301 * progmodes/js.el (js-indent-line): Don't mix columns and chars
302 (bug#17619).
303
304 2014-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
305
306 * subr.el (set-transient-map): Don't wait for some "nested"
307 transient-map to finish if we're only supposed to be active for
308 the next command (bug#17642).
309
310 2014-05-31 Leo Liu <sdl.web@gmail.com>
311
312 * emacs-lisp/gv.el (window-buffer, window-display-table)
313 (window-dedicated-p, window-hscroll, window-point, window-start):
314 Fix gv-expander. (Bug#17630)
315
316 2014-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
317
318 * mouse.el (mouse-posn-property): Ignore posn-point for mode-line
319 clicks (bug#17633).
320
321 * leim/quail/latin-pre.el ("latin-2-prefix"): Use ",," rather than ", "
322 for the single comma, since ", " is *very* common in normal French text
323 (bug#17643).
324
325 2014-05-30 Glenn Morris <rgm@gnu.org>
326
327 * emacs-lisp/package.el (package-check-signature)
328 (package-unsigned-archives): Fix :version.
329
330 2014-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
331
332 * subr.el (sit-for): Don't run input-methods (bug#15614).
333
334 2014-05-28 Glenn Morris <rgm@gnu.org>
335
336 * cus-start.el: Fix some :version numbers.
337
338 2014-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
339
340 * simple.el (deactivate-mark): Set mark-active to nil even if
341 deactivation is done via setting transient-mark-mode to nil,
342 since one is buffer-local and the other is global.
343
344 * emacs-lisp/byte-opt.el (byte-optimize-binary-predicate): Don't assume
345 there can't be more than 2 arguments (bug#17584).
346
347 2014-05-27 Glenn Morris <rgm@gnu.org>
348
349 * simple.el (filter-buffer-substring-functions)
350 (filter-buffer-substring-function, buffer-substring-filters)
351 (filter-buffer-substring, buffer-substring--filter): Doc fixes.
352
353 * minibuffer.el (completion-in-region-functions, completion-in-region)
354 (completion--in-region): Doc fixes.
355
356 * abbrev.el (abbrev-expand-functions, abbrev-expand-function)
357 (expand-abbrev, abbrev--default-expand): Doc fixes.
358
359 2014-05-26 Paul Eggert <eggert@cs.ucla.edu>
360
361 Include sources used to create macuvs.h.
362 * international/README: Refer to the Unicode Terms of Use rather
363 than copying it bodily here, as that simplifies maintenance.
364
365 2014-05-25 Andreas Schwab <schwab@linux-m68k.org>
366
367 * cus-face.el (custom-face-attributes): Add :distant-foreground.
368
369 2014-05-25 Martin Rudalics <rudalics@gmx.at>
370
371 * window.el (window--dump-frame): Remove interactive
372 specification.
373
374 2014-05-23 Glenn Morris <rgm@gnu.org>
375
376 * hippie-exp.el (he-line-search-regexp):
377 Handle comint-prompt-regexp containing subgroups. (Bug#17529)
378
379 2014-05-23 Stephen Berman <stephen.berman@gmx.net>
380
381 * calendar/todo-mode.el: Remove dependence on auto-mode-alist,
382 to avoid errors when trying to create or visit a file foo.todo
383 located outside to todo-directory, and to allow having such files
384 without them being tied to Todo mode (bug#17482).
385 (todo-show, todo-move-category, todo-merge-category, todo-find-archive)
386 (todo-archive-done-item, todo-find-filtered-items-file)
387 (todo-filter-items, todo-find-item, todo-diary-goto-entry)
388 (todo-category-completions, todo-read-category): When visiting a
389 Todo file, make sure we're in the right mode and the buffer local
390 variables are set.
391 (todo-make-categories-list, todo-reset-nondiary-marker)
392 (todo-reset-done-string, todo-reset-comment-string):
393 After processing all Todo files, kill the buffers of those files that
394 weren't being visited before the processing.
395 (todo-display-as-todo-file, todo-add-to-buffer-list)
396 (todo-visit-files-commands): Comment out.
397 (todo-modes-set-3, todo-mode): Comment out additions to find-file-hook.
398 (auto-mode-alist): Remove add-to-list calls making Todo file
399 extensions unrestrictedly tied to Todo modes.
400
401 2014-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
402
403 * emacs-lisp/nadvice.el (advice--member-p): Change second arg.
404 (advice-function-member-p): Tell it to check both names and functions
405 (bug#17531).
406 (advice--add-function): Adjust call accordingly.
407
408 2014-05-23 Stephen Berman <stephen.berman@gmx.net>
409
410 * calendar/todo-mode.el: Miscellaneous bug fixes.
411 (todo-delete-file): When deleting an archive but not its todo
412 file, make sure to update the todo file's category sexp.
413 (todo-move-category): Keep the moved category's name unless the
414 file moved to already has a category with that name. If the
415 numerically last category of the source file was moved, make the
416 first category current to avoid selecting a nonexisting category.
417 (todo-merge-category): Fix implementation to make merging to a
418 category in another file work as documented. Eliminate now
419 insufficient and unnecessary renaming of archive category, correct
420 document string accordingly, and clarify it. If the numerically
421 last category of the source file was merged, make the first
422 category current to avoid selecting a nonexisting category.
423 (todo-archive-done-item): When there are marked items and point
424 happens to be on an unmarked item, ignore the latter. Don't leave
425 point below last item after archiving marked items.
426 (todo-unarchive-items): Fix logic to ensure unarchiving an item
427 from an archive with only one category deletes the archive only
428 when the category is empty after unarchiving. Make sure the todo
429 file's category sexp is updated.
430 (todo-read-file-name): Allow an existing file name even when it is
431 not required (todo-move-category needs this to work as documented).
432 (todo-add-file): Call todo-validate-name to reject the name of an
433 existing todo file (needed due to fix in todo-read-file-name).
434 (todo-reset-nondiary-marker): Also reset in filtered items files.
435 (todo-reset-done-string, todo-reset-comment-string): Also reset in
436 regexp filtered items files.
437 (todo-reset-highlight-item): Also reset in filtered items files.
438 Fix incorrect variable reference in document string.
439
440 2014-05-22 Glenn Morris <rgm@gnu.org>
441
442 * window.el (window--dump-frame): Avoid error in --without-x builds.
443
444 2014-05-21 Glenn Morris <rgm@gnu.org>
445
446 * nxml/nxml-mode.el (xml-mode): Only define this alias once.
447
448 2014-05-21 Eli Zaretskii <eliz@gnu.org>
449
450 * frame.el (set-frame-font): Doc fix.
451
452 * menu-bar.el (menu-set-font): Doc fix. (Bug#17532)
453
454 2014-05-21 Dmitry Gutov <dgutov@yandex.ru>
455
456 * emacs-lisp/package.el (package--download-one-archive):
457 Use `write-region' instead of `save-buffer' to avoid running various
458 hooks. (Bug#17155)
459 (describe-package-1): Same. Insert newline at the end of the
460 buffer if appropriate.
461
462 2014-05-20 Juri Linkov <juri@jurta.org>
463
464 * avoid.el (mouse-avoidance-set-mouse-position): Don't raise frame.
465 (mouse-avoidance-ignore-p): Remove `switch-frame', add `focus-out'.
466 Add more modifiers: meta, control, shift, hyper, super, alt.
467 (Bug#17439)
468
469 * avoid.el (mouse-avoidance-banish-position): Fix defcustom :options
470 to allow changing its value with `set-variable'.
471
472 2014-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
473
474 * progmodes/scheme.el (scheme-mode-syntax-table): Remove hack for
475 #; comments.
476 (scheme-syntax-propertize, scheme-syntax-propertize-sexp-comment):
477 New functions.
478 (scheme-mode-variables): Set syntax-propertize-function instead of
479 font-lock-syntactic-face-function.
480 (scheme-font-lock-syntactic-face-function): Delete.
481
482 * emacs-lisp/lisp.el (end-of-defun): Ensure we move (bug#17274).
483
484 2014-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
485
486 * emacs-lisp/timer.el (timer-event-handler): Don't run if canceled
487 (bug#17392).
488
489 2014-05-17 Michael Albinus <michael.albinus@gmx.de>
490
491 * net/tramp-sh.el (tramp-find-inline-encoding): Do not match "%%t"
492 for a temporary file name.
493
494 2014-05-17 Eli Zaretskii <eliz@gnu.org>
495
496 * simple.el (line-move-ignore-invisible): Doc fix. (Bug#17511)
497
498 2014-05-16 Michael Albinus <michael.albinus@gmx.de>
499
500 * net/dbus.el (dbus-init-bus, dbus-call-method)
501 (dbus-call-method-asynchronously, dbus-send-signal)
502 (dbus-method-return-internal, dbus-method-error-internal):
503 Check, whether Emacs has been compiled with D-Bus support. (Bug#17508)
504
505 2014-05-14 Nicolas Richard <theonewiththeevillook@yahoo.fr>
506
507 * emacs-lisp/eieio-opt.el (eieio-help-class): Correctly deal with
508 methods which do not have a doc string. (Bug#17490)
509
510 2014-05-14 Stephen Berman <stephen.berman@gmx.net>
511 Stefan Monnier <monnier@iro.umontreal.ca>
512
513 * minibuffer.el (completion-pcm--merge-try): Merge trailing / with
514 suffix (bug#15419).
515
516 2014-05-14 Glenn Morris <rgm@gnu.org>
517
518 * vc/emerge.el (emerge-temp-file-prefix):
519 Make pointless option obsolete.
520 (emerge-temp-file-mode): Make non-functional option obsolete.
521
522 2014-05-13 Michael Albinus <michael.albinus@gmx.de>
523
524 * net/browse-url.el (browse-url):
525 Use `unhandled-file-name-directory' when setting `default-directory',
526 in order to circumvent stalled remote connections. (Bug#17425)
527
528 2014-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
529
530 * emacs-lisp/nadvice.el (advice--interactive-form): Don't get fooled
531 into autoloading just because of a silly indirection.
532
533 2014-05-11 Santiago Payà i Miralta <santiagopim@gmail.com> (tiny change)
534
535 * vc/vc-hg.el (vc-hg-unregister): New function. (Bug#17454)
536
537 2014-05-11 Glenn Morris <rgm@gnu.org>
538
539 * emacs-lisp/find-gc.el: Move to ../admin.
540
541 2014-05-10 Glenn Morris <rgm@gnu.org>
542
543 * printing.el (pr-version):
544 * ps-print.el (ps-print-version): Also mention bug-gnu-emacs.
545
546 * net/browse-url.el (browse-url-mosaic):
547 Create /tmp/Mosaic.PID as a private file.
548
549 2014-05-10 Stefan Monnier <monnier@iro.umontreal.ca>
550
551 * emacs-lisp/nadvice.el: Support adding a given function multiple times.
552 (advice--member-p): If name is given, only compare the name.
553 (advice--remove-function): Don't stop at the first match.
554 (advice--normalize-place): New function.
555 (add-function, remove-function): Use it.
556 (advice--add-function): Pass the name, if any, to
557 advice--remove-function.
558
559 2014-05-09 Philipp Rumpf <prumpf@gmail.com> (tiny change)
560
561 * electric.el (electric-indent-post-self-insert-function): Don't use
562 `pos' after modifying the buffer (bug#17449).
563
564 2014-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
565
566 * subr.el (function-put): Add function.
567
568 2014-05-09 Stephen Berman <stephen.berman@gmx.net>
569
570 * calendar/todo-mode.el (todo-insert-item-from-calendar):
571 Correct argument list to conform to todo-insert-item--basic.
572
573 2014-05-09 Glenn Morris <rgm@gnu.org>
574
575 * files.el (cd-absolute): Test if directory is accessible
576 rather than executable. (Bug#17330)
577
578 * progmodes/compile.el (recompile):
579 Handle C-u M-x recompile from a non-compilation buffer. (Bug#17444)
580
581 2014-05-08 Juri Linkov <juri@jurta.org>
582
583 * dired.el (dired-check-switches, dired-switches-recursive-p):
584 New functions. (Bug#17218)
585 (dired-switches-escape-p, dired-move-to-end-of-filename):
586 Use `dired-check-switches'.
587 (dired-insert-old-subdirs, dired-build-subdir-alist)
588 (dired-sort-R-check): Use `dired-switches-recursive-p'.
589
590 2014-05-08 Glenn Morris <rgm@gnu.org>
591
592 * net/browse-url.el (browse-url-mosaic):
593 Be careful when writing /tmp/Mosaic.PID. (Bug#17428)
594 This is CVE-2014-3423.
595
596 2014-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
597
598 * xt-mouse.el: Drop spurious/oddly shaped events (bug#17378).
599 (xterm-mouse--read-event-sequence-1000): Return nil if something
600 looks fishy.
601 (xterm-mouse-event): Propagate it.
602 (xterm-mouse-translate-1): Handle it.
603
604 2014-05-07 Stephen Berman <stephen.berman@gmx.net>
605
606 * calendar/todo-mode.el (todo-insert-item--apply-args): When all
607 four slots of the parameter list are filled, make sure to pass it
608 to the argument list of todo-insert-item--basic.
609
610 2014-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
611
612 * emacs-lisp/package.el (package-compute-transaction): Topological sort.
613 Add optional `seen' argument to detect and break infinite loops.
614
615 2014-05-06 Eli Zaretskii <eliz@gnu.org>
616
617 * emacs-lisp/find-gc.el (find-gc-unsafe, find-unsafe-funcs)
618 (trace-unsafe, trace-use-tree): Make parentheses style be
619 according to Emacs style.
620
621 2014-05-06 Michael Albinus <michael.albinus@gmx.de>
622
623 * net/tramp-sh.el (tramp-remote-process-environment):
624 Remove HISTFILE and HISTSIZE; it's too late to set them here.
625 Add :version entry.
626 (tramp-open-shell): Do not let-bind `tramp-end-of-output'.
627 Add "HISTFILE=/dev/null" to the shell's env arguments. Do not send
628 extra "PSx=..." commands.
629 (tramp-maybe-open-connection): Setenv HISTFILE to /dev/null.
630 (Bug#17295)
631
632 (tramp-uudecode): Replace the hard-coded temporary file name by a
633 format specifier.
634 (tramp-remote-coding-commands): Enhance docstring.
635 (tramp-find-inline-encoding): Replace "%t" by a temporary file
636 name. (Bug#17415)
637 This is CVE-2014-3424.
638
639 2014-05-06 Glenn Morris <rgm@gnu.org>
640
641 * emacs-lisp/find-gc.el (find-gc-source-directory): Give it a value.
642 (find-gc-source-files): Update some names.
643 (trace-call-tree): Simplify and update.
644 Avoid predictable temp-file names. (http://bugs.debian.org/747100)
645 This is CVE-2014-3422.
646
647 2014-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
648
649 * minibuffer.el (completion--try-word-completion): Revert fix for
650 Bug#15980 (bug#17375).
651
652 * xt-mouse.el (xterm-mouse--read-event-sequence-1000): (bug#17378)
653 Always store button numbers in the same way in xterm-mouse-last;
654 Don't burp is xterm-mouse-last is not set as expected.
655 Never return negative indices.
656
657 2014-05-05 Dmitry Gutov <dgutov@yandex.ru>
658
659 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
660 Backtrack one char if the global/char-literal var matcher hits
661 inside a string. The next char could be the beginning of an
662 expression expansion.
663
664 2014-05-05 Glenn Morris <rgm@gnu.org>
665
666 * help-fns.el (describe-function-1): Test for an autoload before a
667 macro, since `macrop' works on autoloads. (Bug#17410)
668
669 2014-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
670
671 * electric.el (electric-indent-functions-without-reindent): Add yaml.
672
673 * minibuffer.el (completion-table-with-quoting) <completion--unquote>:
674 Make sure the new point we return is within the new string (bug#17239).
675
676 2014-05-03 Eli Zaretskii <eliz@gnu.org>
677
678 * mail/rmailsum.el (rmail-new-summary-1): Fix a typo in a comment.
679
680 2014-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
681
682 * vc/ediff-diff.el (ediff-set-fine-diff-properties-in-one-buffer):
683 Use nil rather than `default' for the "default" appearance (bug#17388).
684 * vc/ediff-util.el (ediff-inferior-compare-regions)
685 (ediff-toggle-autorefine, ediff-unselect-difference): Don't use
686 a misleading `default' value when it's really a boolean.
687 * vc/ediff-init.el (ediff-set-overlay-face): Don't set help-echo if the
688 overlay is not visible.
689
690 2014-05-02 Stephen Berman <stephen.berman@gmx.net>
691
692 * calendar/todo-mode.el (todo-edit-file): Use display-warning.
693 (todo-menu): Uncomment and update.
694
695 2014-05-02 Stephen Berman <stephen.berman@gmx.net>
696
697 * calendar/todo-mode.el: Reimplement item editing to have the same
698 basic user interface as item insertion, and make small UI and
699 larger internal improvements to the latter.
700 (todo-insert-item): Add reference to the Todo mode user manual to
701 the documentation string.
702 (todo-insert-item--basic): Rename from todo-basic-insert-item and
703 adjust all callers. Change signature to combine diary and
704 nonmarking arguments. Incorporate functionality of deleted item
705 copying command and add error checking. Remove detailed
706 descriptions of the arguments from the documentation string, since
707 this is treated in the Todo mode user manual.
708 (todo-copy-item, todo-edit-multiline-item)
709 (todo-edit-done-item-comment, todo-edit-item-header)
710 (todo-edit-item-time, todo-edit-item-date-from-calendar)
711 (todo-edit-item-date-to-today, todo-edit-item-date-day-name)
712 (todo-edit-item-date-year, todo-edit-item-date-month)
713 (todo-edit-item-date-day, todo-edit-item-diary-nonmarking):
714 Remove.
715 (todo-edit-item): Reimplement as wrapper command for
716 todo-edit-item--next-key and make it distinguish done and not done
717 todo items.
718 (todo-edit-item--text): New function, replacing old command
719 todo-edit-item and incorporating deleted commands
720 todo-edit-multiline-item and todo-edit-done-item-comment.
721 (todo-edit-item--header): Rename from todo-basic-edit-item-header.
722 Use only numeric value of prefix argument. Remove detailed
723 descriptions of the arguments from the documentation string, since
724 this is treated in the Todo mode user manual.
725 (todo-edit-item--diary-inclusion): New function, replacing old
726 command todo-edit-item-diary-inclusion and incorporating and fixing
727 functionality of deleted command todo-edit-item-diary-nonmarking,
728 making sure to remove todo-nondiary-marker when adding
729 diary-nonmarking-symbol.
730 (todo-edit-category-diary-inclusion): Make sure to delete
731 diary-nonmarking-symbol when adding todo-nondiary-marker.
732 (todo-edit-category-diary-nonmarking): Fix indentation.
733 (todo-insert-item--parameters): Group diary and nonmarking
734 parameters together.
735 (todo-insert-item--apply-args): Adjust to signature of
736 todo-insert-item--basic and incorporate copy parameter.
737 Make small code improvements.
738 (todo-insert-item--next-param): Improve prompt and adjust it to
739 new parameter grouping. Remove obsolete code.
740 (todo-edit-item--param-key-alist)
741 (todo-edit-item--date-param-key-alist)
742 (todo-edit-done-item--param-key-alist): New defconsts.
743 (todo-edit-item--prompt): New variable.
744 (todo-edit-item--next-key): New function.
745 (todo-key-bindings-t): Bind "e" to todo-edit-item.
746 Remove bindings of deleted commands.
747
748 2014-05-02 Leo Liu <sdl.web@gmail.com>
749
750 * emacs-lisp/cl-macs.el (cl-deftype): Fix indentation.
751
752 2014-05-01 Glenn Morris <rgm@gnu.org>
753
754 * allout-widgets.el (allout-widgets-tally)
755 (allout-decorate-item-guides):
756 * menu-bar.el (menu-bar-positive-p):
757 * minibuffer.el (completion-pcm-complete-word-inserts-delimiters):
758 * progmodes/gdb-mi.el (gdbmi-same-start, gdbmi-is-number):
759 * progmodes/js.el (js--inside-param-list-p)
760 (js--inside-dojo-class-list-p, js--forward-destructuring-spec):
761 * progmodes/prolog.el (region-exists-p):
762 * progmodes/verilog-mode.el (verilog-scan-cache-ok-p):
763 * textmodes/reftex-parse.el (reftex-using-biblatex-p):
764 Doc fixes (replace `iff').
765
766 2014-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
767
768 * mpc.el (mpc-volume-mouse-set): Don't burp at the boundaries.
769
770 2014-04-30 Eli Zaretskii <eliz@gnu.org>
771
772 * dired.el (dired-initial-position-hook, dired-initial-position):
773 Doc string fixes.
774
775 2014-04-29 Glenn Morris <rgm@gnu.org>
776
777 * mail/rmail.el (rmail-quit): Handle killed summaries. (Bug#17283)
778
779 2014-04-27 Matthias Dahl <matthias.dahl@binary-island.eu>
780
781 * faces.el (face-spec-recalc): Apply X resources only after the
782 defface spec has been applied. Thus, X resources are no longer
783 overriden by the defface spec which also fixes issues on win32 where
784 the toolbar coloring was wrong because it is set through X resources
785 and was (wrongfully) overriden. (Bug#16694)
786
787 2014-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
788
789 * textmodes/rst.el (electric-pair-pairs): Declare.
790 (rst-mode): Set it (bug#17131).
791
792 2014-04-27 Juri Linkov <juri@jurta.org>
793
794 * desktop.el (desktop-value-to-string): Let-bind `print-length'
795 and `print-level' to nil. (Bug#17351)
796
797 2014-04-25 Nicolas Richard <theonewiththeevillook@yahoo.fr>
798
799 * battery.el (battery-update): Handle the case where battery
800 status is "N/A" (bug#17319).
801
802 2014-04-24 Eli Zaretskii <eliz@gnu.org>
803
804 * tooltip.el (tooltip-show-help-non-mode, tooltip-show-help):
805 Use equal-including-properties to compare help-echo strings (bug#17331).
806
807 2014-04-24 Leo Liu <sdl.web@gmail.com>
808
809 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
810 Fix syntax for @. (Bug#17325)
811
812 2014-04-24 Daniel Colascione <dancol@dancol.org>
813
814 * emacs-lisp/cl.el (gv): Require gv early to break eager
815 macro-expansion cycles.
816
817 2014-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
818
819 * simple.el (region-active-p): Check there's a mark (bug#17324).
820
821 * simple.el (completion-list-mode-map): Use choose-completion for the
822 mouse binding as well (bug#17302).
823 (completion-list-mode, completion-setup-function): Adjust docstring and
824 echo area message accordingly.
825 * progmodes/idlwave.el (idlwave-choose-completion): Adjust to new
826 calling convention of choose-completion.
827 * comint.el (comint-dynamic-list-completions):
828 * term.el (term-dynamic-list-completions): Accept choose-completion.
829
830 * progmodes/perl-mode.el (perl-syntax-propertize-function): Slash after
831 &, |, +, - and * can't be a division (bug#17317).
832
833 2014-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
834
835 * term/xterm.el (xterm--version-handler): Don't use modern xterm
836 features on gnome-terminal (bug#16988).
837
838 2014-04-22 Michael Heerdegen <michael_heerdegen@web.de>
839
840 * dired.el (dired-insert-set-properties): Do not consider
841 subdirectory headings and empty lines to be information that
842 `dired-hide-details-mode' should hide. (Bug#17228)
843
844 2014-04-22 Michael Albinus <michael.albinus@gmx.de>
845
846 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
847 Remove test messages.
848 (tramp-do-copy-or-rename-file-out-of-band): Do not quote `source'
849 and `target' twice.
850
851 2014-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
852
853 * dframe.el (dframe-get-focus): Remove `hook' argument (bug#17311).
854 * speedbar.el (speedbar-get-focus): Run the "hook" afterwards instead.
855
856 * emacs-lisp/cl-macs.el (cl--loop-let): Avoid `nil' as var name.
857
858 2014-04-21 Michael Albinus <michael.albinus@gmx.de>
859
860 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
861 Set "IFS=" when using read builtin, in order to preserve spaces in
862 the file name. Add test messages for hunting a bug on hydra.
863 (tramp-get-ls-command): Undo using "-b" argument. It doesn't help.
864
865 2014-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
866
867 * progmodes/prog-mode.el (prettify-symbols--compose-symbol):
868 Don't prettify a word within a symbol.
869
870 2014-04-20 Michael Albinus <michael.albinus@gmx.de>
871
872 * net/tramp-sh.el (tramp-get-ls-command): Use "-b" argument if
873 possible.
874
875 2014-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
876
877 * progmodes/sh-script.el (sh-smie--sh-keyword-p): Handle variable
878 assignments such as "case=hello" (bug#17297).
879
880 2014-04-18 Michael Albinus <michael.albinus@gmx.de>
881
882 * net/tramp.el (tramp-run-real-handler, tramp-file-name-handler):
883 Do not autoload.
884 (tramp-file-name-handler, tramp-completion-file-name-handler):
885 Revert patch from 2014-04-10, it isn't necessary anymore.
886 (tramp-autoload-file-name-handler)
887 (tramp-register-autoload-file-name-handlers): New defuns.
888 (top): Autoload call of `tramp-register-autoload-file-name-handlers'.
889 (tramp-register-file-name-handlers): Remove also
890 `tramp-autoload-file-name-handler' from `file-name-handler-list'.
891 Do not autoload its invocation, but eval it after loading of 'tramp.
892
893 * net/tramp-adb.el (tramp-unload-hook): Unload `tramp-adb'.
894
895 * net/tramp-compat.el (tramp-unload-hook): Unload `tramp-loaddefs'.
896
897 2014-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
898
899 * nxml/nxml-mode.el (nxml-fontify-matcher): Make sure propertization
900 was done (bug#17264).
901 * nxml/xmltok.el (xmltok-scan-after-comment-open): Extend unclosed
902 comment to EOB.
903
904 * progmodes/perl-mode.el (perl-calculate-indent): Don't auto-indent in
905 here-documents (bug#17262).
906
907 2014-04-16 Eli Zaretskii <eliz@gnu.org>
908
909 * term/pc-win.el (x-list-fonts, x-get-selection-value):
910 Provide doc strings, as required by snarf-documentation.
911
912 2014-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
913
914 * ps-def.el (ps-generate-postscript-with-faces1): Use the new `sorted'
915 arg of overlays-at. Use `invisible-p'.
916
917 * obsolete/lucid.el (extent-at):
918 * htmlfontify.el (hfy-overlay-props-at): Use the new `sorted' arg of
919 overlays-at.
920 (hfy-fontify-buffer): Remove unused var `orig-ovls'.
921
922 2014-04-14 João Távora <joaotavora@gmail.com>
923
924 * net/shr.el (shr-expand-url): Use `expand-file-name' for relative
925 links. (Bug#17217).
926
927 2014-04-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
928
929 * vc/ediff-diff.el (ediff-set-fine-diff-properties-in-one-buffer):
930 Use mapc to loop over a vector. (Bug#17257).
931
932 2014-04-13 Michael Albinus <michael.albinus@gmx.de>
933
934 * net/tramp-sh.el (tramp-sh-handle-file-truename): Revert previous
935 patch, there are new problems with file names containing spaces.
936 Get rid of backticks. (Bug#17238)
937
938 2014-04-13 João Távora <joaotavora@gmail.com>
939
940 * elec-pair.el (electric-pair--syntax-ppss): Simplify and fix
941 possible bug.
942
943 2014-04-13 Eli Zaretskii <eliz@gnu.org>
944
945 * frame.el (blink-cursor-blinks, blink-cursor-blinks-done): Doc fixes.
946 (blink-cursor-mode): Mention customization variables and the
947 effect of 'blink-cursor-blinks'.
948
949 2014-04-12 Barry O'Reilly <gundaetiapo@gmail.com>
950
951 * simple.el (undo): Prevent insertion of identity mapping into
952 undo-equiv-table so as undo-only does not inf loop in the presence
953 of consecutive nils in undo list.
954
955 2014-04-12 Matthias Dahl <matthias.dahl@binary-island.eu>
956
957 * faces.el (make-face): Deprecate optional argument as it is no
958 longer needed/used since the conditional X resources handling
959 has been pushed down to make-face-x-resource-internal itself.
960 (make-empty-face): Don't pass optional argument to make-face.
961
962 2014-04-12 Eli Zaretskii <eliz@gnu.org>
963
964 * international/characters.el <standard-case-table>: Add entries
965 for letters from the Coptic block u+2C80-u+2CFF. (Bug#17243)
966 Set category of Coptic characters be 'g' (Greek).
967
968 2014-04-12 Leo Liu <sdl.web@gmail.com>
969
970 * progmodes/octave.el (completion-table-with-cache): Define if not
971 available.
972 (octave-goto-function-definition)
973 (octave-sync-function-file-names)
974 (octave-find-definition-default-filename): Backquote upattern for
975 compatibility.
976
977 2014-04-11 Michael Albinus <michael.albinus@gmx.de>
978
979 * net/tramp-sh.el (tramp-sh-handle-file-truename): Quote the file
980 name twice due to backticks. (Bug#17238)
981
982 2014-04-11 Glenn Morris <rgm@gnu.org>
983
984 * term/w32-win.el (x-win-suspend-error):
985 * term/x-win.el (x-win-suspend-error): Sync docs.
986
987 2014-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
988
989 Ediff's overlay priorities cause more trouble than they solve.
990 * vc/ediff-init.el (ediff-shadow-overlay-priority): Remove variable.
991 (ediff-highest-priority): Remove function (bug#17234).
992 * vc/ediff-util.el (ediff-highlight-diff-in-one-buffer):
993 * vc/ediff-diff.el (ediff-set-diff-overlays-in-one-buffer)
994 (ediff-set-fine-diff-properties-in-one-buffer): Don't mess with
995 overlay priorities.
996
997 2014-04-10 Feng Li <fengli@gmail.com> (tiny change)
998
999 * progmodes/pascal.el (pascal-font-lock-keywords): Fix incorrect format
1000 entry; use symbol boundaries to avoid mis-matches.
1001
1002 2014-04-10 Michael Albinus <michael.albinus@gmx.de>
1003
1004 * net/tramp.el (tramp-file-name-handler)
1005 (tramp-completion-file-name-handler): Avoid recursive loading.
1006
1007 * net/tramp-sh.el (tramp-make-copy-program-file-name):
1008 Quote result also locally.
1009
1010 2014-04-09 Dmitry Gutov <dgutov@yandex.ru>
1011
1012 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Highlight more
1013 Module methods. (Bug#17216)
1014
1015 2014-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
1016
1017 * help.el (describe-bindings): Fix buffer handling (bug#17210).
1018 (describe-bindings-internal): Mark obsolete.
1019
1020 2014-04-07 João Távora <joaotavora@gmail.com>
1021
1022 * elec-pair.el:
1023 (electric-pair--syntax-ppss): When inside comments parse from
1024 comment beginning.
1025 (electric-pair--balance-info): Fix typo in comment.
1026 (electric-pair--in-unterminated-string-p): Delete.
1027 (electric-pair--unbalanced-strings-p): New function.
1028 (electric-pair-string-bound-function): New var.
1029 (electric-pair-inhibit-if-helps-balance): Decide quote pairing
1030 according to `electric-pair--in-unterminated-string-p'
1031
1032 2014-04-07 João Távora <joaotavora@gmail.com>
1033
1034 * elec-pair.el (electric-pair-inhibit-if-helps-balance):
1035 Inhibit quote pairing if point-max is inside an unterminated string.
1036 (electric-pair--looking-at-unterminated-string-p): Delete.
1037 (electric-pair--in-unterminated-string-p): New function.
1038
1039 2014-04-07 Glenn Morris <rgm@gnu.org>
1040
1041 * shell.el (shell-directory-tracker):
1042 Go back to just ignoring failures. (Bug#17159)
1043
1044 2014-04-06 João Távora <joaotavora@gmail.com>
1045
1046 Fix `electric-pair-delete-adjacent-pairs' in modes binding
1047 backspace. (bug#16981)
1048 * elec-pair.el (electric-pair-backward-delete-char): Delete.
1049 (electric-pair-backward-delete-char-untabify): Delete.
1050 (electric-pair-mode-map): Bind backspace to a menu item filtering
1051 a new `electric-pair-delete-pair' command.
1052 (electric-pair-delete-pair): New command.
1053
1054 2014-04-06 João Távora <joaotavora@gmail.com>
1055
1056 * progmodes/python.el (python-electric-pair-string-delimiter):
1057 Fix triple-quoting electricity. (Bug#17192)
1058
1059 2014-04-06 João Távora <joaotavora@gmail.com>
1060
1061 * elec-pair.el (electric-pair-post-self-insert-function):
1062 Don't skip whitespace when `electric-pair-text-pairs' and
1063 `electric-pair-pairs' were used. syntax to
1064 electric-pair--skip-whitespace. (Bug#17183)
1065
1066 2014-04-06 Eli Zaretskii <eliz@gnu.org>
1067
1068 * leim/quail/ipa.el (ipa-x-sampa): Fix the character produced for
1069 "<F>". (Bug#17199)
1070
1071 2014-04-06 Stefan Monnier <monnier@iro.umontreal.ca>
1072
1073 * mpc.el (mpc--status-timer-run): Disable timer if not displayed.
1074 (mpc--status-idle-timer-run): Use mpc--status-timer-run.
1075
1076 2014-04-05 Glenn Morris <rgm@gnu.org>
1077
1078 * help.el (view-lossage): Doc tweak.
1079
1080 2014-04-05 Matthias Dahl <matthias.dahl@binary-island.eu>
1081
1082 * faces.el (face-spec-recalc): Call make-face-x-resource-internal
1083 only when inhibit-x-resources is nil, and do that earlier in the
1084 function. Doc fix. (Bug#16694)
1085 (face-spec-choose): Accept additional optional argument, whose
1086 value is returned if no matching attributes are found.
1087 (face-spec-recalc): Use the new optional argument when calling
1088 face-spec-choose. (Bug#16378)
1089 (make-face-x-resource-internal): Do nothing when
1090 inhibit-x-resources is non-nil. Don't touch the default face if
1091 reversed video is given--as was done in previous versions of Emacs.
1092 (face-set-after-frame-default): Don't call
1093 make-face-x-resource-internal here. (Bug#16434)
1094
1095 2014-04-04 Tassilo Horn <tsdh@gnu.org>
1096
1097 * doc-view.el (doc-view-bookmark-jump):
1098 Use `bookmark-after-jump-hook' to jump to the right page after the
1099 buffer is shown in a window. (bug#16090)
1100
1101 2014-04-04 Eli Zaretskii <eliz@gnu.org>
1102
1103 * international/characters.el (mirroring): Fix last change:
1104 instead of loading uni-mirrored.el explicitly, do that implicitly
1105 by creating the 'mirroring' uniprop table. This avoids announcing
1106 the loading of uni-mirrored.el.
1107
1108 2014-04-04 Glenn Morris <rgm@gnu.org>
1109
1110 * files.el (buffer-stale--default-function)
1111 (buffer-stale-function, revert-buffer--default):
1112 * autorevert.el (auto-revert-buffers): Doc tweaks.
1113
1114 2014-04-03 Eli Zaretskii <eliz@gnu.org>
1115
1116 * international/characters.el: Preload uni-mirrored.el. (Bug#17169)
1117
1118 2014-04-03 Glenn Morris <rgm@gnu.org>
1119
1120 * files.el (make-backup-file-name-function)
1121 (make-backup-file-name, make-backup-file-name--default-function)
1122 (make-backup-file-name-1, find-backup-file-name)
1123 (revert-buffer-function, revert-buffer-insert-file-contents-function)
1124 (buffer-stale--default-function, buffer-stale-function)
1125 (before-revert-hook, after-revert-hook, revert-buffer-in-progress-p)
1126 (revert-buffer, revert-buffer--default)
1127 (revert-buffer-insert-file-contents--default-function):
1128 Doc fixes related to defaults no longer being nil.
1129 (make-backup-file-name-function): Bump :version.
1130 Restore nil as a valid but deprecated custom type.
1131
1132 2014-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
1133
1134 * progmodes/perl-mode.el (perl-syntax-propertize-function): Handle $'
1135 used as a variable (bug#17174).
1136
1137 2014-04-02 Stefan Monnier <monnier@iro.umontreal.ca>
1138
1139 * progmodes/perl-mode.el (perl-indent-new-calculate):
1140 Handle forward-sexp failure (bug#16985).
1141 (perl-syntax-propertize-function): Add "foreach" and "for" statement
1142 modifiers introducing expressions (bug#17116).
1143
1144 2014-04-02 Glenn Morris <rgm@gnu.org>
1145
1146 * menu-bar.el (menu-bar-file-menu):
1147 * vc/ediff.el (ediff-current-file):
1148 Update for revert-buffer-function no longer being nil by default.
1149
1150 * simple.el (command-execute): Respect nil disabled-command-function.
1151
1152 2014-04-01 Nicolas Richard <theonewiththeevillook@yahoo.fr>
1153
1154 * simple.el (command-execute): Do not execute the command when it
1155 is disabled; fixes thinko in 2013-02-20 conversion from C. (Bug#17151)
1156
1157 2014-03-29 Juri Linkov <juri@jurta.org>
1158
1159 * dired-aux.el (dired-compress-file): Don't use string-match-p
1160 because its match data is used afterwards.
1161
1162 2014-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
1163
1164 * emacs-lisp/package.el (package-built-in-p): Treat a min-version of
1165 0 like nil.
1166
1167 2014-03-27 Dmitry Gutov <dgutov@yandex.ru>
1168
1169 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
1170 Highlight special globals with font-lock-builtin-face. (Bug#17057)
1171
1172 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
1173 Don't propertize `?' or `!' as symbol constituent when after
1174 colon. (Bug#17097)
1175
1176 2014-03-27 Juanma Barranquero <lekktu@gmail.com>
1177
1178 * frameset.el (frameset--restore-frame): Remove workaround for bug#14795
1179 which is no longer needed and causes trouble in GTK builds (bug#17046).
1180
1181 * emacs-lisp/package-x.el (package--archive-contents-from-url):
1182 Use url-insert-file-contents; package-handle-response no longer exists.
1183
1184 2014-03-26 Juanma Barranquero <lekktu@gmail.com>
1185
1186 * emacs-lisp/package.el: Fix bug#16733 (again).
1187 (url-http-parse-response, url-http-end-of-headers, url-recreate-url)
1188 (url-http-target-url): Remove unused declarations.
1189 (package-handle-response): Remove.
1190 (package--with-work-buffer): Use url-insert-file-contents and simplify.
1191 (package--download-one-archive): Use current-buffer instead of
1192 dynamic binding of `buffer'.
1193 (describe-package-1): Do not decode readme-string.
1194
1195 2014-03-25 Barry O'Reilly <gundaetiapo@gmail.com>
1196
1197 * simple.el (primitive-undo): Correction to 2014-03-24 change.
1198
1199 2014-03-25 Michael Albinus <michael.albinus@gmx.de>
1200
1201 * net/tramp.el (tramp-methods, tramp-connection-timeout): Fix docstring.
1202
1203 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Revert change
1204 from 2014-03-07, it decreases performance unnecessarily. Let-bind
1205 `remote-file-name-inhibit-cache' to nil in the second pass.
1206 (tramp-find-executable): Do not call "which" on SunOS.
1207 (tramp-send-command-and-check): Fix docstring.
1208 (tramp-do-copy-or-rename-file-directly): In the `rename' case,
1209 check whether source directory has set the sticky bit.
1210
1211 2014-03-24 Barry O'Reilly <gundaetiapo@gmail.com>
1212
1213 * simple.el (primitive-undo): Only process marker adjustments
1214 validated against their corresponding (TEXT . POS). Issue warning
1215 for lone marker adjustments in undo history. (Bug#16818)
1216 (undo-make-selective-list): Add marker adjustments to selective
1217 undo list based on whether their corresponding (TEXT . POS) is in
1218 the region. Remove variable adjusted-markers, which was unused
1219 and only non nil during undo-make-selective-list.
1220 (undo-elt-in-region): Return nil when passed a marker adjustment
1221 and explain in function doc.
1222
1223 2014-03-24 Dmitry Gutov <dgutov@yandex.ru>
1224
1225 * emacs-lisp/package.el (package--add-to-archive-contents):
1226 Include already installed and built-in packages in
1227 `package-archive-contents'.
1228 (package-install): Don't include already installed packages in the
1229 options during interactive invocation. (Bug#16762)
1230
1231 2014-03-24 Daniel Colascione <dancol@dancol.org>
1232
1233 * emacs-lisp/cl-macs.el (cl--do-arglist): Use `plist-member'
1234 instead of cl-loop search function.
1235
1236 2014-03-24 Juanma Barranquero <lekktu@gmail.com>
1237
1238 * frameset.el (frameset--initial-params): Fix typo in parameter name.
1239
1240 2014-03-24 Nicolas Richard <theonewiththeevillook@yahoo.fr>
1241
1242 * align.el (align-region): Do not fail when end-mark is nil (bug#17088).
1243
1244 2014-03-24 Dmitry Gutov <dgutov@yandex.ru>
1245
1246 * progmodes/ruby-mode.el (ruby-expression-expansion-re):
1247 Match special global variables without curlies, too.
1248 (ruby-font-lock-keywords): Simplify the matcher for special global
1249 variables. Don't require a non-word character after the variable.
1250 (Bug#17057)
1251
1252 2014-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
1253
1254 * simple.el (redisplay-highlight-region-function): Increase priority of
1255 overlay to make sure boundaries are visible (bug#15899).
1256
1257 2014-03-23 Juanma Barranquero <lekktu@gmail.com>
1258
1259 * frameset.el (frameset-restore): Compare display strings with equal.
1260
1261 * frame.el (make-frame): Don't quote display name in error message,
1262 it is already a string.
1263
1264 2014-03-23 Thierry Volpiatto <thierry.volpiatto@gmail.com>
1265
1266 * net/tramp.el (tramp-read-passwd): Suspend the timers while reading
1267 the password.
1268
1269 2014-03-23 Dmitry Gutov <dgutov@yandex.ru>
1270
1271 * emacs-lisp/package.el (package-show-package-list): If the buffer
1272 is already displayed in another window, switch to that window.
1273
1274 2014-03-21 Daniel Colascione <dancol@dancol.org>
1275
1276 * mail/emacsbug.el (report-emacs-bug): Include memory usage
1277 information in bug reports.
1278
1279 2014-03-23 Daniel Colascione <dancol@dancol.org>
1280
1281 * emacs-lisp/cl-macs.el (cl--do-arglist): Use a little `cl-loop'
1282 list to look for keyword arguments instead of `memq', fixing
1283 (Bug#3647) --- unfortunately, only for freshly-compiled code.
1284 Please make bootstrap.
1285
1286 2014-03-23 Richard Stallman <rms@gnu.org>
1287
1288 * battery.el (battery-linux-sysfs): Search for each field
1289 from the beginning of the buffer.
1290
1291 2014-03-22 Dmitry Gutov <dgutov@yandex.ru>
1292
1293 * emacs-lisp/package.el (package-desc): Use the contents of the
1294 quoted form, not its cdr. (Bug#16873)
1295
1296 2014-03-22 Juanma Barranquero <lekktu@gmail.com>
1297
1298 * w32-common-fns.el (x-selection-owner-p): Add empty docstring for the
1299 benefit of doc.c; change parameter profile to match the X function.
1300
1301 2014-03-21 Michael Albinus <michael.albinus@gmx.de>
1302
1303 * net/tramp.el (tramp-methods): Add docstring for `tramp-login-env'
1304 and `tramp-copy-env'.
1305
1306 * net/tramp-sh.el (tramp-methods) <sudo>: Add `tramp-login-env'.
1307 (tramp-maybe-open-connection): Handle `tramp-login-env'.
1308
1309 2014-03-21 Glenn Morris <rgm@gnu.org>
1310
1311 * electric.el (electric-indent-post-self-insert-function): Add doc.
1312
1313 2014-03-21 Dmitry Gutov <dgutov@yandex.ru>
1314
1315 * emacs-lisp/package.el (package-compute-transaction):
1316 Use `version-list-<=' to compare the requirement version against
1317 the version of package already to be installed. Update the error
1318 message. (Bug#16826)
1319
1320 * progmodes/ruby-mode.el (ruby-smie-rules):
1321 Add indentation rule for ` @ '. (Bug#17050)
1322
1323 2014-03-21 Juanma Barranquero <lekktu@gmail.com>
1324
1325 * align.el (align-regexp): Remove superfluous backslash.
1326
1327 * ffap.el (ffap-ftp-default-user, ffap-url-regexp)
1328 (ffap-pass-wildcards-to-dired, dired-at-point-require-prefix)
1329 (ffap-rfc-path, ffap-ftp-sans-slash-regexp, ffap-menu-regexp):
1330 Fix docstring typos.
1331 (ffap-next): Use C-u in docstring.
1332 (ffap-machine-p, ffap-list-env, ffap-alist, ffap-alist)
1333 (ffap-string-at-point-mode-alist, ffap-menu, ffap-menu-ask):
1334 Remove superfluous backslashes.
1335 (ffap-string-at-point): Reflow docstring.
1336
1337 * server.el (server-host): Reflow docstring.
1338 (server-unload-function): Fix docstring typo.
1339 (server-eval-at): Remove superfluous backslash.
1340
1341 * skeleton.el (skeleton-insert): Remove superfluous backslash.
1342 (skeleton-insert): Doc fix.
1343 (skeleton-insert): Reflow docstring.
1344
1345 * term/tty-colors.el (tty-color-alist, tty-modify-color-alist)
1346 (tty-color-approximate, tty-color-by-index, tty-color-values)
1347 (tty-color-desc): Remove superfluous backslashes.
1348
1349 2014-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
1350
1351 * electric.el (electric-newline-and-maybe-indent): New command.
1352 Bind it globally to C-j.
1353 (electric-indent-mode): Don't mess with the global map any more.
1354 Don't drop the post-self-insert-hook is some buffer is still using it
1355 (bug#16770).
1356
1357 * bindings.el (global-map): Remove C-j binding.
1358
1359 * emacs-lisp/nadvice.el (advice--make-docstring): Try harder to find
1360 the docstring of functions advised before dumping (bug#16993).
1361
1362 2014-03-19 Stefan-W. Hahn <stefan.hahn@s-hahn.de> (tiny change)
1363
1364 * ps-print.el (ps-generate-postscript-with-faces):
1365 Explicitly deactivate the mark (bug#16866).
1366 * simple.el (deactivate-mark): Update region highlight.
1367
1368 2014-03-19 Juanma Barranquero <lekktu@gmail.com>
1369
1370 * emacs-lisp/package.el (describe-package-1):
1371 Decode commentary (bug#16733).
1372
1373 2014-03-18 Juanma Barranquero <lekktu@gmail.com>
1374
1375 * custom.el (defcustom): Doc fix: recommend avoiding destructive
1376 modification of the value argument of :set (bug#16755).
1377
1378 2014-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
1379
1380 * simple.el (newline-and-indent): Do autofill (bug#17031).
1381
1382 2014-03-18 Dmitry Gutov <dgutov@yandex.ru>
1383
1384 * newcomment.el (comment-normalize-vars): Only add escaping check
1385 to `comment-start-skip' if not `comment-use-syntax'. (Bug#16971)
1386 (comment-beginning): Use `narrow-to-region' instead of moving back
1387 one character.
1388 (http://lists.gnu.org/archive/html/emacs-devel/2014-03/msg00488.html)
1389 (comment-start-skip): Update the docstring.
1390
1391 2014-03-18 Richard Stallman <rms@gnu.org>
1392
1393 * dired.el (dired-display-file): Force use of other window.
1394
1395 2014-03-18 Daniel Colascione <dancol@dancol.org>
1396
1397 * startup.el (tty-handle-args): Remove debug message from 2007.
1398
1399 2014-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
1400
1401 * emacs-lisp/nadvice.el (advice--interactive-form): New function.
1402 (advice--make-interactive-form): Use it to avoid (auto)loading function.
1403 (advice--make-1, advice-add, advice-remove):
1404 Remove braindead :advice-pending hack.
1405
1406 2014-03-17 Glenn Morris <rgm@gnu.org>
1407
1408 * calendar/calendar.el (calendar-generate-month): Apply weekend
1409 face to the right days; fixes 2013-08-06 change. (Bug#17028)
1410
1411 2014-03-17 Michael Albinus <michael.albinus@gmx.de>
1412
1413 * net/tramp.el (tramp-action-out-of-band): Read pending output.
1414 (tramp-call-process): Trace also DESTINATION.
1415
1416 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
1417 Quote file names when they are local. Remove superfluous trace.
1418
1419 2014-03-17 Dmitry Gutov <dgutov@yandex.ru>
1420
1421 * newcomment.el (comment-beginning): If `comment-start-skip'
1422 doesn't match, move back one char and try again. (Bug#16971)
1423
1424 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
1425 Set `comment-use-syntax' to t to avoid the unnecessary runtime check.
1426 Set `comment-start-skip' to a simpler value that doesn't try to
1427 check if the semicolon is escaped (this is handled by
1428 `syntax-ppss' now). (Bug#16971)
1429
1430 * progmodes/scheme.el (scheme-mode-variables): Same.
1431
1432 2014-03-16 Martin Rudalics <rudalics@gmx.at>
1433
1434 Fix behavior of with-temp-buffer-window (Bug#16816, Bug#17007).
1435 * window.el (with-temp-buffer-window): Don't make BUFFER-OR-NAME
1436 current (Bug#16816, Bug#17007).
1437 (with-current-buffer-window): New macro doing the same as
1438 `with-temp-buffer-window' but with BUFFER-OR-NAME current.
1439 * help.el (help-print-return-message): Warn in doc-string to not
1440 use this in `with-help-window'.
1441 (describe-bindings-internal): Call `describe-buffer-bindings'
1442 from within help buffer. See Juanma's scenario in (Bug#16816).
1443 (with-help-window): Update doc-string.
1444 * dired.el (dired-mark-pop-up):
1445 * files.el (save-buffers-kill-emacs):
1446 * register.el (register-preview): Use `with-current-buffer-window'
1447 instead of `with-temp-buffer-window'.
1448
1449 2014-03-16 Juanma Barranquero <lekktu@gmail.com>
1450
1451 * textmodes/rst.el (rst-arabic-to-roman, rst-roman-to-arabic):
1452 Implement inserting into current buffer, documented in their docstrings.
1453 (rst-define-key, rst-compare-adornments, rst-insert-list-new-item)
1454 (rst-section-tree-point, rst-forward-section, rst-indent)
1455 (rst-compute-tabs, rst-font-lock-find-unindented-line-end)
1456 (rst-font-lock-find-unindented-line-limit, rst-adornment-level)
1457 (rst-font-lock-handle-adornment-pre-match-form)
1458 (rst-repeat-last-character): Reflow docstrings.
1459 (rst-preferred-adornments, rst-update-section, rst-find-title-line)
1460 (rst-adjust-adornment-work, rst-initial-items, rst-insert-list)
1461 (rst-toc-insert-style, rst-toc-insert-node, rst-goto-section)
1462 (rst-compile, rst-imenu-convert-cell, rst-imenu-create-index):
1463 Fix docstring typos.
1464 (rst-all-sections, rst-section-hierarchy, rst-adjust): Doc fixes.
1465 (rst-uncomment-region, rst-font-lock-find-unindented-line-match)
1466 (rst-font-lock-handle-adornment-matcher): Mark unused arguments.
1467
1468 2014-03-15 Juanma Barranquero <lekktu@gmail.com>
1469
1470 * term/ns-win.el (x-command-line-resources): Rename from ns-... version,
1471 for compatibility with other ports.
1472 (ns-initialize-window-system): Use it. It is set in term/common-win.el
1473 from the -xrm command line argument, but in the Nextstep port its value
1474 is irrelevant because nsfns.m:Fx_open_connection ignores it for now.
1475
1476 * progmodes/python.el (defconst, python-syntax-count-quotes)
1477 (python-indent-region, python-indent-shift-right)
1478 (python-indent-dedent-line-backspace, python-nav-backward-sexp)
1479 (python-nav-backward-sexp-safe, python-nav-backward-up-list)
1480 (python-shell-prompt-block-regexp, python-shell-prompt-output-regexp)
1481 (python-shell-prompt-pdb-regexp, python-shell-enable-font-lock)
1482 (inferior-python-mode, python-shell-make-comint, run-python-internal)
1483 (python-shell-buffer-substring, python-shell-send-buffer)
1484 (python-pdbtrack-activate, python-pdbtrack-stacktrace-info-regexp)
1485 (python-completion-complete-at-point, python-fill-docstring-style)
1486 (python-eldoc-function, python-imenu-format-item-label)
1487 (python-imenu-format-parent-item-label)
1488 (python-imenu-format-parent-item-jump-label)
1489 (python-imenu--build-tree, python-imenu-create-index)
1490 (python-imenu-create-flat-index): Fix docstring typos.
1491 (python-indent-context, python-shell-prompt-regexp, run-python):
1492 Remove superfluous backslashes.
1493 (python-indent-line, python-nav-beginning-of-defun)
1494 (python-shell-get-buffer, python-shell-get-process)
1495 (python-info-current-defun, python-info-current-line-comment-p)
1496 (python-info-current-line-empty-p, python-util-popn): Doc fixes.
1497 (python-indent-post-self-insert-function, python-shell-send-file)
1498 (python-shell-completion-get-completions)
1499 (python-shell-completion-complete-or-indent)
1500 (python-eldoc--get-doc-at-point): Reflow docstrings.
1501
1502 2014-03-14 Glenn Morris <rgm@gnu.org>
1503
1504 * emacs-lisp/package.el (package-menu-mode-map):
1505 Replace use of obsolete function alias. Tweak menu item text.
1506
1507 * info.el (Info-finder-find-node):
1508 Ignore the `emacs' metapackage. (Bug#10813)
1509
1510 * finder.el (finder-list-matches): Include unversioned packages
1511 in the result of a keyword search.
1512
1513 * finder.el (finder--builtins-descriptions): New constant.
1514 (finder-compile-keywords): Use finder--builtins-descriptions.
1515
1516 2014-03-14 Dmitry Gutov <dgutov@yandex.ru>
1517
1518 * simple.el (blink-matching-paren): Describe the new value,
1519 `jump', enabling the old behavior.
1520 (blink-matching-open): Use that value. (Bug#17008)
1521
1522 2014-03-14 Glenn Morris <rgm@gnu.org>
1523
1524 * finder.el (finder-no-scan-regexp): Add leim-list.
1525 (finder-compile-keywords):
1526 Don't skip files with same basename. (Bug#14010)
1527 * Makefile.in (setwins_finder): New, excluding leim.
1528 (finder-data): Use setwins_finder.
1529
1530 * help-fns.el (help-split-fundoc, help-add-fundoc-usage)
1531 (help-function-arglist, help-make-usage): Move from here...
1532 * help.el (help-split-fundoc, help-add-fundoc-usage)
1533 (help-function-arglist, help-make-usage): ... to here. (Bug#17001)
1534 * emacs-lisp/bytecomp.el (byte-compile-lambda): Do not load help-fns.
1535
1536 2014-03-14 Juanma Barranquero <lekktu@gmail.com>
1537
1538 * net/socks.el (socks, socks-override-functions)
1539 (socks-find-services-entry):
1540 * progmodes/hideif.el (hif-set-var, hif-nexttoken, hif-comma)
1541 (hif-find-ifdef-block):
1542 * progmodes/modula2.el (m2-indent): Fix docstring typos.
1543
1544 * net/tls.el (tls-program): Reflow docstring.
1545
1546 * progmodes/pascal.el (pascal-mode-abbrev-table)
1547 (pascal-imenu-generic-expression, pascal-auto-endcomments)
1548 (pascal-mark-defun, pascal-comment-area, pascal-indent-level)
1549 (pascal-outline-mode): Fix docstring typos.
1550 (pascal-mode): Let define-derived-mode document mode hook.
1551 (pascal-uncomment-area): Reflow.
1552 (pascal-exclude-str-start, pascal-exclude-str-end): Add docstring.
1553
1554 * progmodes/opascal.el (opascal-compound-block-indent)
1555 (opascal-case-label-indent): Fix docstring typos.
1556 (opascal-mode): Fix typos; let defined-derived-mode document mode hook.
1557
1558 2014-03-13 Dmitry Gutov <dgutov@yandex.ru>
1559
1560 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
1561 Fontify multiple adjacent negation chars. (Bug#17004)
1562
1563 2014-03-13 Tom Willemse <tom@ryuslash.org> (tiny change)
1564
1565 * emacs-lisp/package.el (package--prepare-dependencies):
1566 Accept requirements without explicit version (bug#14941).
1567
1568 2014-03-12 Juanma Barranquero <lekktu@gmail.com>
1569
1570 * register.el (register-separator, copy-to-register): Doc fixes.
1571 (register-preview-default): Remove unnecessary call to concat.
1572
1573 * frameset.el (frameset-restore): When checking for a visible frame,
1574 use the action map instead of calling visible-frame-list.
1575
1576 2014-03-12 Jonas Bernoulli <jonas@bernoul.li>
1577
1578 * emacs-lisp/eieio.el (with-slots): Use cl-symbol-macrolet (bug#16998).
1579
1580 2014-03-12 Martin Rudalics <rudalics@gmx.at>
1581
1582 * window.el (fit-frame-to-buffer): Get maximum width from
1583 display's width instead of height.
1584
1585 2014-03-12 Glenn Morris <rgm@gnu.org>
1586
1587 * desktop.el (desktop-restore-frames)
1588 (desktop-restore-in-current-display, desktop-restore-forces-onscreen)
1589 (desktop-restore-reuses-frames): Doc tweaks.
1590
1591 * electric.el (electric-indent-mode): Doc fix.
1592
1593 2014-03-12 Juanma Barranquero <lekktu@gmail.com>
1594
1595 * vc/pcvs.el (cvs-temp-buffer, defun-cvs-mode, cvs-get-cvsroot)
1596 (cvs-checkout, cvs-mode-checkout, cvs-update-filter, cvs-mode-mark)
1597 (cvs-mode-diff-head, cvs-mode-diff-repository, cvs-mode-diff-yesterday)
1598 (cvs-mode-diff-vendor, cvs-mode-do, cvs-change-cvsroot)
1599 (cvs-dired-use-hook): Fix docstring typos.
1600 (cvs-mode-view-file-other-window, cvs-mode-byte-compile-files):
1601 Doc fixes.
1602
1603 * vc/pcvs-defs.el (cvs-auto-remove-handled)
1604 (cvs-auto-remove-directories, cvs-default-ignore-marks)
1605 (cvs-idiff-imerge-handlers, cvs-reuse-cvs-buffer)
1606 (cvs-execute-single-dir): Fix docstring typos.
1607
1608 * vc/pcvs-info.el (cvs-status-map, cvs-states): Fix docstring typos.
1609 (cvs-fileinfo-pp, cvs-fileinfo-from-entries): Doc fixes.
1610
1611 * vc/pcvs-parse.el (cvs-parsed-fileinfo): Reflow docstring.
1612
1613 * vc/pcvs-util.el (cvs-flags-query, cvs-flags-set, cvs-prefix-set):
1614 Fix docstring typos.
1615
1616 2014-03-12 Juanma Barranquero <lekktu@gmail.com>
1617
1618 * frameset.el (frameset--jump-to-register): Add autoload; it could be
1619 called from jump-to-register after unloading the frameset package.
1620
1621 2014-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
1622
1623 * simple.el (set-mark): Ensure mark-active is nil if the mark is nil
1624 (bug#16975). Deactivate the mark before setting it to nil.
1625 (activate-mark): Do nothing if region is already active.
1626
1627 2014-03-11 Juanma Barranquero <lekktu@gmail.com>
1628
1629 * frameset.el (frameset--target-display): Remove definition; declare.
1630 (frameset-save, frameset-restore): Let-bind frameset--target-display.
1631
1632 2014-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
1633
1634 * emacs-lisp/nadvice.el (advice--make-1): Fix autoloading avoidance.
1635 (advice-add): Add a :advice--pending marker, so advice--make-1 knows
1636 when the advice is pending.
1637 (advice-remove): Remove this marker when not needed any more.
1638
1639 2014-03-11 Juanma Barranquero <lekktu@gmail.com>
1640
1641 * frameset.el: Separate options for reusing frames and cleaning up.
1642 (frameset--reuse-list): Remove definition; declare.
1643 (frameset--action-map): Declare.
1644 (frameset--find-frame-if): Doc fix.
1645 (frameset--restore-frame): Cache frame action.
1646 (frameset-restore): New keyword arg CLEANUP-FRAMES, allows to select
1647 how to clean up the frame list after restoring. Remove cleaning
1648 options from REUSE-FRAMES. Change all keyword values to symbols.
1649 (frameset--jump-to-register): Simplify by using CLEANUP-FRAMES.
1650
1651 * desktop.el (desktop-restore-forces-onscreen)
1652 (desktop-restore-reuses-frames): Use non-keyword values.
1653 (desktop-restore-frameset): Use CLEANUP-FRAMES arg of frameset-restore.
1654
1655 2014-03-10 Glenn Morris <rgm@gnu.org>
1656
1657 * files.el (find-file): Doc fix: update info node name.
1658
1659 * emacs-lisp/advice.el (ad-add-advice, defadvice):
1660 Doc fix: remove references to deleted info nodes.
1661
1662 2014-03-10 Michael Albinus <michael.albinus@gmx.de>
1663
1664 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell):
1665 Do not add `nil' to the environment, when there's no remote `locale'.
1666 (tramp-find-inline-encoding): Check, that the remote host has
1667 installed perl, before sending scripts.
1668
1669 2014-03-10 Leo Liu <sdl.web@gmail.com>
1670
1671 * emacs-lisp/eldoc.el (eldoc-minibuffer-message):
1672 Clear eldoc-last-message. (Bug#16920)
1673
1674 2014-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
1675
1676 * desktop.el (desktop-create-buffer): Don't run activate-mark-hook
1677 (bug#14430).
1678
1679 2014-03-09 Juri Linkov <juri@jurta.org>
1680
1681 * ansi-color.el (ansi-color-names-vector): Copy default colors
1682 from `xterm-standard-colors' that look well on the default white
1683 background (and also on the black background) to avoid illegible
1684 color combinations like yellow-on-white and white-on-white.
1685 http://lists.gnu.org/archive/html/emacs-devel/2014-02/msg00157.html
1686
1687 2014-03-08 Juanma Barranquero <lekktu@gmail.com>
1688
1689 * frameset.el (frameset-restore): When no frame is visible, do not
1690 generate a list of frames, just make visible the selected one.
1691
1692 2014-03-08 Dmitry Gutov <dgutov@yandex.ru>
1693
1694 * vc/vc-git.el (vc-git-command): Turn FILE-OR-LIST into nil when
1695 it only contains the repository root. (Bug#16897)
1696
1697 2014-03-07 Michael Albinus <michael.albinus@gmx.de>
1698
1699 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Run first pass
1700 only when `remote-file-name-inhibit-cache' is nil.
1701 (tramp-sh-file-name-handler): Use `tramp-error'. Simplify code.
1702
1703 2014-03-06 Martin Rudalics <rudalics@gmx.at>
1704
1705 * window.el (fit-frame-to-buffer, fit-frame-to-buffer-margins):
1706 Fix doc-strings.
1707 (fit-frame-to-buffer): New argument ONLY. Remove dependency on
1708 fit-frame-to-buffer variable. Fix doc-string.
1709 (fit-window-to-buffer): Set ONLY argument in call of
1710 fit-frame-to-buffer. Fix doc-string.
1711
1712 2014-03-06 Michael Albinus <michael.albinus@gmx.de>
1713
1714 * net/tramp.el (tramp-error): VEC-OR-PROC can be nil.
1715 (tramp-action-password): Clear password cache if needed.
1716 (tramp-read-passwd): Do not clear password cache.
1717
1718 * net/tramp-gvfs.el (tramp-gvfs-handler-askpassword): Clear password
1719 cache unless it is the first password request.
1720
1721 2014-03-06 Glenn Morris <rgm@gnu.org>
1722
1723 * simple.el (newline): Doc tweak.
1724
1725 * emacs-lisp/shadow.el (load-path-shadows-find):
1726 Ignore dir-locals. (Bug#12357)
1727
1728 2014-03-05 Glenn Morris <rgm@gnu.org>
1729
1730 * files.el (interpreter-mode-alist):
1731 * progmodes/sh-script.el (sh-ancestor-alist): Add dash. (Bug#16938)
1732
1733 2014-03-05 Juanma Barranquero <lekktu@gmail.com>
1734
1735 * frameset.el (frameset--initial-params): Filter out null entries.
1736
1737 2014-03-05 Martin Rudalics <rudalics@gmx.at>
1738
1739 * window.el (window-min-height, window-min-width):
1740 Rewrite doc-strings.
1741 (window-body-size): Add PIXELWISE argument to make it consistent
1742 with its callees.
1743
1744 2014-03-05 Juanma Barranquero <lekktu@gmail.com>
1745
1746 * finder.el (finder-mode-map, finder-mode-syntax-table):
1747 Revert part of 2014-02-28 change.
1748
1749 2014-03-05 Lars Ingebrigtsen <larsi@gnus.org>
1750
1751 * net/eww.el (eww-mode-map): [tab] doesn't work on tty.
1752 (eww-setup-buffer): Clear next/prev/etc more reliably.
1753 (eww-textarea-map): [tab] doesn't work on tty.
1754 Reported by Mario Lang.
1755
1756 * net/shr.el (shr-map): Ditto.
1757
1758 2014-03-04 Glenn Morris <rgm@gnu.org>
1759
1760 * minibuffer.el (completion-hilit-commonality):
1761 Revert 2014-03-01 short-cut, which changed the return value. (Bug#16933)
1762
1763 2014-03-04 Juanma Barranquero <lekktu@gmail.com>
1764
1765 * hilit-chg.el (hilit-chg-unload-function): New function.
1766 (highlight-changes-mode, highlight-changes-visible-mode): Fix typos.
1767 (hilit-chg-map-changes): Prefer cardinal number to digit.
1768 (hilit-chg-display-changes): Reflow docstring.
1769 (highlight-changes-rotate-faces): Remove superfluous backslash.
1770
1771 2014-03-04 Michael Albinus <michael.albinus@gmx.de>
1772
1773 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Do not call
1774 `tramp-send-command-and-check'.
1775
1776 2014-03-04 Juanma Barranquero <lekktu@gmail.com>
1777
1778 * hexl.el (hexl-address-region, hexl-ascii-region)
1779 (hexl-goto-hex-address, hexl-backward-char, hexl-forward-char)
1780 (hexl-backward-short, hexl-forward-short, hexl-backward-word)
1781 (hexl-forward-word, hexl-previous-line, hexl-next-line):
1782 Use "Hexl mode" for non-hyperlinked hexl-mode references in docstrings.
1783 (hexl-mode): Doc fix.
1784 (hexl-ascii-start-column, hexl-beginning-of-line, hexl-end-of-line)
1785 (hexl-mode-ruler): Fix typos in docstrings.
1786
1787 * strokes.el (strokes-xpm-header, strokes-rate-stroke): Fix typos.
1788 (strokes-character, strokes-get-grid-position, strokes-list-strokes):
1789 Remove superfluous backslashes.
1790 (strokes-last-stroke, strokes-global-map, strokes-mode):
1791 Reflow docstrings.
1792 (strokes-xpm-for-stroke, strokes-xpm-to-compressed-string)
1793 (strokes-xpm-for-compressed-string): Use quotes with buffer name.
1794 (strokes-distance-squared, strokes-global-set-stroke)
1795 (strokes-global-set-stroke-string): Doc fixes.
1796 (strokes-help): Fix typos; reflow docstring.
1797
1798 2014-03-04 Martin Rudalics <rudalics@gmx.at>
1799
1800 * window.el (window-in-direction): Fix doc-string.
1801
1802 2014-03-04 Glenn Morris <rgm@gnu.org>
1803
1804 * emacs-lisp/smie.el (smie-config-guess): Doc fix.
1805 Explicit error if no grammar.
1806 (smie-config-save): Doc fix. Fix quote typo.
1807
1808 2014-03-04 Stefan Monnier <monnier@iro.umontreal.ca>
1809
1810 * progmodes/cc-mode.el (c-initialize-cc-mode): Only hook into
1811 electric-indent-mode-hook if we obey electric-indent-mode.
1812 (c-basic-common-init): Use (fboundp 'electric-indent-local-mode) to
1813 decide whether we obey electric-indent-mode.
1814 (c-change-set-fl-decl-start, c-extend-after-change-region):
1815 Silence warnings.
1816 (c-electric-indent-mode-hook): Assume we do want to obey
1817 electric-indent-mode.
1818
1819 * electric.el (electric-indent-mode-has-been-called): Remove.
1820 (electric-indent-mode): Fix accordingly.
1821
1822 * files.el (hack-local-variables): Mention file name in warning.
1823
1824 * htmlfontify.el (hfy-fontify-buffer): Drop `invis-range' message.
1825
1826 2014-03-04 Michal Nazarewicz <mina86@mina86.com>
1827
1828 * bindings.el: Add comment describing why C-d binds to `delete-char'.
1829 * simple.el (delete-forward-char): Mark as interactive-only.
1830
1831 2014-03-03 Juanma Barranquero <lekktu@gmail.com>
1832
1833 * icomplete.el (icomplete-completions):
1834 Follow-up to 2014-03-01 change.
1835
1836 * icomplete.el: Miscellaneous doc fixes.
1837 Use Icomplete everywhere instead of icomplete for consistency.
1838 (icomplete-max-delay-chars): Fix typo.
1839 (icomplete-mode): Use \[].
1840 (icomplete-tidy, icomplete-exhibit): Reflow.
1841 (icomplete-minibuffer-setup-hook, icomplete-completions):
1842 Remove superfluous backlashes.
1843
1844 * ido.el: Miscellaneous doc fixes.
1845 Use Ido everywhere instead of ido or `ido' for consistency.
1846 (ido-record-ftp-work-directories, ido-merge-ftp-work-directories)
1847 (ido-cache-ftp-work-directory-time, ido-slow-ftp-hosts)
1848 (ido-slow-ftp-host-regexps, ido-reread-directory): Upcase "ftp".
1849 (ido-separator): Extract obsolescence info from docstring and declare
1850 with make-obsolete-variable.
1851 (ido-minibuffer-setup-hook): Simplify example.
1852 (ido-text, ido-text-init, ido-input-stack, ido-report-no-match)
1853 (ido-wide-find-file, ido-wide-find-dir, ido-wide-find-dir-or-delete-dir)
1854 (ido-completion-help, ido-completing-read): Fix typos in docstrings.
1855 (ido-everywhere): Reflow docstring.
1856 (ido-toggle-vc): Doc fix.
1857 (ido-switch-buffer, ido-find-file): Use tabs to improve legibility
1858 of long list of keybindings.
1859
1860 2014-03-03 Glenn Morris <rgm@gnu.org>
1861
1862 * frame.el (display-pixel-height, display-pixel-width)
1863 (display-mm-dimensions-alist, display-mm-height)
1864 (display-mm-width): Doc tweaks.
1865
1866 2014-03-02 Barry O'Reilly <gundaetiapo@gmail.com>
1867
1868 * simple.el (undo-elt-in-region): Fix buffer corruption for edge
1869 case of undo in region.
1870
1871 2014-03-02 Martin Rudalics <rudalics@gmx.at>
1872
1873 * window.el (fit-window-to-buffer): Fix argument in window-size
1874 call when window is horizontally combined.
1875
1876 2014-03-02 Juanma Barranquero <lekktu@gmail.com>
1877
1878 * icomplete.el (icomplete-completions): Use string-width.
1879 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
1880
1881 2014-03-01 Dmitry Gutov <dgutov@yandex.ru>
1882
1883 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
1884 Highlight regexp options. (Bug#16914)
1885
1886 2014-03-01 Martin Rudalics <rudalics@gmx.at>
1887
1888 * window.el (window--max-delta-1): Round down when calculating
1889 how many lines/columns we can get from a window.
1890
1891 2014-03-01 Glenn Morris <rgm@gnu.org>
1892
1893 * isearch.el (search-invisible): Doc fix.
1894
1895 * minibuffer.el (completion-hilit-commonality):
1896 Make `base-size' argument optional. Short-cut if `prefix-len' is 0.
1897 * comint.el (comint-dynamic-list-completions): Doc fix.
1898 * comint.el (comint-dynamic-list-completions):
1899 * filecache.el (file-cache-minibuffer-complete):
1900 * tempo.el (tempo-display-completions):
1901 * eshell/em-hist.el (eshell-list-history):
1902 Replace use of obsolete argument of display-completion-list.
1903
1904 2014-03-01 Juanma Barranquero <lekktu@gmail.com>
1905
1906 * icomplete.el (icomplete-completions):
1907 Revert back to using "..." when ?… cannot be displayed.
1908
1909 2014-02-28 Juanma Barranquero <lekktu@gmail.com>
1910
1911 * finder.el (finder-unload-function): New function.
1912
1913 2014-02-28 Juanma Barranquero <lekktu@gmail.com>
1914
1915 * dframe.el (dframe-detach):
1916 * find-dired.el (find-dired, find-name-dired):
1917 * finder.el (finder-mode-map, finder-mode-syntax-table)
1918 (finder-headmark, finder-select, finder-mouse-select):
1919 Fix docstring typos.
1920
1921 2014-02-28 Martin Rudalics <rudalics@gmx.at>
1922
1923 Revert recent with-temp-buffer-window change (Bug#16816, Bug#16882).
1924 * window.el (with-temp-buffer-window): Revert change from 2014-02-21.
1925 Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
1926 Fix doc-string based on a suggestion by Nicolas Richard
1927 <theonewiththeevillook@yahoo.fr>.
1928 * help.el (with-help-window): Fix doc-string.
1929
1930 2014-02-28 Ivan Kanis <ivan@kanis.fr>
1931
1932 * net/shr.el (shr-image-animate): New option.
1933 (shr-put-image): Respect shr-image-animate.
1934
1935 2014-02-28 Michael Albinus <michael.albinus@gmx.de>
1936
1937 * net/tramp-adb.el (tramp-adb-parse-device-names):
1938 Use `accept-process-output'.
1939 (tramp-adb-handle-file-truename): Cache the localname only.
1940 (tramp-adb-handle-make-directory)
1941 (tramp-adb-handle-delete-directory): Flush file properties correctly.
1942 (tramp-adb-handle-set-file-modes): Do not raise an error when file
1943 modes cannot be changed.
1944
1945 * net/tramp-cache.el (tramp-flush-directory-property): Remove also
1946 file properties of symlinks.
1947
1948 2014-02-28 Per Starbäck <starback@stp.lingfil.uu.se>
1949
1950 * textmodes/bibtex.el (bibtex-biblatex-entry-alist): Update
1951 required/optional fields to match development biblatex. (Bug#16781)
1952
1953 2014-02-28 Andy Sawyer <andy.sawyer@gmail.com> (tiny change)
1954
1955 * saveplace.el (toggle-save-place):
1956 Fix argument handling. (Bug#16673)
1957
1958 2014-02-28 Glenn Morris <rgm@gnu.org>
1959
1960 * minibuffer.el (completions-first-difference)
1961 (completions-common-part, completion-hilit-commonality): Doc fixes.
1962
1963 2014-02-28 Karl Berry <karl@gnu.org>
1964
1965 * info.el (Info-mode-map): Add H for describe-mode,
1966 to synchronize with standalone Info.
1967
1968 2014-02-28 Emilio C. Lopes <eclig@gmx.net>
1969
1970 * progmodes/sql.el (sql-interactive-mode):
1971 Avoid setting global comint-input-ring-separator. (Bug#16814)
1972
1973 2014-02-27 Michael Albinus <michael.albinus@gmx.de>
1974
1975 * net/dbus.el (dbus--init-bus): Declare function.
1976 (dbus-path-local, dbus-interface-local): New defconst.
1977 (dbus-init-bus): Use them.
1978 (dbus-return-values-table): Extend doc.
1979 (dbus-handle-bus-disconnect): Extend error message.
1980
1981 2014-02-27 Juanma Barranquero <lekktu@gmail.com>
1982
1983 * subr.el (y-or-n-p): Fix double space issue in message.
1984
1985 2014-02-27 Michael Albinus <michael.albinus@gmx.de>
1986
1987 * net/tramp.el (tramp-call-process): Improve trace message.
1988 (tramp-handle-insert-file-contents): Trace error case.
1989
1990 * net/tramp-adb.el (tramp-adb-file-name-handler-alist)
1991 <insert-directory>: Use `tramp-handle-insert-directory'.
1992 (tramp-adb-handle-insert-directory): Remove function.
1993 (tramp-adb-send-command-and-check): New defun, replacing
1994 `tramp-adb-command-exit-status'. Change all callees.
1995 (tramp-adb-handle-file-attributes)
1996 (tramp-adb-handle-directory-files-and-attributes): Use it.
1997 (tramp-adb-ls-output-name-less-p):
1998 Use `directory-listing-before-filename-regexp'.
1999 (tramp-adb-handle-delete-directory): Flush also file properties of
2000 the truename of directory.
2001 (tramp-adb-handle-file-name-all-completions): Add "./" and "../".
2002 (tramp-adb-handle-file-local-copy): Make the local copy readable.
2003 (tramp-adb-handle-write-region): Implement APPEND.
2004 (tramp-adb-handle-rename-file): Make it more robust. Flush file
2005 properties correctly.
2006 (tramp-adb-maybe-open-connection): Set `tramp-current-*'
2007 variables. Check for connected devices only when needed.
2008
2009 2014-02-27 Glenn Morris <rgm@gnu.org>
2010
2011 * minibuffer.el (completion-table-dynamic)
2012 (completion-table-with-cache): Doc fixes.
2013
2014 * emacs-lisp/crm.el (crm-default-separator, crm-separator)
2015 (completing-read-multiple): Doc fixes.
2016
2017 2014-02-27 Daniel Colascione <dancol@dancol.org>
2018
2019 * minibuffer.el (completion--nth-completion): Fix indentation.
2020
2021 * net/tramp-sh.el (tramp-get-remote-path): Don't signal error when
2022 explicit tramp path is empty.
2023
2024 2014-02-27 Glenn Morris <rgm@gnu.org>
2025
2026 * emacs-lisp/crm.el (completing-read-multiple):
2027 Empower help-enable-auto-load.
2028
2029 2014-02-26 Glenn Morris <rgm@gnu.org>
2030
2031 * startup.el (command-line): Don't init the tty in daemon mode.
2032
2033 Avoid calling tty-setup-hook twice, eg if a term file
2034 explicitly calls tty-run-terminal-initialization. (Bug#16859)
2035 * faces.el (tty-run-terminal-initialization): Add run-hook argument.
2036 (tty-create-frame-with-faces): Use it.
2037 * startup.el (command-line): Pass run-hook argument
2038 to tty-run-terminal-initialization.
2039
2040 * dired.el (dired-restore-desktop-buffer): Demote errors;
2041 eg in case a glob match fails. (Bug#16884)
2042
2043 2014-02-26 Dmitry Gutov <dgutov@yandex.ru>
2044
2045 * emacs-lisp/lisp.el (lisp--local-variables): Catch `end-of-file'
2046 error from `read-from-string'. (Bug#16850)
2047
2048 * emacs-lisp/ert.el (ert-run-tests-interactively): `read' the
2049 result of `completing-read' in the interactive form. (Bug#16854)
2050
2051 2014-02-25 Glenn Morris <rgm@gnu.org>
2052
2053 * image.el (image-animate, image-animate-timeout):
2054 Stop animating images in dead buffers. (Bug#16878)
2055
2056 * emacs-lisp/edebug.el (defmacro): Fix debug spec. (Bug#16868)
2057
2058 * faces.el (tty-setup-hook, tty-run-terminal-initialization):
2059 Doc fixes.
2060 * startup.el (term-setup-hook): Doc fix. Make obsolete.
2061 * term/sun.el (sun-raw-prefix-hooks):
2062 Use tty-setup-hook instead of term-setup-hook.
2063 (terminal-init-sun): Construct message from bytecomp plist.
2064 * term/wyse50.el (enable-arrow-keys): Doc fix.
2065
2066 2014-02-24 Juanma Barranquero <lekktu@gmail.com>
2067
2068 * term/sun.el (kill-region-and-unmark, sun-raw-prefix-hooks):
2069 Fix docstring typos.
2070
2071 2014-02-24 Michael Albinus <michael.albinus@gmx.de>
2072
2073 * net/tramp-sh.el (tramp-sh-handle-file-truename): Improve last fix.
2074
2075 2014-02-24 Nicolas Richard <theonewiththeevillook@yahoo.fr>
2076
2077 * minibuffer.el (completion--try-word-completion):
2078 Fix error when completing M-x commands (bug#16808).
2079
2080 2014-02-24 Leo Liu <sdl.web@gmail.com>
2081
2082 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix debug spec.
2083
2084 2014-02-24 Juanma Barranquero <lekktu@gmail.com>
2085
2086 * apropos.el (apropos-print): Avoid formatting error when
2087 apropos-do-all and apropos-compact-layout are both t.
2088
2089 2014-02-23 Juanma Barranquero <lekktu@gmail.com>
2090
2091 * apropos.el (apropos-property, apropos-all-words-regexp)
2092 (apropos-true-hit, apropos-variable, apropos-print):
2093 Fix docstring typos, and remove obsolete comment.
2094
2095 2014-02-23 Michael Albinus <michael.albinus@gmx.de>
2096
2097 * net/tramp-sh.el (tramp-sh-handle-file-truename):
2098 Preserve trailing "/". (Bug#16851)
2099
2100 2014-02-23 Dmitry Gutov <dgutov@yandex.ru>
2101
2102 * progmodes/ruby-mode.el (ruby-smie-rules): Don't indent specially
2103 after `=>' (bug#16811).
2104 (ruby-smie-rules): Handle the inconsistent second element of the
2105 list returned by `smie-indent--parent'.
2106 (ruby-font-lock-keywords): Disqualify any identifier before `=' as
2107 method call.
2108
2109 2014-02-23 Juanma Barranquero <lekktu@gmail.com>
2110
2111 * elec-pair.el (electric-pair-text-syntax-table)
2112 (electric-pair-syntax-info, electric-pair--syntax-ppss)
2113 (electric-pair--balance-info, electric-pair-mode): Fix docstring typos.
2114 (electric-pair--looking-at-unterminated-string-p): Doc fix.
2115 (electric-pair--inside-string-p): Doc fix. Use `let', not `let*'.
2116
2117 2014-02-22 Glenn Morris <rgm@gnu.org>
2118
2119 * imenu.el (imenu--generic-function): Doc fix.
2120
2121 * register.el (frame-configuration-to-register): Make obsolete.
2122
2123 2014-02-22 Juanma Barranquero <lekktu@gmail.com>
2124
2125 * desktop.el (desktop-save-buffer-p): Do not fail when
2126 desktop-files-not-to-save is nil. Return t for true result
2127 as the doc says.
2128
2129 2014-02-22 Daniel Colascione <dancol@dancol.org>
2130
2131 * net/secrets.el (secrets-create-item, secrets-search-items):
2132 Check that attribute values are strings, avoiding the construction
2133 of invalid dbus messages.
2134
2135 2014-02-21 Juanma Barranquero <lekktu@gmail.com>
2136
2137 * emacs-lisp/gv.el: Avoid duplicating gv-expander and gv-setter in
2138 defun-declarations-alist.
2139
2140 2014-02-21 Stefan Monnier <monnier@iro.umontreal.ca>
2141
2142 * emacs-lisp/cl-macs.el (cl-define-compiler-macro): Add indent rule
2143 (bug#16829).
2144
2145 2014-02-21 Juanma Barranquero <lekktu@gmail.com>
2146
2147 * whitespace.el (whitespace-space, whitespace-hspace, whitespace-tab)
2148 (whitespace-newline, whitespace-trailing, whitespace-line)
2149 (whitespace-space-before-tab, whitespace-indentation, whitespace-empty)
2150 (whitespace-space-after-tab): Fix typo in docstrings.
2151
2152 2014-02-21 Dmitry Gutov <dgutov@yandex.ru>
2153
2154 * progmodes/ruby-mode.el (auto-mode-alist): Add missing "or".
2155
2156 * electric.el (electric-indent-functions-without-reindent):
2157 Add `yaml-indent-line'.
2158
2159 2014-02-21 Juanma Barranquero <lekktu@gmail.com>
2160
2161 * w32-vars.el (w32-enable-synthesized-fonts): Mark as obsolete.
2162 It has done nothing for years; should be removed after the release.
2163
2164 * simple.el (choose-completion): Fix docstring typo.
2165 (read-quoted-char-radix): Remove unneeded * in docstring.
2166 (process-file, kill-whole-line, pop-to-mark-command, set-mark-command):
2167 Don't escape parentheses unnecessarily in docstrings.
2168
2169 2014-02-21 Martin Rudalics <rudalics@gmx.at>
2170
2171 Fix handling of window-min-height/-width (Bug#16738).
2172 * window.el (window--dump-window, window--dump-frame):
2173 New functions.
2174 (window--min-size-1): Account for window dividers.
2175 When window-resize-pixelwise is nil, delay rounding till after the
2176 sum of the window components has been calculated.
2177 (window--min-delta-1, window--max-delta-1): When PIXELWISE is
2178 nil make sure at least one text line and two text columns remain
2179 fully visible.
2180 (window-resize): Signal an error when window-resize-apply fails.
2181 (window--resize-child-windows): Fix calculation of by how many
2182 pixels a window can still be shrunk via window-new-normal.
2183 (adjust-window-trailing-edge): Call window--resizable with
2184 correct TRAIL argument.
2185
2186 (with-temp-buffer-window): Don't evaluate BODY within
2187 with-current-buffer (Bug#16816).
2188
2189 2014-02-21 Michael Albinus <michael.albinus@gmx.de>
2190
2191 * net/tramp.el (tramp-check-cached-permissions):
2192 Call `file-attributes' with `suffix' being a symbol but a string.
2193
2194 2014-02-21 Daniel Colascione <dancol@dancol.org>
2195
2196 * net/dbus.el (dbus-init-bus-1): Declare new subr.
2197 (dbus-init-bus): New function: call into dbus-init-bus-1
2198 and installs a handler for the disconnect signal.
2199 (dbus-call-method): Rewrite to look for result in cons.
2200 (dbus-call-method-handler): Store result in cons.
2201 (dbus-check-event): Recognize events with nil sender as valid.
2202 (dbus-handle-bus-disconnect): New function. React to bus
2203 disconnection signal by synthesizing dbus error for each
2204 pending synchronous or asynchronous call.
2205 (dbus-notice-synchronous-call-errors): New function.
2206 (dbus-handle-event): Raise errors directly only when `dbus-debug'
2207 is true, not all the time.
2208
2209 2014-02-21 Juanma Barranquero <lekktu@gmail.com>
2210
2211 * w32-fns.el (w32-enable-italics, w32-charset-to-codepage-alist):
2212 Remove obsolescence declarations, these variables do not exist anymore.
2213
2214 * savehist.el (savehist-save-minibuffer-history)
2215 (savehist-additional-variables, savehist-file, savehist-mode-hook)
2216 (savehist-save-hook, savehist-coding-system, savehist-loaded)
2217 (savehist-load, savehist-install, savehist-autosave): Fix typos;
2218 mostly, refer to "Savehist mode" when talking about the mode,
2219 and not the function.
2220
2221 * saveplace.el (save-place): Remove redundant info in docstring.
2222 (save-place-forget-unreadable-files, toggle-save-place)
2223 (save-place-forget-unreadable-files, save-place-dired-hook):
2224 Fix typos and remove unneeded backslashes.
2225
2226 2014-02-20 Michael Albinus <michael.albinus@gmx.de>
2227
2228 * net/tramp.el (ls-lisp-use-insert-directory-program): Declare.
2229 (tramp-handle-insert-directory): New defun, taken from tramp-gvfs.el.
2230
2231 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist)
2232 <insert-directory>: Use `tramp-handle-insert-directory'.
2233 (tramp-gvfs-handle-insert-directory): Remove function.
2234
2235 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
2236 Call `tramp-handle-insert-directory'.
2237
2238 2014-02-20 Juanma Barranquero <lekktu@gmail.com>
2239
2240 * elec-pair.el (electric-pair-syntax-info): Do not check syntax
2241 before the start of buffer/region (bug#16799).
2242
2243 2014-02-20 Glenn Morris <rgm@gnu.org>
2244
2245 * isearch.el (search-invisible): Doc fix.
2246
2247 2014-02-20 W. Trevor King <wking@tremily.us> (tiny change)
2248
2249 * term/xterm.el (xterm--version-handler): Adapt to xterm-280's output
2250 (bug#16657).
2251
2252 2014-02-19 Juanma Barranquero <lekktu@gmail.com>
2253
2254 * frameset.el (frameset-restore): Delay removing an old frame's
2255 duplicate id until the new frame has been correctly created.
2256
2257 2014-02-19 Michael Albinus <michael.albinus@gmx.de>
2258
2259 * net/tramp.el (tramp-handle-make-symbolic-link): New defun.
2260 (tramp-check-cached-permissions): Call `file-attributes' if the
2261 cache is empty.
2262
2263 * net/tramp-adb.el (tramp-adb-file-name-handler-alist)
2264 <make-symbolic-link>: Use `tramp-handle-make-symbolic-link'.
2265
2266 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist)
2267 <make-symbolic-link>: Use `tramp-handle-make-symbolic-link'.
2268 (tramp-gvfs-maybe-open-connection): Set always connection
2269 properties, even if target is mounted already.
2270
2271 * net/tramp-sh.el (tramp-color-escape-sequence-regexp):
2272 Set tramp-autoload cookie.
2273 (tramp-get-remote-touch): New defun.
2274 (tramp-sh-handle-set-file-times): Use it.
2275 (tramp-sh-handle-directory-files-and-attributes):
2276 Use `tramp-handle-directory-files-and-attributes' if neither stat
2277 nor perl are available on the remote host.
2278
2279 * net/tramp-smb.el (tramp-smb-handle-insert-directory): Mark trailing
2280 "/". Write long listing only when "l" belongs to the switches.
2281
2282 * net/trampver.el: Update release number.
2283
2284 2014-02-19 Juanma Barranquero <lekktu@gmail.com>
2285
2286 * frameset.el (frameset--reuse-frame): Remove workaround for bug#16793.
2287
2288 2014-02-19 Martin Rudalics <rudalics@gmx.at>
2289
2290 * window.el (window-state-put): Allow WINDOW to refer to an
2291 internal window (Bug#16793).
2292
2293 2014-02-19 Glenn Morris <rgm@gnu.org>
2294
2295 * textmodes/remember.el: Move provide statement to end.
2296 (remember-mode-map, remember-notes-mode-map, remember-notes-mode)
2297 (remember-notes): Doc fixes.
2298
2299 2014-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
2300
2301 * delsel.el (delete-char): Restore incorrectly erased property
2302 (bug#16795).
2303
2304 2014-02-18 Juanma Barranquero <lekktu@gmail.com>
2305
2306 * frameset.el (frameset--restore-frame): When a frame is being reused
2307 and its root window is not alive, delete all the frame's windows before
2308 restoring the window state. This works around the issue in bug#16793.
2309
2310 2014-02-18 Glenn Morris <rgm@gnu.org>
2311
2312 * textmodes/remember.el (remember-data-directory)
2313 (remember-directory-file-name-format, remember-store-in-files)
2314 (remember-notes-initial-major-mode, remember-notes-bury-on-kill)
2315 (remember-notes-save-and-bury-buffer)
2316 (remember-notes--kill-buffer-query): Doc fixes.
2317
2318 * desktop.el (desktop-save-mode, desktop-auto-save-timeout): Doc fixes.
2319
2320 2014-02-17 Alan Mackenzie <acm@muc.de>
2321
2322 Connect electric-indent-mode up with CC Mode. Bug #15478.
2323 * progmodes/cc-mode.el (c-initialize-cc-mode): Add CC Mode hooks
2324 to electric-indent-{,local-}-mode.
2325 (c-basic-common-init): Set electric-indent-inhibit.
2326 Initialise c-electric-flag from electric-indent-mode.
2327 (c-electric-indent-mode-hook, c-electric-indent-local-mode-hook):
2328 New hook functions which propagate electric-indent-mode to CC mode.
2329
2330 * progmodes/cc-cmds.el (c-toggle-electric-state): When C-c C-l is
2331 hit, toggle electric-indent-local-mode.
2332
2333 * electric.el (electric-indent-mode-has-been-called):
2334 New variable.
2335
2336 2014-02-17 Juanma Barranquero <lekktu@gmail.com>
2337
2338 * frameset.el (frameset-cfg-id): New function.
2339 (frameset--reuse-frame, frameset-restore): Use it.
2340 (frameset--jump-to-register): Try harder to reuse frames (bug#16748).
2341
2342 2014-02-17 Stefan Monnier <monnier@iro.umontreal.ca>
2343
2344 * ido.el (ido-file-internal): Remove unused var `d'.
2345 Use \` for to match BoS. Fit within 80n columns.
2346
2347 2014-02-17 Daniel Colascione <dancol@dancol.org>
2348
2349 * net/dbus.el (dbus-call-method): Work around bug#16775 by having
2350 dbus-call-method check for completion using a busy-wait loop with
2351 gradual backoff.
2352
2353 2014-02-16 Michael Albinus <michael.albinus@gmx.de>
2354
2355 Sync with Tramp 2.2.9.
2356
2357 * net/trampver.el: Update release number.
2358
2359 2014-02-16 Dmitry Gutov <dgutov@yandex.ru>
2360
2361 * ido.el (ido-file-internal): Don't add the name of an existing
2362 directory twice. (Bug#16747)
2363
2364 2014-02-16 Glenn Morris <rgm@gnu.org>
2365
2366 * vc/ediff-init.el (ediff-use-faces, ediff-highlight-all-diffs):
2367 Do not use ediff-defvar-local on pre-defined variables. (Bug#16744)
2368
2369 2014-02-15 Michael R. Mauger <michael@mauger.com>
2370
2371 * progmodes/sql.el: Version 3.4
2372 (sql-oracle-options): New default value ("-L").
2373 (sql-mode-oracle-font-lock-keywords): Add placeholder highlighting.
2374 (sql-placeholders-filter): Correct placeholder pattern.
2375 (sql-read-table-name): Bug fix. Detect absence of SQLi process.
2376 (sql-login-delay): New variable.
2377 (sql-product-interactive): Use it.
2378
2379 2014-02-15 Juanma Barranquero <lekktu@gmail.com>
2380
2381 * frameset.el (frameset--jump-to-register): Check that buffer is live
2382 (bug#16749).
2383
2384 2014-02-15 Glenn Morris <rgm@gnu.org>
2385
2386 * info.el (info-initialize): Revert 2014-01-10 change.
2387
2388 2014-02-14 Glenn Morris <rgm@gnu.org>
2389
2390 * replace.el (map-query-replace-regexp)
2391 (read-regexp-defaults-function, read-regexp): Doc fixes.
2392
2393 * dired.el (dired-read-regexp):
2394 * faces.el (list-faces-display):
2395 * misearch.el (multi-isearch-read-matching-buffers)
2396 (multi-isearch-read-matching-files):
2397 * play/cookie1.el (cookie-apropos):
2398 * progmodes/grep.el (grep-read-regexp): Doc fixes.
2399
2400 * textmodes/remember.el (remember): Use frameset-to-register
2401 rather than frame-configuration-to-register.
2402
2403 2014-02-14 Jay Belanger <jay.p.belanger@gmail.com>
2404
2405 * calc/calc-menu.el (calc-vectors-menu): Remove menu item for
2406 incorrect keybinding.
2407
2408 2014-02-13 Daniel Colascione <dancol@dancol.org>
2409
2410 * progmodes/flymake.el (flymake-post-syntax-check): Widen buffer
2411 when adding overlays so that line numbers from compiler match line
2412 numbers we use.
2413
2414 2014-02-13 Glenn Morris <rgm@gnu.org>
2415
2416 * mail/rmail.el (rmail-probe): Be less strict. (Bug#16743)
2417
2418 * jit-lock.el (jit-lock-mode): Doc fix.
2419
2420 2014-02-13 Juanma Barranquero <lekktu@gmail.com>
2421
2422 * apropos.el (apropos-read-pattern): When the user passes an empty
2423 string, give a more helpful error message than "Wrong type
2424 argument: stringp, nil".
2425
2426 2014-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
2427
2428 * jit-lock.el (jit-lock-mode): Keep it disabled in indirect buffers.
2429
2430 2014-02-13 Glenn Morris <rgm@gnu.org>
2431
2432 * finder.el (finder-known-keywords, finder-mode-map): Doc fixes.
2433
2434 2014-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
2435
2436 * emulation/cua-base.el (cua-scroll-up, cua-scroll-down): Mark them as
2437 shift-select commands.
2438
2439 2014-02-12 Dmitry Gutov <dgutov@yandex.ru>
2440
2441 * progmodes/js.el (js-indent-line): Don't widen.
2442 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00276.html
2443
2444 2014-02-12 Glenn Morris <rgm@gnu.org>
2445
2446 * icomplete.el (icomplete): Add info-link to defgroup.
2447 (icomplete-with-completion-tables, icomplete-minibuffer-setup-hook)
2448 (icomplete-minibuffer-map, icomplete-mode)
2449 (icomplete-simple-completing-p, icomplete-completions): Doc fixes.
2450
2451 * emacs-lisp/package.el (package-menu-mode-map): Tweak menu.
2452 (package-menu-filter): Rename from package-menu-filter-interactive.
2453 Doc fix.
2454
2455 2014-02-11 Juanma Barranquero <lekktu@gmail.com>
2456
2457 * frameset.el (frameset--jump-to-register): Select the required
2458 window and buffer before restoring position (bug#16696).
2459
2460 2014-02-11 Lars Ingebrigtsen <larsi@gnus.org>
2461
2462 * dired.el (dired-get-marked-files): Clarify doc (bug#11534).
2463
2464 2014-02-10 Glenn Morris <rgm@gnu.org>
2465
2466 * jit-lock.el (jit-lock-force-redisplay): Doc fix. (Bug#14394)
2467
2468 2014-02-10 Eli Zaretskii <eliz@gnu.org>
2469
2470 * w32-common-fns.el (x-get-selection): Doc fix.
2471 * select.el (x-get-selection): Doc fix. (Bug#15109)
2472
2473 * face-remap.el (face-remap-add-relative)
2474 (face-remap-remove-relative, face-remap-reset-base)
2475 (face-remap-set-base): Call force-mode-line-update to redisplay
2476 the current buffer due to potential change in faces. (Bug#16709)
2477
2478 2014-02-10 Michael Albinus <michael.albinus@gmx.de>
2479
2480 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Apply heredoc
2481 script more robustly.
2482
2483 2014-02-10 Lars Ingebrigtsen <larsi@gnus.org>
2484
2485 * dired.el (dired-get-marked-files): Doc fix (bug#11534).
2486
2487 * simple.el (choose-completion): Doc fix (bug#14160).
2488
2489 * subr.el (event-start): Say what a nil EVENT value means.
2490
2491 * kmacro.el (kmacro-bind-to-key): Say that the parameter is unused
2492 (bug#14197).
2493
2494 * progmodes/grep.el (find-program): Doc fix (bug#14289).
2495
2496 * files.el (confirm-kill-emacs): Clarify doc (bug#15455).
2497
2498 * emacs-lisp/lisp.el (up-list): Doc fix (bug#15832).
2499
2500 * files.el (confirm-kill-emacs): Allow specifying an arbitrary
2501 predicate function (bug#15455).
2502
2503 2014-02-10 Dmitry Gutov <dgutov@yandex.ru>
2504
2505 * ielm.el (inferior-emacs-lisp-mode): Instead of
2506 `comment-use-global-state', set `comment-use-syntax'.
2507
2508 2014-02-10 Glenn Morris <rgm@gnu.org>
2509
2510 * emacs-lisp/gulp.el (gulp-discard): Add emacs-devel.
2511
2512 2014-02-09 Alan Mackenzie <acm@muc.de>
2513
2514 Fix c-invalidate-state-cache on narrowed buffers.
2515 * progmodes/cc-defs.el (c-with-all-but-one-cpps-commented-out):
2516 Widen when setting and clearing the CPP delimiter properties.
2517
2518 2014-02-09 Lars Ingebrigtsen <larsi@gnus.org>
2519
2520 * help.el (describe-bindings): Doc fix (bug#9888).
2521
2522 * files.el (save-buffer): Use ARG as the parameter name for
2523 consistency (bug#10346).
2524 (save-buffer): Clarify the 0 argument (bug#10346).
2525
2526 * cus-edit.el (customize-apropos): Fix error string.
2527 (custom-buffer-create): Doc fix (bug#11122).
2528 (custom-sort-items): Doc fix (bug#11121).
2529
2530 * repeat.el (repeat-message-function): Reword doc slightly (bug#11619).
2531
2532 * icomplete.el (icomplete-with-completion-tables): Doc fix (bug#11654).
2533 (icomplete-simple-completing-p): Mention the previous variable.
2534
2535 * font-lock.el (font-lock-value-in-major-mode): Clarify the
2536 meaning of the parameter (bug#12282).
2537
2538 * files.el (find-file-noselect): Clarify prompt when changing
2539 readedness (bug#13261).
2540 (locate-file): Suffixes aren't returned, so don't say that they
2541 are (bug#12674).
2542 (backup-inhibited): Doc clarification (bug#12525).
2543
2544 * dired.el (dired-internal-do-deletions): Don't say "Deleting..."
2545 before we actually start to delete things (bug#16331).
2546
2547 * subr.el (event-start): Doc fix (bug#14228).
2548 (event-end): Ditto.
2549
2550 2014-02-09 Glenn Morris <rgm@gnu.org>
2551
2552 * emacs-lisp/warnings.el (lwarn):
2553 Empower help-enable-auto-load. (Bug#15940)
2554
2555 2014-02-08 Andreas Schwab <schwab@linux-m68k.org>
2556
2557 * vc/log-edit.el (log-edit-comment-to-change-log): Doc fix.
2558 (Bug#16690)
2559
2560 2014-02-08 Michael Albinus <michael.albinus@gmx.de>
2561
2562 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
2563 Insert output at end of buffer. (Bug#16120)
2564
2565 2014-02-08 Lars Ingebrigtsen <larsi@gnus.org>
2566
2567 * simple.el (choose-completion-string-functions): Document new
2568 calling convention (bug#14153).
2569 (execute-extended-command): Clarify doc string (bug#13373).
2570
2571 * kmacro.el (kmacro-exec-ring-item): Doc fix (bug#14198).
2572
2573 * find-dired.el (find-name-dired): Doc fix (bug#14290).
2574 (find-grep-dired): Doc fix (bug#14288).
2575
2576 2014-02-08 Juri Linkov <juri@jurta.org>
2577
2578 * isearch.el (isearch-quote-char): Check character validity
2579 like in `quoted-insert' (bug#16677).
2580
2581 2014-02-08 Lars Ingebrigtsen <larsi@gnus.org>
2582
2583 * files.el (find-file-visit-truename): Doc clarification (bug#14697).
2584
2585 * isearch.el (isearch-hide-immediately): Doc clarification
2586 (bug#14723).
2587
2588 * simple.el (line-move): Document utility function used many
2589 places in the Emacs sources (bug#14843).
2590
2591 * dired.el (dired-mode-map): Make :help text more accurate (bug#14893).
2592 (dired-prev-marked-file): Doc fix (bug#14855).
2593 (dired-up-directory): Doc fix (bug#14848).
2594
2595 * minibuffer.el (read-file-name): Doc clarification (bug#15096).
2596
2597 * files.el (file-relative-name): Doc fix (bug#15159).
2598
2599 * fringe.el (fringe-styles): Doc fix (bug#15239).
2600
2601 * isearch.el (isearch-filter-predicate): Documentation typo fix
2602 (bug#15474).
2603
2604 * info-look.el (info-lookup-symbol): Document MODE (bug#15498).
2605
2606 * isearch.el (isearch-cmds): Doc clarification (bug#15547).
2607
2608 * replace.el (replace-match-maybe-edit): Doc clarification
2609 (bug#15632).
2610
2611 * subr.el (add-to-list): Refill the paragraphs (bug#15791).
2612
2613 * macros.el (insert-kbd-macro): Doc fix (bug#16025).
2614
2615 2014-02-08 Glenn Morris <rgm@gnu.org>
2616
2617 * help-fns.el (describe-variable):
2618 Check {file,dir}-local-variables-alist, and buffer-file-name,
2619 in the correct buffer.
2620
2621 2014-02-08 Ingo Lohmar <i.lohmar@gmail.com>
2622
2623 * help-fns.el (describe-variable): Fix the case where
2624 a value is directory-local with no dir-locals file. (Bug#16635)
2625
2626 2014-02-08 Glenn Morris <rgm@gnu.org>
2627
2628 * abbrev.el (edit-abbrevs-mode):
2629 Derive from fundamental-mode. (Bug#16682)
2630
2631 2014-02-07 Juanma Barranquero <lekktu@gmail.com>
2632
2633 * simple.el (quoted-insert): Check character validity (bug#16677).
2634
2635 2014-02-07 Juri Linkov <juri@jurta.org>
2636
2637 * desktop.el (desktop-read): Claim the lock when the owner is not
2638 the current process. (Bug#16157)
2639
2640 2014-02-07 Juri Linkov <juri@jurta.org>
2641
2642 * desktop.el (desktop-buffers-not-to-save): Change default from nil
2643 to "\\` ". (Bug#16651)
2644
2645 2014-02-07 Juri Linkov <juri@jurta.org>
2646
2647 * desktop.el (desktop-save-mode): Call `desktop-auto-save-set-timer'
2648 when enabling, and `desktop-auto-save-cancel-timer' when disabling.
2649 (desktop-auto-save-cancel-timer): New function with some code from
2650 `desktop-auto-save-set-timer'.
2651 (after-init-hook): Don't call `desktop-auto-save-set-timer'.
2652 Instead of setting `desktop-save-mode' to nil, call
2653 `desktop-save-mode' with arg 0. (Bug#16630)
2654
2655 2014-02-07 Glenn Morris <rgm@gnu.org>
2656
2657 * hi-lock.el (hi-lock-auto-select-face, hi-lock-line-face-buffer)
2658 (hi-lock-face-buffer, hi-lock-face-phrase-buffer)
2659 (hi-lock-face-symbol-at-point, hi-lock-read-face-name): Doc tweaks.
2660
2661 * obsolete/iswitchb.el: Move to obsolete/.
2662 * simple.el (iswitchb-mode): Add manual autoloads to ease transition,
2663 since obsolete/ is not scanned for autoloads.
2664 * emacs-lisp/authors.el (authors-valid-file-names):
2665 Add iswitchb.el.
2666
2667 * obsolete/meese.el: Restore as obsolete (deleted 2014-01-11).
2668 Disable now non-functional find-file-hook.
2669
2670 2014-02-06 Michael Albinus <michael.albinus@gmx.de>
2671
2672 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use "&&"
2673 instead of ";" in order to avoid additional prompts. Let heredoc
2674 scripts read from tty. (Bug#16582)
2675 (tramp-send-command): No special handling of heredocs, it isn't
2676 necessary anymore.
2677
2678 2014-02-06 Stefan Monnier <monnier@iro.umontreal.ca>
2679
2680 * emacs-lisp/lisp.el (lisp-completion-at-point): Symbols don't start
2681 with a space (bug#16664). Limit the symbols considered to the ones
2682 that are bound or fbound (bug#16646).
2683
2684 2014-02-06 Glenn Morris <rgm@gnu.org>
2685
2686 * epa.el (epa-mail-aliases): Doc fix.
2687
2688 2014-02-06 Dmitry Gutov <dgutov@yandex.ru>
2689
2690 * emacs-lisp/lisp.el (lisp-completion-at-point):
2691 Use `completion-table-merge' instead of `completion-table-in-turn'
2692 (bug#16604).
2693
2694 * minibuffer.el (completion-table-merge): New function.
2695
2696 2014-02-05 Michael Albinus <michael.albinus@gmx.de>
2697
2698 * net/tramp-sh.el (tramp-end-of-heredoc): New defconst.
2699 (tramp-sh-handle-set-file-acl)
2700 (tramp-sh-handle-start-file-process)
2701 (tramp-sh-handle-write-region, tramp-sh-handle-vc-registered)
2702 (tramp-find-executable, tramp-send-command): Use it.
2703
2704 2014-02-05 Glenn Morris <rgm@gnu.org>
2705
2706 * epa.el (epa-mail-aliases): Fix custom type. Doc tweak.
2707
2708 2014-02-04 Fabián Ezequiel Gallina <fgallina@gnu.org>
2709
2710 * progmodes/python.el (python-shell-send-string)
2711 (python-shell-send-string-no-output): Fix docstring (Bug#16547).
2712
2713 2014-02-04 Anders Lindgren <andlind@gmail.com>
2714
2715 * emacs-lisp/ert.el (ert--activate-font-lock-keywords): Allow dashes in
2716 the names (bug#16620).
2717
2718 2014-02-03 Martin Rudalics <rudalics@gmx.at>
2719
2720 * faces.el (window-divider): New default value. Rewrite doc-string.
2721 (window-divider-first-pixel, window-divider-last-pixel): New faces.
2722
2723 2014-02-03 Dmitry Gutov <dgutov@yandex.ru>
2724
2725 * progmodes/ruby-mode.el (ruby-font-lock-keywords): `private',
2726 `protected' and `public' can also be called without arguments.
2727
2728 2014-02-03 Glenn Morris <rgm@gnu.org>
2729
2730 * register.el (window-configuration-to-register)
2731 (frame-configuration-to-register): Unadvertise unused argument.
2732 * frameset.el (frameset-to-register): Remove unused argument.
2733
2734 * frameset.el (frameset-to-register):
2735 * kmacro.el (kmacro-to-register):
2736 * register.el (increment-register):
2737 * calc/calc-yank.el (calc-copy-to-register, calc-insert-register)
2738 (calc-append-to-register, calc-prepend-to-register):
2739 * play/gametree.el (gametree-layout-to-register)
2740 (gametree-apply-register-layout):
2741 * textmodes/picture.el (picture-clear-rectangle-to-register)
2742 (picture-yank-rectangle-from-register):
2743 * vc/emerge.el (emerge-combine-versions-register):
2744 Use register-read-with-preview to read registers.
2745
2746 2014-02-03 João Távora <joaotavora@gmail.com>
2747
2748 * elec-pair.el (electric-pair-backward-delete-char): Don't error
2749 when at beginning of (possibly narrowed) buffer.
2750
2751 2014-02-02 Daniel Colascione <dancol@dancol.org>
2752
2753 * help-at-pt.el (help-at-pt-string, help-at-pt-maybe-display):
2754 Also try to display local help from just before point.
2755
2756 2014-02-02 Alan Mackenzie <bug-cc-mode@gnu.org>
2757
2758 c-parse-state. Don't "append-lower-brace-pair" in certain
2759 circumstances. Also fix an obscure bug where "\\s!" shouldn't be
2760 recognised as a comment.
2761
2762 * progmodes/cc-engine.el (c-state-pp-to-literal): Check for "\\s!"
2763 as well as normal comment starter.
2764 (c-parse-state-get-strategy): Extra return possibility
2765 'back-and-forward.
2766 (c-remove-stale-state-cache): Extra element CONS-SEPARATED in
2767 return value list to indicate replacement of a brace-pair cons
2768 with its car.
2769 (c-parse-state-1): With 'back-and-forward, only call
2770 c-append-lower-brace-pair-to state-cache when cons-separated.
2771
2772 2014-02-02 Jan Djärv <jan.h.d@swipnet.se>
2773
2774 * term/ns-win.el (ns-suspend-error): New function.
2775 (ns-initialize-window-system): Add ns-suspend-error to
2776 suspend-hook (Bug#16612).
2777
2778 2014-02-02 Daniel Colascione <dancol@dancol.org>
2779
2780 * progmodes/cc-defs.el (c-find-assignment-for-mode):
2781 Make loading cc-mode silent.
2782
2783 2014-02-02 Daniel Colascione <dancol@dancol.org>
2784
2785 * comint.el (comint-prompt-read-only): Change doc to suggest
2786 remap keybinding.
2787
2788 2014-02-02 Glenn Morris <rgm@gnu.org>
2789
2790 * register.el (register-read-with-preview, point-to-register)
2791 (window-configuration-to-register, frame-configuration-to-register)
2792 (jump-to-register, number-to-register, view-register, insert-register)
2793 (copy-to-register, append-to-register, prepend-to-register)
2794 (copy-rectangle-to-register): Doc fixes.
2795
2796 2014-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
2797
2798 * help-fns.el (help-C-file-name): Handle advised functions (bug#16478).
2799 * emacs-lisp/find-func.el (find-function-C-source): Idem.
2800 * emacs-lisp/nadvice.el (advice--cd*r): New function.
2801 * help-fns.el (describe-function-1): Use it.
2802
2803 2014-02-02 Glenn Morris <rgm@gnu.org>
2804
2805 * register.el (register-preview-default): New function,
2806 split from register-preview.
2807 (register-preview-function): Rename from register-preview-functions,
2808 make it not a hook.
2809 (register-preview): Use register-preview-function.
2810 (register-read-with-preview): Error on non-character event. (Bug#16595)
2811
2812 2014-02-01 Dmitry Gutov <dgutov@yandex.ru>
2813
2814 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Check for
2815 `:' before binary operators (bug#16609). Don't check for `:'
2816 before `[' and `(', or their syntax status. A percent literal
2817 can't end with either.
2818 (ruby-font-lock-keywords): For built-ins that require arguments,
2819 check that they're followed by something that looks like argument
2820 (bug#16610).
2821
2822 2014-02-01 Lars Ingebrigtsen <larsi@gnus.org>
2823
2824 * subr.el (butlast): Document what an omitted N means (bug#13437).
2825 (nbutlast): Ditto.
2826
2827 2014-01-31 Lars Ingebrigtsen <larsi@gnus.org>
2828
2829 * net/shr.el (shr-generic): Make into a defsubst to make the stack
2830 depth shallower (bug#16587).
2831 (shr-tag-svg): Respect `shr-inhibit-images'.
2832 (shr-dom-to-xml): Respect `shr-blocked-images' (bug#15882).
2833
2834 2014-01-31 Dmitry Gutov <dgutov@yandex.ru>
2835
2836 * progmodes/ruby-mode.el (ruby-align-chained-calls): New option.
2837 (ruby-smie-grammar): Make "." right-associative. Make its priority
2838 lower than the ternary and all binary operators.
2839 (ruby-smie-rules): Indent "(" relative to the first non-"."
2840 parent, or the first "." parent at indentation.
2841 Use `ruby-align-chained-calls' for indentation of "." tokens.
2842 (Bug#16593)
2843
2844 2014-01-31 Juri Linkov <juri@jurta.org>
2845
2846 * sort.el (delete-duplicate-lines): Remove `:weakness 'key'
2847 from `make-hash-table'.
2848
2849 * textmodes/ispell.el (ispell-init-process): Change message format
2850 to be consistent with other messages.
2851
2852 2014-01-31 Glenn Morris <rgm@gnu.org>
2853
2854 * delsel.el (delete-selection-mode): Doc fix.
2855
2856 * emacs-lisp/trace.el (trace--read-args, trace-function-foreground)
2857 (trace-function-background): Doc fixes.
2858
2859 * ido.el (ido-use-virtual-buffers): Doc fix.
2860 Reset :version, since the default value has not changed.
2861
2862 * register.el (register-preview-delay, register-read-with-preview):
2863 Doc fixes.
2864
2865 * mail/reporter.el (reporter-dump-variable): In case of void-variable,
2866 do not mess with mail-buffer position (fixes 2009-11-03 change).
2867 * progmodes/cc-mode.el (c-submit-bug-report):
2868 Check auto-fill-mode is bound. (Bug#16592)
2869
2870 2014-01-31 Darren Hoo <darren.hoo@gmail.com>
2871
2872 * startup.el (fancy-splash-image-file): New function,
2873 split from fancy-splash-head.
2874 (fancy-splash-head, use-fancy-splash-screens-p): Use it,
2875 so that we are both using the same image. (Bug#16574)
2876
2877 2014-01-30 Glenn Morris <rgm@gnu.org>
2878
2879 * simple.el (eval-expression): Doc fix.
2880
2881 * hexl.el (hexl-mode-hook):
2882 * ielm.el (ielm-mode-hook):
2883 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-hook)
2884 (lisp-interaction-mode-hook):
2885 * progmodes/cfengine.el (cfengine3-documentation-function):
2886 Replace obsolete alias `turn-on-eldoc-mode' with `eldoc-mode'.
2887
2888 2014-01-30 Stefan Monnier <monnier@iro.umontreal.ca>
2889
2890 * emacs-lisp/eieio-opt.el (eieio-help-generic): Don't assume `generic'
2891 is a symbol (bug#16584).
2892
2893 2014-01-30 Glenn Morris <rgm@gnu.org>
2894
2895 * help.el (help-for-help-internal): Add "P" to text.
2896
2897 2014-01-29 Glenn Morris <rgm@gnu.org>
2898
2899 * simple.el (just-one-space, cycle-spacing): Doc fixes.
2900
2901 2014-01-28 Martin Rudalics <rudalics@gmx.at>
2902
2903 * window.el (fit-frame-to-buffer): Fix calculations for margins and
2904 height constraints.
2905
2906 2014-01-28 Luke Lee <luke.yx.lee@gmail.com>
2907
2908 * progmodes/hideif.el: Extend to full CPP expression syntax.
2909 (hif-token-alist): Add missing tokens.
2910 (hif-token-regexp): Add support for float/octal/hex immediates.
2911 (hif-string-literal-regexp): New const.
2912 (hif-tokenize): Recognize strings and float/octal/hex immediates.
2913 (hif-exprlist): New function.
2914 (hif-parse-if-exp): Use it.
2915 (hif-logior-expr, hif-logxor-expr, hif-logand-expr, hif-comp-expr)
2916 (hif-logshift-expr, hif-muldiv-expr, hif-lognot, hif-shiftleft)
2917 (hif-shiftright, hif-multiply, hif-divide, hif-modulo, hif-equal)
2918 (hif-logxor, hif-comma): New functions.
2919
2920 2014-01-28 Glenn Morris <rgm@gnu.org>
2921
2922 * textmodes/fill.el (fill-single-char-nobreak-p): Doc tweak.
2923
2924 * indent.el (tab-stop-list): Doc fix. Add :version.
2925
2926 * vc/pcvs.el (vc-editable-p, vc-checkout): Remove unused declarations.
2927 (cvs-append-to-ignore): Add compatibility alias.
2928
2929 2014-01-27 Glenn Morris <rgm@gnu.org>
2930
2931 * dired.el (dired-hide-details-mode): Don't autoload it,
2932 since it cannot be used outside Dired buffers anyway.
2933
2934 * emulation/cua-base.el (cua-mode): Doc fix.
2935
2936 * dired.el (dired-hide-details-hide-symlink-targets)
2937 (dired-hide-details-hide-information-lines)
2938 (dired-hide-details-mode): Doc fixes.
2939
2940 * shadowfile.el (shadow-info-file, shadow-todo-file): Doc fix.
2941 * strokes.el (strokes-file): Doc fix. Bump :version.
2942 (strokes-help): Doc fix.
2943 * emulation/viper-init.el (viper-vi-style-in-minibuffer): Doc fix.
2944 * emulation/viper.el (viper): Doc fix for custom group.
2945 (top-level): Remove oh-so-no-longer-relevant text about vip.
2946 * obsolete/otodo-mode.el (todo-prefix): Doc fix.
2947
2948 * ido.el (ido-save-directory-list-file):
2949 * saveplace.el (save-place-file):
2950 * calendar/timeclock.el (timeclock-file):
2951 * net/quickurl.el (quickurl-url-file):
2952 * obsolete/otodo-mode.el (todo-file-do, todo-file-done, todo-file-top):
2953 * progmodes/idlwave.el (idlwave-config-directory):
2954 * textmodes/remember.el (remember-data-file):
2955 Bump :version.
2956
2957 2014-01-26 Glenn Morris <rgm@gnu.org>
2958
2959 * progmodes/opascal.el (opascal-tab-always-indents, opascal-tab):
2960 Doc fix. Make obsolete.
2961 (opascal-mode): No longer mention opascal-tab-always-indents in doc.
2962
2963 * sort.el (delete-duplicate-lines): Doc fix.
2964
2965 2014-01-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
2966
2967 * progmodes/ada-mode.el (ada):
2968 * woman.el (woman): Link to info manual and Commentary section.
2969
2970 * progmodes/flymake.el (flymake):
2971 * nxml/nxml-mode.el (nxml):
2972 * net/eww.el (eww):
2973 * speedbar.el (speedbar, speedbar-faces, speedbar-vc):
2974 * htmlfontify.el (htmlfontify):
2975 * ses.el (ses):
2976 * epa.el (epa):
2977 * ido.el (ido): Link to info manual.
2978
2979 2014-01-25 Leo Liu <sdl.web@gmail.com>
2980
2981 * progmodes/flymake.el (flymake-make-overlay): No rear advance.
2982
2983 2014-01-25 Adam Sjøgren <asjo@koldfront.dk>
2984
2985 * net/shr.el (shr-tag-img): Prefer the title over the alt text
2986 (bug#16537).
2987
2988 2014-01-24 Juanma Barranquero <lekktu@gmail.com>
2989
2990 * net/eww.el (eww-download-callback):
2991 Fix reference to eww-download-directory.
2992
2993 * emacs-lisp/bytecomp.el (byte-compile-file):
2994 Remove unused local variable `file-name'.
2995
2996 2014-01-24 Glenn Morris <rgm@gnu.org>
2997
2998 * woman.el (woman-default-faces, woman-monochrome-faces):
2999 Fix obsolescence specification.
3000
3001 * subr.el (with-demoted-errors): Doc fix.
3002
3003 2014-01-23 Stefan Monnier <monnier@iro.umontreal.ca>
3004
3005 * emacs-lisp/cl-macs.el: Improve type->predicate mapping (bug#16520).
3006 (cl--macroexp-fboundp): New function.
3007 (cl--make-type-test): Use it.
3008
3009 2014-01-23 Glenn Morris <rgm@gnu.org>
3010
3011 * emacs-lisp/lisp-mode.el (eval-print-last-sexp, eval-last-sexp):
3012 * simple.el (eval-expression): Doc fixes.
3013
3014 2014-01-22 Glenn Morris <rgm@gnu.org>
3015
3016 * emacs-lisp/authors.el (authors-fixed-entries): Addition.
3017
3018 2014-01-22 Stefan Monnier <monnier@iro.umontreal.ca>
3019
3020 * emacs-lisp/package.el: Write files silently.
3021 (package-autoload-ensure-default-file, package--write-file-no-coding)
3022 (package-generate-description-file, package--download-one-archive)
3023 (package-install-from-archive): Tell `write-region' to stay quiet.
3024 (package-menu-mode, package-menu--print-info): Omit the Archive column
3025 if there's only one archive.
3026 (package-all-keywords, package--has-keyword-p): Remove dead code.
3027
3028 2014-01-22 Glenn Morris <rgm@gnu.org>
3029
3030 * version.el (emacs-bzr-version-bzr): Fix typo.
3031
3032 * version.el (emacs-repository-get-version):
3033 Check either .bzr or .git, but not both.
3034 Make the git case actually use the DIR argument, and return nil
3035 rather than the empty string.
3036 Avoid error if .git exists but the git executable is not found.
3037
3038 2014-01-22 Martin Rudalics <rudalics@gmx.at>
3039
3040 Fixes in window size functions around Bug#16430 and Bug#16470.
3041 * window.el (window-total-size, window-size): New argument ROUND.
3042 (window--min-delta-1, window-min-delta, window--max-delta-1):
3043 Be more conservative when calculating the numbers of lines or
3044 columns a window can shrink (Bug#16430).
3045 (fit-window-to-buffer): Simplify code.
3046 * term.el (term-window-width): Call window-body-width again.
3047
3048 2014-01-22 Glenn Morris <rgm@gnu.org>
3049
3050 * image.el (image-format-suffixes): Doc fix.
3051
3052 * international/quail.el (quail-define-package): Doc fix.
3053
3054 * emacs-lisp/authors.el (authors-valid-file-names)
3055 (authors-renamed-files-alist): Additions.
3056
3057 * vc/vc-git.el (vc-git-print-log): Remove --follow;
3058 reverts 2014-01-09 change. (Bug#16422)
3059
3060 * calc/calc-embed.el (thing-at-point-looking-at):
3061 * emacs-lisp/map-ynp.el (x-popup-dialog):
3062 * obsolete/lmenu.el (x-popup-dialog):
3063 * emacs-lisp/package.el (url-recreate-url):
3064 * mail/mailclient.el (clipboard-kill-ring-save):
3065 * subr.el (x-popup-dialog): Update declaration.
3066 * mail/rmail.el (rmail-mime-message-p):
3067 * window.el (tool-bar-lines-needed): Remove unnecessary declaration.
3068
3069 2014-01-21 Daniel Colascione <dancol@dancol.org>
3070
3071 * progmodes/sh-script.el (sh--inside-noncommand-expression):
3072 Correctly detect when we're inside an arithmetic expansion form
3073 containing nested parenthesis.
3074 (sh--maybe-here-document): Use `sh--inside-noncommand-expression'
3075 to detect cases where we shouldn't expand "<<" to a heredoc
3076 skeleton.
3077
3078 2014-01-21 Stefan Monnier <monnier@iro.umontreal.ca>
3079
3080 * emacs-lisp/eldoc.el: Properly remove message in minibuffer case.
3081 (eldoc--message-command-p): New function.
3082 (eldoc-display-message-p): Use it.
3083 (eldoc-pre-command-refresh-echo-area): In the minibuffer case, the
3084 message is not automatically erased for us.
3085 (eldoc-print-current-symbol-info): Erase previous message, if any.
3086
3087 2014-01-21 Tassilo Horn <tsdh@gnu.org>
3088
3089 * textmodes/reftex.el (reftex-create-bibtex-file): Fix autoload to
3090 specify it's an interactive function.
3091
3092 * textmodes/reftex-cite.el (reftex-all-used-citation-keys):
3093 Fix regex used for scanning for citation keys which failed for
3094 citations with optional arguments.
3095
3096 2014-01-21 Leo Liu <sdl.web@gmail.com>
3097
3098 * simple.el (read--expression): Don't enable eldoc-mode.
3099
3100 2014-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
3101
3102 * simple.el (move-beginning-of-line): Make sure we don't move forward
3103 (bug#16497).
3104
3105 2014-01-20 Juri Linkov <juri@jurta.org>
3106
3107 * saveplace.el (toggle-save-place, save-place-to-alist)
3108 (save-places-to-alist, save-place-dired-hook): Add (derived-mode-p
3109 'dired-mode) before checking for dired-directory. (Bug#16477)
3110
3111 2014-01-20 Juri Linkov <juri@jurta.org>
3112
3113 * indent.el (indent-line-to): Use backward-to-indentation
3114 instead of back-to-indentation. (Bug#16461)
3115
3116 2014-01-20 Paul Eggert <eggert@cs.ucla.edu>
3117
3118 Revert some of the CANNOT_DUMP fix (Bug#16494).
3119 Because of this, "make bootstrap" won't work if CANNOT_DUMP=yes,
3120 but fixing this can wait until after the next release.
3121 * Makefile.in (emacs): Keep EMACSLOADPATH empty.
3122
3123 2014-01-19 Michael Albinus <michael.albinus@gmx.de>
3124
3125 * eshell/esh-mode.el (eshell-password-prompt-regexp):
3126 Use `password-word-equivalents'.
3127 (eshell-watch-for-password-prompt): Let-bind `case-fold-search'
3128 to t. (Bug#5664, Bug#13124)
3129
3130 2014-01-19 Alan Mackenzie <acm@muc.de>
3131
3132 Bind open-paren-in-column-0-is-defun-start to nil at some entry
3133 points.
3134 * progmodes/cc-engine.el (c-invalidate-state-cache-1)
3135 (c-parse-state-1, c-guess-basic-syntax): Bind it here.
3136 * progmodes/cc-mode.el (c-before-change, c-after-change)
3137 (c-font-lock-fontify-region): Bind it here.
3138
3139 2014-01-19 Martin Rudalics <rudalics@gmx.at>
3140
3141 * term.el (term-window-width): Call window-text-width instead of
3142 window-width (Bug#16470).
3143
3144 2014-01-18 Paul Eggert <eggert@cs.ucla.edu>
3145
3146 * simple.el (password-word-equivalents): Remove duplicates.
3147 Sort, to make this easier next time.
3148 Downcase. Omit ": " after "jelszó".
3149
3150 2014-01-18 Jan Djärv <jan.h.d@swipnet.se>
3151
3152 * term/common-win.el (saved-region-selection): Defvar it.
3153 (x-select-text): Set saved-region-selection (Bug#16382).
3154
3155 2014-01-18 Glenn Morris <rgm@gnu.org>
3156
3157 * emacs-lisp/authors.el (authors-aliases)
3158 (authors-renamed-files-alist): Add some entries.
3159
3160 2014-01-17 Michael Albinus <michael.albinus@gmx.de>
3161
3162 * net/tramp.el (tramp-password-prompt-regexp):
3163 Use `password-word-equivalents' if available.
3164 (tramp-action-password, tramp-process-one-action)
3165 (tramp-read-passwd): Let-bind `case-fold-search' to t. (Bug#13124)
3166
3167 2014-01-17 Chong Yidong <cyd@gnu.org>
3168
3169 * simple.el (password-word-equivalents): New defcustom.
3170 * comint.el (comint-password-prompt-regexp): Use it. Bump version
3171 to 24.4.
3172 (comint-watch-for-password-prompt): Let-bind `case-fold-search'
3173 to t. (Bug#13124)
3174
3175 2014-01-17 Dmitry Gutov <dgutov@yandex.ru>
3176
3177 * progmodes/ruby-mode.el (ruby-alignable-keywords): New constant.
3178 (ruby-align-to-stmt-keywords): Change the default value.
3179 Use `ruby-alignable-keywords' to generate the possible customization
3180 choices.
3181 (ruby-smie-rules): Instead of using a hardcoded list of alignable
3182 keywords, check against the value of `ruby-alignable-keywords'
3183 (http://lists.gnu.org/archive/html/emacs-devel/2014-01/msg01439.html).
3184
3185 2014-01-17 Glenn Morris <rgm@gnu.org>
3186
3187 * emacs-lisp/authors.el (authors-aliases): Remove unnecessary entries.
3188
3189 Make M-x authors return zero *Authors Errors* from current logs.
3190 * emacs-lisp/authors.el (authors-obsolete-files-regexps)
3191 (authors-ignored-files): Add some entries, remove others.
3192 (authors-ambiguous-files, authors-valid-file-names):
3193 Add some entries.
3194 (authors-renamed-files-alist): Add, remove, and adjust entries.
3195 (authors-renamed-files-regexps): Add some entries.
3196 Remove some very broad ones. Make some entries `lax'.
3197 (authors-lax-changelogs): New constant.
3198 (authors-disambiguate-file-name): Treat top-level specially.
3199 (authors-lax-changelog-p): New function.
3200 (authors-canonical-file-name): Check file as written against
3201 authors-valid-file-names. Do not special-case etc/.
3202 Handle `lax' logs and authors-renamed-files-regexps elements.
3203
3204 2014-01-16 Dmitry Gutov <dgutov@yandex.ru>
3205
3206 * emacs-lisp/package.el (package-desc--keywords): Use `cdr' with
3207 `assoc'. Use `nth' instead of `cdr'. Make private. Update all
3208 callers.
3209
3210 2014-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
3211
3212 * follow.el (follow-adjust-window): Remove `dest' argument (bug#16426).
3213 Assume we're already in the proper buffer.
3214 Inspired by Anders Lindgren <andlind@gmail.com>.
3215 (follow-post-command-hook): Call it from the right buffer.
3216 (follow-comint-scroll-to-bottom): Adjust call.
3217 (follow-all-followers): Use get-buffer-window-list.
3218
3219 2014-01-15 Daniel Colascione <dancol@dancol.org>
3220
3221 * emacs-lisp/bytecomp.el (byte-compile-file): Use whole
3222 `buffer-file-name' in interactive-form so that we don't leave
3223 pathless file names in `file-name-history'.
3224
3225 2014-01-15 Juri Linkov <juri@jurta.org>
3226
3227 * indent.el (indent-rigidly): Set deactivate-mark to nil
3228 in transient indentation mode. (Bug#16438)
3229
3230 2014-01-15 Dmitry Gutov <dgutov@yandex.ru>
3231
3232 * emacs-lisp/package.el (package-desc-keywords): New function
3233 (Bug#16222).
3234 (describe-package-1, package-all-keywords)
3235 (package--has-keyword-p): Use it.
3236
3237 2014-01-14 Nicolas Richard <theonewiththeevillook@yahoo.fr>
3238
3239 * simple.el (define-alternatives): When creating the
3240 COMMAND-alternatives variable, assign COMMAND as its definition
3241 name so that `describe-variable' can relocate it.
3242
3243 2014-01-14 Matthew Leach <matthew@mattleach.net> (tiny change)
3244
3245 * font-lock.el (font-lock-keywords): Fix typo in docstring
3246 (bug#16307).
3247
3248 2014-01-14 Agustín Martín Domingo <agustin.martin@hispalinux.es>
3249
3250 * ispell.el (ispell-region): Reset `in-comment' for new line
3251 instead of wrongly reset `add-coment' (bug#13577).
3252
3253 2014-01-14 Daiki Ueno <ueno@gnu.org>
3254
3255 * epa-file.el (epa-file-write-region): Encode the region according
3256 to `buffer-file-format'. Problem reported at:
3257 <http://sourceforge.jp/ticket/browse.php?group_id=2267&tid=32917>.
3258
3259 2014-01-14 Stefan Monnier <monnier@iro.umontreal.ca>
3260
3261 * emacs-lisp/edebug.el (edebug--display): Move protective let-binding
3262 so it applies in the right buffer (bug#16410).
3263
3264 2014-01-13 Daniel Colascione <dancol@dancol.org>
3265
3266 * textmodes/rst.el (rst-define-key): Provide deprecated
3267 keybindings through named functions instead of anonymous ones so
3268 that "??" doesn't appear in describe-mode output.
3269
3270 2014-01-13 Bastien Guerry <bzg@gnu.org>
3271
3272 * simple.el (define-alternatives): Call the selected command
3273 interactively. When setting `COMMAND--implementation' for the
3274 first time, tell the user how to chose another implementation.
3275 Enhance the docstring.
3276
3277 2014-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
3278
3279 * vc/log-edit.el: Fix highlighting of summary when it's the first line.
3280 (log-edit--match-first-line): New function.
3281 (log-edit-font-lock-keywords): Use it.
3282 (log-edit-mode): Make jit-lock-defer-multiline work.
3283
3284 2014-01-13 Bastien Guerry <bzg@gnu.org>
3285
3286 * rect.el (rectangle-mark-mode): When the region is not active,
3287 display a message saying that the mark as been set and that
3288 rectangle mode is in use.
3289 (rectangle--highlight-for-redisplay): Only put an overlay with a
3290 visible vertical bar when (display-graphic-p) is non-nil.
3291 This partially fixes Bug#16403.
3292
3293 2014-01-13 Juri Linkov <juri@jurta.org>
3294
3295 * info.el (Info-find-file): Go to DIR before displaying the error
3296 about a nonexistent file if no previous Info file is visited.
3297 Use `user-error' instead of `error' for "Info file %s does not exist".
3298 (Info-find-node-2): In case of a nonexistent node in unwind forms
3299 go to the Top node if there is no previous node to revert to.
3300 (Bug#16405)
3301
3302 2014-01-13 Martin Rudalics <rudalics@gmx.at>
3303
3304 fit-frame/window-to-buffer code fixes including one for Bug#14096.
3305 * window.el (fit-frame-to-buffer): Fix doc-string.
3306 Respect window-min-height/-width. Fit pixelwise when
3307 frame-resize-pixelwise is non-nil. Adjust right/bottom edge
3308 when avoiding that frame goes partially off-screen.
3309 (fit-window-to-buffer): Respect window-min-height/-width
3310 (Bug#14096).
3311
3312 2014-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
3313
3314 * indent.el (indent-according-to-mode): Flush to column 0 in text-mode
3315 after an empty line.
3316
3317 2014-01-12 Stefan Monnier <monnier@iro.umontreal.ca>
3318
3319 * net/shr.el (shr-render-region): Autoload.
3320
3321 2014-01-12 Xue Fuqiao <xfq.free@gmail.com>
3322
3323 * net/eww.el (eww-download-directory): Rename from
3324 `eww-download-path' (Bug#16419).
3325
3326 2014-01-12 Leo Liu <sdl.web@gmail.com>
3327
3328 * dired-x.el (dired-mode-map): Fix last change.
3329
3330 * emacs-lisp/eldoc.el (eldoc-mode): Add hook locally.
3331
3332 2014-01-12 Paul Eggert <eggert@cs.ucla.edu>
3333
3334 Spelling fixes.
3335 * emacs-lisp/generic.el (generic--normalize-comments):
3336 Rename from generic--normalise-comments. All uses changed.
3337 * play/bubbles.el (bubbles--neighborhood-score)
3338 (bubbles--mark-direct-neighbors, bubbles--mark-neighborhood)
3339 (bubbles--neighborhood-available)
3340 (bubbles--update-neighborhood-score):
3341 Rename from names with 'neighbourhood'. All uses changed.
3342
3343 2014-01-12 Leo Liu <sdl.web@gmail.com>
3344
3345 Re-implement the feature of showing eldoc info after editing.
3346 * emacs-lisp/eldoc.el (eldoc-post-insert-mode): Remove.
3347 (eldoc-edit-message-commands): New function.
3348 (eldoc-print-after-edit): New variable.
3349 (eldoc-pre-command-refresh-echo-area): Emit message only by
3350 eldoc-message-commands.
3351 (eldoc-mode): Restrict eldoc-message-commands to editing commands
3352 if eldoc-print-after-edit is set. (Bug#16346)
3353 * simple.el (read--expression): Enable eldoc-mode.
3354 * progmodes/octave.el (octave-mode-menu): Adapt to change in eldoc.
3355
3356 2014-01-11 Dani Moncayo <dmoncayo@gmail.com>
3357 Eric S. Raymond <esr@thyrsus.com>
3358
3359 * version.el (emacs-repository-get-version): Enhance so the
3360 function works correctly in either a Bazaar or Git repo.
3361
3362 2014-01-11 Eric S. Raymond <esr@thyrsus.com>
3363
3364 * play/meese.el: It's 2014 and Ed Meese is justly forgotten.
3365 Goes with removal of the joke manpages from /etc.
3366
3367 2014-01-10 Kenichi Handa <handa@gnu.org>
3368
3369 * mail/rmail.el (rmail-get-coding-system):
3370 Check rmail-get-coding-function before "funcall"ing it.
3371
3372 2014-01-10 Glenn Morris <rgm@gnu.org>
3373
3374 * emacs-lisp/authors.el (authors-fixed-entries):
3375 Update for files that no longer exist.
3376
3377 2014-01-10 Eric S. Raymond <esr@thyrsus.com>
3378
3379 * version.el (emacs-bzr-get-version): Restore compatibilty with
3380 24.3 (Tested).
3381
3382 2014-01-10 Bozhidar Batsov <bozhidar@batsov.com>
3383
3384 * progmodes/ruby-mode.el (auto-mode-alist): Add .podspec
3385 and Podfile.
3386
3387 2014-01-10 Eli Zaretskii <eliz@gnu.org>
3388
3389 * emacs-lisp/authors.el (authors-fixed-entries): Update my entry.
3390
3391 2014-01-10 Chong Yidong <cyd@gnu.org>
3392
3393 * progmodes/octave.el (octave-mode-menu): Don't assume eldoc is loaded.
3394
3395 2014-01-10 Anders Lindgren <andlind@gmail.com>
3396
3397 * follow.el (follow-cache-command-list): Include right-char and
3398 left-char.
3399
3400 2014-01-10 Paul Eggert <eggert@cs.ucla.edu>
3401
3402 Spelling fixes.
3403 * mail/unrmail.el (unrmail-mbox-format): Choice is mboxo, not mboxro.
3404 * woman.el (woman-mark-horizontal-position):
3405 Rename from woman-mark-horizonal-position. Use changed.
3406
3407 2014-01-10 Glenn Morris <rgm@gnu.org>
3408
3409 * info.el (info-initialize): If running uninstalled, ensure our
3410 own info files are always found first, even if INFOPATH is set.
3411
3412 * help.el (view-order-manuals): Open emacs.info rather than ORDERS.
3413
3414 2014-01-09 David Engster <deng@randomsample.de>
3415
3416 * emacs-lisp/eieio-custom.el:
3417 * emacs-lisp/eieio-opt.el: Set generated autoload file to
3418 'eieio.el'. This was accidentally removed in 2012-10-01T18:10:29Z!cyd@gnu.org.
3419 * emacs-lisp/eieio.el: Regenerate autoloads.
3420
3421 2014-01-09 Eric S. Raymond <esr@thyrsus.com>
3422
3423 * vc/vc-git.el (vc-git-print-log): Add --follow option to command,
3424 following renames. (Bug#8756)
3425
3426 2014-01-09 Stefan Monnier <monnier@iro.umontreal.ca>
3427
3428 * simple.el (deactivate-mark, activate-mark): Force-mode-line-update
3429 (bug#16382).
3430 (activate-mark): Add `no-tmm' argument.
3431 (set-mark, push-mark-command): Use it instead of running
3432 activate-mark-hook by hand.
3433
3434 2014-01-08 Eric S. Raymond <esr@thyrsus.com>
3435
3436 In preparation for the move to git, sanitize out some
3437 Bazaar-specific names.
3438
3439 * emacs-lisp/authors.el: INSTALL.BZR renamed to INSTALL.REPO.
3440
3441 * version.el (emacs-bzr-version): Name changed to
3442 emacs-repository-version. Obsolete-variable alias made.
3443 * loadup.el: Follow through on this name change.
3444 * mail/emacsbug.el (report-emacs-bug): Factor out any
3445 assumption about the version control system in use.
3446
3447 2014-01-08 David Engster <deng@randomsample.de>
3448
3449 * help-fns.el (help-fns-describe-function-functions):
3450 New variable to call functions for augmenting help buffers.
3451 (describe-function-1): Remove explicit calls to
3452 `help-fns--compiler-macro', `help-fns--parent-mode' and
3453 `help-fns--obsolete'. Put them in above new variable instead, and
3454 call them through `run-hook-with-args'.
3455 * emacs-lisp/eieio-opt.el (eieio-help-class): Rename from
3456 `eieio-describe-class'. Not meant for interactive use anymore,
3457 but to augment existing help buffers. Remove optional second
3458 argument. Create proper button for file location.
3459 Rewrite function to use `insert' instead of `princ' and `prin1' where
3460 possible.
3461 (eieio-help-class-slots): Rename from `eieio-describe-class-slots'.
3462 (eieio-method-def, eieio-class-def): Move further up.
3463 (describe-method, describe-generic, eieio-describe-method):
3464 Remove aliases.
3465 (eieio-help-constructor, eieio-help-generic): Rename from
3466 `eieio-describe-constructor' and `eieio-describe-generic', resp.
3467 Rewrite to use `insert' in the current buffer and use proper help
3468 buttons.
3469 (eieio-help-find-method-definition)
3470 (eieio-help-find-class-definition): Also accept symbols as
3471 arguments.
3472 (eieio-help-mode-augmentation-maybee): Remove.
3473 (eieio-describe-class-sb): Use `describe-function'.
3474 * emacs-lisp/eieio.el (help-fns-describe-function-functions):
3475 Add `eieio-help-generic' and `eieio-help-constructor'.
3476
3477 2014-01-08 Paul Eggert <eggert@cs.ucla.edu>
3478
3479 Spelling fixes.
3480 * language/china-util.el (hz-ascii-designation):
3481 Rename from hz-ascii-designnation.
3482 (hz-ascii-designation): Rename from hz-ascii-designnation.
3483 All uses changed.
3484
3485 2014-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
3486
3487 * emacs-lisp/package.el (package-delete): Only remove pkg-desc from
3488 package-alist.
3489
3490 2014-01-08 Bastien Guerry <bzg@gnu.org>
3491
3492 * emacs-lisp/package.el (package-delete):
3493 Correctly delete the package from package-alist.
3494
3495 2014-01-08 Daiki Ueno <ueno@gnu.org>
3496
3497 * emacs-lisp/package.el (url-recreate-url): Declare.
3498 (url-http-target-url): Declare.
3499 (package-handle-response): Include requested URL in the error message.
3500 (package--check-signature): Don't re-signal errors from
3501 package--with-work-buffer. Suggested by Stefan Monnier.
3502
3503 2014-01-07 Bastien Guerry <bzg@gnu.org>
3504
3505 * minibuffer.el (completion--try-word-completion): When both a
3506 hyphen and a space are possible candidates for the character
3507 following a word, display both candidates. (Bug#15980)
3508
3509 2014-01-07 Martin Rudalics <rudalics@gmx.at>
3510
3511 * window.el (balance-windows-2): While rounding don't give a
3512 window more than the remainder. Bug#16351, bug#16383.
3513
3514 2014-01-07 Glenn Morris <rgm@gnu.org>
3515
3516 * menu-bar.el (menu-bar-help-extra-packages): Remove.
3517 (menu-bar-help-menu): Use view-external-packages instead.
3518
3519 2014-01-07 Bastien Guerry <bzg@gnu.org>
3520
3521 * emacs-lisp/package.el (package-delete): Also delete the package
3522 name from `package-alist', not its description only.
3523
3524 2014-01-07 Glenn Morris <rgm@gnu.org>
3525
3526 * help.el (view-external-packages):
3527 * menu-bar.el (menu-bar-help-extra-packages):
3528 Visit efaq.info rather than etc/MORE.STUFF.
3529
3530 2014-01-07 Juri Linkov <juri@jurta.org>
3531
3532 * isearch.el (isearch-mode-map): Bind [return] and [backspace] to
3533 isearch-exit and isearch-delete-char resp. (Bug#16342, bug#16035)
3534
3535 * progmodes/ps-mode.el (ps-mode-map): Remove [return] key binding
3536 that shadows RET. (Bug#16342)
3537
3538 2014-01-07 Chong Yidong <cyd@gnu.org>
3539
3540 * isearch.el (isearch-yank-char, isearch-yank-word)
3541 (isearch-yank-line): Doc fix.
3542
3543 2014-01-06 Stefan Monnier <monnier@iro.umontreal.ca>
3544
3545 * abbrev.el (define-abbrev): Beware new meaning of fboundp.
3546 * emacs-lisp/elint.el (elint-find-builtins):
3547 * emacs-lisp/eldoc.el (eldoc-symbol-function):
3548 * emacs-lisp/bytecomp.el (byte-compile-callargs-warn)
3549 (byte-compile-file-form-defmumble, byte-compile, byte-compile-form):
3550 * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
3551 * apropos.el (apropos-safe-documentation):
3552 * subr.el (symbol-file): Remove redundant fboundp.
3553 * progmodes/idlw-shell.el (idlwave-shell-comint-filter): Use defalias.
3554
3555 2014-01-06 Bastien Guerry <bzg@gnu.org>
3556
3557 * hl-line.el (global-hl-line-overlay): Make a local variable.
3558 (global-hl-line-overlays): New variable to store all overlays.
3559 (global-hl-line-mode): Don't delete overlays from the current
3560 buffer when `global-hl-line-sticky-flag' is non-nil.
3561 (global-hl-line-highlight): Add new overlays to
3562 `global-hl-line-overlays'.
3563 (global-hl-line-unhighlight-all): New function to delete all
3564 overlays when turning off `global-hl-line-mode'.
3565 This fixes Bug#16183.
3566
3567 2014-01-06 Stefan Monnier <monnier@iro.umontreal.ca>
3568
3569 * subr.el (set-transient-map): Fix nested case and docstring.
3570
3571 2014-01-06 Tassilo Horn <tsdh@gnu.org>
3572
3573 * textmodes/reftex-vars.el (reftex-label-alist-builtin): Add a
3574 `Texinfo' entry.
3575
3576 2014-01-06 Daniel Colascione <dancol@dancol.org>
3577
3578 Fix defun navigation in vc log view.
3579
3580 * vc/log-view.el (log-view-beginning-of-defun): Rewrite to behave
3581 like `beginning-of-defun'.
3582 (log-view-end-of-defun, log-view-end-of-defun-1): Rename old
3583 log-view-end-of-defun to log-view-end-of-defun-1. Replace
3584 log-view-end-of-defun with wrapper that behaves like `end-of-defun'.
3585 (log-view-extract-comment): Call `log-view-current-entry' directly
3586 instead of relying on broken `log-view-beginning-of-defun' behavior.
3587
3588 2014-01-06 Paul Eggert <eggert@cs.ucla.edu>
3589
3590 Spelling fixes.
3591 * calc/calc-yank.el (calc-edit-mode, calc-edit-cancel):
3592 * emacs-lisp/debug.el (cancel-debug-on-entry):
3593 * epg.el (epg-error-to-string):
3594 * files.el (recover-file):
3595 * lpr.el (lpr-buffer, print-buffer, lpr-region, print-region):
3596 * mail/emacsbug.el (report-emacs-bug-hook):
3597 * mail/sendmail.el (mail-recover):
3598 * ses.el (ses-yank-resize):
3599 * term/ns-win.el (ns-print-buffer):
3600 Spelling fixes in diagnostics, mostly for "canceled" with one L.
3601 * epg.el (epg-key-capability-alist): Rename from misspelled version.
3602 All uses changed.
3603 * obsolete/xesam.el (xesam-all-fields): Fix misspelled field name.
3604
3605 2014-01-06 Leo Liu <sdl.web@gmail.com>
3606
3607 * dired-x.el (dired-mode-map): Rebind dired-omit-mode to C-x M-o
3608 to avoid shadowing global key. (Bug#16354)
3609
3610 2014-01-06 Daniel Colascione <dancol@dancol.org>
3611
3612 * textmodes/rst.el (rst-mode): Set electric-indent-inhibit for
3613 rst-mode.
3614
3615 2014-01-05 Martin Rudalics <rudalics@gmx.at>
3616
3617 * window.el (balance-windows): Add mising t to fix Bug#16351.
3618
3619 2014-01-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
3620
3621 * net/shr.el (shr-descend): Don't bug out if the anchor is empty
3622 (bug#16285).
3623 (shr-insert): If we have a word that's longer than `shr-width',
3624 break after it anyway. Otherwise we'll do no breaking once we get
3625 such a long word.
3626
3627 2014-01-05 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
3628
3629 * net/eww.el (eww): Support single/double quote for search.
3630 * net/eww.el (eww-list-histories, eww-history-browse): Fixup.
3631 (eww-history-quit): Delete and use quit-window.
3632 (eww-history-kill): Delete, because it doesn't work well and
3633 not necessary.
3634 (eww-history-mode-map): Delete some keys and add easy-menu.
3635
3636 2014-01-05 Paul Eggert <eggert@cs.ucla.edu>
3637
3638 Fix misspelling of 'chinese' in rx (Bug#16237).
3639 * emacs-lisp/rx.el (rx-categories): Correct spelling of
3640 chinese-two-byte.
3641
3642 Change subword regexps back to vars (Bug#16296).
3643 * progmodes/subword.el (subword-forward-regexp)
3644 (subword-backward-regexp): Change these back to variables.
3645
3646 2014-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
3647
3648 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Don't bother with
3649 syntax-begin-function (bug#16247).
3650
3651 2014-01-03 Chong Yidong <cyd@gnu.org>
3652
3653 * emacs-lisp/nadvice.el (advice--make-docstring): Change args.
3654 (advice--docstring): Delete variable.
3655 (advice--make-1): Leave the docstring empty.
3656 (advice-add): Use function-documentation for advised docstring.
3657
3658 * emacs-lisp/advice.el (ad--make-advised-docstring): Change args.
3659 Ignore function-documentation property when getting documentation.
3660 (ad-activate-advised-definition): Use function-documentation
3661 generate the docstring.
3662 (ad-make-advised-definition): Don't call
3663 ad-make-advised-definition-docstring.
3664 (ad-make-advised-definition-docstring, ad-advised-definition-p):
3665 Delete functions.
3666
3667 * progmodes/sql.el (sql-help): Use function-documentation instead
3668 of dynamic-docstring-function property. No need to autoload now.
3669 (sql--help-docstring): New variable.
3670 (sql--make-help-docstring): Use it.
3671
3672 2014-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
3673
3674 * ielm.el (ielm-tab): Retarget.
3675 (ielm-map): Use ielm-tab for tab.
3676 (ielm-complete-filename): Use comint-filename-completion.
3677 (ielm-complete-symbol): Remove.
3678 (inferior-emacs-lisp-mode): Use lisp-completion-at-point instead and
3679 remove ielm-tab from completion-at-point-functions (bug#16224).
3680
3681 * emacs-lisp/pcase.el (pcase--split-equal, pcase--split-member):
3682 Beware signals raised by predicates (bug#16201).
3683
3684 2014-01-02 Richard Stallman <rms@gnu.org>
3685
3686 * dired-aux.el (dired-do-print): Handle printer-name.
3687
3688 * mail/rmailmm.el (rmail-mime-message-p): Move to rmail.el.
3689 * mail/rmail.el (rmail-mime-message-p): Move from rmailmm.el.
3690 (rmail-epa-decrypt): Turn off mime processing.
3691
3692 * mail/rmail.el (rmail-make-in-reply-to-field):
3693 Add parens in message-id.
3694
3695 * mail/rmail.el (rmail-get-coding-function): Variable.
3696 (rmail-get-coding-system): Use it.
3697
3698 2013-12-31 Eli Zaretskii <eliz@gnu.org>
3699
3700 * international/mule-conf.el: Unify the charset indian-is13194.
3701 (indian-is13194): Specify unify-map.
3702
3703 2013-12-31 Leo Liu <sdl.web@gmail.com>
3704
3705 * subr.el (set-temporary-overlay-map): Obsolete alias. (Bug#16305)
3706
3707 2013-12-30 Daniel Colascione <dancol@dancol.org>
3708
3709 * term/x-win.el ([XF86WakeUp]): Ignore the XF86WakeUp key instead
3710 of printing a useless when we resume from sleep.
3711
3712 * progmodes/sh-script.el
3713 (sh-smie-sh-forward-token, sh-smie-rc-forward-token): Fix infloop
3714 in indentation code. (Bug#16233)
3715
3716 2013-12-28 João Távora <joaotavora@gmail.com>
3717
3718 * elec-pair.el (electric-pair-post-self-insert-function):
3719 Don't open extra newlines at beginning of buffer. (Bug#16272)
3720
3721 2013-12-28 Eli Zaretskii <eliz@gnu.org>
3722
3723 * frame.el (window-system-for-display): Don't allow to create a
3724 GUI frame from a -nw session on MS-Windows. (Bug#14739)
3725
3726 2013-12-28 Glenn Morris <rgm@gnu.org>
3727
3728 * mail/hashcash.el (hashcash-program): Rename from hashcash-path.
3729 Update callers.
3730
3731 * apropos.el (apropos-match-face):
3732 * calculator.el (calculator-displayer):
3733 * dabbrev.el (dabbrev-search-these-buffers-only):
3734 * face-remap.el (buffer-face-mode-face):
3735 * simple.el (yank-handled-properties):
3736 * emacs-lisp/testcover.el (testcover-potentially-1value-functions):
3737 * mail/footnote.el (footnote-mode-line-string, footnote-prefix):
3738 * mail/hashcash.el (hashcash-accept-resources, hashcash-program)
3739 (hashcash-double-spend-database):
3740 * progmodes/ruby-mode.el (ruby-deep-indent-paren)
3741 (ruby-deep-indent-paren-style):
3742 * textmodes/flyspell.el (flyspell-auto-correct-binding):
3743 * textmodes/rst.el (rst-toc-indent, rst-toc-insert-style)
3744 (rst-toc-insert-number-separator, rst-toc-insert-max-level):
3745 * vc/pcvs-defs.el (cvs-minor-mode-prefix):
3746 Specify custom types.
3747
3748 * emacs-lisp/smie.el (smie-config): Add type, version, initialize.
3749 * bookmark.el (bookmark-bmenu-use-header-line):
3750 * doc-view.el (doc-view-scale-internally):
3751 * pcmpl-x.el (pcmpl-x-tlmgr-program, pcmpl-x-ack-program):
3752 * register.el (register-preview-delay):
3753 * net/shr.el (shr-bullet):
3754 * progmodes/cfengine.el (cfengine-cf-promises)
3755 (cfengine-parameters-indent):
3756 * progmodes/octave.el (inferior-octave-error-regexp-alist):
3757 * textmodes/reftex-vars.el (reftex-label-regexps):
3758 * vc/log-edit.el (log-edit-setup-add-author): Add version.
3759
3760 * net/tls.el (tls-certtool-program): Fix default value.
3761
3762 * desktop.el (desktop-restore-in-current-display):
3763 * newcomment.el (comment-empty-lines):
3764 * progmodes/idlwave.el (idlwave-scan-all-buffers-for-routine-info)
3765 (idlwave-pad-keyword):
3766 * progmodes/tcl.el (tcl-tab-always-indent):
3767 * textmodes/reftex-vars.el (reftex-index-default-tag):
3768 * elec-pair.el (electric-pair-skip-whitespace):
3769 * progmodes/cfengine.el (cfengine-cf-promises): Fix custom types.
3770
3771 * emacs-lisp/authors.el (authors-ignored-files)
3772 (authors-valid-file-names, authors-renamed-files-alist): Additions.
3773
3774 2013-12-27 Jarek Czekalski <jarekczek@poczta.onet.pl>
3775
3776 * shell.el (shell-dynamic-complete-command): Doc fix.
3777 (shell--command-completion-data): Shell completion now matches
3778 executable filenames from the current buffer's directory, on
3779 systems in which this behavior is the default (windows-nt, ms-dos).
3780
3781 2013-12-27 Lars Ingebrigtsen <larsi@gnus.org>
3782
3783 * net/shr.el (shr-insert): Don't infloop if the width is zero.
3784
3785 2013-12-27 Stefan Monnier <monnier@iro.umontreal.ca>
3786
3787 * icomplete.el (icomplete-show-matches-on-no-input): Default to nil
3788 (bug#16251).
3789
3790 * electric.el: Move all electric-pair-* to elec-pair.el.
3791 * elec-pair.el: New file, split from electric.el.
3792
3793 2013-12-27 Lars Ingebrigtsen <larsi@gnus.org>
3794
3795 * net/shr.el (shr-find-fill-point): Don't try to fill if the
3796 indentation level is larger than the width, because that will
3797 infloop.
3798 (shr-insert): Fill repeatedly long texts, so that Japanese is
3799 formatted correctly (bug#16263).
3800 (shr-find-fill-point): Off by one error in comparison with the
3801 indentation.
3802
3803 2013-12-26 João Távora <joaotavora@gmail.com>
3804
3805 * electric.el (electric-pair-mode): More flexible engine for skip-
3806 and inhibit predicates, new options for pairing-related functionality.
3807 (electric-pair-preserve-balance): Pair/skip parentheses and quotes
3808 if that keeps or improves their balance in buffers.
3809 (electric-pair-delete-adjacent-pairs): Delete the pair when
3810 backspacing over adjacent matched delimiters.
3811 (electric-pair-open-extra-newline): Open extra newline when
3812 inserting newlines between adjacent matched delimiters.
3813 (electric--sort-post-self-insertion-hook):
3814 Sort post-self-insert-hook according to priority values when
3815 minor-modes are activated.
3816 * simple.el (newline-and-indent): Call newline with interactive
3817 set to t.
3818 (blink-paren-post-self-insert-function): Set priority to 100.
3819 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
3820 Use electric-pair-text-pairs to pair backtick-and-quote in strings and
3821 comments. Locally set electric-pair-skip-whitespace to 'chomp and
3822 electric-pair-open-newline-between-pairs to nil.
3823
3824 2013-12-26 Fabián Ezequiel Gallina <fgallina@gnu.org>
3825
3826 * progmodes/python.el: Use lexical-binding.
3827 (python-nav-beginning-of-defun): Stop searching ASAP.
3828
3829 2013-12-25 Xue Fuqiao <xfq.free@gmail.com>
3830
3831 * vc/vc.el (vc-ignore): Use `vc-responsible-backend'.
3832 Fix interactive spec. Doc fix. (Bug#15754)
3833
3834 2013-12-25 Katsumi Yamaoka <yamaoka@jpl.org>
3835
3836 * emacs-lisp/byte-run.el (eval-when-compile):
3837 * progmodes/cc-defs.el (cc-eval-when-compile):
3838 Fix edebug spec (bug#16184).
3839
3840 2013-12-25 Lars Ingebrigtsen <larsi@gnus.org>
3841
3842 * net/shr.el (shr-visit-file): Remove debugging function.
3843 (shr-insert): Don't infloop if we can't find a good place to break
3844 the line (bug#16256).
3845
3846 2013-12-25 Fabián Ezequiel Gallina <fgallina@gnu.org>
3847
3848 * progmodes/python.el (python-nav--lisp-forward-sexp): New function.
3849 (python-nav--lisp-forward-sexp-safe): Use it. Rename from
3850 python-nav-lisp-forward-sexp-safe.
3851 (python-nav--forward-sexp): New argument SAFE allows switching
3852 forward sexp movement behavior for parens.
3853 (python-nav-forward-sexp): Throw errors on unterminated parens
3854 (Bug#16191).
3855 (python-nav-backward-sexp, python-nav-forward-sexp-safe)
3856 (python-nav-backward-sexp-safe): New functions.
3857 (python-shell-buffer-substring):
3858 Use `python-nav-forward-sexp-safe'.
3859
3860 2013-12-25 Lars Ingebrigtsen <larsi@gnus.org>
3861
3862 * net/shr.el (shr-find-fill-point): Don't break lines before a
3863 quotation mark.
3864 (shr-char-kinsoku-bol-p): The quotation mark isn't a kinsoky BOL char.
3865 (shr-find-fill-point): Remove the special checks for the quotation
3866 mark, since `shr-char-kinsoku-bol-p' should now return the right thing.
3867
3868 2013-12-25 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
3869
3870 * net/eww.el (eww-form-textarea): Use a different face for
3871 textareas than text input since they have different keymaps
3872 (bug#16142).
3873
3874 2013-12-24 Fabián Ezequiel Gallina <fgallina@gnu.org>
3875
3876 * progmodes/python.el (python-nav-beginning-of-statement):
3877 Speed up (Bug#15295).
3878
3879 2013-12-24 Lars Ingebrigtsen <larsi@gnus.org>
3880
3881 * net/eww.el (eww-bookmark-browse): Use `quit-window' to restore
3882 the window configuration.
3883
3884 2013-12-24 Eli Zaretskii <eliz@gnu.org>
3885
3886 * net/eww.el (eww-open-file): Ensure 3 slashes after "file:" when
3887 we run on MS-Windows or MS-DOS.
3888
3889 2013-12-24 Martin Rudalics <rudalics@gmx.at>
3890
3891 * window.el (balance-windows-area): Call window-size instead of
3892 window-height and window-width. Bug#16241.
3893
3894 2013-12-24 Lars Ingebrigtsen <larsi@gnus.org>
3895
3896 * net/eww.el (eww-bookmark-quit): Remove.
3897 (eww-bookmark-browse): Restore the window configuration when you
3898 choose a bookmark (bug#16144).
3899
3900 2013-12-24 Daniel Colascione <dancol@dancol.org>
3901
3902 * icomplete.el: Remove redundant :group arguments to `defcustom'
3903 throughout.
3904 (icomplete-show-matches-on-no-input): New customizable variable.
3905 (icomplete-minibuffer-setup): Call `icomplete-exhibit' on setup if
3906 we have something to show.
3907 (icomplete-exhibit): Compute completions even if we have no user input.
3908
3909 2013-12-23 Daniel Colascione <dancol@dancol.org>
3910
3911 * icomplete.el: Move `provide' to end of file.
3912
3913 2013-12-23 Teodor Zlatanov <tzz@lifelogs.com>
3914
3915 * net/gnutls.el (gnutls-verify-error): Add version tag.
3916
3917 2013-12-23 Chong Yidong <cyd@gnu.org>
3918
3919 * subr.el (set-transient-map): Rename from
3920 set-temporary-overlay-map. Doc fix.
3921
3922 * face-remap.el (text-scale-adjust):
3923 * indent.el (indent-rigidly):
3924 * kmacro.el (kmacro-call-macro):
3925 * minibuffer.el (minibuffer-force-complete):
3926 * repeat.el (repeat):
3927 * simple.el (universal-argument--mode):
3928 * calendar/todo-mode.el (todo-insert-item--next-param):
3929 * progmodes/f90.el (f90-abbrev-start): Callers changed.
3930
3931 * indent.el (indent-rigidly): Use substitute-command-keys.
3932
3933 2013-12-22 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
3934
3935 * net/eww.el (eww-tag-select): Add text-property to jump to next
3936 select field.
3937 (eww): Add non-supported ftp error.
3938
3939 2013-12-22 Dmitry Gutov <dgutov@yandex.ru>
3940
3941 * progmodes/ruby-mode.el (ruby--electric-indent-p): Improve the
3942 comments. Handle electric indent after typing `?' and `!'.
3943
3944 2013-12-22 Chong Yidong <cyd@gnu.org>
3945
3946 * faces.el (face-spec-recalc): If the theme specs are not
3947 applicable to a frame, fall back on the defface spec.
3948 This prevents themes from obliterating faces on low-color terminals.
3949
3950 2013-12-22 Dmitry Gutov <dgutov@yandex.ru>
3951
3952 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Return t
3953 after `{'. We need it after block openers, and it doesn't seem
3954 to hurt after hash openers.
3955
3956 2013-12-22 Dmitry Gutov <dgutov@yandex.ru>
3957
3958 * progmodes/ruby-mode.el (ruby--at-indentation-p): New function,
3959 extracted from `ruby-smie-rules'.
3960 (ruby--electric-indent-chars): New variable.
3961 (ruby--electric-indent-p): New function.
3962 (ruby-mode): Use `electric-indent-functions' instead of
3963 `electric-indent-chars'.
3964
3965 2013-12-22 Dmitry Gutov <dgutov@yandex.ru>
3966
3967 * progmodes/ruby-mode.el (ruby-align-to-stmt-keywords): Tweak the
3968 docstring.
3969 (ruby-smie-rules): Indent plus one level after `=>'.
3970
3971 2013-12-21 Richard Stallman <rms@gnu.org>
3972
3973 * simple.el (newline): Doc fix.
3974
3975 2013-12-21 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
3976
3977 * net/eww.el (eww-list-histories, eww-list-histories)
3978 (eww-history-browse, eww-history-quit, eww-history-kill)
3979 (eww-history-mode-map, eww-history-mode): New command and
3980 functions to list browser histories.
3981 (eww-form-text): Support text form with disabled
3982 and readonly attributes.
3983 (eww-checkbox-map): Fix wrong key bind to `eww-toggle-checkbox'.
3984
3985 2013-12-21 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
3986
3987 * net/eww.el (eww-back-url, eww-forward-url, eww-next-url)
3988 (eww-previous-url, eww-up-url, eww-top-url, eww-add-bookmark)
3989 (eww-bookmark-prepare, eww-bookmark-kill, eww-bookmark-yank)
3990 (eww-bookmark-browse, eww-next-bookmark, eww-previous-bookmark):
3991 Use `user-error'.
3992 (eww-bookmark-mode-map): Add menu.
3993 (eww-render, eww-mode): Use `setq-local'.
3994 (eww-tool-bar-map): New variable.
3995 (eww-mode): Set `tool-bar-map'.
3996 (eww-view-source): Check for `html-mode' with `fboundp'.
3997
3998 2013-12-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
3999
4000 * net/shr.el (shr--extract-best-source): Don't bug out on audio
4001 elements with text inside. Also remove debugging.
4002
4003 2013-12-21 Jan Djärv <jan.h.d@swipnet.se>
4004
4005 * cus-start.el (all): Add ns-use-srgb-colorspace.
4006
4007 2013-12-21 Chong Yidong <cyd@gnu.org>
4008
4009 * custom.el (custom-theme-recalc-face): Do nothing if the face is
4010 undefined. Thus, theme settings for undefined faces do not take
4011 effect until the faces are defined with defface, the same as with
4012 theme variables.
4013
4014 * faces.el (face-spec-set): Use face-spec-recalc in all cases.
4015 (face-spec-reset-face): Don't assign extra properties in temacs.
4016 (face-spec-recalc): Apply X resources too.
4017
4018 2013-12-21 Chong Yidong <cyd@gnu.org>
4019
4020 * faces.el (face-spec-set):
4021 * cus-face.el (custom-theme-set-faces, custom-set-faces):
4022 * custom.el (defface): Doc fixes (Bug#16203).
4023
4024 * indent.el (indent-rigidly-map): Add docstring, and move commands
4025 into named functions.
4026 (indent-rigidly-left, indent-rigidly-right)
4027 (indent-rigidly-left-to-tab-stop)
4028 (indent-rigidly-right-to-tab-stop): New functions. Decide on
4029 indentation direction based on bidi direction, and accumulate
4030 sequential commands in a single undo boundary.
4031 (indent-rigidly--pop-undo): New utility function.
4032
4033 2013-12-20 Juanma Barranquero <lekktu@gmail.com>
4034
4035 * faces.el (read-face-name): Require crm.el when using crm-separator.
4036
4037 2013-12-20 Daniel Colascione <dancol@dancol.org>
4038
4039 * progmodes/sh-script.el (sh-mode): Tweak paragraph-separate
4040 so that we don't reflow comments into the shebang line.
4041
4042 2013-12-20 Juri Linkov <juri@jurta.org>
4043
4044 * saveplace.el (save-place-to-alist): Add `dired-filename' as
4045 a position when `dired-directory' is non-nil. Check integer
4046 positions with `integerp'.
4047 (toggle-save-place, save-places-to-alist): Add check for
4048 `dired-directory'.
4049 (save-place-find-file-hook): Check integer positions with
4050 `integerp'.
4051 (save-place-dired-hook): Use `dired-goto-file' when
4052 `dired-filename' is found in the assoc list. Check integer
4053 positions with `integerp'.
4054 (dired-initial-position-hook): Rename from `dired-initial-point-hook'.
4055
4056 * dired.el (dired-initial-position-hook): Rename back from
4057 `dired-initial-point-hook'.
4058 (dired-initial-position): Rename `dired-initial-point-hook' to
4059 `dired-initial-position-hook'.
4060 (dired-file-name-at-point): Doc fix. (Bug#15329)
4061
4062 2013-12-20 Juri Linkov <juri@jurta.org>
4063
4064 * replace.el (read-regexp-defaults-function): New defcustom (bug#14405).
4065 (read-regexp-suggestions): New function.
4066 (read-regexp): Use `read-regexp-defaults-function' to get default values.
4067 Use `read-regexp-suggestions'. Add non-empty default to history
4068 for empty input.
4069 (occur-read-regexp-defaults-function): Remove function.
4070 (occur-read-primary-args): Use `regexp-history-last' instead of
4071 `occur-read-regexp-defaults-function'.
4072
4073 * hi-lock.el (hi-lock-read-regexp-defaults-function): Remove function.
4074 (hi-lock-line-face-buffer, hi-lock-face-buffer)
4075 (hi-lock-face-phrase-buffer): Use `regexp-history-last' instead of
4076 `hi-lock-read-regexp-defaults-function'. Doc fix.
4077 (hi-lock-face-symbol-at-point): Replace `find-tag-default-as-regexp'
4078 with `find-tag-default-as-symbol-regexp'. Doc fix.
4079 (hi-lock-read-regexp-defaults): Remove function.
4080 (hi-lock-regexp-okay): Add check for null.
4081
4082 * progmodes/grep.el (grep-read-regexp): Use `grep-tag-default' for
4083 the arg DEFAULTS. Move formatting of the prompt to `read-regexp'.
4084
4085 * subr.el (find-tag-default-as-symbol-regexp): New function.
4086 (find-tag-default-as-regexp): Move symbol regexp formatting to
4087 `find-tag-default-as-symbol-regexp'.
4088
4089 2013-12-20 E Sabof <esabof@gmail.com> (tiny change)
4090
4091 * hi-lock.el (hi-lock-set-pattern): Check for `font-lock-specified-p'.
4092 (Bug#14179)
4093
4094 2013-12-20 Stephen Berman <stephen.berman@gmx.net>
4095
4096 * calendar/todo-mode.el: New implementation of item insertion
4097 commands and key bindings.
4098 (todo-key-prompt): New face.
4099 (todo-insert-item): New command.
4100 (todo-insert-item--parameters): New defconst, replacing defvar
4101 todo-insertion-commands-args-genlist.
4102 (todo-insert-item--param-key-alist): New defconst, replacing
4103 defvar todo-insertion-commands-arg-key-list.
4104 (todo-insert-item--keyof, todo-insert-item--this-key): New defsubsts.
4105 (todo-insert-item--argsleft, todo-insert-item--apply-args)
4106 (todo-insert-item--next-param): New functions.
4107 (todo-insert-item--args, todo-insert-item--argleft)
4108 (todo-insert-item--argsleft, todo-insert-item--newargsleft):
4109 New variables.
4110 (todo-key-bindings-t): Change binding of "i" from
4111 todo-insertion-map to todo-insert-item.
4112 (todo-powerset, todo-gen-arglists, todo-insertion-commands-args)
4113 (todo-insertion-command-name, todo-insertion-commands-names)
4114 (todo-define-insertion-command, todo-insertion-commands)
4115 (todo-insertion-key-bindings, todo-insertion-map): Remove.
4116
4117 2013-12-20 Stephen Berman <stephen.berman@gmx.net>
4118
4119 * calendar/todo-mode.el: Bug fixes and new features (bug#15225).
4120 (todo-toggle-item-highlighting): Use eval-and-compile instead of
4121 eval-when-compile.
4122 (todo-move-category): Allow choosing a non-existing todo file to
4123 move the category to, and create that file.
4124 (todo-default-priority): New user option.
4125 (todo-set-item-priority): Use it.
4126 (todo-desktop-save-buffer, todo-restore-desktop-buffer): New functions.
4127 (desktop-restore-file-buffer): Declare.
4128 (desktop-buffer-mode-handlers): Add todo-restore-desktop-buffer.
4129 (todo-modes-set-2): Locally set desktop-save-buffer to
4130 todo-desktop-save-buffer.
4131 (todo-mode, todo-archive-mode, todo-filtered-items-mode)
4132 (auto-mode-alist): Add autoload cookie.
4133
4134 2013-12-20 Bozhidar Batsov <bozhidar@batsov.com>
4135
4136 * emacs-lisp/subr-x.el: Renamed from helpers.el.
4137 helpers.el was a poor choice of name.
4138 (string-remove-prefix): New function.
4139 (string-remove-suffix): New function.
4140
4141 2013-12-20 Martin Rudalics <rudalics@gmx.at>
4142
4143 Fix assignment for new window total sizes.
4144 * window.el (window--pixel-to-size): Remove function.
4145 (window--pixel-to-total-1, window--pixel-to-total):
4146 Fix calculation of new total sizes.
4147
4148 2013-12-20 Vitalie Spinu <spinuvit@gmail.com>
4149
4150 * comint.el (comint-output-filter): Fix rear-nonsticky property
4151 placement (Bug#16010).
4152
4153 2013-12-20 Chong Yidong <cyd@gnu.org>
4154
4155 * faces.el (read-color): Minor fix for completion function.
4156
4157 2013-12-20 Dmitry Gutov <dgutov@yandex.ru>
4158
4159 * progmodes/ruby-mode.el (ruby-align-to-stmt-keywords):
4160 New option. (Bug#16182)
4161 (ruby-smie--indent-to-stmt-p): Use it.
4162 (ruby-smie-rules): Revert the logic in the handling of `when'.
4163 Expand the begin clause to handle `ruby-align-to-stmt-keywords'.
4164 (ruby-deep-arglist, ruby-deep-indent-paren)
4165 (ruby-deep-indent-paren-style): Update docstrings to note that the
4166 vars don't have any effect with SMIE.
4167
4168 2013-12-20 Jay Belanger <jay.p.belanger@gmail.com>
4169
4170 * calc/calc.el (calc-enter, calc-pop): Use the variable
4171 `calc-context-sensitive-enter'.
4172
4173 2013-12-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
4174
4175 * net/shr.el (shr-insert): Protect against infloops in degenerate
4176 tables.
4177
4178 2013-12-20 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
4179
4180 * progmodes/octave.el (octave): Add link to manual and octave
4181 homepage.
4182 (octave-mode-menu): Link to octave-mode manual.
4183
4184 2013-12-20 Leo Liu <sdl.web@gmail.com>
4185
4186 * skeleton.el (skeleton-pair-insert-maybe): Disable newline
4187 insertion using skeleton-end-newline. (Bug#16138)
4188
4189 2013-12-20 Juri Linkov <juri@jurta.org>
4190
4191 * replace.el (occur-engine): Use `add-face-text-property'
4192 to add the face property to matches and titles. (Bug#14645)
4193
4194 * hi-lock.el (hi-green): Use lighter color "light green" closer to
4195 the palette of other hi-lock colors.
4196 (hi-lock-set-pattern): Prepend hi-lock face to the existing face.
4197
4198 2013-12-19 Juri Linkov <juri@jurta.org>
4199
4200 * isearch.el (isearch-mode-map): Bind `M-s e' to `isearch-edit-string'.
4201 Put :advertised-binding on `M-s c', `M-s r', `M-s e'. (Bug#16035)
4202 (minibuffer-history-symbol): Move variable declaration closer to
4203 its usage.
4204
4205 * isearchb.el (isearchb): Add `event-basic-type' on `last-command-event'.
4206 (Bug#14785)
4207
4208 2013-12-19 Juri Linkov <juri@jurta.org>
4209
4210 * vc/log-edit.el (log-edit-insert-filenames-without-changelog):
4211 New function.
4212 (log-edit-hook): Add it to :options. (Bug#16170)
4213
4214 2013-12-19 Juri Linkov <juri@jurta.org>
4215
4216 * simple.el (eval-expression-print-format): Don't check for
4217 command names and the last command. Always display additional
4218 formats of the integer result in the echo area, and insert them
4219 to the current buffer only with a zero prefix arg.
4220 Display character when char-displayable-p is non-nil.
4221 (eval-expression): With a zero prefix arg, set `print-length' and
4222 `print-level' to nil, and insert the integer values from
4223 `eval-expression-print-format' at the end. Doc fix. (Bug#12985)
4224
4225 * emacs-lisp/lisp-mode.el (eval-print-last-sexp): Add arg
4226 `eval-last-sexp-arg-internal'. Doc fix.
4227 (eval-last-sexp-1): Pass arg `eval-last-sexp-arg-internal' to
4228 `eval-last-sexp-print-value'. Doc fix.
4229 (eval-last-sexp-print-value): Add arg `eval-last-sexp-arg-internal'.
4230 Set `print-length' and `print-level' to nil when arg is zero.
4231 (eval-last-sexp): Doc fix.
4232 (eval-defun-2): Print the integer values from
4233 `eval-expression-print-format' at the end.
4234
4235 * emacs-lisp/edebug.el (edebug-eval-defun): Print the integer
4236 values from `eval-expression-print-format' at the end.
4237
4238 * ielm.el (ielm-eval-input): Print the integer
4239 values from `eval-expression-print-format' at the end.
4240
4241 2013-12-19 Teodor Zlatanov <tzz@lifelogs.com>
4242
4243 * net/eww.el (eww-exit, eww-close, eww-mode-map): Revert change of
4244 2013-12-11T19:01:44Z!tzz@lifelogs.com.
4245
4246 2013-12-19 Stefan Monnier <monnier@iro.umontreal.ca>
4247
4248 * hl-line.el (hl-line-make-overlay): New fun. Set priority (bug#16192).
4249 (hl-line-highlight, global-hl-line-highlight): Use it.
4250 (hl-line-overlay): Use defvar-local.
4251
4252 2013-12-19 Jan Djärv <jan.h.d@swipnet.se>
4253
4254 * term/ns-win.el: Require dnd.
4255 (global-map): Remove drag items.
4256 (ns-insert-text, ns-set-foreground-at-mouse)
4257 (ns-set-background-at-mouse):
4258 Remove (ns-drag-n-drop, ns-drag-n-drop-other-frame)
4259 (ns-drag-n-drop-as-text, ns-drag-n-drop-as-text-other-frame):
4260 New functions.
4261
4262 2013-12-19 Glenn Morris <rgm@gnu.org>
4263
4264 * emacs-lisp/ert.el (ert-select-tests):
4265 Fix string/symbol mixup. (Bug#16121)
4266
4267 2013-12-19 Dmitry Gutov <dgutov@yandex.ru>
4268
4269 * progmodes/ruby-mode.el (ruby-smie-rules): Indent middle-of-block
4270 keywords to their parent.
4271
4272 2013-12-19 Dmitry Gutov <dgutov@yandex.ru>
4273
4274 * progmodes/ruby-mode.el (ruby-smie--args-separator-p): Allow the
4275 first arg to be a string (fixed dead code), or an operator symbol.
4276 (ruby-smie--forward-token): Tokenize ` @ ' before strings and
4277 operator symbols.
4278 (ruby-smie-rules): Remove parent token check in the `.' clause, it
4279 did nothing. Don't respond to `(:after ".")', it will be called
4280 with :before anyway. Remove the ` @ ' rule, it didn't seem to
4281 change anything. Only return indentation for binary operators
4282 when they are hanging. De-dent opening paren when its parent is
4283 `.', otherwise it looks bad when the dot is not at bol or eol
4284 (bug#16182).
4285
4286 2013-12-19 Juri Linkov <juri@jurta.org>
4287
4288 * replace.el (query-replace-read-args): Split a non-negative arg
4289 and a negative arg into separate elements.
4290 (query-replace, query-replace-regexp, replace-string)
4291 (replace-regexp): Add arg `backward'. Doc fix.
4292 (replace-match-maybe-edit): When new arg `backward' is non-nil,
4293 move point to the beginning of the match.
4294 (replace-search, replace-highlight): Use new arg `backward'
4295 to set the value of `isearch-forward'.
4296 (perform-replace): Add arg `backward' and use it to perform
4297 replacement backward. (Bug#14979)
4298
4299 * isearch.el (isearch-query-replace): Use a negative prefix arg
4300 to call `perform-replace' with a non-nil arg `backward'.
4301
4302 2013-12-18 Juri Linkov <juri@jurta.org>
4303
4304 * vc/log-edit.el (log-edit-hook): Add `log-edit-insert-message-template'
4305 to the default list. Move `log-edit-show-files' to the end.
4306 Add more available functions to options.
4307 (log-edit): Move default specific settings to
4308 `log-edit-insert-message-template'. Don't move point.
4309 (log-edit-insert-message-template): New function.
4310 (log-edit-insert-changelog): Add `save-excursion' and don't move point.
4311 (Bug#16170)
4312
4313 2013-12-18 Juri Linkov <juri@jurta.org>
4314
4315 * help-mode.el (help-mode-map): Bind "l" to help-go-back,
4316 and "r" to help-go-forward for compatibity with Info. (Bug#16178)
4317
4318 2013-12-18 Leo Liu <sdl.web@gmail.com>
4319
4320 * eshell/em-prompt.el (eshell-emit-prompt): Fix last change.
4321 (Bug#16186)
4322
4323 2013-12-18 Eli Zaretskii <eliz@gnu.org>
4324
4325 * ls-lisp.el (ls-lisp-insert-directory): Don't modify %d and %f
4326 formats for displaying file sizes when the -s switch is given.
4327 Instead, compute a separate format for displaying the size in
4328 blocks, which is displayed in addition to the "regular" size.
4329 When -h is given in addition to -s, produce size in blocks in
4330 human-readable form as well. (Bug#16179)
4331
4332 2013-12-18 Tassilo Horn <tsdh@gnu.org>
4333
4334 * textmodes/reftex-vars.el (reftex-label-alist-builtin):
4335 Reference tables with ~\ref{...} instead of only \ref{...}.
4336
4337 2013-12-18 Chong Yidong <cyd@gnu.org>
4338
4339 * cus-edit.el (custom-magic-alist): Fix "themed" description
4340 (Bug#14348).
4341
4342 * custom.el (custom-push-theme): If custom--inhibit-theme-enable
4343 is non-nil, do not create a new entry in the symbol's theme-value
4344 or theme-face property; update theme-settings only (Bug#14664).
4345 (custom-available-themes): Doc fix.
4346
4347 * cus-theme.el (custom-new-theme-mode-map): Add bindings
4348 (Bug#15674).
4349
4350 * replace.el (occur-engine): Avoid infloop (Bug#7593).
4351
4352 2013-12-18 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
4353
4354 * progmodes/make-mode.el (makefile-fill-paragraph): Fix infloop
4355 (Bug#13914).
4356
4357 2013-12-18 Shigeru Fukaya <shigeru.fukaya@gmail.com>
4358
4359 * apropos.el (apropos-words-to-regexp): Fix algorithm (Bug#13946).
4360
4361 2013-12-18 Glenn Morris <rgm@gnu.org>
4362
4363 * Makefile.in (BYTE_COMPILE_FLAGS): Set load-prefer-newer to t.
4364 * cus-start.el (load-prefer-newer): New option.
4365
4366 2013-12-18 Le Wang <l26wang@gmail.com>
4367
4368 * comint.el (comint-previous-matching-input-from-input):
4369 Retain point (Bug#13404).
4370
4371 2013-12-18 Chong Yidong <cyd@gnu.org>
4372
4373 * simple.el (append-next-kill): Doc fix (Bug#15995, Bug#16016).
4374
4375 2013-12-18 Glenn Morris <rgm@gnu.org>
4376
4377 * mail/emacsbug.el (report-emacs-bug):
4378 Only mention enable-multibyte-characters if non-standard.
4379
4380 2013-12-17 Juri Linkov <juri@jurta.org>
4381
4382 * arc-mode.el (archive-extract-by-file): Check if directory exists
4383 before deletion to not show irrelevant errors if it doesn't exist.
4384
4385 2013-12-17 Juri Linkov <juri@jurta.org>
4386
4387 * menu-bar.el (menu-bar-tools-menu): Add `browse-web'.
4388 (Bug#14751)
4389
4390 * net/eww.el (browse-web): Add alias to `eww'.
4391 (eww-mode-map): Bind "r" to `eww-forward-url' like in Info.
4392 Bind "S-SPC" to `scroll-down-command'. (Bug#16178)
4393
4394 * net/browse-url.el (browse-url-browser-function): Move `eww'
4395 closer to similar functions.
4396
4397 * startup.el (fancy-startup-screen, fancy-about-screen):
4398 Set browse-url-browser-function to eww-browse-url locally.
4399 (Bug#14751)
4400
4401 2013-12-17 Stefan Monnier <monnier@iro.umontreal.ca>
4402
4403 * window.el (window--pixel-to-total): Remove unused `mini' var.
4404 (maximize-window, minimize-window): Remove unused `pixelwise' arg.
4405 (split-window): Remove unused `new' var.
4406 (window--display-buffer): Remove unused `frame' and `delta' vars.
4407 (fit-window-to-buffer): Remove unused vars `frame', `display-height',
4408 and display-width'.
4409
4410 2013-12-17 Martin Rudalics <rudalics@gmx.at>
4411
4412 * dired.el (dired-mark-pop-up):
4413 * register.el (register-preview): Don't bind
4414 split-height-threshold here since it's now done in
4415 display-buffer-below-selected.
4416
4417 2013-12-17 oblique <psyberbits@gmail.com> (tiny change)
4418
4419 * term/rxvt.el (rxvt-rgb-convert-to-16bit): Standardize with
4420 xterm-rgb-convert-to-16bit.
4421 (rxvt-register-default-colors): Standardize with
4422 xterm-register-default-colors (Bug#14078).
4423
4424 2013-12-17 Dima Kogan <dima@secretsauce.net> (tiny change)
4425
4426 * simple.el (kill-region): Pass mark first, then point, so that
4427 kill-append works right (Bug#12819).
4428 (copy-region-as-kill, kill-ring-save): Likewise.
4429
4430 2013-12-17 Leo Liu <sdl.web@gmail.com>
4431
4432 * net/rcirc.el (rcirc-add-face):
4433 * eshell/em-prompt.el (eshell-emit-prompt):
4434 * eshell/em-ls.el (eshell-ls-decorated-name): Use font-lock-face.
4435 (Bug#16167)
4436
4437 2013-12-17 Chong Yidong <cyd@gnu.org>
4438
4439 * files.el (break-hardlink-on-save): Doc fix (Bug#13801).
4440 Suggested by Xue Fuqiao.
4441
4442 2013-12-17 Dmitry Gutov <dgutov@yandex.ru>
4443
4444 * progmodes/ruby-mode.el (ruby-smie-rules): Indent ternary if.
4445
4446 2013-12-17 Stefan Monnier <monnier@iro.umontreal.ca>
4447
4448 * net/shr.el (shr-insert-document): Remove unused var
4449 `shr-preliminary-table-render'.
4450 (shr-rescale-image): Remove unused arg `force'.
4451 (shr-put-image): Update calls accordingly.
4452 (shr-tag-a): Use `cont' rather than dyn-bound `dom'.
4453
4454 2013-12-17 Dmitry Gutov <dgutov@yandex.ru>
4455
4456 * emacs-lisp/smie.el (smie-indent--rule): Extract `smie-indent--rule-1'.
4457 (smie-indent-close): Call `smie-indent--rule-1' with METHOD
4458 :close-all, to see which indentation method to use (Bug#16116).
4459 (smie-rules-function): Document the method :close-all.
4460
4461 2013-12-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
4462
4463 * net/shr.el (shr-tag-a): Support zero-length <a name="foo"> elements.
4464
4465 * net/eww.el (eww-display-html): If we can't find the anchor we're
4466 looking for, then go to point-min.
4467
4468 2013-12-16 Paul Eggert <eggert@cs.ucla.edu>
4469
4470 Fix problems with CANNOT_DUMP and EMACSLOADPATH.
4471 * Makefile.in (emacs): Add lisp src to EMACSLOADPATH.
4472 * loadup.el: Check for src/bootstrap-emacs only when Emacs can dump.
4473 Expand dir too, in case it's relative.
4474
4475 2013-12-16 Juri Linkov <juri@jurta.org>
4476
4477 * desktop.el (desktop-auto-save-timeout): Change default to
4478 `auto-save-timeout'. Doc fix.
4479 (desktop-save): Skip the timestamp in desktop-saved-frameset
4480 when checking for auto-save changes.
4481 (desktop-auto-save): Don't call desktop-auto-save-set-timer since
4482 `desktop-auto-save' is called repeatedly by the idle timer.
4483 (desktop-auto-save-set-timer): Replace `run-with-timer' with
4484 `run-with-idle-timer' and a non-nil arg REPEAT. Doc fix.
4485 (Bug#15331)
4486
4487 2013-12-16 Juri Linkov <juri@jurta.org>
4488
4489 * isearch.el (isearch-mode-map): Remove [escape] key bindinds.
4490 (Bug#16035)
4491 (isearch-pre-command-hook): Check `this-command' for symbolp.
4492
4493 2013-12-16 Stefan Monnier <monnier@iro.umontreal.ca>
4494
4495 * emacs-lisp/gv.el (gv-ref): Mention lexbind restriction (bug#16153).
4496
4497 2013-12-16 Teodor Zlatanov <tzz@lifelogs.com>
4498
4499 * progmodes/cfengine.el (cfengine3--current-word): Remove.
4500 (cfengine3--current-function): Bring in the current-function
4501 functionality from `cfengine3--current-word'.
4502 (cfengine3-completion-function): Bring in the
4503 bounds-of-current-word functionality from
4504 `cfengine3--current-word'.
4505
4506 2013-12-16 Martin Rudalics <rudalics@gmx.at>
4507
4508 * window.el (display-buffer-below-selected):
4509 Bind split-height-threshold to 0 as suggested by Juri Linkov.
4510
4511 2013-12-16 Leo Liu <sdl.web@gmail.com>
4512
4513 * progmodes/compile.el (compile-goto-error): Do not push-mark.
4514 Remove NOMSG arg and all uses changed.
4515
4516 2013-12-16 Stefan Monnier <monnier@iro.umontreal.ca>
4517
4518 * emulation/cua-rect.el (cua-rectangle-mark-mode): New minor mode.
4519 (cua--deactivate-rectangle): Don't deactivate the mark.
4520 (cua-set-rectangle-mark): Don't set mark-active since
4521 cua--activate-rectangle already does it for us.
4522 (cua--rectangle-highlight-for-redisplay): Unhighlight a previous
4523 non-rectangular region.
4524
4525 * emulation/cua-base.el (cua-repeat-replace-region):
4526 Use with-current-buffer.
4527
4528 * net/gnutls.el: Use cl-lib.
4529 (gnutls-negotiate): `mapcan' -> cl-mapcan.
4530
4531 2013-12-14 Teodor Zlatanov <tzz@lifelogs.com>
4532
4533 * emacs-lisp/package.el (package-built-in-p): Support both
4534 built-in and the package.el converted package descriptions.
4535 (package-show-package-list): Allow keywords.
4536 (package-keyword-button-action): Use it instead of
4537 `finder-list-matches'.
4538 (package-menu-filter-interactive): Interactive filtering (by
4539 keyword) function.
4540 (package-menu--generate): Support keywords and change keymappings
4541 and headers when they are given.
4542 (package--has-keyword-p): Helper function.
4543 (package-menu--refresh): Use it.
4544 (package--mapc): Helper function.
4545 (package-all-keywords): Use it.
4546 (package-menu-mode-map): Set up menu items and keybindings to
4547 provide a filtering UI.
4548
4549 2013-12-14 Teodor Zlatanov <tzz@lifelogs.com>
4550
4551 * net/gnutls.el (gnutls-verify-error): New defcustom to control
4552 the behavior when a certificate fails validation. Defaults to
4553 old behavior: never abort, just warn.
4554 (gnutls-negotiate): Use it.
4555
4556 2013-12-14 Martin Rudalics <rudalics@gmx.at>
4557
4558 * window.el (display-buffer-below-selected): Never split window
4559 horizontally. Suggested by Juri Linkov <juri@jurta.org>.
4560
4561 2013-12-14 Tom Willemse <tom@ryuslash.org> (tiny change)
4562
4563 * emacs-lisp/package.el (package--prepare-dependencies): New function.
4564 (package-buffer-info): Use it (bug#15108).
4565
4566 2013-12-14 Stefan Monnier <monnier@iro.umontreal.ca>
4567
4568 * icomplete.el (icomplete-completions): Make sure the prefix is already
4569 displayed elsewhere before hiding it (bug#16219).
4570
4571 2013-12-14 Dmitry Gutov <dgutov@yandex.ru>
4572
4573 * progmodes/ruby-mode.el (ruby-smie-rules): Return nil before
4574 open-paren tokens when preceded by a open-paren, too.
4575 (ruby-smie-rules): Handle virtual indentation after open-paren
4576 tokens specially. If there is code between it and eol, return the
4577 column where is starts (Bug#16118).
4578
4579 2013-12-13 Teodor Zlatanov <tzz@lifelogs.com>
4580
4581 * progmodes/cfengine.el: Fix `add-hook' doc.
4582 (cfengine-mode-syntax-functions-regex): Initialize sensibly.
4583 (cfengine3--current-word): Fix parameters.
4584 (cfengine3-make-syntax-cache): Simplify further.
4585 (cfengine3-completion-function, cfengine3--current-function):
4586 Use `assq' for symbols.
4587 (cfengine3--current-function): Fix `cfengine3--current-word' call.
4588
4589 2013-12-13 Glenn Morris <rgm@gnu.org>
4590
4591 * loadup.el (load-path): Warn if site-load or site-init changes it.
4592 No more need to reset it when bootstrapping.
4593
4594 2013-12-13 Teodor Zlatanov <tzz@lifelogs.com>
4595
4596 * progmodes/cfengine.el (cfengine-cf-promises): Add more default
4597 locations for cf-promises.
4598 (cfengine-mode-syntax-functions-regex): New caching variable.
4599 (cfengine3-fallback-syntax): Fallback syntax for cases where
4600 cf-promises doesn't run.
4601 (cfengine3--current-word): Reimplement using
4602 `cfengine-mode-syntax-functions-regex'.
4603 (cfengine3-completion-function, cfengine3--current-function):
4604 Use `cfengine3-make-syntax-cache' directly.
4605 (cfengine3-clear-syntax-cache): New function.
4606 (cfengine3-make-syntax-cache): Simplify and create
4607 `cfengine-mode-syntax-functions-regex' on demand.
4608 (cfengine3-format-function-docstring): Don't call
4609 `cfengine3-make-syntax-cache' explicitly.
4610
4611 2013-12-13 Martin Rudalics <rudalics@gmx.at>
4612
4613 Fix windmove-find-other-window broken after pixelwise resizing
4614 (Bug#16017).
4615 * windmove.el (windmove-other-window-loc): Revert change from
4616 2013-12-04.
4617 (windmove-find-other-window): Call window-in-direction.
4618 * window.el (window-in-direction): New arguments SIGN, WRAP and
4619 MINI to emulate original windmove-find-other-window behavior.
4620
4621 2013-12-13 Dmitry Gutov <dgutov@yandex.ru>
4622
4623 * simple.el (blink-matching--overlay): New variable.
4624 (blink-matching-open): Instead of moving point, highlight the
4625 matching paren with an overlay
4626 (http://lists.gnu.org/archive/html/emacs-devel/2013-12/msg00333.html).
4627
4628 * faces.el (paren-showing-faces, show-paren-match)
4629 (show-paren-mismatch): Move from paren.el.
4630
4631 2013-12-13 Leo Liu <sdl.web@gmail.com>
4632
4633 * indent.el (indent-region): Disable progress reporter in
4634 minibuffer. (Bug#16108)
4635
4636 * bindings.el (visual-order-cursor-movement): Fix version.
4637
4638 2013-12-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
4639
4640 * progmodes/python.el (python-pdbtrack-stacktrace-info-regexp):
4641 Also match after beginning of line.
4642 (python-pdbtrack-set-tracked-buffer): Fix logic for remote
4643 files. Thanks to Russell Sim. (Bug#15378)
4644
4645 2013-12-13 Juri Linkov <juri@jurta.org>
4646
4647 * simple.el <Keypad support>: Remove key bindings duplicated
4648 with bindings.el. (Bug#14397)
4649
4650 2013-12-13 Juri Linkov <juri@jurta.org>
4651
4652 * comint.el (comint-mode-map): Replace `delete-char' with
4653 `delete-forward-char'. (Bug#16109)
4654
4655 2013-12-12 Fabián Ezequiel Gallina <fgallina@gnu.org>
4656
4657 * progmodes/python.el (python-indent-calculate-indentation):
4658 Fix de-denters cornercase. (Bug#15731)
4659
4660 2013-12-12 Stefan Monnier <monnier@iro.umontreal.ca>
4661
4662 * emacs-lisp/nadvice.el: Add `depth' property to manage ordering.
4663 (advice--make): Pay attention to `depth'.
4664 (advice--make-1): Don't autoload commands eagerly.
4665 * emacs-lisp/elp.el (elp-instrument-function):
4666 * emacs-lisp/trace.el (trace-function-internal):
4667 * emacs-lisp/debug.el (debug-on-entry): Keep them "first".
4668
4669 * iswitchb.el (iswitchb-mode): Don't belittle ido.
4670
4671 2013-12-12 Eli Zaretskii <eliz@gnu.org>
4672
4673 * term/w32-win.el (w32-handle-dropped-file):
4674 * startup.el (normal-top-level):
4675 * net/browse-url.el (browse-url-file-url):
4676 * dnd.el (dnd-get-local-file-name): On MS-Windows, encode and
4677 decode file names using 'utf-8' rather than
4678 file-name-coding-system.
4679
4680 2013-12-12 Fabián Ezequiel Gallina <fgallina@gnu.org>
4681
4682 * progmodes/python.el (python-indent-context)
4683 (python-indent-calculate-indentation): Fix auto-identation
4684 behavior for comment blocks. (Bug#15916)
4685
4686 2013-12-12 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
4687
4688 * progmodes/python.el (python-indent-calculate-indentation):
4689 When determining indentation, don't treat "return", "pass", etc., as
4690 operators when they are just string constituents. (Bug#15812)
4691
4692 2013-12-12 Juri Linkov <juri@jurta.org>
4693
4694 * uniquify.el (uniquify-buffer-name-style): Change default to
4695 `post-forward-angle-brackets'.
4696
4697 * menu-bar.el (menu-bar-options-menu): Don't require preloaded
4698 `uniquify'. Change default to `post-forward-angle-brackets'.
4699
4700 2013-12-11 Glenn Morris <rgm@gnu.org>
4701
4702 * emacs-lisp/package.el (finder-list-matches):
4703 Autoload rather than falsely declaring.
4704
4705 2013-12-11 Teodor Zlatanov <tzz@lifelogs.com>
4706
4707 * net/eww.el (eww-exit, eww-close): Add UI convenience wrappers.
4708 (eww-mode-map): Use them.
4709
4710 2013-12-11 Martin Rudalics <rudalics@gmx.at>
4711
4712 * window.el (display-buffer-in-side-window): Fix doc-string
4713 (Bug#16115).
4714
4715 2013-12-11 Juanma Barranquero <lekktu@gmail.com>
4716
4717 * vc/vc-git.el: Silence byte-compiler warnings.
4718 (vc-git-dir-extra-headers): Rename arg _dir which is no longer ignored.
4719 (log-edit-set-header): Declare.
4720
4721 2013-12-11 Eli Zaretskii <eliz@gnu.org>
4722
4723 * Makefile.in (custom-deps, finder-data): Run output file names
4724 through unmsys--file-name. (Bug#16099)
4725
4726 2013-12-11 Stefan Monnier <monnier@iro.umontreal.ca>
4727
4728 * emacs-lisp/smie.el (smie-indent--hanging-p): Don't bother matching
4729 comment-start-skip, which fails when that uses submatch 1 (bug#16041).
4730
4731 * emulation/cua-base.el (cua-paste): Add `delete-selection' property
4732 instead of deleting the selection "by hand" (bug#16098).
4733 Rely on insert-for-yank to yank rectangles.
4734 (cua-highlight-region-shift-only): Mark obsolete.
4735 (cua-mode): Don't enable/disable transient-mark-mode,
4736 shift-select-mode (cua-mode works both with and without them), and
4737 pc-selection-mode (obsolete).
4738 * emulation/cua-rect.el (cua--activate-rectangle): Activate the mark.
4739 (cua--deactivate-rectangle): Deactivate it.
4740
4741 * delsel.el (delete-selection-mode): Don't enable transient-mark-mode.
4742 (delete-selection-helper): Make sure yank starts at the top of the
4743 deleted region.
4744 (minibuffer-keyboard-quit): Use region-active-p.
4745
4746 * emacs-lisp/trace.el (trace-make-advice): Don't deactivate the mark.
4747
4748 * simple.el (normal-erase-is-backspace-mode): Map kp-delete identically
4749 to `delete' (bug#16109).
4750
4751 2013-12-11 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
4752
4753 * progmodes/octave.el (octave-mode, inferior-octave-mode): Link to
4754 info manual and show keybindings and set `:group' keyword.
4755
4756 2013-12-11 Juri Linkov <juri@jurta.org>
4757
4758 * delsel.el (delete-active-region): Let-bind `this-command'
4759 to prevent `kill-region' from changing its original value.
4760 (delete-selection-helper): Handle `overwrite-mode' for the type
4761 `kill' exactly the same way as for the type `t'.
4762 (insert-char, quoted-insert, reindent-then-newline-and-indent):
4763 Support more commands. (Bug#13312)
4764
4765 2013-12-11 Juri Linkov <juri@jurta.org>
4766
4767 * bindings.el: Map kp keys to non-kp keys systematically
4768 with basic modifiers control, meta and shift. (Bug#14397)
4769
4770 2013-12-11 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
4771
4772 * net/eww.el (eww-mode-map): Instead of "Quit" show "Exit" and
4773 "Close browser" menu items. Fix wrong function of "List
4774 bookmarks".
4775
4776 2013-12-11 Juri Linkov <juri@jurta.org>
4777
4778 * misearch.el (multi-isearch-buffers): Set the value of
4779 `multi-isearch-buffer-list' globally. Set NO-RECURSIVE-EDIT
4780 arg of isearch-forward to t.
4781 (multi-isearch-buffers-regexp): Set the value of
4782 `multi-isearch-buffer-list' globally. Set NO-RECURSIVE-EDIT
4783 arg of isearch-forward-regexp to t.
4784 (multi-isearch-files): Set the value of
4785 `multi-isearch-file-list' globally. Set NO-RECURSIVE-EDIT
4786 arg of isearch-forward to t.
4787 (multi-isearch-files-regexp): Set the value of
4788 `multi-isearch-file-list' globally. Set NO-RECURSIVE-EDIT
4789 arg of isearch-forward-regexp to t. (Bug#16035)
4790
4791 * dired-aux.el (dired-isearch-filenames): Set NO-RECURSIVE-EDIT
4792 arg of isearch-forward to t.
4793 (dired-isearch-filenames-regexp): Set NO-RECURSIVE-EDIT
4794 arg of isearch-forward-regexp to t.
4795 (dired-isearch-filter-filenames): Remove unnecessary check for
4796 `dired-isearch-filenames'.
4797
4798 * comint.el (comint-history-isearch-backward):
4799 Set NO-RECURSIVE-EDIT arg of isearch-backward to t.
4800 (comint-history-isearch-backward-regexp):
4801 Set NO-RECURSIVE-EDIT arg of isearch-backward-regexp to t.
4802
4803 2013-12-10 Eli Zaretskii <eliz@gnu.org>
4804
4805 * Makefile.in (autoloads): Run $(srcdir)/loaddefs.el through
4806 unmsys--file-name. (Bug#16099)
4807
4808 2013-12-10 Teodor Zlatanov <tzz@lifelogs.com>
4809
4810 * emacs-lisp/package.el (package-keyword-button-action):
4811 Remove finder.el require dependency.
4812
4813 2013-12-09 Teodor Zlatanov <tzz@lifelogs.com>
4814
4815 * emacs-lisp/package.el: Require finder.el.
4816 (describe-package-1): Add keyword buttons.
4817 (package-make-button): New convenience function.
4818 (package-keyword-button-action): Keyword button action using
4819 `finder-list-matches'.
4820
4821 2013-12-09 Eli Zaretskii <eliz@gnu.org>
4822
4823 * autorevert.el (auto-revert-notify-add-watch): Fix a thinko in
4824 last commit.
4825
4826 2013-12-09 Michael Albinus <michael.albinus@gmx.de>
4827
4828 * autorevert.el (auto-revert-notify-add-watch): Do not handle
4829 symlinked files.
4830
4831 2013-12-09 Dmitry Gutov <dgutov@yandex.ru>
4832
4833 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Return t
4834 after the end of a percent literal.
4835
4836 2013-12-09 Cameron Desautels <camdez@gmail.com> (tiny change)
4837
4838 * progmodes/ruby-mode.el (ruby-forward-string): Document.
4839 Handle caret-delimited strings (Bug#16079).
4840
4841 2013-12-09 Dmitry Gutov <dgutov@yandex.ru>
4842
4843 * progmodes/ruby-mode.el (ruby-accurate-end-of-block):
4844 When `ruby-use-smie' is t, use `smie-forward-sexp' instead of
4845 `ruby-parse-partial' (Bug#16078).
4846
4847 2013-12-09 Leo Liu <sdl.web@gmail.com>
4848
4849 * subr.el (read-passwd): Disable show-paren-mode. (Bug#16091)
4850
4851 2013-12-08 Dmitry Gutov <dgutov@yandex.ru>
4852
4853 * progmodes/js.el (js-auto-indent-flag): Remove, was unused.
4854 (js-switch-indent-offset): New option.
4855 (js--proper-indentation): Use it. And handle the case when
4856 "default" is actually a key in an object literal.
4857 (js--same-line): New function.
4858 (js--multi-line-declaration-indentation): Use it.
4859 (js--indent-in-array-comp, js--array-comp-indentation):
4860 New functions.
4861 (js--proper-indentation): Use them, to handle array comprehension
4862 continuations.
4863
4864 2013-12-08 Leo Liu <sdl.web@gmail.com>
4865
4866 * progmodes/flymake.el (flymake-highlight-line): Re-write.
4867 (flymake-make-overlay): Remove arg MOUSE-FACE.
4868 (flymake-save-string-to-file, flymake-read-file-to-string): Remove.
4869
4870 2013-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
4871
4872 * emulation/cua-rect.el (cua--rectangle-highlight-for-redisplay):
4873 New function.
4874 (redisplay-highlight-region-function): Use it.
4875
4876 * emulation/cua-base.el (cua--explicit-region-start)
4877 (cua--last-region-shifted): Remove.
4878 (cua--deactivate): Use deactivate-mark.
4879 (cua--pre-command-handler-1): Don't handle shift-selection.
4880 (cua--post-command-handler-1): Don't change transient-mark-mode.
4881 (cua--select-keymaps): Use region-active-p rather than
4882 cua--explicit-region-start or cua--last-region-shifted.
4883 (cua-mode): Enable shift-select-mode.
4884
4885 2013-12-08 Leo Liu <sdl.web@gmail.com>
4886
4887 * progmodes/flymake.el (flymake-popup-current-error-menu):
4888 Rename from flymake-display-err-menu-for-current-line. Reimplement.
4889 (flymake-posn-at-point-as-event, flymake-popup-menu)
4890 (flymake-make-emacs-menu): Remove. (Bug#16077)
4891
4892 2013-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
4893
4894 * rect.el (rectangle-mark-mode): Activate mark even if
4895 transient-mark-mode is off (bug#16066).
4896 (rectangle--highlight-for-redisplay): Fix boundary condition when point
4897 is > mark and at bolp.
4898
4899 * emulation/cua-rect.el (cua--rectangle-region-extract): New function.
4900 (region-extract-function): Use it.
4901 (cua-mouse-save-then-kill-rectangle): Use cua-copy-region.
4902 (cua-copy-rectangle, cua-cut-rectangle, cua-delete-rectangle):
4903 Delete functions.
4904 (cua--init-rectangles): Don't re-remap copy-region-as-kill,
4905 kill-ring-save, kill-region, delete-char, delete-forward-char.
4906 Ignore self-insert-iso.
4907
4908 * emulation/cua-gmrk.el (cua--init-global-mark):
4909 Ignore `self-insert-iso'.
4910
4911 * emulation/cua-base.el (cua--prefix-copy-handler)
4912 (cua--prefix-cut-handler): Rely on region-extract-function rather than
4913 checking cua--rectangle.
4914 (cua-delete-region): Use region-extract-function.
4915 (cua-replace-region): Delete function.
4916 (cua-copy-region, cua-cut-region): Obey region-extract-function.
4917 (cua--pre-command-handler-1): Don't do the delete-selection thing.
4918 (cua--self-insert-char-p): Ignore `self-insert-iso'.
4919 (cua--init-keymaps): Don't remap delete-selection commands.
4920 (cua-mode): Use delete-selection-mode instead of rolling our own
4921 (bug#16085).
4922
4923 * menu-bar.el (clipboard-kill-ring-save, clipboard-kill-region):
4924 Obey region-extract-function.
4925
4926 Make registers and delete-selection-mode work on rectangles.
4927 * register.el (describe-register-1): Don't modify the register's value.
4928 (copy-to-register): Obey region-extract-function.
4929 * delsel.el (delete-active-region): Obey region-extract-function.
4930
4931 2013-12-08 Leo Liu <sdl.web@gmail.com>
4932
4933 * progmodes/flymake.el (flymake, flymake-error-bitmap)
4934 (flymake-warning-bitmap, flymake-fringe-indicator-position)
4935 (flymake-compilation-prevents-syntax-check)
4936 (flymake-start-syntax-check-on-newline)
4937 (flymake-no-changes-timeout, flymake-gui-warnings-enabled)
4938 (flymake-start-syntax-check-on-find-file, flymake-log-level)
4939 (flymake-xml-program, flymake-master-file-dirs)
4940 (flymake-master-file-count-limit)
4941 (flymake-allowed-file-name-masks): Relocate.
4942 (flymake-makehash, flymake-float-time)
4943 (flymake-replace-regexp-in-string, flymake-split-string)
4944 (flymake-get-temp-dir): Remove.
4945 (flymake-popup-menu, flymake-nop, flymake-make-xemacs-menu)
4946 (flymake-current-row, flymake-selected-frame)
4947 (flymake-get-point-pixel-pos): Remove xemacs compatibity and
4948 related functions. (Bug#16077)
4949
4950 2013-12-07 Bozhidar Batsov <bozhidar@batsov.com>
4951
4952 * emacs-lisp/helpers.el (string-blank-p): Use `string-match-p'.
4953
4954 2013-12-07 Tassilo Horn <tsdh@gnu.org>
4955
4956 * help-fns.el (describe-function-1): Use new advice-* functions
4957 rather than old ad-* functions. Fix function type description and
4958 source links for advised functions and subrs.
4959
4960 2013-12-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
4961
4962 * net/shr.el (shr-tag-img): Don't bug out on <img src=""> data.
4963
4964 2013-12-06 Michael Albinus <michael.albinus@gmx.de>
4965
4966 * progmodes/compile.el (compilation-start):
4967 * progmodes/grep.el (rgrep): Revert change 2012-12-20T11:15:38Z!michael.albinus@gmx.de.
4968
4969 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
4970 Handle long command lines, lasting from "sh -c ...". (Bug#16045)
4971
4972 2013-12-06 Dmitry Gutov <dgutov@yandex.ru>
4973
4974 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
4975 Touch up the last change.
4976
4977 2013-12-06 Leo Liu <sdl.web@gmail.com>
4978
4979 * progmodes/octave.el (inferior-octave-prompt): Use shy groups.
4980 (inferior-octave-startup): Always use "octave> " for prompt.
4981 (octave-goto-function-definition)
4982 (octave-sync-function-file-names)
4983 (octave-find-definition-default-filename): Remove redundant backquotes.
4984
4985 2013-12-06 Dmitry Gutov <dgutov@yandex.ru>
4986
4987 * progmodes/ruby-mode.el (ruby-mode-syntax-table): Don't modify
4988 syntax for `?'.
4989 (ruby-expr-beg): Expect that `!' will have syntax class "symbol"
4990 where appropriate already.
4991 (ruby-syntax-propertize-function): Propertize `?' and `!' at the
4992 end of method names (Bug#15874).
4993
4994 2013-12-06 Juri Linkov <juri@jurta.org>
4995
4996 * isearch.el (isearch--saved-overriding-local-map):
4997 New internal variable.
4998 (isearch-mode): Set it to the initial value of
4999 `overriding-terminal-local-map'.
5000 (isearch-pre-command-hook): Compare `overriding-terminal-local-map'
5001 with `isearch--saved-overriding-local-map'. (Bug#16035)
5002
5003 2013-12-06 Dmitry Gutov <dgutov@yandex.ru>
5004
5005 * progmodes/octave.el (inferior-octave-completion-table):
5006 Turn back into function, use `completion-table-with-cache'
5007 (Bug#11906). Update all references.
5008
5009 * minibuffer.el (completion-table-with-cache): New function.
5010
5011 2013-12-05 Cameron Desautels <camdez@gmail.com> (tiny change)
5012
5013 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Fix ^ (bug#16046).
5014
5015 2013-12-05 Teodor Zlatanov <tzz@lifelogs.com>
5016
5017 * net/eww.el (eww-current-source): New variable to store page
5018 source.
5019 (eww-display-html, eww-mode, eww-save-history)
5020 (eww-restore-history): Use it.
5021 (eww-view-source): New command to view page source.
5022 Opportunistically uses `html-mode' to highlight the buffer.
5023 (eww-mode-map): Install it.
5024
5025 2013-12-05 Michael Albinus <michael.albinus@gmx.de>
5026
5027 * net/dbus.el (dbus-unregister-service)
5028 (dbus-escape-as-identifier, dbus-unescape-from-identifier):
5029 Fix docstring.
5030 (dbus-unregister-service): Skip :serial entries in
5031 `dbus-registered-objects-table'.
5032 (dbus-byte-array-to-string): New optional arg MULTIBYTE.
5033
5034 2013-12-04 Teodor Zlatanov <tzz@lifelogs.com>
5035
5036 * emacs-lisp/lisp-mnt.el (lm-keywords-list): Trim whitespace
5037 around keywords with extra `split-string' argument.
5038
5039 2013-12-04 Martin Rudalics <rudalics@gmx.at>
5040
5041 * windmove.el (windmove-other-window-loc): Handle navigation
5042 between windows (excluding the minibuffer window - Bug#16017).
5043
5044 2013-12-04 Michael Albinus <michael.albinus@gmx.de>
5045
5046 * net/dbus.el (dbus-byte-array-to-string): Accept also byte arrays
5047 in D-Bus type syntax.
5048 (dbus-unescape-from-identifier): Use `byte-to-string' in order to
5049 preserve unibyte strings. (Bug#16048)
5050
5051 2013-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
5052
5053 * emacs-lisp/eldoc.el (eldoc-minibuffer-message):
5054 Call force-mode-line-update is the proper buffer (bug#16042).
5055
5056 2013-12-04 Dmitry Gutov <dgutov@yandex.ru>
5057
5058 * vc/log-edit.el (log-edit-add-new-comment): Rename to
5059 `log-edit-remember-comment', make argument optional. Adjust all
5060 callers.
5061 (log-edit-mode): Add `log-edit-remember-comment' to
5062 `kill-buffer-hook' locally.
5063 (log-edit-kill-buffer): Don't remember comment explicitly since
5064 the buffer is killed anyway.
5065
5066 2013-12-04 Juri Linkov <juri@jurta.org>
5067
5068 * isearch.el (isearch-mode, isearch-done): Don't set arg LOCAL in
5069 add-hook and remove-hook for multi-buffer search. (Bug#16035)
5070
5071 2013-12-03 Tom Regner <tom@goochesa.de> (tiny change)
5072
5073 * notifications.el (notifications-close-notification): Call the
5074 D-Bus method with ID being a `:uint32'. (Bug#16030)
5075
5076 2013-12-03 Katsumi Yamaoka <yamaoka@jpl.org>
5077
5078 * net/eww.el (eww-render): Don't pass arg to eww-display-image.
5079
5080 2013-12-03 Juri Linkov <juri@jurta.org>
5081
5082 * progmodes/compile.el (compilation-start): Rename window alist
5083 entry `no-display-ok' to `allow-no-window'.
5084
5085 * simple.el (shell-command): Add window alist entry
5086 `allow-no-window' to `display-buffer'.
5087 (async-shell-command): Doc fix.
5088
5089 * window.el (display-buffer-no-window): New action function.
5090 (display-buffer-alist, display-buffer): Doc fix. (Bug#13594)
5091
5092 2013-12-02 Dmitry Gutov <dgutov@yandex.ru>
5093
5094 * vc/log-edit.el (log-edit-set-header): Extract from
5095 `log-edit-toggle-header'.
5096 (log-edit-extract-headers): Separate the summary, when extracted
5097 from header, from the rest of the message with an empty line.
5098
5099 * vc/vc-git.el (vc-git-log-edit-toggle-amend): Move the summary
5100 line, if present, to the Summary header.
5101
5102 2013-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
5103
5104 * epa-file.el (epa-file-insert-file-contents): Ensure we insert text
5105 in current-buffer (bug#16029).
5106
5107 2013-12-02 Helmut Eller <eller.helmut@gmail.com>
5108
5109 * emacs-lisp/debug.el (debugger-toggle-locals): New command.
5110 (debugger-mode-map): Bind it.
5111 (debugger--backtrace-base): New function.
5112 (debugger-eval-expression): Use it.
5113 (debugger-frame-number): Skip local vars when present.
5114 (debugger--locals-visible-p, debugger--insert-locals)
5115 (debugger--show-locals, debugger--hide-locals): New functions.
5116
5117 2013-12-02 Michael Albinus <michael.albinus@gmx.de>
5118
5119 * net/tramp-sh.el (tramp-remote-process-environment): Do not set
5120 "LC_ALL".
5121 (tramp-get-remote-locale): New defun.
5122 (tramp-open-connection-setup-interactive-shell): Use it.
5123
5124 2013-12-02 Leo Liu <sdl.web@gmail.com>
5125
5126 * subr.el (process-live-p): Return nil for non-process. (Bug#16023)
5127
5128 * progmodes/sh-script.el (sh-shell-process):
5129 * progmodes/octave.el (inferior-octave-process-live-p):
5130 * progmodes/gdb-mi.el (gdb-delchar-or-quit)
5131 (gdb-inferior-io-sentinel):
5132 * emacs-lock.el (emacs-lock-live-process-p): All uses changed.
5133
5134 2013-12-02 Dmitry Gutov <dgutov@yandex.ru>
5135
5136 * vc/log-edit.el (log-edit-kill-buffer): Move the use of
5137 `save-selected-window' to `log-edit-hide-buf'. This makes
5138 `log-edit-show-files' idempotent.
5139 (log-edit-show-files): Mark the new window as dedicated.
5140
5141 2013-12-02 Dmitry Gutov <dgutov@yandex.ru>
5142
5143 * vc/log-edit.el (log-edit-mode-map): Add binding for
5144 `log-edit-kill-biffer'.
5145 (log-edit-hide-buf): Add a FIXME comment.
5146 (log-edit-add-new-comment): New function, extracted from
5147 `log-edit-done'.
5148 (log-edit-done, log-edit-add-to-changelog): Use it.
5149 (log-edit-kill-buffer): New command.
5150
5151 2013-12-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
5152
5153 * net/eww.el (eww-mode-map): Have `q' do a normal `quit-window'
5154 instead of killing the buffer.
5155
5156 2013-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
5157
5158 * simple.el (newline): Mention `electric-indent-mode' (bug#16015).
5159
5160 2013-12-01 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
5161
5162 * net/eww.el (eww-form-checkbox-selected-symbol)
5163 (eww-form-checkbox-symbol): New customizable variable.
5164 (eww-form-checkbox, eww-toggle-checkbox):
5165 Use `eww-form-checkbox-selected-symbol' and `eww-form-checkbox-symbol'.
5166
5167 * net/shr.el (shr-prefer-media-type-alist): New customizable variable.
5168 (shr--get-media-pref, shr--extract-best-source): New function.
5169 (shr-tag-video, shr-tag-audio): Use `shr--extract-best-source' when
5170 no :src tag was specified.
5171
5172 * net/eww.el (eww-use-external-browser-for-content-type): New variable.
5173 (eww-render): Handle `eww-use-external-browser-for-content-type'.
5174 Use \\` to match beginning of string instead of ^.
5175 (eww-browse-with-external-browser): Provide optional URL parameter.
5176 (eww-render): Set `eww-current-title' back to "".
5177
5178 * net/shr.el (shr-tag-video): Display content for video if no
5179 poster is available.
5180 (shr-tag-audio): Add support for <audio> tag.
5181
5182 * net/eww.el (eww-text-input-types): New const.
5183 (eww-process-text-input): Treat input types in
5184 `eww-text-input-types' as text.
5185
5186 * net/shr.el (shr-tag-table): Fix comment typo.
5187
5188 2013-12-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
5189
5190 * net/eww.el (eww-follow-link): New command to avoid reloading
5191 pages when we follow #target links (bug#15243).
5192 (eww-quit): Special mode buffers shouldn't query before exiting.
5193
5194 2013-12-01 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
5195
5196 * net/eww.el (eww-tag-select): Support <optgroup> tags in <select>
5197 forms.
5198
5199 2013-12-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
5200
5201 * net/eww.el (eww-restore-history): Update the window title after
5202 moving in the history.
5203 (eww-current-dom): New variable used to save the current DOM.
5204
5205 2013-12-01 Dmitry Gutov <dgutov@yandex.ru>
5206
5207 * vc/log-edit.el (log-edit-mode-map): Add binding for
5208 `log-edit-beginning-of-line'.
5209 (log-edit-setup-add-author): New user option.
5210 (log-edit-beginning-of-line): New command.
5211 (log-edit): Move major mode call above the contents setup so that
5212 the local variable values are already applied.
5213 (log-edit): Only insert "Author: " when
5214 `log-edit-setup-add-author' is non-nil.
5215 (log-edit): When SETUP is non-nil, position point after ": "
5216 instead of point-min.
5217
5218 2013-12-01 Glenn Morris <rgm@gnu.org>
5219
5220 * startup.el (command-line): Warn if ~/emacs.d is in load-path.
5221
5222 2013-11-30 Eli Zaretskii <eliz@gnu.org>
5223
5224 * startup.el (fancy-splash-frame): On MS-Windows, trigger
5225 redisplay to make sure the initial frame gets a chance to become
5226 visible. (Bug#16014)
5227
5228 2013-11-30 Martin Rudalics <rudalics@gmx.at>
5229
5230 Support resizing frames and windows pixelwise.
5231 * cus-start.el (frame-resize-pixelwise)
5232 (window-resize-pixelwise): New entries.
5233 * emacs-lisp/debug.el (debug): Use window-total-height instead
5234 of window-total-size.
5235 * frame.el (tool-bar-lines-needed): Defalias to tool-bar-height.
5236 * help.el (describe-bindings-internal): Use help-buffer as
5237 argument for with-help-window.
5238 (temp-buffer-max-width): New option.
5239 (resize-temp-buffer-window, help-window-setup)
5240 (with-help-window): Rewrite.
5241 * mouse.el (mouse-drag-line): Rewrite. Add key bindings for
5242 dragging dividers.
5243 * window.el (frame-char-size, window-min-pixel-height)
5244 (window-safe-min-pixel-height, window-safe-min-pixel-width)
5245 (window-min-pixel-width, window-safe-min-pixel-size)
5246 (window-combination-p, window-safe-min-size)
5247 (window-resizable-p, window--size-to-pixel)
5248 (window--pixel-to-size, window--resize-apply-p): New functions.
5249 (window-safe-min-height): Fix doc-string.
5250 (window-size, window-min-size, window--min-size-1)
5251 (window-sizable, window-sizable-p, window--min-delta-1)
5252 (window-min-delta, window--max-delta-1, window-max-delta)
5253 (window--resizable, window--resizable-p, window-resizable)
5254 (window-full-height-p, window-full-width-p, window-at-side-p)
5255 (window--in-direction-2, window-in-direction)
5256 (window--resize-reset-1, window--resize-mini-window)
5257 (window-resize, window-resize-no-error)
5258 (window--resize-child-windows-normal)
5259 (window--resize-child-windows, window--resize-siblings)
5260 (window--resize-this-window, window--resize-root-window)
5261 (window--resize-root-window-vertically)
5262 (adjust-window-trailing-edge, enlarge-window, shrink-window)
5263 (maximize-window, minimize-window, delete-window)
5264 (quit-restore-window, window-split-min-size, split-window)
5265 (balance-windows-2, balance-windows)
5266 (balance-windows-area-adjust, balance-windows-area)
5267 (window--state-get-1, window-state-get, window--state-put-1)
5268 (window--state-put-2, window-state-put)
5269 (display-buffer-record-window, window--display-buffer):
5270 Make functions handle pixelwise sizing of windows.
5271 (display-buffer--action-function-custom-type)
5272 (display-buffer-fallback-action):
5273 Add display-buffer-in-previous-window.
5274 (display-buffer-use-some-window): Resize window to height it had
5275 before.
5276 (fit-window-to-buffer-horizontally): New option.
5277 (fit-frame-to-buffer): Describe new values.
5278 (fit-frame-to-buffer-bottom-margin): Replace with
5279 fit-frame-to-buffer-margins.
5280 (window--sanitize-margin): New function.
5281 (fit-frame-to-buffer, fit-window-to-buffer): Rewrite completely
5282 using window-text-pixel-size.
5283
5284 2013-11-30 Glenn Morris <rgm@gnu.org>
5285
5286 * emacs-lisp/bytecomp.el (byte-compile-form):
5287 Make the `interactive-only' warning like the `obsolete' one.
5288 * comint.el (comint-run):
5289 * files.el (insert-file-literally, insert-file):
5290 * replace.el (replace-string, replace-regexp):
5291 * simple.el (beginning-of-buffer, end-of-buffer, delete-backward-char)
5292 (goto-line, insert-buffer, next-line, previous-line):
5293 Tweak `interactive-only' spec.
5294
5295 Stop keeping (most) generated cedet grammar files in the repository.
5296 * Makefile.in (semantic): New.
5297 (compile-main): Depend on semantic.
5298
5299 2013-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
5300
5301 * net/newst-reader.el (newsticker-html-renderer): Default to SHR if
5302 available. Suggested by Clément B. <barthele1u@etu.univ-lorraine.fr>.
5303
5304 * uniquify.el (uniquify-buffer-name-style): Change default.
5305
5306 * loadup.el: Preload "uniquify".
5307
5308 * time.el (display-time-update): Update all mode lines (bug#15999).
5309
5310 * electric.el (electric-indent-mode): Enable by default.
5311 * loadup.el: Preload "electric".
5312
5313 2013-11-29 Bozhidar Batsov <bozhidar@batsov.com>
5314
5315 * emacs-lisp/helpers.el (string-empty-p): New function.
5316 (string-blank-p): New function.
5317
5318 2013-11-29 Andreas Politz <politza@hochschule-trier.de>
5319
5320 * imenu.el (imenu--index-alist): Add missing dot to the docstring
5321 (Bug#14029).
5322
5323 2013-11-29 Andreas Politz <politza@fh-trier.de>
5324 * imenu.el (imenu--subalist-p): Don't error on non-conses and
5325 allow non-lambda lists as functions.
5326 (imenu--in-alist): Don't recurse into non-subalists.
5327 (imenu): Don't pass function itself as an argument (Bug#14029).
5328
5329 2013-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
5330
5331 * progmodes/python.el (python-mode-map): Remove binding for ":".
5332 (python-indent-electric-colon): Remove command.
5333 (python-indent-post-self-insert-function): Integrate the previous code
5334 of python-indent-electric-colon. Make it conditional on
5335 electric-indent-mode.
5336 (python-mode): Add ?: to electric-indent-chars.
5337 Move python-indent-post-self-insert-function to the end of
5338 post-self-insert-hook.
5339
5340 2013-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
5341
5342 * doc-view.el (doc-view-goto-page): Update mode-line.
5343
5344 * vc/vc-dispatcher.el (vc-log-edit): Setup the Summary&Author headers.
5345
5346 2013-11-27 Glenn Morris <rgm@gnu.org>
5347
5348 * international/charprop.el, international/uni-bidi.el:
5349 * international/uni-category.el, international/uni-combining.el:
5350 * international/uni-comment.el, international/uni-decimal.el:
5351 * international/uni-decomposition.el, international/uni-digit.el:
5352 * international/uni-lowercase.el, international/uni-mirrored.el:
5353 * international/uni-name.el, international/uni-numeric.el:
5354 * international/uni-old-name.el, international/uni-titlecase.el:
5355 * international/uni-uppercase.el:
5356 Remove generated files from VCS repository.
5357
5358 2013-11-27 Eli Zaretskii <eliz@gnu.org>
5359
5360 * filenotify.el (file-notify-add-watch): Don't special-case
5361 w32notify when computing the directory to watch.
5362
5363 2013-11-27 Glenn Morris <rgm@gnu.org>
5364
5365 Make bootstrap without generated uni-*.el files possible again.
5366 * loadup.el: Update command-line-args checking for unidata-gen.
5367 Add vc to load-path to allow loading vc-bzr when writing uni-*.el.
5368 * composite.el, international/characters.el:
5369 Handle unicode tables being undefined.
5370
5371 Move ja-dic, quail, leim-list.el from ../leim to a leim subdirectory.
5372 * Makefile.in (setwins_for_subdirs): Skip leim/ directory.
5373 (compile-main): Depend on leim rule.
5374 (leim): New rule.
5375 * loadup.el: Move leim-list.el to leim/ subdirectory.
5376 * startup.el (normal-top-level): No more leim directory.
5377 * international/ja-dic-cnv.el (skkdic-convert):
5378 Disable version-control and autoloads in output files.
5379 * international/titdic-cnv.el (titdic-convert, miscdic-convert):
5380 Disable version-control and autoloads in output files.
5381 * leim/quail: Move here from ../leim.
5382 * leim/quail/hangul.el (hangul-input-method-activate):
5383 Add autoload cookie.
5384 (generated-autoload-load-name): Set file-local value.
5385 * leim/quail/uni-input.el (ucs-input-activate): Add autoload cookie.
5386 (generated-autoload-load-name): Set file-local value.
5387
5388 2013-11-26 Kenjiro NAKAYAMA <knakayam@redhat.com>
5389
5390 * net/eww.el (eww-bookmark-browse): Use 'eww-browse-url'.
5391 (eww-add-bookmark): Ask confirmation when add to bookmarks.
5392 (eww-quit): Ask confirmation before quitting eww.
5393
5394 2013-11-26 Eli Zaretskii <eliz@gnu.org>
5395
5396 * vc/vc.el (vc-diff-internal): Use *-dos coding-system when
5397 reading output from Diff on MS-Windows and MS-DOS.
5398
5399 2013-11-26 Bozhidar Batsov <bozhidar@batsov.com>
5400
5401 * emacs-lisp/helpers.el (string-reverse): New function.
5402
5403 2013-11-26 Michael Albinus <michael.albinus@gmx.de>
5404
5405 * net/tramp.el (tramp-file-name-regexp-unified): Support IPv6 host
5406 names on MS Windows, like "/[::1]:".
5407
5408 * net/tramp-sh.el (tramp-sh-handle-insert-directory): Accept nil
5409 SWITCHES.
5410
5411 2013-11-26 Glenn Morris <rgm@gnu.org>
5412
5413 * progmodes/python.el (python-indent-guess-indent-offset):
5414 Avoid corner-case error. (Bug#15975)
5415
5416 Preload leim-list.el. (Bug#4789)
5417 * loadup.el: Load leim-list.el when found.
5418 * startup.el (normal-top-level): Skip re-loading leim/leim-list.el.
5419
5420 2013-11-25 Bozhidar Batsov <bozhidar@batsov.com>
5421
5422 * emacs-lisp/bytecomp.el (byte-compile-form): Fix a typo.
5423
5424 * emacs-lisp/helpers.el (string-join): New function.
5425
5426 2013-11-25 Sebastian Wiesner <lunaryorn@gmail.com> (tiny change)
5427
5428 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
5429 Mark as obsolete and replace it with a symbol property.
5430 (byte-compile-form): Use new 'interactive-only property.
5431 * comint.el, files.el, replace.el, simple.el:
5432 Apply new 'interactive-only properly.
5433
5434 2013-11-25 Martin Rudalics <rudalics@gmx.at>
5435
5436 * window.el (display-buffer-at-bottom): Make sure that
5437 split-window-sensibly creates the new window on bottom
5438 (Bug#15961).
5439
5440 2013-11-23 David Kastrup <dak@gnu.org>
5441
5442 * vc/smerge-mode.el (smerge-ediff): Choose default buffer names based
5443 on the conflict markers when available.
5444 (smerge--get-marker): New function.
5445 (smerge-end-re, smerge-base-re): Add subgroup.
5446
5447 2013-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
5448
5449 * frame.el (handle-focus-in, handle-focus-out): Add missing
5450 interactive spec.
5451
5452 2013-11-25 Michael Albinus <michael.albinus@gmx.de>
5453
5454 * net/tramp-cmds.el (tramp-cleanup-connection): Clean up
5455 `tramp-current-connection' only when KEEP-PASSWORD is non-nil.
5456
5457 2013-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
5458
5459 * play/gomoku.el: Don't use intangible property. Use lexical-binding.
5460 (gomoku--last-pos): New var.
5461 (gomoku--intangible-chars): New const.
5462 (gomoku--intangible): New function.
5463 (gomoku-mode): Use it. Derive from special-mode.
5464 (gomoku-move-up): Adjust line count.
5465 (gomoku-click, gomoku-point-y, gomoku-point-square, gomoku-goto-xy)
5466 (gomoku-plot-square, gomoku-init-display, gomoku-cross-qtuple):
5467 Simplify accordingly.
5468
5469 * frame.el (handle-focus-in, handle-focus-out): Move from frame.c.
5470 Remove blink-cursor code.
5471 (blink-cursor-timer-function, blink-cursor-suspend):
5472 Don't special-case GUIs.
5473 (blink-cursor-mode): Use focus-in/out-hook.
5474
5475 2013-11-25 Dmitry Gutov <dgutov@yandex.ru>
5476
5477 * vc/vc-git.el (vc-git-annotate-extract-revision-at-line): Make it
5478 work when annotation is invisible (Bug#13886).
5479
5480 2013-11-24 Simon Schubert <2@0x2c.org> (tiny change)
5481
5482 * json.el (json-alist-p): Only return non-nil if the alist has
5483 simple keys (Bug#13518).
5484
5485 2013-11-24 Mihir Rege <mihirrege@gmail.com> (tiny change)
5486
5487 * progmodes/js.el (js--ctrl-statement-indentation): Fix indent
5488 when control-statement is the first statement in a buffer (Bug#15956).
5489
5490 2013-11-24 Dmitry Gutov <dgutov@yandex.ru>
5491
5492 * imenu.el (imenu-generic-skip-comments-and-strings):
5493 New option (Bug#15560).
5494 (imenu--generic-function): Use it.
5495
5496 2013-11-24 Jorgen Schaefer <contact@jorgenschaefer.de>
5497
5498 * minibuffer.el (completion--in-region-1): Scroll the correct window.
5499 (Bug#13898)
5500
5501 2013-11-24 Bozhidar Batsov <bozhidar@batsov.com>
5502
5503 * emacs-lisp/helpers.el: Add some string helpers.
5504 (string-trim-left): Removes leading whitespace.
5505 (string-trim-right): Removes trailing whitespace.
5506 (string-trim): Removes leading and trailing whitespace.
5507
5508 * subr.el (string-suffix-p): New function.
5509
5510 2013-11-23 Glenn Morris <rgm@gnu.org>
5511
5512 * progmodes/python.el (python-shell-send-file):
5513 Add option to delete file when done. (Bug#15647)
5514 (python-shell-send-string, python-shell-send-region): Use it.
5515
5516 2013-11-23 Ivan Shmakov <ivan@siamics.net> (tiny change)
5517
5518 * vc/diff-mode.el (diff-mode): Only allow diff-default-read-only
5519 to set buffer-read-only to t, never to nil. (Bug#15938)
5520
5521 * textmodes/tex-mode.el (latex-noindent-environments):
5522 Add safe-local-variable property. (Bug#15936)
5523
5524 2013-11-23 Glenn Morris <rgm@gnu.org>
5525
5526 * textmodes/enriched.el (enriched-mode): Doc fix.
5527 * emacs-lisp/authors.el (authors-renamed-files-alist):
5528 Add enriched.doc -> enriched.txt.
5529
5530 * Makefile.in (emacs): Empty EMACSLOADPATH rather than unsetting.
5531
5532 2013-11-22 Leo Liu <sdl.web@gmail.com>
5533
5534 * progmodes/octave.el (inferior-octave-startup): Spit out error
5535 message.
5536
5537 2013-11-22 Bozhidar Batsov <bozhidar@batsov.com>
5538
5539 * progmodes/ruby-mode.el (ruby-custom-encoding-magic-comment-template):
5540 Improve docstring.
5541 Add :version.
5542 (ruby-encoding-magic-comment-style): Add :version.
5543
5544 2013-11-22 Leo Liu <sdl.web@gmail.com>
5545
5546 * progmodes/octave.el (octave-operator-regexp): Exclude newline.
5547 (Bug#15076)
5548 (octave-help-mode): Adapt to change to help-mode-finish to use
5549 derived-mode-p on 2013-09-17.
5550 (inferior-octave-prompt): Also match octave-gui.
5551 (octave-kill-process): Don't ask twice. (Bug#10564)
5552
5553 2013-11-22 Leo Liu <sdl.web@gmail.com>
5554
5555 * progmodes/octave.el (inferior-octave-process-live-p): New helper.
5556 (inferior-octave-startup, inferior-octave-check-process)
5557 (inferior-octave-track-window-width-change)
5558 (octave-completion-at-point, octave-eldoc-function): Use it.
5559 (octave-kill-process): Provide confirmation. (Bug#10564)
5560
5561 2013-11-21 Leo Liu <sdl.web@gmail.com>
5562
5563 * progmodes/octave.el (octave-mode, inferior-octave-mode):
5564 Fix obsolete variable comment-use-global-state.
5565
5566 2013-11-21 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
5567
5568 * progmodes/octave.el (octave-mode-map, octave-mode-menu):
5569 Add `octave-source-file'.
5570 (octave-source-file): New function. (Bug#15935)
5571
5572 2013-11-21 Kenjiro Nakayama <nakayamakenjiro@gmail.com>
5573
5574 * net/eww.el (eww-local-regex): New variable.
5575 (eww): Use it to detect localhost and similar.
5576
5577 2013-11-21 Leo Liu <sdl.web@gmail.com>
5578
5579 Add completion for command `ag'.
5580 * pcmpl-x.el (pcmpl-x-ag-options): New variable.
5581 (pcomplete/ag): New function.
5582 (pcmpl-x-ag-options): New function. Handle `[no]' in long options.
5583
5584 2013-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
5585
5586 * emacs-lisp/byte-run.el (eval-when-compile): Fix edebug spec
5587 (bug#14646).
5588 (make-obsolete): Remove interactive spec.
5589
5590 2013-11-21 Glenn Morris <rgm@gnu.org>
5591
5592 * startup.el (command-line-1): Use path-separator with -L.
5593
5594 2013-11-20 Teodor Zlatanov <tzz@lifelogs.com>
5595
5596 * emacs-lisp/package.el (describe-package-1): Add package archive
5597 to shown fields.
5598
5599 2013-11-20 Bozhidar Batsov <bozhidar@batsov.com>
5600
5601 * progmodes/ruby-mode.el (ruby-custom-encoding-magic-comment-template):
5602 Change default to "# encoding: %s" to differentiate it from the
5603 default Ruby encoding comment template.
5604
5605 2013-11-20 era eriksson <era+emacsbugs@iki.fi>
5606
5607 * ses.el (ses-mode): Doc fix. (Bug#14748)
5608
5609 2013-11-20 Leo Liu <sdl.web@gmail.com>
5610
5611 * window.el (display-buffer-alist): Doc fix. (Bug#13594)
5612
5613 2013-11-19 Dan Nicolaescu <dann@gnu.org>
5614
5615 * vc/vc-git.el (vc-git-dir-extra-headers): Add headers
5616 when rebase or bisect are in progress.
5617
5618 2013-11-19 Xue Fuqiao <xfq.free@gmail.com>
5619
5620 * filenotify.el (file-notify-add-watch): Doc fix.
5621
5622 2013-11-19 Leo Liu <sdl.web@gmail.com>
5623
5624 * obsolete/rcompile.el: Mark obsolete.
5625
5626 * progmodes/compile.el (compilation-start)
5627 (compilation-goto-locus, compilation-find-file):
5628 Pass no-display-ok and handle nil value from display-buffer.
5629 (Bug#13594)
5630
5631 * window.el (display-buffer-alist, display-buffer): Document the
5632 new parameter no-display-ok. Return either a window or nil
5633 but never a non-window value.
5634
5635 2013-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
5636
5637 * electric.el (electric-indent-mode-map): Remove.
5638 (electric-indent-mode): Change the global-map instead (bug#15915).
5639
5640 * textmodes/text-mode.el (paragraph-indent-minor-mode):
5641 Use add-function.
5642
5643 2013-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
5644
5645 * emacs-lisp/nadvice.el (remove-function): Align with
5646 add-function's behavior.
5647
5648 * progmodes/gdb-mi.el: Avoid backtracking in regexp matcher.
5649 (gdb--string-regexp): New constant.
5650 (gdb-tooltip-print, gdb-var-evaluate-expression-handler)
5651 (gdbmi-bnf-stream-record, gdb-jsonify-buffer): Use it.
5652 (gdb-source-file-regexp, gdb-prompt-name-regexp): Use it and change
5653 submatch 1.
5654 (gdb-get-source-file-list, gdb-get-prompt, gdb-get-source-file):
5655 Adjust use accordingly.
5656 (gdb-breakpoints-list-handler-custom): Pre-build the y/n string.
5657
5658 2013-11-17 Adam Sokolnicki <adam.sokolnicki@gmail.com> (tiny change)
5659
5660 * progmodes/ruby-mode.el (ruby-toggle-block): Don't stop at
5661 interpolation curlies (Bug#15914).
5662
5663 2013-11-17 Jay Belanger <jay.p.belanger@gmail.com>
5664
5665 * calc/calc.el (calc-context-sensitive-enter): New variable.
5666 (calc-enter): Use `calc-context-sensitive-enter'.
5667
5668 2013-11-16 Teodor Zlatanov <tzz@lifelogs.com>
5669
5670 * progmodes/cfengine.el: Version bump.
5671 (cfengine-cf-promises): New defcustom to locate cf-promises.
5672 (cfengine3-vartypes): Add new "data" type.
5673 (cfengine3--current-word): New function to get current name-like
5674 word or its bounds.
5675 (cfengine3--current-function): New function to look up a CFEngine
5676 function's definition.
5677 (cfengine3-format-function-docstring): New function.
5678 (cfengine3-make-syntax-cache): New function.
5679 (cfengine3-documentation-function): New function: ElDoc glue.
5680 (cfengine3-completion-function): New function: completion glue.
5681 (cfengine3-mode): Set `compile-command',
5682 `eldoc-documentation-function', and add to
5683 `completion-at-point-functions'.
5684
5685 2013-11-16 Michael Albinus <michael.albinus@gmx.de>
5686
5687 * net/tramp-cmds.el (tramp-cleanup-connection): Clean up
5688 `tramp-current-connection'.
5689
5690 2013-11-15 Dmitry Gutov <dgutov@yandex.ru>
5691
5692 * progmodes/ruby-mode.el (ruby-font-lock-keywords): End regexp for
5693 nil/self/true/false with "end of symbol".
5694
5695 2013-11-15 Bozhidar Batsov <bozhidar@batsov.com>
5696
5697 * subr.el (version-regexp-alist): Fix a typo.
5698
5699 2013-11-15 Michael Albinus <michael.albinus@gmx.de>
5700
5701 * net/tramp-sh.el (tramp-remote-process-environment): Set "LC_ALL" to
5702 "en_US.utf8" and "LC_CTYPE" to "".
5703 (tramp-maybe-open-connection): Set "LC_ALL" to "en_US.utf8".
5704 (tramp-sh-handle-insert-directory): Don't set "LC_ALL" and "LC_CTYPE".
5705
5706 2013-11-15 Leo Liu <sdl.web@gmail.com>
5707
5708 * loadhist.el (read-feature): Get rid of fake feature nil. (Bug#15889)
5709
5710 2013-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
5711
5712 * progmodes/gud.el (ctl-x-map):
5713 Remove C-x SPC binding. (Bug#12342)
5714 (gud-jdb-find-source-using-classpath): Remove ((lambda (..)..)..).
5715
5716 2013-11-14 Bozhidar Batsov <bozhidar@batsov.com>
5717
5718 * subr.el (version-regexp-alist):
5719 Recognize hg, svn and darcs versions as snapshot versions.
5720
5721 * progmodes/ruby-mode.el (ruby--detect-encoding): Make aware of
5722 'always-utf8 value of `ruby-insert-encoding-magic-comment'.
5723 (ruby--encoding-comment-required-p): Extract from
5724 `ruby-mode-set-encoding'.
5725 (ruby-mode-set-encoding): Add the ability to always insert an
5726 utf-8 encoding comment. Fix and simplify coding comment update
5727 logic.
5728
5729 2013-11-14 Michael Albinus <michael.albinus@gmx.de>
5730
5731 * net/tramp-gvfs.el (top): Run init code only when
5732 `tramp-gvfs-enabled' is not nil.
5733 (tramp-gvfs-enabled): Check also :system bus.
5734
5735 2013-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
5736
5737 Sync with upstream verilog-mode revision 78e66ba.
5738 * progmodes/verilog-mode.el (verilog-end-of-defun)
5739 (verilog-type-completion, verilog-get-list): Remove unused funcs.
5740 (verilog-get-end-of-defun): Remove unused argument.
5741 (verilog-comment-depth): Remove unused local `e'.
5742 (verilog-read-decls, verilog-read-sub-decls, verilog-read-instants):
5743 Don't pass arg to verilog-get-end-of-defun.
5744
5745 2013-11-14 Glenn Morris <rgm@gnu.org>
5746
5747 * obsolete/assoc.el (aget): Prefix dynamic variable.
5748
5749 * allout-widgets.el (allout-widgets): No need to autoload defgroup.
5750
5751 2013-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
5752
5753 * widget.el, hfy-cmap.el: Remove bogus package version number.
5754
5755 2013-11-13 Glenn Morris <rgm@gnu.org>
5756
5757 * replace.el (replace-eval-replacement):
5758 Try to give more helpful error message. (Bug#15836)
5759
5760 * arc-mode.el (archive-7z-extract, archive-7z-expunge)
5761 (archive-7z-update): Avoid custom type mismatches.
5762
5763 * vc/vc.el (vc-diff-knows-L): Remove; unused since 2007-10-10.
5764
5765 2013-11-13 Michael Albinus <michael.albinus@gmx.de>
5766
5767 * net/tramp.el (tramp-remote-file-name-spec-regexp): An IPv6
5768 address can be empty.
5769
5770 * net/tramp-gvfs.el (tramp-gvfs-handle-insert-directory):
5771 Accept nil SWITCHES.
5772 (tramp-gvfs-handle-write-region): Implement APPEND.
5773
5774 2013-11-12 Dmitry Gutov <dgutov@yandex.ru>
5775
5776 * progmodes/ruby-mode.el (ruby-smie-grammar): Disambiguate between
5777 binary "|" operator and closing block args delimiter.
5778 Remove FIXME comment referring to Ruby 1.8-only syntax.
5779 (ruby-smie--implicit-semi-p): Not after "|" operator.
5780 (ruby-smie--closing-pipe-p): New function.
5781 (ruby-smie--forward-token, ruby-smie--backward-token): Use it.
5782 (ruby-smie-rules): Indent after "|".
5783
5784 2013-11-12 Glenn Morris <rgm@gnu.org>
5785
5786 * ps-print.el (ps-face-attribute-list):
5787 Handle anonymous faces. (Bug#15827)
5788
5789 2013-11-12 Martin Rudalics <rudalics@gmx.at>
5790
5791 * window.el (display-buffer-other-frame): Fix doc-string.
5792 (Bug#15868)
5793
5794 2013-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
5795
5796 * subr.el (force-mode-line-update): Delete, move to buffer.c.
5797
5798 2013-11-11 Michael Albinus <michael.albinus@gmx.de>
5799
5800 * net/tramp-sh.el (tramp-do-copy-or-rename-file-via-buffer)
5801 (tramp-sh-handle-file-local-copy): Don't write a message when
5802 saving temporary files.
5803
5804 * net/tramp-smb.el (tramp-smb-handle-copy-directory): Fix bug when
5805 both directories are remote.
5806 (tramp-smb-handle-directory-files): Do not return double entries.
5807 Do not expand full file names.
5808 (tramp-smb-handle-insert-directory): Accept nil SWITCHES.
5809 (tramp-smb-handle-write-region): Implement APPEND.
5810 (tramp-smb-get-stat-capability): Fix a stupid bug.
5811
5812 2013-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
5813
5814 * bindings.el (ctl-x-map): Bind C-x SPC to rectangle-mark-mode.
5815
5816 2013-11-11 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
5817
5818 * emacs-lisp/cconv.el (cconv-convert): Print warning instead of
5819 throwing error over malformed let/let* (bug#15814).
5820
5821 2013-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
5822
5823 * iswitchb.el (iswitchb-mode): Mark obsolete.
5824
5825 2013-11-11 Glenn Morris <rgm@gnu.org>
5826
5827 * international/uni-bidi.el, international/uni-category.el:
5828 * international/uni-name.el, international/uni-numeric.el:
5829 Regenerate for Unicode 6.3.0.
5830
5831 2013-11-10 Michael Albinus <michael.albinus@gmx.de>
5832
5833 * net/tramp.el (tramp-methods):
5834 * net/tramp-sh.el (tramp-compute-multi-hops): Revert change of
5835 2013-10-29 (2013-10-29T02:50:24Z!dancol@dancol.org).
5836
5837 2013-11-09 Andreas Schwab <schwab@linux-m68k.org>
5838
5839 * progmodes/sh-script.el (sh-font-lock-keywords-var):
5840 Force highlighting text after Summary keyword in doc face for rpm.
5841
5842 2013-11-09 Dmitry Gutov <dgutov@yandex.ru>
5843
5844 * textmodes/ispell.el (ispell-lookup-words): When `look' is not
5845 available and the word has no wildcards, append one to the grep pattern.
5846 http://lists.gnu.org/archive/html/emacs-devel/2013-11/msg00258.html
5847 (ispell-complete-word): Call `ispell-lookup-words' with the value
5848 independent of `ispell-look-p'.
5849
5850 2013-11-08 Dmitry Gutov <dgutov@yandex.ru>
5851
5852 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p):
5853 Not after "||".
5854 (ruby-smie-rules): Indent non-hanging "begin" blocks as part of
5855 their parent.
5856
5857 2013-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
5858
5859 * progmodes/ruby-mode.el: Don't require cl any more. Use pcase instead.
5860 (ruby-font-lock-keywords): Use backquote.
5861
5862 2013-11-08 Dmitry Gutov <dgutov@yandex.ru>
5863
5864 * progmodes/ruby-mode.el (ruby-smie--forward-token)
5865 (ruby-smie--backward-token): Only consider full-string matches.
5866
5867 2013-11-08 Jan Djärv <jan.h.d@swipnet.se>
5868
5869 * faces.el (describe-face): Add distant-foreground.
5870
5871 2013-11-08 Bozhidar Batsov <bozhidar@batsov.com>
5872
5873 * progmodes/ruby-mode.el: Improve encoding comment handling.
5874 (ruby-encoding-magic-comment-style): New option.
5875 (ruby-custom-encoding-magic-comment-template): New option.
5876 (ruby--insert-coding-comment, ruby--detect-encoding):
5877 New functions extracted from `ruby-mode-set-encoding'.
5878 (ruby-mode-set-encoding): Use `ruby-encoding-magic-comment-style'
5879 to control the style of the auto-inserted encoding comment.
5880
5881 2013-11-08 Dmitry Gutov <dgutov@yandex.ru>
5882
5883 * progmodes/ruby-mode.el (ruby-smie--indent-to-stmt):
5884 Use `smie-backward-sexp' with token argument.
5885
5886 2013-11-08 Michael Albinus <michael.albinus@gmx.de>
5887
5888 * net/tramp-sh.el (tramp-set-remote-path, tramp-get-ls-command):
5889 Remove instrumentation code.
5890
5891 2013-11-08 Glenn Morris <rgm@gnu.org>
5892
5893 * progmodes/autoconf.el (autoconf-mode):
5894 Tweak comment-start-skip. (Bug#15822)
5895
5896 2013-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
5897
5898 * progmodes/sh-script.el (sh-smie--sh-keyword-in-p): Don't inf-loop
5899 at bobp (bug#15826).
5900 (sh-smie--sh-keyword-in-p): Recognize keywords at bobp.
5901
5902 2013-11-08 Darren Hoo <darren.hoo@gmail.com>
5903
5904 * man.el (Man-start-calling): New macro, extracted from
5905 Man-getpage-in-background.
5906 (Man-getpage-in-background): Use it.
5907 (Man-update-manpage): New command.
5908 (Man-mode-map): Bind it.
5909
5910 2013-11-08 Dmitry Gutov <dgutov@yandex.ru>
5911
5912 * progmodes/ruby-mode.el (ruby-smie-grammar): Improve precedences
5913 of "and", "or", "&&" and "||".
5914 (ruby-smie--args-separator-p): Prohibit keyword "do" as the first
5915 argument. Prohibit opening curly brace because it could only be a
5916 block opener in that position.
5917 (ruby-smie--forward-token, ruby-smie--backward-token):
5918 Separate "|" from "&" or "*" going after it. That can happen in block
5919 arguments.
5920 (ruby-smie--indent-to-stmt): New function, seeks the end of
5921 previous statement or beginning of buffer.
5922 (ruby-smie-rules): Use it.
5923 (ruby-smie-rules): Check if there's a ":" before a curly block
5924 opener candidate; if there is, it's a hash.
5925
5926 2013-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
5927
5928 * emacs-lisp/cl-macs.el (cl-symbol-macrolet): Use macroexp-progn.
5929 (cl--block-wrapper): Fix last accidental change.
5930
5931 2013-11-07 Michael Albinus <michael.albinus@gmx.de>
5932
5933 * net/tramp-sh.el (tramp-set-remote-path, tramp-get-ls-command):
5934 Instrument, in order to hunt failure on hydra.
5935
5936 2013-11-05 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
5937
5938 * emacs-lisp/cl-macs.el (cl-symbol-macrolet): Print warning for
5939 malformed bindings form (bug#15814).
5940
5941 2013-11-07 Dmitry Gutov <dgutov@yandex.ru>
5942
5943 * progmodes/ruby-mode.el (ruby-smie-grammar): Lower priority of
5944 "." compared to " @ ". This incidentally fixes some indentation
5945 examples with "do".
5946 (ruby-smie--implicit-semi-p): No implicit semi after "^", "and" or "or".
5947 (ruby-smie-grammar): New tokens: "and" and "or".
5948 (ruby-smie--args-separator-p): Fix the check for tokens at POS.
5949 Exclude "and" and "or". Remove "do" in order to work around token
5950 priorities.
5951 (ruby-smie-rules): Add all infix tokens. Handle the case of
5952 beginning-of-buffer.
5953
5954 2013-11-06 Glenn Morris <rgm@gnu.org>
5955
5956 * Makefile.in (setwins_almost, setwins_for_subdirs):
5957 Avoid accidental matches.
5958
5959 2013-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
5960
5961 * menu-bar.el (popup-menu): Use key-binding.
5962
5963 2013-11-06 Eli Zaretskii <eliz@gnu.org>
5964
5965 * menu-bar.el (popup-menu, menu-bar-open): When displaying TTY
5966 menus, support also the menus produced by minor modes.
5967 (Bug#15817)
5968
5969 2013-11-06 Leo Liu <sdl.web@gmail.com>
5970
5971 * thingatpt.el (thing-at-point-looking-at): Add optional arg
5972 DISTANCE to bound the search. All uses changed. (Bug#15808)
5973
5974 2013-11-06 Glenn Morris <rgm@gnu.org>
5975
5976 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs): Simplify.
5977 (setwins_almost, setwins_for_subdirs): Don't assume called from srcdir.
5978 (custom-deps, finder-data, autoloads, update-subdirs): No need to cd.
5979
5980 2013-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
5981
5982 * electric.el (electric-indent-just-newline): New command.
5983 (electric-indent-mode-map): New keymap.
5984 (electric-indent-mode, electric-pair-mode, electric-layout-mode):
5985 Re-add :group which weren't redundant.
5986
5987 * electric.el (electric-indent-local-mode): New minor mode.
5988 (electric-indent-functions-without-reindent): New var.
5989 (electric-indent-post-self-insert-function): Use it.
5990 * emacs-lisp/gv.el (buffer-local-value): Add setter.
5991
5992 2013-11-05 Eli Zaretskii <eliz@gnu.org>
5993
5994 * international/quail.el (quail-help): Be more explicit about the
5995 meaning of the labels shown on the keys. (Bug#15800)
5996
5997 * startup.el (normal-top-level): Load the subdirs.el files before
5998 setting the locale environment. (Bug#15805)
5999
6000 2013-11-05 Stefan Monnier <monnier@iro.umontreal.ca>
6001
6002 * vc/vc-rcs.el (vc-rcs-parse): Make `gather' get e, b, and @-holes
6003 via arguments so as to get the right ones (bug#15418).
6004
6005 * net/rcirc.el (rcirc-record-activity): Don't abuse add-to-list.
6006
6007 2013-11-05 Michael Albinus <michael.albinus@gmx.de>
6008
6009 Fix problems found while writing a test suite.
6010
6011 * net/tramp-compat.el (tramp-compat-load): New defun.
6012 * net/tramp.el (tramp-handle-load): Use it.
6013
6014 * net/tramp-sh.el (tramp-sh-handle-add-name-to-file): Handle the case
6015 "(numberp ok-if-already-exists)" correctly.
6016
6017 2013-11-05 Xue Fuqiao <xfq.free@gmail.com>
6018
6019 * international/characters.el (glyphless-char-display-control):
6020 Add usage note.
6021
6022 2013-11-05 Bozhidar Batsov <bozhidar@batsov.com>
6023
6024 * progmodes/python.el (python-mode):
6025 * progmodes/scheme.el (scheme-mode):
6026 * progmodes/prolog.el (prolog-mode):
6027 * progmodes/ruby-mode.el (ruby-mode):
6028 * emacs-lisp/lisp-mode.el (lisp-mode, lisp-interaction-mode)
6029 (emacs-lisp-mode): Remove incorrect and redundant text from docstring.
6030
6031 2013-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
6032
6033 * rect.el (rectangle--highlight-for-redisplay):
6034 * emacs-lisp/smie.el (smie--next-indent-change):
6035 Use buffer-chars-modified-tick.
6036
6037 * emacs-lisp/byte-run.el (defmacro, defun): Set their `indent' property.
6038
6039 * electric.el (electric-indent-post-self-insert-function):
6040 Only delete trailing whitepsace if it is indeed trailing (bug#15767).
6041
6042 2013-11-04 Helmut Eller <eller.helmut@gmail.com>
6043
6044 * emacs-lisp/cl-indent.el (with-compilation-unit): Add rule (bug#15782).
6045
6046 2013-11-04 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
6047
6048 * emacs-lisp/cconv.el (cconv-convert): Check form of let binding
6049 (bug#15786).
6050
6051 2013-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
6052
6053 * emacs-lisp/helpers.el: Move from helpers.el. Use lexical-binding.
6054
6055 * progmodes/python.el: Fix up last change.
6056 (python-shell--save-temp-file): New function.
6057 (python-shell-send-string): Use it. Remove `msg' arg. Don't assume
6058 `string' comes from the current buffer.
6059 (python-shell-send-string-no-output): Remove `msg' arg.
6060 (python--use-fake-loc): New var.
6061 (python-shell-buffer-substring): Obey it. Try to compensate for the
6062 extra coding line added by python-shell--save-temp-file.
6063 (python-shell-send-region): Use python-shell--save-temp-file and
6064 python-shell-send-file directly. Add `nomain' argument.
6065 (python-shell-send-buffer): Use python-shell-send-region.
6066 (python-electric-pair-string-delimiter): New function.
6067 (python-mode): Use it.
6068
6069 2013-11-04 Eli Zaretskii <eliz@gnu.org>
6070
6071 * startup.el (normal-top-level): Move setting eol-mnemonic-unix,
6072 eol-mnemonic-mac, eol-mnemonic-dos, and also setup of the locale
6073 environment and decoding all of the default-directory's to here
6074 from command-line.
6075 (command-line): Decode also argv[0].
6076
6077 * loadup.el: Error out if default-directory is a multibyte string
6078 when we are dumping.
6079
6080 * Makefile.in (emacs): Don't set LC_ALL=C. (Bug#15260)
6081
6082 2013-11-04 Teodor Zlatanov <tzz@lifelogs.com>
6083
6084 * emacs-lisp/package.el (package-menu-mode)
6085 (package-menu--print-info, package-menu--archive-predicate):
6086 Add Archive column to package list.
6087
6088 2013-11-04 Michael Albinus <michael.albinus@gmx.de>
6089
6090 Fix problems found while writing a test suite.
6091
6092 * net/tramp.el (tramp-file-name-regexp-unified): Simplify.
6093 (tramp-file-name-for-operation): Use `tramp-tramp-file-p'.
6094 (tramp-handle-substitute-in-file-name): Let-bind `process-environment'
6095 to nil when running original file name handler. Otherwise,
6096 there are problems with constructs like "$$FOO".
6097
6098 * net/tramp-sh.el (tramp-do-copy-or-rename-file): Use correct prefix
6099 for `localname'.
6100
6101 2013-11-04 Bozhidar Batsov <bozhidar@batsov.com>
6102
6103 * progmodes/ruby-mode.el (ruby-mode): Clean up docstring.
6104
6105 * subr.el (version<, version<=, version=):
6106 Update docstrings with information for snapshot versions.
6107
6108 * helpers.el: New library for misc helper functions.
6109 (hash-table-keys): New function returning a list of hash keys.
6110 (hash-table-values): New function returning a list of hash values.
6111
6112 2013-11-04 Dmitry Gutov <dgutov@yandex.ru>
6113
6114 * progmodes/ruby-mode.el (ruby-smie--forward-token)
6115 (ruby-smie--backward-token): Tokenize heredocs as semicolons.
6116
6117 2013-11-04 Michal Nazarewicz <mina86@mina86.com>
6118
6119 * textmodes/fill.el (fill-single-char-nobreak-p): New function
6120 checking whether point is after a 1-letter word.
6121
6122 2013-11-04 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
6123
6124 * progmodes/cperl-mode.el (cperl-font-lock-fontify-region-function):
6125 Don't infloop when expanding region over `multiline' syntax-type that
6126 begins a line (bug#15778).
6127
6128 2013-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
6129
6130 * rect.el (rectangle-mark-mode): Rename from rectangle-mark.
6131 Make it into a proper minor mode.
6132 (rectangle--region): (implicitly) rename to rectangle-mark-mode.
6133 (rectangle-mark-mode-map): New keymap.
6134 (rectangle--highlight-for-redisplay): Fix some corner cases (bug#15796).
6135
6136 2013-11-04 Glenn Morris <rgm@gnu.org>
6137
6138 * startup.el (command-line-1): Allow `-L :...' to append to load-path.
6139
6140 2013-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
6141
6142 * progmodes/ruby-mode.el (ruby-smie--rule-parent-skip-assign): Remove.
6143 (ruby-smie-rules): Use smie-rule-parent instead.
6144
6145 * emacs-lisp/smie.el (smie-rule-parent): Always call
6146 smie-indent-virtual rather than only for hanging tokens.
6147 (smie--next-indent-change): New helper command.
6148
6149 2013-11-03 Glenn Morris <rgm@gnu.org>
6150
6151 * Makefile.in (abs_srcdir): Remove.
6152 (emacs): Unset EMACSLOADPATH.
6153
6154 2013-11-02 Glenn Morris <rgm@gnu.org>
6155
6156 * Makefile.in (EMACS): Use a relative filename.
6157 (abs_top_builddir): Remove.
6158 (custom-deps, finder-data, autoloads): Use --chdir.
6159
6160 * Makefile.in (abs_lisp): Remove, replace by abs_srcdir.
6161
6162 Use relative filenames in TAGS files.
6163 * Makefile.in (lisptagsfiles1, lisptagsfiles2, lisptagsfiles3)
6164 (lisptagsfiles4, TAGS): Use relative file names.
6165 (TAGS-LISP): Remove.
6166 (maintainer-clean): No more TAGS-LISP file.
6167
6168 * Makefile.in (lisptagsfiles1, lisptagsfiles2, lisptagsfiles3)
6169 (lisptagsfiles4): Use absolute filenames again.
6170 (TAGS, TAGS-LISP): Not everything needs to run in one line.
6171 Remove all *loaddefs files, not just the first. Remove esh-groups.
6172 (maintainer-clean): Delete TAGS, TAGS-LISP.
6173
6174 2013-11-02 Bozhidar Batsov <bozhidar@batsov.com>
6175
6176 * emacs-lisp/package.el (package-version-join):
6177 Recognize snapshot versions.
6178
6179 2013-11-02 Bozhidar Batsov <bozhidar@batsov.com>
6180
6181 * subr.el (version-regexp-alist): Add support for snapshot versions.
6182
6183 2013-11-02 Dmitry Gutov <dgutov@yandex.ru>
6184
6185 * progmodes/ruby-mode.el (ruby-smie--rule-parent-skip-assign):
6186 New function, replacement for `smie-rule-parent' for when we want to
6187 skip over our direct parent if it's an assignment token..
6188 (ruby-smie-rules): Use it.
6189
6190 2013-11-02 Dmitry Gutov <dgutov@yandex.ru>
6191
6192 * progmodes/ruby-mode.el: Use `syntax-propertize-function'
6193 unconditionally. Remove now unnecessary forward declarations.
6194 Remove XEmacs-specific setup.
6195 (ruby-here-doc-end-re, ruby-here-doc-beg-match)
6196 (ruby-font-lock-syntactic-keywords)
6197 (ruby-comment-beg-syntax, ruby-in-here-doc-p)
6198 (ruby-here-doc-find-end, ruby-here-doc-beg-syntax)
6199 (ruby-here-doc-end-syntax): Remove.
6200 (ruby-mode): Don't check whether `syntax-propertize-rules' is
6201 defined as function.
6202
6203 2013-11-02 Bozhidar Batsov <bozhidar@batsov.com>
6204
6205 * progmodes/ruby-mode.el (ruby-mode-variables, ruby-mode): Use `setq-local'.
6206
6207 2013-11-01 Bozhidar Batsov <bozhidar@batsov.com>
6208
6209 * progmodes/ruby-mode.el (ruby-mode-variables): Don't set syntax
6210 table and abbrev table, `define-derived-mode' does that for us
6211 anyway.
6212
6213 2013-11-01 Glenn Morris <rgm@gnu.org>
6214
6215 * Makefile.in: Remove manual mh-e dependencies (writing .elc
6216 files is atomic for some time, so no parallel compilation issues).
6217
6218 2013-11-01 Jan Djärv <jan.h.d@swipnet.se>
6219
6220 * faces.el (face-x-resources): Add :distant-foreground.
6221 (region): Use :distant-foreground for gtk and ns.
6222
6223 2013-11-01 Tassilo Horn <tsdh@gnu.org>
6224
6225 Allow multiple bibliographies when BibLaTeX is used rather than
6226 BibTeX.
6227 * textmodes/reftex-parse.el (reftex-using-biblatex-p): New function.
6228 (reftex-locate-bibliography-files): Us it.
6229
6230 2013-11-01 Claudio Bley <claudio.bley@googlemail.com>
6231
6232 * image.el (image-type-header-regexps): Fix the 'pbm' part to
6233 allow comments in pbm files.
6234
6235 * term/w32-win.el (dynamic-library-alist): Support newer versions
6236 of libjpeg starting with v7: look only for the DLL from the
6237 version against which Emacs was built.
6238 Support versions of libpng beyond 1.4.x.
6239 Support libtiff v4.x.
6240
6241 2013-11-01 Bozhidar Batsov <bozhidar@batsov.com>
6242
6243 * progmodes/ruby-mode.el (ruby-indent-tabs-mode)
6244 (ruby-indent-level, ruby-comment-column, ruby-deep-arglist):
6245 Add property :safe.
6246 (ruby-deep-arglist): Add property :type.
6247
6248 2013-10-31 Glenn Morris <rgm@gnu.org>
6249
6250 * Makefile.in (custom-deps, finder-data): No need to setq the target
6251 variables, we are in the right directory and the defaults work fine.
6252
6253 2013-10-30 Glenn Morris <rgm@gnu.org>
6254
6255 * Makefile.in (autoloads): Do not use abs_lisp.
6256
6257 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
6258 `newline' does not respect `standard-output', so use `princ'.
6259
6260 2013-10-30 Alp Aker <alp.tekin.aker@gmail.com>
6261
6262 Ensure unmarking in buffer menu clears 'S' marks. (Bug#15761)
6263 * buff-menu.el (Buffer-menu--unmark): New function.
6264 (Buffer-menu-unmark, Buffer-menu-backup-unmark): Use it.
6265
6266 2013-10-30 Glenn Morris <rgm@gnu.org>
6267
6268 * Makefile.in (AUTOGENEL): Add org/org-loaddefs.el.
6269
6270 * emacs-lisp/package.el (lm-homepage): Declare.
6271
6272 * eshell/em-ls.el (eshell-ls-directory, eshell-ls-symlink):
6273 Fix doc typos.
6274
6275 * vc/pcvs.el (cvs-status-cvstrees): Autoload to silence compiler.
6276
6277 * Makefile.in (finder-data, autoloads, update-subdirs)
6278 (compile-main, compile-clean, compile-always, bootstrap-clean):
6279 Check return value of cd.
6280 (compile-calc): Remove.
6281
6282 2013-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
6283
6284 * simple.el (copy-region-as-kill): Fix call to region-extract-function.
6285
6286 * emacs-lisp/bytecomp.el (byte-defop-compiler): Add new `2-and' handler.
6287 (byte-compile-and-folded): New function.
6288 (=, <, >, <=, >=): Use it.
6289
6290 * dos-w32.el (minibuffer-history-case-insensitive-variables)
6291 (path-separator, null-device, buffer-file-coding-system)
6292 (lpr-headers-switches): Check system-type before modifying them.
6293 (find-buffer-file-type-coding-system): Mark obsolete.
6294 (w32-find-file-not-found-set-buffer-file-coding-system): Rename from
6295 find-file-not-found-set-buffer-file-coding-system.
6296 (w32-untranslated-filesystem-list, w32-untranslated-canonical-name)
6297 (w32-add-untranslated-filesystem, w32-remove-untranslated-filesystem)
6298 (w32-direct-print-region-use-command-dot-com, w32-untranslated-file-p)
6299 (w32-direct-print-region-helper, w32-direct-print-region-function)
6300 (w32-direct-ps-print-region-function): Rename by adding a "w32-" prefix.
6301 * startup.el (normal-top-level-add-subdirs-to-load-path):
6302 * ps-print.el (ps-print-region-function):
6303 * lpr.el (print-region-function): Use new name.
6304
6305 * subr.el (custom-declare-variable-early): Remove function.
6306 (custom-declare-variable-list): Remove var.
6307 (error, user-error): Remove `while' loop.
6308 (read-quoted-char-radix, read-quoted-char): Move to simple.el.
6309 (user-emacs-directory-warning, locate-user-emacs-file):
6310 Move to files.el.
6311 * simple.el (read-quoted-char-radix, read-quoted-char):
6312 * files.el (user-emacs-directory-warning, locate-user-emacs-file):
6313 Move from subr.el.
6314 * custom.el (custom-declare-variable-list): Don't process
6315 custom-declare-variable-list.
6316
6317 * progmodes/python.el (python-shell-get-buffer): New function.
6318 (python-shell-get-process): Use it.
6319 (python-shell-send-string): Always use utf-8 and add a cookie to tell
6320 Python which encoding was used. Don't split-string since we only care
6321 about the first line. Return the temp-file, if applicable.
6322 (python-shell-send-region): Tell compile.el how to turn locations in
6323 the temp-file into locations in the source buffer.
6324
6325 2013-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
6326
6327 * subr.el (undefined): Add missing behavior from the C code for
6328 unbound keys.
6329
6330 * rect.el: Use lexical-binding. Add new rectangular region support.
6331 (rectangle-mark): New command.
6332 (rectangle--region): New var.
6333 (deactivate-mark-hook): Reset rectangle--region.
6334 (rectangle--extract-region, rectangle--insert-for-yank)
6335 (rectangle--highlight-for-redisplay)
6336 (rectangle--unhighlight-for-redisplay): New functions.
6337 (region-extract-function, redisplay-unhighlight-region-function)
6338 (redisplay-highlight-region-function): Use them to handle
6339 rectangular region.
6340 * simple.el (region-extract-function): New var.
6341 (delete-backward-char, delete-forward-char, deactivate-mark): Use it.
6342 (kill-new, kill-append): Remove obsolete `yank-handler' argument.
6343 (kill-region): Replace obsolete `yank-handler' arg with `region'.
6344 (copy-region-as-kill, kill-ring-save): Add `region' argument.
6345 (redisplay-unhighlight-region-function)
6346 (redisplay-highlight-region-function): New vars.
6347 (redisplay--update-region-highlight): New function.
6348 (pre-redisplay-function): Use it.
6349 (exchange-point-and-mark): Don't deactivate the mark before
6350 reactivate-it anyway.
6351 * comint.el (comint-kill-region): Remove yank-handler argument.
6352 * delsel.el (delete-backward-char, backward-delete-char-untabify)
6353 (delete-char): Remove property, since it's now part of their
6354 default behavior.
6355 (self-insert-iso): Remove property since this command doesn't exist.
6356
6357 * emacs-lisp/package.el (package--download-one-archive)
6358 (describe-package-1): Don't query the user about final newline.
6359
6360 2013-10-29 Daniel Colascione <dancol@dancol.org>
6361
6362 * net/tramp.el (tramp-methods): Document new functionality.
6363 * net/tramp-sh.el (tramp-compute-multi-hops): Punt to
6364 tramp-hostname-checker if method provides one instead of scanning
6365 argument list for "%h" to decide hostname acceptability.
6366
6367 2013-10-28 Michael Albinus <michael.albinus@gmx.de>
6368
6369 * net/tramp-sh.el (tramp-sh-handle-copy-directory):
6370 * net/tramp-smb.el (tramp-smb-handle-copy-directory):
6371 Handle COPY-CONTENTS. (Bug#15737)
6372
6373 2013-10-28 Daiki Ueno <ueno@gnu.org>
6374
6375 * epa-file.el
6376 (epa-file-cache-passphrase-for-symmetric-encryption):
6377 Document that this option has no effect with GnuPG 2.0 (bug#15552).
6378
6379 2013-10-27 Xue Fuqiao <xfq.free@gmail.com>
6380
6381 * image.el (defimage, image-load-path): Doc fixes.
6382
6383 2013-10-27 Alan Mackenzie <acm@muc.de>
6384
6385 Indent statements in macros following "##" correctly.
6386 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
6387 Modify the "#" arm of a cond form to handle "#" and "##" operators.
6388
6389 2013-10-27 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
6390
6391 * linum.el (linum-update-window): Fix boundary test (bug#13446).
6392
6393 2013-10-27 Dmitry Gutov <dgutov@yandex.ru>
6394
6395 * progmodes/ruby-mode.el (ruby-smie--bosp): Anything that goes
6396 after `=' is probably a new expression.
6397
6398 2013-10-27 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
6399
6400 * man.el (man-imenu-title): New option.
6401 (Man-mode-map): Add menu. (Bug#15722)
6402 (Man-mode): Add imenu to menu.
6403
6404 2013-10-26 Dmitry Gutov <dgutov@yandex.ru>
6405
6406 * progmodes/ruby-mode.el (ruby-smie--args-separator-p): Be more
6407 specific in what the first arg can be: a non-keyword word,
6408 string/regexp/percent literal opener, opening paren, or unary
6409 operator followed directly by word.
6410
6411 2013-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
6412
6413 * progmodes/prolog.el: Remove old indent; use post-self-insert-hook.
6414 (prolog-align-comments-flag, prolog-indent-mline-comments-flag)
6415 (prolog-object-end-to-0-flag, prolog-electric-newline-flag)
6416 (prolog-electric-tab-flag, prolog-use-prolog-tokenizer-flag):
6417 Remove vars, they do not apply any more.
6418 (prolog-mode-abbrev-table): Remove redundant declaration.
6419 (prolog-upper-case-string, prolog-lower-case-string): Remove.
6420 (prolog-use-smie): Remove.
6421 (prolog-smie-rules): Add indentation rule for the if-then-else layout
6422 supported by prolog-electric-if-then-else-flag.
6423 (prolog-mode-variables, prolog-menu): Use setq-local.
6424 (prolog-mode-keybindings-edit): Don't rebind M-C-p and M-C-n.
6425 Remove binding to `Backspace' since this key doesn't exist anyway.
6426 Remove bindings for electric self-inserting keys.
6427 (prog-mode): Assume it's defined.
6428 (prolog-post-self-insert): New function.
6429 (prolog-mode): Use it.
6430 (prolog-indent-line, prolog-indent-level)
6431 (prolog-find-indent-of-matching-paren)
6432 (prolog-indentation-level-of-line, prolog-goto-comment-column)
6433 (prolog-paren-is-the-first-on-line-p, prolog-region-paren-balance)
6434 (prolog-goto-next-paren, prolog-in-string-or-comment)
6435 (prolog-tokenize, prolog-inside-mline-comment)
6436 (prolog-find-start-of-mline-comment): Remove functions.
6437 (prolog-find-unmatched-paren, prolog-clause-end)
6438 (prolog-guess-fill-prefix, prolog-get-predspec): Use syntax-ppss.
6439 (prolog-electric--if-then-else): Rename from
6440 prolog-insert-spaces-after-paren; use prolog-electric-if-then-else-flag.
6441 (prolog-tokenize-searchkey): Remove const.
6442 (prolog-clause-info): Use forward-sexp.
6443 (prolog-forward-list, prolog-backward-list, prolog-electric-delete)
6444 (prolog-electric-if-then-else): Remove commands.
6445 (prolog-electric--colon): Rename from prolog-electric-colon; adapt it
6446 for use in post-self-insert-hook.
6447 (prolog-electric--dash): Rename from prolog-electric-dash; adapt it
6448 for use in post-self-insert-hook.
6449 (prolog-electric--dot): Rename from prolog-electric-dot; adapt it
6450 for use in post-self-insert-hook.
6451 (prolog-electric--underscore): Rename from prolog-electric--underscore;
6452 adapt it for use in post-self-insert-hook.
6453
6454 2013-10-25 Michael Albinus <michael.albinus@gmx.de>
6455
6456 * emacs-lisp/ert.el (ert-run-tests-interactively):
6457 Use `completing-read'. (Bug#9756)
6458
6459 2013-10-25 Eli Zaretskii <eliz@gnu.org>
6460
6461 * simple.el (line-move): Call line-move-1 instead of
6462 line-move-visual when the current window hscroll is zero, but
6463 temporary-goal-column indicates we will need to hscroll as result
6464 of the movement. (Bug#15712)
6465
6466 2013-10-25 Dmitry Gutov <dgutov@yandex.ru>
6467
6468 * progmodes/ruby-mode.el (ruby-mode-menu): Use proper
6469 capitalization. Use :visible instead of :active.
6470 Fix `ruby-indent-exp' reference. Add menu items for the generic
6471 commands that are used with SMIE.
6472 (ruby-do-end-to-brace): Insert space after `{'.
6473
6474 2013-10-25 John Anthony <john@jo.hnanthony.com>
6475
6476 * progmodes/ruby-mode.el (ruby-mode-menu): Add a menu. (Bug#15600)
6477
6478 * progmodes/inf-lisp.el (inferior-lisp-menu): Add a menu. (Bug#15599)
6479
6480 2013-10-25 Glenn Morris <rgm@gnu.org>
6481
6482 * vc/vc.el (vc-print-log): Don't use a working revision unless
6483 one was explicitly specified. (Bug#15322)
6484
6485 2013-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
6486
6487 * subr.el (add-to-list): Preserve return value in compiler-macro
6488 (bug#15692).
6489
6490 2013-10-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
6491
6492 * progmodes/octave.el (octave-lookfor): Handle empty lookfor
6493 result. Ask user to retry using '-all' flag. (Bug#15701)
6494
6495 2013-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
6496
6497 * emacs-lisp/smie.el: New smie-config system.
6498 (smie-config): New defcustom.
6499 (smie-edebug, smie-config-show-indent, smie-config-set-indent)
6500 (smie-config-guess, smie-config-save): New commands.
6501 (smie-config--mode-local, smie-config--buffer-local)
6502 (smie-config--trace, smie-config--modefuns): New vars.
6503 (smie-config--advice, smie-config--mode-hook)
6504 (smie-config--setter, smie-config-local, smie-config--get-trace)
6505 (smie-config--guess-value, smie-config--guess): New functions.
6506 (smie-indent-forward-token, smie-indent-backward-token): Don't copy
6507 text properties. Treat "string fence" syntax like string syntax.
6508
6509 * progmodes/sh-script.el (sh-use-smie): Change default.
6510 (sh-smie-sh-rules, sh-smie-rc-rules): Obey legacy sh-indent-* vars.
6511 (sh-var-value): Simplify by CSE.
6512 (sh-show-indent, sh-set-indent, sh-learn-line-indent)
6513 (sh-learn-buffer-indent): Redirect to their SMIE equivalent when SMIE
6514 is used.
6515 (sh-guess-basic-offset): Use cl-incf.
6516 (sh-guess-basic-offset): Use push+nreverse to avoid O(n^2).
6517
6518 2013-10-24 Helmut Eller <eller.helmut@gmail.com>
6519
6520 * emacs-lisp/lisp-mode.el (lisp-cl-font-lock-keywords-2): Fix cut&paste
6521 (bug#15699).
6522
6523 2013-10-24 Glenn Morris <rgm@gnu.org>
6524
6525 * Makefile.in (abs_top_srcdir): Remove.
6526 (update-subdirs): Use relative path to update-subdirs.
6527
6528 2013-10-24 Eli Zaretskii <eliz@gnu.org>
6529
6530 * Makefile.in ($(MH_E_DIR)/mh-loaddefs.el)
6531 ($(TRAMP_DIR)/tramp-loaddefs.el, $(CAL_DIR)/cal-loaddefs.el)
6532 ($(CAL_DIR)/diary-loaddefs.el, $(CAL_DIR)/hol-loaddefs.el):
6533 Call unmsys--file-name before expand-file-name, not after it.
6534
6535 2013-10-24 Michael Albinus <michael.albinus@gmx.de>
6536
6537 * emacs-lisp/ert.el (ert-deftest): Bind macro `skip-unless'.
6538 (ert-test-skipped): New error.
6539 (ert-skip, ert-stats-skipped): New defuns.
6540 (ert--skip-unless): New macro.
6541 (ert-test-skipped): New struct.
6542 (ert--run-test-debugger, ert-test-result-type-p)
6543 (ert-test-result-expected-p, ert--stats, ert-stats-completed)
6544 (ert--stats-set-test-and-result, ert-char-for-test-result)
6545 (ert-string-for-test-result, ert-run-tests-batch)
6546 (ert--results-update-ewoc-hf, ert-run-tests-interactively):
6547 Handle skipped tests. (Bug#9803)
6548
6549 2013-10-24 Glenn Morris <rgm@gnu.org>
6550
6551 * Makefile.in (check-declare): Remove unnecessary path in -l argument.
6552
6553 * Makefile.in (abs_top_srcdir): New, set by configure.
6554 (update-subdirs): Correct build-aux location.
6555
6556 2013-10-24 Dmitry Gutov <dgutov@yandex.ru>
6557
6558 * vc/vc.el (vc-print-root-log): Always set `default-directory'
6559 value, whether we could auto-deduce `backend', or not.
6560
6561 * progmodes/ruby-mode.el (ruby-smie-rules): Fix the "curly block
6562 with parameters" example. Simplify the "is it block or is it
6563 hash" check, but also make it more thorough.
6564
6565 2013-10-23 Masashi Fujimoto <masfj.dev@gmail.com> (tiny change)
6566
6567 * battery.el (battery-pmset): Handle OS X Mavericks. (Bug#15694)
6568
6569 2013-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
6570
6571 * progmodes/ruby-mode.el (ruby-smie-rules): Only align with parent of
6572 { if it is hanging.
6573
6574 * progmodes/ruby-mode.el (ruby-smie-rules): Don't return 0 for
6575 :before ";".
6576
6577 2013-10-23 Jed Brown <jed@59A2.org> (tiny change)
6578
6579 * progmodes/compile.el (compilation-directory-matcher)
6580 (compilation-page-delimiter):
6581 Support GNU Make-4.0 directory quoting. (Bug#15678)
6582
6583 2013-10-23 Leo Liu <sdl.web@gmail.com>
6584
6585 * ido.el (ido-tidy): Handle read-only text.
6586
6587 2013-10-23 Glenn Morris <rgm@gnu.org>
6588
6589 * Makefile.in (abs_srcdir, abs_lisp): New, set by configure.
6590 (emacs, compile, compile-always):
6591 Quote entities that might contain whitespace.
6592 (custom-deps, finder-data, autoloads): Use abs_lisp.
6593 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
6594 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
6595 ($(CAL_DIR)/hol-loaddefs.el): Manually expand target file name.
6596
6597 2013-10-23 Dmitry Gutov <dgutov@yandex.ru>
6598
6599 * progmodes/ruby-mode.el (ruby-smie--at-dot-call):
6600 Use `following-char'.
6601
6602 2013-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
6603
6604 * emacs-lisp/smie.el (smie-rule-parent): Fix opener-test.
6605 * progmodes/ruby-mode.el (ruby-smie-rules):
6606 Remove corresponding workaround. Fix indentation rule of ";" so it
6607 also applies when ";" is the parent.
6608
6609 2013-10-22 Xue Fuqiao <xfq.free@gmail.com>
6610
6611 * frame.el (display-screens, display-pixel-height)
6612 (display-pixel-width, display-mm-width, display-backing-store)
6613 (display-save-under, display-planes, display-color-cells)
6614 (display-visual-class, display-monitor-attributes-list):
6615 Mention the optional ‘display’ argument in doc strings.
6616
6617 2013-10-22 Michael Gauland <mikelygee@amuri.net>
6618
6619 * progmodes/ebnf2ps.el (ebnf-prologue): Avoid PS error with some
6620 viewers such as evince when ebnf-production-name-p is nil. (Bug#15625)
6621
6622 2013-10-21 Dmitry Gutov <dgutov@yandex.ru>
6623
6624 * progmodes/ruby-mode.el (ruby-smie-grammar): Remove outdated
6625 TODO. Add "." after " @ ".
6626 (ruby-smie--at-dot-call): New function. Checks if point at method
6627 call with explicit target.
6628 (ruby-smie--forward-token, ruby-smie--backward-token): Prepend "."
6629 to the method name tokens when it precedes them.
6630 (ruby-smie--backward-id, ruby-smie--forward-id): Remove.
6631 (ruby-smie-rules): Add rule for indentation before and after "."
6632 token.
6633
6634 2013-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
6635
6636 * textmodes/remember.el (remember-diary-extract-entries):
6637 Avoid add-to-list.
6638
6639 * progmodes/ruby-mode.el (ruby-smie-rules): Indent after + used as
6640 an instruction.
6641
6642 2013-10-21 Dmitry Gutov <dgutov@yandex.ru>
6643
6644 * progmodes/ruby-mode.el (ruby-smie-grammar):
6645 Add (almost) all infix operators.
6646 (ruby-smie--implicit-semi-p): Add new operator chars.
6647
6648 * progmodes/ruby-mode.el (ruby-mode-map): Add binding for
6649 `smie-down-list'.
6650 (ruby-smie--args-separator-p): Check that there's no newline
6651 between method call and its arguments.
6652
6653 2013-10-20 Alan Mackenzie <acm@muc.de>
6654
6655 Allow comma separated lists after Java "implements".
6656
6657 * progmodes/cc-engine.el (c-backward-over-enum-header):
6658 Parse commas.
6659 * progmodes/cc-fonts.el (c-basic-matchers-after): Remove comma
6660 from a "disallowed" list in enum fontification.
6661
6662 2013-10-20 Johan Bockgård <bojohan@gnu.org>
6663
6664 * startup.el (default-frame-background-mode): Remove unused defvar.
6665
6666 * progmodes/verilog-mode.el (verilog-mode): Don't set
6667 comment-indent-function globally.
6668
6669 2013-10-20 Jan Djärv <jan.h.d@swipnet.se>
6670
6671 * menu-bar.el: Put help-menu in menu-bar-final-items unconditionally.
6672 Move Info menu item creation to ns-win.el.
6673
6674 * term/ns-win.el (ns-initialize-window-system): Rename Help to Info
6675 in menu bar.
6676
6677 * menu-bar.el: Move GNUstep specific menus...
6678
6679 * term/ns-win.el (ns-initialize-window-system): ... to here.
6680
6681 2013-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
6682
6683 * simple.el (newline): Only run post-self-insert-hook when
6684 called interactively.
6685
6686 2013-10-19 Johan Bockgård <bojohan@gnu.org>
6687
6688 * icomplete.el (icomplete-with-completion-tables): Add :version.
6689
6690 2013-10-19 Alan Mackenzie <acm@muc.de>
6691
6692 Fix fontification bugs with constructors and const.
6693
6694 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): (Just after
6695 CASE 2) Remove the check for the absence of a suffix construct
6696 after a function declaration with only types (no identifiers) in
6697 the parentheses. Also, accept a function declaration with just a
6698 type inside the parentheses, if this type can be positively
6699 recognised as such, or if a prefix keyword like "explicit" nails
6700 down the construct as a declaration.
6701
6702 2013-10-19 Eli Zaretskii <eliz@gnu.org>
6703
6704 * menu-bar.el (tty-menu-navigation-map): Bind mouse-N to perform
6705 TTY menu actions and down-mouse-N to tty-menu-ignore. This solves
6706 the problem whereby selecting a menu item that leads to a
6707 minibuffer prompt moves the cursor out of the minibuffer window,
6708 making it hard to type at the prompt. Suggested by Stefan Monnier
6709 <monnier@iro.umontreal.ca>.
6710
6711 2013-10-19 Jan Djärv <jan.h.d@swipnet.se>
6712
6713 * menu-bar.el: Don't make Services menu.
6714
6715 2013-10-19 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
6716
6717 * ffap.el: Handle "/usr/include/c++/<version>" directories.
6718 (ffap-alist): Use ffap-c++-mode for c++-mode.
6719 (ffap-c++-path): New variable.
6720 (ffap-c++-mode): New function.
6721
6722 2013-10-19 Joe Vornehm Jr. <joe.vornehm@gmail.com> (tiny change)
6723
6724 * ido.el (dired-other-frame): Only list directories. (Bug#15638)
6725
6726 2013-10-18 Michael Albinus <michael.albinus@gmx.de>
6727
6728 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Fix an error
6729 introduced on 2013-09-08, which results in an infinite loop
6730 requesting a password.
6731
6732 2013-10-18 Glenn Morris <rgm@gnu.org>
6733
6734 * progmodes/verilog-mode.el (verilog-case-fold): Add :version.
6735
6736 2013-10-18 Wilson Snyder <wsnyder@wsnyder.org>
6737
6738 Sync with upstream verilog-mode revision 1a6ecec7.
6739 * progmodes/verilog-mode.el (verilog-mode-version): Update.
6740 (verilog-mode-release-date): Remove.
6741 (verilog-highlight-grouping-keywords, verilog-active-low-regexp)
6742 (verilog-auto-inst-param-value, verilog-auto-input-ignore-regexp)
6743 (verilog-auto-inout-ignore-regexp, verilog-auto-output-ignore-regexp)
6744 (verilog-auto-tieoff-ignore-regexp)
6745 (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp)
6746 (verilog-scan-cache-preserving, verilog-mode, verilog-at-struct-p)
6747 (verilog-signals-with, verilog-dir-cache-preserving)
6748 (verilog-auto-inst, verilog-auto-inout-param, verilog-auto):
6749 Doc fixes.
6750 (verilog-case-fold): New option, to control case folding in
6751 regexp searches, bug597.
6752 (verilog-menu): Add verilog-sk-uvm-component, minor tweaks.
6753 (verilog-string-match-fold, verilog-in-paren-count)
6754 (verilog-in-struct-nested-p, verilog-at-struct-mv-p)
6755 (verilog-at-close-struct-p): New functions.
6756 (verilog-beg-block-re-ordered, verilog-extended-case-re)
6757 (verilog-forward-sexp, verilog-set-auto-endcomments)
6758 (verilog-leap-to-case-head): Handle "unique0" case.
6759 (verilog-in-constraint-re): New constant.
6760 (verilog-keywords, verilog-type-font-keywords):
6761 Add some SystemVerilog 1800-2012 keywords.
6762 (verilog-label-be): Remove unimplemented argument, bug669.
6763 (verilog-batch-execute-func): When batch expanding clear
6764 create-lockfiles to prevent spurious user locks when a file ends
6765 up not changing.
6766 (verilog-calculate-indent, verilog-calc-1)
6767 (verilog-at-close-constraint-p, verilog-at-constraint-p)
6768 (verilog-do-indent): Fix indentation of nested constraints
6769 and structures.
6770 (verilog-sig-tieoff, verilog-typedef-name-p, verilog-auto-inst)
6771 (verilog-auto-inst-param): Use verilog-string-match-fold.
6772 (verilog-read-inst-module-matcher):
6773 Fix AUTOINST on gate primitives with #1.
6774 (verilog-read-decls): Fix double-declaring user-defined typed signals.
6775 Reads all user-defined typed variables.
6776 (verilog-read-defines): Fix reading definitions inside comments, bug647.
6777 (verilog-signals-matching-regexp)
6778 (verilog-signals-not-matching-regexp, verilog-auto):
6779 Respect verilog-case-fold.
6780 (verilog-diff-report): Fix line count.
6781 (verilog-auto-assign-modport): Remove unused local `modi'.
6782 (verilog-auto-inst-port): Support [][] in AUTO_TEMPLATE to
6783 better handle multidimensional arrays.
6784 Fix packed array ports misadding bit index in AUTOINST, bug637.
6785 (verilog-auto-output, verilog-auto-input): Fix AUTOINPUT and AUTOOUTPUT
6786 to not double-declare existing outputs and inputs, respectively.
6787 (verilog-template-map): Bind U to verilog-sk-uvm-component.
6788 (verilog-sk-uvm-object): Rename from verilog-sk-uvm-class.
6789 (verilog-sk-uvm-component): New skeleton.
6790 (verilog-submit-bug-report): Add verilog-case-fold,
6791 remove verilog-mode-release-date.
6792
6793 2013-10-17 Barry O'Reilly <gundaetiapo@gmail.com>
6794
6795 * subr.el (sit-for): Call (input-pending-p t) so as to behave
6796 as before.
6797
6798 2013-10-18 Reuben Thomas <rrt@sc3d.org>
6799
6800 * textmodes/remember.el (remember): Set buffer-offer-save in
6801 remember buffers (bug#13566).
6802
6803 2013-10-18 Daniel Colascione <dancol@dancol.org>
6804
6805 When evaluating forms in ielm, direct standard output to ielm
6806 buffer. Add new ielm-return-for-effect command. Remove trailing
6807 whitespace throughout.
6808
6809 * ielm.el (ielm-map): Bind M-RET to ielm-return-for-effect.
6810 (ielm-return-for-effect): New command.
6811 (ielm-send-input): Accept optional `for-effect' parameter.
6812 (ielm-eval-input): Accept optional `for-effect' parameter.
6813 Bind `standard-output' to stream we create using
6814 `ielm-standard-output-impl'. Suppress printing result when
6815 `for-effect'.
6816 (ielm-standard-output-impl): New function.
6817 (inferior-emacs-lisp-mode): Explain new features in documentation.
6818
6819 2013-10-17 Michael Albinus <michael.albinus@gmx.de>
6820
6821 Code cleanup.
6822
6823 * net/tramp.el (tramp-debug-message): Do not check for connection
6824 buffer.
6825 (tramp-message): Use "vector" connection property.
6826
6827 * net/tramp.el (tramp-rfn-eshadow-update-overlay)
6828 (tramp-equal-remote, tramp-eshell-directory-change)
6829 * net/tramp-adb.el (tramp-adb-handle-copy-file)
6830 (tramp-adb-handle-rename-file)
6831 * net/tramp-cmds.el (tramp-list-remote-buffers)
6832 (tramp-cleanup-connection, tramp-cleanup-this-connection)
6833 * net/tramp-compat.el (tramp-compat-process-running-p)
6834 * net/tramp-ftp.el (tramp-ftp-file-name-handler)
6835 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file)
6836 (tramp-gvfs-handle-rename-file)
6837 * net/tramp-sh.el (tramp-sh-handle-set-file-times)
6838 (tramp-set-file-uid-gid)
6839 * net/tramp-smb.el (tramp-smb-handle-copy-file)
6840 (tramp-smb-handle-rename-file): Use `tramp-tramp-file-p' instead
6841 of `file-remote-p'.
6842
6843 * net/tramp.el (tramp-connectable-p, tramp-handle-file-remote-p)
6844 * net/tramp-gw.el (tramp-gw-gw-proc-sentinel)
6845 (tramp-gw-aux-proc-sentinel, tramp-gw-process-filter)
6846 (tramp-gw-open-network-stream): Suppress unrelated traces.
6847
6848 * net/tramp-adb.el (tramp-adb-maybe-open-connection)
6849 * net/tramp-gvfs.el (tramp-gvfs-handle-file-notify-add-watch)
6850 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
6851 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Set "vector"
6852 connection property.
6853
6854 * net/tramp-cache.el (top): Suppress traces when reading
6855 persistency file.
6856
6857 * net/tramp-sh.el (tramp-sh-handle-file-notify-add-watch):
6858 Refactor common code. Improve debug message.
6859 (tramp-maybe-open-connection)
6860 * net/tramp-smb.el (tramp-smb-call-winexe): Do not request
6861 connection buffer too early.
6862
6863 * net/tramp-smb.el (tramp-smb-actions-get-acl): New defconst, renamed
6864 from `tramp-smb-actions-with-acl'.
6865 (tramp-smb-actions-set-acl): New defconst.
6866 (tramp-smb-handle-copy-directory)
6867 (tramp-smb-action-get-acl): New defun, renamed from
6868 `tramp-smb-action-with-acl'.
6869 (tramp-smb-action-set-acl): New defun.
6870 (tramp-smb-handle-set-file-acl): Rewrite.
6871
6872 2013-10-17 Glenn Morris <rgm@gnu.org>
6873
6874 * indent.el (indent-rigidly): Fix 2013-10-08 change. (Bug#15635)
6875
6876 2013-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
6877
6878 * skeleton.el (skeleton-newline): Remove.
6879 (skeleton-internal-1): Use (insert "\n") instead.
6880
6881 * emacs-lisp/lisp.el (lisp-completion-at-point): Complete var names for
6882 let-bindings.
6883
6884 * progmodes/sh-script.el (sh-find-prev-matching): Disable SMIE's
6885 forward-sexp-function while we redo its job (bug#15613).
6886
6887 2013-10-17 Jay Belanger <jay.p.belanger@gmail.com>
6888
6889 * calc/calc-comb.el (math-prime-test): Don't assume large integers are
6890 represented by lists.
6891
6892 2013-10-16 Glenn Morris <rgm@gnu.org>
6893
6894 * tmm.el (tmm--history): New dynamic variable.
6895 (tmm-prompt): Use tmm--history in place of `history'. (Bug#15623)
6896
6897 2013-10-16 Michael Albinus <michael.albinus@gmx.de>
6898
6899 * net/tramp-smb.el (tramp-smb-acl-program): New customer option.
6900 (tramp-smb-errors): Add error messages.
6901 (tramp-smb-actions-with-acl): New defconst.
6902 (tramp-smb-file-name-handler-alist) <set-file-acl>: Add handler.
6903 (tramp-smb-action-with-acl, tramp-smb-handle-set-file-acl): New defuns.
6904 (tramp-smb-handle-file-acl): Rewrite, using "smbcacls".
6905 (tramp-smb-handle-file-attributes): Simplify test for "stat" capability.
6906 (tramp-smb-get-stat-capability): Fix tests.
6907
6908 2013-10-16 Dima Kogan <dima@secretsauce.net> (tiny change)
6909
6910 * progmodes/subword.el (subword-capitalize): Fix Stefan's mess
6911 (bug#15580).
6912
6913 2013-10-16 Glenn Morris <rgm@gnu.org>
6914
6915 * ansi-color.el (ansi-color-drop-regexp):
6916 Add 1J, 1K, 2K. (Bug#15617)
6917
6918 * files.el (hack-local-variables--warned-lexical): New.
6919 (hack-local-variables):
6920 Warn about misplaced lexical-binding. (Bug#15616)
6921
6922 * net/eww.el (eww-render): Always set eww-current-url,
6923 and update header line. (Bug#15622)
6924 (eww-display-html): ... Rather than just doing it here.
6925
6926 2013-10-15 Eli Zaretskii <eliz@gnu.org>
6927
6928 * menu-bar.el (tty-menu-navigation-map): Bind mouse wheels to TTY
6929 menu navigations commands.
6930
6931 2013-10-14 Dima Kogan <dima@secretsauce.net> (tiny change)
6932
6933 * progmodes/subword.el (subword-capitalize): Be careful when
6934 the search for [[:alpha:]] fails (bug#15580).
6935
6936 2013-10-14 Eli Zaretskii <eliz@gnu.org>
6937
6938 * menu-bar.el (tty-menu-navigation-map): Bind shifted mouse clicks
6939 to commands that scroll the menu.
6940
6941 2013-10-14 Dmitry Gutov <dgutov@yandex.ru>
6942
6943 * progmodes/ruby-mode.el (ruby-smie--args-separator-p):
6944 Handle methods ending with `?' and `!'.
6945
6946 2013-10-14 Akinori MUSHA <knu@iDaemons.org>
6947
6948 * progmodes/ruby-mode.el (ruby-encoding-map): Add a mapping from
6949 `japanese-cp932' to `cp932' to fix the problem where saving a
6950 source file written in Shift_JIS twice would end up having
6951 `coding: japanese-cp932' which Ruby could not recognize.
6952 (ruby-mode-set-encoding): Add support for encodings mapped to nil
6953 in `ruby-encoding-map'.
6954 (ruby-encoding-map): Map `us-ascii' to nil by default, meaning it
6955 doesn't need to be explicitly declared in magic comment.
6956 (ruby-encoding-map): Add type declaration for better customize UI.
6957
6958 2013-10-13 Glenn Morris <rgm@gnu.org>
6959
6960 * progmodes/sh-script.el (sh-mark-line, sh-learn-buffer-indent):
6961 Occur buffers are read-only. http://bugs.debian.org/720775
6962
6963 * emacs-lisp/authors.el (authors-fixed-entries):
6964 Comment out old alpha stuff.
6965
6966 2013-10-13 Dmitry Gutov <dgutov@yandex.ru>
6967
6968 * progmodes/ruby-mode.el (ruby-mode): Add `ruby-mode-set-encoding'
6969 to `after-save-hook' instead of `before-save-hook'.
6970 (ruby-mode-set-encoding): Use the value of coding system used to
6971 write the file. Call `basic-save-buffer-1' after modifying the
6972 buffer.
6973
6974 2013-10-13 Alan Mackenzie <acm@muc.de>
6975
6976 Fix indentation/fontification of Java enum with
6977 "implements"/generic.
6978
6979 * progmodes/cc-engine.el (c-backward-over-enum-header):
6980 Extracted from the three other places and enhanced to handle generics.
6981 (c-inside-bracelist-p): Uses new function above.
6982 * progmodes/cc-fonts.el (c-font-lock-declarations): Uses new
6983 function above.
6984 (c-font-lock-enum-tail): Uses new function above.
6985
6986 2013-10-13 Kenichi Handa <handa@gnu.org>
6987
6988 * international/mule-cmds.el (select-safe-coding-system): Remove a
6989 superfluous condition in chekcing whether a coding system is safe
6990 or not.
6991
6992 2013-10-13 Oleh Krehel <ohwoeowho@gmail.com>
6993
6994 * replace.el (how-many): Fix rstart and !rend case. (Bug#15589)
6995
6996 2013-10-13 Andreas Politz <politza@hochschule-trier.de>
6997
6998 * progmodes/sql.el (sql-add-product): Fix paren typo. (Bug#15435)
6999
7000 2013-10-13 Glenn Morris <rgm@gnu.org>
7001
7002 * menu-bar.el (menu-bar-update-buffers):
7003 Unify Buffers menu prompt string. (Bug#15576)
7004
7005 * face-remap.el (text-scale-adjust): Doc fix. (Bug#15434)
7006
7007 * emacs-lisp/authors.el (authors-aliases, authors-ignored-files):
7008 Add some entries.
7009 (authors-fixed-entries): Use accented form of name.
7010
7011 2013-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
7012
7013 * progmodes/ruby-mode.el (ruby-smie-grammar): Add rule for paren-free
7014 method calls (bug#15594).
7015 (ruby-smie--args-separator-p): New function.
7016 (ruby-smie--forward-token, ruby-smie--backward-token): Use it to
7017 recognize paren-free method calls.
7018
7019 * isearch.el (isearch-pre-command-hook): Don't build in knowledge about
7020 internals of universal-argument.
7021
7022 2013-10-11 Eli Zaretskii <eliz@gnu.org>
7023
7024 * menu-bar.el (tty-menu-navigation-map): Remap F10 to tty-menu-exit.
7025 Bind all menu-bar sequences to tty-menu-exit -- this pops down a
7026 dropped menu on second mouse click on the menu bar.
7027
7028 2013-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
7029
7030 * progmodes/sh-script.el: Provide simpl(e|istic) completion.
7031 (explicit-shell-file-name): Declare.
7032 (sh--vars-before-point, sh--cmd-completion-table): New functions.
7033 (sh-completion-at-point-function): New function.
7034 (sh-mode): Use it.
7035 (sh-smie--keyword-p): Remove unused argument.
7036 (sh-smie-sh-backward-token, sh-smie-rc-backward-token): Remove unused
7037 vars.
7038 (sh-set-shell): Always setup SMIE, even if we use the
7039 old indentation code.
7040
7041 2013-10-11 Dmitry Gutov <dgutov@yandex.ru>
7042
7043 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Split the
7044 cases of ? and =.
7045 (ruby-smie-rules): Simplify the "do" rule. The cases when the
7046 predicate would return nil are almost non-existent.
7047 (ruby-smie--redundant-do-p): Include "until" and "for" statements.
7048
7049 * emacs-lisp/smie.el (smie--matching-block-data): Invalidate the
7050 cache also after commands that modify the buffer but don't move
7051 point.
7052
7053 2013-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
7054
7055 * env.el (substitute-env-in-file-name): New function.
7056 (substitute-env-vars): Extend the meaning of the optional arg.
7057
7058 2013-10-10 Eli Zaretskii <eliz@gnu.org>
7059
7060 * term/w32-win.el (dynamic-library-alist): Define separate lists
7061 of GIF DLLs for versions before and after 5.0.0 of giflib.
7062 (Bug#15531)
7063
7064 2013-10-10 João Távora <joaotavora@gmail.com>
7065
7066 * vc/vc.el (vc-diff-build-argument-list-internal): If the file is
7067 not locked, use last revision and current source as
7068 defaults. (Bug#15569)
7069
7070 2013-10-10 Masatake YAMATO <yamato@redhat.com>
7071
7072 * menu-bar.el (menu-bar-open): Don't use popup-menu if
7073 menu-bar is hidden.
7074
7075 2013-10-10 Martin Rudalics <rudalics@gmx.at>
7076
7077 * window.el (pop-to-buffer-same-window): Fix doc-string.
7078 (Bug#15492)
7079
7080 2013-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
7081
7082 * menu-bar.el (tty-menu-navigation-map): Reduce redundancy.
7083
7084 2013-10-10 Andrei Chițu <andrei.chitu1@gmail.com> (tiny change)
7085
7086 * calendar/icalendar.el (icalendar-import-file):
7087 Fix interactive spec. (Bug#15482)
7088
7089 2013-10-10 Glenn Morris <rgm@gnu.org>
7090
7091 * desktop.el (desktop-save): Default to saving in .emacs.d,
7092 since PWD is no longer in desktop-path by default. (Bug#15319)
7093
7094 * menu-bar.el (menu-bar-options-menu): Remove text-mode auto-fill,
7095 now that text mode has a menu with the same entry.
7096 (menu-bar-text-mode-auto-fill): Remove now unused func.
7097 * textmodes/text-mode.el (text-mode-map):
7098 Use auto-fill help text from menu-bar.el.
7099
7100 2013-10-10 John Anthony <john@jo.hnanthony.com>
7101
7102 * textmodes/text-mode.el (text-mode-map): Add a menu. (Bug#15562)
7103
7104 2013-10-09 Juri Linkov <juri@jurta.org>
7105
7106 * isearch.el (isearch-pre-command-hook): Use this-single-command-keys
7107 instead of this-command-keys. Add universal-argument-more and
7108 universal-argument-minus to the list of prefix commands. (Bug#15568)
7109
7110 2013-10-09 Glenn Morris <rgm@gnu.org>
7111
7112 * vc/vc-svn.el (vc-svn-create-repo):
7113 Expand paths in file://... url. (Bug#15446)
7114
7115 * emacs-lisp/authors.el (authors-aliases, authors-fixed-case):
7116 Add some entries.
7117 (authors): Remove unused local variables.
7118
7119 2013-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
7120
7121 * profiler.el: Create a more coherent calltree from partial backtraces.
7122 (profiler-format): Hide the tail with `invisible' so that C-s can still
7123 find the hidden elements.
7124 (profiler-calltree-depth): Don't recurse so enthusiastically.
7125 (profiler-function-equal): New hash-table-test.
7126 (profiler-calltree-build-unified): New function.
7127 (profiler-calltree-build): Use it.
7128 (profiler-report-make-name-part): Indent the calltree less.
7129 (profiler-report-mode): Add visibility specs for profiler-format.
7130 (profiler-report-expand-entry, profiler-report-toggle-entry):
7131 Expand the whole subtree when provided with a prefix arg.
7132
7133 2013-10-09 Dmitry Gutov <dgutov@yandex.ru>
7134
7135 * progmodes/ruby-mode.el (ruby-smie-rules): Indent after hanging
7136 iuwu-mod token.
7137 (ruby-smie--implicit-semi-p): Prohibit implicit semicolon after
7138 hanging iuwu-mod token.
7139 (ruby-smie--forward-token): Do not include a dot after a token in
7140 that token.
7141 (ruby-smie--backward-token): Likewise.
7142
7143 2013-10-08 Juri Linkov <juri@jurta.org>
7144
7145 * isearch.el (isearch-help-map, isearch-mode-map): Don't bind [t]
7146 to isearch-other-control-char.
7147 (isearch-mode): Add isearch-pre-command-hook to pre-command-hook
7148 and isearch-post-command-hook to post-command-hook.
7149 (isearch-done): Remove isearch-pre-command-hook from pre-command-hook
7150 and isearch-post-command-hook from post-command-hook.
7151 (isearch-unread-key-sequence)
7152 (isearch-reread-key-sequence-naturally)
7153 (isearch-lookup-scroll-key, isearch-other-control-char)
7154 (isearch-other-meta-char): Remove functions.
7155 (isearch-pre-command-hook, isearch-post-command-hook):
7156 New functions based on isearch-other-meta-char rewritten
7157 relying on the new behavior of overriding-terminal-local-map
7158 that does not replace the local keymaps any more. (Bug#15200)
7159
7160 2013-10-08 Eli Zaretskii <eliz@gnu.org>
7161
7162 Support menus on text-mode terminals.
7163 * tmm.el (tmm-menubar): Adapt doc string to TTY menus
7164 functionality.
7165
7166 * tooltip.el (tooltip-mode): Don't error out on TTYs.
7167
7168 * menu-bar.el (popup-menu, popup-menu-normalize-position):
7169 Move here from mouse.el.
7170 (popup-menu): Support menu-bar navigation on TTYs using C-f/C-b
7171 and arrow keys.
7172 (tty-menu-navigation-map): New map for TTY menu navigation.
7173
7174 * loadup.el ("tooltip"): Load even if x-show-tip is not available.
7175
7176 * frame.el (display-mouse-p): Report text-mode mouse as available
7177 on w32.
7178 (display-popup-menus-p): Report availability if mouse is
7179 available; don't condition on window-system.
7180
7181 * faces.el (tty-menu-enabled-face, tty-menu-disabled-face)
7182 (tty-menu-selected-face): New faces.
7183
7184 2013-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
7185
7186 * emacs-lisp/lisp-mode.el: Font-lock cl-lib constructs.
7187 (lisp-el-font-lock-keywords, lisp-el-font-lock-keywords-1)
7188 (lisp-el-font-lock-keywords-2, lisp-cl-font-lock-keywords)
7189 (lisp-cl-font-lock-keywords-1, lisp-cl-font-lock-keywords-2):
7190 New constants.
7191 (lisp-mode-variables): New `elisp' argument.
7192 (emacs-lisp-mode): Use it.
7193 * font-lock.el (lisp-font-lock-keywords, lisp-font-lock-keywords-1)
7194 (lisp-font-lock-keywords-2): Move to lisp-mode.el.
7195
7196 * indent.el: Use lexical-binding.
7197 (indent-region): Add progress reporter.
7198 (tab-stop-list): Make it implicitly extend to infinity by repeating the
7199 last step.
7200 (indent--next-tab-stop): New function to implement this behavior.
7201 (tab-to-tab-stop, move-to-tab-stop): Use it.
7202
7203 2013-10-08 Teemu Likonen <tlikonen@iki.fi>
7204
7205 * indent.el (indent-rigidly--current-indentation): New function.
7206 (indent-rigidly-map): New var.
7207 (indent-rigidly): Use it to provide interactive mode (bug#8196).
7208
7209 2013-10-08 Bastien Guerry <bzg@gnu.org>
7210
7211 * register.el (insert-register): Fix 2013-10-07 change.
7212
7213 2013-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
7214
7215 * progmodes/perl-mode.el: Use lexical-binding.
7216 Remove redundant :group args.
7217 (perl-nochange): Change default to be closer to other major modes's
7218 standard behavior.
7219 (perl-indent-line): Don't consider text on current line as a
7220 valid beginning of function from which to indent.
7221
7222 * emacs-lisp/backquote.el (backquote-process): Catch uses of , and ,@
7223 with more than one argument (bug#15538).
7224
7225 * mpc.el (mpc-songs-jump-to): Adjust to different playlist format.
7226
7227 * vc/pcvs.el: Use lexical-binding.
7228 (cvs-temp-buffer, cvs-make-cvs-buffer): Pass some vars in the lexical
7229 environment of `eval'.
7230 (cvs-mode-run, cvs-mode-do): Change `postproc' to be a function rather
7231 than a list of expressions. Adjust callers.
7232 * vc/pcvs-defs.el (cvs-postprocess): Remove, unused.
7233
7234 2013-10-07 Dmitry Gutov <dgutov@yandex.ru>
7235
7236 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Handle the
7237 case of the dot in a chained method call being on the following line.
7238
7239 2013-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
7240
7241 * electric.el (electric-indent-inhibit): New var.
7242 (electric-indent-post-self-insert-function): Use it.
7243 * progmodes/python.el (python-mode): Set it.
7244
7245 * progmodes/ruby-mode.el (ruby-smie-rules): Tweak handling of
7246 open braces.
7247
7248 * emacs-lisp/smie.el (smie-next-sexp): Refine last fix.
7249
7250 * textmodes/css-mode.el (css-smie-rules): Fix indentation (bug#15467).
7251 (css-mode): Use electric-indent-chars.
7252
7253 * nxml/nxml-mode.el: Use lexical-binding and syntax-propertize.
7254 (font-lock-beg, font-lock-end): Move before first use.
7255 (nxml-mode): Use syntax-propertize-function.
7256 (nxml-after-change, nxml-after-change1): Adjust accordingly.
7257 (nxml-extend-after-change-region): Remove.
7258 * nxml/xmltok.el: Use lexical-binding.
7259 (xmltok-save): Use `declare'.
7260 (xmltok-unclosed-reparse-p, xmltok-semi-closed-reparse-p): Remove.
7261 * nxml/nxml-util.el: Use lexical-binding.
7262 (nxml-with-degradation-on-error, nxml-with-invisible-motion):
7263 Use `declare'.
7264 * nxml/nxml-ns.el: Use lexical-binding.
7265 (nxml-ns-save): Use `declare'.
7266 (nxml-ns-prefixes-for): Avoid add-to-list.
7267 * nxml/rng-match.el: Use lexical-binding.
7268 (rng--ipattern): Use cl-defstruct.
7269 (rng-compute-start-tag-open-deriv, rng-compute-start-attribute-deriv)
7270 (rng-cons-group-after, rng-subst-group-after)
7271 (rng-subst-interleave-after, rng-apply-after, rng-compute-data-deriv):
7272 Use closures instead of `(lambda...).
7273
7274 2013-10-07 Michael Albinus <michael.albinus@gmx.de>
7275
7276 * net/tramp.el (tramp-handle-insert-file-contents): Improve handling
7277 of BEG and END.
7278
7279 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
7280 Use `tramp-handle-insert-file-contents'.
7281 (tramp-gvfs-handle-insert-file-contents): Remove function.
7282
7283 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
7284 Use `save-restriction' in order to keep markers.
7285
7286 * net/trampver.el: Update release number.
7287
7288 2013-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
7289
7290 * progmodes/compile.el (compilation-parse-errors):
7291 Use compilation--put-prop.
7292 (compilation--ensure-parse): Check compilation-multiline.
7293
7294 * emacs-lisp/easymenu.el (easy-menu-create-menu): Use closures.
7295
7296 * emacs-lisp/lisp-mode.el (eval-defun-2): Simplify, using
7297 lexical-binding.
7298
7299 * emacs-lisp/tq.el (tq-create): Use a closure instead of `(lambda...).
7300
7301 * progmodes/ruby-mode.el: Fix recently added tests.
7302 (ruby-smie-grammar): Add - and +.
7303 (ruby-smie--redundant-do-p, ruby-smie--forward-id)
7304 (ruby-smie--backward-id): New functions.
7305 (ruby-smie--forward-token, ruby-smie--backward-token): Use them.
7306 (ruby-smie-rules): Handle hanging do. Get rid of hack, not needed
7307 any more.
7308
7309 2013-10-07 Leo Liu <sdl.web@gmail.com>
7310
7311 * register.el (register-preview-delay)
7312 (register-preview-functions): New variables.
7313 (register-read-with-preview, register-preview)
7314 (register-describe-oneline): New functions.
7315 (point-to-register, window-configuration-to-register)
7316 (frame-configuration-to-register, jump-to-register)
7317 (number-to-register, view-register, insert-register)
7318 (copy-to-register, append-to-register, prepend-to-register)
7319 (copy-rectangle-to-register): Use register-read-with-preview to
7320 read register. (Bug#15525)
7321
7322 2013-10-06 Dato Simó <dato@net.com.org.es> (tiny change)
7323
7324 * net/network-stream.el (network-stream-open-starttls): Don't add
7325 --insecure if it's already present, because that gnutls-cli
7326 rejects getting that parameter twice.
7327
7328 2013-10-06 Dmitry Gutov <dgutov@yandex.ru>
7329
7330 * progmodes/ruby-mode.el (ruby-smie-rules): Dedent `ensure'
7331 keyword, too.
7332
7333 2013-10-05 Dmitry Gutov <dgutov@yandex.ru>
7334
7335 * newcomment.el (comment-use-global-state): Change default value
7336 to t, mark obsolete (Bug#15251).
7337 (comment-beginning): In addition to `comment-to-syntax', check the
7338 value of `comment-use-global-state'.
7339
7340 2013-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
7341
7342 * progmodes/ruby-mode.el (ruby-use-smie): Change default.
7343 (ruby-comment-column): Follow the global default, by default.
7344 (ruby-smie-grammar): Add assignment syntax.
7345 (ruby-smie--implicit-semi-p): No implicit semi-colon after an
7346 open-paren, a comma, or a \.
7347 (ruby-smie--forward-token, ruby-smie--backward-token): Handle heredocs,
7348 and line continuations.
7349 (ruby-smie-rules): Adjust handling of open-paren, now that it's never
7350 followed by implicit semi-colons. Add rule for string concatenation
7351 and for indentation at BOB.
7352 (ruby-forward-sexp, ruby-backward-sexp): Adjust for when SMIE is in use.
7353
7354 * emacs-lisp/smie.el (smie-next-sexp): Don't go back to pos before
7355 calling next-sexp, since next-token may have skipped chars which
7356 next-sexp doesn't know should be skipped!
7357
7358 2013-10-05 Leo Liu <sdl.web@gmail.com>
7359
7360 * progmodes/octave.el (octave-send-region):
7361 Call compilation-forget-errors.
7362
7363 2013-10-04 Xue Fuqiao <xfq.free@gmail.com>
7364
7365 * vc/vc-svn.el (vc-svn-find-admin-dir):
7366 * vc/vc-rcs.el (vc-rcs-find-admin-dir):
7367 * vc/vc-mtn.el (vc-mtn-find-admin-dir):
7368 * vc/vc-cvs.el (vc-cvs-find-admin-dir):
7369 * vc/vc-arch.el (vc-arch-find-admin-dir): New functions.
7370
7371 2013-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
7372
7373 * textmodes/css-mode.el (css-smie-rules): Toplevel's a list (bug#15467).
7374
7375 2013-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
7376
7377 * subr.el (read-passwd): Hide chars even when called within a context
7378 where after-change-functions is disabled (bug#15501).
7379 (set-temporary-overlay-map): Don't remove oneself from pre-command-hook
7380 until we removed ourself from overriding-terminal-local-map.
7381
7382 2013-10-04 Leo Liu <sdl.web@gmail.com>
7383
7384 * progmodes/octave.el (inferior-octave-mode):
7385 Call compilation-forget-errors.
7386
7387 2013-10-04 Xue Fuqiao <xfq.free@gmail.com>
7388
7389 * emacs-lisp/syntax.el (syntax-ppss): Doc fix.
7390
7391 2013-10-04 Michael Albinus <michael.albinus@gmx.de>
7392
7393 * net/secrets.el (secrets-create-collection): Add optional
7394 argument ALIAS. Use proper Label keyword. Append ALIAS as
7395 dbus-call-method argument. (Bug#15516)
7396
7397 2013-10-04 Leo Liu <sdl.web@gmail.com>
7398
7399 * progmodes/octave.el (inferior-octave-error-regexp-alist)
7400 (inferior-octave-compilation-font-lock-keywords): New variables.
7401 (compilation-error-regexp-alist)
7402 (compilation-mode-font-lock-keywords): Defvar to pacify compiler.
7403 (inferior-octave-mode): Use compilation-shell-minor-mode.
7404
7405 2013-10-04 Jorgen Schaefer <forcer@forcix.cx>
7406
7407 * minibuffer.el (completion--replace): Be careful that `end' might be
7408 a marker.
7409
7410 2013-10-03 Daiki Ueno <ueno@gnu.org>
7411
7412 Add support for package signature checking.
7413 * emacs-lisp/package.el (url-http-file-exists-p)
7414 (epg-make-context, epg-context-set-home-directory)
7415 (epg-verify-string, epg-context-result-for)
7416 (epg-signature-status, epg-signature-to-string)
7417 (epg-check-configuration, epg-configuration)
7418 (epg-import-keys-from-file): Declare.
7419 (package-check-signature): New user option.
7420 (package-unsigned-archives): New user option.
7421 (package-desc): Add `signed' field.
7422 (package-load-descriptor): Set `signed' field if .signed file exists.
7423 (package--archive-file-exists-p): New function.
7424 (package--check-signature): New function.
7425 (package-install-from-archive): Check package signature.
7426 (package--download-one-archive): Check archive signature.
7427 (package-delete): Remove .signed file.
7428 (package-import-keyring): New command.
7429 (package-refresh-contents): Import default keyring.
7430 (package-desc-status): Add "unsigned" status.
7431 (describe-package-1, package-menu--print-info)
7432 (package-menu-mark-delete, package-menu--find-upgrades)
7433 (package-menu--status-predicate): Support "unsigned" status.
7434
7435 2013-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
7436
7437 * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form): Adjust for
7438 the new compilation scheme using the new byte-codes.
7439
7440 * emacs-lisp/bytecomp.el (byte-pushcatch, byte-pushconditioncase)
7441 (byte-pophandler): New byte codes.
7442 (byte-goto-ops): Adjust accordingly.
7443 (byte-compile--use-old-handlers): New var.
7444 (byte-compile-catch): Use new byte codes depending on
7445 byte-compile--use-old-handlers.
7446 (byte-compile-condition-case--old): Rename from
7447 byte-compile-condition-case.
7448 (byte-compile-condition-case--new): New function.
7449 (byte-compile-condition-case): New function that dispatches depending
7450 on byte-compile--use-old-handlers.
7451 (byte-compile-unwind-protect): Pass a function to byte-unwind-protect
7452 when we can.
7453
7454 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
7455 Optimize under `condition-case' and `catch' if
7456 byte-compile--use-old-handlers is nil.
7457 (disassemble-offset): Handle new bytecodes.
7458
7459 2013-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
7460
7461 * subr.el (error): Use `declare'.
7462 (decode-char, encode-char): Use advertised-calling-convention instead
7463 of the docstring to discourage use of the `restriction' arg.
7464
7465 2013-10-03 Daiki Ueno <ueno@gnu.org>
7466
7467 * epg.el (epg-verify-file): Add a comment saying that it does not
7468 notify verification error as a return value nor a signal.
7469 (epg-verify-string): Ditto.
7470
7471 2013-10-02 Kevin Rodgers <kevin.d.rodgers@gmail.com>
7472
7473 * progmodes/compile.el (compilation-start): Try globbing the arg to
7474 `cd' (bug#15417).
7475
7476 2013-10-02 Michael Albinus <michael.albinus@gmx.de>
7477
7478 Sync with Tramp 2.2.8.
7479
7480 * net/tramp-cmds.el (tramp-bug, tramp-append-tramp-buffers):
7481 * net/tramp-cache.el (tramp-cache-print): Use `tramp-compat-funcall'.
7482 * net/trampver.el: Update release number.
7483
7484 2013-10-01 Jan Djärv <jan.h.d@swipnet.se>
7485
7486 * term/ns-win.el (ns-initialize-window-system): Set locale-coding-system
7487 and default-process-coding-system for darwin only.
7488
7489 2013-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
7490
7491 * emacs-lisp/package.el (package-desc): Simplify (bug#15495).
7492
7493 2013-10-01 Mitchel Humpherys <mitch.special@gmail.com> (tiny change)
7494
7495 * vc/vc-git.el (vc-git-grep): Disable pager.
7496
7497 2013-10-01 Dmitry Gutov <dgutov@yandex.ru>
7498
7499 * emacs-lisp/package.el (package-buffer-info, describe-package-1):
7500 Use :url instead of :homepage, as per
7501 http://lists.gnu.org/archive/html/emacs-devel/2013-09/msg00622.html
7502
7503 * newcomment.el (comment-beginning): When `comment-use-syntax' is
7504 non-nil, use `syntax-ppss' (Bug#15251).
7505
7506 2013-09-30 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
7507
7508 * progmodes/octave.el (inferior-octave-startup-file):
7509 Prefer ~/.emacs.d/init_octave.m.
7510
7511 2013-09-29 Dmitry Gutov <dgutov@yandex.ru>
7512
7513 * emacs-lisp/package.el (package-desc-from-define):
7514 Accept additional arguments as plist, convert them to an alist and store
7515 them in the `extras' slot.
7516 (package-generate-description-file): Convert extras alist back to
7517 plist and append to the `define-package' form arguments.
7518 (package--alist-to-plist): New function.
7519 (package--ac-desc): Add `extras' slot.
7520 (package--add-to-archive-contents): Check if the archive-contents
7521 vector is long enough, and if it is, pass its `extras' slot value
7522 to `package-desc-create'.
7523 (package-buffer-info): Call `lm-homepage', pass the returned value
7524 to `package-desc-from-define'.
7525 (describe-package-1): Render the homepage button (Bug#13291).
7526
7527 * emacs-lisp/package-x.el (package-upload-buffer-internal):
7528 Pass `extras' slot from `package-desc' to `package-make-ac-desc'.
7529
7530 2013-09-29 Jan Djärv <jan.h.d@swipnet.se>
7531
7532 * term/ns-win.el (ns-initialize-window-system): Set locale-coding-system
7533 and default-process-coding-system to utf-8-unix (Bug#15402).
7534
7535 2013-09-29 Xue Fuqiao <xfq.free@gmail.com>
7536
7537 * subr.el (looking-back): Do not recommend using looking-back.
7538
7539 2013-09-28 Alan Mackenzie <acm@muc.de>
7540
7541 Fix indentation/fontification of Java enum with "implements".
7542
7543 * progmodes/cc-langs.el (c-postfix-decl-spec-key): New variable, a
7544 regexp which matches "implements", etc., in Java.
7545 * progmodes/cc-engine.el (c-inside-bracelist-p): Check for extra
7546 specifier clauses coming after "enum".
7547 * progmodes/cc-fonts.el (c-font-lock-declarations)
7548 (c-font-lock-enum-tail): Check for extra specifier clauses coming
7549 after "enum".
7550
7551 2013-09-28 Jan Djärv <jan.h.d@swipnet.se>
7552
7553 * faces.el (region): Change ns_selection_color to
7554 ns_selection_fg_color, add ns_selection_bg_color.
7555
7556 2013-09-28 Leo Liu <sdl.web@gmail.com>
7557
7558 * progmodes/octave.el (inferior-octave-completion-table)
7559 (inferior-octave-completion-at-point): Minor tweaks.
7560
7561 * textmodes/ispell.el (ispell-lookup-words): Rename from
7562 lookup-words. (Bug#15460)
7563 (lookup-words): Obsolete.
7564 (ispell-complete-word, ispell-command-loop): All uses changed.
7565
7566 2013-09-28 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
7567
7568 * progmodes/octave.el (octave-mode-map): Bind octave-send-buffer.
7569 (octave-mode-menu): Add octave-send-buffer.
7570 (octave-send-buffer): New function.
7571
7572 2013-09-28 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
7573
7574 * progmodes/octave.el (octave-mode-map): Add key binding for
7575 octave-lookfor.
7576 (octave-mode-menu): Add octave-lookfor.
7577 (inferior-octave-mode-map, octave-help-mode-map): Bind C-ha to
7578 octave-lookfor.
7579 (octave-lookfor): New function.
7580
7581 2013-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
7582
7583 * emacs-lisp/cl-macs.el (cl--loop-destr-temps): Remove.
7584 (cl--loop-iterator-function): Rename from cl--loop-map-form and change
7585 its convention.
7586 (cl--loop-set-iterator-function): New function.
7587 (cl-loop): Adjust accordingly, so as not to use cl-subst.
7588 (cl--parse-loop-clause): Adjust all uses of cl--loop-map-form.
7589 Bind `it' with `let' instead of substituting it with `cl-subst'.
7590 (cl--unused-var-p): New function.
7591 (cl--loop-let): Don't use the cl--loop-destr-temps hack any more.
7592 Eliminate some unused variable warnings (bug#15326).
7593
7594 2013-09-27 Tassilo Horn <tsdh@gnu.org>
7595
7596 * doc-view.el (doc-view-scale-reset): Rename from
7597 `doc-view-reset-zoom-level'.
7598 (doc-view-scale-adjust): New command.
7599 (doc-view-mode-map): Remap `text-scale-adjust' bindings to
7600 `doc-view-scale-adjust'.
7601
7602 2013-09-26 Tassilo Horn <tsdh@gnu.org>
7603
7604 * doc-view.el (doc-view-reset-zoom-level): New command.
7605 (doc-view-mode-map): Remap text-scale-adjust bindings to doc-view
7606 zoom commands (bug#15466).
7607
7608 2013-09-26 Kenichi Handa <handa@gnu.org>
7609
7610 * international/quail.el (quail-help): Make it not a command.
7611
7612 2013-09-26 Leo Liu <sdl.web@gmail.com>
7613
7614 * minibuffer.el (completion-all-sorted-completions): Make args
7615 optional as they are.
7616
7617 2013-09-25 Daniel Colascione <dancol@dancol.org>
7618
7619 * emacs-lisp/cl-macs.el (cl-type-spec): Tell edebug what type
7620 specs are and that they're not evaluated.
7621
7622 2013-09-24 Sam Steingold <sds@gnu.org>
7623
7624 * midnight.el (clean-buffer-list-kill-regexps)
7625 (clean-buffer-list-kill-buffer-names): Update for the new Man
7626 buffer naming which includes the object name.
7627
7628 2013-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
7629
7630 * eshell/esh-cmd.el (eshell--sep-terms): New var.
7631 (eshell-parse-command, eshell-parse-pipeline): Use it since
7632 eshell-separate-commands requires a dynamic scoped var.
7633 Reported by Jan Moringen <jmoringe@techfak.uni-bielefeld.de>.
7634
7635 2013-09-23 Leo Liu <sdl.web@gmail.com>
7636
7637 * autoinsert.el (auto-insert-alist): Make the value of
7638 lexical-binding match its file setting.
7639
7640 2013-09-23 Juanma Barranquero <lekktu@gmail.com>
7641
7642 * vc/vc-sccs.el (vc-sccs-search-project-dir): Mark unused argument.
7643
7644 * autoarg.el (autoarg-kp-digit-argument):
7645 * electric.el (Electric-command-loop):
7646 * kmacro.el (kmacro-step-edit-insert):
7647 Do not set universal-argument-num-events.
7648
7649 2013-09-22 Leo Liu <sdl.web@gmail.com>
7650
7651 * files.el (interpreter-mode-alist): Add octave.
7652
7653 2013-09-21 Alan Mackenzie <acm@muc.de>
7654
7655 C++: fontify identifier in declaration following "public:" correctly.
7656 * progmodes/cc-langs.el (c-decl-start-colon-kwd-re): New lang var
7657 to match "public", etc.
7658 (c-decl-prefix-re): Add ":" into the C++ value.
7659 * progmodes/cc-engine.el (c-find-decl-prefix-search): Refactor a
7660 bit. Add a check for a ":" preceded by "public", etc.
7661
7662 2013-09-21 Eli Zaretskii <eliz@gnu.org>
7663
7664 * files.el (auto-mode-alist): Support OBJFILE-gdb.gdb script files
7665 recognized by GDB 7.5 and later.
7666
7667 2013-09-21 Xue Fuqiao <xfq.free@gmail.com>
7668
7669 * vc/vc-dir.el (vc-dir-mode-map): Add keybinding for vc-log-incoming.
7670
7671 2013-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
7672
7673 * subr.el (internal--call-interactively): New const.
7674 (called-interactively-p): Use it (bug#3984).
7675
7676 2013-09-20 Xue Fuqiao <xfq.free@gmail.com>
7677
7678 * vc/pcvs.el (cvs-mode-ignore):
7679 * vc/vc-cvs.el (vc-cvs-ignore, vc-cvs-append-to-ignore):
7680 Rename cvs-append-to-ignore to vc-cvs-append-to-ignore.
7681
7682 2013-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
7683
7684 * eshell/em-ls.el: Use advice. Remove redundant :group keywords.
7685 (eshell-ls-orig-insert-directory): Remove.
7686 (eshell-ls-unload-hook): Not a defcustom any more. Use advice-remove.
7687 (eshell-ls-use-in-dired): Use advice-add/remove.
7688 (eshell-ls--insert-directory): Rename from eshell-ls-insert-directory.
7689 Add `orig-fun' arg for use in :around advice.
7690 Make it check (redundantly) eshell-ls-use-in-dired.
7691
7692 2013-09-19 Glenn Morris <rgm@gnu.org>
7693
7694 * emacs-lisp/cl-macs.el (cl-defsubst): Remove unused local `pbody'.
7695
7696 * simple.el (x-selection-owner-p, x-selection-exists-p): Declare.
7697
7698 * emacs-lisp/eieio.el (class-parent): Undo previous change.
7699
7700 2013-09-19 Michael Albinus <michael.albinus@gmx.de>
7701
7702 * net/tramp-sh.el (tramp-get-remote-id): Do not raise an error.
7703 (tramp-get-remote-uid-with-id, tramp-get-remote-gid-with-id)
7704 (tramp-get-remote-python): New defuns.
7705 (tramp-get-remote-uid-with-perl)
7706 (tramp-get-remote-gid-with-perl): New defuns. Perl code
7707 contributed by yary <not.com@gmail.com> (tiny change).
7708 (tramp-get-remote-uid-with-python)
7709 (tramp-get-remote-gid-with-python): New defuns. Python code
7710 contributed by Andrey Tykhonov <atykhonov@gmail.com> (tiny change).
7711 (tramp-get-remote-uid, tramp-get-remote-gid): Use new defuns.
7712
7713 2013-09-19 Glenn Morris <rgm@gnu.org>
7714
7715 * emacs-lisp/eieio.el (class-parent): Don't use defalias with macros.
7716
7717 * eshell/em-unix.el (eshell-remove-entries):
7718 Rename argument to avoid name-clash with global `top-level'.
7719
7720 * eshell/esh-proc.el (eshell-kill-process-function):
7721 Remove eshell-reset-after-proc from eshell-kill-hook if present.
7722 (eshell-reset-after-proc): Remove unused arg `proc'.
7723
7724 * eshell/esh-util.el (eshell-read-hosts-file): Use `filename' arg.
7725 (directory-files-and-attributes): Mark unused arg.
7726
7727 * eshell/em-unix.el (eshell-remove-entries):
7728 Remove unused arg `path'. Update callers.
7729
7730 * eshell/em-hist.el (eshell-hist-parse-arguments):
7731 Remove unused arg `silent'. Update callers.
7732
7733 * eshell/em-ls.el (eshell-ls-use-in-dired): Use `symbol' arg.
7734 Fix (f)boundp mix-up.
7735
7736 * eshell/em-smart.el (eshell-smart-scroll-window)
7737 (eshell-disable-after-change):
7738 * eshell/em-term.el (eshell-term-sentinel): Mark unused arg.
7739
7740 2013-09-18 Alan Mackenzie <acm@muc.de>
7741
7742 Fix fontification of type when followed by "const".
7743 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Don't exclude
7744 "known" types from fontification.
7745
7746 2013-09-18 Glenn Morris <rgm@gnu.org>
7747
7748 * emacs-lisp/chart.el (x-display-color-cells): Declare.
7749 (chart-face-list): Drop Emacsen without display-color-p.
7750
7751 * net/eww.el (libxml-parse-html-region): Declare.
7752 (eww-display-html): Explicit error if no libxml2 support.
7753
7754 * doc-view.el (doc-view-mode): Silence --without-x compilation.
7755
7756 * image.el (image-type-from-buffer, image-multi-frame-p):
7757 Remove --without-x warning/error.
7758
7759 * mouse.el (mouse-yank-primary):
7760 * term.el (term-mouse-paste):
7761 Reorder to silence --without-x compilation.
7762
7763 * mpc.el (doc-view-mode): Silence --without-x compilation.
7764
7765 * mail/rmailmm.el (rmail-mime-set-bulk-data):
7766 Silence --without-x compilation.
7767
7768 * progmodes/gud.el (gud-find-file, gud-mode):
7769 Silence --without-x compilation.
7770 (tooltip-mode): Declare.
7771
7772 * wdired.el (dired-backup-overwrite): Remove declaration.
7773 (wdired-mode-map): Add doc string.
7774
7775 * custom.el (x-get-resource): Declare.
7776
7777 * eshell/em-glob.el (ange-cache):
7778 * eshell/em-unix.el (ange-cache): Declare.
7779
7780 * faces.el (x-display-list, x-open-connection, x-get-resource):
7781 Declare.
7782
7783 * follow.el (scroll-bar-toolkit-scroll, scroll-bar-drag)
7784 (scroll-bar-scroll-up, scroll-bar-scroll-down, mwheel-scroll):
7785 Declare.
7786
7787 * frame.el (x-display-grayscale-p, x-display-name): Declare.
7788
7789 * net/gnutls.el (gnutls-log-level): Declare.
7790
7791 * net/shr.el (image-size, image-animate): Declare.
7792
7793 * simple.el (font-info): Declare.
7794
7795 * subr.el (x-popup-dialog): Declare.
7796
7797 * term/common-win.el (x-select-enable-primary)
7798 (x-last-selected-text-primary, x-last-selected-text-clipboard):
7799 Declare.
7800
7801 * term/ns-win.el (x-handle-args): Declare.
7802
7803 * term/x-win.el (x-select-enable-clipboard): Declare.
7804
7805 * term/w32-win.el (create-default-fontset): Declare.
7806
7807 * w32-common-fns.el (x-server-version, x-select-enable-clipboard):
7808 Declare.
7809
7810 * window.el (x-display-pixel-height, tool-bar-lines-needed): Declare.
7811 (fit-frame-to-buffer): Explicit error if --without-x.
7812 (mouse-autoselect-window-select): Silence compiler.
7813
7814 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
7815
7816 * eshell/em-cmpl.el (eshell-complete-parse-arguments):
7817 * eshell/em-hist.el (eshell/history, eshell-isearch-backward):
7818 * eshell/em-pred.el (eshell-parse-modifiers, eshell-pred-file-time):
7819 * eshell/esh-util.el (eshell-sublist):
7820 Remove unused local variables.
7821
7822 * eshell/esh-io.el (x-select-enable-clipboard): Declare.
7823
7824 * textmodes/two-column.el: Make 2C-split work for --without-x.
7825 (scroll-bar-columns): Autoload.
7826 (top-level): Require fringe when compiling.
7827
7828 2013-09-18 Leo Liu <sdl.web@gmail.com>
7829
7830 * subr.el (add-hook): Robustify to handle closure as well.
7831
7832 2013-09-17 Glenn Morris <rgm@gnu.org>
7833
7834 * simple.el (messages-buffer-mode-map): Unbind "g".
7835
7836 2013-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
7837
7838 * help-mode.el (help-mode-finish): Use derived-mode-p.
7839 Remove obsolete highlighting.
7840
7841 * play/life.el (life-mode): Use define-derived-mode. Derive from
7842 special-mode.
7843 (life): Let-bind inhibit-read-only.
7844 (life-setup): Avoid `setq'. Use `life-mode'.
7845
7846 * emacs-lisp/package.el (package-generate-autoloads): Remove `require'
7847 which should not be needed any more.
7848 (package-menu-refresh, package-menu-describe-package): Use user-error.
7849
7850 * eshell/esh-cmd.el (eshell-post-rewrite-command-function): New var.
7851 (eshell-post-rewrite-command-hook): Make obsolete.
7852 (eshell-parse-command): Simplify.
7853 (eshell-structure-basic-command): Remove unused arg `vocal-test'.
7854 (eshell--cmd): Declare.
7855 (eshell-parse-pipeline): Remove unused var `final-p'.
7856 Pass a dynvar to eshell-post-rewrite-command-hook.
7857 Implement the new eshell-post-rewrite-command-function.
7858 (eshell-invoke-directly): Remove unused arg `input'.
7859 * eshell/esh-io.el (eshell-io-initialize):
7860 Use eshell-post-rewrite-command-function (bug#15399).
7861 (eshell--apply-redirections): Rename from eshell-apply-redirections;
7862 adjust to new calling convention.
7863 (eshell-create-handles): Rename args to avoid clashing with dynvar
7864 `standard-output'.
7865
7866 2013-09-17 Glenn Morris <rgm@gnu.org>
7867
7868 * simple.el (messages-buffer-mode): New major mode.
7869 (messages-buffer): New function.
7870 * startup.el (normal-top-level): Switch mode of *Messages* buffer.
7871 * emacs-lisp/ert.el (ert--force-message-log-buffer-truncation)
7872 (ert-run-test): Use `messages-buffer' function.
7873 (ert--force-message-log-buffer-truncation): Ignore read-only.
7874 * help.el (view-echo-area-messages): Use `messages-buffer' function.
7875 * mail/emacsbug.el (report-emacs-bug): Use `messages-buffer' function.
7876
7877 2013-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
7878
7879 * subr.el (eval-after-load): Preserve evaluation order (bug#15389).
7880
7881 * abbrev.el (abbrev--check-chars): Fix thinko (bug#15360).
7882
7883 2013-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
7884
7885 * icomplete.el (icomplete-in-buffer): New var.
7886 (icomplete-pre-command-hook, icomplete-post-command-hook): Remove those
7887 vars and replace them with functions.
7888 (icomplete-minibuffer-setup): Adjust accordingly.
7889 (icomplete--completion-table, icomplete--completion-predicate)
7890 (icomplete--field-string, icomplete--field-beg, icomplete--field-end):
7891 New functions.
7892 (icomplete-forward-completions, icomplete-backward-completions)
7893 (icomplete-simple-completing-p, icomplete-exhibit)
7894 (icomplete-completions): Use them.
7895 (icomplete--in-region-buffer): New var.
7896 (icomplete--in-region-setup): New function.
7897 (icomplete-mode): Use it.
7898
7899 * eshell/esh-opt.el: Fix last change to set lexical-vars properly
7900 (bug#15379).
7901 (eshell--do-opts): Rename from eshell-do-opt, remove arg `body-fun',
7902 return args and options.
7903 (eshell-eval-using-options): Use the new return value of
7904 eshell--do-opts to set the options's vars in their scope.
7905 (eshell--set-option): Rename from eshell-set-option.
7906 Add arg `opt-vals'.
7907 (eshell--process-option): Rename from eshell-process-option.
7908 Add arg `opt-vals'.
7909 (eshell--process-args): Use an `opt-vals' alist to store the options's
7910 values during their processing and return them additionally to the
7911 remaining args.
7912
7913 2013-09-15 Dmitry Gutov <dgutov@yandex.ru>
7914
7915 * progmodes/ruby-mode.el (ruby-operator-re): Consider line
7916 continuation character an operator, as far as indentation is
7917 concerned (Bug#15369).
7918
7919 2013-09-15 Martin Rudalics <rudalics@gmx.at>
7920
7921 * window.el (window--state-put-2): Don't process buffer state
7922 when buffer doesn't exist any more (Bug#15382).
7923
7924 2013-09-15 Glenn Morris <rgm@gnu.org>
7925
7926 * eshell/em-unix.el (eshell/rm):
7927 Make -f ignore missing files. (Bug#15373)
7928
7929 * eshell/esh-cmd.el (eshell--local-vars): New variable. (Bug#15372)
7930 (eshell-rewrite-for-command): Add for loop vars to eshell--local-vars.
7931 * eshell/esh-var.el (eshell-get-variable): Respect eshell--local-vars.
7932
7933 2013-09-14 Glenn Morris <rgm@gnu.org>
7934
7935 * eshell/esh-var.el (eshell-variable-aliases-list): Fix doc typo.
7936
7937 2013-09-13 Glenn Morris <rgm@gnu.org>
7938
7939 * dired-x.el (dired-guess-shell-alist-user): Doc fix.
7940 (dired-guess-default): Make `file' available in the env. (Bug#15363)
7941
7942 2013-09-13 Dmitry Antipov <dmantipov@yandex.ru>
7943
7944 * frame.el (x-focus-frame): Mark as declared in frame.c.
7945
7946 2013-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
7947
7948 * ls-lisp.el: Use advice-add.
7949 (original-insert-directory): Remove.
7950 (ls-lisp--insert-directory): Rename from insert-directory; add
7951 `orig-fun' argument.
7952 (insert-directory): Advise.
7953
7954 2013-09-13 Eli Zaretskii <eliz@gnu.org>
7955
7956 * term.el (term-emulate-terminal): Decode the command string
7957 before passing it to term-command-hook. (Bug#15337)
7958
7959 2013-09-13 Glenn Morris <rgm@gnu.org>
7960
7961 * eshell/esh-util.el (ange-cache): Move declaration earlier.
7962
7963 * eshell/esh-ext.el (eshell-search-path): Declare.
7964
7965 * eshell/em-prompt.el (eshell/pwd): Autoload it.
7966 Otherwise an error occurs if eshell-dirs module not loaded.
7967
7968 * progmodes/gdb-mi.el (gud-cont, gud-step): Declare.
7969
7970 2013-09-13 Michael Albinus <michael.albinus@gmx.de>
7971
7972 * net/tramp.el (tramp-check-proper-method-and-host): Rename it from
7973 `tramp-check-proper-host'. Check for a valid method name.
7974
7975 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
7976 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
7977 * net/tramp-sh.el (tramp-maybe-open-connection):
7978 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Call it.
7979
7980 * net/tramp-cache.el (tramp-cache-print): Don't print text properties
7981 also for hash values.
7982
7983 2013-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
7984
7985 * term/ns-win.el (parameters): Don't declare as dynamic.
7986 (before-make-frame-hook): Don't add ineffective function.
7987
7988 * eshell/*.el: Use lexical-binding (bug#15231).
7989
7990 2013-09-12 Kenichi Handa <handa@gnu.org>
7991
7992 * composite.el (compose-gstring-for-graphic): Handle enclosing mark.
7993
7994 2013-09-12 Glenn Morris <rgm@gnu.org>
7995
7996 * vc/vc-svn.el (vc-svn-dir-status-files, vc-svn-dir-extra-headers)
7997 (vc-svn-ignore, vc-svn-retrieve-tag): Mark unused arguments.
7998
7999 * subr.el (do-after-load-evaluation): Also give compiler warnings
8000 when obsolete files are used (except by obsolete files).
8001
8002 * vc/vc-svn.el (vc-svn-parse-status): If there are multiple files
8003 in the status output, assume `filename' is the first. (Bug#15322)
8004
8005 * vc/vc.el (vc-deduce-fileset): Doc fix.
8006
8007 * calc/calc-help.el (Info-goto-node):
8008 * progmodes/cperl-mode.el (Info-find-node):
8009 * vc/ediff.el (Info-goto-node): Update declarations.
8010
8011 * vc/vc-dispatcher.el (vc-dir-refresh): Declare.
8012
8013 * vc/vc-bzr.el (vc-compilation-mode): Declare.
8014 (vc-bzr-pull): Require vc-dispatcher.
8015 * vc/vc-git.el (vc-compilation-mode): Declare.
8016 (vc-git-pull): Require vc-dispatcher.
8017
8018 * progmodes/ruby-mode.el (ruby-syntax-propertize-function): Declare.
8019
8020 * progmodes/octave.el (help-button-action): Declare.
8021
8022 * shell.el (shell-directory-tracker): Output error as a message
8023 rather than just returning it as a string.
8024 (shell-process-pushd): Remove useless use of message.
8025
8026 * dframe.el (dframe-timer-fn):
8027 * files.el (dir-locals-read-from-file):
8028 * mpc.el (mpc--status-timer-run, mpc--status-idle-timer-run)
8029 (mpc-format):
8030 * reveal.el (reveal-post-command):
8031 * saveplace.el (load-save-place-alist-from-file):
8032 * shell.el (shell-resync-dirs):
8033 * w32-common-fns.el (x-get-selection-value):
8034 * emacs-lisp/copyright.el (copyright-find-copyright):
8035 * emacs-lisp/eldoc.el (eldoc-print-current-symbol-info):
8036 * emulation/tpu-edt.el (tpu-copy-keyfile):
8037 * play/bubbles.el (bubbles--mark-neighbourhood):
8038 * progmodes/executable.el
8039 (executable-make-buffer-file-executable-if-script-p):
8040 * term/pc-win.el (x-get-selection-value): Use with-demoted-errors.
8041
8042 2013-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
8043
8044 Cleanup Eshell to rely less on dynamic scoping.
8045 * eshell/esh-opt.el (eshell-eval-using-options): Don't bind usage-msg,
8046 last-value, and ext-command here. Bind `args' closer to `body'.
8047 (temp-args, last-value, usage-msg, ext-command, args): Don't defvar.
8048 (eshell--args): Declare new dynamic var.
8049 (eshell-do-opt): Add argument `args'. Bind our own usage-msg,
8050 last-value, and ext-command. Pass `args' to `body'.
8051 (eshell-process-args): Bind eshell--args.
8052 (eshell-set-option): Use eshell--args.
8053 * eshell/eshell.el (eshell): Use derived-mode-p.
8054 * eshell/esh-var.el (eshell-parse-variable): Use backquote.
8055 (eshell-parse-variable-ref): Remove unused vars `end' and `err'.
8056 (eshell-glob-function): Declare.
8057 * eshell/esh-util.el: Require cl-lib.
8058 (eshell-read-hosts-file): Avoid add-to-list.
8059 * eshell/esh-cmd.el (eshell-parse-lisp-argument): Remove unused var
8060 `err'.
8061 * eshell/em-unix.el (compilation-scroll-output, locate-history-list):
8062 Declare.
8063 (eshell/diff): Remove unused var `err'.
8064 * eshell/em-rebind.el (eshell-delete-backward-char): Remove unused arg
8065 `killflag'.
8066 * eshell/em-pred.el (eshell-parse-modifiers): Remove unused var `err'.
8067 * eshell/em-ls.el (eshell-ls-highlight-alist): Move defvars before
8068 first use.
8069 * eshell/em-glob.el (eshell-glob-matches, message-shown):
8070 Move declaration before first use.
8071 * eshell/em-alias.el (eshell-maybe-replace-by-alias): Use backquotes.
8072 * autorevert.el (auto-revert-notify-handler): Use `cl-dolist' since we
8073 rely on cl-return.
8074
8075 2013-09-12 Glenn Morris <rgm@gnu.org>
8076
8077 * term/ns-win.el (global-map): Remove binding for ispell-next,
8078 deleted 1999-05-29. (Bug#15357)
8079
8080 2013-09-11 Glenn Morris <rgm@gnu.org>
8081
8082 * echistory.el (electric-command-history): Remove call to deleted func.
8083
8084 * play/landmark.el (landmark-mode): Fix typos.
8085
8086 * vc/vc-cvs.el (cvs-append-to-ignore): Fix arg spec.
8087 Check cvs-sort-ignore-file is bound.
8088
8089 * savehist.el: No need for cl when compiling on Emacs.
8090
8091 2013-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
8092
8093 * eshell/esh-mode.el (eshell-mode-syntax-table): Fix up initialization
8094 (bug#15338).
8095 (eshell-self-insert-command, eshell-send-invisible):
8096 Remove unused argument.
8097 (eshell-handle-control-codes): Remove unused var `orig'.
8098 Avoid delete-backward-char.
8099
8100 * files.el (set-auto-mode): Simplify a bit further.
8101
8102 2013-09-11 Glenn Morris <rgm@gnu.org>
8103
8104 * files.el (interpreter-mode-alist): Remove \\` \\' parts.
8105 (set-auto-mode): Don't regexp-quote elements.
8106 * progmodes/python.el (interpreter-mode-alist): Remove \\` \\'.
8107 * progmodes/cc-mode.el (interpreter-mode-alist):
8108 * progmodes/ruby-mode.el (interpreter-mode-alist):
8109 Revert previous change.
8110
8111 2013-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
8112
8113 * play/snake.el (snake-mode):
8114 * play/mpuz.el (mpuz-mode):
8115 * play/landmark.el (lm-mode):
8116 * play/blackbox.el (blackbox-mode):
8117 * play/5x5.el (5x5-mode):
8118 * obsolete/options.el (Edit-options-mode):
8119 * net/quickurl.el (quickurl-list-mode):
8120 * net/newst-treeview.el (newsticker-treeview-mode):
8121 * mail/rmailsum.el (rmail-summary-mode):
8122 * mail/mspools.el (mspools-mode):
8123 * locate.el (locate-mode):
8124 * ibuffer.el (ibuffer-mode):
8125 * emulation/ws-mode.el (wordstar-mode):
8126 * emacs-lisp/debug.el (debugger-mode):
8127 * array.el (array-mode):
8128 * net/eudc.el (eudc-mode): Use define-derived-mode.
8129 * net/mairix.el (mairix-searches-mode-font-lock-keywords):
8130 Move initialization into declaration.
8131 (mairix-searches-mode): Use define-derived-mode.
8132 * net/eudc-hotlist.el (eudc-hotlist-mode): Use define-derived-mode.
8133 (eudc-edit-hotlist): Use dolist.
8134 * man.el (Man-mode-syntax-table): Rename from man-mode-syntax-table.
8135 (Man-mode): Use define-derived-mode.
8136 * info.el (Info-edit-mode-map): Rename from Info-edit-map.
8137 (Info-edit-mode): Use define-derived-mode.
8138 (Info-cease-edit): Use Info-mode.
8139 * eshell/esh-mode.el (eshell-mode-syntax-table): Move initialization
8140 into declaration.
8141 (eshell-mode): Use define-derived-mode.
8142 * chistory.el (command-history-mode-map): Rename from
8143 command-history-map.
8144 (command-history-mode): Use define-derived-mode.
8145 (Command-history-setup): Remove function.
8146 * calc/calc.el (calc-trail-mode-map): New var.
8147 (calc-trail-mode): Use define-derived-mode.
8148 (calc-trail-buffer): Set calc-main-buffer manually.
8149 * bookmark.el (bookmark-insert-annotation): New function.
8150 (bookmark-edit-annotation): Use it.
8151 (bookmark-edit-annotation-mode): Make it a proper major mode.
8152 (bookmark-send-edited-annotation): Use derived-mode-p.
8153 * arc-mode.el (archive-mode): Move kill-all-local-variables a tiny bit
8154 closer to its ideal place. Use \' to match EOS.
8155
8156 * profiler.el (profiler-calltree-find): Use function-equal.
8157
8158 2013-09-10 Glenn Morris <rgm@gnu.org>
8159
8160 * files.el (interpreter-mode-alist): Convert to regexps.
8161 (set-auto-mode): Adapt for this. (Bug#15306)
8162 * progmodes/cperl-mode.el (cperl-clobber-mode-lists):
8163 Comment out unused variable.
8164 * progmodes/cc-mode.el (interpreter-mode-alist):
8165 * progmodes/python.el (interpreter-mode-alist):
8166 * progmodes/ruby-mode.el (interpreter-mode-alist): Convert to regexps.
8167 * progmodes/sh-script.el (sh-set-shell):
8168 No longer use interpreter-mode-alist to get list of shells.
8169
8170 * progmodes/cc-mode.el (awk-mode): Remove duplicate autoload.
8171
8172 2013-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
8173
8174 * simple.el: Use set-temporary-overlay-map for universal-argument.
8175 (universal-argument-map): Don't use default-bindings (bug#15317).
8176 Bind switch-frame explicitly. Replace universal-argument-minus with
8177 a conditional binding.
8178 (universal-argument-num-events, saved-overriding-map): Remove.
8179 (restore-overriding-map): Remove.
8180 (universal-argument--mode): Rename from save&set-overriding-map,
8181 and rewrite.
8182 (universal-argument, universal-argument-more, negative-argument)
8183 (digit-argument): Adjust accordingly.
8184 (universal-argument-minus): Remove.
8185 (universal-argument-other-key): Remove.
8186
8187 * subr.el (with-demoted-errors): Add `format' argument.
8188
8189 2013-09-10 Michael Albinus <michael.albinus@gmx.de>
8190
8191 * net/tramp.el (tramp-cleanup): Remove. Functionality added to
8192 `tramp-cleanup-connection'.
8193
8194 * net/tramp-cmds.el (tramp-cleanup-connection): Add optional
8195 parameters KEEP-DEBUG and KEEP-PASSWORD.
8196
8197 * net/tramp.el (tramp-file-name-handler):
8198 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
8199 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
8200 (tramp-maybe-open-connection):
8201 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
8202 Use `tramp-cleanup-connection'.
8203
8204 * net/tramp-sh.el (tramp-maybe-open-connection):
8205 Catch 'uname-changed inside the progress reporter.
8206
8207 2013-09-10 Glenn Morris <rgm@gnu.org>
8208
8209 * simple.el (read-minibuffer): Unbreak it. (Bug#15318)
8210
8211 * dired-x.el (dired-mark-sexp): Unbreak for systems where ls
8212 returns "alternate access method" in mode (eg "-rw-r--r--.").
8213
8214 2013-09-08 Glenn Morris <rgm@gnu.org>
8215
8216 * saveplace.el (load-save-place-alist-from-file):
8217 Demote errors. (Bug#15305)
8218
8219 2013-09-08 Michael Albinus <michael.albinus@gmx.de>
8220
8221 Improve compatibility with older Emacsen, and XEmacs.
8222
8223 * net/tramp.el (tramp-find-method, tramp-find-user): Call `propertize'
8224 only if it is bound. It isn't for XEmacs.
8225 (with-tramp-progress-reporter): Do not let-bind `result'.
8226 This yields to scoping errors in XEmacs.
8227 (tramp-handle-make-auto-save-file-name): New function, moved from
8228 tramp-sh.el.
8229
8230 * net/tramp-adb.el (tramp-adb-file-name-handler-alist): Add handler
8231 for `make-auto-save-file-name'.
8232 (tramp-adb--gnu-switches-to-ash):
8233 Use `tramp-compat-replace-regexp-in-string'.
8234
8235 * net/tramp-cache.el (tramp-cache-print): Call
8236 `substring-no-properties' only if it is bound. It isn't for XEmacs.
8237
8238 * net/tramp-cmds.el (tramp-bug): Call `propertize' only if it is
8239 bound. It isn't for XEmacs.
8240
8241 * net/tramp-compat.el (tramp-compat-copy-file):
8242 Catch `wrong-number-of-arguments' error.
8243 (tramp-compat-replace-regexp-in-string): New defun.
8244
8245 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist): Add handler
8246 for `make-auto-save-file-name'.
8247 (tramp-gvfs-handle-copy-file): Use `tramp-compat-funcall' for
8248 `copy-file'.
8249 (tramp-gvfs-file-gvfs-monitor-file-process-filter)
8250 (tramp-gvfs-file-name): Use `tramp-compat-replace-regexp-in-string'.
8251 (tramp-synce-list-devices): Use `push' instead of `pushnew'.
8252
8253 * net/tramp-gw.el (tramp-gw-open-network-stream):
8254 Use `tramp-compat-replace-regexp-in-string'.
8255
8256 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
8257 Call `tramp-handle-make-auto-save-file-name'.
8258 (tramp-sh-handle-make-auto-save-file-name): Move to tramp.el.
8259 (tramp-sh-file-gvfs-monitor-dir-process-filter)
8260 (tramp-sh-file-inotifywait-process-filter):
8261 Use `tramp-compat-replace-regexp-in-string'.
8262 (tramp-compute-multi-hops): Use `push' instead of `pushnew'.
8263
8264 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add handler
8265 for `make-auto-save-file-name'.
8266 (tramp-smb-handle-copy-directory):
8267 Call `tramp-compat-replace-regexp-in-string'.
8268 (tramp-smb-get-file-entries): Use `push' instead of `pushnew'.
8269 (tramp-smb-handle-copy-file): Improve error message.
8270 (tramp-smb-handle-rename-file): Rename directly only in case
8271 `newname' does not exist yet. This is a restriction of smbclient.
8272 (tramp-smb-maybe-open-connection): Rerun the function only when
8273 `auth-sources' is non-nil.
8274
8275 2013-09-08 Kenichi Handa <handa@gnu.org>
8276
8277 * international/characters.el: Set category "^" (Combining) for
8278 more characters.
8279
8280 2013-09-07 Alan Mackenzie <acm@muc.de>
8281
8282 Correctly fontify Java class constructors.
8283 * progmodes/cc-langs.el (c-type-decl-suffix-key): Now matches ")"
8284 in Java Mode.
8285 (c-recognize-typeless-decls): Set the Java value to t.
8286 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
8287 While handling a "(", add a check for, effectively, Java, and handle a
8288 "typeless" declaration there.
8289
8290 2013-09-07 Roland Winkler <winkler@gnu.org>
8291
8292 * textmodes/bibtex.el (bibtex-biblatex-entry-alist): Add optional
8293 field subtitle for entry type book.
8294
8295 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
8296
8297 * minibuffer.el: Make minibuffer-complete call completion-in-region
8298 rather than other way around.
8299 (completion--some, completion-pcm--find-all-completions):
8300 Don't delay signals when debugging.
8301 (minibuffer-completion-contents): Beware fields within the
8302 minibuffer contents.
8303 (completion-all-sorted-completions): Use defvar-local.
8304 (completion--do-completion, completion--cache-all-sorted-completions)
8305 (completion-all-sorted-completions, minibuffer-force-complete):
8306 Add args `beg' and `end'.
8307 (completion--in-region-1): New fun, extracted from minibuffer-complete.
8308 (minibuffer-complete): Use completion-in-region.
8309 (completion-complete-and-exit): New fun, extracted from
8310 minibuffer-complete-and-exit.
8311 (minibuffer-complete-and-exit): Use it.
8312 (completion--complete-and-exit): Rename from
8313 minibuffer--complete-and-exit.
8314 (completion-in-region--single-word): New function, extracted from
8315 minibuffer-complete-word.
8316 (minibuffer-complete-word): Use it.
8317 (display-completion-list): Make `common-substring' argument obsolete.
8318 (completion--in-region): Call completion--in-region-1 instead of
8319 minibuffer-complete.
8320 (completion-help-at-point): Pass boundaries to
8321 minibuffer-completion-help as args rather than via an overlay.
8322 (completion-pcm--string->pattern): Use `any-delim'.
8323 (completion-pcm--optimize-pattern): New function.
8324 (completion-pcm--pattern->regex): Handle `any-delim'.
8325 * icomplete.el (icomplete-forward-completions)
8326 (icomplete-backward-completions, icomplete-completions):
8327 Adjust calls to completion-all-sorted-completions and
8328 completion--cache-all-sorted-completions.
8329 (icomplete-with-completion-tables): Default to t.
8330 * emacs-lisp/crm.el (crm--current-element): Rename from
8331 crm--select-current-element. Don't put an overlay but return the
8332 boundaries instead.
8333 (crm--completion-command): Take two new args to bind to the boundaries.
8334 (crm-completion-help): Adjust accordingly.
8335 (crm-complete): Use completion-in-region.
8336 (crm-complete-word): Use completion-in-region--single-word.
8337 (crm-complete-and-exit): Use completion-complete-and-exit.
8338
8339 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
8340
8341 * dired-x.el (dired-mark-sexp): Bind the vars lexically rather
8342 than dynamically.
8343
8344 2013-09-06 Juri Linkov <juri@jurta.org>
8345
8346 * info.el (Info-display-images-node): When image file doesn't exist
8347 display text version of the image if it's provided in the Info file.
8348 Otherwise, display the location of missing image from SRC attribute.
8349 Add help-echo text property from ALT attribute. (Bug#15279)
8350
8351 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
8352
8353 * abbrev.el (edit-abbrevs-mode-map): Rename from edit-abbrevs-map.
8354 (edit-abbrevs-mode): Use define-derived-mode.
8355
8356 * epa.el (epa--encode-coding-string, epa--decode-coding-string)
8357 (epa--select-safe-coding-system, epa--derived-mode-p): Make it obvious
8358 that it's defined.
8359 (epa-key-list-mode, epa-key-mode, epa-info-mode):
8360 Use define-derived-mode.
8361
8362 * epg.el (epg-start-encrypt): Minor CSE simplification.
8363
8364 2013-09-06 William Xu <william.xwl@gmail.com>
8365
8366 * arc-mode.el: Add support for 7za (bug#15264).
8367 (archive-7z-program): New var.
8368 (archive-zip-extract, archive-zip-expunge, archive-zip-update)
8369 (archive-zip-update-case, archive-7z-extract, archive-7z-expunge)
8370 (archive-7z-update, archive-zip-extract, archive-7z-summarize): Use it.
8371
8372 2013-09-06 Michael Albinus <michael.albinus@gmx.de>
8373
8374 Remove URL syntax.
8375
8376 * net/tramp.el (tramp-syntax, tramp-prefix-format)
8377 (tramp-postfix-method-format, tramp-prefix-ipv6-format)
8378 (tramp-postfix-ipv6-format, tramp-prefix-port-format)
8379 (tramp-postfix-host-format, tramp-file-name-regexp)
8380 (tramp-completion-file-name-regexp)
8381 (tramp-completion-dissect-file-name)
8382 (tramp-handle-substitute-in-file-name): Remove 'url case.
8383 (tramp-file-name-regexp-url)
8384 (tramp-completion-file-name-regexp-url): Remove constants.
8385
8386 2013-09-06 Glenn Morris <rgm@gnu.org>
8387
8388 * replace.el (replace-string): Doc fix re start/end. (Bug#15275)
8389
8390 2013-09-05 Dmitry Gutov <dgutov@yandex.ru>
8391
8392 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Move "Perl-ish
8393 keywords" below "here-doc beginnings" (Bug#15270).
8394
8395 2013-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
8396
8397 * subr.el (pop): Use `car-safe'.
8398 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Remove hack
8399 to detect unused `pop' return value.
8400
8401 * progmodes/python.el (python-nav-beginning-of-block): Remove unused
8402 var `block-regexp'.
8403 (python-nav--forward-sexp): Remove unused var `re-search-fn'.
8404 (python-fill-string): Remove unused var `marker'.
8405 (python-skeleton-add-menu-items): Remove unused var `items'.
8406
8407 * international/mule-cmds.el: Require CL.
8408 (find-coding-systems-for-charsets): Avoid add-to-list.
8409 (sanitize-coding-system-list): New function, extracted from
8410 select-safe-coding-system-interactively.
8411 (select-safe-coding-system-interactively): Use it.
8412 (read-input-method-name): Accept symbols for `default'.
8413
8414 * emacs-lisp/advice.el (defadvice): Add indent rule.
8415
8416 2013-09-05 Daniel Hackney <dan@haxney.org>
8417
8418 * dired-x.el:
8419 * net/ange-ftp.el:
8420 * net/browse-url.el:
8421 * net/dbus.el:
8422 * net/eudc.el:
8423 * net/eudcb-ldap.el:
8424 * net/eww.el:
8425 * net/imap.el:
8426 * printing.el:
8427 * vc/ediff-diff.el:
8428 * vc/ediff-init.el:
8429 * vc/ediff-merg.el:
8430 * vc/ediff-mult.el:
8431 * vc/ediff-util.el:
8432 * vc/ediff-wind.el:
8433 * vc/ediff.el:
8434 * vc/emerge.el:
8435 * vc/pcvs.el:
8436 * vc/vc-annotate.el: Prefix unused arguments with `_' to silence
8437 byte compiler. Remove some unused let-bound variables.
8438
8439 2013-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
8440
8441 * emacs-lisp/cconv.el: Use `car-safe' rather than `car' to access
8442 a "ref-cell", since it gets better optimized (bug#14883).
8443
8444 2013-09-05 Glenn Morris <rgm@gnu.org>
8445
8446 * progmodes/cc-awk.el (c-forward-sws): Declare.
8447
8448 2013-09-04 Glenn Morris <rgm@gnu.org>
8449
8450 * generic-x.el [rul-generic-mode]: Require cc-mode.
8451 (c++-mode-syntax-table): Declare.
8452 (rul-generic-mode-syntax-table): Init in the defvar.
8453
8454 2013-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
8455
8456 * vc/vc-dispatcher.el (vc-run-delayed): New macro.
8457 (vc-do-command, vc-set-async-update):
8458 * vc/vc-mtn.el (vc-mtn-dir-status):
8459 * vc/vc-hg.el (vc-hg-dir-status, vc-hg-dir-status-files)
8460 (vc-hg-pull, vc-hg-merge-branch):
8461 * vc/vc-git.el (vc-git-dir-status-goto-stage, vc-git-pull)
8462 (vc-git-merge-branch):
8463 * vc/vc-cvs.el (vc-cvs-print-log, vc-cvs-dir-status)
8464 (vc-cvs-dir-status-files):
8465 * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch, vc-bzr-dir-status)
8466 (vc-bzr-dir-status-files):
8467 * vc/vc-arch.el (vc-arch-dir-status): Use vc-run-delayed.
8468 * vc/vc-annotate.el: Use lexical-binding.
8469 (vc-annotate-display-select, vc-annotate): Use vc-run-delayed.
8470 (vc-sentinel-movepoint): Declare.
8471 (vc-annotate): Don't use `goto-line'.
8472 * vc/vc.el (vc-diff-internal): Prefer a closure to `(lambda...).
8473 (vc-diff-internal, vc-log-internal-common): Use vc-run-delayed.
8474 (vc-sentinel-movepoint): Declare.
8475 * vc/vc-svn.el: Use lexical-binding.
8476 (vc-svn-dir-status, vc-svn-dir-status-files): Use vc-run-delayed.
8477 * vc/vc-sccs.el:
8478 * vc/vc-rcs.el: Use lexical-binding.
8479
8480 * autorevert.el (auto-revert-notify-handler): Explicitly ignore
8481 `deleted'. Don't drop errors silently.
8482
8483 * emacs-lisp/gv.el (gv-get): Warn about CL-compiled places.
8484
8485 2013-09-04 Xue Fuqiao <xfq.free@gmail.com>
8486
8487 * vc/vc.el (vc-ignore): Rewrite.
8488 (vc-default-ignore): New function.
8489 (vc-default-ignore-completion-table): Use find-ignore-file.
8490
8491 * vc/vc-bzr.el (vc-bzr-ignore, vc-bzr-ignore-completion-table):
8492 * vc/vc-git.el (vc-git-ignore, vc-git-ignore-completion-table):
8493 * vc/vc-hg.el (vc-hg-ignore, vc-hg-ignore-completion-table):
8494 Remove. Most code moved to vc.el.
8495
8496 2013-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
8497
8498 * net/tramp-gvfs.el (tramp-gvfs-mount-spec, tramp-synce-list-devices):
8499 * net/tramp-smb.el (tramp-smb-get-file-entries):
8500 * net/tramp-sh.el (tramp-sh-handle-insert-directory)
8501 (tramp-compute-multi-hops): Fix misuses of `add-to-list'.
8502
8503 * net/eww.el (eww-display-raw): Remove unused argument `charset'.
8504 Update call to it.
8505 (eww-change-select): Remove unused var `properties'.
8506 (eww-make-unique-file-name): Remove unused var `base'.
8507
8508 * finder.el (finder-compile-keywords): Don't mess with windows.
8509
8510 * calculator.el (calculator-funcall): Fix typo in last change.
8511
8512 * vc/vc-git.el (vc-git-checkin): Make it possible to commit a merge.
8513
8514 * emacs-lisp/package.el (package-activate-1): Don't let a missing
8515 <pkg>-autoloads.el file stop us.
8516
8517 * net/tramp.el (with-parsed-tramp-file-name): Silence compiler
8518 warnings, and factor out common code.
8519
8520 2013-09-03 Dmitry Gutov <dgutov@yandex.ru>
8521
8522 * progmodes/ruby-mode.el (ruby-calculate-indent): Consider
8523 two-character operators and whether the character preceding them
8524 changes their meaning (Bug#15208).
8525
8526 2013-09-02 Fabián Ezequiel Gallina <fgallina@gnu.org>
8527
8528 Format code sent to Python shell for robustness.
8529 * progmodes/python.el (python-shell-buffer-substring):
8530 New function.
8531 (python-shell-send-region, python-shell-send-buffer): Use it.
8532
8533 2013-09-02 Michael Albinus <michael.albinus@gmx.de>
8534
8535 * net/tramp-compat.el (tramp-compat-user-error): Move it ...
8536 * net/tramp.el (tramp-user-error): ... here.
8537 (tramp-find-method, tramp-check-proper-host)
8538 (tramp-dissect-file-name, tramp-debug-message)
8539 (tramp-handle-shell-command):
8540 * net/tramp-adb.el (tramp-adb-handle-shell-command):
8541 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler): Adapt callees.
8542
8543 * net/tramp-cache.el (tramp-cache-print): Don't print text properties.
8544
8545 2013-09-02 Martin Rudalics <rudalics@gmx.at>
8546
8547 * avoid.el (mouse-avoidance-point-position)
8548 (mouse-avoidance-too-close-p): Handle case where posn-at-point
8549 returns nil.
8550
8551 2013-09-02 Fabián Ezequiel Gallina <fgallina@gnu.org>
8552
8553 * progmodes/python.el (python-shell-completion-get-completions):
8554 Drop use of deleted `comint-last-prompt-overlay'.
8555 (python-nav-if-name-main): New command.
8556
8557 2013-09-01 Glenn Morris <rgm@gnu.org>
8558
8559 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
8560 Avoid leading space in $wins. Otherwise the sed command used by
8561 eg compile-main ends up containing "/*.el". (Bug#15170)
8562
8563 * frame.el (frame-background-mode): Doc fix. (Bug#15226)
8564
8565 2013-08-30 Glenn Morris <rgm@gnu.org>
8566
8567 * emacs-lisp/bytecomp.el (byte-recompile-directory):
8568 Fix is-this-a-directory logic. (Bug#15220)
8569
8570 2013-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
8571
8572 * textmodes/css-mode.el: Use SMIE.
8573 (css-smie-grammar): New var.
8574 (css-smie--forward-token, css-smie--backward-token)
8575 (css-smie-rules): New functions.
8576 (css-mode): Use them.
8577 (css-navigation-syntax-table): Remove var.
8578 (css-backward-sexp, css-forward-sexp, css-indent-calculate-virtual)
8579 (css-indent-calculate, css-indent-line): Remove functions.
8580
8581 Misc changes to reduce use of `(lambda...); and other cleanups.
8582 * cus-edit.el: Use lexical-binding.
8583 (customize-push-and-save, customize-apropos)
8584 (custom-buffer-create-internal): Use closures.
8585 * progmodes/bat-mode.el (bat-mode-syntax-table): "..." are strings.
8586 * progmodes/ada-xref.el: Use setq.
8587 * net/tramp.el (with-tramp-progress-reporter): Avoid setq.
8588 * dframe.el: Use lexical-binding.
8589 (dframe-frame-mode): Fix calling convention for hooks. Use a closure.
8590 * speedbar.el (speedbar-frame-mode): Adjust call accordingly.
8591 * descr-text.el: Use lexical-binding.
8592 (describe-text-widget, describe-text-sexp, describe-property-list):
8593 Use closures.
8594 * comint.el (comint-history-isearch-push-state): Use a closure.
8595 * calculator.el: Use lexical-binding.
8596 (calculator-number-to-string): Make it work with lexical-binding.
8597 (calculator-funcall): Same and use cl-letf.
8598
8599 * emacs-lisp/lisp.el (lisp--company-doc-buffer)
8600 (lisp--company-doc-string, lisp--company-location): New functions.
8601 (lisp-completion-at-point): Use them to improve Company support.
8602
8603 * progmodes/ruby-mode.el (ruby-smie-grammar): Add rule for formal
8604 params of lambda expressions.
8605 (ruby-smie--implicit-semi-p): Refine rule (bug#15208).
8606 (ruby-smie--opening-pipe-p): New function.
8607 (ruby-smie--forward-token, ruby-smie--backward-token): Handle Ruby
8608 symbols and matched |...| for formal params.
8609 (ruby-smie-rules): Don't let the formal params of a "do" prevent it
8610 from being treated as hanging. Handle "rescue".
8611
8612 2013-08-29 Glenn Morris <rgm@gnu.org>
8613
8614 * progmodes/cc-engine.el (c-pull-open-brace):
8615 Move definition before use.
8616
8617 2013-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
8618
8619 * emacs-lisp/cl-macs.el (cl-defsubst): Make it clear that args
8620 are immutable. Don't use `unsafe' any more.
8621 (cl--defsubst-expand): Don't substitute at the same time as keeping
8622 a residual unused let-binding. Don't use `unsafe' any more.
8623
8624 2013-08-29 Glenn Morris <rgm@gnu.org>
8625
8626 * calendar/cal-china.el (calendar-chinese-year-cache):
8627 Recenter on 2015.
8628
8629 * nxml/nxml-util.el (nxml-debug-clear-inside):
8630 Use cl-loop rather than loop.
8631
8632 * net/eww.el (eww-mode-map): Lower-case menu bar entries look bad.
8633
8634 * progmodes/sh-script.el (sh-builtins) <bash>: Add some bash4-isms.
8635
8636 2013-08-28 Glenn Morris <rgm@gnu.org>
8637
8638 * progmodes/antlr-mode.el: No need to require cc-mode twice.
8639
8640 * progmodes/cc-bytecomp.el (cc-require): Handle uncompiled case.
8641
8642 * progmodes/cc-mode.el (c-define-abbrev-table): Handle NAME unbound.
8643
8644 2013-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
8645
8646 * simple.el (repeat-complex-command--called-interactively-skip):
8647 New function.
8648 (repeat-complex-command): Use it (bug#14136).
8649
8650 * progmodes/cc-mode.el: Minor cleanup of var declarations.
8651 (c-define-abbrev-table): Add `doc' argument.
8652 (c-mode-abbrev-table, c++-mode-abbrev-table)
8653 (objc-mode-abbrev-table, java-mode-abbrev-table)
8654 (idl-mode-abbrev-table, pike-mode-abbrev-table)
8655 (awk-mode-abbrev-table): Use it.
8656 (c-mode-syntax-table, c-mode-map, c++-mode-syntax-table)
8657 (c++-mode-map, objc-mode-syntax-table, objc-mode-map)
8658 (java-mode-syntax-table, java-mode-map, idl-mode-syntax-table)
8659 (idl-mode-map, pike-mode-syntax-table, pike-mode-map, awk-mode-map):
8660 Move initialization into the declaration; and remove any
8661 autoload cookie.
8662
8663 * epg.el (epg--process-filter): Use with-current-buffer, save-excursion
8664 and dynamic let binding.
8665
8666 * vc/smerge-mode.el: Remove redundant :group args.
8667
8668 * emacs-lisp/package.el (package-activate-1): Don't add unnecessarily
8669 to load-path.
8670
8671 2013-08-28 Juri Linkov <juri@jurta.org>
8672
8673 * isearch.el (isearch-reread-key-sequence-naturally): Use non-nil
8674 arg DONT-DOWNCASE-LAST of `read-key-sequence'.
8675 (isearch-other-meta-char): Handle an undefined shifted printing
8676 character by downshifting it. (Bug#15200)
8677
8678 2013-08-28 Juri Linkov <juri@jurta.org>
8679
8680 * isearch.el (isearch-search): Change regexp error message for
8681 non-regexp searches. (Bug#15166)
8682
8683 2013-08-28 Paul Eggert <eggert@cs.ucla.edu>
8684
8685 * Makefile.in (SHELL): Now @SHELL@, not /bin/sh,
8686 for portability to hosts where /bin/sh has problems.
8687
8688 2013-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
8689
8690 * emacs-lisp/cconv.el (cconv--analyse-function): Improve warning.
8691
8692 2013-08-27 Juri Linkov <juri@jurta.org>
8693
8694 * isearch.el (isearch-other-meta-char): Don't store kmacro commands
8695 in the keyboard macro. (Bug#15126)
8696
8697 2013-08-27 Juri Linkov <juri@jurta.org>
8698
8699 * isearch.el (isearch-quote-char): Comment out converting unibyte
8700 to multibyte, thus syncing with its `quoted-insert' counterpart.
8701 (Bug#15166)
8702
8703 2013-08-27 Martin Rudalics <rudalics@gmx.at>
8704
8705 * window.el (display-buffer-use-some-window): Add missing
8706 argument in call of get-largest-window (Bug#15185).
8707 Reported by Stephen Leake.
8708
8709 2013-08-27 Glenn Morris <rgm@gnu.org>
8710
8711 * emacs-lisp/package.el (package-buffer-info): Fix message typo.
8712
8713 2013-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
8714
8715 * progmodes/python.el (python-font-lock-keywords): Don't return nil
8716 from a matcher-function unless there's no more matches (bug#15161).
8717
8718 2013-08-26 Michael Albinus <michael.albinus@gmx.de>
8719
8720 * minibuffer.el: Revert change from 2013-08-20.
8721
8722 * net/tramp.el (tramp-find-method, tramp-find-user): Mark result
8723 with text property `tramp-default', if appropriate.
8724 (tramp-check-proper-host): New defun.
8725 (tramp-dissect-file-name): Do not check hostname. Revert change
8726 of 2013-03-18.
8727 (tramp-backtrace): Make VEC-OR-PROC optional.
8728
8729 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
8730 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
8731 * net/tramp-sh.el (tramp-maybe-open-connection):
8732 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
8733 Apply `tramp-check-proper-host'.
8734
8735 2013-08-26 Tassilo Horn <tsdh@gnu.org>
8736
8737 * epa-hook.el (epa-file-encrypt-to): Quote `safe-local-variable'
8738 lambda expression in order to have `describe-variable' display it.
8739
8740 2013-08-26 Michael Albinus <michael.albinus@gmx.de>
8741
8742 * net/tramp-sh.el (tramp-sh-handle-verify-visited-file-modtime):
8743 BUF can be optional. (Bug#15186)
8744
8745 2013-08-25 Xue Fuqiao <xfq.free@gmail.com>
8746
8747 * progmodes/flymake.el (flymake-get-real-file-name-function):
8748 Fix broken customization. (Bug#15184)
8749
8750 2013-08-25 Alan Mackenzie <acm@muc.de>
8751
8752 Improve indentation of bracelists defined by macros (without "=").
8753
8754 * progmodes/cc-engine.el (c-inside-bracelist-p): When a macro
8755 expansion begins with "{", regard it as bracelist when it doesn't
8756 contain a ";".
8757
8758 Parse C++ inher-intro when there's a template split over 2 lines.
8759
8760 * progmodes/cc-engine.el (c-guess-basic-syntax CASE 5C): Code more
8761 rigorously the search for "class" etc. followed by ":".
8762
8763 * progmodes/cc-langs.el (c-opt-<>-sexp-key): Make the value for
8764 random languages a regexp which never matches rather than nil.
8765
8766 Handle "/"s more accurately in test for virtual semicolons (AWK Mode).
8767
8768 * progmodes/cc-awk.el (c-awk-one-line-possibly-open-string-re)
8769 (c-awk-regexp-one-line-possibly-open-char-list-re)
8770 (c-awk-one-line-possibly-open-regexp-re)
8771 (c-awk-one-line-non-syn-ws*-re): Remove.
8772 (c-awk-possibly-open-string-re, c-awk-non-/-syn-ws*-re)
8773 (c-awk-space*-/-re, c-awk-space*-regexp-/-re)
8774 (c-awk-space*-unclosed-regexp-/-re): New constants.
8775 (c-awk-at-vsemi-p): Reformulate better to recognize "/"s which
8776 aren't regexp delimiters.
8777
8778 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Add in
8779 handling for a rare situation in AWK Mode involving unterminated
8780 strings/regexps.
8781
8782 2013-08-23 Glenn Morris <rgm@gnu.org>
8783
8784 * files.el (auto-mode-alist): Use sh-mode for .bash_history.
8785
8786 * files.el (interpreter-mode-alist): Use tcl-mode for expect scripts.
8787
8788 * files.el (create-file-buffer): If the result would begin with
8789 spaces, prepend a "|" instead of removing them. (Bug#15162)
8790
8791 2013-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
8792
8793 * textmodes/fill.el (fill-match-adaptive-prefix): Don't throw away
8794 text-properties (bug#15155).
8795
8796 * calc/calc-keypd.el (calc-keypad-execute): `x-flush-mouse-queue' doesn't
8797 exist any more.
8798 (calc-keypad-redraw): Remove unused var `pad'.
8799 (calc-keypad-press): Remove unused var `menu'.
8800
8801 2013-08-23 Martin Rudalics <rudalics@gmx.at>
8802
8803 * window.el (display-buffer-pop-up-frame):
8804 Call pop-up-frame-function with BUFFER current so `make-frame' will
8805 use it as the new frame's buffer (Bug#15133).
8806
8807 2013-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
8808
8809 * calendar/timeclock.el: Minor cleanups.
8810 (timeclock-ask-before-exiting, timeclock-use-display-time):
8811 Use `symbol'.
8812 (timeclock-modeline-display): Define as alias before the
8813 actual definition.
8814 (timeclock-mode-line-display): Use define-minor-mode.
8815 (timeclock-day-list-template): Make it a function, add an argument.
8816 (timeclock-day-list-required, timeclock-day-list-length)
8817 (timeclock-day-list-debt, timeclock-day-list-span)
8818 (timeclock-day-list-break): Adjust calls accordingly.
8819
8820 2013-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
8821
8822 * emacs-lisp/pp.el (pp-eval-expression, pp-macroexpand-expression):
8823 Use read--expression so that completion works again.
8824
8825 2013-08-21 Sam Steingold <sds@gnu.org>
8826
8827 Add rudimentary inferior shell interaction
8828 * progmodes/sh-script.el (sh-shell-process): New buffer-local variable.
8829 (sh-set-shell): Reset it.
8830 (sh-show-shell, sh-cd-here, sh-send-line-or-region-and-step):
8831 New commands (bound to C-c C-z, C-c C-d, and C-c C-n).
8832
8833 2013-08-20 Stefan Monnier <monnier@iro.umontreal.ca>
8834
8835 * align.el: Use lexical-binding.
8836 (align-region): Simplify accordingly.
8837
8838 2013-08-20 Michael Albinus <michael.albinus@gmx.de>
8839
8840 * minibuffer.el (completion--sifn-requote): Bind `non-essential'.
8841
8842 * rfn-eshadow.el (rfn-eshadow-update-overlay): Move binding of
8843 `non-essential' up.
8844
8845 2013-08-17 Michael Albinus <michael.albinus@gmx.de>
8846
8847 * net/tramp.el:
8848 * net/tramp-adb.el:
8849 * net/tramp-cmds.el:
8850 * net/tramp-ftp.el:
8851 * net/tramp-gvfs.el:
8852 * net/tramp-gw.el:
8853 * net/tramp-sh.el: Don't wrap external variable declarations by
8854 `eval-when-compile'.
8855
8856 2013-08-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
8857
8858 * net/shr.el (shr-rescale-image): Use ImageMagick even for GIFs
8859 now that Emacs supports ImageMagick animations.
8860
8861 2013-08-16 Michael Albinus <michael.albinus@gmx.de>
8862
8863 * net/tramp-cmds.el (top): Don't declare `buffer-name'.
8864 (tramp-append-tramp-buffers): Rewrite buffer local variables part.
8865
8866 2013-08-16 Martin Rudalics <rudalics@gmx.at>
8867
8868 * window.el (mouse-autoselect-window-select): Do autoselect when
8869 mouse pointer is on margin.
8870
8871 2013-08-16 William Parsons <wbparsons@alum.mit.edu> (tiny change)
8872
8873 * net/ange-ftp.el (ange-ftp-skip-msgs): Add 500 EPSV. (Bug#1972)
8874
8875 2013-08-16 Glenn Morris <rgm@gnu.org>
8876
8877 * net/ange-ftp.el (ange-ftp-good-msgs, ange-ftp-get-pwd):
8878 Handle "Remote Directory" response of some clients. (Bug#15058)
8879
8880 * emacs-lisp/bytecomp.el (byte-compile-make-variable-buffer-local):
8881 Tweak warning. (Bug#14926)
8882
8883 * menu-bar.el (send-mail-item-name, read-mail-item-name): Remove.
8884 (menu-bar-tools-menu): Simplify news and mail items. (Bug#15095)
8885
8886 * image-mode.el (image-mode-map): Add menu items to reverse,
8887 increase, decrease, reset animation speed.
8888 (image--set-speed, image-increase-speed, image-decrease-speed)
8889 (image-reverse-speed, image-reset-speed): New functions.
8890 (image-mode-map): Add bindings for speed commands.
8891
8892 * image.el (image-animate-get-speed, image-animate-set-speed):
8893 New functions.
8894 (image-animate-timeout): Respect image :speed property.
8895
8896 2013-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
8897
8898 * emacs-lisp/debug.el (debugger-setup-buffer): Put point on the
8899 previous line (bug#15101).
8900 (debugger-eval-expression, debugger-record-expression):
8901 Use read--expression (bug#15102).
8902
8903 2013-08-15 Michael Albinus <michael.albinus@gmx.de>
8904
8905 Remove byte compiler warnings, visible when compiling with
8906 `byte-compile-force-lexical-warnings' set to t.
8907
8908 * net/tramp.el (tramp-debug-message, tramp-message, tramp-error)
8909 (tramp-error-with-buffer): Rename ARGS to ARGUMENTS and BUFFER to BUF.
8910 (tramp-handle-unhandled-file-name-directory)
8911 (tramp-handle-file-notify-add-watch, tramp-action-login)
8912 (tramp-action-succeed, tramp-action-permission-denied)
8913 (tramp-action-terminal, tramp-action-process-alive): Prefix unused
8914 arguments with "_".
8915
8916 * net/tramp-adb.el (tramp-adb-parse-device-names)
8917 (tramp-adb-handle-insert-directory, tramp-adb-handle-delete-file)
8918 (tramp-adb-handle-copy-file): Prefix unused arguments with "_".
8919 (tramp-adb-handle-file-truename): Remove unused arguments.
8920
8921 * net/tramp-cache.el (tramp-flush-directory-property)
8922 (tramp-flush-connection-property, tramp-list-connections)
8923 (tramp-parse-connection-properties): Prefix unused arguments with "_".
8924
8925 * net/tramp-compat.el (tramp-compat-make-temp-file):
8926 Rename FILENAME to F.
8927
8928 * net/tramp-gvfs.el (tramp-gvfs-handle-file-notify-add-watch)
8929 (tramp-gvfs-handle-write-region, tramp-bluez-parse-device-names)
8930 (tramp-zeroconf-parse-workstation-device-names)
8931 (tramp-zeroconf-parse-webdav-device-names)
8932 (tramp-synce-parse-device-names): Prefix unused arguments with "_".
8933
8934 * net/tramp-gw.el (tramp-gw-gw-proc-sentinel)
8935 (tramp-gw-aux-proc-sentinel): Prefix unused arguments with "_".
8936
8937 * net/tramp-sh.el (tramp-sh-handle-file-truename): Remove unused
8938 arguments.
8939 (tramp-sh-handle-copy-file, tramp-sh-handle-dired-compress-file)
8940 (tramp-sh-handle-insert-file-contents-literally)
8941 (tramp-sh-handle-file-notify-add-watch): Prefix unused arguments
8942 with "_".
8943 (tramp-do-copy-or-rename-file, tramp-barf-if-no-shell-prompt):
8944 Remove unused variables.
8945
8946 * net/tramp-smb.el (tramp-smb-handle-copy-directory)
8947 (tramp-smb-handle-copy-file, tramp-smb-handle-delete-file)
8948 (tramp-smb-read-file-entry): Prefix unused arguments with "_".
8949
8950 * net/tramp-uu.el (tramp-uu-b64-alphabet, tramp-uu-b64-char-to-byte):
8951 Make them a defconst.
8952 (tramp-uuencode-region): Remove unused variable.
8953
8954 2013-08-14 Juanma Barranquero <lekktu@gmail.com>
8955
8956 * frameset.el (frameset--prop-setter): New function.
8957 (frameset-prop): Add gv-setter declaration.
8958 (frameset-filter-minibuffer): Deal with the case that the minibuffer
8959 parameter was already set in FILTERED. Doc fix.
8960 (frameset--record-minibuffer-relationships): Allow saving a
8961 minibufferless frame without its corresponding minibuffer frame.
8962 (frameset--reuse-frame): Accept a match from an orphaned minibufferless
8963 frame, if the frame id matches.
8964 (frameset--minibufferless-last-p): Sort non-orphaned minibufferless
8965 frames before orphaned ones.
8966 (frameset-restore): Warn about orphaned windows, instead of error out.
8967
8968 2013-08-14 Martin Rudalics <rudalics@gmx.at>
8969
8970 * window.el (window-make-atom): Don't overwrite parameter
8971 already present.
8972 (display-buffer-in-atom-window): Handle special case where we
8973 split an already atomic window.
8974 (window--major-non-side-window, display-buffer-in-side-window)
8975 (window--side-check): Ignore minibuffer window when walking
8976 window tree.
8977 (window-deletable-p): Return 'frame only if no other frame uses
8978 our minibuffer window.
8979 (record-window-buffer): Run buffer-list-update-hook.
8980 (split-window): Make sure window--check-frame won't destroy an
8981 existing atomic window in case the new window gets nested
8982 inside.
8983 (display-buffer-at-bottom): Ignore minibuffer window when
8984 walking window tree. Don't split a side window.
8985 (pop-to-buffer): Don't set-buffer here, the select-window call
8986 should do that.
8987 (mouse-autoselect-window-select): Autoselect only if we are in the
8988 text portion of the window.
8989
8990 2013-08-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
8991
8992 * net/shr.el (shr-parse-image-data): New function to grab both the
8993 data itself and the Content-Type.
8994 (shr-put-image): Use it.
8995
8996 * net/eww.el (eww-display-image): Ditto.
8997
8998 * image.el (image-content-type-suffixes): New variable.
8999
9000 2013-08-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
9001
9002 * progmodes/python.el (python-imenu--build-tree)
9003 (python-imenu--put-parent): Simplify and Fix (GH bug 146).
9004
9005 2013-08-13 Xue Fuqiao <xfq.free@gmail.com>
9006
9007 * simple.el (backward-word): Mention the optional argument.
9008
9009 2013-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
9010
9011 * frameset.el (frameset--make): Rename constructor from make-frameset.
9012 (frameset-p, frameset-valid-p): Don't autoload.
9013 (frameset-valid-p): Use normal accessors.
9014
9015 2013-08-13 Glenn Morris <rgm@gnu.org>
9016
9017 * progmodes/compile.el (compile-command): Tweak example in doc.
9018 * obsolete/scribe.el (scribe-mode):
9019 * progmodes/mixal-mode.el (mixal-mode): Quote buffer name. (Bug#15053)
9020
9021 * mail/feedmail.el (feedmail-confirm-outgoing)
9022 (feedmail-display-full-frame, feedmail-deduce-bcc-where): Fix types.
9023
9024 * cus-start.el (truncate-partial-width-windows): Fix type.
9025
9026 * emulation/viper-init.el (viper-search-scroll-threshold): Fix type.
9027
9028 * net/shr.el (shr-table-horizontal-line): Fix custom type.
9029
9030 2013-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
9031
9032 * emacs-lisp/timer.el (timer--time-setter): New function.
9033 (timer--time): Use it as gv-setter.
9034
9035 * emacs-lisp/gv.el (gv-define-simple-setter): Output warning when
9036 setter is not a symbol.
9037
9038 2013-08-12 Grégoire Jadi <daimrod@gmail.com>
9039
9040 * mail/sendmail.el (sendmail-send-it): Don't kill the error buffer
9041 if sending fails. This makes debugging easier.
9042
9043 2013-08-12 Juanma Barranquero <lekktu@gmail.com>
9044
9045 * xml.el (xml-parse-tag-1): Use looking-at (this reverts change in
9046 2013-08-11T00:07:48Z!lekktu@gmail.com, which breaks the test suite).
9047 https://lists.gnu.org/archive/html/emacs-devel/2013-08/msg00263.html
9048
9049 2013-08-12 Eli Zaretskii <eliz@gnu.org>
9050
9051 * term/w32-win.el (dynamic-library-alist): Add DLLs for zlib.
9052
9053 2013-08-12 Glenn Morris <rgm@gnu.org>
9054
9055 * format.el (format-annotate-function):
9056 Handle read-only text properties in the source. (Bug#14887)
9057
9058 2013-08-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
9059
9060 * net/eww.el (eww-display-html): Ignore coding system errors.
9061 One web site uses "utf-8lias" as the coding system.
9062
9063 2013-08-11 Juanma Barranquero <lekktu@gmail.com>
9064
9065 * frameset.el (frameset-valid-p): Fix check; STATES can indeed be nil.
9066
9067 2013-08-10 Juanma Barranquero <lekktu@gmail.com>
9068
9069 * tutorial.el (tutorial--describe-nonstandard-key): Use string-match-p.
9070 (tutorial--detailed-help): Remove unused local variables.
9071 (tutorial--save-tutorial-to): Use ignore-errors.
9072 (help-with-tutorial): Use looking-at-p.
9073
9074 * view.el (view-buffer-other-window, view-buffer-other-frame):
9075 Mark unused arguments.
9076
9077 * woman.el (woman-parse-colon-path, woman-parse-colon-path)
9078 (woman-select-symbol-fonts, woman, woman-find-file)
9079 (woman-insert-file-contents, woman-non-underline-faces):
9080 Use string-match-p.
9081 (woman1-unquote): Move declaration.
9082
9083 * xml.el (xml-parse-tag-1, xml-parse-string): Use looking-at-p.
9084 (xml-parse-dtd): Use looking-at-p, string-match-p. Mark unused
9085 argument. Remove unused local variable.
9086 (xml-parse-elem-type): Use string-match-p.
9087 (xml-substitute-numeric-entities): Use ignore-errors.
9088
9089 * calculator.el (calculator): Mark unused argument.
9090 (calculator-paste, calculator-quit, calculator-integer-p):
9091 Use ignore-errors.
9092 (calculator-string-to-number, calculator-decimal, calculator-exp)
9093 (calculator-op-or-exp): Use string-match-p.
9094
9095 * dired.el (dired-buffer-more-recently-used-p): Declare.
9096 (dired-insert-set-properties, dired-insert-old-subdirs):
9097 Use ignore-errors.
9098
9099 * dired-aux.el (dired-compress): Use ignore-errors.
9100 (dired-do-chxxx, dired-do-chmod, dired-trample-file-versions)
9101 (dired-do-async-shell-command, dired-do-shell-command)
9102 (dired-shell-stuff-it, dired-compress-file, dired-insert-subdir)
9103 (dired-insert-subdir-validate): Use string-match-p.
9104 (dired-map-dired-file-lines, dired-subdir-hidden-p): Use looking-at-p.
9105 (dired-add-entry): Use string-match-p, looking-at-p.
9106 (dired-insert-subdir-newpos): Remove unused local variable.
9107
9108 * filenotify.el (file-notify-callback): Remove unused local variable.
9109
9110 * filesets.el (filesets-error): Mark unused argument.
9111 (filesets-which-command-p, filesets-filter-dir-names)
9112 (filesets-directory-files, filesets-get-external-viewer)
9113 (filesets-ingroup-get-data): Use string-match-p.
9114
9115 * find-file.el (ff-other-file-name, ff-other-file-name)
9116 (ff-find-the-other-file, ff-cc-hh-converter):
9117 Remove unused local variables.
9118 (ff-get-file-name): Use string-match-p.
9119 (ff-all-dirs-under): Use ignore-errors.
9120
9121 * follow.el (follow-comint-scroll-to-bottom): Mark unused argument.
9122 (follow-select-if-visible): Remove unused local variable.
9123
9124 * forms.el (read-file-filter): Move declaration.
9125 (forms--make-format, forms--make-parser, forms-insert-record):
9126 Quote function with #'.
9127 (forms--update): Use string-match-p. Quote function with #'.
9128
9129 * help-mode.el (help-dir-local-var-def): Mark unused argument.
9130 (help-make-xrefs): Use looking-at-p.
9131 (help-xref-on-pp): Use looking-at-p, ignore-errors.
9132
9133 * ibuffer.el (ibuffer-ext-visible-p): Declare.
9134 (ibuffer-confirm-operation-on): Use string-match-p.
9135
9136 * msb.el (msb-item-handler, msb-dired-item-handler):
9137 Mark unused arguments.
9138
9139 * ses.el (ses-decode-cell-symbol)
9140 (ses-kill-override): Remove unused local variable.
9141 (ses-create-cell-variable, ses-relocate-formula): Use string-match-p.
9142 (ses-load): Use ignore-errors, looking-at-p.
9143 (ses-jump-safe): Use ignore-errors.
9144 (ses-export-tsv, ses-export-tsf, ses-unsafe): Mark unused arguments.
9145
9146 * tabify.el (untabify, tabify): Mark unused arguments.
9147
9148 * thingatpt.el (thing-at-point--bounds-of-well-formed-url):
9149 Mark unused argument.
9150 (bounds-of-thing-at-point, thing-at-point-bounds-of-list-at-point)
9151 (thing-at-point-newsgroup-p, form-at-point): Use ignore-errors.
9152
9153 * emacs-lisp/timer.el (timer--time): Define setter with
9154 gv-define-setter to avoid deprecation warning.
9155
9156 * completion.el: Remove stuff unused since revno:3176 (1993-05-27).
9157 (*record-cmpl-statistics-p*): Remove (was commented out).
9158 (cmpl-statistics-block): Remove (body was commented out).
9159 All callers changed.
9160 (add-completions-from-buffer, load-completions-from-file):
9161 Remove unused variables.
9162
9163 2013-08-09 Juanma Barranquero <lekktu@gmail.com>
9164
9165 * filecache.el (file-cache-delete-file-list):
9166 Print message only when told so.
9167 (file-cache-files-matching): Use #' in mapconcat argument.
9168
9169 * ffap.el (ffap-url-at-point): Fix reference to variable
9170 thing-at-point-default-mail-uri-scheme.
9171
9172 2013-08-09 Stefan Monnier <monnier@iro.umontreal.ca>
9173
9174 * subr.el (define-error): New function.
9175 * progmodes/ada-xref.el (ada-error-file-not-found): Rename from
9176 error-file-not-found and define with define-error.
9177 * emacs-lisp/cl-lib.el (cl-assertion-failed): Move here from subr.el
9178 and define with define-error.
9179 * userlock.el (file-locked, file-supersession):
9180 * simple.el (mark-inactive):
9181 * progmodes/js.el (js-moz-bad-rpc, js-js-error):
9182 * progmodes/ada-mode.el (ada-mode-errors):
9183 * play/life.el (life-extinct):
9184 * nxml/xsd-regexp.el (xsdre-invalid-regexp, xsdre-parse-error):
9185 * nxml/xmltok.el (xmltok-markup-declaration-parse-error):
9186 * nxml/rng-util.el (rng-error):
9187 * nxml/rng-uri.el (rng-uri-error):
9188 * nxml/rng-match.el (rng-compile-error):
9189 * nxml/rng-cmpct.el (rng-c-incorrect-schema):
9190 * nxml/nxml-util.el (nxml-error, nxml-file-parse-error):
9191 * nxml/nxml-rap.el (nxml-scan-error):
9192 * nxml/nxml-outln.el (nxml-outline-error):
9193 * net/soap-client.el (soap-error):
9194 * net/gnutls.el (gnutls-error):
9195 * net/ange-ftp.el (ftp-error):
9196 * mpc.el (mpc-proc-error):
9197 * json.el (json-error, json-readtable-error, json-unknown-keyword)
9198 (json-number-format, json-string-escape, json-string-format)
9199 (json-key-format, json-object-format):
9200 * jka-compr.el (compression-error):
9201 * international/quail.el (quail-error):
9202 * international/kkc.el (kkc-error):
9203 * emacs-lisp/ert.el (ert-test-failed):
9204 * calc/calc.el (calc-error, inexact-result, math-overflow)
9205 (math-underflow):
9206 * bookmark.el (bookmark-error-no-filename):
9207 * epg.el (epg-error): Define with define-error.
9208
9209 * time.el (display-time-event-handler)
9210 (display-time-next-load-average): Don't call sit-for since it seems
9211 unnecessary (bug#15045).
9212
9213 * emacs-lisp/checkdoc.el: Remove redundant :group keywords.
9214 Use #' instead of ' to quote functions.
9215 (checkdoc-output-mode): Use setq-local.
9216 (checkdoc-spellcheck-documentation-flag, checkdoc-ispell-lisp-words)
9217 (checkdoc-verb-check-experimental-flag, checkdoc-proper-noun-regexp)
9218 (checkdoc-common-verbs-regexp): Mark safe-local-variable (bug#15010).
9219 (checkdoc-ispell, checkdoc-ispell-current-buffer)
9220 (checkdoc-ispell-interactive, checkdoc-ispell-message-interactive)
9221 (checkdoc-ispell-message-text, checkdoc-ispell-start)
9222 (checkdoc-ispell-continue, checkdoc-ispell-comments)
9223 (checkdoc-ispell-defun): Remove unused arg `take-notes'.
9224
9225 * ido.el (ido-completion-help): Fix up compiler warning.
9226
9227 2013-08-09 Juanma Barranquero <lekktu@gmail.com>
9228
9229 * frameset.el (frameset-p): Add autoload cookie.
9230 (frameset--jump-to-register): New function, based on code moved from
9231 register.el.
9232 (frameset-to-register): Move from register.el. Adapt to `registerv'.
9233
9234 * register.el (frameset-frame-id, frameset-frame-with-id, frameset-p)
9235 (frameset-restore, frameset-save, frameset-session-filter-alist):
9236 Remove declarations.
9237 (register-alist): Doc fix.
9238 (frameset-to-register): Move to frameset.el.
9239 (jump-to-register, describe-register-1): Remove frameset-specific code.
9240
9241 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
9242
9243 * allout-widgets.el (allout-widgets-pre-command-business)
9244 (allout-widgets-post-command-business)
9245 (allout-widgets-after-change-handler)
9246 (allout-decorate-item-and-context, allout-set-boundary-marker)
9247 (allout-body-modification-handler)
9248 (allout-graphics-modification-handler): Mark ignored arguments.
9249 (allout-widgets-post-command-business)
9250 (allout-widgets-exposure-change-processor)
9251 (allout-widgets-exposure-undo-processor)
9252 (allout-decorate-item-and-context, allout-redecorate-visible-subtree)
9253 (allout-parse-item-at-point, allout-decorate-item-guides)
9254 (allout-decorate-item-cue, allout-item-span): Remove unused variables.
9255 * allout.el (epa-passphrase-callback-function): Declare.
9256 (allout-overlay-insert-in-front-handler)
9257 (allout-overlay-interior-modification-handler)
9258 (allout-isearch-end-handler, allout-chart-siblings)
9259 (allout-up-current-level, allout-end-of-level, allout-reindent-body)
9260 (allout-yank-processing, allout-process-exposed)
9261 (allout-latex-verb-quote, allout-latexify-one-item, outlineify-sticky)
9262 (allout-latex-verbatim-quote-curr-line): Remove unused variables.
9263 * emacs-lisp/lisp-mode.el (lisp-eval-defun, last-sexp-toggle-display)
9264 (lisp-indent-defform): Mark ignored arguments.
9265 (lisp-indent-line): Mark ignored arguments. Remove unused variables.
9266 (calculate-lisp-indent): Remove unused variables.
9267 * international/characters.el (indian-2-column, arabic-2-column)
9268 (tibetan): Mark ignored arguments.
9269 (use-cjk-char-width-table): Mark ignored arguments.
9270 Remove unused variables.
9271 * international/fontset.el (build-default-fontset-data)
9272 (x-compose-font-name, create-fontset-from-fontset-spec):
9273 Mark ignored arguments.
9274 (fontset-plain-name): Remove unused variables.
9275 * international/mule.el (charset-id, charset-bytes, generic-char-p)
9276 (keyboard-coding-system): Mark ignored arguments.
9277 (find-auto-coding): Remove unused variables. Use `ignore-errors'.
9278 * help.el (resize-temp-buffer-window):
9279 * window.el (display-buffer-in-major-side-window)
9280 (display-buffer-in-side-window, display-buffer-in-previous-window):
9281 Remove unused variables.
9282 * isearch.el (isearch-forward-symbol):
9283 * version.el (emacs-bzr-version-bzr):
9284 * international/mule-cmds.el (current-language-environment):
9285 * term/common-win.el (x-handle-iconic, x-handle-geometry)
9286 (x-handle-display):
9287 * term/pc-win.el (x-list-fonts, x-display-planes)
9288 (x-display-color-cells, x-server-max-request-size, x-server-vendor)
9289 (x-server-version, x-display-screens, x-display-mm-height)
9290 (x-display-mm-width, x-display-backing-store, x-display-visual-class)
9291 (x-selection-owner-p, x-own-selection-internal)
9292 (x-disown-selection-internal, x-get-selection-internal)
9293 (msdos-initialize-window-system):
9294 * term/tty-colors.el (tty-color-alist, tty-color-clear):
9295 * term/x-win.el (x-handle-no-bitmap-icon):
9296 * vc/vc-hooks.el (vc-mode, vc-default-make-version-backups-p)
9297 (vc-default-find-file-hook, vc-default-extra-menu):
9298 Mark ignored arguments.
9299
9300 2013-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
9301
9302 * emacs-lisp/edebug.el (edebug-debugger): Use edebug-eval to run the
9303 break-condition in the context of the debugged code (bug#12685).
9304
9305 2013-08-08 Christopher Schmidt <christopher@ch.ristopher.com>
9306
9307 * comint.el:
9308 Do not use an overlay to highlight the last prompt. (Bug#14744)
9309 (comint-mode): Make comint-last-prompt buffer local.
9310 (comint-last-prompt): New variable.
9311 (comint-last-prompt-overlay): Remove. Superseded by
9312 comint-last-prompt.
9313 (comint-snapshot-last-prompt, comint-output-filter):
9314 Use comint-last-prompt.
9315
9316 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
9317
9318 * frameset.el (frameset-valid-p): Check vector length. Doc fix.
9319 (frameset-save): Check validity of the resulting frameset.
9320
9321 2013-08-08 Xue Fuqiao <xfq.free@gmail.com>
9322
9323 * ido.el (ido-record-command): Add doc string.
9324
9325 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
9326
9327 * frameset.el (frameset): Do not disable creation of the default
9328 frameset-p predicate. Doc fix.
9329 (frameset-valid-p): New function, copied from the old predicate-p.
9330 Add additional checks.
9331 (frameset-restore): Check with frameset-valid-p.
9332 (frameset-p, frameset-version, frameset-timestamp, frameset-app)
9333 (frameset-name, frameset-description, frameset-properties)
9334 (frameset-states): Add docstring.
9335 (frameset-session-filter-alist, frameset-persistent-filter-alist)
9336 (frameset-filter-alist): Doc fixes.
9337
9338 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
9339
9340 * frameset.el (frameset-p, frameset-prop): Doc fixes.
9341
9342 2013-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
9343
9344 * emacs-lisp/bytecomp.el (byte-compile-function-warn): New function,
9345 extracted from byte-compile-callargs-warn and byte-compile-normal-call.
9346 (byte-compile-callargs-warn, byte-compile-function-form): Use it.
9347 (byte-compile-normal-call): Remove obsolescence check.
9348
9349 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
9350
9351 * frameset.el (frameset-restore): Doc fix.
9352
9353 * register.el (frameset-frame-id, frameset-frame-with-id)
9354 (frameset-p, frameset-restore, frameset-save): Declare.
9355 (register-alist): Document framesets.
9356 (frameset-session-filter-alist): Declare.
9357 (frameset-to-register): New function.
9358 (jump-to-register): Implement jumping to framesets. Doc fix.
9359 (describe-register-1): Describe framesets.
9360
9361 * bindings.el (ctl-x-r-map): Bind ?f to frameset-to-register.
9362
9363 2013-08-07 Juanma Barranquero <lekktu@gmail.com>
9364
9365 * desktop.el (desktop-save-frameset): Use new frameset-save args.
9366 Use lexical-binding.
9367
9368 * frameset.el (frameset): Use type vector, not list (incompatible
9369 change). Do not declare a new constructor, use the default one.
9370 Upgrade suggested properties `app', `name' and `desc' to slots `app',
9371 `name' and `description', respectively, and add read-only slot
9372 `timestamp'. Doc fixes.
9373 (frameset-copy, frameset-persistent-filter-alist)
9374 (frameset-filter-alist, frameset-switch-to-gui-p)
9375 (frameset-switch-to-tty-p, frameset-filter-tty-to-GUI)
9376 (frameset-filter-sanitize-color, frameset-filter-minibuffer)
9377 (frameset-filter-iconified, frameset-keep-original-display-p):
9378 Doc fixes.
9379 (frameset-filter-shelve-param, frameset-filter-unshelve-param):
9380 Rename from frameset-filter-(save|restore)-param. All callers changed.
9381 Doc fix.
9382 (frameset-p): Adapt to change to vector and be more thorough.
9383 Change arg name to OBJECT. Doc fix.
9384 (frameset-prop): Rename arg PROP to PROPERTY. Doc fix.
9385 (frameset-session-filter-alist): Rename from frameset-live-filter-alist.
9386 All callers changed.
9387 (frameset-frame-with-id): Rename from frameset-locate-frame-id.
9388 All callers changed.
9389 (frameset--record-minibuffer-relationships): Rename from
9390 frameset--process-minibuffer-frames. All callers changed.
9391 (frameset-save): Add new keyword arguments APP, NAME and DESCRIPTION.
9392 Use new default constructor (again). Doc fix.
9393 (frameset--find-frame-if): Rename from `frameset--find-frame'.
9394 All callers changed.
9395 (frameset--reuse-frame): Rename arg FRAME-CFG to PARAMETERS.
9396 (frameset--initial-params): Rename arg FRAME-CFG to PARAMETERS.
9397 Doc fix.
9398 (frameset--restore-frame): Rename args FRAME-CFG and WINDOW-CFG to
9399 PARAMETERS and WINDOW-STATE, respectively.
9400 (frameset-restore): Add new keyword argument PREDICATE.
9401 Reset frameset--target-display to nil. Doc fix.
9402
9403 2013-08-07 Stefan Monnier <monnier@iro.umontreal.ca>
9404
9405 * progmodes/bat-mode.el (bat--syntax-propertize): New var.
9406 (bat-mode): Use it.
9407 (bat-mode-syntax-table): Mark \n as end-of-comment.
9408 (bat-font-lock-keywords): Remove comment rule.
9409
9410 * progmodes/bat-mode.el: Rename from dos.el. Use "bat-" prefix.
9411 (dos-mode-help): Remove. Use describe-mode (C-h m) instead.
9412
9413 * emacs-lisp/bytecomp.el: Check existence of f in #'f.
9414 (byte-compile-callargs-warn): Use `push'.
9415 (byte-compile-arglist-warn): Ignore higher-order "calls".
9416 (byte-compile-file-form-autoload): Use `pcase'.
9417 (byte-compile-function-form): If quoting a symbol, check that it exists.
9418
9419 2013-08-07 Eli Zaretskii <eliz@gnu.org>
9420
9421 * progmodes/dos.el (dos-font-lock-keywords): Rename LINUX to UNIX
9422 and add a few popular commands found in batch files.
9423 (dos, dos-label-face, dos-cmd-help, dos-run, dos-run-args)
9424 (dos-mode): Doc fixes.
9425
9426 2013-08-07 Stefan Monnier <monnier@iro.umontreal.ca>
9427
9428 * progmodes/dos.el (auto-mode-alist): Add entries for dos-mode.
9429 (dos-mode): Use setq-local. Add space after "rem".
9430 (dos-mode-syntax-table): Don't use "w" for symbol chars.
9431 (dos-font-lock-keywords): Try to adjust font-lock rules accordingly.
9432
9433 2013-08-07 Arni Magnusson <arnima@hafro.is>
9434
9435 * progmodes/dos.el: New file.
9436 * generic-x.el (bat-generic-mode): Redefine as an obsolete alias to
9437 dos-mode.
9438
9439 2013-08-06 Glenn Morris <rgm@gnu.org>
9440
9441 * calendar/calendar.el: Add new faces, and day-header-array.
9442 (calendar-weekday-header, calendar-weekend-header)
9443 (calendar-month-header): New faces.
9444 (calendar-day-header-construct): New function.
9445 (calendar-day-header-width): Also :set calendar-day-header-array.
9446 (calendar-american-month-header, calendar-european-month-header)
9447 (calendar-iso-month-header): Use calendar- faces.
9448 (calendar-generate-month):
9449 Use calendar-day-header-array for day headers; apply faces to them.
9450 (calendar-mode): Check calendar-font-lock-keywords non-nil.
9451 (calendar-abbrev-construct): Add optional maxlen argument.
9452 (calendar-day-name-array): Doc fix.
9453 (calendar-day-name-array, calendar-abbrev-length)
9454 (calendar-day-abbrev-array):
9455 Also :set calendar-day-header-array, and maybe redraw.
9456 (calendar-day-header-array): New option. (Bug#15007)
9457 (calendar-font-lock-keywords): Set to nil and make obsolete.
9458 (calendar-day-name): Add option to use header array.
9459
9460 2013-08-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
9461
9462 * net/shr.el (shr-render-td): Remove debugging.
9463 (shr-render-td): Make width computation consistent by defaulting
9464 all zero-width columns to 10 characters. This may not be optimal,
9465 but it's at least consistent.
9466 (shr-make-table-1): Redo last change to fix the real problem in
9467 colspan handling.
9468
9469 2013-08-06 Dmitry Antipov <dmantipov@yandex.ru>
9470
9471 * files.el (cache-long-line-scans):
9472 Make obsolete alias to `cache-long-scans'.
9473
9474 2013-08-06 Juanma Barranquero <lekktu@gmail.com>
9475
9476 * frameset.el (frameset, frameset-filter-alist)
9477 (frameset-filter-params, frameset-save, frameset--reuse-frame)
9478 (frameset--minibufferless-last-p, frameset-restore): Doc fixes.
9479 (frameset-compute-pos): Rename from frameset--compute-pos,
9480 and add docstring.
9481 (frameset-move-onscreen): Use frameset-compute-pos.
9482 Most changes suggested by Drew Adams <drew.adams@oracle.com>.
9483
9484 * find-lisp.el (find-lisp-line-indent, find-lisp-find-dired-filter):
9485 Fix typos in docstrings.
9486
9487 2013-08-06 Dmitry Antipov <dmantipov@yandex.ru>
9488
9489 * frame.el (get-other-frame): Tiny cleanup.
9490
9491 2013-08-06 Juanma Barranquero <lekktu@gmail.com>
9492
9493 * vc/vc.el (vc-default-ignore-completion-table):
9494 Silence byte-compiler warning.
9495
9496 * frameset.el (frameset-p): Don't check non-nullness of the `properties'
9497 slot, which can indeed be nil.
9498 (frameset-live-filter-alist, frameset-persistent-filter-alist):
9499 Move entry for `left' from persistent to live filter alist.
9500 (frameset-filter-alist, frameset--minibufferless-last-p, frameset-save):
9501 Doc fixes.
9502 (frameset-filter-params): When restoring a frame, copy items added to
9503 `filtered', to avoid unwittingly modifying the original parameters.
9504 (frameset-move-onscreen): Rename from frameset--move-onscreen. Doc fix.
9505 (frameset--restore-frame): Fix reference to frameset-move-onscreen.
9506
9507 * dired.el (dired-insert-directory): Revert change in 2013-06-21T12:24:37Z!lekktu@gmail.com
9508 to use looking-at-p instead of looking-at. (Bug#15028)
9509
9510 2013-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
9511
9512 Revert introduction of isearch-filter-predicates (bug#14714).
9513 Rely on add-function instead.
9514 * isearch.el (isearch-filter-predicates): Rename it back to
9515 isearch-filter-predicate.
9516 (isearch-message-prefix): Use advice-function-mapc and advice
9517 properties to get the isearch-message-prefix.
9518 (isearch-search, isearch-lazy-highlight-search): Revert to funcall
9519 instead of run-hook-with-args-until-failure.
9520 (isearch-filter-visible): Not obsolete any more.
9521 * loadup.el: Preload nadvice.
9522 * replace.el (perform-replace): Revert to funcall
9523 instead of run-hook-with-args-until-failure.
9524 * wdired.el (wdired-change-to-wdired-mode): Use add-function.
9525 * dired-aux.el (dired-isearch-filenames-mode): Rename from
9526 dired-isearch-filenames-toggle; make it into a proper minor mode.
9527 Use add/remove-function.
9528 (dired-isearch-filenames-setup, dired-isearch-filenames-end):
9529 Call the minor-mode rather than add/remove-hook.
9530 (dired-isearch-filter-filenames):
9531 Remove isearch-message-prefix property.
9532 * info.el (Info--search-loop): New function, extracted from Info-search.
9533 Funcall isearch-filter-predicate instead of
9534 run-hook-with-args-until-failure isearch-filter-predicates.
9535 (Info-search): Use it.
9536 (Info-mode): Use isearch-filter-predicate instead of
9537 isearch-filter-predicates.
9538
9539 2013-08-05 Dmitry Antipov <dmantipov@yandex.ru>
9540
9541 Do not call to `selected-window' where it is assumed by default.
9542 Affected functions are `window-minibuffer-p', `window-dedicated-p',
9543 `window-hscroll', `window-width', `window-height', `window-buffer',
9544 `window-frame', `window-start', `window-point', `next-window'
9545 and `window-display-table'.
9546 * abbrev.el (abbrev--default-expand):
9547 * bs.el (bs--show-with-configuration):
9548 * buff-menu.el (Buffer-menu-mouse-select):
9549 * calc/calc.el (calc):
9550 * calendar/calendar.el (calendar-generate-window):
9551 * calendar/diary-lib.el (diary-simple-display, diary-show-all-entries)
9552 (diary-make-entry):
9553 * comint.el (send-invisible, comint-dynamic-complete-filename)
9554 (comint-dynamic-simple-complete, comint-dynamic-list-completions):
9555 * completion.el (complete):
9556 * dabbrev.el (dabbrev-expand, dabbrev--make-friend-buffer-list):
9557 * disp-table.el (describe-current-display-table):
9558 * doc-view.el (doc-view-insert-image):
9559 * ebuff-menu.el (Electric-buffer-menu-mouse-select):
9560 * ehelp.el (with-electric-help):
9561 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
9562 * emacs-lisp/edebug.el (edebug-two-window-p, edebug-pop-to-buffer):
9563 * emacs-lisp/helper.el (Helper-help-scroller):
9564 * emulation/cua-base.el (cua--post-command-handler-1):
9565 * eshell/esh-mode.el (eshell-output-filter):
9566 * ffap.el (ffap-gnus-wrapper):
9567 * help-macro.el (make-help-screen):
9568 * hilit-chg.el (highlight-compare-buffers):
9569 * hippie-exp.el (hippie-expand, try-expand-dabbrev-visible):
9570 * hl-line.el (global-hl-line-highlight):
9571 * icomplete.el (icomplete-simple-completing-p):
9572 * isearch.el (isearch-done):
9573 * jit-lock.el (jit-lock-stealth-fontify):
9574 * mail/rmailsum.el (rmail-summary-scroll-msg-up):
9575 * mouse-drag.el (mouse-drag-should-do-col-scrolling):
9576 * mpc.el (mpc-tagbrowser, mpc):
9577 * net/rcirc.el (rcirc-any-buffer):
9578 * play/gomoku.el (gomoku-max-width, gomoku-max-height):
9579 * play/landmark.el (landmark-max-width, landmark-max-height):
9580 * play/zone.el (zone):
9581 * progmodes/compile.el (compilation-goto-locus):
9582 * progmodes/ebrowse.el (ebrowse-view/find-file-and-search-pattern):
9583 * progmodes/etags.el (find-tag-other-window):
9584 * progmodes/fortran.el (fortran-column-ruler):
9585 * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
9586 * progmodes/verilog-mode.el (verilog-point-text):
9587 * reposition.el (reposition-window):
9588 * rot13.el (toggle-rot13-mode):
9589 * server.el (server-switch-buffer):
9590 * shell.el (shell-dynamic-complete-command)
9591 (shell-dynamic-complete-environment-variable):
9592 * simple.el (insert-buffer, set-selective-display)
9593 (delete-completion-window):
9594 * speedbar.el (speedbar-timer-fn, speedbar-center-buffer-smartly)
9595 (speedbar-recenter):
9596 * startup.el (fancy-splash-head):
9597 * textmodes/ispell.el (ispell-command-loop):
9598 * textmodes/makeinfo.el (makeinfo-compilation-sentinel-region):
9599 * tutorial.el (help-with-tutorial):
9600 * vc/add-log.el (add-change-log-entry):
9601 * vc/compare-w.el (compare-windows):
9602 * vc/ediff-help.el (ediff-indent-help-message):
9603 * vc/ediff-util.el (ediff-setup-control-buffer, ediff-position-region):
9604 * vc/ediff-wind.el (ediff-skip-unsuitable-frames)
9605 (ediff-setup-control-frame):
9606 * vc/emerge.el (emerge-position-region):
9607 * vc/pcvs-util.el (cvs-bury-buffer):
9608 * window.el (walk-windows, mouse-autoselect-window-select):
9609 * winner.el (winner-set-conf, winner-undo): Related users changed.
9610
9611 2013-08-05 Juanma Barranquero <lekktu@gmail.com>
9612
9613 * frameset.el (frameset--set-id): Doc fix.
9614 (frameset-frame-id, frameset-frame-id-equal-p)
9615 (frameset-locate-frame-id): New functions.
9616 (frameset--process-minibuffer-frames, frameset--reuse-frame)
9617 (frameset-restore): Use them.
9618
9619 2013-08-05 Dmitry Antipov <dmantipov@yandex.ru>
9620
9621 Do not call to `selected-frame' where it is assumed by default.
9622 Affected functions are `raise-frame', `redraw-frame',
9623 `frame-first-window', `frame-terminal' and `delete-frame'.
9624 * calendar/appt.el (appt-disp-window):
9625 * epg.el (epg-wait-for-completion):
9626 * follow.el (follow-delete-other-windows-and-split)
9627 (follow-avoid-tail-recenter):
9628 * international/mule.el (set-terminal-coding-system):
9629 * mail/rmail.el (rmail-mail-return):
9630 * net/newst-plainview.el (newsticker--buffer-set-uptodate):
9631 * progmodes/f90.el (f90-add-imenu-menu):
9632 * progmodes/idlw-toolbar.el (idlwave-toolbar-toggle):
9633 * server.el (server-switch-buffer):
9634 * simple.el (delete-completion-window):
9635 * talk.el (talk):
9636 * term/xterm.el (terminal-init-xterm-modify-other-keys)
9637 (xterm-turn-on-modify-other-keys, xterm-remove-modify-other-keys):
9638 * vc/ediff-util.el (ediff-status-info, ediff-show-diff-output):
9639 * vc/ediff.el (ediff-documentation): Related users changed.
9640 * frame.el (selected-terminal): Remove the leftover.
9641
9642 2013-08-05 Glenn Morris <rgm@gnu.org>
9643
9644 * calendar/calendar.el (calendar-generate-month):
9645 Fix for calendar-column-width != 1 + calendar-day-digit-width.
9646 (calendar-generate-month, calendar-font-lock-keywords):
9647 Fix for calendar-day-header-width > length of any day name.
9648
9649 2013-08-05 Juanma Barranquero <lekktu@gmail.com>
9650
9651 * desktop.el (desktop-clear): Use new name of sort predicate.
9652
9653 * frameset.el (frameset): Add docstring. Move :version property to its
9654 own `version' slot.
9655 (frameset-copy): Rename from copy-frameset.
9656 (frameset-p): Check more thoroughly.
9657 (frameset-prop): Do not check for :version, which is no longer a prop.
9658 (frameset-live-filter-alist, frameset-persistent-filter-alist):
9659 Use new :never value instead of t.
9660 (frameset-filter-alist): Expand and clarify docstring.
9661 (frameset-filter-tty-to-GUI, frameset-filter-sanitize-color)
9662 (frameset-filter-minibuffer, frameset-filter-save-param)
9663 (frameset-filter-restore-param, frameset-filter-iconified):
9664 Add pointer to docstring of frameset-filter-alist.
9665 (frameset-filter-params): Rename filter values to be more meaningful:
9666 :never instead of t, and reverse the meanings of :save and :restore.
9667 (frameset--process-minibuffer-frames): Clarify error message.
9668 (frameset-save): Avoid unnecessary and confusing call to framep.
9669 Use new BOA constructor for framesets.
9670 (frameset--reuse-list): Doc fix.
9671 (frameset--restore-frame): Rename from frameset--get-frame. Doc fix.
9672 (frameset--minibufferless-last-p): Rename from frameset--sort-states.
9673 (frameset-minibufferless-first-p): Doc fix.
9674 Rename from frameset-sort-frames-for-deletion.
9675 (frameset-restore): Doc fixes. Use new function names.
9676 Most changes suggested by Drew Adams <drew.adams@oracle.com>.
9677
9678 2013-08-04 Juanma Barranquero <lekktu@gmail.com>
9679
9680 * desktop.el (desktop-restore-forces-onscreen)
9681 (desktop-restore-reuses-frames): Document :keyword constant values.
9682 (desktop-filter-parameters-alist): Remove, now identical to
9683 frameset-filter-alist.
9684 (desktop--filter-tty*): Remove, moved to frameset.el.
9685 (desktop-save-frameset, desktop-restore-frameset):
9686 Do not pass :filters argument.
9687
9688 * frameset.el (frameset-live-filter-alist)
9689 (frameset-persistent-filter-alist): New variables.
9690 (frameset-filter-alist): Use them. Add autoload cookie.
9691 (frameset-filter-tty-to-GUI): Move from desktop.el and rename.
9692 (frameset--set-id, frameset--reuse-frame): Rename `frame-id' to
9693 `frameset--id' (it's supposed to be internal to frameset.el).
9694 (frameset--process-minibuffer-frames): Ditto. Doc fix.
9695 (frameset--initial-params): New function.
9696 (frameset--get-frame): Use it. Doc fix.
9697 (frameset--move-onscreen): Accept new PRED value for FORCE-ONSCREEN.
9698 Accept :all, not 'all.
9699 (frameset-restore): Add new predicate values for FORCE-ONSCREEN and
9700 FORCE-DISPLAY. Use :keywords for constant arguments to avoid collision
9701 with fbound symbols. Fix frame id matching, and remove matching ids if
9702 the frame being restored is deleted. Obey :delete.
9703
9704 2013-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
9705
9706 * subr.el (macrop): New function.
9707 (text-clone--maintaining): New var.
9708 (text-clone--maintain): Rename from text-clone-maintain. Use it
9709 instead of inhibit-modification-hooks.
9710
9711 * emacs-lisp/nadvice.el (advice--normalize): For aliases to macros, use
9712 a proxy, so as handle autoloads and redefinitions of the target.
9713 (advice--defalias-fset, advice-remove): Use advice--symbol-function.
9714
9715 * emacs-lisp/pcase.el (pcase-mutually-exclusive-predicates):
9716 Remove bogus (arrayp . stringp) pair. Add entries for `vectorp'.
9717 (pcase--mutually-exclusive-p): New function.
9718 (pcase--split-consp): Use it.
9719 (pcase--split-pred): Use it. Optimize the case where `pat' is a qpat
9720 mutually exclusive with the current predicate.
9721
9722 * emacs-lisp/edebug.el (edebug-lookup-function): Remove function.
9723 (edebug-macrop): Remove. Use `macrop' instead.
9724 * emacs-lisp/advice.el (ad-subr-p): Remove. Use `subrp' instead.
9725 (ad-macro-p):
9726 * eshell/esh-cmd.el (eshell-macrop):
9727 * apropos.el (apropos-macrop): Remove. Use `macrop' instead.
9728
9729 2013-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
9730
9731 * emacs-lisp/nadvice.el (advice-function-mapc): Rename from advice-mapc.
9732 (advice-mapc): New function, using it.
9733 (advice-function-member-p): New function.
9734 (advice--normalize): Store the cdr in advice--saved-rewrite since
9735 that's the part that will be changed.
9736 (advice--symbol-function): New function.
9737 (advice-remove): Handle removal before the function is defined.
9738 Adjust to new advice--saved-rewrite.
9739 (advice-member-p): Use advice-function-member-p and
9740 advice--symbol-function.
9741
9742 2013-08-04 Juanma Barranquero <lekktu@gmail.com>
9743
9744 * frameset.el (frameset-p, frameset-save): Fix autoload cookies.
9745 (frameset-filter-minibuffer): Doc fix.
9746 (frameset-restore): Fix autoload cookie. Fix typo in docstring.
9747 (frameset--set-id, frameset--process-minibuffer-frames)
9748 (frameset-restore): Rename parameter `frameset-id' to `frame-id'.
9749 (frameset--reuse-frame): Pass correct frame-id to frameset--find-frame.
9750
9751 * desktop.el (desktop-clear): Only delete frames when called
9752 interactively and desktop-restore-frames is non-nil. Doc fix.
9753 (desktop-read): Set desktop-saved-frameset to nil.
9754
9755 2013-08-04 Xue Fuqiao <xfq.free@gmail.com>
9756
9757 * vc/vc.el (vc-ignore): Rewrite.
9758 (vc-default-ignore-completion-table, vc--read-lines)
9759 (vc--add-line, vc--remove-regexp): New functions.
9760
9761 * vc/vc-svn.el (vc-svn-ignore): Doc fix.
9762 (vc-svn-ignore-completion-table): New function.
9763
9764 * vc/vc-hg.el (vc-hg-ignore): Rewrite.
9765 (vc-hg-ignore-completion-table)
9766 (vc-hg-find-ignore-file): New functions.
9767
9768 * vc/vc-git.el (vc-git-ignore): Rewrite.
9769 (vc-git-ignore-completion-table)
9770 (vc-git-find-ignore-file): New functions.
9771
9772 * vc/vc-dir.el (vc-dir-menu-map): Add menu for vc-dir-ignore.
9773
9774 * vc/vc-bzr.el (vc-bzr-ignore): Rewrite.
9775 (vc-bzr-ignore-completion-table)
9776 (vc-bzr-find-ignore-file): New functions.
9777
9778 2013-08-03 Juanma Barranquero <lekktu@gmail.com>
9779
9780 * frameset.el (frameset-prop): New function and setter.
9781 (frameset-save): Do not modify frame list passed by the caller.
9782
9783 2013-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
9784
9785 * emacs-lisp/package.el (package-desc-from-define): Ignore unknown keys.
9786
9787 2013-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
9788
9789 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode)
9790 (easy-mmode-define-navigation): Avoid ((lambda (..) ..) ...).
9791
9792 * custom.el (custom-initialize-default, custom-initialize-set)
9793 (custom-initialize-reset, custom-initialize-changed): Affect the
9794 toplevel-default-value (bug#6275, bug#14586).
9795 * emacs-lisp/advice.el (ad-compile-function): Undo previous workaround
9796 for bug#6275.
9797
9798 2013-08-02 Juanma Barranquero <lekktu@gmail.com>
9799
9800 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
9801 Add cl-def* expressions.
9802
9803 * frameset.el (frameset-filter-params): Fix order of arguments.
9804
9805 2013-08-02 Juanma Barranquero <lekktu@gmail.com>
9806
9807 Move code related to saving frames to frameset.el.
9808 * desktop.el: Require frameset.
9809 (desktop-restore-frames): Doc fix.
9810 (desktop-restore-reuses-frames): Rename from
9811 desktop-restoring-reuses-frames.
9812 (desktop-saved-frameset): Rename from desktop-saved-frame-states.
9813 (desktop-clear): Clear frames too.
9814 (desktop-filter-parameters-alist): Set from frameset-filter-alist.
9815 (desktop--filter-tty*, desktop-save, desktop-read):
9816 Use frameset functions.
9817 (desktop-before-saving-frames-functions, desktop--filter-*-color)
9818 (desktop--filter-minibuffer, desktop--filter-restore-desktop-parm)
9819 (desktop--filter-save-desktop-parm, desktop--filter-iconified-position)
9820 (desktop-restore-in-original-display-p, desktop--filter-frame-parms)
9821 (desktop--process-minibuffer-frames, desktop-save-frames)
9822 (desktop--reuse-list, desktop--compute-pos, desktop--move-onscreen)
9823 (desktop--find-frame, desktop--select-frame, desktop--make-frame)
9824 (desktop--sort-states, desktop-restoring-frames-p)
9825 (desktop-restore-frames): Remove. Most code moved to frameset.el.
9826 (desktop-restoring-frameset-p, desktop-restore-frameset)
9827 (desktop--check-dont-save, desktop-save-frameset): New functions.
9828 (desktop--app-id): New constant.
9829 (desktop-first-buffer, desktop-buffer-ok-count)
9830 (desktop-buffer-fail-count): Move before first use.
9831 * frameset.el: New file.
9832
9833 2013-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
9834
9835 * files.el: Use lexical-binding.
9836 (dir-locals-read-from-file): Remove unused `err' variable.
9837 (hack-dir-local-variables--warned-coding): New var.
9838 (hack-dir-local-variables): Use it to avoid repeated warnings.
9839 (make-backup-file-name--default-function): New function.
9840 (make-backup-file-name-function): Use it as default.
9841 (buffer-stale--default-function): New function.
9842 (buffer-stale-function): Use it as default.
9843 (revert-buffer-insert-file-contents--default-function): New function.
9844 (revert-buffer-insert-file-contents-function): Use it as default.
9845 (insert-directory): Avoid add-to-list.
9846
9847 * autorevert.el (auto-revert-handler): Simplify.
9848 Use buffer-stale--default-function.
9849
9850 2013-08-01 Tassilo Horn <tsdh@gnu.org>
9851
9852 * speedbar.el (speedbar-query-confirmation-method): Doc fix.
9853
9854 * whitespace.el (whitespace-ensure-local-variables): New function.
9855 (whitespace-cleanup-region): Call it.
9856 (whitespace-turn-on): Call it.
9857
9858 2013-08-01 Michael Albinus <michael.albinus@gmx.de>
9859
9860 Complete file name handlers.
9861
9862 * net/tramp.el (tramp-handle-set-visited-file-modtime)
9863 (tramp-handle-verify-visited-file-modtime)
9864 (tramp-handle-file-notify-rm-watch): New functions.
9865 (tramp-call-process): Do not bind `default-directory'.
9866
9867 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
9868 Order alphabetically.
9869 <access-file, add-name-to-file, dired-call-process>:
9870 <dired-compress-file, file-acl, file-notify-rm-watch>:
9871 <file-ownership-preserved-p, file-selinux-context>:
9872 <make-directory-internal, make-symbolic-link, set-file-acl>:
9873 <set-file-selinux-context, set-visited-file-modtime>:
9874 <verify-visited-file-modtime>: Add handler.
9875 (tramp-adb-handle-write-region): Apply `set-visited-file-modtime'.
9876
9877 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist)
9878 <file-notify-add-watch, file-notify-rm-watch>:
9879 <set-file-times, set-visited-file-modtime>:
9880 <verify-visited-file-modtime>: Add handler.
9881 (with-tramp-gvfs-error-message)
9882 (tramp-gvfs-handle-set-visited-file-modtime)
9883 (tramp-gvfs-fuse-file-name): Remove.
9884 (tramp-gvfs-handle-file-notify-add-watch)
9885 (tramp-gvfs-file-gvfs-monitor-file-process-filter): New defuns.
9886 (tramp-gvfs-handle-write-region): Fix error in moving tmpfile.
9887
9888 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
9889 Order alphabetically.
9890 <file-notify-rm-watch>: Use default Tramp handler.
9891 <executable-find>: Remove private handler.
9892 (tramp-do-copy-or-rename-file-out-of-band): Do not bind
9893 `default-directory'.
9894 (tramp-sh-handle-executable-find)
9895 (tramp-sh-handle-file-notify-rm-watch): Remove functions.
9896 (tramp-sh-file-gvfs-monitor-dir-process-filter)
9897 (tramp-sh-file-inotifywait-process-filter, tramp-set-remote-path):
9898 Do not use `format' in `tramp-message'.
9899
9900 * net/tramp-smb.el (tramp-smb-file-name-handler-alist)
9901 <file-notify-rm-watch, set-visited-file-modtime>:
9902 <verify-visited-file-modtime>: Add handler.
9903 (tramp-smb-call-winexe): Do not bind `default-directory'.
9904
9905 2013-08-01 Xue Fuqiao <xfq.free@gmail.com>
9906
9907 * vc/vc-hooks.el (vc-menu-map): Fix menu entry for vc-ignore.
9908
9909 2013-07-31 Dmitry Gutov <dgutov@yandex.ru>
9910
9911 * vc/log-view.el (log-view-diff): Extract `log-view-diff-common',
9912 use it.
9913 (log-view-diff-changeset): Same.
9914 (log-view-diff-common): Call backend command `previous-revision'
9915 to find out the previous revision, in both cases. Swap the
9916 variables `to' and `fr', so that `fr' usually refers to the
9917 earlier revision (Bug#14989).
9918
9919 2013-07-31 Kan-Ru Chen <kanru@kanru.info>
9920
9921 * ibuf-ext.el (ibuffer-filter-by-filename):
9922 Make it work with dired buffers too.
9923
9924 2013-07-31 Dmitry Antipov <dmantipov@yandex.ru>
9925
9926 * emacs-lisp/re-builder.el (reb-color-display-p):
9927 * files.el (save-buffers-kill-terminal):
9928 * net/browse-url.el (browse-url):
9929 * server.el (server-save-buffers-kill-terminal):
9930 * textmodes/reftex-toc.el (reftex-toc, reftex-toc-revert):
9931 Prefer nil to selected-frame for the first arg of frame-parameter.
9932
9933 2013-07-31 Xue Fuqiao <xfq.free@gmail.com>
9934
9935 * vc/vc-hooks.el (vc-menu-map): Add menu entry for vc-ignore.
9936
9937 2013-07-30 Stephen Berman <stephen.berman@gmx.net>
9938
9939 * minibuffer.el (completion--twq-all): Try and preserve each
9940 completion's case choice (bug#14907).
9941
9942 2013-07-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
9943
9944 * net/network-stream.el (open-network-stream): Mention the new
9945 :nogreeting parameter.
9946 (network-stream-open-starttls): Use the :nogreeting parameter
9947 (bug#14938).
9948
9949 * net/shr.el (shr-mouse-browse-url): Remove and use `shr-browse-url'.
9950
9951 * net/eww.el (eww-setup-buffer): Switching to the buffer seems
9952 more natural than popping.
9953
9954 * net/shr.el (shr-urlify): Put `follow-link' on URLs (bug#14815).
9955 (shr-urlify): Highlight under mouse.
9956
9957 2013-07-30 Xue Fuqiao <xfq.free@gmail.com>
9958
9959 * vc/vc-hooks.el (vc-prefix-map): Add key binding for vc-ignore.
9960
9961 * vc/vc-dir.el (vc-dir-mode-map): Change key binding for vc-dir-ignore.
9962
9963 * vc/vc-svn.el (vc-svn-ignore): Remove `interactive'. Use `*vc*'
9964 buffer for output.
9965
9966 * vc/vc-hg.el (vc-hg-ignore): Remove `interactive'. Do not assume
9967 point-min==1. Fix search string. Fix parentheses missing.
9968
9969 * vc/vc-git.el (vc-git-ignore): Remove `interactive'. Do not
9970 assume point-min==1. Fix search string. Fix parentheses missing.
9971
9972 * vc/vc-cvs.el (vc-cvs-ignore): Remove `interactive'.
9973
9974 * vc/vc-bzr.el (vc-bzr-ignore): Remove `interactive'. Use `*vc*'
9975 buffer for output.
9976
9977 2013-07-29 Eli Zaretskii <eliz@gnu.org>
9978
9979 * frame.el (frame-notice-user-settings): Avoid inflooping when the
9980 initial frame is minibuffer-less. (Bug#14841)
9981
9982 2013-07-29 Michael Albinus <michael.albinus@gmx.de>
9983
9984 * net/tramp.el (tramp-use-ssh-controlmaster-options): New customer
9985 option.
9986
9987 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
9988 (tramp-maybe-open-connection): Use it.
9989
9990 2013-07-28 Juanma Barranquero <lekktu@gmail.com>
9991
9992 * desktop.el (desktop--make-frame): Include `minibuffer' in the
9993 minimal set of parameters passed when creating a frame, because
9994 the minibuffer status of a frame cannot be changed later.
9995
9996 2013-07-28 Stephen Berman <stephen.berman@gmx.net>
9997
9998 * calendar/todo-mode.el (todo-rename-file): Fix incorrect use of
9999 replace-regexp-in-string and inadvertent omissions in previous change.
10000 (todo-filter-items): Ensure only file names are comma-separated in
10001 name of filtered items buffer.
10002
10003 2013-07-28 Juanma Barranquero <lekktu@gmail.com>
10004
10005 * desktop.el: Optionally force offscreen frames back onscreen.
10006 (desktop-restoring-reuses-frames): New option.
10007 (desktop--compute-pos, desktop--move-onscreen): New functions.
10008 (desktop--make-frame): Use desktop--move-onscreen.
10009
10010 2013-07-27 Alan Mackenzie <acm@muc.de>
10011
10012 Fontify a Java generic method as a function.
10013 * progmodes/cc-langs.el (c-recognize-<>-arglists): Set the Java
10014 value to t.
10015
10016 2013-07-27 Stephen Berman <stephen.berman@gmx.net>
10017
10018 * calendar/todo-mode.el: Add command to rename todo files.
10019 (todo-rename-file): New command.
10020 (todo-key-bindings-t): Add key binding for it. Change the
10021 bindings of todo-filter-regexp-items(-multifile) to use `x'
10022 instead of `r', since the latter is better suited to the new
10023 renaming command.
10024
10025 2013-07-27 Alan Mackenzie <acm@muc.de>
10026
10027 Make Java try-with-resources statement parse properly.
10028 * progmodes/cc-langs.el (c-block-stmt-1-2-kwds)
10029 (c-block-stmt-1-2-key): New language constants/variables.
10030 * progmodes/cc-engine.el (c-beginning-of-statement-1)
10031 (c-after-conditional): Adapt to deal with c-block-stmt-1-2-key.
10032 * progmodes/cc-fonts.el (c-font-lock-declarations): Adapt to deal
10033 with c-block-stmt-1-2-key.
10034
10035 2013-07-27 Juanma Barranquero <lekktu@gmail.com>
10036
10037 * desktop.el (desktop--make-frame): Apply most frame parameters after
10038 creating the frame to force (partially or totally) offscreen frames to
10039 be restored as such.
10040
10041 2013-07-26 Xue Fuqiao <xfq.free@gmail.com>
10042
10043 * vc/vc-dir.el (vc-dir-mode-map): Add binding for vc-root-diff.
10044 (Bug#14948)
10045
10046 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
10047
10048 * emacs-lisp/nadvice.el (advice--called-interactively-skip): Use the new
10049 `base' arg of backtrace-frame.
10050
10051 2013-07-26 Eli Zaretskii <eliz@gnu.org>
10052
10053 * simple.el (list-processes): Doc fix.
10054
10055 2013-07-26 Juanma Barranquero <lekktu@gmail.com>
10056
10057 * desktop.el (desktop--select-frame):
10058 Try harder to reuse existing frames.
10059
10060 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
10061
10062 * emacs-lisp/edebug.el: Use backtrace-eval to handle lexical variables.
10063 (edebug-eval): Use backtrace-eval.
10064 (edebug--display, edebug--recursive-edit): Don't let-bind the
10065 edebug-outer-* vars that keep track of variables we locally let-bind.
10066 (edebug-outside-excursion): Don't restore outside values of locally
10067 let-bound vars.
10068 (edebug--display): Use user-error.
10069 (cl-lexical-debug, cl-debug-env): Remove.
10070
10071 2013-07-26 Juanma Barranquero <lekktu@gmail.com>
10072
10073 * desktop.el (desktop-restore-frames): Call `sit-for' once all frames
10074 are restored to be sure that they are visible before deleting any
10075 remaining ones.
10076
10077 2013-07-26 Matthias Meulien <orontee@gmail.com>
10078
10079 * vc/vc-dir.el (vc-dir-mode-map): Add binding for
10080 vc-print-root-log. (Bug#14948)
10081
10082 2013-07-26 Richard Stallman <rms@gnu.org>
10083
10084 Add aliases for encrypting mail.
10085 * epa.el (epa-mail-aliases): New option.
10086 * epa-mail.el (epa-mail-encrypt): Rewrite to be callable from programs.
10087 Bind inhibit-read-only so read-only text doesn't ruin everything.
10088 (epa-mail-default-recipients): New subroutine broken out.
10089 Handle epa-mail-aliases.
10090
10091 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
10092
10093 Add support for lexical variables to the debugger's `e' command.
10094 * emacs-lisp/debug.el (debug): Don't let-bind the debugger-outer-*
10095 vars, except for debugger-outer-match-data.
10096 (debugger-frame-number): Move check for "on a function call" from
10097 callers into it. Add `skip-base' argument.
10098 (debugger-frame, debugger-frame-clear): Simplify accordingly.
10099 (debugger-env-macro): Only reset the state stored in non-variables,
10100 i.e. current-buffer and match-data.
10101 (debugger-eval-expression): Rewrite using backtrace-eval.
10102 * subr.el (internal--called-interactively-p--get-frame): Remove.
10103 (called-interactively-p):
10104 * emacs-lisp/edebug.el (edebug--called-interactively-skip): Use the new
10105 `base' arg of backtrace-frame instead.
10106
10107 2013-07-26 Glenn Morris <rgm@gnu.org>
10108
10109 * align.el (align-regexp): Doc fix. (Bug#14857)
10110 (align-region): Explicit error if subexpression missing/does not match.
10111
10112 * simple.el (global-visual-line-mode):
10113 Do not duplicate the mode lighter. (Bug#14858)
10114
10115 2013-07-25 Martin Rudalics <rudalics@gmx.at>
10116
10117 * window.el (display-buffer): In display-buffer bind
10118 split-window-keep-point to t, bug#14829.
10119
10120 2013-07-25 Juanma Barranquero <lekktu@gmail.com>
10121
10122 * desktop.el: Rename internal "desktop-X" frame params to "desktop--X".
10123 (desktop-filter-parameters-alist, desktop--filter-restore-desktop-parm)
10124 (desktop--filter-save-desktop-parm, desktop--process-minibuffer-frames)
10125 (desktop--select-frame, desktop--sort-states, desktop-restore-frames):
10126 Change accordingly.
10127 (desktop--select-frame, desktop--sort-states, desktop-restore-frames):
10128 Use pcase-let, pcase-let* to deobfuscate access to desktop--mini values.
10129
10130 2013-07-25 Glenn Morris <rgm@gnu.org>
10131
10132 * dired-x.el (dired-mark-extension): Convert comment to doc string.
10133
10134 2013-07-25 Juanma Barranquero <lekktu@gmail.com>
10135
10136 * desktop.el (desktop--make-frame): Do not pass the `fullscreen'
10137 parameter to modify-frame-parameters if the value has not changed;
10138 this is a workaround for bug#14949.
10139 (desktop--make-frame): On cl-delete-if call, check parameter name,
10140 not full parameter.
10141
10142 2013-07-30 Xue Fuqiao <xfq.free@gmail.com>
10143
10144 * vc/vc.el (vc-ignore): New function.
10145
10146 * vc/vc-svn.el (vc-svn-ignore): New function.
10147
10148 * vc/vc-hg.el (vc-hg-ignore): New function.
10149
10150 * vc/vc-git.el (vc-git-ignore): New function.
10151
10152 * vc/vc-dir.el (vc-dir-mode-map): Add key binding for vc-dir-ignore
10153 (vc-dir-ignore): New function.
10154
10155 * vc/vc-cvs.el (vc-cvs-ignore): New function.
10156 (cvs-append-to-ignore): Move here from pcvs.el.
10157
10158 * vc/vc-bzr.el (vc-bzr-ignore): New function.
10159
10160 * vc/pcvs.el (vc-cvs): Require 'vc-cvs.
10161
10162 2013-07-24 Juanma Barranquero <lekktu@gmail.com>
10163
10164 * desktop.el (desktop-restoring-frames-p): Return a true boolean.
10165 (desktop-restore-frames): Warn when deleting an existing frame failed.
10166
10167 2013-07-24 Glenn Morris <rgm@gnu.org>
10168
10169 * ffap.el (ffap-machine-p): Handle "not known" response. (Bug#14929)
10170
10171 2013-07-24 Michael Albinus <michael.albinus@gmx.de>
10172
10173 * filenotify.el (file-notify-supported-p):
10174 * net/tramp-sh.el (tramp-sh-handle-file-notify-supported-p):
10175 Remove functions.
10176
10177 * autorevert.el (auto-revert-use-notify)
10178 (auto-revert-notify-add-watch):
10179 * net/tramp.el (tramp-file-name-for-operation):
10180 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
10181 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
10182 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
10183 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
10184 Remove `file-notify-supported-p' entry.
10185
10186 2013-07-24 Glenn Morris <rgm@gnu.org>
10187
10188 * printing.el: Replace all uses of deleted ps-windows-system,
10189 ps-lp-system, ps-flatten-list with lpr- versions.
10190
10191 2013-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
10192
10193 * emacs-lisp/pcase.el (pcase--u1): Verify if self-quoting values can be
10194 checked with memq (bug#14935).
10195
10196 * files.el (revert-buffer-function): Use a non-nil default.
10197 (revert-buffer-preserve-modes): Declare var to
10198 provide access to the `preserve-modes' argument.
10199 (revert-buffer): Let-bind it.
10200 (revert-buffer--default): New function, extracted from revert-buffer.
10201
10202 2013-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
10203
10204 * lpr.el: Signal print errors more prominently.
10205 (print-region-function): Don't default to nil.
10206 (lpr-print-region): New function, extracted from print-region-1.
10207 Check lpr's return value and signal an error in case of problem.
10208 (print-region-1): Use it.
10209 * ps-print.el (ps-windows-system, ps-lp-system): Remove. Use the lpr-*
10210 versions instead.
10211 (ps-printer-name): Default to nil.
10212 (ps-printer-name-option): Default to lpr-printer-switch.
10213 (ps-print-region-function): Don't default to nil.
10214 (ps-postscript-code-directory): Simplify default.
10215 (ps-do-despool): Use lpr-print-region to properly check the outcome.
10216 (ps-string-list, ps-eval-switch, ps-flatten-list)
10217 (ps-flatten-list-1): Remove.
10218 (ps-multibyte-buffer): Avoid setq.
10219 * dos-w32.el (direct-print-region-helper): Use proper regexp operators.
10220 (print-region-function, ps-print-region-function): Don't set them here.
10221
10222 2013-07-24 Xue Fuqiao <xfq.free@gmail.com>
10223
10224 * ido.el (ido-fractionp, ido-cache-ftp-work-directory-time)
10225 (ido-max-prospects, ido-mode, ido-max-file-prompt-width)
10226 (ido-unc-hosts-cache, ido-max-directory-size, ido-max-dir-file-cache)
10227 (ido-decorations): Doc fix.
10228
10229 * ansi-color.el: Fix old URL.
10230
10231 2013-07-23 Michael R. Mauger <michael@mauger.com>
10232
10233 * progmodes/sql.el: Version 3.3
10234 (sql-product-alist): Improve oracle :prompt-cont-regexp.
10235 (sql-starts-with-prompt-re, sql-ends-with-prompt-re): New functions.
10236 (sql-interactive-remove-continuation-prompt): Rewrite, use
10237 functions above. Fix continuation prompt and complete output line
10238 handling.
10239 (sql-redirect-one, sql-execute): Use `read-only-mode' on
10240 redirected output buffer.
10241 (sql-mode): Restore deleted code (Bug#13591).
10242
10243 2013-07-23 Juanma Barranquero <lekktu@gmail.com>
10244
10245 * desktop.el (desktop-clear, desktop-list*): Fix previous change.
10246
10247 2013-07-23 Michael Albinus <michael.albinus@gmx.de>
10248
10249 * net/tramp.el (tramp-handle-file-notify-add-watch): New defun.
10250
10251 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
10252 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
10253 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Use it.
10254
10255 2013-07-23 Juanma Barranquero <lekktu@gmail.com>
10256
10257 * desktop.el (desktop-clear): Simplify; remove useless checks
10258 against invalid buffer names.
10259 (desktop-list*): Use cl-list*.
10260 (desktop-buffer-info, desktop-create-buffer): Simplify.
10261
10262 2013-07-23 Leo Liu <sdl.web@gmail.com>
10263
10264 * bookmark.el (bookmark-make-record): Restore NAME as a default
10265 value. (Bug#14933)
10266
10267 2013-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
10268
10269 * emacs-lisp/autoload.el (autoload--setup-output): New function,
10270 extracted from autoload--insert-text.
10271 (autoload--insert-text): Remove.
10272 (autoload--print-cookie-text): New function, extracted from
10273 autoload--insert-cookie-text.
10274 (autoload--insert-cookie-text): Remove.
10275 (autoload-generate-file-autoloads): Adjust calls accordingly.
10276
10277 * winner.el (winner-hook-installed-p): Remove.
10278 (winner-mode): Simplify accordingly.
10279
10280 * subr.el (add-to-list): Fix compiler-macro when `append' is
10281 not constant. Don't use `cl-member' for the base case.
10282
10283 * progmodes/subword.el: Fix boundary case (bug#13758).
10284 (subword-forward-regexp): Make it a constant. Wrap optional \\W in its
10285 own group.
10286 (subword-backward-regexp): Make it a constant.
10287 (subword-forward-internal): Don't treat a trailing capital as the
10288 beginning of a word.
10289
10290 2013-07-22 Ari Roponen <ari.roponen@gmail.com> (tiny change)
10291
10292 * emacs-lisp/package.el (package-menu-mode): Don't modify the
10293 global value of tabulated-list-revert-hook (bug#14930).
10294
10295 2013-07-22 Juanma Barranquero <lekktu@gmail.com>
10296
10297 * desktop.el: Require 'cl-lib.
10298 (desktop-before-saving-frames-functions): New hook.
10299 (desktop--process-minibuffer-frames): Set desktop-mini parameter only
10300 for frames being saved. Rename from desktop--save-minibuffer-frames.
10301 (desktop-save-frames): Run hook desktop-before-saving-frames-functions.
10302 Do not save frames with non-nil `desktop-dont-save' parameter.
10303 Filter out deleted frames.
10304 (desktop--find-frame): Use cl-find-if.
10305 (desktop--select-frame): Use cl-(first|second|third) to access values
10306 of desktop-mini.
10307 (desktop--make-frame): Use cl-delete-if.
10308 (desktop--sort-states): Fix sorting of minibuffer-owning frames.
10309 (desktop-restore-frames): Use cl-(first|second|third) to access values
10310 of desktop-mini. Look for visible frame at the end, not while
10311 restoring frames.
10312
10313 * dired-x.el (dired-mark-unmarked-files, dired-virtual)
10314 (dired-guess-default, dired-mark-sexp, dired-filename-at-point):
10315 Use string-match-p, looking-at-p (bug#14927).
10316
10317 2013-07-21 Juanma Barranquero <lekktu@gmail.com>
10318
10319 * desktop.el (desktop-saved-frame-states):
10320 Rename from desktop--saved-states; all users changed.
10321 (desktop-save-frames): Rename from desktop--save-frames.
10322 Do not save state to desktop file.
10323 (desktop-save): Save desktop-saved-frame-states to desktop file
10324 and reset to nil.
10325 (desktop-restoring-frames-p): New function.
10326 (desktop-restore-frames): Use it. Rename from desktop--restore-frames.
10327 (desktop-read): Use desktop-restoring-frames-p. Do not try to fix
10328 buffer-lists when restoring frames. Suggested by Martin Rudalics.
10329
10330 * desktop.el: Correctly restore iconified frames.
10331 (desktop--filter-iconified-position): New function.
10332 (desktop-filter-parameters-alist): Add entries for `top' and `left'.
10333
10334 2013-07-20 Glenn Morris <rgm@gnu.org>
10335
10336 * progmodes/gdb-mi.el (gdb-delete-handler, gdb-stopped):
10337 Let `message' do the formatting.
10338 (def-gdb-preempt-display-buffer): Add explicit format.
10339
10340 * image-dired.el (image-dired-track-original-file):
10341 Use with-current-buffer.
10342 (image-dired-track-thumbnail): Use with-current-buffer.
10343 Avoid changing point of wrong window.
10344
10345 * image-dired.el (image-dired-track-original-file):
10346 Avoid changing point of wrong window. (Bug#14909)
10347
10348 2013-07-20 Richard Copley <rcopley@gmail.com> (tiny change)
10349
10350 * progmodes/gdb-mi.el (gdb-done-or-error):
10351 Guard against "%" in gdb output. (Bug#14127)
10352
10353 2013-07-20 Andreas Schwab <schwab@linux-m68k.org>
10354
10355 * progmodes/sh-script.el (sh-read-variable): Remove interactive spec.
10356 (Bug#14826)
10357
10358 * international/mule.el (coding-system-iso-2022-flags): Fix last
10359 change.
10360
10361 2013-07-20 Kenichi Handa <handa@gnu.org>
10362
10363 * international/mule.el (coding-system-iso-2022-flags):
10364 Add `8-bit-level-4'. (Bug#8522)
10365
10366 2013-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
10367
10368 * net/shr.el (shr-mouse-browse-url): New command and keystroke
10369 (bug#14815).
10370
10371 * net/eww.el (eww-process-text-input): Allow inputting when the
10372 point is at the start of the line, as the properties aren't
10373 front-sticky.
10374
10375 * net/shr.el (shr-make-table-1): Ensure that we don't infloop on
10376 degenerate widths.
10377
10378 2013-07-19 Richard Stallman <rms@gnu.org>
10379
10380 * epa.el (epa-popup-info-window): Doc fix.
10381
10382 * subr.el (split-string): New arg TRIM.
10383
10384 2013-07-18 Juanma Barranquero <lekktu@gmail.com>
10385
10386 * frame.el (blink-cursor-timer-function, blink-cursor-suspend):
10387 Add check for W32 (followup to 2013-07-16T11:41:06Z!jan.h.d@swipnet.se).
10388
10389 2013-07-18 Michael Albinus <michael.albinus@gmx.de>
10390
10391 * filenotify.el (file-notify--library): Rename from
10392 `file-notify-support'. Do not autoload. Adapt all uses.
10393 (file-notify-supported-p): New defun.
10394
10395 * autorevert.el (auto-revert-use-notify):
10396 Use `file-notify-supported-p' instead of `file-notify-support'.
10397 Adapt docstring.
10398 (auto-revert-notify-add-watch): Use `file-notify-supported-p'.
10399
10400 * net/tramp.el (tramp-file-name-for-operation):
10401 Add `file-notify-supported-p'.
10402
10403 * net/tramp-sh.el (tramp-sh-handle-file-notify-supported-p):
10404 New defun.
10405 (tramp-sh-file-name-handler-alist): Add it as handler for
10406 `file-notify-supported-p '.
10407
10408 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
10409 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
10410 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
10411 Add `ignore' as handler for `file-notify-*' functions.
10412
10413 2013-07-17 Eli Zaretskii <eliz@gnu.org>
10414
10415 * simple.el (line-move-partial, line-move): Don't start vscroll or
10416 scroll-up if the current line is not taller than the window.
10417 (Bug#14881)
10418
10419 2013-07-16 Dmitry Gutov <dgutov@yandex.ru>
10420
10421 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Do not
10422 highlight question marks in the method names as strings.
10423 (ruby-block-beg-keywords): Inline.
10424 (ruby-font-lock-keyword-beg-re): Extract from
10425 `ruby-font-lock-keywords'.
10426
10427 2013-07-16 Jan Djärv <jan.h.d@swipnet.se>
10428
10429 * frame.el (blink-cursor-blinks): New defcustom.
10430 (blink-cursor-blinks-done): New defvar.
10431 (blink-cursor-start): Set blink-cursor-blinks-done to 1.
10432 (blink-cursor-timer-function): Check if number of blinks has been
10433 done on X and NS.
10434 (blink-cursor-suspend, blink-cursor-check): New defuns.
10435
10436 2013-07-15 Glenn Morris <rgm@gnu.org>
10437
10438 * edmacro.el (edmacro-format-keys): Fix previous change.
10439
10440 2013-07-15 Paul Eggert <eggert@cs.ucla.edu>
10441
10442 * shell.el (explicit-bash-args): Remove obsolete hack for Bash 1.x.
10443 The hack didn't work outside English locales anyway.
10444
10445 2013-07-15 Juanma Barranquero <lekktu@gmail.com>
10446
10447 * simple.el (define-alternatives): Rename from alternatives-define,
10448 per RMS' suggestion.
10449
10450 2013-07-14 Juanma Barranquero <lekktu@gmail.com>
10451
10452 * desktop.el (desktop-restore-frames): Change default to t.
10453 (desktop-restore-in-current-display): Now offer more options.
10454 (desktop-restoring-reuses-frames): New customization option.
10455 (desktop--saved-states): Doc fix.
10456 (desktop-filter-parameters-alist): New variable, renamed and expanded
10457 from desktop--excluded-frame-parameters.
10458 (desktop--target-display): New variable.
10459 (desktop-switch-to-gui-p, desktop-switch-to-tty-p)
10460 (desktop--filter-tty*, desktop--filter-*-color)
10461 (desktop--filter-minibuffer, desktop--filter-restore-desktop-parm)
10462 (desktop--filter-save-desktop-parm)
10463 (desktop-restore-in-original-display-p): New functions.
10464 (desktop--filter-frame-parms): Use new desktop-filter-parameters-alist.
10465 (desktop--save-minibuffer-frames): New function, inspired by a similar
10466 function from Martin Rudalics.
10467 (desktop--save-frames): Call it; play nice with desktop-globals-to-save.
10468 (desktop--restore-in-this-display-p): Remove.
10469 (desktop--find-frame): Rename from desktop--find-frame-in-display
10470 and add predicate argument.
10471 (desktop--make-full-frame): Remove, integrated into desktop--make-frame.
10472 (desktop--reuse-list): New variable.
10473 (desktop--select-frame, desktop--make-frame, desktop--sort-states):
10474 New functions.
10475 (desktop--restore-frames): Add support for "minibuffer-special" frames.
10476
10477 2013-07-14 Michael Albinus <michael.albinus@gmx.de>
10478
10479 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Use `ignore-error'.
10480
10481 2013-07-13 Dmitry Gutov <dgutov@yandex.ru>
10482
10483 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
10484 Highlight conversion methods on Kernel.
10485
10486 2013-07-13 Alan Mackenzie <acm@muc.de>
10487
10488 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Label CASE 13
10489 and comment it out. This out-commenting enables certain C++
10490 declarations to be parsed correctly.
10491
10492 2013-07-13 Eli Zaretskii <eliz@gnu.org>
10493
10494 * international/mule.el (define-coding-system): Doc fix.
10495
10496 * simple.el (default-font-height): Don't call font-info if the
10497 frame's default font didn't change since the frame was created.
10498 (Bug#14838)
10499
10500 2013-07-13 Leo Liu <sdl.web@gmail.com>
10501
10502 * ido.el (ido-read-file-name): Guard against non-symbol value.
10503
10504 2013-07-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
10505
10506 * progmodes/python.el (python-imenu--build-tree): Fix corner case
10507 in nested defuns.
10508
10509 2013-07-13 Leo Liu <sdl.web@gmail.com>
10510
10511 * ido.el (ido-exhibit): Handle ido-enter-matching-directory before
10512 ido-set-matches call. (Bug#6852)
10513
10514 2013-07-12 Dmitry Gutov <dgutov@yandex.ru>
10515
10516 * progmodes/ruby-mode.el (ruby-percent-literals-beg-re)
10517 (ruby-syntax-expansion-allowed-p): Support array of symbols, for
10518 Ruby 2.0.
10519 (ruby-font-lock-keywords): Distinguish calls to functions with
10520 module-like names from module references. Highlight character
10521 literals.
10522
10523 2013-07-12 Sergio Durigan Junior <sergiodj@riseup.net> (tiny change)
10524
10525 * progmodes/gdb-mi.el (gdb-strip-string-backslash): New function.
10526 (gdb-send): Handle continued commands. (Bug#14847)
10527
10528 2013-07-12 Juanma Barranquero <lekktu@gmail.com>
10529
10530 * desktop.el (desktop--v2s): Remove unused local variable.
10531 (desktop-save-buffer): Make defvar-local; adjust docstring.
10532 (desktop-auto-save-timeout, desktop-owner): Use ignore-errors.
10533 (desktop-clear, desktop-save-buffer-p): Use string-match-p.
10534
10535 2013-07-12 Andreas Schwab <schwab@linux-m68k.org>
10536
10537 * emacs-lisp/map-ynp.el (map-y-or-n-p): Fix last change.
10538
10539 2013-07-12 Eli Zaretskii <eliz@gnu.org>
10540
10541 * simple.el (next-line, previous-line): Document TRY-VSCROLL and ARG.
10542 (Bug#14842)
10543
10544 2013-07-12 Glenn Morris <rgm@gnu.org>
10545
10546 * doc-view.el: Require cl-lib at runtime too.
10547 (doc-view-remove-if): Remove.
10548 (doc-view-search-next-match, doc-view-search-previous-match):
10549 Use cl-remove-if.
10550
10551 * edmacro.el: Require cl-lib at runtime too.
10552 (edmacro-format-keys, edmacro-parse-keys): Use cl-mismatch, cl-subseq.
10553 (edmacro-mismatch, edmacro-subseq): Remove.
10554
10555 * shadowfile.el: Require cl-lib.
10556 (shadow-remove-if): Remove.
10557 (shadow-set-cluster, shadow-shadows-of-1, shadow-remove-from-todo):
10558 Use cl-remove-if.
10559
10560 * wid-edit.el: Require cl-lib.
10561 (widget-choose): Use cl-remove-if.
10562 (widget-remove-if): Remove.
10563
10564 * progmodes/ebrowse.el: Require cl-lib at runtime too.
10565 (ebrowse-delete-if-not): Remove.
10566 (ebrowse-browser-buffer-list, ebrowse-member-buffer-list)
10567 (ebrowse-tree-buffer-list, ebrowse-same-tree-member-buffer-list):
10568 Use cl-delete-if-not.
10569
10570 2013-07-12 Juanma Barranquero <lekktu@gmail.com>
10571
10572 * emacs-lisp/cl-macs.el (cl-multiple-value-bind, cl-multiple-value-setq)
10573 (cl-the, cl-declare, cl-defstruct): Fix typos in docstrings.
10574
10575 2013-07-12 Leo Liu <sdl.web@gmail.com>
10576
10577 * ido.el (dired-do-copy, dired): Set 'ido property. (Bug#11954)
10578
10579 2013-07-11 Glenn Morris <rgm@gnu.org>
10580
10581 * emacs-lisp/edebug.el: Require cl-lib at run-time too.
10582 (edebug-gensym-index, edebug-gensym):
10583 Remove reimplementation of cl-gensym.
10584 (edebug-make-enter-wrapper, edebug-make-form-wrapper): Use cl-gensym.
10585
10586 * thumbs.el: Require cl-lib at run-time too.
10587 (thumbs-gensym-counter, thumbs-gensym):
10588 Remove reimplementation of cl-gensym.
10589 (thumbs-temp-file): Use cl-gensym.
10590
10591 * emacs-lisp/ert.el: Require cl-lib at runtime too.
10592 (ert--cl-do-remf, ert--remprop, ert--remove-if-not)
10593 (ert--intersection, ert--set-difference, ert--set-difference-eq)
10594 (ert--union, ert--gensym-counter, ert--gensym-counter)
10595 (ert--coerce-to-vector, ert--remove*, ert--string-position)
10596 (ert--mismatch, ert--subseq): Remove reimplementations of cl funcs.
10597 (ert-make-test-unbound, ert--expand-should-1)
10598 (ert--expand-should, ert--should-error-handle-error)
10599 (should-error, ert--explain-equal-rec)
10600 (ert--plist-difference-explanation, ert-select-tests)
10601 (ert--make-stats, ert--remove-from-list, ert--string-first-line):
10602 Use cl-lib functions rather than reimplementations.
10603
10604 2013-07-11 Michael Albinus <michael.albinus@gmx.de>
10605
10606 * net/tramp.el (tramp-methods): Extend docstring.
10607 (tramp-connection-timeout): New defcustom.
10608 (tramp-error-with-buffer): Reset timestamp only when appropriate.
10609 (with-tramp-progress-reporter): Simplify.
10610 (tramp-process-actions): Improve messages.
10611
10612 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
10613 * net/tramp-sh.el (tramp-maybe-open-connection):
10614 Use `tramp-connection-timeout'.
10615 (tramp-methods) <su, sudo, ksu>: Add method specific timeouts.
10616 (Bug#14808)
10617
10618 2013-07-11 Leo Liu <sdl.web@gmail.com>
10619
10620 * ido.el (ido-read-file-name): Conform to the requirements of
10621 read-file-name. (Bug#11861)
10622 (ido-read-directory-name): Conform to the requirements of
10623 read-directory-name.
10624
10625 2013-07-11 Juanma Barranquero <lekktu@gmail.com>
10626
10627 * subr.el (delay-warning): New function.
10628
10629 2013-07-10 Eli Zaretskii <eliz@gnu.org>
10630
10631 * simple.el (default-line-height): New function.
10632 (line-move-partial, line-move): Use it instead of computing the
10633 line height inline.
10634 (line-move-partial): Always compute ROWH. If the last line is
10635 partially-visible, but its text is completely visible, allow
10636 cursor to enter such a partially-visible line.
10637
10638 2013-07-10 Michael Albinus <michael.albinus@gmx.de>
10639
10640 Improve error messages. (Bug#14808)
10641
10642 * net/tramp.el (tramp-current-connection): New defvar, moved from
10643 tramp-sh.el.
10644 (tramp-message-show-progress-reporter-message): Remove, not
10645 needed anymore.
10646 (tramp-error-with-buffer): Show message in minibuffer.
10647 Discard input before waiting. Reset connection timestamp.
10648 (with-tramp-progress-reporter): Improve messages.
10649 (tramp-process-actions): Use progress reporter. Delete process in
10650 case of error. Improve messages.
10651
10652 * net/tramp-sh.el (tramp-barf-if-no-shell-prompt): Use condition-case.
10653 Call `tramp-error-with-buffer' with vector and buffer.
10654 (tramp-current-connection): Remove.
10655 (tramp-maybe-open-connection): The car of
10656 `tramp-current-connection' are the first 3 slots of the vector.
10657
10658 2013-07-10 Teodor Zlatanov <tzz@lifelogs.com>
10659
10660 * progmodes/cfengine.el (cfengine3-indent-line): Do not indent
10661 inside continued strings.
10662
10663 2013-07-10 Paul Eggert <eggert@cs.ucla.edu>
10664
10665 Timestamp fixes for undo (Bug#14824).
10666 * files.el (clear-visited-file-modtime): Move here from fileio.c.
10667
10668 2013-07-10 Leo Liu <sdl.web@gmail.com>
10669
10670 * files.el (require-final-newline): Allow safe local value.
10671 (Bug#14834)
10672
10673 2013-07-09 Leo Liu <sdl.web@gmail.com>
10674
10675 * ido.el (ido-read-directory-name): Handle fallback.
10676 (ido-read-file-name): Update DIR to ido-current-directory.
10677 (Bug#1516)
10678 (ido-add-virtual-buffers-to-list): Robustify. (Bug#14552)
10679
10680 2013-07-09 Dmitry Gutov <dgutov@yandex.ru>
10681
10682 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Remove extra
10683 "autoload". Remove "warn lower camel case" section, previously
10684 commented out. Highlight negation char. Do not highlight the
10685 target in singleton method definitions.
10686
10687 2013-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
10688
10689 * faces.el (tty-setup-hook): Declare the hook.
10690
10691 * emacs-lisp/pcase.el (pcase--split-pred): Add `vars' argument to try
10692 and detect when a guard/pred depends on local vars (bug#14773).
10693 (pcase--u1): Adjust caller.
10694
10695 2013-07-08 Eli Zaretskii <eliz@gnu.org>
10696
10697 * simple.el (line-move-partial, line-move): Account for
10698 line-spacing.
10699 (line-move-partial): Avoid setting vscroll when the last
10700 partially-visible line in window is of default height.
10701
10702 2013-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
10703
10704 * net/shr.el (shr-map): Reinstate the `u' key binding, since it's
10705 been used a while.
10706
10707 2013-07-07 Juanma Barranquero <lekktu@gmail.com>
10708
10709 * subr.el (read-quoted-char): Remove unused local variable `char'.
10710
10711 2013-07-07 Michael Kifer <kifer@cs.stonybrook.edu>
10712
10713 * vc/ediff.el (ediff-version): Version update.
10714 (ediff-files-command, ediff3-files-command, ediff-merge-command)
10715 (ediff-merge-with-ancestor-command, ediff-directories-command)
10716 (ediff-directories3-command, ediff-merge-directories-command)
10717 (ediff-merge-directories-with-ancestor-command): New functions.
10718 All are command-line interfaces to ediff: to facilitate calling
10719 Emacs with the appropriate ediff functions invoked.
10720
10721 * emulation/viper-cmd.el (viper-del-forward-char-in-insert):
10722 New function.
10723 (viper-save-kill-buffer): Check if buffer is modified.
10724
10725 * emulation/viper.el (viper-version): Version update.
10726 (viper-emacs-state-mode-list): Add egg-status-buffer-mode.
10727
10728 2013-07-07 Stefan Monnier <monnier@iro.umontreal.ca>
10729
10730 * faces.el (tty-run-terminal-initialization): Run new tty-setup-hook.
10731 * emulation/viper-cmd.el (viper-envelop-ESC-key): Remove function.
10732 (viper-intercept-ESC-key): Simplify.
10733 * emulation/viper-keym.el (viper-ESC-key): Make it a constant,
10734 don't use kbd.
10735 * emulation/viper.el (viper--tty-ESC-filter, viper--lookup-key)
10736 (viper-catch-tty-ESC, viper-uncatch-tty-ESC)
10737 (viper-setup-ESC-to-escape): New functions.
10738 (viper-go-away, viper-set-hooks): Call viper-setup-ESC-to-escape.
10739 (viper-set-hooks): Do not modify flyspell-mode-hook. (Bug#13793)
10740
10741 2013-07-07 Eli Zaretskii <eliz@gnu.org>
10742
10743 * simple.el (default-font-height, window-screen-lines):
10744 New functions.
10745 (line-move, line-move-partial): Use them instead of
10746 frame-char-height and window-text-height. This makes scrolling
10747 text smoother when the buffer's default face uses a font that is
10748 different from the frame's default font.
10749
10750 2013-07-06 Jan Djärv <jan.h.d@swipnet.se>
10751
10752 * files.el (write-file): Do not display confirm dialog for NS,
10753 it does its own dialog, which can't be canceled (Bug#14578).
10754
10755 2013-07-06 Eli Zaretskii <eliz@gnu.org>
10756
10757 * simple.el (line-move-partial): Adjust the row returned by
10758 posn-at-point for the current window-vscroll. (Bug#14567)
10759
10760 2013-07-06 Michael Albinus <michael.albinus@gmx.de>
10761
10762 * net/tramp-sh.el (tramp-sh-file-gvfs-monitor-dir-process-filter)
10763 (tramp-sh-file-inotifywait-process-filter): Handle file names with
10764 spaces.
10765
10766 2013-07-06 Martin Rudalics <rudalics@gmx.at>
10767
10768 * window.el (window-state-put-stale-windows): New variable.
10769 (window--state-put-2): Save list of windows without matching buffer.
10770 (window-state-put): Remove "bufferless" windows if possible.
10771
10772 2013-07-06 Juanma Barranquero <lekktu@gmail.com>
10773
10774 * simple.el (alternatives-define): Remove leftover :group keyword.
10775 Tweak docstring.
10776
10777 2013-07-06 Leo Liu <sdl.web@gmail.com>
10778
10779 * ido.el (ido-use-virtual-buffers): Allow new value 'auto.
10780 (ido-enable-virtual-buffers): New variable.
10781 (ido-buffer-internal, ido-toggle-virtual-buffers)
10782 (ido-make-buffer-list): Use it.
10783 (ido-exhibit): Support turning on and off virtual buffers
10784 automatically.
10785
10786 2013-07-06 Juanma Barranquero <lekktu@gmail.com>
10787
10788 * simple.el (alternatives-define): New macro.
10789
10790 2013-07-06 Stefan Monnier <monnier@iro.umontreal.ca>
10791
10792 * subr.el (read-quoted-char): Use read-key.
10793 (sit-for): Let read-event decode tty input (bug#14782).
10794
10795 2013-07-05 Stephen Berman <stephen.berman@gmx.net>
10796
10797 * calendar/todo-mode.el: Add handling of file deletion, both by
10798 mode command and externally. Fix various related bugs.
10799 Clarify Commentary and improve some documentation strings and code.
10800 (todo-delete-file): New command.
10801 (todo-check-file): New function.
10802 (todo-show): Handle external deletion of the file we're trying to
10803 show (bug#14688). Replace called-interactively-p by an optional
10804 prefix argument to avoid problematic interaction with catch form
10805 when byte compiled (bug#14702).
10806 (todo-quit): Handle external deletion of the archive's todo file.
10807 Make sure the buffer that was visiting the archive file is still
10808 live before trying to bury it.
10809 (todo-category-completions): Handle external deletion of any
10810 category completion files.
10811 (todo-jump-to-category, todo-basic-insert-item): Recalculate list
10812 of todo files, in case of external deletion.
10813 (todo-add-file): Replace unnecessary setq by let-binding.
10814 (todo-find-archive): Check whether there are any archives.
10815 Replace unnecessary setq by let-binding.
10816 (todo-archive-done-item): Use find-file-noselect to get the
10817 archive buffer whether or not the archive already exists.
10818 Remove superfluous code. Use file size instead of buffer-file-name to
10819 check if the archive is new; if it is, update list of archives.
10820 (todo-default-todo-file): Allow nil to be a valid value for when
10821 there are no todo files.
10822 (todo-reevaluate-default-file-defcustom): Use corrected definition
10823 of todo-default-todo-file.
10824 (todo-key-bindings-t+a+f): Add key binding for todo-delete-file.
10825 (todo-delete-category, todo-show-categories-table)
10826 (todo-category-number): Clarify comment.
10827 (todo-filter-items): Clarify documentation string.
10828 (todo-show-current-file, todo-display-as-todo-file)
10829 (todo-reset-and-enable-done-separator): Tweak documentation string.
10830 (todo-done-separator): Make separator length window-width, since
10831 bug#2749 is now fixed.
10832
10833 2013-07-05 Michael Albinus <michael.albinus@gmx.de>
10834
10835 * net/tramp-sh.el (tramp-sh-handle-file-notify-add-watch):
10836 Support both "gvfs-monitor-dir" and "inotifywait".
10837 (tramp-sh-file-inotifywait-process-filter): Rename from
10838 `tramp-sh-file-notify-process-filter'.
10839 (tramp-sh-file-gvfs-monitor-dir-process-filter)
10840 (tramp-get-remote-gvfs-monitor-dir): New defuns.
10841
10842 2013-07-05 Leo Liu <sdl.web@gmail.com>
10843
10844 * autoinsert.el (auto-insert-alist): Default to lexical-binding.
10845
10846 2013-07-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10847
10848 * frame.el (display-pixel-height, display-pixel-width)
10849 (display-mm-height, display-mm-width): Mention behavior on
10850 multi-monitor setups in docstrings.
10851 (w32-display-monitor-attributes-list): Declare function.
10852 (display-monitor-attributes-list): Use it.
10853
10854 2013-07-04 Michael Albinus <michael.albinus@gmx.de>
10855
10856 * filenotify.el: New package.
10857
10858 * autorevert.el (top): Require filenotify.el.
10859 (auto-revert-notify-enabled): Remove. Use `file-notify-support'
10860 instead.
10861 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
10862 (auto-revert-notify-handler): Use `file-notify-*' functions.
10863
10864 * subr.el (file-notify-handle-event): Move function to filenotify.el.
10865
10866 * net/tramp.el (tramp-file-name-for-operation):
10867 Handle `file-notify-add-watch' and `file-notify-rm-watch'.
10868
10869 * net/tramp-sh.el (tramp-sh-file-name-handler-alist): Add handler
10870 for `file-notify-add-watch' and `file-notify-rm-watch'.
10871 (tramp-process-sentinel): Improve trace.
10872 (tramp-sh-handle-file-notify-add-watch)
10873 (tramp-sh-file-notify-process-filter)
10874 (tramp-sh-handle-file-notify-rm-watch)
10875 (tramp-get-remote-inotifywait): New defuns.
10876
10877 2013-07-03 Juri Linkov <juri@jurta.org>
10878
10879 * buff-menu.el (Buffer-menu-multi-occur): Add args and move the
10880 call of `occur-read-primary-args' to interactive spec.
10881
10882 * ibuffer.el (ibuffer-mode-map): Bind "M-s a C-o" to
10883 `ibuffer-do-occur' like in buff-menu.el. (Bug#14673)
10884
10885 2013-07-03 Matthias Meulien <orontee@gmail.com>
10886
10887 * buff-menu.el (Buffer-menu-mode-map): Bind "M-s a C-o" to
10888 `Buffer-menu-multi-occur'. Add it to the menu.
10889 (Buffer-menu-mode): Document it in docstring.
10890 (Buffer-menu-multi-occur): New command. (Bug#14673)
10891
10892 2013-07-03 Dmitry Gutov <dgutov@yandex.ru>
10893
10894 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Highlight more
10895 keywords and built-ins.
10896
10897 2013-07-03 Glenn Morris <rgm@gnu.org>
10898
10899 * subr.el (y-or-n-p): Handle empty prompts. (Bug#14770)
10900
10901 Make info-xref checks case-sensitive by default
10902 * info.el (Info-find-node, Info-find-in-tag-table)
10903 (Info-find-node-in-buffer, Info-find-node-2, Info-goto-node):
10904 Add option for exact case matching of nodes.
10905 * info-xref.el (info-xref): New custom group.
10906 (info-xref-case-fold): New option.
10907 (info-xref-goto-node-p): Pass info-xref-case-fold to Info-goto-node.
10908
10909 2013-07-03 Leo Liu <sdl.web@gmail.com>
10910
10911 * ido.el (ido-delete-file-at-head): Respect delete-by-moving-to-trash.
10912
10913 2013-07-03 Dmitry Gutov <dgutov@yandex.ru>
10914
10915 * progmodes/ruby-mode.el (ruby-move-to-block): When we're at a
10916 middle of block statement initially, lower the depth. Remove
10917 FIXME comment, not longer valid. Remove middle of block statement
10918 detection, no need to do that anymore since we've been using
10919 `ruby-parse-region' here.
10920
10921 2013-07-02 Jan Djärv <jan.h.d@swipnet.se>
10922
10923 * term/ns-win.el (display-format-alist): Use .* (Bug#14765).
10924
10925 2013-07-01 Katsumi Yamaoka <yamaoka@jpl.org>
10926
10927 * wid-edit.el (widget-default-get): Don't modify widget (Bug#14738).
10928
10929 2013-07-01 Juanma Barranquero <lekktu@gmail.com>
10930
10931 * desktop.el (desktop-restore-frames): Rename from desktop-save-windows.
10932 (desktop-restore-in-current-display): New customization option.
10933 (desktop--excluded-frame-parameters): Add `font'.
10934 (desktop--save-frames): Rename from desktop--save-windows.
10935 (desktop--restore-in-this-display-p): New function.
10936 (desktop--make-full-frame): Remove unwanted width/height from
10937 full(width|height) frames.
10938 (desktop--restore-frames): Rename from desktop--restore-windows.
10939 Obey desktop-restore-current-display. Do not delete old frames or
10940 select a new frame unless we were able to restore at least one frame.
10941
10942 2013-06-30 Michal Nazarewicz <mina86@mina86.com>
10943
10944 * files.el (find-file-noselect): Simplify conditional expression.
10945
10946 * textmodes/remember.el (remember-append-to-file):
10947 Don't mix `find-buffer-visiting' and `get-file-buffer'.
10948
10949 Add `remember-notes' function to store random notes across Emacs
10950 restarts.
10951 * textmodes/remember.el (remember-data-file): Add :set callback to
10952 affect notes buffer (if any).
10953 (remember-notes): New command.
10954 (remember-notes-buffer-name, bury-remember-notes-on-kill):
10955 New defcustoms for the `remember-notes' function.
10956 (remember-notes-save-and-bury-buffer): New command.
10957 (remember-notes-mode-map): New variable.
10958 (remember-mode): New minor mode.
10959 (remember-notes--kill-buffer-query): New function.
10960 * startup.el (initial-buffer-choice): Add notes to custom type.
10961
10962 2013-06-30 Eli Zaretskii <eliz@gnu.org>
10963
10964 * bindings.el (right-char, left-char): Don't call sit-for, this is
10965 no longer needed. Use arithmetic comparison only for numerical
10966 arguments.
10967
10968 * international/mule-cmds.el (select-safe-coding-system):
10969 Handle the case of FROM being a string correctly. (Bug#14755)
10970
10971 2013-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
10972
10973 * net/shr.el (shr-make-table-1): Add a sanity check that allows
10974 progression on degenerate tables.
10975 (shr-rescale-image): ImageMagick animated images currently don't work.
10976
10977 2013-06-30 Juanma Barranquero <lekktu@gmail.com>
10978
10979 Some fixes and improvements for desktop frame restoration.
10980 It is still experimental and disabled by default.
10981 * desktop.el (desktop--save-windows): Put the selected frame at
10982 the head of the list.
10983 (desktop--make-full-frame): New function.
10984 (desktop--restore-windows): Try to re-select the frame that was
10985 selected upon saving. Do not abort if some frames fail to restore,
10986 just show an error message and continue. Set up maximized frames
10987 so they have default non-maximized dimensions.
10988
10989 2013-06-30 Dmitry Gutov <dgutov@yandex.ru>
10990
10991 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
10992 Don't start heredoc inside a string or comment.
10993
10994 2013-06-29 Eli Zaretskii <eliz@gnu.org>
10995
10996 * bindings.el (visual-order-cursor-movement): New defcustom.
10997 (right-char, left-char): Provide visual-order cursor motion by
10998 calling move-point-visually. Update the doc strings.
10999
11000 2013-06-28 Kenichi Handa <handa@gnu.org>
11001
11002 * international/mule.el (define-coding-system): New coding system
11003 properties :inhibit-null-byte-detection,
11004 :inhibit-iso-escape-detection, and :prefer-utf-8.
11005 (set-buffer-file-coding-system): If :charset-list property of
11006 CODING-SYSTEM is `emacs', do not check if CODING-SYSTEM is
11007 appropriate for setting.
11008
11009 * international/mule-cmds.el (select-safe-coding-system):
11010 If DEFAULT-CODING-SYSTEM is prefer-utf-8 and the buffer contains
11011 multibyte characters, return utf-8 (or one of its siblings).
11012
11013 * international/mule-conf.el (prefer-utf-8): New coding system.
11014 (file-coding-system-alist): Use prefer-utf-8 as default for Elisp
11015 files.
11016
11017 2013-06-28 Ivan Kanis <ivan@kanis.fr>
11018
11019 * net/shr.el (shr-render-region): New function.
11020
11021 * net/eww.el: Autoload `eww-browse-url'.
11022
11023 2013-06-27 Dmitry Gutov <dgutov@yandex.ru>
11024
11025 * emacs-lisp/package-x.el (package-upload-buffer-internal):
11026 Adapt to `package-desc-version' being a list.
11027 Use `package--ac-desc-version' to retrieve version from a package
11028 archive element.
11029
11030 2013-06-27 Juanma Barranquero <lekktu@gmail.com>
11031
11032 New experimental feature to save&restore window and frame setup.
11033 * desktop.el (desktop-save-windows): New defcustom.
11034 (desktop--saved-states): New var.
11035 (desktop--excluded-frame-parameters): New defconst.
11036 (desktop--filter-frame-parms, desktop--find-frame-in-display)
11037 (desktop--restore-windows, desktop--save-windows): New functions.
11038 (desktop-save): Call `desktop--save-windows'.
11039 (desktop-read): Call `desktop--restore-windows'.
11040
11041 2013-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
11042
11043 * net/shr.el (add-face-text-property): Remove compat definition.
11044
11045 2013-06-27 Stephen Berman <stephen.berman@gmx.net>
11046
11047 * info.el (Info-try-follow-nearest-node): Move search for footnote
11048 above search for node name to prevent missing a footnote (bug#14717).
11049
11050 2013-06-27 Stephen Berman <stephen.berman@gmx.net>
11051
11052 * obsolete/otodo-mode.el: Add obsolescence info to file header.
11053
11054 2013-06-27 Leo Liu <sdl.web@gmail.com>
11055
11056 * net/eww.el (eww-read-bookmarks): Check file size.
11057
11058 2013-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
11059
11060 * emacs-lisp/nadvice.el (advice--defalias-fset): Move advice back to
11061 advice--pending if newdef is nil or an autoload (bug#13820).
11062 (advice-mapc): New function.
11063
11064 2013-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
11065
11066 * net/eww.el (eww-mode): Undo isn't necessary in eww buffers,
11067 probably.
11068 (eww-mode-map): Add a menu bar.
11069 (eww-add-bookmark): New command.
11070 (eww-bookmark-mode): New mode and commands.
11071 (eww-add-bookmark): Remove newlines from the title.
11072 (eww-bookmark-browse): Don't bug out if it's the only window.
11073
11074 2013-06-26 Glenn Morris <rgm@gnu.org>
11075
11076 * htmlfontify.el (hfy-triplet): Handle unspecified-fg, bg.
11077 (hfy-size): Handle ttys. (Bug#14668)
11078
11079 * info-xref.el: Update for Texinfo 5 change in *note format.
11080 (info-xref-node-re, info-xref-note-re): New constants.
11081 (info-xref-check-buffer): Use info-xref-note-re.
11082
11083 2013-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
11084
11085 * simple.el (set-variable): Use read-from-minibuffer (bug#14710).
11086
11087 * emacs-lisp/package.el (package--add-to-archive-contents): Add missing
11088 nil terminate the loop (bug#14718).
11089
11090 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
11091
11092 * net/eww.el: Rework history traversal. When going forward/back,
11093 put these actions into the history, too, so that they can be
11094 replayed.
11095 (eww-render): Move the history reset to the correct buffer.
11096
11097 2013-06-25 Juri Linkov <juri@jurta.org>
11098
11099 * files-x.el (modify-dir-local-variable): Change the header comment
11100 in the file with directory local variables. (Bug#14692)
11101
11102 * files-x.el (read-file-local-variable-value): Add `default'.
11103 (Bug#14710)
11104
11105 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
11106
11107 * net/eww.el (eww-make-unique-file-name): Create a unique file
11108 name before saving to entering `y' accidentally asynchronously.
11109
11110 2013-06-25 Ivan Kanis <ivan@kanis.fr>
11111
11112 * net/eww.el (eww-download): New command and keystroke.
11113
11114 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
11115
11116 * net/eww.el (eww-copy-page-url): Change name of command.
11117
11118 * net/shr.el (shr-map): Change `shr-copy-url' from `u' to `w' to
11119 be more consistent with Info and dired.
11120
11121 * net/eww.el (eww-mode-map): Ditto.
11122
11123 2013-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
11124
11125 * emacs-lisp/package.el: Use lexical-binding. Include obsolete
11126 packages from archives.
11127 (package-archive-contents): Change format; include obsolete packages.
11128 (package-desc): Use `dir' to mark builtin packages.
11129 (package--from-builtin): Set the `dir' field to `builtin'.
11130 (generated-autoload-file, version-control): Declare.
11131 (package-compute-transaction): Change first arg and return value to be
11132 lists of package-descs. Adjust to new package-archive-contents format.
11133 (package--add-to-archive-contents): Adjust to new
11134 package-archive-contents format.
11135 (package-download-transaction): Arg is now a list of package-descs.
11136 (package-install): If `pkg' is a package name, pass it as
11137 a requirement, so it is subject to the usual (e.g. disabled) checks.
11138 (describe-package): Accept package-desc as well.
11139 (describe-package-1): Describe a specific package-desc. Add links to
11140 other package-descs for the same package name.
11141 (package-menu-describe-package): Pass the actual package-desc.
11142 (package-menu-mode): Add to tabulated-list-revert-hook so revert-buffer
11143 works correctly.
11144 (package-desc-status): New function.
11145 (package-menu--refresh): New function, extracted
11146 from package-menu--generate.
11147 (package-menu--generate): Use it.
11148 (package-delete): Update package-alist.
11149 (package-menu-execute): Don't call package-initialize.
11150
11151 * progmodes/idlw-toolbar.el, progmodes/idlw-shell.el,
11152 progmodes/idlw-help.el, progmodes/idlw-complete-structtag.el,
11153 progmodes/ebnf-yac.el, progmodes/ebnf-otz.el, progmodes/ebnf-iso.el,
11154 progmodes/ebnf-ebx.el, progmodes/ebnf-dtd.el, progmodes/ebnf-bnf.el,
11155 progmodes/ebnf-abn.el, emacs-lisp/package-x.el, emacs-lisp/cl-seq.el,
11156 emacs-lisp/cl-macs.el: Neuter the "Version:" header.
11157
11158 2013-06-25 Martin Rudalics <rudalics@gmx.at>
11159
11160 * window.el (window--state-get-1): Workaround for bug#14527.
11161 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00941.html
11162
11163 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
11164
11165 * net/eww.el (eww-back-url): Implement the history by stashing all
11166 the data into a list.
11167 (eww-forward-url): Allow going forward in the history, too.
11168
11169 2013-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
11170
11171 * files-x.el (read-file-local-variable-value): Use read-from-minibuffer
11172 for values and use read--expression for expressions (bug#14710).
11173 (read-file-local-variable): Avoid setq.
11174 (read-file-local-variable-mode): Use minor-mode-list.
11175
11176 2013-06-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
11177
11178 * textmodes/bibtex.el (bibtex-generate-url-list): Add support
11179 for DOI URLs.
11180
11181 2013-06-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
11182
11183 * textmodes/bibtex.el (bibtex-mode, bibtex-set-dialect):
11184 Update imenu-support when dialect changes.
11185
11186 2013-06-25 Leo Liu <sdl.web@gmail.com>
11187
11188 * ido.el (ido-read-internal): Allow forward slash on windows.
11189
11190 2013-06-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
11191
11192 * net/eww.el (eww): Start of strings is \\`, not ^.
11193
11194 2013-06-24 Ivan Kanis <ivan@kanis.fr>
11195
11196 * net/shr.el (shr-browse-url): Fix interactive spec.
11197
11198 * net/eww.el (eww): Add a trailing slash to domain names.
11199
11200 2013-06-24 Juanma Barranquero <lekktu@gmail.com>
11201
11202 * faces.el (face-spec-recalc): Revert part of 2013-06-23T20:29:18Z!lekktu@gmail.com (bug#14705).
11203
11204 2013-06-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
11205
11206 * net/shr.el (shr-browse-url): Use an external browser if given a
11207 prefix.
11208
11209 * net/eww.el (eww-external-browser): Move to shr.
11210
11211 2013-06-24 Ivan Kanis <ivan@kanis.fr>
11212
11213 * net/eww.el (eww): Work more correctly for file: URLs.
11214 (eww-detect-charset): Allow quoted charsets.
11215 (eww-yank-page-url): New command and keystroke.
11216
11217 2013-06-24 Daiki Ueno <ueno@gnu.org>
11218
11219 * epg.el (epg-make-context): Check if PROTOCOL is valid; embed the
11220 file name of gpg executable.
11221 (epg-context-program): New function.
11222 (epg-context-home-directory): New function.
11223 (epg-context-set-program): New function.
11224 (epg-context-set-home-directory): New function.
11225 (epg--start): Use `epg-context-program' instead of
11226 'epg-gpg-program'.
11227 (epg--list-keys-1): Likewise.
11228
11229 2013-06-24 Leo Liu <sdl.web@gmail.com>
11230
11231 * ido.el (ido-read-internal): Fix bug#14620.
11232
11233 2013-06-23 Juanma Barranquero <lekktu@gmail.com>
11234
11235 * faces.el (face-documentation): Simplify.
11236 (read-face-attribute, tty-find-type, x-resolve-font-name):
11237 Use `string-match-p'.
11238 (list-faces-display): Use `string-match-p'. Simplify.
11239 (face-spec-recalc): Check face to avoid face alias loops.
11240 (read-color): Use `string-match-p' and non-capturing parenthesis.
11241
11242 2013-06-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
11243
11244 * net/shr.el (shr-rescale-image): Use the new
11245 :max-width/:max-height functionality.
11246
11247 2013-06-23 Ivan Kanis <ivan@kanis.fr>
11248
11249 * net/eww.el (eww-search-prefix): New variable.
11250 (eww): Use it.
11251 (eww-external-browser): New variable.
11252 (eww-mode-map): New keystroke.
11253 (eww-browse-with-external-browser): New command.
11254
11255 * net/eww.el: Bind `C-c C-c' to "submit" in all form keymaps.
11256
11257 2013-06-23 Juanma Barranquero <lekktu@gmail.com>
11258
11259 * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
11260 Don't skip aligning the next header field when padding is 0;
11261 otherwise, field width is not respected unless the title is as
11262 wide as the field.
11263
11264 2013-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
11265
11266 * emacs-lisp/package.el (package-el-version): Remove.
11267 (package-process-define-package): Fix inf-loop.
11268 (package-install): Allow symbols as arguments again.
11269
11270 2013-06-22 Dmitry Gutov <dgutov@yandex.ru>
11271
11272 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Move `catch',
11273 add some more keyword-like methods.
11274 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00911.html
11275
11276 2013-06-22 Juanma Barranquero <lekktu@gmail.com>
11277
11278 * bs.el (bs-buffer-show-mark): Make defvar-local.
11279 (bs-mode): Use setq-local.
11280
11281 * emacs-lock.el (emacs-lock-mode, emacs-lock--old-mode)
11282 (emacs-lock--try-unlocking): Make defvar-local.
11283
11284 2013-06-22 Glenn Morris <rgm@gnu.org>
11285
11286 * play/cookie1.el (cookie-apropos): Minor simplification.
11287
11288 * progmodes/gdb-mi.el (gdb-mapcar*): Remove, replace with cl-mapcar.
11289
11290 2013-06-22 Dmitry Gutov <dgutov@yandex.ru>
11291
11292 * progmodes/ruby-mode.el (auto-mode-alist): Do not use
11293 `regexp-opt', it breaks the build during dumping.
11294
11295 2013-06-21 Dmitry Gutov <dgutov@yandex.ru>
11296
11297 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
11298 Highlight keyword-like methods on Kernel and Module with
11299 font-lock-builtin-face.
11300 (auto-mode-alist): Consolidate different entries into one regexp
11301 and add more *file-s.
11302
11303 2013-06-21 Stephen Berman <stephen.berman@gmx.net>
11304
11305 * obsolete/otodo-mode.el: Move and rename from calendar/todo-mode.el.
11306
11307 * calendar/diary-lib.el (diary-goto-entry-function): New variable.
11308 (diary-entry): Use it in the action of this button type instead of
11309 diary-goto-entry.
11310
11311 * calendar/todo-mode.el: New version.
11312 (todo-add-category): Append new category to end of file and give
11313 it the highest number, instead of putting it at the beginning and
11314 giving it 0. Incorporate noninteractive functionality.
11315 (todo-forward-category): Adapt to 1-based category numbering.
11316 Allow skipping over archived categories.
11317 (todo-backward-category): Derive from todo-forward-category.
11318 (todo-backward-item, todo-forward-item): Make noninteractive and
11319 delegate interactive part to new commands. Make sensitive to done items.
11320 (todo-categories): Make value an alist of category names and
11321 vectors of item counts.
11322 (todo-category-beg): Make a defconst.
11323 (todo-category-number): Use 1 instead of 0 as initial value.
11324 (todo-category-select): Make sensitive to overlays, optional item
11325 highlighting and done items.
11326 (todo-delete-item): Make sensitive to overlays and marked and done items.
11327 (todo-edit-item): Make sensitive to overlays and editing of
11328 date/time header optional. Add format checks.
11329 (todo-edit-multiline): Rename to todo-edit-multiline-item. Make a
11330 no-op if point is not on an item. Advertise using todo-edit-quit.
11331 (todo-edit-mode): Make sensitive to new format, font-locking, and
11332 multiple todo files.
11333 (todo-insert-item, todo-insert-item-here): Derive from
11334 todo-basic-insert-item and extend functionality.
11335 (todo-item-end, todo-item-start): Make sensitive to done items.
11336 (todo-item-string): Don't return text properties. Restore point.
11337 (todo-jump-to-category): Make sensitive to multiple todo files and
11338 todo archives. Use extended category completion.
11339 (todo-lower-item, todo-raise-item): Rename to *-priority and
11340 derive from todo-set-item-priority.
11341 (todo-mode): Derive from special-mode. Make sensitive to new
11342 format, font-locking and multiple todo files. Make read-only.
11343 (todo-mode-map): Don't suppress digit keys, so they can supply
11344 prefix arguments. Add many new key bindings.
11345 (todo-prefix): Insert as an overlay instead of file text.
11346 Change semantics from diary date expression to purely visual mark.
11347 (todo-print): Rename to todo-print-buffer. Make buffer display
11348 features printable. Remove option to restrict number of items
11349 printed. Add option to print to file.
11350 (todo-print-function): Rename to todo-print-buffer-function.
11351 (todo-quit): Extend to handle exiting new todo modes.
11352 (todo-remove-item): Make sensitive to overlays.
11353 (todo-save): Extend to buffers of filtered items.
11354 (todo-show): Make sensitive to done items, multiple todo files and
11355 new todo modes. Offer to convert legacy todo file before creating
11356 first new todo file.
11357 (todo-show-priorities): Rename to todo-top-priorities.
11358 Change semantics of value 0.
11359 (todo-top-priorities): Rename to todo-filter-top-priorities,
11360 derive from todo-filter-items and extend functionality.
11361 (todo-save-top-priorities): Rename to todo-save-filtered-items-buffer
11362 and extend functionality to other types of filtered items.
11363 (todo-add-item-non-interactively, todo-ask-p, todo-cat-slct)
11364 (todo-category-end, todo-category-sep, todo-cats, todo-cmd-back)
11365 (todo-cmd-done, todo-cmd-edit, todo-cmd-forw, todo-cmd-inst)
11366 (todo-cmd-kill, todo-cmd-lowr, todo-cmd-next, todo-cmd-prev)
11367 (todo-cmd-rais, todo-cmd-save, todo-completing-read, todo-cp)
11368 (todo-edit-mode-hook, todo-entry-prefix-function)
11369 (todo-entry-timestamp-initials, todo-file-do, todo-file-done)
11370 (todo-file-item, todo-file-top, todo-header, todo-initial-setup)
11371 (todo-initials, todo-insert-threshold, todo-item-string-start)
11372 (todo-line-string, todo-menu, todo-mode-hook)
11373 (todo-more-important-p, todo-previous-answer, todo-previous-line)
11374 (todo-print-priorities, todo-remove-separator)
11375 (todo-save-top-priorities-too, todo-string-count-lines)
11376 (todo-string-multiline-p, todo-time-string-format)
11377 (todo-tmp-buffer-name): Remove.
11378 (todo-add-file, todo-archive-done-item, todo-choose-archive)
11379 (todo-convert-legacy-files, todo-copy-item, todo-delete-category)
11380 (todo-edit-category-diary-inclusion)
11381 (todo-edit-category-diary-nonmarking, todo-edit-done-item-comment)
11382 (todo-edit-file, todo-edit-item-date-day)
11383 (todo-edit-item-date-day-name, todo-edit-item-date-from-calendar)
11384 (todo-edit-item-date-month, todo-edit-item-date-to-today)
11385 (todo-edit-item-date-year, todo-edit-item-diary-inclusion)
11386 (todo-edit-item-diary-nonmarking, todo-edit-item-header)
11387 (todo-edit-item-time, todo-edit-quit, todo-filter-diary-items)
11388 (todo-filter-diary-items-multifile, todo-filter-regexp-items)
11389 (todo-filter-regexp-items-multifile, todo-filter-top-priorities)
11390 (todo-filter-top-priorities-multifile, todo-find-archive)
11391 (todo-find-filtered-items-file, todo-go-to-source-item)
11392 (todo-insert-item-from-calendar, todo-item-done, todo-item-undone)
11393 (todo-jump-to-archive-category, todo-lower-category)
11394 (todo-mark-category, todo-marked-item-p, todo-merge-category)
11395 (todo-move-category, todo-move-item, todo-next-button)
11396 (todo-next-item, todo-padded-string, todo-powerset)
11397 (todo-previous-button, todo-previous-item)
11398 (todo-print-buffer-to-file, todo-raise-category)
11399 (todo-rename-category, todo-repair-categories-sexp, todo-search)
11400 (todo-set-category-number, todo-set-item-priority)
11401 (todo-set-top-priorities-in-category)
11402 (todo-set-top-priorities-in-file, todo-show-categories-table)
11403 (todo-sort-categories-alphabetically-or-numerically)
11404 (todo-sort-categories-by-archived, todo-sort-categories-by-diary)
11405 (todo-sort-categories-by-done, todo-sort-categories-by-todo)
11406 (todo-toggle-item-header, todo-toggle-item-highlighting)
11407 (todo-toggle-mark-item, todo-toggle-prefix-numbers)
11408 (todo-toggle-view-done-items, todo-toggle-view-done-only)
11409 (todo-unarchive-items, todo-unmark-category): New commands.
11410 (todo-absolute-file-name, todo-add-to-buffer-list)
11411 (todo-adjusted-category-label-length, todo-basic-edit-item-header)
11412 (todo-basic-insert-item, todo-category-completions)
11413 (todo-category-number, todo-category-string-matcher-1)
11414 (todo-category-string-matcher-2, todo-check-filtered-items-file)
11415 (todo-check-format, todo-clear-matches)
11416 (todo-comment-string-matcher, todo-convert-legacy-date-time)
11417 (todo-current-category, todo-date-string-matcher)
11418 (todo-define-insertion-command, todo-diary-expired-matcher)
11419 (todo-diary-goto-entry, todo-diary-item-p)
11420 (todo-diary-nonmarking-matcher, todo-display-as-todo-file)
11421 (todo-display-categories, todo-display-sorted, todo-done-item-p)
11422 (todo-done-item-section-p, todo-done-separator)
11423 (todo-done-string-matcher, todo-files, todo-filter-items)
11424 (todo-filter-items-1, todo-filter-items-filename, todo-find-item)
11425 (todo-gen-arglists, todo-get-count, todo-get-overlay, todo-indent)
11426 (todo-insert-category-line, todo-insert-item-from-calendar)
11427 (todo-insert-sort-button, todo-insert-with-overlays)
11428 (todo-insertion-command-name, todo-insertion-key-bindings)
11429 (todo-label-to-key, todo-longest-category-name-length)
11430 (todo-make-categories-list, todo-mode-external-set)
11431 (todo-mode-line-control, todo-modes-set-1, todo-modes-set-2)
11432 (todo-modes-set-3, todo-multiple-filter-files)
11433 (todo-nondiary-marker-matcher, todo-prefix-overlays)
11434 (todo-read-category, todo-read-date, todo-read-dayname)
11435 (todo-read-file-name, todo-read-time)
11436 (todo-reevaluate-category-completions-files-defcustom)
11437 (todo-reevaluate-default-file-defcustom)
11438 (todo-reevaluate-filelist-defcustoms)
11439 (todo-reevaluate-filter-files-defcustom)
11440 (todo-reset-and-enable-done-separator, todo-reset-comment-string)
11441 (todo-reset-done-separator, todo-reset-done-separator-string)
11442 (todo-reset-done-string, todo-reset-global-current-todo-file)
11443 (todo-reset-highlight-item, todo-reset-nondiary-marker)
11444 (todo-reset-prefix, todo-set-categories)
11445 (todo-set-date-from-calendar, todo-set-show-current-file)
11446 (todo-set-top-priorities, todo-short-file-name)
11447 (todo-show-current-file, todo-sort, todo-time-string-matcher)
11448 (todo-total-item-counts, todo-update-buffer-list)
11449 (todo-update-categories-display, todo-update-categories-sexp)
11450 (todo-update-count, todo-validate-name, todo-y-or-n-p):
11451 New functions.
11452 (todo-archive-mode, todo-categories-mode, todo-filtered-items-mode):
11453 New major modes.
11454 (todo-categories, todo-display, todo-edit, todo-faces)
11455 (todo-filtered): New defgroups.
11456 (todo-archived-only, todo-button, todo-category-string, todo-date)
11457 (todo-diary-expired, todo-done, todo-done-sep, todo-comment)
11458 (todo-mark, todo-nondiary, todo-prefix-string, todo-search)
11459 (todo-sorted-column, todo-time, todo-top-priority): New deffaces.
11460 (todo-add-item-if-new-category, todo-always-add-time-string)
11461 (todo-categories-align, todo-categories-archived-label)
11462 (todo-categories-category-label, todo-categories-diary-label)
11463 (todo-categories-done-label, todo-categories-number-separator)
11464 (todo-categories-todo-label, todo-categories-totals-label)
11465 (todo-category-completions-files, todo-completion-ignore-case)
11466 (todo-default-todo-file, todo-diary-nonmarking, todo-directory)
11467 (todo-done-separator-string, todo-done-string)
11468 (todo-files-function, todo-filter-done-items, todo-filter-files)
11469 (todo-highlight-item, todo-include-in-diary, todo-indent-to-here)
11470 (todo-initial-category, todo-initial-file, todo-item-mark)
11471 (todo-legacy-date-time-regexp, todo-mode-line-function)
11472 (todo-nondiary-marker, todo-number-prefix)
11473 (todo-print-buffer-function, todo-show-current-file)
11474 (todo-show-done-only, todo-show-first, todo-show-with-done)
11475 (todo-skip-archived-categories, todo-top-priorities-overrides)
11476 (todo-undo-item-omit-comment, todo-use-only-highlighted-region)
11477 (todo-visit-files-commands, todo-wrap-lines, todo-y-with-space):
11478 New defcustoms.
11479 (todo-category-done, todo-date-pattern, todo-date-string-start)
11480 (todo-diary-items-buffer, todo-done-string-start)
11481 (todo-filtered-items-buffer, todo-item-start)
11482 (todo-month-abbrev-array, todo-month-name-array)
11483 (todo-nondiary-end, todo-nondiary-start, todo-regexp-items-buffer)
11484 (todo-top-priorities-buffer): New defconsts.
11485 (todo-archive-mode-map, todo-archives, todo-categories-mode-map)
11486 (todo-categories-with-marks, todo-category-string-face)
11487 (todo-comment-face, todo-comment-string, todo-current-todo-file)
11488 (todo-date-face, todo-date-from-calendar, todo-descending-counts)
11489 (todo-diary-expired-face, todo-done-face, todo-done-sep-face)
11490 (todo-done-separator, todo-edit-buffer, todo-edit-mode-map)
11491 (todo-file-buffers, todo-files, todo-filtered-items-mode-map)
11492 (todo-font-lock-keywords, todo-global-current-todo-file)
11493 (todo-insertion-commands, todo-insertion-commands-arg-key-list)
11494 (todo-insertion-commands-args)
11495 (todo-insertion-commands-args-genlist)
11496 (todo-insertion-commands-names, todo-insertion-map)
11497 (todo-key-bindings-t, todo-key-bindings-t+a)
11498 (todo-key-bindings-t+a+f, todo-key-bindings-t+f, todo-mode-map)
11499 (todo-multiple-filter-files, todo-multiple-filter-files-widget)
11500 (todo-nondiary-face, todo-print-buffer, todo-time-face)
11501 (todo-visited): New variables.
11502
11503 2013-06-21 Glenn Morris <rgm@gnu.org>
11504
11505 * play/cookie1.el (cookie-apropos): Add optional display argument.
11506 * obsolete/yow.el (apropos-zippy): Use cookie-apropos.
11507 (psychoanalyze-pinhead): Use cookie-doctor.
11508
11509 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
11510
11511 * emacs-lisp/package.el (tar-get-file-descriptor)
11512 (tar--extract): Declare.
11513
11514 2013-06-21 Eduard Wiebe <usenet@pusto.de>
11515
11516 Extend flymake's warning predicate to be a function (bug#14217).
11517 * progmodes/flymake.el (flymake-warning-predicate): New.
11518 (flymake-parse-line): Use it.
11519 (flymake-warning-re): Make obsolete alias to
11520 `flymake-warning-predicate'.
11521
11522 2013-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
11523
11524 * emacs-lisp/package.el (package-alist): Include obsolete packages.
11525 (package-obsolete-list): Remove.
11526 (package-activate): Remove min-version argument. Add `force' argument.
11527 Adjust to new package-alist format.
11528 (package-mark-obsolete): Remove.
11529 (package-unpack): Force reload of the package's autoloads.
11530 (package-installed-p): Check builtins if the installed package is not
11531 recent enough.
11532 (package-initialize): Don't reset package-obsolete-list.
11533 Don't specify which package version to activate.
11534 (package-process-define-package, describe-package-1)
11535 (package-menu--generate): Adjust to new package-alist format.
11536
11537 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
11538
11539 * allout-widgets.el (allout-widgets-mode-off)
11540 (allout-widgets-mode-on, allout-widgets-pre-command-business)
11541 (allout-widgets-post-command-business)
11542 (allout-widgets-after-copy-or-kill-function)
11543 (allout-widgets-after-undo-function, allout-test-range-overlaps)
11544 (allout-decorate-item-and-context)
11545 (allout-graphics-modification-handler): Fix typos in docstrings.
11546 (allout-get-or-create-parent-widget): Use `looking-at-p'.
11547
11548 * cmuscheme.el (scheme-start-file): Doc fix.
11549 (inferior-scheme-mode, switch-to-scheme): Fix typos in docstrings.
11550 (scheme-input-filter): Use `string-match-p'.
11551
11552 * composite.el (compose-gstring-for-terminal): Fix typo in docstring.
11553
11554 * dired-x.el: Use Dired consistently in docstrings.
11555
11556 * dired.el: Use Dired consistently in docstrings.
11557 (dired-readin, dired-mode): Use `setq-local'.
11558 (dired-switches-alist): Make defvar-local.
11559 (dired-buffers-for-dir): Use `zerop'.
11560 (dired-safe-switches-p, dired-switches-escape-p)
11561 (dired-insert-old-subdirs, dired-move-to-end-of-filename)
11562 (dired-glob-regexp, dired-in-this-tree, dired-goto-file-1)
11563 (dired-sort-set-mode-line, dired-sort-toggle, dired-sort-R-check)
11564 (dired-goto-next-nontrivial-file): Use `string-match-p'.
11565 (dired-align-file, dired-insert-directory, dired-mark-files-in-region)
11566 (dired-toggle-marks, dired-mark-files-containing-regexp)
11567 (dired-mark-symlinks, dired-mark-directories, dired-mark-executables)
11568 (dired-flag-auto-save-files, dired-flag-backup-files):
11569 Use `looking-at-p'.
11570 (dired-mark-files-regexp, dired-build-subdir-alist):
11571 Use `string-match-p', `looking-at-p'.
11572
11573 * dos-w32.el (untranslated-canonical-name, untranslated-file-p)
11574 (direct-print-region-helper): Use `string-match-p'.
11575
11576 2013-06-21 Leo Liu <sdl.web@gmail.com>
11577
11578 * comint.el (comint-redirect-results-list-from-process):
11579 Fix infinite loop.
11580
11581 2013-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
11582
11583 * net/eww.el (eww-update-header-line-format): Quote % characters.
11584
11585 2013-06-21 Glenn Morris <rgm@gnu.org>
11586
11587 * play/cookie1.el (cookie): New custom group.
11588 (cookie-file): New option.
11589 (cookie-check-file): New function.
11590 (cookie): Make it interactive. Make start and end messages optional.
11591 Interactively, display the result. Default to cookie-file.
11592 (cookie-insert): Default to cookie-file.
11593 (cookie-snarf): Make start and end messages optional.
11594 Default to cookie-file. Use with-temp-buffer.
11595 (cookie-read): Rename from read-cookie.
11596 Make start and end messages optional. Default to cookie-file.
11597 (cookie-shuffle-vector): Rename from shuffle-vector. Use dotimes.
11598 Do not autoload it.
11599 (cookie-apropos, cookie-doctor): New functions, copied from yow.el
11600 * obsolete/yow.el (read-zippyism): Use new name for read-cookie.
11601
11602 2013-06-21 Leo Liu <sdl.web@gmail.com>
11603
11604 * progmodes/octave.el (octave-mode): Backward compatibility fix.
11605
11606 2013-06-21 Glenn Morris <rgm@gnu.org>
11607
11608 * font-lock.el (lisp-font-lock-keywords-2): Add with-eval-after-load.
11609
11610 2013-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
11611 Daniel Hackney <dan@haxney.org>
11612
11613 * emacs-lisp/package.el: Use tar-mode rather than tar executable.
11614 Consolidate the single-file vs tarball code.
11615 (package-desc-suffix): New function.
11616 (package-desc-full-name): Don't bother inlining it.
11617 (package-load-descriptor): Return the new package-desc.
11618 (package-mark-obsolete): Remove unused arg `package'.
11619 (package-unpack): Make it work for single files as well.
11620 Make it update package-alist.
11621 (package--make-autoloads-and-stuff): Rename from
11622 package--make-autoloads-and-compile. Don't compile any more.
11623 (package--compile): New function.
11624 (package-generate-description-file): New function, extracted from
11625 package-unpack-single.
11626 (package-unpack-single): Remove.
11627 (package--with-work-buffer): Add indentation and debugging info.
11628 (package-download-single): Remove.
11629 (package-install-from-archive): Rename from package-download-tar, make
11630 it take a pkg-desc, and make it work for single files as well.
11631 (package-download-transaction): Simplify.
11632 (package-tar-file-info): Remove `file' arg. Rewrite not to use an
11633 external tar program.
11634 (package-install-from-buffer): Remove `pkg-desc' argument.
11635 Use package-tar-file-info for tar-mode buffers.
11636 (package-install-file): Simplify accordingly.
11637 (package-archive-base): Change to take a pkg-desc.
11638 * tar-mode.el (tar--check-descriptor): New function, extracted from
11639 tar-get-descriptor.
11640 (tar-get-descriptor): Use it.
11641 (tar-get-file-descriptor): New function.
11642 (tar--extract): New function, extracted from tar-extract.
11643 (tar--extract): Use it.
11644 * emacs-lisp/package-x.el (package-upload-file): Decode the file, in
11645 case the summary uses non-ascii. Adjust to new calling convention of
11646 package-tar-file-info.
11647
11648 2013-06-21 Leo Liu <sdl.web@gmail.com>
11649
11650 * comint.el (comint-redirect-results-list-from-process):
11651 Fix random delay. (Bug#14681)
11652
11653 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
11654
11655 * profiler.el (profiler-format-number): Use log, not log10.
11656
11657 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
11658
11659 * term/x-win.el (emacs-session-filename): Use `locate-user-emacs-file'.
11660
11661 2013-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
11662
11663 * emacs-lisp/cl-loaddefs.el: Don't version-control any more.
11664 * emacs-lisp/cl-lib.el: Load cl-macs when cl-loaddefs is not
11665 yet available.
11666 * Makefile.in (AUTOGEN_VCS): Move cl-loaddefs.el...
11667 (AUTOGENEL): ... here.
11668 * emacs-lisp/cl-macs.el (cl--sublis): New function.
11669 (cl--defsubst-expand): Use it.
11670
11671 2013-06-20 Paul Eggert <eggert@cs.ucla.edu>
11672
11673 * subr.el (log10): Move here from C code, and declare as obsolete.
11674 All uses of (log10 X) replaced with (log X 10).
11675
11676 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
11677
11678 * emacs-lisp/tabulated-list.el (tabulated-list-format): Fix typo.
11679 Declare with `defvar-local'.
11680 (tabulated-list-use-header-line, tabulated-list-entries)
11681 (tabulated-list-padding, tabulated-list-printer)
11682 (tabulated-list-sort-key): Declare with `defvar-local'.
11683 (tabulated-list-init-header, tabulated-list-print-fake-header):
11684 Use `setq-local'.
11685
11686 2013-06-20 Michael Albinus <michael.albinus@gmx.de>
11687
11688 * arc-mode.el (archive-mode): Add `archive-write-file' to
11689 `write-contents-functions' also for remote files. (Bug#14652)
11690
11691 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
11692
11693 * cus-edit.el (custom-commands): Fix typos.
11694 (custom-display): Fix tooltip text.
11695 (custom-magic-alist, custom-filter-face-spec, custom-group-members):
11696 Fix typos in docstrings.
11697 (custom--initialize-widget-variables, Custom-mode): Use `setq-local'.
11698 (custom-unlispify-menu-entry, custom-magic-value-create)
11699 (custom-add-see-also, custom-group-value-create): Use ?\s.
11700 (custom-guess-type, customize-apropos, editable-field)
11701 (custom-face-value-create): Use `string-match-p'.
11702 (custom-save-variables, custom-save-faces): Use `looking-at-p'.
11703
11704 * custom.el (custom-load-symbol): Use `string-match-p'.
11705
11706 * ansi-color.el: Convert to lexical binding.
11707 (ansi-colors): Fix URL.
11708 (ansi-color-context, ansi-color-context-region): Use defvar-local.
11709 (ansi-color-apply-sequence, ansi-color-map): Fix typos in docstrings.
11710 (ansi-color-make-color-map): Rename local var ansi-color-map to map.
11711
11712 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
11713
11714 * net/eww.el (eww-process-text-input): Display passwords as asterisks.
11715
11716 * net/shr.el (shr-make-table-1): Protect against invalid column-spans.
11717
11718 2013-06-19 Tom Tromey <tromey@redhat.com>
11719
11720 * net/eww.el (eww-top-url): Remove.
11721 (eww-home-url, eww-start-url, eww-contents-url): New defvars.
11722 (eww-render): Set new variables. Don't set eww-top-url.
11723 (eww-handle-link): Handle "prev", "home", and "contents".
11724 Downcase the rel text.
11725 (eww-top-url): Choose best top URL.
11726
11727 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
11728
11729 * net/eww.el: Rewrite to implement form elements "by hand" instead of
11730 relying in widget.el. Using widget.el leads to too many
11731 user interface inconsistencies.
11732 (eww-self-insert): Implement entering commands in text fields.
11733 (eww-process-text-input): New function to make text input field editing
11734 work.
11735 (eww-submit): Rewrite to use the new-style form methods.
11736 (eww-select-display): Display the correct selected item.
11737 (eww-change-select): Implement changing the select value.
11738 (eww-toggle-checkbox): Implement radio/checkboxes.
11739 (eww-update-field): Fix compilation error.
11740 (eww-tag-textarea): Implement <textarea>.
11741
11742 * net/shr.el (shr-urlify): Use `keymap' instead of `local-map' so that
11743 we don't shadow mode-specific bindings.
11744
11745 * net/eww.el (eww-browse-url): Don't push stuff onto history if there's
11746 nothing to push.
11747
11748 * net/shr.el (shr-map): Bind [down-mouse-1] to browse URLs.
11749
11750 2013-06-19 Glenn Morris <rgm@gnu.org>
11751
11752 * emacs-lisp/eieio.el (defclass): Make it eval-and-compile once more.
11753
11754 2013-06-19 Michael Albinus <michael.albinus@gmx.de>
11755
11756 * net/tramp-adb.el (tramp-adb-get-toolbox): Remove function, it is
11757 not needed.
11758
11759 * net/tramp-sh.el (tramp-find-shell): Don't set "busybox" property.
11760
11761 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
11762
11763 * net/browse-url.el (browse-url-browser-function):
11764 `eww-browse-url' has the right calling signature, `eww' does not.
11765
11766 2013-06-19 Glenn Morris <rgm@gnu.org>
11767
11768 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
11769 Only eval autoloaded macros.
11770 (byte-compile-autoload): Only give the macro warning for macros.
11771
11772 * progmodes/cperl-mode.el (ps-bold-faces, ps-italic-faces)
11773 (ps-underlined-faces): Declare.
11774
11775 * progmodes/idlwave.el (func-menu): Only set it up on XEmacs.
11776 (speedbar-add-supported-extension): Declare.
11777
11778 * international/titdic-cnv.el (tit-process-header, miscdic-convert):
11779 Don't include a date stamp in the header of the generated file;
11780 it leads to needless differences between output files.
11781
11782 2013-06-19 Michael Albinus <michael.albinus@gmx.de>
11783
11784 * net/secrets.el (secrets-struct-secret-content-type):
11785 Replace check of introspection data by a test call of "CreateItem".
11786 Some servers do not offer introspection.
11787
11788 2013-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
11789
11790 * electric.el (electric-pair-mode): Improve interaction with
11791 electric-layout-mode.
11792 (electric-pair-default-inhibit): Don't assume (eq char (char-before)).
11793 (electric-pair-syntax): Use text-mode-syntax-table in comments
11794 and strings.
11795 (electric-pair--insert): New function.
11796 (electric-pair-post-self-insert-function): Use it and
11797 electric--after-char-pos.
11798
11799 2013-06-19 Leo Liu <sdl.web@gmail.com>
11800
11801 * progmodes/octave.el (octave-help): Fix regexp.
11802
11803 2013-06-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
11804
11805 * net/shr.el (shr-make-table-1): Implement <td rowspan>.
11806 (shr-table-horizontal-line): Allow nil as a value, and change the
11807 default.
11808 (shr-insert-table-ruler): Respect the nil value.
11809
11810 2013-06-18 Tom Tromey <tromey@barimba>
11811
11812 * net/eww.el (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
11813 New defvars.
11814 (eww-open-file): New defun.
11815 (eww-render): Initialize new variables.
11816 (eww-display-html): Handle "link" and "a".
11817 (eww-handle-link, eww-tag-link, eww-tag-a): New defuns.
11818 (eww-mode-map): Move "p" to "l". Bind "p", "n", "t", and "u".
11819 (eww-back-url): Rename from eww-previous-url.
11820 (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
11821 New defuns.
11822
11823 2013-06-18 Dmitry Gutov <dgutov@yandex.ru>
11824
11825 * progmodes/ruby-mode.el (ruby-syntax-before-regexp-re):
11826 Distinguish ternary operator tokens from slash symbol and slash
11827 char literal.
11828
11829 2013-06-18 Juanma Barranquero <lekktu@gmail.com>
11830
11831 Convert symbol prettification into minor mode and global minor mode.
11832
11833 * progmodes/prog-mode.el (prettify-symbols-alist): Rename from
11834 `prog-prettify-symbols', and make a local defvar instead of defcustom.
11835 (prettify-symbols--keywords): Rename from
11836 `prog-prettify-symbols-alist' and make a local defvar.
11837 (prettify-symbols--compose-symbol): Rename from
11838 `prog--prettify-font-lock-compose-symbol'.
11839 (prettify-symbols--make-keywords): Rename from
11840 `prog-prettify-font-lock-symbols-keywords' and simplify.
11841 (prog-prettify-install): Remove.
11842 (prettify-symbols-mode): New minor mode, based on
11843 `prog-prettify-install'.
11844 (turn-on-prettify-symbols-mode): New function.
11845 (global-prettify-symbols-mode): New globalized minor mode.
11846
11847 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
11848 * progmodes/cfengine.el (cfengine3-mode):
11849 * progmodes/perl-mode.el (perl-mode): Don't call
11850 `prog-prettify-install'; set `prettify-symbols-alist' instead.
11851
11852 2013-06-18 Juri Linkov <juri@jurta.org>
11853
11854 * files-x.el (modify-file-local-variable-message): New function.
11855 (modify-file-local-variable)
11856 (modify-file-local-variable-prop-line): Add arg INTERACTIVE
11857 and call `modify-file-local-variable-message' when it's non-nil.
11858 (add-file-local-variable, delete-file-local-variable)
11859 (add-file-local-variable-prop-line)
11860 (delete-file-local-variable-prop-line): Add arg INTERACTIVE
11861 and use it. (Bug#9820)
11862
11863 2013-06-18 Juri Linkov <juri@jurta.org>
11864
11865 * emulation/vi.el (vi-shell-op):
11866 * emulation/vip.el (vip-execute-com, ex-command):
11867 * emulation/viper-cmd.el (viper-exec-bang):
11868 * emulation/viper-ex.el (ex-command): Add non-nil arg REPLACE to
11869 the call of `shell-command-on-region'. (Bug#14637)
11870
11871 * simple.el (shell-command-on-region): Doc fix.
11872
11873 2013-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
11874
11875 * emacs-lisp/eieio-custom.el: Remove misleading Version: header
11876 (bug#14633).
11877
11878 2013-06-18 Glenn Morris <rgm@gnu.org>
11879
11880 * net/eww.el, net/shr.el, net/shr-color.el: Move here from gnus/.
11881
11882 * newcomment.el (comment-search-forward, comment-search-backward):
11883 Doc fix. (Bug#14376)
11884
11885 2013-06-18 Juanma Barranquero <lekktu@gmail.com>
11886
11887 * face-remap.el (buffer-face-toggle): Fix typo in docstring.
11888 (buffer-face-mode-invoke): Doc fix.
11889
11890 2013-06-18 Matthias Meulien <orontee@gmail.com>
11891
11892 * tabify.el (untabify, tabify): With prefix, apply to entire buffer.
11893 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00545.html>
11894
11895 2013-06-18 Glenn Morris <rgm@gnu.org>
11896
11897 * generic-x.el (bat-generic-mode, rc-generic-mode, rul-generic-mode):
11898 Replace obsolete function generic-make-keywords with its expansion.
11899
11900 * progmodes/python.el (ffap-alist): Declare.
11901
11902 * textmodes/reftex.el (bibtex-mode-map): Declare.
11903
11904 2013-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
11905
11906 * emacs-lisp/package.el: Update package-alist after install (bug#14632).
11907 (package-unpack, package-unpack-single): Return the pkg-dir.
11908 (package-download-transaction): Use it to update package-alist.
11909
11910 2013-06-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
11911
11912 * net/browse-url.el (browse-url-browser-function): Add `eww' as a
11913 possible choice.
11914
11915 2013-06-17 Juri Linkov <juri@jurta.org>
11916
11917 * net/webjump.el (webjump-sample-sites): Add DuckDuckGo.
11918
11919 2013-06-17 Dmitry Gutov <dgutov@yandex.ru>
11920
11921 * emacs-lisp/package.el (package-load-descriptor):
11922 Remove `with-syntax-table' call, `read' doesn't need it.
11923 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00539.html
11924
11925 2013-06-17 Juanma Barranquero <lekktu@gmail.com>
11926
11927 * startup.el (command-line): Expand package name returned by
11928 `package--description-file' (bug#14639).
11929
11930 2013-06-17 Dmitry Gutov <dgutov@yandex.ru>
11931
11932 * emacs-lisp/package.el (package-load-descriptor): Do not call
11933 `emacs-lisp-mode', just use its syntax table.
11934
11935 2013-06-17 Juanma Barranquero <lekktu@gmail.com>
11936
11937 * progmodes/prog-mode.el (prog-prettify-install): Add `composition' to
11938 `font-lock-extra-managed-props' if any prettifying keyword is added.
11939 (prog--prettify-font-lock-compose-symbol): Use ?\s instead of ?\ .
11940 (prog-mode): Use `setq-local'.
11941
11942 2013-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
11943
11944 * international/characters.el (standard-case-table): Set syntax of ?»
11945 and ?« to punctuation.
11946
11947 2013-06-16 Juanma Barranquero <lekktu@gmail.com>
11948
11949 * progmodes/prog-mode.el (prog--prettify-font-lock-compose-symbol):
11950 Save relevant match data before calling `syntax-ppss' (bug#14595).
11951
11952 2013-06-15 Juri Linkov <juri@jurta.org>
11953
11954 * files-x.el (modify-file-local-variable-prop-line): Add local
11955 variables to the end of the existing comment on the first line.
11956 Use `file-auto-mode-skip' to skip interpreter magic line,
11957 and also skip XML declaration.
11958
11959 2013-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
11960
11961 * startup.el (package--builtin-versions): New var.
11962 (package-subdirectory-regexp): Remove.
11963 (package--description-file): Hard code its value instead.
11964
11965 * emacs-lisp/package.el: Don't activate packages older than builtin.
11966 (package-obsolete-list): Rename from package-obsolete-alist, and make
11967 it into a simple list of package-desc.
11968 (package-strip-version): Remove.
11969 (package-built-in-p): Use package--builtin-versions.
11970 (package-mark-obsolete): Simplify.
11971 (package-process-define-package): Mark it obsolete if older than the
11972 builtin version.
11973 (package-handle-response): Use line-end-position.
11974 (package-read-archive-contents, package--download-one-archive):
11975 Simplify.
11976 (package--add-to-archive-contents): Skip if older than the builtin or
11977 installed version.
11978 (package-menu-describe-package): Fix last change.
11979 (package-list-unversioned): New var.
11980 (package-menu--generate): Use it.
11981
11982 * emacs-lisp/autoload.el: Manage package--builtin-versions.
11983 (autoload--insert-text, autoload--insert-cookie-text): New functions.
11984 (autoload-builtin-package-versions): New variable.
11985 (autoload-generate-file-autoloads): Use them.
11986 Remove the list of autoloaded functions/macros from the
11987 (autoload...) comments.
11988
11989 * Makefile.in (autoloads): Set autoload-builtin-package-versions.
11990
11991 2013-06-15 Eli Zaretskii <eliz@gnu.org>
11992
11993 * simple.el (line-move-partial): Don't jump to the next screen
11994 line as soon as it becomes visible. Instead, continue enlarging
11995 the vscroll until the portion of a tall screen line that's left on
11996 display is about the height of the frame's default font.
11997 (Bug#14567)
11998
11999 2013-06-15 Glenn Morris <rgm@gnu.org>
12000
12001 * vc/vc-dispatcher.el (vc-compilation-mode): Avoid making
12002 compilation-error-regexp-alist void, or local while let-bound.
12003
12004 * progmodes/make-mode.el (makefile-mode-syntax-table):
12005 Treat "=" as punctuation. (Bug#14614)
12006
12007 2013-06-15 Juanma Barranquero <lekktu@gmail.com>
12008
12009 * help-fns.el (describe-variable):
12010 Add extra line for permanent-local variables.
12011
12012 2013-06-15 Simen Heggestøyl <simenheg@ifi.uio.no> (tiny change)
12013
12014 * progmodes/scheme.el (scheme-font-lock-keywords-2):
12015 Add export, import, library. (Bug#9164)
12016 (library): Set indent function.
12017
12018 2013-06-14 Glenn Morris <rgm@gnu.org>
12019
12020 * term/xterm.el (xterm--query):
12021 Stop after first matching handler. (Bug#14615)
12022
12023 2013-06-14 Ivan Kanis <ivan@kanis.fr>
12024
12025 Add support for dired in saveplace.
12026 * dired.el (dired-initial-position-hook): New variable.
12027 (dired-initial-position): Call hook to place cursor position.
12028 * saveplace.el (save-place-to-alist): Add dired position.
12029 (save-place-dired-hook): New function.
12030
12031 2013-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
12032
12033 * subr.el (eval-after-load, set-temporary-overlay-map): Use indirection
12034 through a symbol rather than letrec.
12035
12036 * emacs-lisp/package.el: Don't recompute dir. Use pkg-descs more.
12037 (package-desc): Add `dir' field.
12038 (package-desc-full-name): New function.
12039 (package-load-descriptor): Combine the two arguments. Don't use `load'.
12040 (package-maybe-load-descriptor): Remove.
12041 (package-load-all-descriptors): Just call package-load-descriptor.
12042 (package--disabled-p): New function.
12043 (package-desc-vers, package-desc-doc): Remove aliases.
12044 (package--dir): Remove function.
12045 (package-activate): Check if a package is disabled.
12046 (package-process-define-package): New function, extracted from
12047 define-package.
12048 (define-package): Turn into a place holder.
12049 (package-unpack-single, package-tar-file-info):
12050 Use package--description-file.
12051 (package-compute-transaction): Use package--disabled-p.
12052 (package-download-transaction): Don't call
12053 package-maybe-load-descriptor since they're all loaded anyway.
12054 (package-install): Change argument to be a pkg-desc.
12055 (package-delete): Use a single pkg-desc argument.
12056 (describe-package-1): Use package-desc-dir instead of package--dir.
12057 Use package-desc property instead of package-symbol.
12058 (package-install-button-action): Adjust accordingly.
12059 (package--push): Rewrite.
12060 (package-menu--print-info): Adjust accordingly. Change the ID format
12061 to be a pkg-desc.
12062 (package-menu-describe-package, package-menu-get-status)
12063 (package-menu--find-upgrades, package-menu-mark-upgrades)
12064 (package-menu-execute, package-menu--name-predicate):
12065 Adjust accordingly.
12066 * startup.el (package--description-file): New function.
12067 (command-line): Use it.
12068 * emacs-lisp/package-x.el (package-upload-buffer-internal):
12069 Use package-desc-version.
12070
12071 * emacs-lisp/bytecomp.el (byte-compile-force-lexical-warnings): New var.
12072 (byte-compile-preprocess): Use it.
12073 (byte-compile-file-form-defalias): Try a bit harder to use macros we
12074 can't quite recognize.
12075 (byte-compile-add-to-list): Remove.
12076 * emacs-lisp/cconv.el (cconv-warnings-only): New function.
12077 (cconv-closure-convert): Add assertion.
12078
12079 * emacs-lisp/map-ynp.el: Use lexical-binding.
12080 (map-y-or-n-p): Remove unused vars `tail' and `object'.
12081 Factor out some repeated code.
12082
12083 2013-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
12084
12085 * subr.el (with-eval-after-load): New macro.
12086 (eval-after-load): Allow form to be a function.
12087 take advantage of lexical-binding.
12088 (do-after-load-evaluation): Use dolist and adjust to new format.
12089 * simple.el (bad-packages-alist): Use dolist and with-eval-after-load.
12090
12091 2013-06-13 Juri Linkov <juri@jurta.org>
12092
12093 * replace.el (perform-replace): Display "symbol " and other search
12094 modes from `isearch-message-prefix' in the *Help* buffer.
12095
12096 * isearch.el (isearch-query-replace): Add " symbol" and other
12097 possible search modes from `isearch-message-prefix' to the prompt.
12098 (isearch-occur): Use `with-isearch-suspended' to not exit Isearch
12099 when reading a regexp to collect.
12100
12101 2013-06-13 Juri Linkov <juri@jurta.org>
12102
12103 * isearch.el (word-search-regexp): Match whitespace if the search
12104 string begins or ends in whitespace. The LAX arg is applied to
12105 both ends of the search string. Use `regexp-quote' and explicit
12106 \< and \> instead of \b. Use \` and \' instead of ^ and $.
12107 (isearch-symbol-regexp): Sync with `word-search-regexp' where word
12108 boundaries are replaced with symbol boundaries, and characters
12109 between symbols match non-word non-symbol syntax. (Bug#14602)
12110
12111 2013-06-13 Juri Linkov <juri@jurta.org>
12112
12113 * isearch.el (isearch-del-char): Don't exceed the length of
12114 `isearch-string' by the prefix arg. (Bug#14563)
12115
12116 2013-06-13 Juri Linkov <juri@jurta.org>
12117
12118 * isearch.el (isearch-yank-word, isearch-yank-line)
12119 (isearch-char-by-name, isearch-quote-char)
12120 (isearch-printing-char, isearch-process-search-char):
12121 Add optional count prefix arg. (Bug#14563)
12122
12123 * international/isearch-x.el
12124 (isearch-process-search-multibyte-characters):
12125 Add optional count prefix arg.
12126
12127 2013-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
12128
12129 * subr.el (internal-push-keymap, internal-pop-keymap): New functions.
12130 (set-temporary-overlay-map): Use them (bug#14095); and take advantage of
12131 lexical-binding.
12132
12133 2013-06-13 Vitalie Spinu <spinuvit@gmail.com>
12134
12135 * subr.el (set-temporary-overlay-map): Add on-exit argument.
12136
12137 2013-06-13 Glenn Morris <rgm@gnu.org>
12138
12139 * startup.el (tty-handle-args):
12140 Don't just discard "--" and anything after. (Bug#14608)
12141
12142 * emacs-lisp/lisp.el (forward-sexp, backward-sexp): Doc fixes.
12143
12144 2013-06-13 Michael Albinus <michael.albinus@gmx.de>
12145
12146 Implement changes in Secret Service API. Make it backward compatible.
12147 * net/secrets.el (secrets-struct-secret-content-type): New defonst.
12148 (secrets-create-item): Use it. Prefix properties with interface.
12149
12150 2013-06-13 Michael Hoffman <9qobl2n02@sneakemail.com> (tiny change)
12151
12152 * term.el (term-suppress-hard-newline): New option. (Bug#12017)
12153 (term-emulate-terminal): Respect term-suppress-hard-newline.
12154
12155 2013-06-13 E Sabof <esabof@gmail.com> (tiny change)
12156
12157 * image-dired.el (image-dired-dired-toggle-marked-thumbs):
12158 Only remove a `thumb-file' overlay. (Bug#14548)
12159
12160 2013-06-12 Grégoire Jadi <daimrod@gmail.com>
12161
12162 * mail/reporter.el (reporter-submit-bug-report):
12163 Handle missing package-name. (Bug#14600)
12164
12165 2013-06-12 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
12166
12167 * textmodes/reftex-cite.el (reftex-cite-regexp-hist)
12168 (reftex-citation-prompt, reftex-default-bibliography)
12169 (reftex-bib-or-thebib, reftex-get-bibfile-list)
12170 (reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
12171 (reftex-bib-sort-author, reftex-bib-sort-year)
12172 (reftex-bib-sort-year-reverse, reftex-get-crossref-alist)
12173 (reftex-extract-bib-entries-from-thebibliography)
12174 (reftex-get-bibkey-default, reftex-get-bib-names)
12175 (reftex-parse-bibtex-entry, reftex-get-bib-field)
12176 (reftex-format-bib-entry, reftex-parse-bibitem)
12177 (reftex-format-bibitem, reftex-do-citation)
12178 (reftex-figure-out-cite-format, reftex-offer-bib-menu)
12179 (reftex-restrict-bib-matches, reftex-extract-bib-file)
12180 (reftex-insert-bib-matches, reftex-format-citation)
12181 (reftex-make-cite-echo-string, reftex-bibtex-selection-callback)
12182 (reftex-create-bibtex-file): Add docstrings, mostly by converting
12183 existing comments into docstrings.
12184
12185 2013-06-12 Xue Fuqiao <xfq.free@gmail.com>
12186
12187 * ibuf-ext.el (ibuffer-mark-help-buffers): Doc fix.
12188
12189 2013-06-12 Andreas Schwab <schwab@suse.de>
12190
12191 * international/mule.el (auto-coding-alist): Use utf-8-emacs-unix
12192 for auto-save files.
12193
12194 2013-06-12 Glenn Morris <rgm@gnu.org>
12195
12196 * ido.el (ido-delete-ignored-files): Remove.
12197 (ido-wide-find-dirs-or-files, ido-make-file-list-1):
12198 Go back to calling ido-ignore-item-p directly.
12199
12200 2013-06-12 Eyal Lotem <eyal.lotem@gmail.com> (tiny change)
12201
12202 * ido.el (ido-wide-find-dirs-or-files): Respect ido-case-fold.
12203
12204 * ido.el (ido-delete-ignored-files): New function,
12205 split from ido-make-file-list-1.
12206 (ido-wide-find-dirs-or-files): Maybe ignore files. (Bug#13003)
12207 (ido-make-file-list-1): Use ido-delete-ignored-files.
12208
12209 2013-06-12 Leo Liu <sdl.web@gmail.com>
12210
12211 * progmodes/octave.el (inferior-octave-startup)
12212 (inferior-octave-completion-table)
12213 (inferior-octave-track-window-width-change)
12214 (octave-eldoc-function-signatures, octave-help)
12215 (octave-find-definition): Use single quoted strings.
12216 (inferior-octave-startup-args): Change default value.
12217 (inferior-octave-startup): Do not hard code "-i" and
12218 "--no-line-editing".
12219 (inferior-octave-resync-dirs): Add optional arg NOERROR.
12220 (inferior-octave-directory-tracker): Use it.
12221 (octave-goto-function-definition): Robustify.
12222 (octave-help): Support highlighting operators in 'See also'.
12223 (octave-find-definition): Find subfunctions only in Octave mode.
12224
12225 2013-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
12226
12227 * help-fns.el (help-fns--compiler-macro): If the handler function is
12228 named, then put a link to it.
12229 * help-mode.el (help-function-cmacro): Adjust regexp for cl-lib names.
12230 * emacs-lisp/cl-macs.el (cl--compiler-macro-typep): New function.
12231 (cl-typep): Use it.
12232 (cl-eval-when): Simplify debug spec.
12233 (cl-define-compiler-macro): Use eval-and-compile. Give a name to the
12234 compiler-macro function instead of setting `compiler-macro-file'.
12235
12236 2013-06-12 Xue Fuqiao <xfq.free@gmail.com>
12237
12238 * vc/vc-cvs.el (vc-cvs-stay-local): Doc fix.
12239 * vc/vc-hooks.el (vc-stay-local): Doc fix.
12240
12241 2013-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
12242 Daniel Hackney <dan@haxney.org>
12243
12244 First part of Daniel Hackney's patch to package.el.
12245 * emacs-lisp/package.el: Use defstruct.
12246 (package-desc): New, main struct.
12247 (package--bi-desc, package--ac-desc): New structs, used to describe the
12248 format in external files.
12249 (package-desc-vers): Replace with package-desc-version accessor.
12250 (package-desc-doc): Replace with package-desc-summary accessor.
12251 (package-activate-1): Remove `package' arg since the pkg-vec now
12252 includes the name.
12253 (define-package): Use package-desc-from-define.
12254 (package-unpack-single): Change file-name arg to be a symbol.
12255 (package--add-to-archive-contents): Use package-desc-create and new
12256 accessor functions to package--ac-desc.
12257 (package-buffer-info, package-tar-file-info): Return a package-desc.
12258 (package-install-from-buffer): Remove `type' argument. Change pkg-info
12259 arg to be a package-desc.
12260 (package-install-file): Adjust accordingly. Use \' to match EOS.
12261 (package--from-builtin): New function.
12262 (describe-package-1, package-menu--generate): Use it.
12263 (package--make-autoloads-and-compile): Change name arg to be a symbol.
12264 (package-generate-autoloads): Idem and return the name of the file.
12265 * emacs-lisp/package-x.el (package-upload-buffer-internal):
12266 Change pkg-info arg to be a package-desc.
12267 Use package-make-ac-desc.
12268 (package-upload-file): Use \' to match EOS.
12269 * finder.el (finder-compile-keywords): Use package-make-builtin.
12270
12271 2013-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
12272
12273 * vc/vc.el (vc-deduce-fileset): Change error message.
12274 (vc-read-backend): New function.
12275 (vc-next-action): Use it.
12276
12277 * subr.el (function-arity): Remove (mistakenly added) (bug#14590).
12278
12279 * progmodes/prolog.el (prolog-make-keywords-regexp): Remove.
12280 (prolog-font-lock-keywords): Use regexp-opt instead.
12281 Don't manually highlight strings.
12282 (prolog-mode-variables): Simplify comment-start-skip.
12283 (prolog-consult-compile): Use display-buffer. Remove unused old-filter.
12284
12285 * emacs-lisp/generic.el (generic--normalise-comments)
12286 (generic-set-comment-syntax, generic-set-comment-vars): New functions.
12287 (generic-mode-set-comments): Use them.
12288 (generic-bracket-support): Use setq-local.
12289 (generic-make-keywords-list): Declare obsolete.
12290
12291 2013-06-11 Glenn Morris <rgm@gnu.org>
12292
12293 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
12294 Prettify after setting font-lock-defaults. (Bug#14574)
12295
12296 2013-06-11 Juanma Barranquero <lekktu@gmail.com>
12297
12298 * replace.el (query-replace, occur-read-regexp-defaults-function)
12299 (replace-search):
12300 * subr.el (declare-function, number-sequence, local-set-key)
12301 (substitute-key-definition, locate-user-emacs-file)
12302 (with-silent-modifications, split-string, eval-after-load):
12303 Fix typos, remove unneeded backslashes and reflow some docstrings.
12304
12305 2013-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
12306
12307 * international/mule-conf.el (file-coding-system-alist): Use utf-8 as
12308 default for Elisp files.
12309
12310 2013-06-11 Glenn Morris <rgm@gnu.org>
12311
12312 * vc/log-view.el (log-view-mode-map): Inherit from special-mode-map,
12313 although define-derived-mode was doing this anyway. (Bug#14583)
12314
12315 2013-06-10 Juanma Barranquero <lekktu@gmail.com>
12316
12317 * allout.el (allout-encryption-plaintext-sanitization-regexps):
12318 Fix make-variable-buffer-local call to refer to the correct variable.
12319
12320 2013-06-10 Aidan Gauland <aidalgol@amuri.net>
12321
12322 * eshell/em-term.el (eshell-visual-commands)
12323 (eshell-visual-subcommands, eshell-visual-options):
12324 Add summary line to docstrings. Add cross-references.
12325
12326 2013-06-10 Glenn Morris <rgm@gnu.org>
12327
12328 * epa.el (epa-read-file-name): New function. (Bug#14510)
12329 (epa-decrypt-file): Make plain-file optional. Use epa-read-file-name.
12330
12331 2013-06-09 Aidan Gauland <aidalgol@amuri.net>
12332
12333 * eshell/em-term.el (eshell-visual-command-p): Fix bug that caused
12334 output redirection to be ignored with visual commands.
12335
12336 2013-06-09 Aidan Gauland <aidalgol@amuri.net>
12337
12338 * eshell/em-term.el (eshell-visual-command-p): New function.
12339 (eshell-term-initialize): Move long lambda to separate function
12340 eshell-visual-command-p.
12341 * eshell/em-dirs.el (eshell-dirs-initialize):
12342 * eshell/em-script.el (eshell-script-initialize):
12343 Add missing #' to lambda.
12344
12345 2013-06-08 Leo Liu <sdl.web@gmail.com>
12346
12347 * progmodes/octave.el (octave-add-log-current-defun): New function.
12348 (octave-mode): Set add-log-current-defun-function.
12349 (octave-goto-function-definition): Do not move point if not found.
12350 (octave-find-definition): Enhance to try subfunctions first.
12351
12352 2013-06-08 Glenn Morris <rgm@gnu.org>
12353
12354 * emacs-lisp/bytecomp.el (byte-compile-char-before)
12355 (byte-compile-backward-char, byte-compile-backward-word):
12356 Improve previous change, to handle non-explicit nil.
12357
12358 2013-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
12359
12360 * emacs-lisp/smie.el: Improve show-paren-mode behavior.
12361 (smie--opener/closer-at-point): New function.
12362 (smie--matching-block-data): Use it. Don't match from right after an
12363 opener or right before a closer. Obey smie-blink-matching-inners.
12364 Don't signal a mismatch for repeated inners like "switch..case..case".
12365
12366 2013-06-07 Leo Liu <sdl.web@gmail.com>
12367
12368 * progmodes/octave.el (octave-mode): Set comment-use-global-state
12369 to t. (Bug#14303)
12370 (octave-function-header-regexp): Fix. (Bug#14570)
12371 (octave-help-mode-finish-hook, octave-help-mode-finish):
12372 Remove. Just use temp-buffer-show-hook.
12373
12374 * newcomment.el (comment-search-backward): Revert last change.
12375 (Bug#14434)
12376
12377 * emacs-lisp/smie.el (smie--matching-block-data): Minor simplification.
12378
12379 2013-06-07 Eli Zaretskii <eliz@gnu.org>
12380
12381 * Makefile.in (TAGS TAGS-LISP): Pass the (long) list of *.el files
12382 through xargs, to avoid failure due to MS-Windows limitations on
12383 command-line length.
12384
12385 2013-06-06 Glenn Morris <rgm@gnu.org>
12386
12387 * font-lock.el (lisp-font-lock-keywords-2):
12388 Treat user-error like error.
12389
12390 * emacs-lisp/bytecomp.el (byte-compile-char-before)
12391 (byte-compile-backward-char, byte-compile-backward-word):
12392 Handle explicit nil arguments. (Bug#14565)
12393
12394 2013-06-05 Alan Mackenzie <acm@muc.de>
12395
12396 * isearch.el (isearch-allow-prefix): New user option.
12397 (isearch-other-meta-char): Don't exit isearch when a prefix
12398 argument is typed whilst `isearch-allow-prefix' is non-nil.
12399 (Bug#9706)
12400
12401 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
12402
12403 * autorevert.el (auto-revert-notify-handler): Use memq.
12404 Hide assertion failure.
12405
12406 * skeleton.el: Use cl-lib.
12407 (skeleton-further-elements): Use defvar-local.
12408 (skeleton-insert): Use cl-progv.
12409
12410 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
12411
12412 * progmodes/prog-mode.el (prog-prettify-symbols)
12413 (prog-prettify-install): Update docstrings.
12414
12415 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
12416
12417 * simple.el: Move all the prog-mode code to prog-mode.el.
12418 * progmodes/prog-mode.el: New file.
12419 * loadup.el: Add prog-mode.el.
12420
12421 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
12422
12423 * simple.el (prog-prettify-symbols): Add version.
12424 (prog-prettify-install): Add convenience function to prettify symbols.
12425
12426 * progmodes/perl-mode.el (perl--augmented-font-lock-keywords)
12427 (perl--augmented-font-lock-keywords-1)
12428 (perl--augmented-font-lock-keywords-2, perl-mode): Remove unneeded
12429 variables and use it.
12430
12431 * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
12432 (cfengine3-mode): Remove unneeded variable and use it.
12433
12434 * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
12435 (lisp--augmented-font-lock-keywords-1)
12436 (lisp--augmented-font-lock-keywords-2, lisp-mode-variables):
12437 Remove unneeded variables and use it.
12438
12439 2013-06-05 João Távora <joaotavora@gmail.com>
12440
12441 * net/tls.el (open-tls-stream): Remove unneeded buffer contents up
12442 to point when opening the connection. (Bug#14380)
12443
12444 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
12445
12446 * subr.el (load-history-regexp, load-history-filename-element)
12447 (eval-after-load, after-load-functions, do-after-load-evaluation)
12448 (eval-next-after-load, display-delayed-warnings)
12449 (collapse-delayed-warnings, delayed-warnings-hook): Move after the
12450 definition of save-match-data.
12451 (overriding-local-map): Remove accidental obsolescence declaration.
12452
12453 * emacs-lisp/edebug.el (edebug-result): Move before first use.
12454
12455 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
12456
12457 Generalize symbol prettify support to prog-mode and implement it
12458 for perl-mode, cfengine3-mode, and emacs-lisp-mode.
12459 * simple.el (prog-prettify-symbols-alist, prog-prettify-symbols)
12460 (prog--prettify-font-lock-compose-symbol)
12461 (prog-prettify-font-lock-symbols-keywords): New variables and
12462 functions to support symbol prettification.
12463 * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
12464 (lisp--augmented-font-lock-keywords-1)
12465 (lisp--augmented-font-lock-keywords-2, lisp-mode-variables)
12466 (lisp--prettify-symbols-alist): Implement prettify of lambda.
12467 * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
12468 (cfengine3--prettify-symbols-alist, cfengine3-mode):
12469 Implement prettify of -> => :: strings.
12470 * progmodes/perl-mode.el (perl-prettify-symbols)
12471 (perl--font-lock-compose-symbol)
12472 (perl--font-lock-symbols-keywords): Move to prog-mode.
12473 (perl--prettify-symbols-alist): Prettify -> => :: strings.
12474 (perl-font-lock-keywords-1)
12475 (perl-font-lock-keywords-2): Remove explicit prettify support.
12476 (perl--augmented-font-lock-keywords)
12477 (perl--augmented-font-lock-keywords-1)
12478 (perl--augmented-font-lock-keywords-2, perl-mode):
12479 Implement prettify support.
12480
12481 2013-06-05 Leo Liu <sdl.web@gmail.com>
12482
12483 Re-implement SMIE matching block highlight using
12484 show-paren-data-function. (Bug#14395)
12485 * emacs-lisp/smie.el (smie-matching-block-highlight)
12486 (smie--highlight-matching-block-overlay)
12487 (smie--highlight-matching-block-lastpos)
12488 (smie-highlight-matching-block)
12489 (smie-highlight-matching-block-mode): Remove.
12490 (smie--matching-block-data-cache): New variable.
12491 (smie--matching-block-data): New function.
12492 (smie-setup): Use smie--matching-block-data for
12493 show-paren-data-function.
12494
12495 * progmodes/octave.el (octave-mode-menu): Fix.
12496 (octave-find-definition): Skip garbage lines.
12497
12498 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
12499
12500 Fix compilation error with simultaneous dynamic+lexical scoping.
12501 Add warning when a defvar appears after the first let-binding.
12502 * emacs-lisp/bytecomp.el (byte-compile-lexical-variables): New var.
12503 (byte-compile-close-variables): Initialize it.
12504 (byte-compile--declare-var): New function.
12505 (byte-compile-file-form-defvar)
12506 (byte-compile-file-form-define-abbrev-table)
12507 (byte-compile-file-form-custom-declare-variable): Use it.
12508 (byte-compile-make-lambda-lexenv): Change the argument. Simplify.
12509 (byte-compile-lambda): Share call to byte-compile-arglist-vars.
12510 (byte-compile-bind): Handle dynamic bindings that shadow
12511 lexical bindings.
12512 (byte-compile-unbind): Make arg non-optional.
12513 (byte-compile-let): Simplify.
12514 * emacs-lisp/cconv.el (byte-compile-lexical-variables): Declare var.
12515 (cconv--analyse-function, cconv-analyse-form): Populate it.
12516 Protect byte-compile-bound-variables to limit the scope of defvars.
12517 (cconv-analyse-form): Add missing rule for (defvar <foo>).
12518 Remove unneeded rule for `declare'.
12519
12520 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin): Use macroexp-let2
12521 so as to avoid depending on cl-adjoin at run-time.
12522 * emacs-lisp/cl-lib.el (cl-pushnew): Use backquotes.
12523
12524 * emacs-lisp/macroexp.el (macroexp--compiling-p): New function.
12525 (macroexp--warn-and-return): Use it.
12526
12527 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
12528
12529 * subr.el: Convert to lexical binding.
12530 (overriding-local-map): Make obsolete.
12531 (add-to-list): Doc fix. Add compiler macro.
12532 (read-key): Swap values of local maps.
12533
12534 2013-06-05 Leo Liu <sdl.web@gmail.com>
12535
12536 * eshell/esh-mode.el (eshell-mode): Fix key bindings.
12537
12538 2013-06-04 Leo Liu <sdl.web@gmail.com>
12539
12540 * progmodes/compile.el (compile-goto-error): Add optional arg NOMSG.
12541 (compilation-auto-jump): Suppress the "Mark set" message to give
12542 way to exit message.
12543
12544 2013-06-04 Alan Mackenzie <acm@muc.de>
12545
12546 Remove faulty optimisation from indentation calculation.
12547 * progmodes/cc-engine.el (c-guess-basic-syntax): Don't calculate
12548 search limit based on 2000 characters back from indent-point.
12549
12550 2013-06-03 Tassilo Horn <tsdh@gnu.org>
12551
12552 * eshell/em-term.el (cl-lib): Require `cl-lib'.
12553
12554 2013-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
12555
12556 * emacs-lisp/lisp.el: Use lexical-binding.
12557 (lisp--local-variables-1, lisp--local-variables): New functions.
12558 (lisp--local-variables-completion-table): New var.
12559 (lisp-completion-at-point): Use it complete let-bound vars.
12560
12561 * emacs-lisp/lisp-mode.el (eval-sexp-add-defvars): Expand macros
12562 eagerly (bug#14422).
12563
12564 2013-06-03 Michael Albinus <michael.albinus@gmx.de>
12565
12566 * autorevert.el (auto-revert-notify-enabled)
12567 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
12568 (auto-revert-notify-event-p, auto-revert-notify-event-file-name)
12569 (auto-revert-notify-handler): Handle also gfilenotify.
12570
12571 * subr.el (file-notify-handle-event): New defun. Replacing ...
12572 (inotify-event-p, inotify-handle-event, w32notify-handle-event):
12573 Remove.
12574
12575 2013-06-03 Juri Linkov <juri@jurta.org>
12576
12577 * bindings.el (search-map): Bind `highlight-symbol-at-point' to
12578 `M-s h .'. (Bug#14427)
12579
12580 * hi-lock.el (highlight-symbol-at-point): New alias for the new
12581 command `hi-lock-face-symbol-at-point'.
12582 (hi-lock-face-symbol-at-point): New command.
12583 (hi-lock-map): Bind `highlight-symbol-at-point' to `C-x w .'.
12584 (hi-lock-menu): Add `highlight-symbol-at-point'.
12585 (hi-lock-mode): Doc fix.
12586
12587 * isearch.el (isearch-forward-symbol-at-point): New command.
12588 (search-map): Bind `isearch-forward-symbol-at-point' to `M-s .'.
12589 (isearch-highlight-regexp): Add a regexp which matches
12590 words/symbols for word/symbol mode.
12591
12592 * subr.el (find-tag-default-bounds): New function with the body
12593 mostly moved from `find-tag-default'.
12594 (find-tag-default): Move most code to `find-tag-default-bounds',
12595 call it and apply `buffer-substring-no-properties' afterwards.
12596
12597 2013-06-03 Tassilo Horn <tsdh@gnu.org>
12598
12599 * eshell/em-term.el (eshell-term-initialize):
12600 Use `cl-intersection' rather than `intersection'.
12601
12602 2013-06-02 Xue Fuqiao <xfq.free@gmail.com>
12603
12604 * vc/log-view.el: Doc fix.
12605 (log-view-mode-map): Copy keymap from `special-mode-map'.
12606
12607 2013-06-02 Eric Ludlam <zappo@gnu.org>
12608
12609 * emacs-lisp/eieio.el (eieio--defalias, eieio-hook)
12610 (eieio-error-unsupported-class-tags, eieio-skip-typecheck)
12611 (eieio-optimize-primary-methods-flag, eieio-initializing-object)
12612 (eieio-unbound, eieio-default-superclass)
12613 (eieio--define-field-accessors, method-static, method-before)
12614 (method-primary, method-after, method-num-lists)
12615 (method-generic-before, method-generic-primary)
12616 (method-generic-after, method-num-slots)
12617 (eieio-specialized-key-to-generic-key)
12618 (eieio--check-type, class-v, class-p)
12619 (eieio-class-name, define-obsolete-function-alias)
12620 (eieio-class-parents-fast, eieio-class-children-fast)
12621 (same-class-fast-p, class-constructor, generic-p)
12622 (generic-primary-only-p, generic-primary-only-one-p)
12623 (class-option-assoc, class-option, eieio-object-p)
12624 (class-abstract-p, class-method-invocation-order)
12625 (eieio-defclass-autoload-map, eieio-defclass-autoload)
12626 (eieio-class-un-autoload, eieio-defclass)
12627 (eieio-eval-default-p, eieio-perform-slot-validation-for-default)
12628 (eieio-add-new-slot, eieio-copy-parents-into-subclass)
12629 (eieio--defgeneric-init-form, eieio-defgeneric-form)
12630 (eieio-defgeneric-reset-generic-form)
12631 (eieio-defgeneric-form-primary-only)
12632 (eieio-defgeneric-reset-generic-form-primary-only)
12633 (eieio-defgeneric-form-primary-only-one)
12634 (eieio-defgeneric-reset-generic-form-primary-only-one)
12635 (eieio-unbind-method-implementations)
12636 (eieio--defmethod, eieio--typep)
12637 (eieio-perform-slot-validation, eieio-validate-slot-value)
12638 (eieio-validate-class-slot-value, eieio-barf-if-slot-unbound)
12639 (eieio-oref, eieio-oref-default, eieio-default-eval-maybe)
12640 (eieio-oset, eieio-oset-default, eieio-slot-originating-class-p)
12641 (eieio-slot-name-index, eieio-class-slot-name-index)
12642 (eieio-set-defaults, eieio-initarg-to-attribute)
12643 (eieio-attribute-to-initarg, eieio-c3-candidate)
12644 (eieio-c3-merge-lists, eieio-class-precedence-c3)
12645 (eieio-class-precedence-dfs, eieio-class-precedence-bfs)
12646 (eieio-class-precedence-list, eieio-generic-call-methodname)
12647 (eieio-generic-call-arglst, eieio-generic-call-key)
12648 (eieio-generic-call-next-method-list)
12649 (eieio-pre-method-execution-functions, eieio-generic-call)
12650 (eieio-generic-call-primary-only, eieiomt-method-list)
12651 (eieiomt-optimizing-obarray, eieiomt-install)
12652 (eieiomt-add, eieiomt-next, eieiomt-sym-optimize)
12653 (eieio-generic-form, eieio-defmethod, make-obsolete)
12654 (eieio-defgeneric, make-obsolete): Move to eieio-core.el.
12655 (defclass): Remove `eval-and-compile' from macro.
12656 (call-next-method, shared-initialize): Instead of using
12657 `scoped-class' variable, use new eieio--scoped-class, and
12658 eieio--with-scoped-class.
12659 (initialize-instance): Rename local variable 'scoped-class' to
12660 'this-class' to remove ambiguitity from old global.
12661
12662 * emacs-lisp/eieio-core.el: New file. Derived from key parts of
12663 eieio.el.
12664 (eieio--scoped-class-stack): New variable.
12665 (eieio--scoped-class): New fcn.
12666 (eieio--with-scoped-class): New scoping macro.
12667 (eieio-defclass): Use pushnew instead of add-to-list.
12668 (eieio-defgeneric-form-primary-only-one, eieio-oset-default)
12669 (eieio-slot-name-index, eieio-set-defaults, eieio-generic-call)
12670 (eieio-generic-call-primary-only, eieiomt-add): Instead of using
12671 `scoped-class' variable, use new eieio--scoped-class, and
12672 eieio--with-scoped-class.
12673
12674 * emacs-lisp/eieio-base.el (cl-lib): Require during compile.
12675
12676 2013-06-02 Tassilo Horn <tsdh@gnu.org>
12677
12678 * eshell/esh-ext.el (eshell-external-command): Pass args to
12679 `eshell-find-interpreter'.
12680 (eshell-find-interpreter): Add new second parameter ARGS.
12681
12682 * eshell/em-script.el (eshell-script-initialize): Add second arg
12683 to the function added as MATCH to `eshell-interpreter-alist'.
12684
12685 * eshell/em-dirs.el (eshell-dirs-initialize): Add second arg to
12686 the function added as MATCH to `eshell-interpreter-alist'.
12687
12688 * eshell/em-term.el (eshell-visual-subcommands): New defcustom.
12689 (eshell-visual-options): New defcustom.
12690 (eshell-escape-control-x): Adapt docstring.
12691 (eshell-term-initialize): Test `eshell-visual-subcommands' and
12692 `eshell-visual-options' in addition to `eshell-visual-commands'.
12693 (eshell-exec-visual): Pass args to `eshell-find-interpreter'.
12694
12695 2013-06-01 Fabián Ezequiel Gallina <fgallina@gnu.org>
12696
12697 * progmodes/python.el (python-indent-block-enders): Add break,
12698 continue and raise keywords.
12699
12700 2013-06-01 Glenn Morris <rgm@gnu.org>
12701
12702 * pcmpl-gnu.el (pcomplete/tar): Check obsolete variable is bound.
12703
12704 Plain (f)boundp silences compilation warnings since Emacs 22.1.
12705 * progmodes/cc-cmds.el (delete-forward-p):
12706 * progmodes/cc-defs.el (buffer-syntactic-context-depth):
12707 * progmodes/cc-engine.el (buffer-syntactic-context):
12708 * progmodes/cc-fonts.el (face-property-instance):
12709 * progmodes/cc-mode.el (set-keymap-parents):
12710 * progmodes/cc-vars.el (get-char-table): No need for cc-bytecomp-defun.
12711 * progmodes/cc-defs.el (c-set-region-active, c-beginning-of-defun-1)
12712 * progmodes/cc-mode.el (c-make-inherited-keymap): Use plain fboundp.
12713 * progmodes/cc-defs.el (zmacs-region-stays, zmacs-regions)
12714 (lookup-syntax-properties): Remove unecessary cc-bytecomp-defvar.
12715
12716 * progmodes/cc-vars.el (other): Emacs has this widget since
12717 at least 21.1, so don't (re)define it.
12718
12719 * eshell/em-cmpl.el (eshell-cmpl-initialize):
12720 Replace the obsolete alias pcomplete-arg-quote-list.
12721
12722 2013-06-01 Leo Liu <sdl.web@gmail.com>
12723
12724 * progmodes/octave.el (octave-mode-syntax-table): Give `.'
12725 punctuation syntax.
12726 (inferior-octave-minimal-columns)
12727 (inferior-octave-last-column-width): New variables.
12728 (inferior-octave-track-window-width-change): New function.
12729 (inferior-octave-mode): Adjust column width so that Octave output,
12730 for example from 'ls', can fit into the window nicely.
12731
12732 2013-05-31 Dmitry Gutov <dgutov@yandex.ru>
12733
12734 * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
12735 Highlight expansions inside regexp literals.
12736
12737 2013-05-31 Glenn Morris <rgm@gnu.org>
12738
12739 * obsolete/sym-comp.el (symbol-complete):
12740 Replace obsolete completion-annotate-function.
12741
12742 * progmodes/cc-vars.el (c-make-macro-with-semi-re): Silence compiler.
12743
12744 2013-05-31 Dmitry Gutov <dgutov@yandex.ru>
12745
12746 * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
12747 New function, checks if point is inside a literal that allows
12748 expression expansion.
12749 (ruby-syntax-propertize-expansion): Use it.
12750 (ruby-syntax-propertize-function): Bind `case-fold-search' to nil
12751 around the body.
12752
12753 2013-05-30 Juri Linkov <juri@jurta.org>
12754
12755 * isearch.el (isearch-mode-map): Bind `isearch-toggle-invisible'
12756 to "\M-si".
12757 (isearch-invisible): New variable.
12758 (isearch-forward): Doc fix.
12759 (isearch-mode): Set `isearch-invisible'
12760 to the value of `search-invisible'.
12761 (isearch-toggle-case-fold): Doc fix.
12762 (isearch-toggle-invisible): New command.
12763 (isearch-query-replace): Let-bind `search-invisible'
12764 to the value of `isearch-invisible'.
12765 (isearch-search): Use `isearch-invisible' instead of
12766 `search-invisible'. Let-bind `search-invisible'
12767 to the value of `isearch-invisible'. (Bug#11378)
12768
12769 2013-05-30 Juri Linkov <juri@jurta.org>
12770
12771 * replace.el (perform-replace): Avoid `isearch-range-invisible'
12772 call when `query-flag' is nil and `search-invisible' is non-nil.
12773 (Bug#11746)
12774
12775 2013-05-30 Glenn Morris <rgm@gnu.org>
12776
12777 * progmodes/gdb-mi.el (gdb-wait-for-pending): Fix typo.
12778
12779 * progmodes/cc-bytecomp.el (cc-bytecomp-noruntime-functions): New.
12780 (cc-require): Suppress spurious "noruntime" warnings.
12781 (cc-require-when-compile): Use fboundp, for sake of compiler.
12782
12783 * progmodes/cc-mode.el: Move load of cc-vars before that of
12784 cc-langs (which in turn loads cc-vars), to quieten compiler.
12785
12786 2013-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
12787
12788 * paren.el: Simplify the code.
12789 (show-paren-mode): Always start the timer.
12790 (show-paren--idle-timer): Rename from show-paren-idle-timer.
12791 (show-paren--overlay, show-paren--overlay-1): Rename from
12792 show-paren-overlay and show-paren-overlay-1, and initialize to an
12793 overlay rather than to nil.
12794 (show-paren-function): Misc cleanup and simplifications.
12795
12796 2013-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
12797
12798 * paren.el (show-paren-data-function): New hook.
12799 (show-paren--default): New function, extracted from show-paren-function.
12800 (show-paren-function): Use show-paren-data-function.
12801
12802 2013-05-30 Glenn Morris <rgm@gnu.org>
12803
12804 * ielm.el (ielm-map, ielm-complete-symbol):
12805 Use completion-at-point rather than obsolete functions.
12806 (inferior-emacs-lisp-mode): Doc fix.
12807 Set completion-at-point-functions, rather than
12808 comint-dynamic-complete-functions.
12809
12810 * eshell/em-cmpl.el (eshell-complete-lisp-symbol): New function.
12811 (eshell-cmpl-initialize, eshell-complete-parse-arguments):
12812 Replace obsolete lisp-complete-symbol with eshell-complete-lisp-symbol.
12813
12814 * image.el (image-animated-p): Tweak definition.
12815
12816 * net/rlogin.el (rlogin-program, rlogin-explicit-args): Default to ssh.
12817 (rlogin-process-connection-type): Tweak default. Add set-after.
12818 (rlogin-host): Doc fix.
12819 (rlogin): Tweak prompt.
12820 (rlogin-tab-or-complete): Use completion-at-point rather than alias.
12821
12822 * net/net-utils.el (nslookup-mode-map, ftp-mode-map):
12823 * progmodes/tcl.el (inferior-tcl-mode-map):
12824 Use completion-at-point rather than obsolete alias.
12825
12826 * emacs-lisp/eieio.el (eieio-eval-default-p): Move before use.
12827
12828 * minibuffer.el (read-file-name-completion-ignore-case):
12829 Move before completion--in-region, for eager macro expansion.
12830
12831 2013-05-29 Juri Linkov <juri@jurta.org>
12832
12833 * replace.el (occur-engine): Rename `globalcount' to `global-lines'
12834 for total count of matching lines. Add `global-matches' for total
12835 count of matches. Rename `matches' to `lines' for count of
12836 matching lines. Add `matches' for count of matches.
12837 Rename `lines' to `curr-line' for line count. Rename `prev-lines'
12838 to `prev-line' for line number of prev match endpt.
12839 Increment `matches' for every match. Print the number of
12840 matching lines in the header.
12841 (occur-context-lines): Rename `lines' to `curr-line'.
12842 Rename `prev-lines' to `prev-line'. (Bug#14017)
12843
12844 2013-05-29 Juri Linkov <juri@jurta.org>
12845
12846 * replace.el (perform-replace): Add `skip-read-only-count',
12847 `skip-filtered-count', `skip-invisible-count' let-bound to 0.
12848 Increment them for corresponding conditions and report the number
12849 of skipped occurrences in the final message. (Bug#11746)
12850 (query-replace, query-replace-regexp, query-replace-regexp-eval)
12851 (replace-string, replace-regexp): Doc fix.
12852
12853 2013-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
12854
12855 * emacs-lisp/trace.el (trace--read-args): Provide a default.
12856
12857 * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Inherit from
12858 prog-mode-map (bug#14504).
12859
12860 2013-05-29 Leo Liu <sdl.web@gmail.com>
12861
12862 * progmodes/octave.el (octave-indent-comment): Tweak regexps.
12863 (octave-help): Small simplification.
12864
12865 * emacs-lisp/smie.el (smie-highlight-matching-block): Always turn
12866 off the highlight first.
12867
12868 2013-05-29 Glenn Morris <rgm@gnu.org>
12869
12870 * progmodes/idlwave.el (idlwave-concatenate-rinfo-lists):
12871 Handle idlwave-last-system-routine-info-cons-cell being nil.
12872
12873 * progmodes/idlwave.el (idlwave-scan-user-lib-files)
12874 (idlwave-write-paths): Simplify via with-temp-buffer.
12875
12876 * emulation/cua-gmrk.el: Also load cua-base, cua-rect at run time.
12877 * emulation/cua-rect.el: Also load cua-base at run time.
12878
12879 * progmodes/cperl-mode.el (imenu-choose-buffer-index)
12880 (file-of-tag, etags-snarf-tag, etags-goto-tag-location): Declare.
12881 (cperl-imenu-on-info): Require imenu.
12882
12883 2013-05-28 Alan Mackenzie <acm@muc.de>
12884
12885 Handle "capitalised keywords" correctly.
12886 * progmodes/cc-mode.el (c-after-change): Bind case-fold-search to nil.
12887
12888 2013-05-28 Aidan Gauland <aidalgol@amuri.net>
12889
12890 * eshell/em-unix.el: Add -r option to cp.
12891
12892 2013-05-28 Glenn Morris <rgm@gnu.org>
12893
12894 * vc/vc-arch.el (vc-exec-after): Declare.
12895 (vc-switches): Autoload.
12896 * vc/vc-bzr.el: No need to require vc when compiling.
12897 (vc-exec-after, vc-set-async-update, vc-default-dir-printer)
12898 (vc-resynch-buffer, vc-dir-refresh): Declare.
12899 (vc-setup-buffer, vc-switches): Autoload.
12900 * vc/vc-cvs.el (vc-exec-after, vc-coding-system-for-diff)
12901 (vc-resynch-buffer): Declare.
12902 (vc-switches, vc-default-revert, vc-version-backup-file): Autoload.
12903 * vc/vc-dir.el (desktop-missing-file-warning): Declare.
12904 * vc/vc-git.el (vc-exec-after, vc-set-async-update)
12905 (grep-read-regexp, grep-read-files, grep-expand-template)
12906 (vc-dir-refresh): Declare.
12907 (vc-setup-buffer, vc-switches, vc-resynch-buffer): Autoload.
12908 * vc/vc-hg.el (vc-exec-after, vc-set-async-update): Declare.
12909 (vc-setup-buffer, vc-switches, vc-do-async-command): Autoload.
12910 * vc/vc-mtn.el (vc-exec-after): Declare.
12911 (vc-switches): Autoload.
12912 * vc/vc-rcs.el (vc-expand-dirs, vc-switches)
12913 (vc-tag-precondition, vc-buffer-sync, vc-rename-master): Autoload.
12914 (vc-file-tree-walk): Declare.
12915 * vc/vc-sccs.el (vc-file-tree-walk): Declare.
12916 (vc-expand-dirs, vc-switches, vc-setup-buffer, vc-delistify)
12917 (vc-tag-precondition, vc-rename-master): Autoload.
12918 * vc/vc-svn.el (vc-exec-after): Declare.
12919 (vc-switches, vc-setup-buffer): Autoload.
12920 * obsolete/vc-mcvs.el (vc-checkout, vc-switches, vc-default-revert):
12921 Autoload.
12922 (vc-resynch-buffer): Declare.
12923
12924 * obsolete/fast-lock.el (byte-compile-warnings):
12925 Don't warn about obsolete features in this obsolete file.
12926
12927 * progmodes/cc-vars.el (c-macro-names-with-semicolon):
12928 Move definition before use.
12929
12930 * play/dunnet.el (byte-compile-warnings): Don't disable them all.
12931 (dun-unix-verbs): Remove dun-zippy.
12932 (dun-zippy): Remove function.
12933
12934 * emacs-lisp/bytecomp.el (byte-compile-warnings): Doc fix.
12935
12936 2013-05-27 Juri Linkov <juri@jurta.org>
12937
12938 * replace.el (replace-search): New function with code moved out
12939 from `perform-replace'.
12940 (replace-highlight, replace-dehighlight): Move function definitions
12941 up closer to `replace-search'. (Bug#11746)
12942
12943 2013-05-27 Juri Linkov <juri@jurta.org>
12944
12945 * replace.el (perform-replace): Ignore invisible matches.
12946 In addition to checking `query-replace-skip-read-only', also
12947 filter out matches by calling `run-hook-with-args-until-failure'
12948 on `isearch-filter-predicates', and also check `search-invisible'
12949 for t or call `isearch-range-invisible'.
12950 (replace-dehighlight): Call `isearch-clean-overlays'. (Bug#11746)
12951
12952 2013-05-27 Juri Linkov <juri@jurta.org>
12953
12954 * isearch.el (isearch-filter-predicates): Rename from
12955 `isearch-filter-predicate'. Doc fix. (Bug#11378)
12956 (isearch-message-prefix): Display text from the property
12957 `isearch-message-prefix' of the currently active filters.
12958 (isearch-search): Don't compare `isearch-filter-predicate' with
12959 `isearch-filter-visible'. Call `run-hook-with-args-until-failure'
12960 on `isearch-filter-predicates'. Also check `search-invisible' for t
12961 or call `isearch-range-invisible'.
12962 (isearch-filter-visible): Make obsolete.
12963 (isearch-lazy-highlight-search):
12964 Call `run-hook-with-args-until-failure' on
12965 `isearch-filter-predicates' and use `isearch-range-invisible'.
12966
12967 * info.el (Info-search): Call `run-hook-with-args-until-failure' on
12968 `isearch-filter-predicates' instead of `funcall'ing
12969 `isearch-filter-predicate'.
12970 (Info-mode): Set `Info-isearch-filter' to
12971 `isearch-filter-predicates' instead of `isearch-filter-predicate'.
12972
12973 * dired-aux.el (dired-isearch-filter-predicate-orig):
12974 Remove variable.
12975 (dired-isearch-filenames-toggle, dired-isearch-filenames-setup)
12976 (dired-isearch-filenames-end): Add and remove
12977 `dired-isearch-filter-filenames' in `isearch-filter-predicates'
12978 instead of changing the value of `isearch-filter-predicate'.
12979 Rebind `dired-isearch-filenames-toggle' from "\M-sf" to "\M-sff".
12980 (dired-isearch-filter-filenames): Don't use `isearch-filter-visible'.
12981 Put property `isearch-message-prefix' to "filename " on
12982 `dired-isearch-filter-filenames'.
12983
12984 * wdired.el (wdired-change-to-wdired-mode):
12985 Add `isearch-filter-predicates' to `wdired-isearch-filter-read-only'
12986 locally instead of changing `isearch-filter-predicate'.
12987 (wdired-isearch-filter-read-only): Don't use `isearch-filter-visible'.
12988
12989 2013-05-27 Dmitry Gutov <dgutov@yandex.ru>
12990
12991 * vc/vc-git.el (vc-git-working-revision): When in detached mode,
12992 return the commit hash (Bug#14459). Also set the
12993 `vc-git-detached' property.
12994 (vc-git--rev-parse): Extract from `vc-git-previous-revision'.
12995 (vc-git-mode-line-string): Use the same help-echo format whether
12996 in detached mode or not, because we know the actual revision now.
12997 When in detached mode, shorten the revision to 7 chars.
12998
12999 2013-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
13000
13001 * emacs-lisp/easy-mmode.el (define-minor-mode):
13002 * emacs-lisp/derived.el (define-derived-mode): Always defvar the
13003 mode hook and provide a docstring.
13004
13005 2013-05-27 Alan Mackenzie <acm@muc.de>
13006
13007 Remove spurious syntax-table text properties inserted by C-y.
13008 * progmodes/cc-mode.el (c-after-change): Also clear hard
13009 syntax-table property with value nil.
13010
13011 2013-05-27 Michael Albinus <michael.albinus@gmx.de>
13012
13013 * net/dbus.el (dbus-call-method): Let-bind `inhibit-redisplay'
13014 when reading the events; the buffer layout shall not be changed.
13015
13016 2013-05-27 Leo Liu <sdl.web@gmail.com>
13017
13018 * progmodes/octave.el (inferior-octave-directory-tracker-resync):
13019 New variable.
13020 (inferior-octave-directory-tracker): Automatically re-sync
13021 default-directory.
13022 (octave-help): Improve handling of 'See also'.
13023
13024 2013-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
13025
13026 * doc-view.el: Minor naming convention tweaks.
13027 (desktop-buffer-mode-handlers): Don't add to it repeatedly.
13028
13029 * image-mode.el (image-mode-reapply-winprops): Call image-mode-winprops
13030 even if there's no `display' property yet (bug#14435).
13031
13032 2013-05-25 Eli Zaretskii <eliz@gnu.org>
13033
13034 * subr.el (unmsys--file-name): Rename from reveal-filename.
13035
13036 * Makefile.in (custom-deps, finder-data, autoloads)
13037 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
13038 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
13039 ($(CAL_DIR)/hol-loaddefs.el): All users changed.
13040
13041 2013-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
13042
13043 * emacs-lisp/lisp.el (lisp-completion-at-point): Don't use
13044 error-completion on the first 2 args of condition-case (bug#14446).
13045 Don't burp at EOB.
13046
13047 2013-05-25 Leo Liu <sdl.web@gmail.com>
13048
13049 * comint.el (comint-previous-matching-input): Do not flood the
13050 *Messages* buffer with trivial messages.
13051
13052 2013-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
13053
13054 * progmodes/flymake.el (flymake-nop): Don't return a string.
13055 (flymake-set-at): Fix typo.
13056
13057 * simple.el (read--expression): New function, extracted from
13058 eval-expression. Set completion-at-point-functions (bug#14465).
13059 (eval-expression, eval-minibuffer): Use it.
13060
13061 2013-05-25 Xue Fuqiao <xfq.free@gmail.com>
13062
13063 * progmodes/flymake.el (flymake-save-buffer-in-file)
13064 (flymake-makehash, flymake-posn-at-point-as-event, flymake-nop)
13065 (flymake-selected-frame, flymake-log, flymake-ins-after)
13066 (flymake-set-at, flymake-get-buildfile-from-cache)
13067 (flymake-add-buildfile-to-cache, flymake-clear-buildfile-cache)
13068 (flymake-find-possible-master-files, flymake-save-buffer-in-file):
13069 Refine the doc string.
13070 (flymake-get-file-name-mode-and-masks): Reformat.
13071 (flymake-get-real-file-name-function): Fix a minor bug.
13072
13073 2013-05-24 Juri Linkov <juri@jurta.org>
13074
13075 * progmodes/grep.el (grep-mode-font-lock-keywords):
13076 Support =linenumber= format used by git-grep for lines with
13077 function names. (Bug#13549)
13078
13079 2013-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
13080
13081 * progmodes/octave.el (octave-smie-rules): Return nil rather than
13082 0 after a semi-colon; it works better for smie-auto-fill.
13083 (octave--indent-new-comment-line): New function.
13084 (octave-indent-new-comment-line): Use it (indirectly).
13085 (octave-mode): Don't disable smie-auto-fill. Use add-function to
13086 modify comment-line-break-function.
13087
13088 * emacs-lisp/smie.el (smie-auto-fill): Rework to be more robust.
13089 (smie-setup): Use add-function to set it.
13090
13091 2013-05-24 Sam Steingold <sds@gnu.org>
13092
13093 * sort.el (delete-duplicate-lines): Accept an optional `keep-blanks'
13094 argument (before the `interactive' argument).
13095
13096 2013-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
13097
13098 * image-mode.el (image-mode-winprops): Add winprops to
13099 image-mode-winprops-alist before running
13100 image-mode-new-window-functions.
13101 * doc-view.el (doc-view-new-window-function): Don't delay
13102 doc-view-goto-page via timers (bug#14435).
13103
13104 2013-05-24 Tassilo Horn <tsdh@gnu.org>
13105
13106 * doc-view.el: Integrate with desktop.el. (Bug#14435)
13107 (doc-view-desktop-save-buffer): New function.
13108 (doc-view-restore-desktop-buffer): New function.
13109 (desktop-buffer-mode-handlers):
13110 Add `doc-view-restore-desktop-buffer' as desktop.el buffer mode
13111 handler.
13112 (doc-view-mode): Set `doc-view-desktop-save-buffer' as custom
13113 `desktop-save-buffer' function.
13114
13115 2013-05-24 Michael Albinus <michael.albinus@gmx.de>
13116
13117 * net/tramp-gvfs.el (tramp-gvfs-enabled): New defconst.
13118 (tramp-gvfs-file-name-handler): Raise a user error when
13119 `tramp-gvfs-enabled' is nil.
13120 (top): Register signals only when `tramp-gvfs-enabled' is non-nil.
13121 Do not raise a user error when loading package. (Bug#14447)
13122
13123 * net/xesam.el: Move to obsolete/.
13124
13125 2013-05-24 Glenn Morris <rgm@gnu.org>
13126
13127 * font-lock.el (lisp-font-lock-keywords-2): Add with-coding-priority.
13128
13129 * emacs-lisp/chart.el (chart-sort): Replace obsolete `object-name'.
13130
13131 * progmodes/cperl-mode.el (cperl-mode): Use fboundp.
13132 (Info-find-node, Man-getpage-in-background): Declare.
13133
13134 * mail/unrmail.el (unrmail):
13135 Replace obsolete detect-coding-with-priority.
13136
13137 * net/socks.el (socks-split-string): Use this rather than split-string.
13138 (socks-nslookup-host): Update for above change.
13139 (dynamic-choice, s5-dynamic-choice-match)
13140 (s5-dynamic-choice-match-inline, s5-widget-value-create):
13141 Comment out unused code.
13142
13143 * tooltip.el (tooltip-use-echo-area): Warn only on 'set.
13144 * progmodes/gud.el (gud-gdb-completion-function): Move before use.
13145 (gud-tooltip-echo-area): Make obsolete.
13146 (gud-tooltip-process-output, gud-tooltip-tips): Also check tooltip-mode.
13147
13148 * progmodes/js.el (js--optimize-arglist): Declare.
13149
13150 * progmodes/ruby-mode.el (ruby-syntax-propertize-expansion): Declare.
13151
13152 * progmodes/which-func.el (ediff-window-A, ediff-window-B)
13153 (ediff-window-C): Declare.
13154
13155 * obsolete/pgg-gpg.el, obsolete/pgg-pgp.el, obsolete/pgg-pgp5.el:
13156 Tweak requires to silence compiler.
13157
13158 * obsolete/sym-comp.el: No need to load hipper-exp when compiling.
13159 (he-search-string, he-tried-table, he-expand-list)
13160 (he-init-string, he-string-member, he-substitute-string)
13161 (he-reset-string): Declare.
13162
13163 * obsolete/options.el (list-options): Use custom-variable-p,
13164 rather than obsolete alias.
13165
13166 2013-05-23 Sam Steingold <sds@gnu.org>
13167
13168 * simple.el (shell-command-on-region): Pass the `replace' argument
13169 down to `call-process-region' to comply with the doc as reported on
13170 <http://stackoverflow.com/questions/16720458/emacs-noninteractive-call-to-shell-command-on-region-always-deletes-region>
13171
13172 2013-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
13173
13174 * emacs-lisp/smie.el (smie-indent-forward-token)
13175 (smie-indent-backward-token): Handle string tokens (bug#14381).
13176
13177 2013-05-23 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
13178
13179 * ielm.el (ielm-menu): New menu.
13180 (inferior-emacs-lisp-mode): Set comment-start.
13181
13182 2013-05-23 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
13183
13184 * textmodes/reftex.el (reftex-ref-style-toggle):
13185 Fix deactivate action.
13186
13187 * textmodes/reftex-vars.el (reftex-ref-style-alist):
13188 Add cleveref macros.
13189
13190 * textmodes/reftex-parse.el
13191 (reftex-locate-bibliography-files): Accept options for
13192 bibliography commands.
13193 * textmodes/reftex-vars.el (reftex-bibliography-commands):
13194 Add addbibresource. Basic Biblatex support.
13195
13196 2013-05-23 Michael Albinus <michael.albinus@gmx.de>
13197
13198 * net/tramp-gvfs.el (top):
13199 * net/xesam.el (xesam-dbus-unique-names): Suppress D-Bus errors
13200 when loading package. (Bug#14447)
13201
13202 2013-05-23 Glenn Morris <rgm@gnu.org>
13203
13204 * progmodes/js.el: No need to load comint when compiling.
13205 (ring-insert, comint-send-string, comint-send-input)
13206 (comint-last-input-end, ido-chop): Declare.
13207
13208 * vc/ediff-diff.el, vc/ediff-merg.el: Require ediff-util at run-time.
13209 * vc/ediff-mult.el: Adjust requires.
13210 (ediff-directories-internal, ediff-directory-revisions-internal)
13211 (ediff-patch-file-internal): Declare.
13212 * vc/ediff-ptch.el: Adjust requires.
13213 (ediff-use-last-dir, ediff-buffers-internal): Declare.
13214 (ediff-find-file): Autoload.
13215 * vc/ediff-util.el: No need to load ediff when compiling.
13216 (ediff-regions-internal): Declare.
13217 * vc/ediff-wind.el: Adjust requires.
13218 (ediff-compute-toolbar-width): Define when compiling.
13219 (ediff-setup-control-buffer, ediff-make-bottom-toolbar): Declare.
13220 * vc/ediff.el: No need to load dired, ediff-ptch when compiling.
13221 (dired-get-filename, dired-get-marked-files)
13222 (ediff-last-dir-patch, ediff-patch-default-directory)
13223 (ediff-get-patch-buffer, ediff-dispatch-file-patching-job)
13224 (ediff-patch-buffer-internal): Declare.
13225
13226 * emacs-lisp/checkdoc.el: No need to load ispell when compiling.
13227 (ispell-process, ispell-buffer-local-words, lm-summary)
13228 (lm-section-start, lm-section-end): Declare.
13229 (checkdoc-ispell-init): Simplify.
13230
13231 * progmodes/vera-mode.el (he-init-string, he-dabbrev-beg)
13232 (he-string-member, he-reset-string, he-substitute-string): Declare.
13233
13234 * eshell/em-ls.el: Adjust requires.
13235 (eshell-glob-regexp): Declare.
13236 * eshell/em-tramp.el: Adjust requires.
13237 (eshell-parse-command): Autoload.
13238 * eshell/em-xtra.el: Adjust requires.
13239 (eshell-parse-command): Autoload.
13240 * eshell/esh-ext.el: Adjust requires.
13241 (eshell-parse-command, eshell-close-handles): Autoload.
13242 * eshell/esh-io.el: Adjust requires.
13243 (eshell-output-filter): Autoload.
13244 * eshell/esh-util.el: No need to load tramp when compiling.
13245 (tramp-file-name-structure, ange-ftp-ls, ange-ftp-file-modtime):
13246 Declare.
13247 (eshell-parse-ange-ls): Require ange-ftp and tramp.
13248 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
13249 * eshell/em-cmpl.el, eshell/em-glob.el, eshell/em-pred.el:
13250 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-smart.el:
13251 * eshell/em-term.el, eshell/esh-arg.el, eshell/esh-mode.el:
13252 * eshell/esh-opt.el, eshell/esh-proc.el:
13253 * eshell/esh-var.el: Adjust requires.
13254 * eshell/eshell.el: Do not require esh-util twice.
13255 (eshell-add-input-to-history): Declare.
13256 (eshell-command): Check history module is active before using it.
13257
13258 * eshell/em-ls.el (eshell-ls-dir): Fix -A handling.
13259
13260 2013-05-22 Leo Liu <sdl.web@gmail.com>
13261
13262 * progmodes/octave.el (inferior-octave-startup): Fix bug#14433.
13263
13264 2013-05-22 Michael Albinus <michael.albinus@gmx.de>
13265
13266 * autorevert.el (auto-revert-notify-add-watch)
13267 (auto-revert-notify-handler): Add `attrib' for the inotify case,
13268 it indicates changes in file modification time.
13269
13270 2013-05-22 Glenn Morris <rgm@gnu.org>
13271
13272 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
13273 Always delete the autoloaded function from the noruntime and
13274 unresolved functions lists.
13275
13276 * allout.el: No need to load epa, epg, overlay when compiling.
13277 (epg-context-set-passphrase-callback, epg-list-keys)
13278 (epg-decrypt-string, epg-encrypt-string, epg-user-id-string)
13279 (epg-key-user-id-list): Declare.
13280
13281 * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
13282 (viper-set-parsing-style-toggling-macro)
13283 (viper-set-emacs-state-searchstyle-macros):
13284 Use called-interactively-p on Emacs.
13285 (viper-looking-back): Make it an obsolete alias. Update callers.
13286 * emulation/viper-ex.el: Load viper-keym, not viper-cmd.
13287 Use looking-back rather than viper-looking-back.
13288 (viper-tmp-insert-at-eob, viper-enlarge-region)
13289 (viper-read-string-with-history, viper-register-to-point)
13290 (viper-append-to-register, viper-change-state-to-vi)
13291 (viper-backward-char-carefully, viper-forward-char-carefully)
13292 (viper-Put-back, viper-put-back, viper-add-newline-at-eob-if-necessary)
13293 (viper-change-state-to-emacs): Declare.
13294 * emulation/viper-macs.el: Load viper-mous, viper-ex, not viper-cmd.
13295 (viper-change-state-to-insert, viper-change-state-to-vi): Declare.
13296 * emulation/viper-mous.el: Do not load viper-cmd.
13297 (viper-backward-char-carefully, viper-forward-char-carefully)
13298 (viper-forward-word, viper-adjust-window): Declare.
13299
13300 * vc/ediff.el (ediff-version): Use called-interactively-p on Emacs.
13301
13302 * progmodes/idlw-help.el (idlwave-help-fontify):
13303 Use called-interactively-p.
13304
13305 * term/w32console.el (w32-get-console-codepage)
13306 (w32-get-console-output-codepage): Declare.
13307
13308 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape):
13309 Remove unnecessary declarations.
13310 (dframe-message): Doc fix.
13311
13312 * info.el (dframe-select-attached-frame, dframe-current-frame):
13313 Declare.
13314
13315 * speedbar.el (speedbar-message): Make it an obsolete alias.
13316 Update all callers.
13317 (speedbar-with-attached-buffer)
13318 (speedbar-maybee-jump-to-attached-frame): Make these aliases obsolete.
13319 (speedbar-with-writable): Use backquote.
13320 * emacs-lisp/eieio-opt.el (eieio-describe-class-sb):
13321 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click):
13322 Use dframe-with-attached-buffer, dframe-maybee-jump-to-attached-frame
13323 rather than speedbar- aliases.
13324 * mail/rmail.el: Load dframe rather than speedbar when compiling.
13325 (speedbar-make-specialized-keymap, speedbar-insert-button)
13326 (dframe-select-attached-frame, dframe-maybee-jump-to-attached-frame)
13327 (speedbar-do-function-pointer): Declare.
13328 (rmail-speedbar-button, rmail-speedbar-find-file)
13329 (rmail-speedbar-move-message):
13330 Use dframe-with-attached-buffer rather than speedbar- alias.
13331 * progmodes/gud.el: Load dframe rather than speedbar when compiling.
13332 (dframe-message, speedbar-make-specialized-keymap)
13333 (speedbar-add-expansion-list, speedbar-mode-functions-list)
13334 (speedbar-make-tag-line, speedbar-remove-localized-speedbar-support)
13335 (speedbar-insert-button, dframe-select-attached-frame)
13336 (dframe-maybee-jump-to-attached-frame)
13337 (speedbar-change-initial-expansion-list)
13338 (speedbar-previously-used-expansion-list-name): Declare.
13339 (gud-speedbar-item-info, gud-gdb-goto-stackframe):
13340 Use dframe-message, dframe-with-attached-buffer rather than
13341 speedbar- aliases.
13342 (gud-sentinel): Silence compiler.
13343 * progmodes/vhdl-mode.el (speedbar-refresh)
13344 (speedbar-do-function-pointer, speedbar-add-supported-extension)
13345 (speedbar-add-mode-functions-list, speedbar-make-specialized-keymap)
13346 (speedbar-change-initial-expansion-list, speedbar-add-expansion-list)
13347 (speedbar-extension-list-to-regex, speedbar-directory-buttons)
13348 (speedbar-file-lists, speedbar-make-tag-line)
13349 (speedbar-line-directory, speedbar-goto-this-file)
13350 (speedbar-center-buffer-smartly, speedbar-change-expand-button-char)
13351 (speedbar-delete-subblock, speedbar-position-cursor-on-line)
13352 (speedbar-make-button, speedbar-reset-scanners)
13353 (speedbar-files-item-info, speedbar-line-text)
13354 (speedbar-find-file-in-frame, speedbar-set-timer)
13355 (dframe-maybee-jump-to-attached-frame, speedbar-line-file): Declare.
13356 (speedbar-with-writable): Do not (re)define it.
13357 (vhdl-speedbar-find-file): Use dframe-maybee-jump-to-attached-frame
13358 rather than speedbar- alias.
13359
13360 2013-05-21 Leo Liu <sdl.web@gmail.com>
13361
13362 * progmodes/octave.el (octave-mode-menu): Update and re-organize
13363 menu items.
13364 (octave-mode): Tweak fill-nobreak-predicate.
13365 (inferior-octave-startup): Check process to avoid infinite loop.
13366 (inferior-octave): Pop to buffer first to show abornmal process
13367 exit information.
13368
13369 2013-05-21 Glenn Morris <rgm@gnu.org>
13370
13371 * printing.el (pr-menu-bar): Define when compiling.
13372
13373 2013-05-21 Leo Liu <sdl.web@gmail.com>
13374
13375 * progmodes/octave.el (octave-auto-fill): Remove.
13376 (octave-indent-new-comment-line): Improve.
13377 (octave-mode): Use auto fill mode through
13378 comment-line-break-function and fill-nobreak-predicate.
13379 (octave-goto-function-definition): Support DEFUN_DLD.
13380 (octave-beginning-of-defun): Small tweak.
13381 (octave-help): Show parent directory.
13382
13383 2013-05-21 Glenn Morris <rgm@gnu.org>
13384
13385 * files.el (dired-unmark):
13386 * progmodes/gud.el (gdb-input): Update declarations.
13387
13388 * calculator.el (electric, ehelp): No need to load when compiling.
13389 (Electric-command-loop, electric-describe-mode): Declare.
13390
13391 * doc-view.el (doc-view-current-converter-processes): Move before use.
13392
13393 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
13394 Move MODE-set-explicitly definition before use.
13395
13396 * international/mule-diag.el (mule-diag):
13397 Don't use obsolete window-system-version.
13398
13399 * mail/feedmail.el (smtpmail): No need to load when compiling.
13400 (smtpmail-via-smtp, smtpmail-smtp-server): Declare.
13401
13402 * mail/mail-utils.el (rfc822): No need to load when compiling.
13403 (rfc822-addresses): Autoload it.
13404 (mail-strip-quoted-names): Trivial simplification.
13405
13406 * mail/rmail.el (rmail-mime-message-p, rmail-mime-toggle-raw): Declare.
13407 (rmail-retry-failure): Don't assume that rmail-mime-feature == rmailmm.
13408
13409 * net/snmp-mode.el (tempo): Don't duplicate requires.
13410
13411 * progmodes/prolog.el (info): No need to load when compiling.
13412 (comint): Require before shell requires it.
13413 (Info-goto-node): Autoload it.
13414 (Info-follow-nearest-node): Declare.
13415 (prolog-help-info, prolog-goto-predicate-info): No need to require info.
13416
13417 * textmodes/artist.el (picture-mode-exit): Declare.
13418
13419 * textmodes/reftex-parse.el (reftex-parse-from-file):
13420 Trivial rewrite so the compiler can parse it better.
13421
13422 2013-05-20 Leo Liu <sdl.web@gmail.com>
13423
13424 * progmodes/octave.el (octave-help-mode-map)
13425 (octave-help-mode-finish-hook): New variables.
13426 (octave-help-mode, octave-help-mode-finish): New functions.
13427 (octave-help): Use octave-help-mode.
13428
13429 2013-05-20 Glenn Morris <rgm@gnu.org>
13430
13431 * format-spec.el (format-spec): Allow spec chars with nil. (Bug#14420)
13432
13433 2013-05-19 Dmitry Gutov <dgutov@yandex.ru>
13434
13435 * progmodes/ruby-mode.el (ruby-expression-expansion-re): Allow to
13436 start at point, so that expansion starting right after opening
13437 slash in a regexp is recognized.
13438 (ruby-syntax-before-regexp-re): New defvar, extracted from
13439 ruby-syntax-propertize-function. Since the value of this regexp
13440 is looked up at runtime now, we should be able to turn
13441 `ruby-syntax-methods-before-regexp' into a defcustom later.
13442 (ruby-syntax-propertize-function): Split regexp matching into two
13443 parts, for opening and closing slashes. That allows us to skip
13444 over string interpolations and support multiline regexps.
13445 Don't call `ruby-syntax-propertize-expansions', instead use another rule
13446 for them, which calls `ruby-syntax-propertize-expansion'.
13447 (ruby-syntax-propertize-expansions): Move `remove-text-properties'
13448 call to `ruby-syntax-propertize-function'.
13449 (ruby-syntax-propertize-expansion): Extracted from
13450 `ruby-syntax-propertize-expansions'. Handles one expansion.
13451 (ruby-syntax-propertize-percent-literal): Leave point right after
13452 the percent symbol, so that the expression expansion rule can
13453 propertize the contents.
13454 (ruby-syntax-propertize-heredoc): Leave point at bol following the
13455 heredoc openers.
13456 (ruby-syntax-propertize-expansions): Remove.
13457
13458 2013-05-18 Juri Linkov <juri@jurta.org>
13459
13460 * man.el (Man-default-man-entry): Remove `-' from the end
13461 of the default value. (Bug#14400)
13462
13463 2013-05-18 Glenn Morris <rgm@gnu.org>
13464
13465 * comint.el (comint-password-prompt-regexp):
13466 Allow "password for XXX" where XXX contains colons (eg https://...).
13467
13468 2013-05-18 Leo Liu <sdl.web@gmail.com>
13469
13470 * progmodes/octave.el (inferior-octave-startup): Use OCTAVE_SRCDIR
13471 instead. Include "--no-gui" to prevent hangs for Octave > 3.7.
13472 (octave-source-directories): Don't check process.
13473 (octave-source-directories, octave-find-definition): Doc fix.
13474
13475 2013-05-18 Glenn Morris <rgm@gnu.org>
13476
13477 * progmodes/vhdl-mode.el (vhdl-mode-map-init):
13478 Remove backspace/delete bindings. (Bug#14392)
13479
13480 * cus-dep.el (custom-make-dependencies): Sort the output.
13481 (custom-versions-load-alist): Convert comment to doc.
13482
13483 2013-05-17 Leo Liu <sdl.web@gmail.com>
13484
13485 * newcomment.el (comment-search-backward): Stricter in finding
13486 comment start. (Bug#14303)
13487
13488 * progmodes/octave.el (octave-comment-start): Remove the SPC char.
13489 (octave-comment-start-skip): Properly anchored.
13490
13491 2013-05-17 Leo Liu <sdl.web@gmail.com>
13492
13493 * emacs-lisp/smie.el (smie-highlight-matching-block-mode):
13494 Clean up when turned off. (Bug#14395)
13495 (smie--highlight-matching-block-overlay): No longer buffer-local.
13496 (smie-highlight-matching-block): Adjust.
13497
13498 2013-05-17 Paul Eggert <eggert@cs.ucla.edu>
13499
13500 Doc string fix for "nanoseconds" (Bug#14406).
13501 * emacs-lisp/timer.el (timer-relative-time, timer-inc-time):
13502 Fix doc string typo that had "nanoseconds" instead of "microseconds".
13503
13504 2013-05-17 Jay Belanger <jay.p.belanger@gmail.com>
13505
13506 * calc/calc-units.el (math-extract-units): Preserve powers
13507 of units.
13508
13509 2013-05-17 Leo Liu <sdl.web@gmail.com>
13510
13511 * subr.el (delete-consecutive-dups): New function.
13512 * ido.el (ido-set-matches-1): Use it.
13513 * progmodes/octave.el (inferior-octave-completion-table): Use it.
13514 * ido.el (ido-remove-consecutive-dups): Remove.
13515
13516 2013-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
13517
13518 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
13519 (f90-hpf-keywords-re, f90-constants-re): Use \\_< rather than
13520 regexp-opt's `words'.
13521
13522 2013-05-16 Leo Liu <sdl.web@gmail.com>
13523
13524 * emacs-lisp/smie.el (smie-matching-block-highlight): New face.
13525 (smie--highlight-matching-block-overlay)
13526 (smie--highlight-matching-block-lastpos)
13527 (smie--highlight-matching-block-timer): New variables.
13528 (smie-highlight-matching-block): New function.
13529 (smie-highlight-matching-block-mode): New minor mode. (Bug#14395)
13530 (smie-setup): Conditionally enable smie-blink-matching-open.
13531
13532 2013-05-16 Wilson Snyder <wsnyder@wsnyder.org>
13533
13534 Sync with upstream verilog-mode r840.
13535 * progmodes/verilog-mode.el (verilog-mode-version)
13536 (verilog-mode-release-date): Update.
13537 (verilog-auto-lineup, verilog-auto-reset): Doc fixes.
13538 (verilog-sig-tieoff): Fix string error on
13539 AUTORESET with colon define, bug594. Reported by Andrew Hou.
13540 (verilog-read-decls): Fix parameters confusing
13541 AUTOINST interfaces, bug565. Reported by Leith Johnson.
13542
13543 2013-05-16 Eli Zaretskii <eliz@gnu.org>
13544
13545 * subr.el (reveal-filename): New function.
13546
13547 * loadup.el: Compute Emacs executable versions on MS-Windows,
13548 where executables have the .exe extension. Add a hard link
13549 emacs-XX.YY.ZZ.exe on MS-Windows.
13550
13551 * Makefile.in (XARGS_LIMIT): New variable.
13552 (custom-deps, finder-data, autoloads)
13553 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
13554 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
13555 ($(CAL_DIR)/hol-loaddefs.el): Use reveal-filename.
13556 (compile-main): Limit xargs according to $(XARGS_LIMIT).
13557
13558 2013-05-16 Leo Liu <sdl.web@gmail.com>
13559
13560 * progmodes/octave.el (octave-indent-defun): Mark obsolete.
13561 (octave-mode-menu, octave-mode-map): Remove its uses.
13562
13563 2013-05-16 Reto Zimmermann <reto@gnu.org>
13564
13565 Sync with upstream vhdl mode v3.34.2.
13566 * progmodes/vhdl-mode.el: Use `push' throughout.
13567 (vhdl-version, vhdl-time-stamp, vhdl-doc-release-notes): Update.
13568 (vhdl-compiler-alist): Replace "\t\n" by "\\t\\n".
13569 Add IBM & Quartus compiler. Enhance entry for ADVance MS compiler.
13570 (vhdl-actual-generic-name): New option to derive actual generic name.
13571 (vhdl-port-paste-signals): Replace formal by actual generics.
13572 (vhdl-beautify): New name for old group vhdl-align. Update users.
13573 (vhdl-beautify-options): New option.
13574 (vhdl-last-input-event): New compat alias. Use throughout.
13575 (vhdl-goto-line): Replace user level function `goto-line'.
13576 (vhdl-mode-map): Add bindings for vhdl-fix-statement-region,
13577 vhdl-fix-statement-buffer.
13578 (vhdl-create-mode-menu): Add some entries.
13579 (vhdl-align-region-groups): Respect vhdl-beautify-options.
13580 (vhdl-align-inline-comment-region-1): Handle "--" inside string.
13581 (vhdl-fixup-whitespace-region): Handle symbols at EOL.
13582 (vhdl-fix-statement-region, vhdl-fix-statement-buffer): New commands,
13583 to force statements on one line.
13584 (vhdl-remove-trailing-spaces-region):
13585 New, split from vhdl-remove-trailing-spaces.
13586 (vhdl-beautify-region): Fix statements, trailing spaces, ^M character.
13587 Respect vhdl-beautify-options.
13588 (vhdl-update-sensitivity-list-buffer): If non-interactive save buffer.
13589 (vhdl-update-sensitivity-list): Not add with index if exists without.
13590 Not include array index with signal. Ignore keywords in comments.
13591 (vhdl-get-visible-signals): Regexp tweaks.
13592 (vhdl-template-component-inst): Handle empty library.
13593 (vhdl-template-type): Add template for 'enum' type.
13594 (vhdl-port-paste-generic-map, vhdl-port-paste-constants):
13595 Use vhdl-replace-string.
13596 (vhdl-port-paste-signals): Use vhdl-prepare-search-1.
13597 (vhdl-speedbar-mode-map): Rename from vhdl-speedbar-key-map.
13598 (vhdl-speedbar-initialize): Update for above name change.
13599 (vhdl-compose-wire-components): Fix in handling of constants.
13600 (vhdl-error-regexp-emacs-alist): New variable.
13601 (vhdl-error-regexp-add-emacs): New function;
13602 adds support for new compile.el (Emacs 22+)
13603 (vhdl-generate-makefile-1): Change target order for single lib. units.
13604 Allow use of absolute file names.
13605
13606 2013-05-16 Leo Liu <sdl.web@gmail.com>
13607
13608 * simple.el (prog-indent-sexp): Indent enclosing defun.
13609
13610 2013-05-15 Glenn Morris <rgm@gnu.org>
13611
13612 * cus-start.el (show-trailing-whitespace): Move to editing basics.
13613 * faces.el (trailing-whitespace): Don't use whitespace-faces group.
13614 * obsolete/old-whitespace.el (whitespace-faces): Remove group.
13615 (whitespace-highlight): Move to whitespace group.
13616
13617 * comint.el (comint-source):
13618 * pcmpl-linux.el (pcmpl-linux):
13619 * shell.el (shell-faces):
13620 * eshell/esh-opt.el (eshell-opt):
13621 * international/ccl.el (ccl): Remove empty custom groups.
13622
13623 * completion.el (dynamic-completion-mode):
13624 * jit-lock.el (jit-lock-debug-mode):
13625 * minibuffer.el (completion-in-region-mode):
13626 * type-break.el (type-break-mode-line-message-mode)
13627 (type-break-query-mode):
13628 * emulation/tpu-edt.el (tpu-edt-mode):
13629 * progmodes/subword.el (global-subword-mode, global-superword-mode):
13630 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
13631 * term/vt100.el (vt100-wide-mode): Specify explicit :group.
13632
13633 * term/xterm.el (xterm): Change parent group to terminals.
13634
13635 * master.el (master): Remove empty custom group.
13636 (master-mode): Remove unused :group argument.
13637 * textmodes/refill.el (refill): Remove empty custom group.
13638 (refill-mode): Remove unused :group argument.
13639
13640 * textmodes/rst.el (rst-compile-toolsets): Use rst-compile group.
13641
13642 * cus-dep.el: Provide a feature.
13643 (custom-make-dependencies): Ignore dotfiles (dir-locals).
13644 Don't mistakenly ignore files whose basenames match a basename
13645 from preloaded-file-list (eg cedet/ede/simple.el).
13646 Add a fallback method for getting :group.
13647
13648 2013-05-15 Juri Linkov <juri@jurta.org>
13649
13650 * isearch.el (isearch-char-by-name): Rename from
13651 `isearch-insert-char-by-name'. Doc fix.
13652 (isearch-forward): Mention `isearch-char-by-name' in
13653 the docstring. (Bug#13348)
13654
13655 * isearch.el (minibuffer-local-isearch-map): Bind "\r" to
13656 `exit-minibuffer' instead of
13657 `isearch-nonincremental-exit-minibuffer'.
13658 (isearch-edit-string): Remove mention of
13659 `isearch-nonincremental-exit-minibuffer' from docstring.
13660 (isearch-nonincremental-exit-minibuffer): Mark as obsolete.
13661 (isearch-forward-exit-minibuffer)
13662 (isearch-reverse-exit-minibuffer): Add docstring. (Bug#13348)
13663
13664 2013-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
13665
13666 * loadup.el: Just use unversioned DOC.
13667
13668 * nxml/nxml-mode.el: Treat unclosed <[[, <?, comment, and other
13669 literals as extending to EOB.
13670 (nxml-last-fontify-end): Remove unused variable.
13671 (nxml-after-change1): Use with-silent-modifications.
13672 (nxml-extend-after-change-region): Simplify.
13673 (nxml-extend-after-change-region1): Remove function.
13674 (nxml-after-change1): Don't adjust for dependent regions.
13675 (nxml-fontify-matcher): Simplify.
13676 * nxml/xmltok.el (xmltok-dependent-regions): Remove variable.
13677 (xmltok-add-dependent): Remove function.
13678 (xmltok-scan-after-lt, xmltok-scan-after-processing-instruction-open)
13679 (xmltok-scan-after-comment-open, xmltok-scan-prolog-literal)
13680 (xmltok-scan-prolog-after-processing-instruction-open): Treat
13681 unclosed <[[, <?, comment, and other literals as extending to EOB.
13682 * nxml/rng-valid.el (rng-mark-xmltok-dependent-regions)
13683 (rng-mark-xmltok-dependent-region, rng-dependent-region-changed):
13684 Remove functions.
13685 (rng-do-some-validation-1): Don't mark dependent regions.
13686 * nxml/nxml-rap.el (nxml-adjust-start-for-dependent-regions)
13687 (nxml-mark-parse-dependent-regions, nxml-mark-parse-dependent-region)
13688 (nxml-clear-dependent-regions): Remove functions.
13689 (nxml-scan-after-change, nxml-scan-prolog, nxml-tokenize-forward)
13690 (nxml-ensure-scan-up-to-date):
13691 Don't clear&mark dependent regions.
13692
13693 2013-05-15 Leo Liu <sdl.web@gmail.com>
13694
13695 * progmodes/octave.el (octave-goto-function-definition):
13696 Improve and fix callers.
13697
13698 2013-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
13699
13700 * emacs-lisp/cl-extra.el (cl-getf): Return the proper value in
13701 the setter (bug#14387).
13702
13703 * progmodes/f90.el (f90-blocks-re): Include the terminating \> in the
13704 surrounding group (bug#14402).
13705
13706 2013-05-14 Juri Linkov <juri@jurta.org>
13707
13708 * subr.el (find-tag-default-as-regexp): Return nil if `tag' is nil.
13709 (Bug#14390)
13710
13711 2013-05-14 Glenn Morris <rgm@gnu.org>
13712
13713 * progmodes/f90.el (f90-imenu-generic-expression):
13714 Fix typo in 2013-05-08 change. (Bug#14402)
13715
13716 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
13717
13718 * progmodes/gdb-mi.el (gdb-running, gdb-starting):
13719 Remove signals for which replies are never received.
13720
13721 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
13722
13723 * progmodes/gdb-mi.el: Fix non-responsive gud commands (bug#13845)
13724 (gdb-handler-alist, gdb-handler-number): Remove variables.
13725 (gdb-handler-list): New variable.
13726 (gdb-add-handler, gdb-delete-handler, gdb-get-handler-function)
13727 (gdb-pending-handler-p, gdb-handle-reply)
13728 (gdb-remove-all-pending-triggers): New functions.
13729 (gdb-discard-unordered-replies): New defcustom.
13730 (gdb-handler): New defstruct.
13731 (gdb-wait-for-pending): Fix invalid backquote. Use gdb-handler-list.
13732 instead of gdb-pending-triggers. Update docstring.
13733 (gdb-init-1): Remove dead variables. Initialize gdb-handler-list.
13734 (gdb-speedbar-update, gdb-speedbar-timer-fn, gdb-var-update)
13735 (gdb-var-update-handler, def-gdb-auto-update-trigger)
13736 (def-gdb-auto-update-handler, gdb-get-changed-registers)
13737 (gdb-changed-registers-handler, gdb-get-main-selected-frame)
13738 (gdb-frame-handler): Pending triggers are now automatically managed.
13739 (def-gdb-trigger-and-handler, def-gdb-auto-update-handler):
13740 Remove argument.
13741 (gdb-input): Automatically handles pending triggers. Update docstring.
13742 (gdb-resync): Replace gdb-pending-triggers by gdb-handler-list.
13743 (gdb-thread-exited, gdb-thread-selected, gdb-register-names-handler):
13744 Update comments.
13745 (gdb-done-or-error): Now use gdb-handle-reply.
13746
13747 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
13748
13749 * progmodes/gdb-mi.el (gdb-input): Include token numbers in
13750 gdb-debug-log.
13751
13752 2013-05-14 Glenn Morris <rgm@gnu.org>
13753
13754 * subr.el (user-emacs-directory-warning): New option.
13755 (locate-user-emacs-file): Handle non-accessible .emacs.d. (Bug#13930)
13756
13757 2013-05-14 Leo Liu <sdl.web@gmail.com>
13758
13759 * progmodes/octave.el (octave-font-lock-keywords): Fix error
13760 during redisplay.
13761 (octave-goto-function-definition, octave-find-definition): Minor tweaks.
13762 (octave-font-lock-texinfo-comment): Fix invalid search bound
13763 error: wrong side of point.
13764
13765 2013-05-14 Glenn Morris <rgm@gnu.org>
13766
13767 * progmodes/flymake.el (flymake-xml-program): New option.
13768 (flymake-xml-init): Use it.
13769
13770 * term/xterm.el: Provide a feature.
13771
13772 * term/sup-mouse.el: Move to obsolete/. Provide a feature.
13773
13774 2013-05-13 Glenn Morris <rgm@gnu.org>
13775
13776 * cus-dep.el (defcustom-mh, defgroup-mh, defface-mh):
13777 Add compat aliases as a hack workaround. (Bug#14384)
13778
13779 2013-05-13 Leo Liu <sdl.web@gmail.com>
13780
13781 * progmodes/octave.el (octave-indent-comment): Fix indentation for
13782 ###, and %!.
13783 (octave-mode-map): Bind octave-indent-defun to C-c C-q instead of
13784 C-M-q.
13785 (octave-comment-start-skip): Include %!.
13786 (octave-mode): Set comment-start-skip to octave-comment-start-skip.
13787
13788 2013-05-12 Leo Liu <sdl.web@gmail.com>
13789
13790 * progmodes/octave.el (inferior-octave-startup): Store the value
13791 of __octave_srcdir__ for octave-source-directories.
13792 (inferior-octave-check-process): New function refactored out of
13793 inferior-octave-send-list-and-digest.
13794 (octave-source-directories)
13795 (octave-find-definition-filename-function): New variables.
13796 (octave-source-directories)
13797 (octave-find-definition-default-filename): New functions.
13798 (octave-find-definition): Improve to find functions implemented in C++.
13799
13800 2013-05-12 Glenn Morris <rgm@gnu.org>
13801
13802 * calendar/diary-lib.el (diary-outlook-format-1):
13803 Don't include dayname in the output. (Bug#14349)
13804
13805 2013-05-11 Glenn Morris <rgm@gnu.org>
13806
13807 * emacs-lisp/autoload.el (generated-autoload-load-name): Doc fix.
13808
13809 * cus-dep.el (custom-make-dependencies): Only use safe local variables.
13810 Treat cc-provide like provide.
13811
13812 2013-05-11 Kevin Ryde <user42@zip.com.au>
13813
13814 * cus-dep.el (custom-make-dependencies):
13815 Use generated-autoload-load-name for the sake of files such
13816 such cedet/semantic/bovine/c.el, where the base file name
13817 is not in load-path. (Bug#5277)
13818
13819 2013-05-11 Glenn Morris <rgm@gnu.org>
13820
13821 * dos-vars.el, emacs-lisp/cl-indent.el, emulation/tpu-extras.el:
13822 Provide features.
13823
13824 2013-05-11 Leo Liu <sdl.web@gmail.com>
13825
13826 * progmodes/octave.el (octave-indent-comment): Improve.
13827 (octave-eldoc-message-style, octave-eldoc-cache): New variables.
13828 (octave-eldoc-function-signatures, octave-eldoc-function):
13829 New functions.
13830 (octave-mode, inferior-octave-mode): Add eldoc support.
13831
13832 2013-05-11 Richard Stallman <rms@gnu.org>
13833
13834 * epa.el (epa-decrypt-file): Take output file name as argument
13835 and read it using `interactive'.
13836
13837 2013-05-11 Leo Liu <sdl.web@gmail.com>
13838
13839 * progmodes/octave.el (octave-beginning-of-line)
13840 (octave-end-of-line): Check before using up-list because it jumps
13841 out of more syntactic contructs since moving to smie.
13842 (octave-indent-comment): New function.
13843 (octave-mode): Use it in smie-indent-functions. (Bug#14350)
13844 (octave-begin-keywords, octave-end-keywords)
13845 (octave-reserved-words, octave-smie-bnf-table)
13846 (octave-smie-rules): Add new keywords from Octave 3.6.4.
13847
13848 2013-05-11 Glenn Morris <rgm@gnu.org>
13849
13850 * faces.el (internal-face-x-get-resource):
13851 * frame.el (ns-display-monitor-attributes-list):
13852 * calc/calc-aent.el (math-to-radians-2):
13853 * emacs-lisp/package.el (tar-header-name, tar-header-link-type):
13854 Fix declarations.
13855
13856 * calc/calc-menu.el: Make it loadable in isolation.
13857
13858 * net/eudcb-bbdb.el: Make it loadable without bbdb.
13859 (eudc-bbdb-filter-non-matching-record, eudc-bbdb-extract-phones)
13860 (eudc-bbdb-extract-addresses, eudc-bbdb-format-record-as-result)
13861 (eudc-bbdb-query-internal): Require 'bbdb.
13862
13863 * lpr.el (lpr-headers-switches):
13864 * emacs-lisp/testcover.el (testcover-compose-functions): Fix :type.
13865
13866 * progmodes/sql.el (sql-login-params): Fix and improve :type.
13867
13868 * emulation/edt-mapper.el: In batch mode, error rather than hang.
13869
13870 * term.el (term-set-escape-char): Make it idempotent.
13871
13872 2013-05-10 Leo Liu <sdl.web@gmail.com>
13873
13874 * progmodes/octave.el (inferior-octave-completion-table):
13875 No longer a function and all uses changed. Use cache to speed up
13876 completion due to bug#11906.
13877 (octave-beginning-of-defun): Re-write to be more general.
13878
13879 2013-05-10 Glenn Morris <rgm@gnu.org>
13880
13881 * emacs-lisp/cl-macs.el (cl-loop): Doc fix.
13882
13883 2013-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
13884
13885 * comint.el (comint-redirect-send-command-to-process): Use :around
13886 rather than :override for comint-redirect-filter.
13887 (comint-redirect-filter): Add the corresponding `orig-filter' argument.
13888 Call it instead of comint-redirect-original-filter-function (which
13889 is gone). Reported by Juanma Barranquero <lekktu@gmail.com>.
13890
13891 2013-05-09 Jan Djärv <jan.h.d@swipnet.se>
13892
13893 * frame.el (display-monitor-attributes-list): Add NS case.
13894 (ns-display-monitor-attributes-list): Declare.
13895
13896 2013-05-09 Ulrich Mueller <ulm@gentoo.org>
13897
13898 * descr-text.el (describe-char): Fix %d/%x typo. (Bug#14360)
13899
13900 2013-05-09 Glenn Morris <rgm@gnu.org>
13901
13902 * international/fontset.el (vertical-centering-font-regexp):
13903 Set standard-value.
13904
13905 * tar-mode.el (tar-superior-buffer, tar-superior-descriptor): Add doc.
13906
13907 * bookmark.el (bookmark-search-delay):
13908 * cus-start.el (vertical-centering-font-regexp):
13909 * ps-mule.el (ps-mule-font-info-database-default):
13910 * ps-print.el (ps-default-fg, ps-default-bg):
13911 * type-break.el (type-break-good-break-interval):
13912 * whitespace.el (whitespace-indentation-regexp)
13913 (whitespace-space-after-tab-regexp):
13914 * emacs-lisp/testcover.el (testcover-1value-functions)
13915 (testcover-noreturn-functions, testcover-progn-functions)
13916 (testcover-prog1-functions):
13917 * emulation/viper-init.el (viper-emacs-state-cursor-color):
13918 * eshell/em-glob.el (eshell-glob-translate-alist):
13919 * play/tetris.el (tetris-tty-colors):
13920 * progmodes/cpp.el (cpp-face-default-list):
13921 * progmodes/flymake.el (flymake-allowed-file-name-masks):
13922 * progmodes/idlw-help.el (idlwave-help-browser-generic-program)
13923 (idlwave-help-browser-generic-args):
13924 * progmodes/make-mode.el (makefile-special-targets-list):
13925 * progmodes/python.el (python-shell-virtualenv-path):
13926 * progmodes/verilog-mode.el (verilog-active-low-regexp)
13927 (verilog-auto-input-ignore-regexp, verilog-auto-inout-ignore-regexp)
13928 (verilog-auto-output-ignore-regexp, verilog-auto-tieoff-ignore-regexp)
13929 (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp):
13930 * textmodes/reftex-vars.el (reftex-format-label-function):
13931 * textmodes/remember.el (remember-diary-file): Fix custom types.
13932
13933 * jka-cmpr-hook.el (jka-compr-mode-alist-additions): Fix typo.
13934 Add :version.
13935
13936 2013-05-09 Leo Liu <sdl.web@gmail.com>
13937
13938 * progmodes/octave.el (inferior-octave-completion-at-point):
13939 Restore file completion. (Bug#14300)
13940 (inferior-octave-startup): Fix incorrect highlighting for the
13941 first prompt.
13942
13943 2013-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
13944
13945 * progmodes/ruby-mode.el: First cut at SMIE support.
13946 (ruby-use-smie): New var.
13947 (ruby-smie-grammar): New constant.
13948 (ruby-smie--bosp, ruby-smie--implicit-semi-p)
13949 (ruby-smie--forward-token, ruby-smie--backward-token)
13950 (ruby-smie-rules): New functions.
13951 (ruby-mode-variables): Setup SMIE if applicable.
13952
13953 2013-05-08 Eli Zaretskii <eliz@gnu.org>
13954
13955 * simple.el (line-move-visual): Signal beginning/end of buffer
13956 only if vertical-motion moved less than it was requested. Avoids
13957 silly incorrect error messages when there are display strings with
13958 multiple newlines at EOL.
13959
13960 2013-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
13961
13962 * progmodes/vera-mode.el (vera-underscore-is-part-of-word):
13963 * progmodes/prolog.el (prolog-underscore-wordchar-flag)
13964 (prolog-char-quote-workaround):
13965 * progmodes/cperl-mode.el (cperl-under-as-char):
13966 * progmodes/vhdl-mode.el (vhdl-underscore-is-part-of-word):
13967 Mark as obsolete.
13968 (vhdl-mode-syntax-table, vhdl-mode-ext-syntax-table): Initialize in
13969 their declaration.
13970 (vhdl-mode-syntax-table-init): Remove.
13971
13972 * progmodes/m4-mode.el (m4-mode-syntax-table): Add comment on
13973 last change.
13974
13975 * progmodes/ld-script.el (ld-script-mode-syntax-table): Use symbol
13976 syntax for "_".
13977 (ld-script-font-lock-keywords):
13978 Change regexps to use things like \_< and \_>.
13979
13980 * progmodes/f90.el (f90-mode-syntax-table): Use symbol syntax for "_".
13981 Change all regexps to use things like \_< and \_>.
13982
13983 * progmodes/autoconf.el (autoconf-definition-regexp)
13984 (autoconf-font-lock-keywords, autoconf-current-defun-function):
13985 Handle a _ with symbol syntax.
13986 (autoconf-mode): Don't change the syntax-table for imenu and font-lock.
13987
13988 * progmodes/ada-mode.el (ada-mode-abbrev-table):
13989 Consolidate declaration.
13990 (ada-mode-syntax-table, ada-mode-symbol-syntax-table): Initialize in
13991 the declaration.
13992 (ada-create-syntax-table): Remove.
13993 (ada-capitalize-word): Don't mess with the syntax of "_" since it
13994 already has the right syntax nowadays.
13995 (ada-goto-next-word): Don't change the syntax of "_".
13996
13997 * font-lock.el (lisp-font-lock-keywords-2): Don't highlight obsolete
13998 with-wrapper-hook.
13999
14000 2013-05-08 Sam Steingold <sds@gnu.org>
14001
14002 * thingatpt.el (thing-at-point): Accept optional second argument
14003 NO-PROPERTIES to strip the text properties from the return value.
14004 * net/browse-url.el (browse-url-url-at-point): Pass NO-PROPERTIES
14005 to `thing-at-point' instead of stripping the properties ourselves.
14006 Also, when `thing-at-point' fails to find a url, prepend "http://"
14007 to the filename at point on the assumption that the user is
14008 pointing at something like gnu.org/gnu.
14009
14010 2013-05-08 Juanma Barranquero <lekktu@gmail.com>
14011
14012 * emacs-lisp/bytecomp.el (byte-compile-insert-header):
14013 * faces.el (crm-separator):
14014 Silence byte-compiler.
14015
14016 * progmodes/gud.el (gdb-speedbar-auto-raise, gud-tooltip-mode)
14017 (tool-bar-map): Remove unneeded defvars.
14018
14019 2013-05-08 Leo Liu <sdl.web@gmail.com>
14020
14021 Re-work a fix for bug#10994 based on Le Wang's patch.
14022 * ido.el (ido-remove-consecutive-dups): New helper.
14023 (ido-completing-read): Use it.
14024 (ido-chop): Revert fix for bug#10994.
14025
14026 2013-05-08 Adam Spiers <emacs@adamspiers.org>
14027
14028 * cus-edit.el (custom-save-variables):
14029 Pretty-print long values. (Bug#14187)
14030
14031 2013-05-08 Glenn Morris <rgm@gnu.org>
14032
14033 * progmodes/m4-mode.el (m4-program): Assume it is in PATH.
14034 (m4-mode-syntax-table): Init in the defvar.
14035 (m4-mode-abbrev-table): Let define-derived-mode define it.
14036
14037 2013-05-08 Tom Tromey <tromey@redhat.com>
14038
14039 * progmodes/m4-mode.el (m4-mode-syntax-table):
14040 Do not treat "_" as word constituent. (Bug#14167)
14041
14042 2013-05-07 Glenn Morris <rgm@gnu.org>
14043
14044 * eshell/em-hist.el (eshell-isearch-map): Initialize in the defvar.
14045 Remove explicit eshell-isearch-cancel-map.
14046
14047 * progmodes/f90.el (f90-smart-end-names): New option.
14048 (f90-smart-end): Doc fix.
14049 (f90-end-block-optional-name): New constant.
14050 (f90-block-match): Respect f90-smart-end-names.
14051
14052 2013-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
14053
14054 * progmodes/octave.el (octave-smie-forward-token): Be more careful
14055 about implicit semi-colons (bug#14218).
14056
14057 2013-05-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14058
14059 * frame.el (display-monitor-attributes-list)
14060 (frame-monitor-attributes): New functions.
14061
14062 2013-05-06 Leo Liu <sdl.web@gmail.com>
14063
14064 * progmodes/octave.el (octave-syntax-propertize-function): Change
14065 \'s syntax to escape when inside double-quoted strings. (Bug#14332)
14066 (octave-font-lock-keywords): Use octave-operator-regexp.
14067 (octave-completion-at-point): Rename from
14068 octave-completion-at-point-function.
14069 (inferior-octave-directory-tracker): Robustify.
14070 (octave-text-functions): Remove and fix its uses. No such things
14071 any more.
14072
14073 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
14074
14075 * emacs-lisp/trace.el (trace--display-buffer): New function.
14076 (trace-make-advice): Use it.
14077
14078 2013-05-06 Juri Linkov <juri@jurta.org>
14079
14080 * emacs-lisp/lisp-mode.el (eval-defun-2): Doc fix. (Bug#14344)
14081 (eval-defun-2, eval-defun, eval-last-sexp, eval-last-sexp-1):
14082 Doc fix.
14083 (emacs-lisp-mode-map): Replace "minibuffer" with "echo area"
14084 in the help string. (Bug#12985)
14085
14086 2013-05-06 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
14087
14088 * simple.el (shell-command-on-region): Doc fix. (Bug#14279)
14089
14090 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
14091
14092 * progmodes/perl-mode.el: Add support for here documents.
14093 (perl-syntax-propertize-function): Match here-doc markers.
14094 (perl-syntax-propertize-special-constructs): Find their end.
14095 (perl-imenu-generic-expression): Use [:alnum:].
14096
14097 * emacs-lisp/nadvice.el (advice--member-p): Return the advice if found.
14098 (advice--add-function): Refresh the advice if already present
14099 (bug#14317).
14100
14101 2013-05-06 Ivan Andrus <darthandrus@gmail.com>
14102
14103 * find-file.el (cc-other-file-alist): Add ".m" for ObjC. (Bug#14339)
14104
14105 2013-05-06 Glenn Morris <rgm@gnu.org>
14106
14107 * w32-fns.el (w32-charset-info-alist): Declare.
14108
14109 * eshell/em-cmpl.el: Simply require pcomplete; eg we use a bunch
14110 of its defcustom properties.
14111 (eshell-cmpl-initialize): No need to load pcomplete.
14112
14113 * generic-x.el: No need to require comint when compiling.
14114
14115 * net/eudc-export.el: Make it loadable without bbdb.
14116 (top-level): Use require rather than load-library.
14117 (eudc-create-bbdb-record, eudc-bbdbify-phone)
14118 (eudc-batch-export-records-to-bbdb)
14119 (eudc-insert-record-at-point-into-bbdb, eudc-try-bbdb-insert):
14120 Require bbdb.
14121
14122 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
14123
14124 * progmodes/octave.el (octave-texinfo-font-lock-keywords): Remove.
14125 (octave-font-lock-texinfo-comment): Use texinfo-font-lock-keywords with
14126 some tweaks, instead.
14127
14128 2013-05-05 Leo Liu <sdl.web@gmail.com>
14129
14130 * progmodes/octave.el (octave-font-lock-keywords)
14131 (octave-font-lock-texinfo-comment): Adjust for the byte-compiler.
14132 (inferior-octave-send-list-and-digest): Improve error message.
14133 (octave-mode, inferior-octave-mode): Use setq-local.
14134 (octave-help): Set info-lookup-mode.
14135
14136 2013-05-05 Richard Stallman <rms@gnu.org>
14137
14138 * vc/compare-w.el (compare-windows-whitespace):
14139 Treat no-break space as whitespace.
14140
14141 * mail/rmailsum.el (rmail-summary-rmail-update):
14142 Detect empty summary and don't change selected message.
14143 (rmail-summary-goto-msg): Likewise.
14144
14145 * mail/rmailsum.el (rmail-new-summary, rmail-new-summary-1):
14146 Doc fixes, rename args.
14147
14148 2013-05-05 Alan Mackenzie <acm@muc.de>
14149
14150 * progmodes/cc-defs.el (c-version): Increment to 5.32.5.
14151
14152 2013-05-05 Juri Linkov <juri@jurta.org>
14153
14154 * info.el (Info-read-subfile): Use (point-min) instead of (point)
14155 to not add the length of the summary segment to the return value.
14156 (Bug#14125)
14157
14158 2013-05-05 Leo Liu <sdl.web@gmail.com>
14159
14160 * progmodes/octave.el (inferior-octave-strip-ctrl-g)
14161 (inferior-octave-output-filter): Remove.
14162 (octave-send-region, inferior-octave-startup): Fix callers.
14163 (inferior-octave-mode-map): Don't use comint-dynamic-complete.
14164 (octave-binary-file-extensions): New user variable.
14165 (octave-find-definition): Confirm if opening binary files.
14166 (octave-help-file): Use octave-find-definition to get the binary
14167 confirmation.
14168 (octave-help): Adjust for octave-help-file change.
14169
14170 2013-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
14171
14172 * progmodes/pascal.el (pascal-font-lock-keywords): Use backquotes.
14173 Merge the two entries that handle function definitions.
14174 (pascal--syntax-propertize): New const.
14175 (pascal-mode): Use it. Use setq-local.
14176
14177 2013-05-04 Glenn Morris <rgm@gnu.org>
14178
14179 * calendar/diary-lib.el (diary-from-outlook-function): New variable.
14180 (diary-from-outlook): Respect diary-from-outlook-function.
14181
14182 2013-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
14183
14184 * simple.el (read-expression-map): Use completion-at-point (bug#14255).
14185 Move the declaration from C.
14186 (read-minibuffer, eval-minibuffer): Move from C.
14187 (completion-setup-function): Avoid minibuffer-completion-contents.
14188
14189 2013-05-03 Leo Liu <sdl.web@gmail.com>
14190
14191 * progmodes/octave.el (octave-font-lock-keywords): Do not
14192 dehighlight 'end' in comments or strings.
14193 (octave-completing-read, octave-goto-function-definition):
14194 New helpers.
14195 (octave-help-buffer): New user variable.
14196 (octave-help-file, octave-help-function): New button types.
14197 (octave-help): New command and bind it to C-h ;.
14198 (octave-find-definition): New command and bind it to M-.
14199 (user-error): Alias to error if not defined.
14200
14201 2013-05-02 Leo Liu <sdl.web@gmail.com>
14202
14203 * progmodes/octave.el (octave-mode-syntax-table): Correct syntax
14204 for \. (bug#14332)
14205 (octave-font-lock-keywords): Include [ and {.
14206
14207 2013-05-02 Leo Liu <sdl.web@gmail.com>
14208
14209 * progmodes/octave.el (inferior-octave-startup-file): Change default.
14210 (inferior-octave): Remove calling comint-mode and return the buffer.
14211 (inferior-octave-startup): Cosmetic changes.
14212
14213 2013-05-02 Leo Liu <sdl.web@gmail.com>
14214
14215 * progmodes/octave.el (octave-syntax-propertize-function):
14216 Include the case when ' is at line beginning. (Bug#14336)
14217
14218 2013-05-02 Glenn Morris <rgm@gnu.org>
14219
14220 * vc/vc-dir.el (vc-dir-mode): Don't autoload it for everyone.
14221 * desktop.el (vc-dir-mode): Just autoload it here.
14222
14223 2013-05-02 Alan Mackenzie <acm@muc.de>
14224
14225 Eliminate variable c-standard-font-lock-fontify-region-function.
14226 * progmodes/cc-mode.el
14227 (c-standard-font-lock-fontify-region-function): Remove.
14228 (c-font-lock-fontify-region, c-after-font-lock-init): Adapt.
14229
14230 2013-05-01 Leo Liu <sdl.web@gmail.com>
14231
14232 * progmodes/octave.el: Compatible with older emacs-24 releases.
14233 (inferior-octave-has-built-in-variables): Remove. Built-in
14234 variables were removed from Octave in 2007.
14235 (inferior-octave-startup): Fix uses.
14236 (comint-line-beginning-position): Remove compatibility code for
14237 emacs 21.
14238
14239 2013-05-01 Juri Linkov <juri@jurta.org>
14240
14241 * isearch.el (isearch-forward, isearch-mode): Doc fix. (Bug#13923)
14242
14243 2013-05-01 Juri Linkov <juri@jurta.org>
14244
14245 * comint.el (comint-previous-matching-input): Don't print message
14246 "History item: %d" when `isearch-mode' is active.
14247 (comint-history-isearch-message): Print message "History item: %d"
14248 when `comint-input-ring-index' is not empty and this function is
14249 called from `isearch-update' with a nil `ellipsis'. (Bug#13223)
14250
14251 2013-05-01 Leo Liu <sdl.web@gmail.com>
14252
14253 * progmodes/octave.el (octave-abbrev-table): Remove abbrev
14254 definitions. Use completion-at-point to insert keywords.
14255 (octave-abbrev-start): Remove.
14256 (inferior-octave-mode, octave-mode): Use :abbrev-table instead.
14257
14258 2013-04-30 Leo Liu <sdl.web@gmail.com>
14259
14260 * progmodes/octave.el (inferior-octave-prompt-read-only): Fix last
14261 change.
14262
14263 2013-04-30 Alan Mackenzie <acm@muc.de>
14264
14265 Handle arbitrarily long C++ member initialisation lists.
14266 * progmodes/cc-engine.el (c-back-over-member-initializers):
14267 new function.
14268 (c-guess-basic-syntax): New CASE 5R (extracted from 5B) to handle
14269 (most) member init lists.
14270
14271 2013-04-30 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
14272
14273 * progmodes/octave.el (inferior-octave-prompt-read-only): New user
14274 variable.
14275
14276 2013-04-30 Leo Liu <sdl.web@gmail.com>
14277
14278 * progmodes/octave.el (octave-variables): Remove. No builtin
14279 variables any more. All converted to functions.
14280 (octave-font-lock-keywords, octave-completion-at-point-function):
14281 Fix uses.
14282 (octave-font-lock-texinfo-comment): New user variable.
14283 (octave-texinfo-font-lock-keywords): New variable for texinfo
14284 comment block.
14285 (octave-function-comment-block): New face.
14286 (octave-font-lock-texinfo-comment): New function.
14287 (octave-mode): Font lock texinfo comment block.
14288
14289 2013-04-29 Leo Liu <sdl.web@gmail.com>
14290
14291 * progmodes/octave.el (octave-font-lock-keywords): Handle 'end' in
14292 indexing expression.
14293 (octave-continuation-string): Do not use \.
14294 (inferior-octave-complete-impossible): Remove.
14295 (inferior-octave-completion-table)
14296 (inferior-octave-completion-at-point): Remove its uses.
14297 (inferior-octave-startup): completion_matches was introduced to
14298 Octave in 1996 so safe to assume it.
14299 (octave-function-file-comment): Improve to follow how Octave does it.
14300 (octave-update-function-file-comment): Tweak.
14301
14302 2013-04-29 Leo Liu <sdl.web@gmail.com>
14303
14304 * progmodes/octave.el (inferior-octave-startup-hook): Obsolete.
14305 (inferior-octave-startup): Remove inferior-octave-startup-hook.
14306 (octave-function-file-comment): Fix typo.
14307 (octave-sync-function-file-names): Use read-char-choice.
14308
14309 2013-04-28 Jay Belanger <jay.p.belanger@gmail.com>
14310
14311 * calc/calc.el (math-normalize): Don't set `math-normalize-error'
14312 to t for the less important warnings.
14313
14314 2013-04-27 Darren Hoo <darren.hoo@gmail.com> (tiny change)
14315
14316 * isearch.el (isearch-fail-pos): Check for empty `cmds'. (Bug#14268)
14317
14318 2013-04-27 Glenn Morris <rgm@gnu.org>
14319
14320 * vc/log-view.el (log-view-current-entry):
14321 Treat "---" separator lines as part of the following rev. (Bug#14169)
14322
14323 2013-04-27 Juri Linkov <juri@jurta.org>
14324
14325 * subr.el (read-number): Doc fix about using it by interactive
14326 code letter `n'. (Bug#14254)
14327
14328 2013-04-27 Juri Linkov <juri@jurta.org>
14329
14330 * desktop.el (desktop-auto-save-timeout): New option.
14331 (desktop-file-checksum): New variable.
14332 (desktop-save): Add optional arg `auto-save' and don't auto-save
14333 if nothing changed.
14334 (desktop-auto-save-timer): New variable.
14335 (desktop-auto-save, desktop-auto-save-set-timer): New functions.
14336 (after-init-hook): Call `desktop-auto-save-set-timer'.
14337 Suggested by Reuben Thomas <rrt@sc3d.org> in
14338 <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00327.html>.
14339
14340 2013-04-27 Leo Liu <sdl.web@gmail.com>
14341
14342 * progmodes/octave.el (octave-function-file-p)
14343 (octave-skip-comment-forward, octave-function-file-comment)
14344 (octave-update-function-file-comment): New functions.
14345 (octave-mode-map): Bind C-c ; to
14346 octave-update-function-file-comment.
14347 (octave-mode-menu): Add octave-update-function-file-comment.
14348 (octave-mode, inferior-octave-mode): Fix doc-string.
14349 (octave-insert-defun): Conform to Octave's coding convention.
14350 (Bug#14285)
14351
14352 * files.el (basic-save-buffer): Don't let errors in
14353 before-save-hook prevent saving buffer.
14354
14355 2013-04-20 Roland Winkler <winkler@gnu.org>
14356
14357 * faces.el (read-face-name): Use completing-read if arg multiple
14358 is nil.
14359
14360 2013-04-27 Ingo Lohmar <i.lohmar@gmail.com> (tiny change)
14361
14362 * ls-lisp.el (ls-lisp-insert-directory): If no files are
14363 displayed, move point to after the totals line.
14364 See http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00677.html
14365 for the details.
14366
14367 2013-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
14368
14369 * emacs-lisp/package.el (package-autoload-ensure-default-file):
14370 Add current dir to the load-path.
14371 (package-generate-autoloads): Don't rely on
14372 autoload-ensure-default-file.
14373
14374 2013-04-26 Reuben Thomas <rrt@sc3d.org>
14375
14376 * textmodes/remember.el (remember-store-in-files): Document that
14377 the file name format is passed to `format-time-string'.
14378
14379 2013-04-26 Leo Liu <sdl.web@gmail.com>
14380
14381 * progmodes/octave.el (octave-sync-function-file-names): New function.
14382 (octave-mode): Use it in before-save-hook.
14383
14384 2013-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
14385
14386 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Disable undo
14387 (bug#14274).
14388
14389 * progmodes/octave.el (octave-smie-forward-token): Properly skip
14390 \n and comment, even if it's not an implicit ; (bug#14218).
14391
14392 2013-04-26 Glenn Morris <rgm@gnu.org>
14393
14394 * subr.el (read-number): Once more use `read' rather than
14395 `string-to-number', to trap non-numeric input. (Bug#14254)
14396
14397 2013-04-26 Erik Charlebois <erikcharlebois@gmail.com>
14398
14399 * emacs-lisp/syntax.el (syntax-propertize-multiline):
14400 Use `syntax-multiline' text property consistently instead of
14401 `font-lock-multiline'. (Bug#14237)
14402
14403 2013-04-26 Glenn Morris <rgm@gnu.org>
14404
14405 * emacs-lisp/shadow.el (list-load-path-shadows):
14406 No longer necessary to check for duplicate simple.el, since
14407 2012-07-07 change to init_lread to not include installation lisp
14408 directories in load-path when running uninstalled. (Bug#14270)
14409
14410 2013-04-26 Leo Liu <sdl.web@gmail.com>
14411
14412 * progmodes/octave.el (octave-submit-bug-report): Obsolete.
14413 (octave-mode, inferior-octave-mode): Use setq-local.
14414 (octave-not-in-string-or-comment-p): Rename to
14415 octave-in-string-or-comment-p.
14416 (octave-in-comment-p, octave-in-string-p)
14417 (octave-in-string-or-comment-p): Replace defsubst with defun.
14418
14419 2013-04-25 Paul Eggert <eggert@cs.ucla.edu>
14420
14421 * Makefile.in (distclean): Remove $(lisp)/loaddefs.el~.
14422
14423 2013-04-25 Bastien Guerry <bzg@gnu.org>
14424
14425 * textmodes/remember.el (remember-data-directory)
14426 (remember-directory-file-name-format): Fix custom types.
14427
14428 2013-04-25 Leo Liu <sdl.web@gmail.com>
14429
14430 * progmodes/octave.el (octave-completion-at-point-function):
14431 Make use of inferior octave process.
14432 (octave-initialize-completions): Remove.
14433 (inferior-octave-completion-table): New function.
14434 (inferior-octave-completion-at-point): Use it.
14435 (octave-completion-alist): Remove.
14436
14437 2013-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
14438
14439 * progmodes/opascal.el: Use font-lock and syntax-propertize.
14440 (opascal-mode-syntax-table): New var.
14441 (opascal-literal-kind, opascal-is-literal-end)
14442 (opascal-literal-token-at): Rewrite.
14443 (opascal--literal-start-re, opascal-font-lock-keywords)
14444 (opascal--syntax-propertize): New constants.
14445 (opascal-font-lock-defaults): Adjust.
14446 (opascal-mode): Use them. Set comment-<foo> variables as well.
14447 (delphi-comment-face, opascal-comment-face, delphi-string-face)
14448 (opascal-string-face, delphi-keyword-face, opascal-keyword-face)
14449 (delphi-other-face, opascal-other-face): Remove face variables.
14450 (opascal-save-state): Remove macro.
14451 (opascal-fontifying-progress-step): Remove constant.
14452 (opascal--ignore-changes): Remove var.
14453 (opascal-set-token-property, opascal-parse-next-literal)
14454 (opascal-is-stable-literal, opascal-complete-literal)
14455 (opascal-is-literal-start, opascal-face-of)
14456 (opascal-parse-region, opascal-parse-region-until-stable)
14457 (opascal-fontify-region, opascal-after-change)
14458 (opascal-debug-show-is-stable, opascal-debug-unparse-buffer)
14459 (opascal-debug-parse-region, opascal-debug-parse-window)
14460 (opascal-debug-parse-buffer, opascal-debug-fontify-window)
14461 (opascal-debug-fontify-buffer): Remove.
14462 (opascal-debug-mode-map): Adjust accordingly.
14463
14464 2013-04-25 Leo Liu <sdl.web@gmail.com>
14465
14466 Merge octave-mod.el and octave-inf.el into octave.el with some
14467 cleanups.
14468 * progmodes/octave.el: New file renamed from octave-mod.el.
14469 * progmodes/octave-inf.el: Merged into octave.el.
14470 * progmodes/octave-mod.el: Renamed to octave.el.
14471
14472 2013-04-25 Tassilo Horn <tsdh@gnu.org>
14473
14474 * textmodes/reftex-vars.el
14475 (reftex-label-ignored-macros-and-environments): New defcustom.
14476
14477 * textmodes/reftex-parse.el (reftex-parse-from-file): Use it.
14478
14479 2013-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
14480
14481 * emacs-lisp/smie.el (smie-indent--hanging-p): Don't burp at EOB.
14482 (smie-indent-keyword): Improve the check to ensure that the next
14483 comment is really on the same line.
14484 (smie-indent-comment): Don't align with a subsequent closer (or eob).
14485
14486 * progmodes/octave-mod.el (octave-smie-forward-token): Only emit
14487 semi-colons if the line is not otherwise empty (bug#14218).
14488
14489 2013-04-25 Glenn Morris <rgm@gnu.org>
14490
14491 * vc/vc-bzr.el (vc-bzr-print-log): Tweak LIMIT = 1 case.
14492
14493 2013-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
14494
14495 * progmodes/opascal.el (opascal-set-token-property): Rename from
14496 opascal-set-text-properties and only set `token' (bug#14134).
14497 Suggested by Erik Knowles <eknowles@geosystemsoftware.com>.
14498 (opascal-literal-text-properties): Remove.
14499 (opascal-parse-next-literal, opascal-debug-unparse-buffer):
14500 Adjust callers.
14501
14502 2013-04-24 Reuben Thomas <rrt@sc3d.org>
14503
14504 * textmodes/remember.el (remember-handler-functions): Add an
14505 option for a new handler `remember-store-in-files'.
14506 (remember-data-directory, remember-directory-file-name-format):
14507 New options.
14508 (remember-store-in-files): New function to store remember notes
14509 as separate files within a directory.
14510
14511 2013-04-24 Magnus Henoch <magnus.henoch@gmail.com>
14512
14513 * progmodes/compile.el (compilation-next-error-function):
14514 Pass "formats" to compilation-find-file (bug#11777).
14515
14516 2013-04-24 Glenn Morris <rgm@gnu.org>
14517
14518 * vc/vc-bzr.el (vc-bzr-print-log):
14519 * vc/vc-hg.el (vc-hg-print-log):
14520 * vc/vc-svn.el (vc-svn-print-log):
14521 Fix START-REVISION with LIMIT != 1. (Bug#14168)
14522
14523 * vc/vc-bzr.el (vc-bzr-print-log):
14524 * vc/vc-cvs.el (vc-cvs-print-log):
14525 * vc/vc-git.el (vc-git-print-log):
14526 * vc/vc-hg.el (vc-hg-print-log):
14527 * vc/vc-mtn.el (vc-mtn-print-log):
14528 * vc/vc-rcs.el (vc-rcs-print-log):
14529 * vc/vc-sccs.el (vc-sccs-print-log):
14530 * vc/vc-svn.el (vc-svn-print-log):
14531 * vc/vc.el (vc-print-log-internal): Doc fixes.
14532
14533 2013-04-23 Glenn Morris <rgm@gnu.org>
14534
14535 * startup.el (normal-no-mouse-startup-screen, normal-about-screen):
14536 Remove venerable code attempting to avoid substitute-command-keys.
14537
14538 2013-04-23 Tassilo Horn <tsdh@gnu.org>
14539
14540 * textmodes/reftex-vars.el (reftex-label-regexps):
14541 Call `reftex-compile-variables' after changes to this variable.
14542
14543 2013-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
14544
14545 * jit-lock.el: Fix signals in jit-lock-force-redisplay (bug#13542).
14546 Use lexical-binding.
14547 (jit-lock-force-redisplay): Use markers, check buffer's continued
14548 existence and beware narrowed buffers.
14549 (jit-lock-fontify-now): Adjust call accordingly.
14550
14551 2013-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
14552
14553 * minibuffer.el (minibuffer-completion-contents): Fix obsolescence info
14554 to avoid misleading the user.
14555
14556 2013-04-22 Leo Liu <sdl.web@gmail.com>
14557
14558 * info-look.el: Prefer latex2e.info. (Bug#14240)
14559
14560 2013-04-22 Michael Albinus <michael.albinus@gmx.de>
14561
14562 Fix pack/unpack coding. Reported by David Smith <davidsmith@acm.org>.
14563
14564 * net/tramp-compat.el (tramp-compat-call-process): Move function ...
14565 * net/tramp.el (tramp-call-process): ... here.
14566 (tramp-set-completion-function, tramp-parse-putty):
14567 * net/tramp-adb.el (tramp-adb-execute-adb-command):
14568 * net/tramp-gvfs.el (tramp-gvfs-send-command):
14569 * net/tramp-sh.el (tramp-sh-handle-set-file-times)
14570 (tramp-set-file-uid-gid, tramp-sh-handle-write-region)
14571 (tramp-call-local-coding-command): Use `tramp-call-process'
14572 instead of `tramp-compat-call-process'.
14573
14574 * net/tramp-sh.el (tramp-perl-pack, tramp-perl-unpack): New defconst.
14575 (tramp-local-coding-commands, tramp-remote-coding-commands): Use them.
14576 (tramp-sh-handle-file-local-copy, tramp-sh-handle-write-region)
14577 (tramp-find-inline-compress): Improve traces.
14578 (tramp-maybe-send-script): Check for Perl binary.
14579 (tramp-get-inline-coding): Do not redirect STDOUT for local decoding.
14580
14581 2013-04-22 Daiki Ueno <ueno@gnu.org>
14582
14583 * epg.el (epg-context-pinentry-mode): New function.
14584 (epg-context-set-pinentry-mode): New function.
14585 (epg--start): Pass --pinentry-mode option to gpg command.
14586
14587 2013-04-21 Xue Fuqiao <xfq.free@gmail.com>
14588
14589 * comint.el (comint-dynamic-complete-functions, comint-mode-map):
14590 `comint-dynamic-complete' is obsolete since 24.1, replaced by
14591 `completion-at-point'. (Bug#13774)
14592
14593 * startup.el (normal-no-mouse-startup-screen): Bug fix, the
14594 default key binding for `describe-distribution' has been moved to
14595 `C-h C-o'. (Bug#13970)
14596
14597 2013-04-21 Glenn Morris <rgm@gnu.org>
14598
14599 * vc/vc.el (vc-print-log-setup-buttons, vc-print-log-internal):
14600 Add doc strings.
14601 (vc-print-log): Clarify interactive prompt.
14602
14603 2013-04-20 Glenn Morris <rgm@gnu.org>
14604
14605 * emacs-lisp/bytecomp.el (byte-compile-insert-header):
14606 No longer include timestamp etc information.
14607
14608 2013-04-20 Roland Winkler <winkler@gnu.org>
14609
14610 * faces.el (read-face-name): Bug fix, return just one face if arg
14611 multiple is nil. (Bug#14209)
14612
14613 2013-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
14614
14615 * emacs-lisp/nadvice.el (advice--where-alist): Add :override.
14616 (remove-function): Autoload.
14617
14618 * comint.el (comint-redirect-original-filter-function): Remove.
14619 (comint-redirect-cleanup, comint-redirect-send-command-to-process):
14620 * vc/vc-cvs.el (vc-cvs-annotate-process-filter)
14621 (vc-cvs-annotate-command):
14622 * progmodes/octave-inf.el (inferior-octave-send-list-and-digest):
14623 * progmodes/prolog.el (prolog-consult-compile):
14624 * progmodes/gdb-mi.el (gdb, gdb--check-interpreter):
14625 Use add/remove-function instead.
14626 * progmodes/gud.el (gud-tooltip-original-filter): Remove.
14627 (gud-tooltip-process-output, gud-tooltip-tips):
14628 Use add/remove-function instead.
14629 * progmodes/xscheme.el (xscheme-previous-process-state): Remove.
14630 (scheme-interaction-mode, exit-scheme-interaction-mode):
14631 Use add/remove-function instead.
14632
14633 * vc/vc-dispatcher.el: Use lexical-binding.
14634 (vc--process-sentinel): Rename from vc-process-sentinel.
14635 Change last arg to be the code to run. Don't use vc-previous-sentinel
14636 and vc-sentinel-commands any more.
14637 (vc-exec-after): Allow code to be a function. Use add/remove-function.
14638 (compilation-error-regexp-alist, view-old-buffer-read-only): Declare.
14639
14640 2013-04-19 Masatake YAMATO <yamato@redhat.com>
14641
14642 * progmodes/sh-script.el (sh-imenu-generic-expression):
14643 Handle function names with a single character. (Bug#14111)
14644
14645 2013-04-19 Dima Kogan <dima@secretsauce.net> (tiny change)
14646
14647 * progmodes/gud.el (gud-perldb-marker-filter): Understand position info
14648 for subroutines defined in an eval (bug#14182).
14649
14650 2013-04-19 Thierry Volpiatto <thierry.volpiatto@gmail.com>
14651
14652 * bookmark.el (bookmark-completing-read): Improve handling of empty
14653 string (bug#14176).
14654
14655 2013-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
14656
14657 * vc/vc-dispatcher.el (vc-do-command): Get rid of default sentinel msg.
14658
14659 2013-04-19 Fabián Ezequiel Gallina <fgallina@gnu.org>
14660
14661 New faster Imenu implementation (bug#14058).
14662 * progmodes/python.el:
14663 (python-imenu-prev-index-position):
14664 (python-imenu-format-item-label-function)
14665 (python-imenu-format-parent-item-label-function)
14666 (python-imenu-format-parent-item-jump-label-function):
14667 New vars.
14668 (python-imenu-format-item-label)
14669 (python-imenu-format-parent-item-label)
14670 (python-imenu-format-parent-item-jump-label)
14671 (python-imenu--put-parent, python-imenu--build-tree)
14672 (python-imenu-create-index, python-imenu-create-flat-index)
14673 (python-util-popn): New functions.
14674 (python-mode): Set imenu-create-index-function to
14675 python-imenu-create-index.
14676
14677 2013-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
14678
14679 * winner.el (winner-active-region): Use region-active-p, activate-mark
14680 and deactivate-mark (bug#14225).
14681
14682 * simple.el (deactivate-mark): Don't inline it.
14683
14684 2013-04-18 Michael Albinus <michael.albinus@gmx.de>
14685
14686 * net/tramp-sh.el (tramp-remote-process-environment): Add "TMOUT=0".
14687
14688 2013-04-18 Tassilo Horn <tsdh@gnu.org>
14689
14690 * files.el (auto-mode-alist): Delete OpenDocument and StarOffice
14691 file extensions from the archive-mode entry in order to prefer
14692 doc-view-mode-maybe with archive-mode as fallback (bug#14188).
14693
14694 2013-04-18 Leo Liu <sdl.web@gmail.com>
14695
14696 * bindings.el (help-event-list): Add ?\?.
14697
14698 2013-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
14699
14700 * subr.el (with-wrapper-hook): Declare obsolete.
14701 * simple.el (filter-buffer-substring-function): New hook.
14702 (filter-buffer-substring): Use it.
14703 (filter-buffer-substring-functions): Mark obsolete.
14704 * minibuffer.el (completion-in-region-function): New hook.
14705 (completion-in-region): Use it.
14706 (completion-in-region-functions): Mark obsolete.
14707 * mail/mailabbrev.el (mail-abbrevs-setup): Use abbrev-expand-function.
14708 * abbrev.el (abbrev-expand-function): New hook.
14709 (expand-abbrev): Use it.
14710 (abbrev-expand-functions): Mark obsolete.
14711 * emacs-lisp/nadvice.el (advice--where-alist): Add :filter-args
14712 and :filter-return.
14713
14714 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
14715
14716 * progmodes/python.el (python-nav--syntactically): Fix cornercases
14717 and do not care about match data.
14718
14719 2013-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
14720
14721 * emacs-lisp/lisp.el (lisp-completion-at-point): Provide specialized
14722 completion tables when completing error conditions and
14723 `declare' arguments.
14724 (lisp-complete-symbol, field-complete): Mark as obsolete.
14725 (check-parens): Unmatched parens are user errors.
14726 * minibuffer.el (minibuffer-completion-contents): Mark as obsolete.
14727
14728 2013-04-17 Michal Nazarewicz <mina86@mina86.com>
14729
14730 * textmodes/flyspell.el (flyspell-check-pre-word-p): Return nil if
14731 command changed buffer (ie. `flyspell-pre-buffer' is not current
14732 buffer), which prevents making decisions based on invalid value of
14733 `flyspell-pre-point' in the wrong buffer. Most notably, this used to
14734 cause an error when `flyspell-pre-point' was nil after switching
14735 buffers.
14736 (flyspell-post-command-hook): No longer needs to change buffers when
14737 checking pre-word. While at it remove unnecessary progn.
14738
14739 2013-04-17 Nicolas Richard <theonewiththeevillook@yahoo.fr> (tiny change)
14740
14741 * textmodes/ispell.el (ispell-add-per-file-word-list):
14742 Fix `flyspell-correct-word-before-point' error when accepting
14743 words and `coment-padding' is an integer by using
14744 `comment-normalize-vars' (Bug #14214).
14745
14746 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
14747
14748 New defun movement commands.
14749 * progmodes/python.el (python-nav--syntactically)
14750 (python-nav--forward-defun, python-nav-backward-defun)
14751 (python-nav-forward-defun): New functions.
14752
14753 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
14754
14755 * progmodes/python.el (python-syntax--context-compiler-macro): New defun.
14756 (python-syntax-context): Use named compiler-macro for backwards
14757 compatibility with Emacs 24.x.
14758
14759 2013-04-17 Leo Liu <sdl.web@gmail.com>
14760
14761 * progmodes/octave-mod.el (octave-mode-map): Fix key binding to
14762 octave-hide-process-buffer.
14763
14764 2013-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
14765
14766 * vc/vc-hg.el (vc-hg-annotate-re): Disallow ": " in file names
14767 (bug#14216).
14768
14769 2013-04-17 Jean-Philippe Gravel <jpgravel@gmail.com>
14770
14771 * progmodes/gdb-mi.el (gdbmi-bnf-incomplete-record-result):
14772 Fix adjustment of offset when receiving incomplete responses from GDB
14773 (bug#14129).
14774
14775 2013-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
14776
14777 * progmodes/python.el (python-mode-skeleton-abbrev-table): Rename from
14778 python-mode-abbrev-table.
14779 (python-skeleton-define): Adjust accordingly.
14780 (python-mode-abbrev-table): New table that inherits from it so that
14781 python-skeleton-autoinsert does not affect non-skeleton abbrevs.
14782
14783 * abbrev.el (abbrev--symbol): New function, extracted from abbrev-symbol.
14784 (abbrev-symbol): Use it.
14785 (abbrev--before-point): Use it since we already handle inheritance.
14786
14787 2013-04-16 Leo Liu <sdl.web@gmail.com>
14788
14789 * progmodes/octave-mod.el (octave-mode-map): Remove redundant key
14790 binding to info-lookup-symbol.
14791
14792 2013-04-16 Juanma Barranquero <lekktu@gmail.com>
14793
14794 * minibuffer.el (completion--twq-all):
14795 * term/ns-win.el (ns-initialize-window-system):
14796 * term/w32-win.el (w32-initialize-window-system): Silence byte-compiler.
14797
14798 2013-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
14799
14800 * emacs-lisp/nadvice.el (add-function): Default simple vars to their
14801 global bindings.
14802
14803 * doc-view.el (doc-view-start-process): Handle url-handler directories.
14804
14805 2013-04-15 Dmitry Gutov <dgutov@yandex.ru>
14806
14807 * progmodes/ruby-mode.el (ruby-beginning-of-defun)
14808 (ruby-end-of-defun, ruby-move-to-block): Bind `case-fold-search'
14809 to nil.
14810 (ruby-end-of-defun): Remove the unused arg, change the docstring
14811 to reflect that this function is only used as the value of
14812 `end-of-defun-function'.
14813 (ruby-beginning-of-defun): Remove "top-level" from the docstring,
14814 to reflect an earlier change that beginning/end-of-defun functions
14815 jump between methods in a class definition, as well as top-level
14816 functions.
14817
14818 2013-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
14819
14820 * minibuffer.el (minibuffer-complete): Don't just scroll
14821 a *Completions* that's been iconified.
14822 (minibuffer-force-complete): Make sure repetitions do cycle when going
14823 through completion-in-region -> minibuffer-complete.
14824
14825 2013-04-15 Alan Mackenzie <acm@muc.de>
14826
14827 Correct the placement of c-cpp-delimiters when there're #s not at
14828 col 0.
14829
14830 * progmodes/cc-langs.el (c-anchored-cpp-prefix): Reformulate and
14831 place a submatch around the #.
14832 * progmodes/cc-mode.el(c-neutralize-syntax-in-and-mark-CPP):
14833 Start a search at BOL. Put the c-cpp-delimiter category text propertiy
14834 on the #, not BOL.
14835
14836 2013-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
14837
14838 * emacs-lisp/nadvice.el: Properly test names when adding advice.
14839 (advice--member-p): New arg `name'.
14840 (advice--add-function, advice-member-p): Use it (bug#14202).
14841
14842 2013-04-15 Filipp Gunbin <fgunbin@fastmail.fm>
14843
14844 Reformulate java imenu-generic-expression.
14845 The old expression contained ill formed regexps.
14846
14847 * progmodes/cc-menus.el (cc-imenu-java-ellipsis-regexp)
14848 (cc-imenu-java-type-spec-regexp, cc-imenu-java-comment-regexp)
14849 (cc-imenu-java-method-arg-regexp): New defconsts.
14850 (cc-imenu-java-build-type-args-regex): New defun.
14851 (cc-imenu-java-generic-expression): Fix, to remove "ambiguous"
14852 handling of spaces in the regexp.
14853
14854 2013-03-15 Agustín Martín Domingo <agustin.martin@hispalinux.es>
14855
14856 * textmodes/ispell.el (ispell-command-loop): Remove
14857 flyspell highlight of a word when ispell accepts it (bug #14178).
14858
14859 2013-04-15 Michael Albinus <michael.albinus@gmx.de>
14860
14861 * net/ange-ftp.el (ange-ftp-run-real-handler-orig): New defun,
14862 uses code from the previous `ange-ftp-run-real-handler'.
14863 (ange-ftp-run-real-handler): Set it to `tramp-run-real-handler'
14864 only in case that function exist. This is needed for proper
14865 unloading of Tramp.
14866
14867 2013-04-15 Tassilo Horn <tsdh@gnu.org>
14868
14869 * textmodes/reftex-vars.el (reftex-label-regexps): New defcustom.
14870
14871 * textmodes/reftex.el (reftex-compile-variables): Use it.
14872
14873 2013-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
14874
14875 * files.el (normal-mode): Only use default major-mode if no other mode
14876 was specified.
14877
14878 * emacs-lisp/trace.el (trace-values): New function.
14879
14880 * files.el: Allow : in local variables (bug#14089).
14881 (hack-local-variable-regexp): New var.
14882 (hack-local-variables-prop-line, hack-local-variables): Use it.
14883
14884 2013-04-13 Roland Winkler <winkler@gnu.org>
14885
14886 * textmodes/bibtex.el (bibtex-search-entries): Bug fix. Use match
14887 data before it gets modified by bibtex-beginning-of-entry.
14888
14889 2013-04-13 Roland Winkler <winkler@gnu.org>
14890
14891 * textmodes/bibtex.el (bibtex-url): Doc fix.
14892
14893 2013-04-13 Roland Winkler <winkler@gnu.org>
14894
14895 * textmodes/bibtex.el (bibtex-initialize): If the current buffer
14896 does not visit a BibTeX file, exclude it from the list of buffers
14897 returned by bibtex-initialize.
14898
14899 2013-04-13 Stephen Berman <stephen.berman@gmx.net>
14900
14901 * window.el (split-window): Remove interactive form, since as a
14902 command this function is a special case of split-window-below.
14903 Correct doc string.
14904
14905 2013-04-12 Roland Winkler <winkler@gnu.org>
14906
14907 * faces.el (read-face-name): Do not override value of arg default.
14908 Allow single faces and strings as default values. Remove those
14909 elements from return value that are not faces.
14910 (describe-face): Simplify.
14911 (face-at-point): New optional args thing and multiple so that this
14912 function can provide the same functionality previously provided by
14913 read-face-name.
14914 (make-face-bold, make-face-unbold, make-face-italic)
14915 (make-face-unitalic, make-face-bold-italic, invert-face)
14916 (modify-face, read-face-and-attribute): Use face-at-point.
14917
14918 * cus-edit.el (customize-face, customize-face-other-window)
14919 * cus-theme.el (custom-theme-add-face)
14920 * face-remap.el (buffer-face-set)
14921 * facemenu.el (facemenu-set-face): Use face-at-point.
14922
14923 2013-04-12 Michael Albinus <michael.albinus@gmx.de>
14924
14925 * info.el (Info-file-list-for-emacs): Add "tramp" and "dbus".
14926
14927 2013-04-10 Tassilo Horn <tsdh@gnu.org>
14928
14929 * textmodes/reftex-cite.el (reftex-parse-bibtex-entry): Don't cut
14930 off leading { and trailing } from field values.
14931
14932 2013-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
14933
14934 * emacs-lisp/timer.el (timer--check): New function.
14935 (timer--time, timer-set-function, timer-event-handler): Use it.
14936 (timer-set-idle-time): Simplify.
14937 (timer--activate): CSE.
14938 (timer-event-handler): Give more info in error message.
14939 (internal-timer-start-idle): New function, moved from C.
14940
14941 * mpc.el (mpc-proc): Add `restart' argument.
14942 (mpc-proc-cmd): Use it.
14943 (mpc--status-timer-run): Also catch signals from `mpc-proc'.
14944 (mpc-status-buffer-show, mpc-tagbrowser-dir-toggle): Call `mpc-proc'
14945 less often.
14946
14947 2013-04-10 Masatake YAMATO <yamato@redhat.com>
14948
14949 * progmodes/sh-script.el: Implement `sh-mode' own
14950 `add-log-current-defun-function' (bug#14112).
14951 (sh-current-defun-name): New function.
14952 (sh-mode): Use the function.
14953
14954 2013-04-09 Bastien Guerry <bzg@gnu.org>
14955
14956 * simple.el (choose-completion-string): Fix docstring (bug#14163).
14957
14958 2013-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
14959
14960 * emacs-lisp/edebug.el (edebug-mode): Fix typo (bug#14144).
14961
14962 * emacs-lisp/timer.el (timer-event-handler): Don't retrigger a canceled
14963 timer (bug#14156).
14964
14965 2013-04-07 Nic Ferrier <nferrier@ferrier.me.uk>
14966
14967 * emacs-lisp/ert.el (should, should-not, should-error): Add edebug
14968 declaration.
14969
14970 2013-04-07 Leo Liu <sdl.web@gmail.com>
14971
14972 * pcmpl-x.el: New file.
14973
14974 2013-04-06 Dmitry Antipov <dmantipov@yandex.ru>
14975
14976 Do not set x-display-name until X connection is established.
14977 This is needed to prevent from weird situation described at
14978 <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00212.html>.
14979 * frame.el (make-frame): Set x-display-name after call to
14980 window system initialization function, not before.
14981 * term/x-win.el (x-initialize-window-system): Add optional
14982 display argument and use it.
14983 * term/w32-win.el (w32-initialize-window-system):
14984 * term/ns-win.el (ns-initialize-window-system):
14985 * term/pc-win.el (msdos-initialize-window-system):
14986 Add compatible optional display argument.
14987
14988 2013-04-06 Eli Zaretskii <eliz@gnu.org>
14989
14990 * files.el (normal-backup-enable-predicate): On MS-Windows and
14991 MS-DOS compare truenames of temporary-file-directory and of the
14992 file, so that 8+3 aliases (usually found in $TEMP on Windows)
14993 don't fail comparison by compare-strings. Also, compare file
14994 names case-insensitively on MS-Windows and MS-DOS.
14995
14996 2013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
14997
14998 * emacs-lisp/package.el (package-compute-transaction): Fix last fix.
14999 Suggested by Donald Curtis <dcurtis@coe.edu> (bug#14082).
15000
15001 2013-04-05 Dmitry Gutov <dgutov@yandex.ru>
15002
15003 * whitespace.el (whitespace-color-on, whitespace-color-off):
15004 Only call `font-lock-fontify-buffer' when `font-lock-mode' is on.
15005
15006 2013-04-05 Jacek Chrząszcz <chrzaszcz@mimuw.edu.pl> (tiny change)
15007
15008 * ispell.el (ispell-set-spellchecker-params):
15009 Really set `ispell-args' for all equivs.
15010
15011 2013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
15012
15013 * ido.el (ido-completions): Use extra elements of ido-decorations
15014 (bug#14143).
15015 (ido-decorations): Update docstring.
15016
15017 2013-04-05 Michael Albinus <michael.albinus@gmx.de>
15018
15019 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
15020 (global-auto-revert-mode): Let-bind `auto-revert-use-notify' to
15021 nil during initialization, in order not to miss changes since the
15022 file was opened. (Bug#14140)
15023
15024 2013-04-05 Leo Liu <sdl.web@gmail.com>
15025
15026 * kmacro.el (kmacro-call-macro): Fix bug#14135.
15027
15028 2013-04-05 Jay Belanger <jay.p.belanger@gmail.com>
15029
15030 * calc/calc-units.el (calc-convert-units): Rewrite conditional.
15031
15032 2013-04-04 Glenn Morris <rgm@gnu.org>
15033
15034 * electric.el (electric-pair-inhibit-predicate): Add :version.
15035
15036 2013-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
15037
15038 * emacs-lisp/package.el (package-compute-transaction): Fix ordering
15039 when a package is required several times (bug#14082).
15040
15041 2013-04-04 Roland Winkler <winkler@gnu.org>
15042
15043 * faces.el (read-face-name): Behave as promised by the docstring.
15044 Assume that arg default is a list of faces.
15045 (describe-face): Call read-face-name with list of default faces.
15046
15047 2013-04-04 Thierry Volpiatto <thierry.volpiatto@gmail.com>
15048
15049 * bookmark.el: Fix deletion of bookmarks (bug#13972).
15050 (bookmark-bmenu-list): Don't toggle filenames if alist is empty.
15051 (bookmark-bmenu-execute-deletions): Only skip first line if it's
15052 the header.
15053 (bookmark-exit-hook-internal): Save even if list is empty.
15054
15055 2013-04-04 Yann Hodique <yann.hodique@gmail.com> (tiny change)
15056
15057 * emacs-lisp/package.el (package-pinned-packages): New var.
15058 (package--add-to-archive-contents): Obey it (bug#14118).
15059
15060 2013-04-03 Alan Mackenzie <acm@muc.de>
15061
15062 Handle `parse-partial-sexp' landing inside a comment opener (Bug#13244).
15063 Also adapt to the new values of element 7 of a parse state.
15064
15065 * progmodes/cc-engine.el (c-state-pp-to-literal): New optional
15066 parameter `not-in-delimiter'. Handle being inside comment opener.
15067 (c-invalidate-state-cache-1): Reckon with an extra "invalid"
15068 character in case we're typing a '*' after a '/'.
15069 (c-literal-limits): Handle the awkward "not-in-delimiter" cond arm
15070 instead by passing the parameter to c-state-pp-to-literal.
15071
15072 * progmodes/cc-fonts.el (c-font-lock-doc-comments): New handling
15073 for elt. 7 of a parse state.
15074
15075 2013-04-01 Paul Eggert <eggert@cs.ucla.edu>
15076
15077 Use UTF-8 for most files with non-ASCII characters (Bug#13936).
15078 * international/latin1-disp.el, international/mule-util.el:
15079 * language/cyril-util.el, language/european.el, language/ind-util.el:
15080 * language/lao-util.el, language/thai.el, language/tibet-util.el:
15081 * language/tibetan.el, language/viet-util.el:
15082 Switch from iso-2022-7bit to utf-8 or (if needed) utf-8-emacs.
15083
15084 2013-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
15085
15086 * electric.el (electric-pair-inhibit-predicate): New var (bug#14000).
15087 (electric-pair-post-self-insert-function): Use it.
15088 (electric-pair-default-inhibit): New function, extracted from
15089 electric-pair-post-self-insert-function.
15090
15091 2013-03-31 Roland Winkler <winkler@gnu.org>
15092
15093 * emacs-lisp/crm.el (completing-read-multiple): Doc fix.
15094
15095 2013-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
15096
15097 * hi-lock.el (hi-lock-mode): Cleanup after revert-buffer (bug#13891).
15098
15099 2013-03-30 Fabián Ezequiel Gallina <fabian@anue.biz>
15100
15101 Un-indent after "pass" and "return" statements (Bug#13888)
15102 * progmodes/python.el (python-indent-block-enders): New var.
15103 (python-indent-calculate-indentation): Use it.
15104
15105 2013-03-30 Michael Albinus <michael.albinus@gmx.de>
15106
15107 * net/tramp.el (tramp-drop-volume-letter): Make it an ordinary
15108 defun. Defining it as defalias could introduce too eager
15109 byte-compiler optimization. (Bug#14030)
15110
15111 2013-03-30 Chong Yidong <cyd@gnu.org>
15112
15113 * iswitchb.el (iswitchb-read-buffer): Fix typo.
15114
15115 2013-03-30 Leo Liu <sdl.web@gmail.com>
15116
15117 * kmacro.el (kmacro-call-macro): Add optional arg MACRO.
15118 (kmacro-execute-from-register): Pass the keyboard macro to
15119 kmacro-call-macro or repeating won't work correctly.
15120
15121 2013-03-30 Teodor Zlatanov <tzz@lifelogs.com>
15122
15123 * progmodes/subword.el: Back to using `forward-symbol'.
15124
15125 * subr.el (forward-whitespace, forward-symbol)
15126 (forward-same-syntax): Move from thingatpt.el.
15127
15128 2013-03-29 Leo Liu <sdl.web@gmail.com>
15129
15130 * kmacro.el (kmacro-to-register): New command.
15131 (kmacro-execute-from-register): New function.
15132 (kmacro-keymap): Bind to 'x'. (Bug#14071)
15133
15134 2013-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
15135
15136 * mpc.el: Use defvar-local and setq-local.
15137 (mpc--proc-connect): Connection failures are not bugs.
15138 (mpc-mode-map): `follow-link' only applies to the buffer's content.
15139 (mpc-volume-map): Bind to the up-events.
15140
15141 2013-03-29 Teodor Zlatanov <tzz@lifelogs.com>
15142
15143 * progmodes/subword.el (superword-mode): Use `forward-sexp'
15144 instead of `forward-symbol'.
15145
15146 2013-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
15147
15148 * emacs-lisp/edebug.el (edebug-mode): Make it a minor mode.
15149 (edebug--recursive-edit): Use it.
15150 (edebug-kill-buffer): Don't let-bind kill-buffer-hook.
15151 (edebug-temp-display-freq-count): Don't let-bind buffer-read-only.
15152
15153 2013-03-28 Leo Liu <sdl.web@gmail.com>
15154
15155 * vc/vc-bzr.el (vc-bzr-revert): Don't backup. (Bug#14066)
15156
15157 2013-03-27 Eli Zaretskii <eliz@gnu.org>
15158
15159 * facemenu.el (list-colors-callback): New defvar.
15160 (list-colors-redisplay): New function.
15161 (list-colors-display): Install list-colors-redisplay as the
15162 revert-buffer-function. (Bug#14063)
15163
15164 2013-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
15165
15166 * minibuffer.el (completion-pcm--merge-completions): Make sure prefixes
15167 and suffixes don't overlap (bug#14061).
15168
15169 * case-table.el: Use lexical-binding.
15170 (case-table-get-table): New function.
15171 (get-upcase-table): Use it. Mark as obsolete. Adjust callers.
15172
15173 2013-03-27 Teodor Zlatanov <tzz@lifelogs.com>
15174
15175 * progmodes/subword.el: Add `superword-mode' to do word motion
15176 over symbol_words (parallels and leverages `subword-mode' which
15177 does word motion inside MixedCaseWords).
15178
15179 2013-03-27 Aidan Gauland <aidalgol@no8wireless.co.nz>
15180
15181 * eshell/em-unix.el: Move su and sudo to...
15182 * eshell/em-tramp.el: ...Eshell tramp module.
15183
15184 2013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
15185
15186 * desktop.el (desktop--v2s): Rename from desktop-internal-v2s.
15187 Change return value to be a sexp. Delay `get-buffer' to after
15188 restoring the desktop (bug#13951).
15189
15190 2013-03-26 Leo Liu <sdl.web@gmail.com>
15191
15192 * register.el: Move semantic tag handling back to
15193 cedet/semantic/senator.el. (Bug#14052)
15194
15195 2013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
15196
15197 * eshell/em-prompt.el (eshell-emit-prompt): Make sure we can't insert
15198 into the prompt either (bug#13963).
15199
15200 2013-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
15201
15202 * font-lock.el (lisp-font-lock-keywords-2): Don't highlight the "error"
15203 part of "(error-foo)".
15204
15205 2013-03-24 Juri Linkov <juri@jurta.org>
15206
15207 * replace.el (list-matching-lines-prefix-face): New defcustom.
15208 (occur-1): Pass `list-matching-lines-prefix-face' to the function
15209 `occur-engine' if `face-differs-from-default-p' returns t.
15210 (occur-engine): Add `,' inside backquote construct to evaluate
15211 `prefix-face'. Propertize the prefix with the `prefix-face' face.
15212 Pass `prefix-face' to the functions `occur-context-lines' and
15213 `occur-engine-add-prefix'.
15214 (occur-engine-add-prefix, occur-context-lines): Add optional arg
15215 `prefix-face' and propertize the prefix with `prefix-face'.
15216 (Bug#14017)
15217
15218 2013-03-24 Leo Liu <sdl.web@gmail.com>
15219
15220 * nxml/rng-valid.el (rng-validate-while-idle)
15221 (rng-validate-quick-while-idle): Guard against deleted buffer.
15222 (Bug#13999)
15223
15224 * emacs-lisp/edebug.el (edebug-mode): Make sure edebug-kill-buffer
15225 is the last entry in kill-buffer-hook.
15226
15227 * files.el (kill-buffer-hook): Doc fix.
15228
15229 2013-03-23 Dmitry Gutov <dgutov@yandex.ru>
15230
15231 * emacs-lisp/lisp-mode.el (emacs-lisp-docstring-fill-column):
15232 Make it safe-local.
15233
15234 * vc/diff-mode.el (diff-mode-shared-map): Unbind "/" (Bug#14034).
15235
15236 2013-03-23 Leo Liu <sdl.web@gmail.com>
15237
15238 * nxml/nxml-util.el (nxml-with-unmodifying-text-property-changes):
15239 Remove.
15240
15241 * nxml/rng-valid.el (rng-validate-mode)
15242 (rng-after-change-function, rng-do-some-validation):
15243 * nxml/rng-maint.el (rng-validate-buffer):
15244 * nxml/nxml-rap.el (nxml-tokenize-forward, nxml-ensure-scan-up-to-date):
15245 * nxml/nxml-outln.el (nxml-show-all, nxml-set-outline-state):
15246 * nxml/nxml-mode.el (nxml-mode, nxml-degrade, nxml-after-change)
15247 (nxml-extend-after-change-region): Use with-silent-modifications.
15248
15249 * nxml/rng-nxml.el (rng-set-state-after): Do not let-bind
15250 timer-idle-list.
15251
15252 * nxml/rng-valid.el (rng-validate-while-idle-continue-p)
15253 (rng-next-error-1, rng-previous-error-1): Do not let-bind
15254 timer-idle-list. (Bug#13999)
15255
15256 2013-03-23 Juri Linkov <juri@jurta.org>
15257
15258 * info.el (info-index-match): New face.
15259 (Info-index, Info-apropos-matches): Add a nested subgroup to the
15260 main pattern and add text properties with the new face to matches
15261 in index entries relative to the beginning of the index entry.
15262 (Bug#14015)
15263
15264 2013-03-21 Eric Ludlam <zappo@gnu.org>
15265
15266 * emacs-lisp/eieio-datadebug.el (data-debug/eieio-insert-slots):
15267 Inhibit read only while inserting objects.
15268
15269 2013-03-22 Teodor Zlatanov <tzz@lifelogs.com>
15270
15271 * progmodes/cfengine.el: Update docs to mention
15272 `cfengine-auto-mode'. Use \_> and \_< instead of \> and \< for
15273 symbol motion. Remove "_" from the word syntax.
15274
15275 2013-03-21 Teodor Zlatanov <tzz@lifelogs.com>
15276
15277 * progmodes/cfengine.el (cfengine-common-syntax): Add "_" to word
15278 syntax for both `cfengine2-mode' and `cfengine3-mode'.
15279
15280 2013-03-20 Juri Linkov <juri@jurta.org>
15281
15282 * info.el (Info-next-reference-or-link)
15283 (Info-prev-reference-or-link): New functions.
15284 (Info-next-reference, Info-prev-reference): Use them.
15285 (Info-try-follow-nearest-node): Handle footnote navigation.
15286 (Info-fontify-node): Fontify footnotes. (Bug#13989)
15287
15288 2013-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
15289
15290 * subr.el (posn-point, posn-string): Fix it here instead (bug#13979).
15291 * mouse.el (mouse-on-link-p): Undo scroll-bar fix.
15292
15293 2013-03-20 Paul Eggert <eggert@cs.ucla.edu>
15294
15295 Suppress unnecessary non-ASCII chatter during build process.
15296 * international/ja-dic-cnv.el (skkdic-collect-okuri-nasi)
15297 (batch-skkdic-convert): Suppress most of the chatter.
15298 It's not needed so much now that machines are faster,
15299 and its non-ASCII component was confusing; see Dmitry Gutov in
15300 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00508.html>.
15301
15302 2013-03-20 Leo Liu <sdl.web@gmail.com>
15303
15304 * ido.el (ido-chop): Fix bug#10994.
15305
15306 2013-03-19 Dmitry Gutov <dgutov@yandex.ru>
15307
15308 * whitespace.el (whitespace-font-lock, whitespace-font-lock-mode):
15309 Remove vars.
15310 (whitespace-color-on, whitespace-color-off):
15311 Use `font-lock-fontify-buffer' (Bug#13817).
15312
15313 2013-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
15314
15315 * mouse.el (mouse--down-1-maybe-follows-link): Fix follow-link
15316 remapping in mode-line.
15317 (mouse-on-link-p): Also check [mode-line follow-link] bindings.
15318
15319 2013-03-19 Dmitry Gutov <dgutov@yandex.ru>
15320
15321 * whitespace.el (whitespace-color-on): Use `prepend' OVERRIDE
15322 value for `whitespace-line' face (Bug#13875).
15323 (whitespace-font-lock-keywords): Change description.
15324 (whitespace-color-on): Don't save `font-lock-keywords' value, save
15325 the constructed keywords instead.
15326 (whitespace-color-off): Use `font-lock-remove-keywords' (Bug#13817).
15327
15328 2013-03-19 Leo Liu <sdl.web@gmail.com>
15329
15330 * progmodes/compile.el (compilation-display-error): New command.
15331 (compilation-mode-map, compilation-minor-mode-map): Bind it to
15332 C-o. (Bug#13992)
15333
15334 2013-03-18 Paul Eggert <eggert@cs.ucla.edu>
15335
15336 * term/x-win.el (x-keysym-pair): Add a Fixme (Bug#13936).
15337
15338 2013-03-18 Jan Djärv <jan.h.d@swipnet.se>
15339
15340 * mouse.el (mouse-on-link-p): Check for scroll bar (Bug#13979).
15341
15342 2013-03-18 Michael Albinus <michael.albinus@gmx.de>
15343
15344 * net/tramp-compat.el (tramp-compat-user-error): New defun.
15345
15346 * net/tramp-adb.el (tramp-adb-handle-shell-command):
15347 * net/tramp-gvfs.el (top):
15348 * net/tramp.el (tramp-find-method, tramp-dissect-file-name)
15349 (tramp-handle-shell-command): Use it.
15350 (tramp-dissect-file-name): Raise an error when hostname is a
15351 method name, and neither method nor user is specified.
15352
15353 * net/trampver.el: Update release number.
15354
15355 2013-03-18 Leo Liu <sdl.web@gmail.com>
15356
15357 Make sure eldoc can be turned off properly.
15358 * emacs-lisp/eldoc.el (eldoc-schedule-timer): Conditionalize on
15359 eldoc-mode.
15360 (eldoc-display-message-p): Revert last change.
15361 (eldoc-display-message-no-interference-p)
15362 (eldoc-print-current-symbol-info): Tweak.
15363
15364 2013-03-18 Tassilo Horn <tsdh@gnu.org>
15365
15366 * doc-view.el (doc-view-new-window-function): Check the new window
15367 overlay's display property instead the char property of the
15368 buffer's first char. Use `with-selected-window' instead of
15369 `save-window-excursion' with `select-window'.
15370 (doc-view-document->bitmap): Check the current doc-view overlay's
15371 display property instead the char property of the buffer's first char.
15372
15373 2013-03-18 Paul Eggert <eggert@cs.ucla.edu>
15374
15375 Automate the build of ja-dic.el (Bug#13984).
15376 * international/ja-dic-cnv.el (skkdic-convert): Remove the annotations
15377 from the input, rather than assume that it's been done for us by the
15378 SKK script unannotate.awk. Switch ja-dic.el to UTF-8. Don't put
15379 the current date into a ja-dic.el comment, as that complicates
15380 regression testing.
15381
15382 2013-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
15383
15384 * whitespace.el: Fix double evaluation.
15385 (whitespace-space, whitespace-hspace, whitespace-tab)
15386 (whitespace-newline, whitespace-trailing, whitespace-line)
15387 (whitespace-space-before-tab, whitespace-indentation)
15388 (whitespace-empty, whitespace-space-after-tab): Turn defcustoms into
15389 obsolete defvars.
15390 (whitespace-hspace-regexp): Fix regexp for emacs-unicode.
15391 (whitespace-color-on): Use a single font-lock-add-keywords call.
15392 Fix double-evaluation of face variables.
15393
15394 2013-03-17 Michael Albinus <michael.albinus@gmx.de>
15395
15396 * net/tramp-adb.el (tramp-adb-parse-device-names):
15397 Use `start-process' instead of `call-process'. Otherwise, the
15398 function might be blocked under MS Windows. (Bug#13299)
15399
15400 2013-03-17 Leo Liu <sdl.web@gmail.com>
15401
15402 Extend eldoc to display info in the mode-line. (Bug#13978)
15403 * emacs-lisp/eldoc.el (eldoc-post-insert-mode): New minor mode.
15404 (eldoc-mode-line-string): New variable.
15405 (eldoc-minibuffer-message): New function.
15406 (eldoc-message-function): New variable.
15407 (eldoc-message): Use it.
15408 (eldoc-display-message-p)
15409 (eldoc-display-message-no-interference-p):
15410 Support eldoc-post-insert-mode.
15411
15412 * simple.el (eval-expression-minibuffer-setup-hook): New hook.
15413 (eval-expression): Run it.
15414
15415 2013-03-17 Roland Winkler <winkler@gnu.org>
15416
15417 * emacs-lisp/crm.el (completing-read-multiple): Ignore empty
15418 strings in the list of return values.
15419
15420 2013-03-17 Jay Belanger <jay.p.belanger@gmail.com>
15421
15422 * calc/calc-ext.el (math-read-number-fancy): Check for an explicit
15423 radix before checking for HMS forms.
15424
15425 2013-03-16 Leo Liu <sdl.web@gmail.com>
15426
15427 * progmodes/scheme.el: Add indentation and font-locking for λ.
15428 (Bug#13975)
15429
15430 2013-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
15431
15432 * emacs-lisp/smie.el (smie-auto-fill): Don't inf-loop if there's no
15433 token before point (bug#13942).
15434
15435 2013-03-16 Leo Liu <sdl.web@gmail.com>
15436
15437 * thingatpt.el (end-of-sexp): Fix bug#13952. Use syntax-after.
15438
15439 2013-03-16 Eli Zaretskii <eliz@gnu.org>
15440
15441 * startup.el (command-line-normalize-file-name): Fix handling of
15442 backslashes in DOS and Windows file names. Reported by Xue Fuqiao
15443 <xfq.free@gmail.com> in
15444 http://lists.gnu.org/archive/html/help-gnu-emacs/2013-03/msg00245.html.
15445
15446 2013-03-15 Michael Albinus <michael.albinus@gmx.de>
15447
15448 Sync with Tramp 2.2.7.
15449
15450 * net/trampver.el: Update release number.
15451
15452 2013-03-14 Tassilo Horn <tsdh@gnu.org>
15453
15454 * doc-view.el: Fix bug#13887.
15455 (doc-view-insert-image): Don't modify overlay associated to
15456 non-live windows, and implement horizontal centering of image in
15457 case it's smaller than the window.
15458 (doc-view-new-window-function): Force redisplay of new windows on
15459 doc-view buffers.
15460
15461 2013-03-13 Karl Fogel <kfogel@red-bean.com>
15462
15463 * saveplace.el (save-place-alist-to-file): Don't sort
15464 `save-place-alist', just pretty-print it (bug#13882).
15465
15466 2013-03-13 Michael Albinus <michael.albinus@gmx.de>
15467
15468 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
15469 Check whether `default-file-name-coding-system' is bound.
15470 It isn't in XEmacs.
15471
15472 2013-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
15473
15474 * emacs-lisp/byte-run.el (defun-declarations-alist): Don't use
15475 backquotes for `obsolete' (bug#13929).
15476
15477 * international/mule.el (find-auto-coding): Include file name in
15478 obsolescence warning (bug#13922).
15479
15480 2013-03-12 Teodor Zlatanov <tzz@lifelogs.com>
15481
15482 * progmodes/cfengine.el (cfengine-parameters-indent): New variable
15483 for CFEngine 3-specific indentation.
15484 (cfengine3-indent-line): Use it. Fix up category regex.
15485 (cfengine3-font-lock-keywords): Add bundle and namespace characters.
15486
15487 2013-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
15488
15489 * type-break.el (type-break-file-name):
15490 * textmodes/remember.el (remember-data-file):
15491 * strokes.el (strokes-file):
15492 * shadowfile.el (shadow-initialize):
15493 * saveplace.el (save-place-file):
15494 * ps-bdf.el (bdf-cache-file):
15495 * progmodes/idlwave.el (idlwave-config-directory):
15496 * net/quickurl.el (quickurl-url-file):
15497 * international/kkc.el (kkc-init-file-name):
15498 * ido.el (ido-save-directory-list-file):
15499 * emulation/viper.el (viper-custom-file-name):
15500 * emulation/vip.el (vip-startup-file):
15501 * calendar/todo-mode.el (todo-file-do, todo-file-done, todo-file-top):
15502 * calendar/timeclock.el (timeclock-file): Use locate-user-emacs-file.
15503
15504 2013-03-12 Paul Eggert <eggert@cs.ucla.edu>
15505
15506 Switch encodings of tutorials, thai-word to UTF-8 (Bug#13880).
15507 * language/thai-word.el: Switch to UTF-8.
15508
15509 See ChangeLog.16 for earlier changes.
15510
15511 ;; Local Variables:
15512 ;; coding: utf-8
15513 ;; End:
15514
15515 Copyright (C) 2011-2014 Free Software Foundation, Inc.
15516
15517 This file is part of GNU Emacs.
15518
15519 GNU Emacs is free software: you can redistribute it and/or modify
15520 it under the terms of the GNU General Public License as published by
15521 the Free Software Foundation, either version 3 of the License, or
15522 (at your option) any later version.
15523
15524 GNU Emacs is distributed in the hope that it will be useful,
15525 but WITHOUT ANY WARRANTY; without even the implied warranty of
15526 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15527 GNU General Public License for more details.
15528
15529 You should have received a copy of the GNU General Public License
15530 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.